diff --git a/Cube4Fun/Animations.swift b/Cube4Fun/Animations.swift deleted file mode 100644 index 4451152..0000000 --- a/Cube4Fun/Animations.swift +++ /dev/null @@ -1,325 +0,0 @@ -// -// Animations.swift -// Cube4Fun -// -// Created by Nikolai Rinas on 07.04.15. -// Copyright (c) 2015 Nikolai Rinas. All rights reserved. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, see - - -// Constants -let AnimName = "AnimName" -let AnimKey = "AnimKey" -let AnimDuration = "AnimDur" -let AnimSpeed = "AnimSpeed" -let AnimFrames = "AnimData" - -class Animations: NSObject { - - let _emptyFrame: [UInt8] = [ - 255,255,255,255, - 255,255,255,255, - 255,255,255,255, - 255,255,255,255, - 255,255,255,255, - 255,255,255,255, - 255,255,255,255, - 255,255,255,255, - 255,255,255,255, - 255,255,255,255, - 255,255,255,255, - 255,255,255,255, - 255,255,255,255, - 255,255,255,255, - 255,255,255,255, - 255,255,255,255] - - var _displayedFrame: Int = 1; -// var _frameCount: UInt32 = 1; -// var _oneFrame: NSMutableData = NSMutableData() // == byte[] array -// var _emptyAnimation: NSMutableDictionary = NSMutableDictionary() - var _animationArray: [NSMutableDictionary] = [NSMutableDictionary]() - var _animationSelected: Int = 0 - let _minSendDelay: NSTimeInterval = 0.200 // fastes speed 200 milliseconds - let maxFrameSpeed = 3000 // the lowest possible speed allowed - let minFrameSpeed = 100 // the fastest possible speed allowed - let frameSpeedStep = 100 // how fast increase or decrease speed -// var _playSendDelay: NSTimeInterval = 0.5 // 500 milliseconds as default - var _copyFrameBuffer: [UInt8] = [UInt8]() - - - override init() { - super.init() - // Show the first frame - _displayedFrame = 1 - // Append empty animation - self.addAnimation() - // Set visible animation - _animationSelected = 0 - // Init Buffer - for ( var i = 0; i < 64 ; ++i ) { - _copyFrameBuffer.append(255) - } - } - - // How much animations do we have - func count() -> (Int) { - return _animationArray.count - } - - func sendFrame() { - let time = NSDate.timeIntervalSinceReferenceDate() - - if (_previousUpdateTime == 0.0) { - _previousUpdateTime = time; - } - // need to do this because of rounding issues - let deltaTime: Int = Int( round( (time - _previousUpdateTime) * 10 ) * 100); - - //var ms = Int((time % 1) * 1000) - if ( _playAllFrames ) { - //println("Delta: \(deltaTime) Speed: \(__animations.animationSpeedInt())") - if ( deltaTime >= __animations.animationSpeedInt() ){ - _previousUpdateTime = time; - if (self.getAnimationFrameID() >= self.getAnimationFrameCount()) { - _gameView.firstButtonPressed() - }else{ - _gameView.nextButtonPressed() - } - CubeNetworkObj.updateFrame(self.getAnimDataSelected(), count: UInt32(self.getAnimationFrameID())) - - } - }else{ - CubeNetworkObj.updateFrame(self.getAnimDataSelected(), count: UInt32(self.getAnimationFrameID())) - } - } - - func loadAnimations(animArray: NSArray) { - // clear the array first - _animationArray.removeAll(keepCapacity: true) - for ( var i=0; i (NSDictionary) { - //println(_animationArray.count) - let myAnimation = _animationArray[id] as NSDictionary - return myAnimation - } - func getAnimations() -> ([NSDictionary]) { - return _animationArray as [NSDictionary]; - } - - func getAnimationName(id: Int) -> (String) { - let value = (self.getAnimation(id)).objectForKey(AnimName) as! String - return value - } - func setAnimationName(id: Int, value: String) { - (self.getAnimation(id)).setValue(value, forKey: AnimName) - } - - func getAnimationKey(id: Int) -> (String) { - let value = (self.getAnimation(id)).objectForKey(AnimKey) as! String - return value - } - func setAnimationKey(id: Int, value: String) { - (self.getAnimation(id)).setValue(value, forKey: AnimKey) - } - - func getAnimationDuration(id: Int) -> (Int) { - let value = (self.getAnimation(id)).objectForKey(AnimDuration) as! Int - return value - } - func setAnimationDuration(id: Int, value: Int) { - (self.getAnimation(id)).setValue(value, forKey: AnimDuration) - } - - func getAnimationSpeed(id: Int) -> (Int) { - let value = (self.getAnimation(id)).objectForKey(AnimSpeed) as! Int - return value - } - func setAnimationSpeed(id: Int, value: Int) { - (self.getAnimation(id)).setValue(value, forKey: AnimSpeed) - } - - func getAnimationFrameCount() -> (Int) { - return self.getAnimationFrameCount(_animationSelected) - } - func getAnimationFrameCount(id: Int) -> (Int) { - let myFrames: NSMutableData = (self.getAnimation(id)).objectForKey(AnimFrames) as! NSMutableData - return (myFrames.length / 64) - //let value = (self.getAnimation(id)).objectForKey("AnimFrames") as Int - //return value - } - func getAnimationFrameID() -> Int { - return _displayedFrame - } - func setAnimationFrameID(id: Int) { - _displayedFrame = id - } - - func setSelectedAnimationID(id: Int) { - if id >= 0 { - _animationSelected = id - _displayedFrame = 1 - } - } - func getSelectedAnimationID() -> (Int) { - return _animationSelected - } - func deleteSelected() { - _animationArray.removeAtIndex(_animationSelected) - if ( _animationSelected == 0 && _animationArray.count == 0 ) { // last Frame - self.addAnimation() - } - } - func moveUpSelected() { - if ( _animationSelected > 0 ) { - _animationArray.insert(_animationArray[_animationSelected], atIndex: _animationSelected-1) - _animationArray.removeAtIndex(_animationSelected+1) - } - } - func moveDownSelected() { - if (_animationSelected < _animationArray.count - 1) { - _animationArray.insert(_animationArray[_animationSelected+1], atIndex: _animationSelected) - _animationArray.removeAtIndex(_animationSelected+2) - } - } - - func addAnimation() { - _animationArray.append(self.newAnimation()) - println("append Animation count: \(_animationArray.count)") - } - func newAnimation() -> (NSMutableDictionary) { - println("create new animation") - return [AnimName: "Animation1", AnimKey: "1=anim1", AnimDuration: 10, AnimSpeed: 500, AnimFrames: self.newFrame()] - } - func newFrame() -> (NSMutableData) { - println("create new frame") - return NSMutableData(bytes: _emptyFrame, length: 64) - } - func addFrame() { - let myData: NSMutableData = (self.getAnimation(_animationSelected)).objectForKey(AnimFrames) as! NSMutableData - myData.appendBytes(_emptyFrame, length: 64) - } - func removeFrame() { - if self.getAnimationFrameCount() > 1 { - let myData: NSMutableData = (self.getAnimation(_animationSelected)).objectForKey(AnimFrames) as! NSMutableData - let myLength = myData.length - myData.length = myLength - 64 // remove one frame - } - } - - func animationSpeedInt() -> Int { - let frameSpeed: Int = (self.getAnimation(_animationSelected)).objectForKey(AnimSpeed) as! Int - return frameSpeed - } - func animationSpeedFloat() -> NSTimeInterval { - let frameSpeed: Int = (self.getAnimation(_animationSelected)).objectForKey(AnimSpeed) as! Int - let mySpeed: NSTimeInterval = NSTimeInterval(Float(frameSpeed)/1000) - return mySpeed - } - func increaseSpeed() { - let frameSpeed: Int = (self.getAnimation(_animationSelected)).objectForKey(AnimSpeed) as! Int - if frameSpeed < maxFrameSpeed { - (self.getAnimation(_animationSelected)).setValue(frameSpeed+frameSpeedStep, forKey: AnimSpeed) - } - } - func decreaseSpeed() { - let frameSpeed: Int = (self.getAnimation(_animationSelected)).objectForKey(AnimSpeed) as! Int - if frameSpeed > minFrameSpeed { - (self.getAnimation(_animationSelected)).setValue(frameSpeed-frameSpeedStep, forKey: AnimSpeed) - } - } - - func gotoLastFrame() { - self.setAnimationFrameID(self.getAnimationFrameCount()) - } - func gotoFirstFrame() { - self.setAnimationFrameID(1) - } - func gotoNextFrame() { - if self.getAnimationFrameID() < self.getAnimationFrameCount() { - self.setAnimationFrameID(self.getAnimationFrameID()+1) - } - } - func gotoPrevFrame() { - if self.getAnimationFrameID() > 1 { - self.setAnimationFrameID(self.getAnimationFrameID()-1) - } - } - - - func getMinSendDelay() -> (NSTimeInterval) { - return _minSendDelay - } - - func getAnimDataSelected() -> (UnsafePointer) { - let myData: NSMutableData = (self.getAnimation(_animationSelected)).objectForKey(AnimFrames) as! NSMutableData - let byteArray = UnsafePointer(myData.bytes) - return byteArray - } - - func getAnimData(id: Int) -> (UnsafePointer) { - let myData: NSMutableData = (self.getAnimation(id)).objectForKey(AnimFrames) as! NSMutableData - let byteArray = UnsafePointer(myData.bytes) - return byteArray - } - - func getAnimDataLength(id: Int) -> Int { - let myFrames: NSMutableData = (self.getAnimation(id)).objectForKey(AnimFrames) as! NSMutableData - return myFrames.length - } - - func setLEDColor(color: UInt8, led: Int) { - //println("Led pressed: \(led)") - var myByte: [UInt8] = [color] - let myData: NSMutableData = (self.getAnimation(_animationSelected)).objectForKey(AnimFrames) as! NSMutableData - let bytePosition = NSMakeRange(((self.getAnimationFrameID()-1)*64)+led, 1) - myData.replaceBytesInRange(bytePosition, withBytes: myByte) - - // Send updated frame - self.sendFrame() - } - - func getLEDColor(pos: Int) -> (UInt8) { - let myData = self.getAnimDataSelected() - return myData[pos] - } - - func clearLEDColor() { - //var myByte: [UInt8] = [255] - let myData: NSMutableData = (self.getAnimation(_animationSelected)).objectForKey(AnimFrames) as! NSMutableData - myData.replaceBytesInRange(NSMakeRange((self.getAnimationFrameID()-1)*64, 64), withBytes: _emptyFrame) - } - - func copyDisplayedFrame() { - let myData = self.getAnimDataSelected() - var animFrameCount = (self.getAnimationFrameID()-1)*64 - for ( var i = 0 ; i < 64 ; ++i ) { - _copyFrameBuffer[i] = myData[animFrameCount] - ++animFrameCount - } - } - func pasteDisplayedFrame() { - let myData: NSMutableData = (self.getAnimation(_animationSelected)).objectForKey(AnimFrames) as! NSMutableData - myData.replaceBytesInRange(NSMakeRange((self.getAnimationFrameID()-1)*64, 64), withBytes: _copyFrameBuffer) - } -} diff --git a/Cube4Fun/AnimationsController.swift b/Cube4Fun/AnimationsController.swift deleted file mode 100644 index 02b8c4f..0000000 --- a/Cube4Fun/AnimationsController.swift +++ /dev/null @@ -1,241 +0,0 @@ -// -// ProjectController.swift -// Cube4Fun -// -// Created by Nikolai Rinas on 02.04.15. -// Copyright (c) 2015 Nikolai Rinas. All rights reserved. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, see - -import Cocoa -import Foundation - -//let _emptyAnimation: NSMutableDictionary = ["AnimName": "Animation1", "AnimKey": "1=anim1", "AnimDur": 1, "AnimSpeed": 500, "AnimFrames": 1] - -/* -var dataArray: [NSMutableDictionary] = [["AnimName": "Animation1", "AnimKey": "1=anim1", "AnimDur": 3, "AnimSpeed": 700, "AnimFrames": 12], - ["AnimName": "Animation2", "AnimKey": "1=anim2", "AnimDur": 7, "AnimSpeed": 1700, "AnimFrames": 17], - ["AnimName": "Animation3", "AnimKey": "1=anim3", "AnimDur": 1, "AnimSpeed": 500, "AnimFrames": 22], - ["AnimName": "Animation4", "AnimKey": "1=anim4", "AnimDur": 10, "AnimSpeed": 500, "AnimFrames": 32], - ["AnimName": "Animation5", "AnimKey": "1=anim5", "AnimDur": 23, "AnimSpeed": 500, "AnimFrames": 18], - ["AnimName": "Animation6", "AnimKey": "1=anim6", "AnimDur": 2, "AnimSpeed": 1000, "AnimFrames": 52]]; -*/ - -//var _animationArray: [NSMutableDictionary] = [NSMutableDictionary](); -//var _selectedAnimation: Int = 0; - -var __tableView: NSTableView = NSTableView() - -class AnimationsController: NSObject, NSTableViewDataSource, NSTableViewDelegate { - - @IBOutlet weak var myTableView: NSTableView! - - override func awakeFromNib() { - super.awakeFromNib() - __tableView = myTableView - } - - func numberOfRowsInTableView(tableView: NSTableView) -> Int { - let numberOfRows:Int = __animations.count() // _animationArray.count - return numberOfRows - } - - func tableView(tableView: NSTableView, objectValueForTableColumn tableColumn: NSTableColumn?, row: Int) -> AnyObject? { - //let object: NSDictionary = __animations.getAnimation(row) //_animationArray[row] as NSDictionary - //println(object) - let column: String = tableColumn?.identifier as String! - if column == "AnimName" { - return __animations.getAnimationName(row) - //let value = object.objectForKey(column) as String - //return value - } - if column == "AnimKey" { - return __animations.getAnimationKey(row) - //let value = object.objectForKey(column) as String - //return value - } - if column == "AnimDur" { - return __animations.getAnimationDuration(row) - //let value = object.objectForKey(column) as Int - //return value - } - if column == "AnimSpeed" { - return __animations.getAnimationSpeed(row) - //let value = object.objectForKey(column) as Int - //return value - } - if column == "AnimFrames" { - return __animations.getAnimationFrameCount(row) - //let value = object.objectForKey(column) as Int - //return value - } - - return column - } - - - func tableViewSelectionDidChange(notification: NSNotification) { - let view: NSTableView = notification.object as! NSTableView - __animations.setSelectedAnimationID(view.selectedRow) - - _gameView.resetView() - //let myCubeController: GameViewController = _animationsWindow.contentViewController as! GameViewController - //let myCubeView: GameView = myCubeController.view as! GameView - //myCubeView.resetView() - - //_selectedAnimation = view.selectedRow - - //println("klicked \(view.selectedRow)") - } - - func tableView(tableView: NSTableView, setObjectValue object: AnyObject?, forTableColumn tableColumn: NSTableColumn?, row: Int) { - let column: String = tableColumn?.identifier as String! - //println("Object: \(object) Key: \((tableColumn?.identifier)!)" ) - - let value = object! as! NSString - if column == "AnimName" { - __animations.setAnimationName(row, value: value as String) - //_animationArray[row].setObject(value, forKey: (tableColumn?.identifier)!) - } - if column == "AnimKey" { - __animations.setAnimationKey(row, value: value as String) - //_animationArray[row].setObject(value, forKey: (tableColumn?.identifier)!) - } - if column == "AnimDur" { - __animations.setAnimationDuration(row, value: value.integerValue) - //_animationArray[row].setObject(value.integerValue, forKey: (tableColumn?.identifier)!) - } - if column == "AnimSpeed" { - __animations.setAnimationSpeed(row, value: value.integerValue) - //_animationArray[row].setObject(value.integerValue, forKey: (tableColumn?.identifier)!) - } - - _gameView.resetView() - - //if column == "AnimFrames" { - // _animationArray[row].setObject(value.integerValue, forKey: (tableColumn?.identifier)!) - //} - } - - @IBAction func addNewAnimation(sender: AnyObject) { - __animations.addAnimation() - myTableView.reloadData() - } - - @IBAction func delNewAnimation(sender: AnyObject) { - __animations.deleteSelected() - myTableView.reloadData() - } - - @IBAction func moveUpItem(send: AnyObject) { - if ( __animations.getSelectedAnimationID() > 0 ) { - __animations.moveUpSelected() - myTableView.reloadData() - myTableView.selectRowIndexes(NSIndexSet(index: __animations.getSelectedAnimationID()-1), byExtendingSelection: false) - } - } - - @IBAction func moveDownItem(send: AnyObject) { - if (__animations.getSelectedAnimationID() < __animations.count() - 1) { - __animations.moveDownSelected() - myTableView.reloadData() - myTableView.selectRowIndexes(NSIndexSet(index: __animations.getSelectedAnimationID()+1), byExtendingSelection: false) - } - } - - func convertInt16(value: UInt16) -> ([UInt8]) { - var array: [UInt8] = [0,0] - array[0] = UInt8(value & 0x000000ff); - array[1] = UInt8((value & 0x0000ff00) >> 8); - return array; - } - - func convertInt32(value: UInt32) -> ([UInt8]) { - var array: [UInt8] = [0,0,0,0] - array[0] = UInt8(value & 0x000000ff); - array[1] = UInt8((value & 0x0000ff00) >> 8); - array[2] = UInt8((value & 0x00ff0000) >> 16); - array[3] = UInt8((value & 0xff000000) >> 24); - return array; - } - - @IBAction func exportAnimations(send: AnyObject) { - var sendData: [UInt8] = [UInt8]() - println("Import button pressed") - - // for each animation - for ( var i = 0; i < __animations.count(); ++i ) { - // Create header line per animation - // Syntax: ,F,\n - - // Key - sendData.append(UInt8(ascii: ",")) - sendData.append(UInt8(ascii: "F")) - let key = __animations.getAnimationKey(i) - let keyArray: NSData = key.dataUsingEncoding(NSASCIIStringEncoding, allowLossyConversion: true)! - let keyBytes: UnsafePointer = UnsafePointer(keyArray.bytes) - for (var j = 0; j < keyArray.length; ++j) { - - if keyBytes[j] != UInt8(ascii: "\n") && keyBytes[j] != UInt8(ascii: "\r" ) { // ignore line breaks in the key - sendData.append(UInt8(keyBytes[j])) - } - } - sendData.append(UInt8(ascii: ",")) - - // Playtime - let playTime: [UInt8] = convertInt16(UInt16(__animations.getAnimationDuration(i))) - sendData.append(playTime[0]) - sendData.append(playTime[1]) - - // Speed - let playSpeed: [UInt8] = convertInt16(UInt16(__animations.getAnimationSpeed(i))) - sendData.append(playSpeed[0]) - sendData.append(playSpeed[1]) - - // Frames - let playFrames: [UInt8] = convertInt16(UInt16(__animations.getAnimationFrameCount(i))) - sendData.append(playFrames[0]) - sendData.append(playFrames[1]) - - // End line - sendData.append(UInt8(ascii: "\n")) - - // Append frame, separated by new-Line - let animData = __animations.getAnimData(i) - for ( var count = 1; count <= __animations.getAnimDataLength(i); ++count) { - sendData.append(animData[count-1]) - // End line for each frame - if ( (count % 64) == 0 ) { - sendData.append(UInt8(ascii: "\n")) - } - } - - - } - - - // Calculate overall data to send - - - // Send data - CubeNetworkObj.sendBytes(sendData , count: UInt32(sendData.count)) - - } - - /* - @IBAction func closeButtonClicked(sender: AnyObject ) { - animationsWindow.close() - } -*/ -} diff --git a/Cube4Fun/AppDelegate.swift b/Cube4Fun/AppDelegate.swift deleted file mode 100644 index a09c1c1..0000000 --- a/Cube4Fun/AppDelegate.swift +++ /dev/null @@ -1,178 +0,0 @@ -// -// AppDelegate.swift -// Cube4Fun -// -// Created by Nikolai Rinas on 27.03.15. -// Copyright (c) 2015 Nikolai Rinas. All rights reserved. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, see - -import Cocoa - -var _animationsWindow: NSWindow = NSWindow() -var _cubeWindow: NSWindow = NSWindow() -var _prefWindow: NSWindow = NSWindow() -var __animations: Animations = Animations() -var __prefData: Preferences = Preferences() - -@NSApplicationMain -class AppDelegate: NSObject, NSApplicationDelegate, NSTextFieldDelegate { - - @IBOutlet weak var window: NSWindow! - @IBOutlet weak var animationsWindow: NSWindow! - @IBOutlet weak var preferencesWindow: NSWindow! - @IBOutlet weak var myMenu: NSMenu! - - @IBOutlet weak var levelInd: NSProgressIndicator! - @IBOutlet weak var ipAddr: NSTextField! - @IBOutlet weak var port: NSTextField! - @IBOutlet weak var waitAnim: NSProgressIndicator! - - func applicationDidFinishLaunching(aNotification: NSNotification) { - // Insert code here to initialize your application - _animationsWindow = animationsWindow - _cubeWindow = window - _prefWindow = preferencesWindow - //__animations.initialize() - - port.stringValue = String(__prefData.portNR()) - ipAddr.stringValue = __prefData.ipAddr() - if CubeNetworkObj.connected() { - showConnActive(true) - }else{ - showConnActive(false) - } - } - - func applicationShouldTerminate(sender: NSApplication) -> NSApplicationTerminateReply { - CubeNetworkObj.closeConnection() - return NSApplicationTerminateReply.TerminateNow - } - - @IBAction func saveDocument(sender: AnyObject) { - let mySavePanel: NSSavePanel = NSSavePanel() - mySavePanel.allowedFileTypes = ["plist"] - mySavePanel.beginWithCompletionHandler { (result: Int) -> Void in - if result == NSFileHandlingPanelOKButton { - let exportedFileURL = mySavePanel.URL - // Save the data. What you do depends on your app. - let myAnimArray: NSMutableArray = NSMutableArray() - myAnimArray.addObjectsFromArray(__animations.getAnimations()) - myAnimArray.writeToURL(exportedFileURL!, atomically: true) - //let myAnimation: NSDictionary = NSDictionary(dictionary: __animations.getAnimations()) - - - // Don't just paste this code in your app as your app - // probably doesn't have a createPDF() method. self.createPDF(exportedFileURL) - } - } // End block - println("save pressed") - } - - @IBAction func openDocument(sender: AnyObject) { - let myOpenPanel: NSOpenPanel = NSOpenPanel() - myOpenPanel.allowedFileTypes = ["plist"] - myOpenPanel.beginWithCompletionHandler { (result: Int) -> Void in - if result == NSFileHandlingPanelOKButton { - let importedFileURL = myOpenPanel.URL - //let myAnimationsDict: NSMutableDictionary = NSMutableDictionary(contentsOfURL: importedFileURL!)! - let myAnimArray: NSMutableArray = NSMutableArray(contentsOfURL: importedFileURL!)! - __animations.loadAnimations(myAnimArray) - } - } // End block - } - - @IBAction func openPreferences(send: AnyObject) { - preferencesWindow.setIsVisible(true) - } - - @IBAction func testIPConnection(send: AnyObject) { - //println("TestIP Button clicked") - - if CubeNetworkObj.connected() { - CubeNetworkObj.closeConnection() - } - if CubeNetworkObj.openConnection(__prefData.ipAddr(), port: UInt32(__prefData.portNR())) { - showConnActive(true) - }else{ - showConnActive(false) - } - - } - - func showConnActive(active: Bool) { - if active { - levelInd.doubleValue = 100.0 - }else{ - levelInd.doubleValue = 0.0 - } - } - - func validIPAddress(ipaddr: String) -> Bool { - var valid: Bool = false - let validIpAddressRegex = "^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$" - if ipaddr != "" { - if (ipaddr.rangeOfString(validIpAddressRegex, options: .RegularExpressionSearch) != nil) { - valid = true; - } - } - return valid - } - - func validPortNr(portNr: Int) -> Bool { - var valid: Bool = false - if portNr < 65536 && portNr > 0 { - valid = true - } - return valid - //^(6553[0-5]|655[0-2]\d|65[0-4]\d\d|6[0-4]\d{3}|[1-5]\d{4}|[1-9]\d{0,3}|0)$ - } - - override func controlTextDidChange(obj: NSNotification) { - let myField: NSTextField = obj.object as! NSTextField - if myField.identifier == "IPADDR_FIELD" { - if validIPAddress(myField.stringValue) { - __prefData.setIPAddr(myField.stringValue) - println("Changing ip address field") - } - } - if myField.identifier == "PORTNR_FIELD" { - if validPortNr(myField.integerValue) { - __prefData.setPortNr(myField.integerValue) - println("Changing port number") - } - } - } - - @IBAction func cmdCopyPressed(send: AnyObject) { - __animations.copyDisplayedFrame() - } - - @IBAction func cmdPastePressed(send: AnyObject) { - __animations.pasteDisplayedFrame() - _gameView.updateLEDFrame() - // Send updated frame - __animations.sendFrame() - } - - @IBAction func clearLEDs(send: AnyObject) { - // Remove from Memory - __animations.clearLEDColor() - // Update visual - _gameView.updateLEDFrame() - // Update on a hardware - __animations.sendFrame() - } - -} diff --git a/Cube4Fun/Arrows.png b/Cube4Fun/Arrows.png deleted file mode 100644 index 7241dca..0000000 Binary files a/Cube4Fun/Arrows.png and /dev/null differ diff --git a/Cube4Fun/Cube4Fun-Bridging-Header.h b/Cube4Fun/Cube4Fun-Bridging-Header.h deleted file mode 100644 index 1659414..0000000 --- a/Cube4Fun/Cube4Fun-Bridging-Header.h +++ /dev/null @@ -1,5 +0,0 @@ -// -// Use this file to import your target's public headers that you would like to expose to Swift. -// - -#import "ObjCtoCPlusPlus.h" \ No newline at end of file diff --git a/Cube4Fun/Cube4Fun-Icon-128.png b/Cube4Fun/Cube4Fun-Icon-128.png deleted file mode 100644 index 4593301..0000000 Binary files a/Cube4Fun/Cube4Fun-Icon-128.png and /dev/null differ diff --git a/Cube4Fun/Cube4Fun-Icon-16.png b/Cube4Fun/Cube4Fun-Icon-16.png deleted file mode 100644 index d136f6a..0000000 Binary files a/Cube4Fun/Cube4Fun-Icon-16.png and /dev/null differ diff --git a/Cube4Fun/Cube4Fun-Icon-256.png b/Cube4Fun/Cube4Fun-Icon-256.png deleted file mode 100644 index 33c80d2..0000000 Binary files a/Cube4Fun/Cube4Fun-Icon-256.png and /dev/null differ diff --git a/Cube4Fun/Cube4Fun-Icon-32.png b/Cube4Fun/Cube4Fun-Icon-32.png deleted file mode 100644 index af51fae..0000000 Binary files a/Cube4Fun/Cube4Fun-Icon-32.png and /dev/null differ diff --git a/Cube4Fun/Cube4Fun-Icon-64.png b/Cube4Fun/Cube4Fun-Icon-64.png deleted file mode 100644 index 6670709..0000000 Binary files a/Cube4Fun/Cube4Fun-Icon-64.png and /dev/null differ diff --git a/Cube4Fun/Cube6-128j.png b/Cube4Fun/Cube6-128j.png deleted file mode 100644 index 01c096e..0000000 Binary files a/Cube4Fun/Cube6-128j.png and /dev/null differ diff --git a/Cube4Fun/Cube6-16j.png b/Cube4Fun/Cube6-16j.png deleted file mode 100644 index 0cefcf4..0000000 Binary files a/Cube4Fun/Cube6-16j.png and /dev/null differ diff --git a/Cube4Fun/Cube6-256j.png b/Cube4Fun/Cube6-256j.png deleted file mode 100644 index f2242de..0000000 Binary files a/Cube4Fun/Cube6-256j.png and /dev/null differ diff --git a/Cube4Fun/Cube6-32j.png b/Cube4Fun/Cube6-32j.png deleted file mode 100644 index d688034..0000000 Binary files a/Cube4Fun/Cube6-32j.png and /dev/null differ diff --git a/Cube4Fun/Cube6-64j.png b/Cube4Fun/Cube6-64j.png deleted file mode 100644 index 3b3e0a3..0000000 Binary files a/Cube4Fun/Cube6-64j.png and /dev/null differ diff --git a/Cube4Fun/CubeNetwork.cpp b/Cube4Fun/CubeNetwork.cpp deleted file mode 100644 index 219a2ff..0000000 --- a/Cube4Fun/CubeNetwork.cpp +++ /dev/null @@ -1,368 +0,0 @@ -// -// CubeNetwork.cpp -// Cube4Fun -// -// Created by Nikolai Rinas on 28.03.15. -// Copyright (c) 2015 Nikolai Rinas. All rights reserved. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, see - -#include "CubeNetwork.h" - - -#ifdef WIN32 -#include -#else -#include -#endif // win32 - -using Poco::Net::DialogSocket; -using Poco::Net::SocketAddress; -using Poco::Exception; - -unsigned char buffer3D[64]; -unsigned char receiveBuffer[32]; -int bytesReceived; -int i,x; -unsigned char color; -DialogSocket ds; -int frameChange = 0; -int streamMode = 0; // 0 = off, 1 = frameStream, 2 = writeStream - -void sleepcp(int milliseconds) // cross-platform sleep function -{ -#ifdef WIN32 - Sleep(milliseconds); -#else - usleep(milliseconds * 1000); -#endif // win32 -} - -bool frame1[3][64] = { {1,0,0,1, - 0,0,0,0, - 0,0,0,0, - 1,0,0,1, - 0,0,0,0, - 0,0,0,0, //0,1,1,0, - 0,0,0,0, //0,1,1,0, - 0,0,0,0, - 0,0,0,0, - 0,0,0,0, //0,1,1,0, - 0,0,0,0, //0,1,1,0, - 0,0,0,0, - 1,0,0,1, - 0,0,0,0, - 0,0,0,0, - 1,0,0,1}, - {0,0,0,0, - 0,0,0,0, - 1,0,0,1, - 0,0,0,0, - 1,0,0,1, - 0,0,0,0, //0,1,1,0, - 0,0,0,0, //0,1,1,0, - 0,0,0,0, - 0,0,0,0, - 0,0,0,0, //0,1,1,0, - 0,0,0,0, //0,1,1,0, - 1,0,0,1, - 0,0,0,0, - 1,0,0,1, - 0,0,0,0, - 0,0,0,0}, - {0,0,0,0, - 1,0,0,1, - 0,0,0,0, - 0,0,0,0, - 0,0,0,0, - 0,0,0,0, //0,1,1,0, - 0,0,0,0, //0,1,1,0, - 1,0,0,1, - 1,0,0,1, - 0,0,0,0, //0,1,1,0, - 0,0,0,0, //0,1,1,0, - 0,0,0,0, - 0,0,0,0, - 0,0,0,0, - 1,0,0,1, - 0,0,0,0}}; - -bool connectionEstablished = false; - -void byte2uint32(unsigned char* bytes, u_int32_t msgLength) { - unsigned char *vp = (unsigned char *)&msgLength; - bytes[0] = vp[0]; // int32 to byte array conversion - bytes[1] = vp[1]; - bytes[2] = vp[2]; - bytes[3] = vp[3]; -} - -void msgCloseFrameStream() { - try { - buffer3D[0] = 's'; - buffer3D[1] = 'S'; - ds.sendBytes(buffer3D, 2); // End the stream mode - }catch (const Poco::Net::NetException & e){ - std::cerr << e.displayText() << std::endl; - } -} - -void msgOpenFrameStream() { - try { - buffer3D[0] = 'G'; - buffer3D[1] = 'E'; - buffer3D[2] = 'T'; - buffer3D[3] = ' '; - buffer3D[4] = '/'; - buffer3D[5] = '?'; - buffer3D[6] = 'S'; - buffer3D[7] = 's'; - buffer3D[8] = ' '; - ds.sendBytes(buffer3D, 9); - }catch (const Poco::Net::NetException & e){ - std::cerr << e.displayText() << std::endl; - } -} - -void msgStartWrite(u_int32_t msgLength) { - unsigned char myBuffer[4]; - byte2uint32(myBuffer, msgLength); - try{ - buffer3D[0] = 'G'; - buffer3D[1] = 'E'; - buffer3D[2] = 'T'; - buffer3D[3] = ' '; - buffer3D[4] = '/'; - buffer3D[5] = '?'; - buffer3D[6] = 'W'; - buffer3D[7] = 'w'; - buffer3D[8] = myBuffer[0]; // int32 to byte array conversion - buffer3D[9] = myBuffer[1]; - buffer3D[10] = myBuffer[2]; - buffer3D[11] = myBuffer[3]; - buffer3D[12] = ' '; - - printf("sending Length:\n"); - printf("0: %u\n", myBuffer[0]); - printf("1: %u\n", myBuffer[1]); - printf("2: %u\n", myBuffer[2]); - printf("3: %u\n", myBuffer[3]); - - ds.sendBytes(buffer3D, 13); - }catch (const Poco::Net::NetException & e){ - std::cerr << e.displayText() << std::endl; - } -} - - - - -void testFrame() { -// for (color=128;color<130;color++) { - // Create testframe - for (x=0;x<64;x++) { - buffer3D[x] = color; // Red frame - } - if ( color > 128 ) { - buffer3D[0]=255; - buffer3D[3]=255; - buffer3D[12]=255; - buffer3D[15]=255; - - buffer3D[48]=255; - buffer3D[51]=255; - buffer3D[60]=255; - buffer3D[63]=255; - }else{ - buffer3D[0]=254; - buffer3D[3]=254; - buffer3D[12]=254; - buffer3D[15]=254; - - buffer3D[48]=254; - buffer3D[51]=254; - buffer3D[60]=254; - buffer3D[63]=254; - } - ds.sendBytes(buffer3D, 64); - // sleepcp(50); // 20 FPS - // } - -} - - -void testStream2() { - int frameChange = 0; - while (true) { - unsigned char color = rand() % 254; - for (i=0;i<64;i++) { - if ( frame1[frameChange][i] == 1 ) { - buffer3D[i] = color; // Rot - }else{ - buffer3D[i] = 255; // Aus - } - } - ds.sendBytes(buffer3D, 64); - sleepcp(1000); // 20 FPS - if ( frameChange < 2 ) { - frameChange++; - }else{ - frameChange=0; - } - } -} - -/* -void CubeNetwork::updateFrame() { - unsigned char color = rand() % 254; - for (i=0;i<64;i++) { - if ( frame1[frameChange][i] == 1 ) { - buffer3D[i] = color; // Rot - }else{ - buffer3D[i] = 255; // Aus - } - } - ds.sendBytes(buffer3D, 64); - if ( frameChange < 2 ) { - frameChange++; - }else{ - frameChange=0; - } -} -*/ - -void CubeNetwork::sendBytes(const unsigned char* byteBuffer, unsigned int byteLength) { - printf("sendBytes called\n"); - if ( connectionEstablished) { - if ( streamMode == 1 ) { - // End the frameStreammode first - msgCloseFrameStream(); - streamMode = 2; - } - if ( byteBuffer != NULL ) { - try { - printf("Open connection for writing\n"); - //ds.connect(SocketAddress("192.168.1.79", 8081)); - // let arduino knows what to expect - msgStartWrite(byteLength); - unsigned char myBuffer[4]; - int ret = ds.receiveRawBytes(myBuffer, 4); - printf("received Length:\n"); - printf("0: %u\n", myBuffer[0]); - printf("1: %u\n", myBuffer[1]); - printf("2: %u\n", myBuffer[2]); - printf("3: %u\n", myBuffer[3]); - printf("ret: %u\n", ret); - - // send bytes to write - ds.sendBytes(byteBuffer, byteLength); - //ds.close(); - // Reset to the frameStream mode - if ( streamMode == 2 ) { - msgOpenFrameStream(); - streamMode = 1; - } - }catch (const Poco::Net::NetException & e){ - std::cerr << e.displayText() << std::endl; - } - } - } - -} - - -void CubeNetwork::updateFrame(const unsigned char * frameSequence, unsigned int frameCount) { - if (connectionEstablished) { - // check for empty pointer - if ( frameSequence != NULL ) { - //for (startFrame = 0; startFrame(ipAddr)); - Poco::UInt16 portNr = port; - try { - ds.connect(SocketAddress(ipAddr_str, portNr), Poco::Timespan(10, 0)); - - msgOpenFrameStream(); - streamMode = 1; - connectionEstablished = true; - }catch (Poco::Net::NetException & e){ - std::cerr << e.displayText() << std::endl; - ds.close(); - }catch (Poco::TimeoutException & e) { - std::cerr << e.displayText() << std::endl; - ds.close(); - }catch (Exception e){ - std::cerr << e.displayText() << std::endl; - ds.close(); - } - return connectionEstablished; -} - -void CubeNetwork::closeConnection() { - try { - connectionEstablished = false; - msgCloseFrameStream(); - ds.close(); - }catch (const Poco::Net::NetException & e){ - std::cerr << e.displayText() << std::endl; - } - streamMode = 0; -} - -bool CubeNetwork::connected() { - return connectionEstablished; -} - -/* - -void CubeNetwork::initObjects() { - srand((unsigned int)time(NULL)); - - try { - ds.connect(SocketAddress("192.168.1.79", 8081)); - - fillBufferWithMsgStartStream(); - ds.sendBytes(buffer3D, 9); - - - //testStream2(); - testFrame(); - - msgCloseFrameStream(); - - }catch (const Poco::Net::NetException & e){ - std::cerr << e.displayText() << std::endl; - } - - - //std::cout << "It works" << std::endl; - -} - -*/ -//void Performance_CPlusPlus::sortArray(unsigned int num_elements) diff --git a/Cube4Fun/CubeNetwork.h b/Cube4Fun/CubeNetwork.h deleted file mode 100644 index 1f78a06..0000000 --- a/Cube4Fun/CubeNetwork.h +++ /dev/null @@ -1,46 +0,0 @@ -// -// CubeNetwork.h -// Cube4Fun -// -// Created by Nikolai Rinas on 28.03.15. -// Copyright (c) 2015 Nikolai Rinas. All rights reserved. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, see - -#ifndef __Cube4Fun__CubeNetwork__ -#define __Cube4Fun__CubeNetwork__ - -#include -#include "Poco/Foundation.h" -#include "Poco/Net/SocketAddress.h" -#include "Poco/Net/DialogSocket.h" -#include "Poco/Net/NetException.h" -#include "Poco/Exception.h" -#include /* srand, rand */ -#include /* time */ -#include - -class CubeNetwork -{ -public: - static bool connected(); - //static void initObjects(); - static void updateFrame(const unsigned char * frameSequence = NULL, unsigned int frameCount = 0); - static void sendBytes(const unsigned char* byteBuffer = NULL, u_int32_t byteLength=0); - static bool openConnection(const char* ipAddr, unsigned int port); - //static void openConnection(); - static void closeConnection(); -}; - -#endif /* defined(__Cube4Fun__CubeNetwork__) */ diff --git a/Cube4Fun/GameView.swift b/Cube4Fun/GameView.swift deleted file mode 100644 index a448128..0000000 --- a/Cube4Fun/GameView.swift +++ /dev/null @@ -1,621 +0,0 @@ -// -// GameView.swift -// Cube4Fun -// -// Created by Nikolai Rinas on 27.03.15. -// Copyright (c) 2015 Nikolai Rinas. All rights reserved. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, see - -import SceneKit - -var lastMousePos: NSPoint = NSPoint() -var startAngle: CGFloat = CGFloat() -var klickedColor: UInt8 = UInt8(1) -let relativeBarPosition: CGFloat = 500.0 - - -class GameView: SCNView { - - var playTimer: NSTimer = NSTimer() - - func scheduleTimer() { - playTimer = NSTimer.scheduledTimerWithTimeInterval(__animations.animationSpeedFloat(), target: __animations, selector: Selector("sendFrame"), userInfo: nil, repeats: true) - } - func resetTimer() { - playTimer.invalidate() - } - func rescheduleTimer() { - resetTimer(); - scheduleTimer(); - } - - func resetView() { - println("Reset view") - // goto first frame - self.firstButtonPressed() - - // Update speed - self.updateSpeedText() - - // Send updated frame - __animations.sendFrame() - } - - func updateButtonVisibility() { - // init - var nextFrame = false; - var lastFrame = false; - var prevFrame = false; - var firstFrame = false; - var delFrame = false; - - // first Frame, only one Frame - // -> no button visible - if __animations.getAnimationFrameID() == 1 && __animations.getAnimationFrameCount() == 1 { - nextFrame = false; - lastFrame = false; - prevFrame = false; - firstFrame = false; - delFrame = false; - } - - // first Frame, second exists. - if __animations.getAnimationFrameID() == 1 && __animations.getAnimationFrameCount() > 1 { - // Visible: - nextFrame = true; - lastFrame = true; - delFrame = true; - // Invisible: - prevFrame = false; - firstFrame = false; - } - - // previous Frame exists, no more Frames - if __animations.getAnimationFrameID() > 1 && __animations.getAnimationFrameID() == __animations.getAnimationFrameCount() { - // Visible: - prevFrame = true; - firstFrame = true; - delFrame = true; - // Invisible - nextFrame = false; - lastFrame = false; - } - - // previous Frame exists and next Frame exists { - if __animations.getAnimationFrameID() > 1 && __animations.getAnimationFrameID() < __animations.getAnimationFrameCount() { - // Visible: - prevFrame = true; - firstFrame = true; - delFrame = true; - nextFrame = true; - lastFrame = true; - } - - if let rootNode = self.scene?.rootNode { - for childNode in rootNode.childNodes { - let buttonNode: SCNNode = childNode as! SCNNode - if buttonNode.name == "myNextFrameButton" { - buttonNode.hidden = !nextFrame; - } - if buttonNode.name == "myPrevFrameButton" { - buttonNode.hidden = !prevFrame - } - if buttonNode.name == "myStartFrameButton" { - buttonNode.hidden = !firstFrame - } - if buttonNode.name == "myLastFrameButton" { - buttonNode.hidden = !lastFrame - } - if buttonNode.name == "myDelFrameButton" { - buttonNode.hidden = !delFrame - } - if buttonNode.name == "myFrameText" { - let geometry:SCNText = buttonNode.geometry as! SCNText - geometry.string = "Frame: \(__animations.getAnimationFrameID())/\(__animations.getAnimationFrameCount())" - } - - } - } - - // Send updated frame - __animations.sendFrame() - - } - - func updateLEDFrame() { - // get actuall frame data - -// let data : UnsafePointer = UnsafePointer(myFrames.mutableBytes) - //let data = __animations.getAnimDataSelected() - //NSMutableData - if let rootNode = self.scene?.rootNode { - if let cubeNode = rootNode.childNodeWithName("cubeNode", recursively: true) { - for myLED in cubeNode.childNodes { - if let name:NSString = myLED.name { - if name != "myBox" { // LED lamps - if let geometry: SCNGeometry = myLED.geometry { - let ledID: Int = Int(name.integerValue) - if let material: SCNMaterial = geometry.firstMaterial { - var color: NSColor = NSColor() - let colorPosition: Int = ((__animations.getAnimationFrameID()-1)*64) + ledID - let savedColor: UInt8 = __animations.getLEDColor(colorPosition) //data[colorPosition] - if savedColor == 255 { - color = NSColor.grayColor() - }else{ - let hueColor = CGFloat(savedColor) / 255.0 - color = NSColor(calibratedHue: hueColor, saturation: 1.0, brightness: 1.0, alpha: 1.0) - } - material.diffuse.contents = color - //println(name) - } - } - - } - } - } - } - } - //__animations.sendFrame() - } - - func plusButtonPressed() { - // Extend the data array with one frame - //myFrames.appendBytes(emptyFrame, length: 64) - __animations.addFrame() - - // Add frame - //myMaxFrameCount++; - - // Goto new frame - //myFrameCount = __animations.getAnimationFrameCount(); - __animations.gotoLastFrame() - - // Update LEDs - updateLEDFrame() - - // Update control button visibility - updateButtonVisibility() - } - - func minusButtonPressed() { - // remove one frame from the data array - // TODO! - - // Remove frame - __animations.removeFrame() -// if __animations.getAnimationFrameCount() > 1 { -// myMaxFrameCount--; -// } -// if myFrameCount > 1 { -// myFrameCount--; -// } - - // Update control button visibility - updateButtonVisibility() - } - - func prevButtonPressed() { -// if myFrameCount > 1 { -// myFrameCount-- -// } - __animations.gotoPrevFrame() - - // Update LEDs - updateLEDFrame() - - // Update control button visibility - updateButtonVisibility() - } - - func nextButtonPressed() { -// if myFrameCount < myMaxFrameCount { -// myFrameCount++ -// } - __animations.gotoNextFrame() - - // Update LEDs - updateLEDFrame() - - // Update control button visibility - updateButtonVisibility() - } - - func firstButtonPressed() { - //myFrameCount = 1; - __animations.gotoFirstFrame() - - // Update LEDs - updateLEDFrame() - - // Update control button visibility - updateButtonVisibility() - } - - func lastButtonPressed() { - __animations.gotoLastFrame() - - // Update LEDs - updateLEDFrame() - - // Update control button visibility - updateButtonVisibility() - } - - func plusSpeedButtonPressed() { - __animations.increaseSpeed() -// if ( _playSendDelay <= 3 ) { // 3 seconds slowest fps -// _playSendDelay = _playSendDelay + 0.1 - updateSpeedText() -// } - rescheduleTimer() - } - - func minusSpeedButtonPressed() { - //println(_playSendDelay) - __animations.decreaseSpeed() -// if ( _playSendDelay > 0.2 ) { // 100ms fastest fps -// _playSendDelay = _playSendDelay - 0.1 - updateSpeedText() -// } - rescheduleTimer() - } - - func updateSpeedText() { - if let rootNode = self.scene?.rootNode { - for childNode in rootNode.childNodes { - let buttonNode: SCNNode = childNode as! SCNNode - if buttonNode.name == "mySpeedText" { - let geometry:SCNText = buttonNode.geometry as! SCNText - geometry.string = "Speed: \(__animations.animationSpeedInt()) ms" - } - - } - } - - } - - - func playButtonPressed() { - // Change the button from Play to Pause - let myPauseButtonNode: SCNNode = self.scene!.rootNode.childNodeWithName("myPauseButton", recursively: true)! - let myPlayButtonNode: SCNNode = self.scene!.rootNode.childNodeWithName("myPlayButton", recursively: true)! - myPlayButtonNode.hidden = true - myPauseButtonNode.hidden = false - - // Start the animation - _playAllFrames = true - scheduleTimer(); - } - - func pauseButtonPressed() { - // Change the button from Pause to Play - let myPauseButtonNode: SCNNode = self.scene!.rootNode.childNodeWithName("myPauseButton", recursively: true)! - let myPlayButtonNode: SCNNode = self.scene!.rootNode.childNodeWithName("myPlayButton", recursively: true)! - myPauseButtonNode.hidden = true - myPlayButtonNode.hidden = false - - // Stop the animation - _playAllFrames = false - resetTimer() - } - - func openAnimationWindow() { - _animationsWindow.setIsVisible(true) - - } - - override func rightMouseDown(theEvent: NSEvent) { - let p = self.convertPoint(theEvent.locationInWindow, fromView: nil) - if let hitResults = self.hitTest(p, options: nil) { - // check that we clicked on at least one object - if hitResults.count > 0 { - // retrieved the first clicked object - let result: AnyObject = hitResults[0] - if let node = result.node { - if let geom = node.geometry { - if let name:NSString = geom.name { - if name.integerValue >= 0 && name.integerValue < 64 { // LED lamps - let color: NSColor = geom.firstMaterial?.diffuse.contents as! NSColor - if color != NSColor.grayColor() { - // Make sure we are in range of 0...255 - let ledColor = (color.hueComponent * 255) % 255 - if ( ledColor >= 0 && ledColor < 255 ) { - klickedColor = UInt8(ledColor) - } - klickedColor = UInt8 (color.hueComponent * 255) - moveArrows(Int(klickedColor)) - //println(klickedColor) - } - } - } - } - } - } - } - } - - override func mouseDown(theEvent: NSEvent) { - lastMousePos = theEvent.locationInWindow - /* Called when a mouse click occurs */ - - var ledPressed: Int = 0; - var ledColorOn = false; - - // check what nodes are clicked - let p = self.convertPoint(theEvent.locationInWindow, fromView: nil) - if let hitResults = self.hitTest(p, options: nil) { - // check that we clicked on at least one object - if hitResults.count > 0 { - // retrieved the first clicked object - let result: AnyObject = hitResults[0] - var anim = true - - // get its material - let material = result.node!.geometry!.firstMaterial! - - if let clickedNode = result.node { - if clickedNode.name == "myBox" { - anim = false - } - if clickedNode.name == "myPlayButton" && __animations.getAnimationFrameCount() > 1 { - playButtonPressed() - anim = false - } - if clickedNode.name == "myPauseButton" { - pauseButtonPressed() - anim = false - } - if clickedNode.name == "myAddFrameButton" { - plusButtonPressed() - } - if clickedNode.name == "myDelFrameButton" { - minusButtonPressed() - } - if clickedNode.name == "myPrevFrameButton" { - prevButtonPressed() - } - if clickedNode.name == "myNextFrameButton" { - nextButtonPressed() - } - if clickedNode.name == "myStartFrameButton" { - firstButtonPressed() - } - if clickedNode.name == "myLastFrameButton" { - lastButtonPressed() - } - if clickedNode.name == "myPlusSpeedButton" { - plusSpeedButtonPressed() - } - if clickedNode.name == "myMinusSpeedButton" { - minusSpeedButtonPressed() - } - if clickedNode.name == "myMngAnimationsButton" { - openAnimationWindow() - } - if clickedNode.name == "myColorBar" || clickedNode.name == "myArrows" { - let colorInt = Int(round(relativeBarPosition - theEvent.locationInWindow.y)) - if colorInt < 0 { - klickedColor = 0 // Minimum value - }else{ - if colorInt > 253 { - klickedColor = 253 // Maximum value - }else{ - klickedColor = UInt8(colorInt) - println(klickedColor) - } - } - // Move arrows to the clicked position - moveArrows(colorInt) - - //println("BarX: \(barRootPositionX) ClickedX: \(theEvent.locationInWindow.x) ") - //println("BarY: \(barRootPositionY) ClickedY: \(theEvent.locationInWindow.y) ") - - - anim = false - } - } - - // get its name - if let node = result.node { - if let geom = node.geometry { - if let name:NSString = geom.name { - let myGeometry:SCNText = self.scene!.rootNode.childNodeWithName("myDescr", recursively: true)?.geometry as! SCNText - // Show touched led - myGeometry.string = name - // Check for previously color - let prevColor = geom.firstMaterial?.diffuse.contents as! NSColor - if prevColor != NSColor.grayColor() { - geom.firstMaterial?.diffuse.contents = NSColor.grayColor() - ledColorOn = false - }else{ - let hueColor = CGFloat(klickedColor) / 255.0 - geom.firstMaterial?.diffuse.contents = NSColor(calibratedHue: hueColor, saturation: 1.0, brightness: 1.0, alpha: 1.0) - ledColorOn = true - } - ledPressed = Int(name.intValue) - - // Update the LED frame - var myByte: UInt8 - if ledColorOn { - myByte = klickedColor - }else{ - myByte = 255 // Off - } - __animations.setLEDColor(myByte, led: ledPressed) - - } - } - } - - /* - if let rootNode = self.scene?.rootNode { - if let cubeNode = rootNode.childNodeWithName("cubeNode", recursively: true) { - if let boxNode = cubeNode.childNodeWithName("myBox", recursively: true ) { - //anim = false - } - } - } */ - - - //let name:NSString = result.node!.geometry!.name! -/* - let myScene:SCNScene = self.scene! - let myRootNode:SCNNode = myScene.rootNode - let myTextNode:SCNNode = myRootNode.childNodeWithName("myDescr", recursively: false)! - let myGeometry:SCNText = myTextNode.geometry as SCNText -*/ - - - - //let nextNode = self.scene - //let text = self.scene?.rootNode.childNodeWithName("myDescr", recursively: true) - - - //println(name); - - - if anim { - - // highlight it - SCNTransaction.begin() - SCNTransaction.setAnimationDuration(0.2) - - // on completion - unhighlight - SCNTransaction.setCompletionBlock() { - SCNTransaction.begin() - SCNTransaction.setAnimationDuration(0.2) - - material.emission.contents = NSColor.blackColor() - - SCNTransaction.commit() - } - - material.emission.contents = NSColor.grayColor() - - SCNTransaction.commit() - - //myFrames.replaceBytesInRange(NSMakeRange(((myFrameCount-1)*64)+ledPressed, 1), withBytes: myByte) - - } - - } - } - - super.mouseDown(theEvent) - } - - func moveArrows(colorY: Int) { - // Range is from y=+15 ... -1 - let myArrowsNode = self.scene!.rootNode.childNodeWithName("myArrows", recursively: true) - let myRelativePos = 16.0 * CGFloat(colorY) / 255.0 - SCNTransaction.begin() - SCNTransaction.setAnimationDuration(0.5) - myArrowsNode?.position = SCNVector3(x:17, y: (16 - myRelativePos)-1, z:0.1) - SCNTransaction.commit() - } - - func rotateCamera(var x: CGFloat, var y: CGFloat) { - // Save the angle for reset - startAngle = startAngle + y - - // rotate - if let node = self.scene!.rootNode.childNodeWithName("cubeNode", recursively: true) { - node.runAction(SCNAction.rotateByX(0, y: y, z: 0, duration: 0.5)) - } - //println(startAngle) - } - - override func mouseUp(theEvent: NSEvent) { - // Reset the last location - lastMousePos.x = 0.0 - lastMousePos.y = 0.0 - - super.mouseUp(theEvent) - } - - override func mouseDragged(theEvent: NSEvent) { - let mousePos = theEvent.locationInWindow - if lastMousePos.x > 0.0 { - let drag = ( (lastMousePos.x - mousePos.x ) / 50 ) * -1 - rotateCamera(0.0, y: drag) - lastMousePos = mousePos - //println(drag) - } - - super.mouseDragged(theEvent) - } - - override func flagsChanged(theEvent: NSEvent) { -// println(theEvent.keyCode) - } - - override func keyDown(theEvent: NSEvent) { - - /* - if theEvent.modifierFlags & .CommandKeyMask != nil { - println("cmd pressed") - } -*/ - - - switch (theEvent.keyCode) { - case 123: - self.rotateCamera(0.0, y: -0.1) - // Left - break; - case 124: - self.rotateCamera(0.0, y: 0.1) - //self.rotateByAngle(-1.0); - //right - break; - case 15: // r - Key - // Reset the cube position - self.rotateCamera(0.0, y: -startAngle) - break; - case 17: // t - Key - // Reset the frame color on the Cube - //myFrames.replaceBytesInRange(NSMakeRange(myFrameCount-1, 64), withBytes: emptyFrame) - __animations.clearLEDColor() - - // Reset the frame color in 3D - if let rootNode = self.scene?.rootNode { - if let cubeNode = rootNode.childNodeWithName("cubeNode", recursively: true) { - for myLED in cubeNode.childNodes { - if let name:NSString = myLED.name { - if name != "myBox" { // LED lamps - if let geometry: SCNGeometry = myLED.geometry { - if let material: SCNMaterial = geometry.firstMaterial { - material.diffuse.contents = NSColor.grayColor() - //println(name) - } - } - - } - } - } - } - } - break; - default: - super.keyDown(theEvent) - } - - println(theEvent.keyCode); - - - //super.keyDown(theEvent) - } - -} diff --git a/Cube4Fun/GameViewController.swift b/Cube4Fun/GameViewController.swift deleted file mode 100644 index 574203a..0000000 --- a/Cube4Fun/GameViewController.swift +++ /dev/null @@ -1,230 +0,0 @@ -// -// GameViewController.swift -// Cube4Fun -// -// Created by Nikolai Rinas on 27.03.15. -// Copyright (c) 2015 Nikolai Rinas. All rights reserved. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, see - -import SceneKit -import QuartzCore - -/* -var myFrameCount: UInt32 = 1; -var myMaxFrameCount: UInt32 = 1; -var myFrames: NSMutableData = NSMutableData() // == byte[] array -var _emptyAnimation: NSMutableDictionary = ["AnimName": "Animation1", "AnimKey": "1=anim1", "AnimDur": 1, "AnimSpeed": 500, "AnimFrames": 1, "AnimData": myFrames] - -let emptyFrame: [Byte] = [ - 255,255,255,255, - 255,255,255,255, - 255,255,255,255, - 255,255,255,255, - 255,255,255,255, - 255,255,255,255, - 255,255,255,255, - 255,255,255,255, - 255,255,255,255, - 255,255,255,255, - 255,255,255,255, - 255,255,255,255, - 255,255,255,255, - 255,255,255,255, - 255,255,255,255, - 255,255,255,255] - -let _minSendDelay: NSTimeInterval = 0.200 // 200 milliseconds -let _frameSendDelay: NSTimeInterval = 0.2 // one second -var _playSendDelay: NSTimeInterval = 0.5 // 500 milliseconds as default -*/ - -var _previousUpdateTime: NSTimeInterval = NSTimeInterval() -var _deltaTime: NSTimeInterval = NSTimeInterval() -var _playAllFrames = false -var _gameView: GameView = GameView(); - -class GameViewController: NSViewController { // SCNSceneRendererDelegate - - @IBOutlet weak var gameView: GameView! - - - /* - func renderer(aRenderer: SCNSceneRenderer, updateAtTime time: NSTimeInterval) { - //sendFrame(time) - sendFrame(NSDate.timeIntervalSinceReferenceDate()) - //println("This will be called before each frame draw") - } - - override func viewDidLoad() { - self.gameView!.delegate = self - - super.viewDidLoad() - } - */ - - - //func sendFrame() { - // sendFrame(NSDate.timeIntervalSinceReferenceDate()) - //} - - /* - func sendFrame(time: NSTimeInterval) { - //println(time) - - if (_previousUpdateTime == 0.0) { - _previousUpdateTime = time; - } - _deltaTime = time - _previousUpdateTime; - - //var ms = Int((time % 1) * 1000) - if ( _playAllFrames ) { - if ( _deltaTime >= __animations.animationSpeedFloat() ){ - if (__animations.getAnimationFrameID() >= __animations.getAnimationFrameCount()) { - self.gameView!.firstButtonPressed() - }else{ - self.gameView!.nextButtonPressed() - } - CubeNetworkObj.updateFrame(__animations.getAnimDataSelected(), count: UInt32(__animations.getAnimationFrameID())) - _previousUpdateTime = time; - } - }else{ - if ( _deltaTime >= __animations.getMinSendDelay() ) { - CubeNetworkObj.updateFrame(__animations.getAnimDataSelected(), count: UInt32(__animations.getAnimationFrameID())) - //println("SendFrame: \(_deltaTime)") - _previousUpdateTime = time; - } - } - //CubeNetworkObj.updateFrame(UnsafePointer(myFrames.bytes), count: myFrameCount) - } - -*/ - - override func awakeFromNib(){ - - _gameView = gameView; - //NSTimer.scheduledTimerWithTimeInterval(_frameSendDelay, invocation: CubeNetworkObj.initObjects(), repeats: true) -// CubeNetworkObj.initObjects(); - - // Init first frame - -// myFrames = NSMutableData(bytes: emptyFrame, length: 64) -// myFrameCount = 1 - // Open connection to the LED cube - let established = CubeNetworkObj.openConnection(__prefData.ipAddr(), port: UInt32(__prefData.portNR())) - if established { - println("connection established") - }else{ - println("connection failed") - } - __animations.sendFrame() - - // Fallback timer if nothing render at the moment - // NSTimer.scheduledTimerWithTimeInterval(__animations.getMinSendDelay(), target: self, selector: Selector("sendFrame"), userInfo: nil, repeats: true) - - - - - // create a new scene - //let scene = SCNScene(named: "art.scnassets/ship.dae")! - let scene = PrimitivesScene(); - - - // create and add a camera to the scene - let camera = SCNCamera() - camera.usesOrthographicProjection = true - camera.orthographicScale = 15 - camera.zNear = 0 - camera.zFar = 100 - let cameraNode = SCNNode() - cameraNode.camera = camera - cameraNode.name = "myCamera" - scene.rootNode.addChildNode(cameraNode) - - // place the camera - var newAngle = (CGFloat)(20.0)*(CGFloat)(M_PI)/180.0 - //newAngle += currentAngle - -// cameraNode.transform = SCNMatrix4MakeRotation(-0.5, 0, 0, 1) - - cameraNode.transform = SCNMatrix4MakeRotation(newAngle, 0, 1, 0) - cameraNode.transform = SCNMatrix4MakeRotation(-0.4, 1, 0, 0) - cameraNode.position = SCNVector3(x: 0, y: 13, z: 30) - //cameraNode.eulerAngles = SCNVector3(x: 1.0, y: 0.0, z: 0.0) - - - /* - let camera = SCNCamera() - camera.usesOrthographicProjection = true - camera.orthographicScale = 9 - camera.zNear = 0 - camera.zFar = 100 - let cameraNode = SCNNode() - cameraNode.position = SCNVector3(x: 0, y: 0, z: 20) - cameraNode.camera = camera - let cameraOrbit = SCNNode() - cameraOrbit.name = "myCamera" - cameraOrbit.addChildNode(cameraNode) - scene.rootNode.addChildNode(cameraOrbit) -*/ - - // create and add a light to the scene - let lightNode = SCNNode() - lightNode.light = SCNLight() - lightNode.light!.type = SCNLightTypeDirectional - lightNode.light!.color = NSColor.grayColor() - lightNode.position = SCNVector3(x: 20, y: 40, z: 20) - scene.rootNode.addChildNode(lightNode) - - // create and add an ambient light to the scene - let ambientLightNode = SCNNode() - ambientLightNode.light = SCNLight() - ambientLightNode.light!.type = SCNLightTypeAmbient - ambientLightNode.light!.color = NSColor.darkGrayColor() - scene.rootNode.addChildNode(ambientLightNode) - - - // Background image - scene.background.contents = NSImage(named: "Background.jpg") - - - /* - // retrieve the ship node - let ship = scene.rootNode.childNodeWithName("ship", recursively: true)! - - // animate the 3d object - let animation = CABasicAnimation(keyPath: "rotation") - animation.toValue = NSValue(SCNVector4: SCNVector4(x: CGFloat(0), y: CGFloat(1), z: CGFloat(0), w: CGFloat(M_PI)*2)) - animation.duration = 3 - animation.repeatCount = MAXFLOAT //repeat forever - ship.addAnimation(animation, forKey: nil) - */ - - scene.paused = false - - // set the scene to the view - self.gameView!.scene = scene - - - // allows the user to manipulate the camera - //self.gameView!.allowsCameraControl = true - - // show statistics such as fps and timing information - //self.gameView!.showsStatistics = true - - // configure the view - self.gameView!.backgroundColor = NSColor.blackColor() - } - -} diff --git a/Cube4Fun/Gradient.png b/Cube4Fun/Gradient.png deleted file mode 100644 index d43e8ed..0000000 Binary files a/Cube4Fun/Gradient.png and /dev/null differ diff --git a/Cube4Fun/Gradient2.png b/Cube4Fun/Gradient2.png deleted file mode 100644 index 230a951..0000000 Binary files a/Cube4Fun/Gradient2.png and /dev/null differ diff --git a/Cube4Fun/Images.xcassets/AppIcon.appiconset/Cube4Fun-Icon-128.png b/Cube4Fun/Images.xcassets/AppIcon.appiconset/Cube4Fun-Icon-128.png deleted file mode 100644 index 4593301..0000000 Binary files a/Cube4Fun/Images.xcassets/AppIcon.appiconset/Cube4Fun-Icon-128.png and /dev/null differ diff --git a/Cube4Fun/Images.xcassets/AppIcon.appiconset/Cube4Fun-Icon-16.png b/Cube4Fun/Images.xcassets/AppIcon.appiconset/Cube4Fun-Icon-16.png deleted file mode 100644 index d136f6a..0000000 Binary files a/Cube4Fun/Images.xcassets/AppIcon.appiconset/Cube4Fun-Icon-16.png and /dev/null differ diff --git a/Cube4Fun/Images.xcassets/AppIcon.appiconset/Cube4Fun-Icon-256-1.png b/Cube4Fun/Images.xcassets/AppIcon.appiconset/Cube4Fun-Icon-256-1.png deleted file mode 100644 index 33c80d2..0000000 Binary files a/Cube4Fun/Images.xcassets/AppIcon.appiconset/Cube4Fun-Icon-256-1.png and /dev/null differ diff --git a/Cube4Fun/Images.xcassets/AppIcon.appiconset/Cube4Fun-Icon-256.png b/Cube4Fun/Images.xcassets/AppIcon.appiconset/Cube4Fun-Icon-256.png deleted file mode 100644 index 33c80d2..0000000 Binary files a/Cube4Fun/Images.xcassets/AppIcon.appiconset/Cube4Fun-Icon-256.png and /dev/null differ diff --git a/Cube4Fun/Images.xcassets/AppIcon.appiconset/Cube4Fun-Icon-32-1.png b/Cube4Fun/Images.xcassets/AppIcon.appiconset/Cube4Fun-Icon-32-1.png deleted file mode 100644 index af51fae..0000000 Binary files a/Cube4Fun/Images.xcassets/AppIcon.appiconset/Cube4Fun-Icon-32-1.png and /dev/null differ diff --git a/Cube4Fun/Images.xcassets/AppIcon.appiconset/Cube4Fun-Icon-32.png b/Cube4Fun/Images.xcassets/AppIcon.appiconset/Cube4Fun-Icon-32.png deleted file mode 100644 index af51fae..0000000 Binary files a/Cube4Fun/Images.xcassets/AppIcon.appiconset/Cube4Fun-Icon-32.png and /dev/null differ diff --git a/Cube4Fun/Images.xcassets/AppIcon.appiconset/Cube4Fun-Icon-64.png b/Cube4Fun/Images.xcassets/AppIcon.appiconset/Cube4Fun-Icon-64.png deleted file mode 100644 index 6670709..0000000 Binary files a/Cube4Fun/Images.xcassets/AppIcon.appiconset/Cube4Fun-Icon-64.png and /dev/null differ diff --git a/Cube4Fun/ObjCtoCPlusPlus.h b/Cube4Fun/ObjCtoCPlusPlus.h deleted file mode 100755 index 59517f0..0000000 --- a/Cube4Fun/ObjCtoCPlusPlus.h +++ /dev/null @@ -1,29 +0,0 @@ -// -// ObjCtoCPlusPlus.h -// -// Created by Nikolai Rinas on 02/02/2015. -// Copyright (c) 2015 Nikolai Rinas. All rights reserved. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, see - -#import - -@interface CubeNetworkObj : NSObject -+ (void) updateFrame: (const unsigned char *) frameSequence count: (UInt32) frameCount; -+ (void) sendBytes: (const unsigned char *) byteBuffer count: (u_int32_t) byteLength; -//+ (void) initObjects; -+ (bool) openConnection: (const char *) ipAddress port: (UInt32) port; -+ (void) closeConnection; -+ (bool) connected; -@end \ No newline at end of file diff --git a/Cube4Fun/ObjCtoCPlusPlus.mm b/Cube4Fun/ObjCtoCPlusPlus.mm deleted file mode 100755 index cfdd196..0000000 --- a/Cube4Fun/ObjCtoCPlusPlus.mm +++ /dev/null @@ -1,53 +0,0 @@ - -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, see - -#import "ObjCtoCPlusPlus.h" - -#import "CubeNetwork.h" - - -@implementation CubeNetworkObj - -/* -+ (void) initObjects -{ - CubeNetwork::initObjects(); -} - */ -+ (void) updateFrame: (const unsigned char *) frameSequence count: (UInt32) frameCount -{ - CubeNetwork::updateFrame(frameSequence, frameCount); -} -+ (void) sendBytes: (const unsigned char *) byteBuffer count: (u_int32_t) byteLength -{ - CubeNetwork::sendBytes(byteBuffer, byteLength); -} -//+ (void) openConnection -+ (bool) openConnection: (const char *) ipAddress port: (UInt32) port -{ - bool success = false; - success = CubeNetwork::openConnection(ipAddress, port); - return success; -} -+ (void) closeConnection -{ - CubeNetwork::closeConnection(); -} - -+ (bool) connected -{ - return CubeNetwork::connected(); -} - -@end \ No newline at end of file diff --git a/Cube4Fun/Preferences.swift b/Cube4Fun/Preferences.swift deleted file mode 100644 index 164ce65..0000000 --- a/Cube4Fun/Preferences.swift +++ /dev/null @@ -1,77 +0,0 @@ -// -// Preferences.swift -// Cube4Fun -// -// Created by Nikolai Rinas on 18.04.15. -// Copyright (c) 2015 Nikolai Rinas. All rights reserved. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, see - -import Foundation - -class Preferences: NSObject { - - let _myPrefs: NSUserDefaults = NSUserDefaults() - var _myIPAddr: String = String() - var _myPortNr: Int = Int() - - let ipaddr_txt: String = "IPADDR" - let portnr_txt: String = "PORTNR" - // ipAddr - - - override init() { - super.init() - - // Load defaults - self.loadFile() - } - - func loadFile() { - // Load ip address - if let myIPAddr: String = _myPrefs.stringForKey(ipaddr_txt) { - _myIPAddr = myIPAddr - } - // Load custom port - let myPort: Int = _myPrefs.integerForKey(portnr_txt) - if myPort > 0 { - _myPortNr = myPort - } - } - - func saveFile() { - // Save ip address - _myPrefs.setObject(_myIPAddr, forKey: ipaddr_txt) - // Save port number - _myPrefs.setInteger(_myPortNr, forKey: portnr_txt) - } - - func ipAddr() -> (String) { - return _myIPAddr - } - - func setIPAddr(ipAddr: String) { - _myIPAddr = ipAddr - self.saveFile() - } - - func portNR() -> (Int) { - return _myPortNr - } - - func setPortNr(portNr: Int) { - _myPortNr = portNr - self.saveFile() - } -} \ No newline at end of file diff --git a/Cube4Fun/PrimitivesScene.swift b/Cube4Fun/PrimitivesScene.swift deleted file mode 100644 index 2c50b21..0000000 --- a/Cube4Fun/PrimitivesScene.swift +++ /dev/null @@ -1,283 +0,0 @@ -// -// PrimitivesScene.swift -// Cube4Fun -// -// Created by Nikolai Rinas on 27.03.15. -// Copyright (c) 2015 Nikolai Rinas. All rights reserved. -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, see - -import Cocoa -import SceneKit -import QuartzCore - -let debugOn = false -let animRun = false - -class PrimitivesScene: SCNScene { - - func createPlayback() { - // Play - Button - let playImage = SCNPlane(width: 2.2, height: 2.2) - playImage.firstMaterial?.diffuse.contents = NSImage(named: "media-playback-start-5.png") - let playImageNode = SCNNode(geometry: playImage) - playImageNode.name = "myPlayButton" - playImageNode.position = SCNVector3(x:0, y:14, z:0) - self.rootNode.addChildNode(playImageNode) - - // Pause - Button - let pauseImage = SCNPlane(width: 2.5, height: 2.5) - pauseImage.firstMaterial?.diffuse.contents = NSImage(named: "media-playback-pause-5.png") - let pauseImageNode = SCNNode(geometry: pauseImage) - pauseImageNode.name = "myPauseButton" - pauseImageNode.position = SCNVector3(x:0, y:14, z:0) - pauseImageNode.hidden = true - if __animations.getAnimationFrameID() == 1 && __animations.getAnimationFrameCount() == 1 { - pauseImageNode.hidden = true - } - self.rootNode.addChildNode(pauseImageNode) - - // NextFrame - Button - let nextFrameImage = SCNPlane(width: 2.0, height: 2.0) - nextFrameImage.firstMaterial?.diffuse.contents = NSImage(named: "media-seek-forward-5.png") - let nextFrameImageNode = SCNNode(geometry: nextFrameImage) - nextFrameImageNode.name = "myNextFrameButton" - nextFrameImageNode.position = SCNVector3(x:2, y:14, z:0) - if __animations.getAnimationFrameID() == 1 && __animations.getAnimationFrameCount() == 1 { - nextFrameImageNode.hidden = true - } - self.rootNode.addChildNode(nextFrameImageNode) - - // PrevFrame - Button - let prevFrameImage = SCNPlane(width: 2.0, height: 2.0) - prevFrameImage.firstMaterial?.diffuse.contents = NSImage(named: "media-seek-backward-5.png") - let prevFrameImageNode = SCNNode(geometry: prevFrameImage) - prevFrameImageNode.name = "myPrevFrameButton" - prevFrameImageNode.position = SCNVector3(x:-2, y:14, z:0) - if __animations.getAnimationFrameID() == 1 { - prevFrameImageNode.hidden = true - } - self.rootNode.addChildNode(prevFrameImageNode) - - // StartFrame - Button - let startFrameImage = SCNPlane(width: 2.0, height: 2.0) - startFrameImage.firstMaterial?.diffuse.contents = NSImage(named: "media-skip-backward-5.png") - let startFrameImageNode = SCNNode(geometry: startFrameImage) - startFrameImageNode.name = "myStartFrameButton" - startFrameImageNode.position = SCNVector3(x:-5, y:14, z:0) - if __animations.getAnimationFrameID() == 1 { - startFrameImageNode.hidden = true - } - self.rootNode.addChildNode(startFrameImageNode) - - // LastFrame - Button - let lastFrameImage = SCNPlane(width: 2.0, height: 2.0) - lastFrameImage.firstMaterial?.diffuse.contents = NSImage(named: "media-skip-forward-5.png") - let lastFrameImageNode = SCNNode(geometry: lastFrameImage) - lastFrameImageNode.name = "myLastFrameButton" - lastFrameImageNode.position = SCNVector3(x:5, y:14, z:0) - if __animations.getAnimationFrameID() == __animations.getAnimationFrameCount() { - lastFrameImageNode.hidden = true - } - self.rootNode.addChildNode(lastFrameImageNode) - - } - - func createSpeedButtons() { - // Frame - let textSpeed = SCNText(string: "Speed: \(__animations.animationSpeedInt()) ms", extrusionDepth: 0) - textSpeed.font = NSFont(name: "Arial", size: 1.2) - let textSpeedNode = SCNNode(geometry: textSpeed) - textSpeedNode.name = "mySpeedText" - textSpeedNode.position = SCNVector3(x:-20.0 , y: 9.7, z: 0.0) - self.rootNode.addChildNode(textSpeedNode) - - // SpeedUp - Button - let plusSpeedImage = SCNPlane(width: 1.7, height: 1.7) - plusSpeedImage.firstMaterial?.diffuse.contents = NSImage(named: "list-add-2.png") - let plusSpeedImageNode = SCNNode(geometry: plusSpeedImage) - plusSpeedImageNode.name = "myPlusSpeedButton" - plusSpeedImageNode.position = SCNVector3(x:-16.5, y:8, z:0) - self.rootNode.addChildNode(plusSpeedImageNode) - - // SpeedDown - Button - let minusSpeedImage = SCNPlane(width: 1.7, height: 1.7) - minusSpeedImage.firstMaterial?.diffuse.contents = NSImage(named: "list-remove-2.png") - let minusSpeedImageNode = SCNNode(geometry: minusSpeedImage) - minusSpeedImageNode.name = "myMinusSpeedButton" - minusSpeedImageNode.position = SCNVector3(x:-18.7, y:8, z:0) - self.rootNode.addChildNode(minusSpeedImageNode) - } - - func createFrameButtons() { - let textFrame = SCNText(string: "Frame: \(__animations.getAnimationFrameID())/\(__animations.getAnimationFrameCount())", extrusionDepth: 0) - textFrame.font = NSFont(name: "Arial", size: 1.2) - let textFrameNode = SCNNode(geometry: textFrame) - textFrameNode.name = "myFrameText" - textFrameNode.position = SCNVector3(x:-20.0 , y: 13.7, z: 0.0) - self.rootNode.addChildNode(textFrameNode) - - // AddFrame - Button - let addFrameImage = SCNPlane(width: 1.7, height: 1.7) - addFrameImage.firstMaterial?.diffuse.contents = NSImage(named: "list-add-2.png") - let addFrameImageNode = SCNNode(geometry: addFrameImage) - addFrameImageNode.name = "myAddFrameButton" - addFrameImageNode.position = SCNVector3(x:-16.5, y:12, z:0) - self.rootNode.addChildNode(addFrameImageNode) - - // DeleteFrame - Button - let delFrameImage = SCNPlane(width: 1.7, height: 1.7) - delFrameImage.firstMaterial?.diffuse.contents = NSImage(named: "list-remove-2.png") - let delFrameImageNode = SCNNode(geometry: delFrameImage) - delFrameImageNode.name = "myDelFrameButton" - delFrameImageNode.position = SCNVector3(x:-18.7, y:12, z:0) - // for first frame, there is nothing to delete - if ( __animations.getAnimationFrameID() == 1 ) { - delFrameImageNode.hidden = true - } - self.rootNode.addChildNode(delFrameImageNode) - } - - func createOpenAnimations() { - let textAnimations = SCNText(string: "List Animations", extrusionDepth: 0) - textAnimations.font = NSFont(name: "Arial", size: 1.2) - let textAnimationsNode = SCNNode(geometry: textAnimations) - textAnimationsNode.name = "myAnimationsText" - textAnimationsNode.position = SCNVector3(x:-20.0 , y: 5.7, z: 0.0) - self.rootNode.addChildNode(textAnimationsNode) - - // Manage Animations - Button - let mngAnimationsImage = SCNPlane(width: 1.7, height: 1.7) - mngAnimationsImage.firstMaterial?.diffuse.contents = NSImage(named: "view-sidetree.png") - let mngAnimationsImageNode = SCNNode(geometry: mngAnimationsImage) - mngAnimationsImageNode.name = "myMngAnimationsButton" - mngAnimationsImageNode.position = SCNVector3(x:-16.5, y:4, z:0) - self.rootNode.addChildNode(mngAnimationsImageNode) - } - - override init() { - super.init() - - var radius:CGFloat = 1.0 - - let yCount = 4 - let zCount = 4 - let xCount = 4 - var myIndex = 0 - - let spaceBetweenLEDs:CGFloat = 4.0 - let edgePosX:CGFloat = CGFloat(xCount-1) * spaceBetweenLEDs * -1 / 2 - let edgePosY:CGFloat = CGFloat(yCount-1) * spaceBetweenLEDs * -1 / 2 - let edgePosZ:CGFloat = CGFloat(zCount-1) * spaceBetweenLEDs * -1 / 2 - let boxSizeX:CGFloat = CGFloat(xCount-1) * spaceBetweenLEDs + 2 * radius - let boxSizeZ:CGFloat = CGFloat(zCount-1) * spaceBetweenLEDs + 2 * radius - let boxPosY:CGFloat = (CGFloat(yCount-1) * spaceBetweenLEDs / 2) + radius + 0.5 - - - // ID for the LED - let text = SCNText(string: "Klick", extrusionDepth: 0) - text.font = NSFont(name: "Arial", size: 1.5) - let textNode = SCNNode(geometry: text) - textNode.name = "myDescr" - if ( debugOn ) { - textNode.position = SCNVector3(x:-20.0 , y: -14.0, z: 0.0) - }else{ - textNode.position = SCNVector3(x:-20.0 , y: -24.0, z: 0.0) - } - self.rootNode.addChildNode(textNode) - - // Frame - createFrameButtons() - - // Action Buttons - createPlayback() - - // Speed Buttons - createSpeedButtons() - - // Open Animation Button - createOpenAnimations() - - // color picker - let colorBar = SCNPlane(width: 3, height: 16) - colorBar.firstMaterial?.diffuse.contents = NSImage(named: "Gradient2.png") - let colorBarNode = SCNNode(geometry: colorBar) - colorBarNode.name = "myColorBar" - colorBarNode.position = SCNVector3(x: 17, y: 7, z:0.0) - self.rootNode.addChildNode(colorBarNode) - - // Arrows - let arrowImage = SCNPlane(width: 3, height: 2.0) - arrowImage.firstMaterial?.diffuse.contents = NSImage(named: "Arrows.png") - let arrowImageNode = SCNNode(geometry: arrowImage) - arrowImageNode.name = "myArrows" - arrowImageNode.position = SCNVector3(x:17, y:15, z:0.1) - self.rootNode.addChildNode(arrowImageNode) - - - // All movable objects - let cubeNode = SCNNode() - cubeNode.name = "cubeNode" - - let box = SCNBox(width: boxSizeX, height: 1.0, length: boxSizeZ, chamferRadius: 0.1) - box.firstMaterial?.diffuse.contents = NSColor.whiteColor() - let boxNode = SCNNode(geometry: box) - boxNode.name = "myBox" - boxNode.position = SCNVector3(x:0.0 , y: -boxPosY, z: 0.0) - cubeNode.addChildNode(boxNode) - - - var y:CGFloat = edgePosY - for row in 0.. - - - - SceneKit Collada Exporter v1.0 - - 2014-07-02T15:29:44Z - 2014-07-02T15:29:44Z - - Y_UP - - - - texture.png - - - - - - - - - - - - - image1 - - - - - ID2_image1_surface - CLAMP - CLAMP - LINEAR - LINEAR - LINEAR - - - - - - 1 1 1 1 - - - - - - 0.496564 0.496564 0.496564 1 - - - 0.022516 - - - 0 0 0 1 - - - 0.995918 1 1 1 - - - 1 - - - 1 - - - - - - - 1 - 1 - - - 0.5 - - - - - - - - - - - 1 - - - - - 1.90728 9.13077 -20.5988 1.46893 8.98198 -20.5988 1.40255 8.98476 -13.5613 2.0861 9.04903 -13.5702 2.36129 9.22108 -20.5988 1.90728 9.13077 -20.5988 2.0861 9.04903 -13.5702 2.72723 9.08804 -13.5839 2.82322 9.25136 -20.5988 2.36129 9.22108 -20.5988 2.72723 9.08804 -13.5839 3.3097 9.0984 -13.6021 3.28514 9.22108 -20.5988 2.82322 9.25136 -20.5988 3.3097 9.0984 -13.6021 3.82175 9.06917 -13.63 3.73916 9.13077 -20.5988 3.28514 9.22108 -20.5988 3.82175 9.06917 -13.63 4.31289 8.98198 -13.6555 4.17751 8.98198 -20.5988 3.73916 9.13077 -20.5988 4.31289 8.98198 -13.6555 4.73 8.83832 -13.6911 4.59268 8.77724 -20.5988 4.17751 8.98198 -20.5988 4.73 8.83832 -13.6911 5.12506 8.64065 -13.7294 4.97758 8.52005 -20.5988 4.59268 8.77724 -20.5988 5.12506 8.64065 -13.7294 5.49132 8.39234 -13.7693 5.32561 8.21483 -20.5988 4.97758 8.52005 -20.5988 5.49132 8.39234 -13.7693 5.82249 8.09766 -13.8097 5.63084 7.8668 -20.5988 5.32561 8.21483 -20.5988 5.82249 8.09766 -13.8097 6.11293 7.76164 -13.8494 5.88802 7.4819 -20.5988 5.63084 7.8668 -20.5988 6.11293 7.76164 -13.8494 6.35765 7.39003 -13.8872 6.09276 7.06672 -20.5988 5.88802 7.4819 -20.5988 6.35765 7.39003 -13.8872 6.55247 6.98918 -13.9219 6.24156 6.62838 -20.5988 6.09276 7.06672 -20.5988 6.55247 6.98918 -13.9219 6.69406 6.56597 -13.9526 6.33186 6.17436 -20.5988 6.24156 6.62838 -20.5988 6.69406 6.56597 -13.9526 6.78 6.12763 -13.9784 6.36214 5.71244 -20.5988 6.33186 6.17436 -20.5988 6.78 6.12763 -13.9784 6.80881 5.68165 -13.9987 6.33186 5.25051 -20.5988 6.36214 5.71244 -20.5988 6.80881 5.68165 -13.9987 6.78 5.23567 -14.013 6.24156 4.7965 -20.5988 6.33186 5.25051 -20.5988 6.78 5.23567 -14.013 6.69406 4.79733 -14.0213 6.09276 4.35815 -20.5988 6.24156 4.7965 -20.5988 6.69406 4.79733 -14.0213 6.55247 4.37412 -14.0235 5.88801 3.94298 -20.5988 6.09276 4.35815 -20.5988 6.55247 4.37412 -14.0235 6.35765 3.97328 -14.0199 5.63083 3.55808 -20.5988 5.88801 3.94298 -20.5988 6.35765 3.97328 -14.0199 6.11293 3.60167 -14.011 5.32561 3.21004 -20.5988 5.63083 3.55808 -20.5988 6.11293 3.60167 -14.011 5.82249 3.26564 -13.9974 4.97758 2.90482 -20.5988 5.32561 3.21004 -20.5988 5.82249 3.26564 -13.9974 5.49132 2.97096 -13.9799 4.59268 2.64764 -20.5988 4.97758 2.90482 -20.5988 5.49132 2.97096 -13.9799 5.12506 2.72266 -13.9593 4.17751 2.4429 -20.5988 4.59268 2.64764 -20.5988 5.12506 2.72266 -13.9593 4.73 2.52499 -13.9363 3.73916 2.2941 -20.5988 4.17751 2.4429 -20.5988 4.73 2.52499 -13.9363 4.31289 2.38132 -13.9119 3.28514 2.20379 -20.5988 3.73916 2.2941 -20.5988 4.31289 2.38132 -13.9119 3.82175 2.29413 -13.8932 2.82322 2.17352 -20.5988 3.28514 2.20379 -20.5988 3.82175 2.29413 -13.8932 3.3097 2.2649 -13.8676 2.3613 2.20379 -20.5988 2.82322 2.17352 -20.5988 3.3097 2.2649 -13.8676 2.72723 2.2999 -13.8471 1.90728 2.2941 -20.5988 2.3613 2.20379 -20.5988 2.72723 2.2999 -13.8471 2.0861 2.52204 -13.8319 1.46893 2.4429 -20.5988 1.90728 2.2941 -20.5988 2.0861 2.52204 -13.8319 1.40256 2.90142 -13.8218 8.4067 5.78898 0.084507 8.33006 6.17915 0.165135 8.7815 5.80004 6.19659 8.85415 5.43228 6.09733 8.43239 5.39201 0.021114 8.4067 5.78898 0.084507 8.85415 5.43228 6.09733 8.8785 5.05813 6.01479 8.4067 4.99505 -0.023744 8.43239 5.39201 0.021114 8.8785 5.05813 6.01479 8.85415 4.68397 5.9501 8.33006 4.60488 -0.049514 8.4067 4.99505 -0.023744 8.85415 4.68397 5.9501 8.7815 4.31622 5.90471 8.20378 4.22818 -0.056373 8.33006 4.60488 -0.049514 8.7815 4.31622 5.90471 8.66181 3.96115 5.88028 8.03003 3.87139 -0.045176 8.20378 4.22818 -0.056373 8.66181 3.96115 5.88028 8.49711 3.62486 5.87845 7.81177 3.54062 -0.017398 8.03003 3.87139 -0.045176 8.49711 3.62486 5.87845 8.29023 3.31309 5.90037 7.55274 3.24152 0.024996 7.81177 3.54062 -0.017398 8.29023 3.31309 5.90037 8.04471 3.03118 5.94627 7.25738 2.97922 0.079722 7.55274 3.24152 0.024996 8.04471 3.03118 5.94627 7.76474 2.78395 6.01496 6.93073 2.75821 0.144216 7.25738 2.97922 0.079722 7.76474 2.78395 6.01496 7.45512 2.57563 6.10341 6.53652 2.58226 0.215909 6.93073 2.75821 0.144216 7.45512 2.57563 6.10341 7.11544 2.40979 6.2068 6.12972 2.41824 0.304 6.53652 2.58226 0.215909 7.11544 2.40979 6.2068 6.75712 2.28926 6.32018 5.64844 2.313 0.396405 6.12972 2.41824 0.304 6.75712 2.28926 6.32018 6.37034 2.21611 6.43551 4.99338 2.3013 0.518936 5.64844 2.313 0.396405 6.37034 2.21611 6.43551 5.8601 2.19159 6.56721 4.39089 2.37307 0.634048 4.99338 2.3013 0.518936 5.8601 2.19159 6.56721 5.14544 2.21139 6.69469 3.45331 2.60552 0.763895 4.39089 2.37307 0.634048 5.14544 2.21139 6.69469 4.2281 2.3503 6.82683 2.27075 2.95101 0.90603 3.45331 2.60552 0.763895 4.2281 2.3503 6.82683 3.13511 2.60483 6.96341 1.66737 3.2541 7.12434 1.27333 3.30855 1.00838 2.27075 2.95101 0.90603 3.13511 2.60483 6.96341 3.40711 8.44026 1.64908 2.37147 8.44025 1.76233 2.99875 7.90066 8.19123 4.23651 7.95074 8.03381 4.33901 8.44026 1.51555 3.40711 8.44026 1.64908 4.23651 7.95074 8.03381 5.15975 7.94456 7.87227 5.01588 8.43328 1.39633 4.33901 8.44026 1.51555 5.15975 7.94456 7.87227 5.86977 7.93542 7.71481 5.61403 8.40726 1.25927 5.01588 8.43328 1.39633 5.86977 7.93542 7.71481 6.3751 7.90015 7.55243 6.14629 8.32965 1.12341 5.61403 8.40726 1.25927 6.3751 7.90015 7.55243 6.76034 7.82699 7.40644 6.57839 8.20177 0.982119 6.14629 8.32965 1.12341 6.76034 7.82699 7.40644 7.12115 7.70646 7.24409 6.93073 8.02582 0.862446 6.57839 8.20177 0.982119 7.12115 7.70646 7.24409 7.45512 7.54062 7.07656 7.25738 7.80481 0.737683 6.93073 8.02582 0.862446 7.45512 7.54062 7.07656 7.76474 7.3323 6.90718 7.55274 7.54251 0.611428 7.25738 7.80481 0.737683 7.76474 7.3323 6.90718 8.04471 7.08507 6.74209 7.81177 7.24341 0.487473 7.55274 7.54251 0.611428 8.04471 7.08507 6.74209 8.29023 6.80316 6.58597 8.03003 6.91264 0.369494 7.81177 7.24341 0.487473 8.29023 6.80316 6.58597 8.49711 6.49139 6.44188 8.20378 6.55585 0.261001 8.03003 6.91264 0.369494 8.49711 6.49139 6.44188 8.66181 6.1551 6.31171 8.33006 6.17915 0.165135 8.20378 6.55585 0.261001 8.66181 6.1551 6.31171 8.7815 5.80004 6.19659 6.55247 6.98918 -13.9219 6.35765 7.39003 -13.8872 7.36485 7.18265 -6.22906 7.54836 6.80509 -6.30341 6.69406 6.56597 -13.9526 6.55247 6.98918 -13.9219 7.54836 6.80509 -6.30341 7.68172 6.40645 -6.36911 6.78 6.12763 -13.9784 6.69406 6.56597 -13.9526 7.68172 6.40645 -6.36911 7.76267 5.99356 -6.42436 6.80881 5.68165 -13.9987 6.78 6.12763 -13.9784 7.76267 5.99356 -6.42436 7.7898 5.57348 -6.46781 6.78 5.23567 -14.013 6.80881 5.68165 -13.9987 7.7898 5.57348 -6.46781 7.76267 5.15341 -6.49855 6.69406 4.79733 -14.0213 6.78 5.23567 -14.013 7.76267 5.15341 -6.49855 7.68172 4.74052 -6.51621 6.55247 4.37412 -14.0235 6.69406 4.79733 -14.0213 7.68172 4.74052 -6.51621 7.54836 4.34188 -6.52091 6.35765 3.97328 -14.0199 6.55247 4.37412 -14.0235 7.54836 4.34188 -6.52091 7.36485 3.96431 -6.51324 6.11293 3.60167 -14.011 6.35765 3.97328 -14.0199 7.36485 3.96431 -6.51324 7.13435 3.61428 -6.4942 5.82249 3.26564 -13.9974 6.11293 3.60167 -14.011 7.13435 3.61428 -6.4942 6.86078 3.29777 -6.46515 5.49132 2.97096 -13.9799 5.82249 3.26564 -13.9974 6.86078 3.29777 -6.46515 6.54884 3.0202 -6.42764 5.12506 2.72266 -13.9593 5.49132 2.97096 -13.9799 6.54884 3.0202 -6.42764 6.20387 2.78632 -6.38344 4.73 2.52499 -13.9363 5.12506 2.72266 -13.9593 6.20387 2.78632 -6.38344 5.83175 2.60012 -6.33431 4.31289 2.38132 -13.9119 4.73 2.52499 -13.9363 5.83175 2.60012 -6.33431 5.43887 2.4648 -6.28197 3.82175 2.29413 -13.8932 4.31289 2.38132 -13.9119 5.43887 2.4648 -6.28197 4.89822 2.38267 -6.21583 3.3097 2.2649 -13.8676 3.82175 2.29413 -13.8932 4.89822 2.38267 -6.21583 4.23091 2.35514 -6.11836 2.72723 2.2999 -13.8471 3.3097 2.2649 -13.8676 4.23091 2.35514 -6.11836 3.48107 2.48352 -6.0238 2.0861 2.52204 -13.8319 2.72723 2.2999 -13.8471 3.48107 2.48352 -6.0238 2.66107 2.74287 -5.92957 1.40256 2.90142 -13.8218 2.0861 2.52204 -13.8319 2.66107 2.74287 -5.92957 1.78903 3.14244 -5.83328 0.450623 3.43933 -13.8161 0.895949 3.20654 -13.8177 0.900391 3.45672 -5.81703 2.0861 9.04903 -13.5702 1.40255 8.98476 -13.5613 1.80895 8.79244 -5.17754 2.69602 8.79244 -5.29524 2.72723 9.08804 -13.5839 2.0861 9.04903 -13.5702 2.69602 8.79244 -5.29524 3.52321 8.79244 -5.41314 3.3097 9.0984 -13.6021 2.72723 9.08804 -13.5839 3.52321 8.79244 -5.41314 4.27063 8.79183 -5.52909 3.82175 9.06917 -13.63 3.3097 9.0984 -13.6021 4.27063 8.79183 -5.52909 4.79596 8.76429 -5.6432 4.31289 8.98198 -13.6555 3.82175 9.06917 -13.63 4.79596 8.76429 -5.6432 5.36773 8.69398 -5.73298 4.73 8.83832 -13.6911 4.31289 8.98198 -13.6555 5.36773 8.69398 -5.73298 5.83175 8.54684 -5.80922 5.12506 8.64065 -13.7294 4.73 8.83832 -13.6911 5.83175 8.54684 -5.80922 6.20387 8.36065 -5.89123 5.49132 8.39234 -13.7693 5.12506 8.64065 -13.7294 6.20387 8.36065 -5.89123 6.54884 8.12676 -5.97674 5.82249 8.09766 -13.8097 5.49132 8.39234 -13.7693 6.54884 8.12676 -5.97674 6.86078 7.84919 -6.06326 6.11293 7.76164 -13.8494 5.82249 8.09766 -13.8097 6.86078 7.84919 -6.06326 7.13435 7.53268 -6.14821 6.35765 7.39003 -13.8872 6.11293 7.76164 -13.8494 7.13435 7.53268 -6.14821 7.36485 7.18265 -6.22906 7.68172 6.40645 -6.36911 7.54836 6.80509 -6.30341 8.20378 6.55585 0.261001 8.33006 6.17915 0.165135 7.76267 5.99356 -6.42436 7.68172 6.40645 -6.36911 8.33006 6.17915 0.165135 8.4067 5.78898 0.084507 7.7898 5.57348 -6.46781 7.76267 5.99356 -6.42436 8.4067 5.78898 0.084507 8.43239 5.39201 0.021114 7.76267 5.15341 -6.49855 7.7898 5.57348 -6.46781 8.43239 5.39201 0.021114 8.4067 4.99505 -0.023744 7.68172 4.74052 -6.51621 7.76267 5.15341 -6.49855 8.4067 4.99505 -0.023744 8.33006 4.60488 -0.049514 7.54836 4.34188 -6.52091 7.68172 4.74052 -6.51621 8.33006 4.60488 -0.049514 8.20378 4.22818 -0.056373 7.36485 3.96431 -6.51324 7.54836 4.34188 -6.52091 8.20378 4.22818 -0.056373 8.03003 3.87139 -0.045176 7.13435 3.61428 -6.4942 7.36485 3.96431 -6.51324 8.03003 3.87139 -0.045176 7.81177 3.54062 -0.017398 6.86078 3.29777 -6.46515 7.13435 3.61428 -6.4942 7.81177 3.54062 -0.017398 7.55274 3.24152 0.024996 6.54884 3.0202 -6.42764 6.86078 3.29777 -6.46515 7.55274 3.24152 0.024996 7.25738 2.97922 0.079722 6.20387 2.78632 -6.38344 6.54884 3.0202 -6.42764 7.25738 2.97922 0.079722 6.93073 2.75821 0.144216 5.83175 2.60012 -6.33431 6.20387 2.78632 -6.38344 6.93073 2.75821 0.144216 6.53652 2.58226 0.215909 5.43887 2.4648 -6.28197 5.83175 2.60012 -6.33431 6.53652 2.58226 0.215909 6.12972 2.41824 0.304 4.89822 2.38267 -6.21583 5.43887 2.4648 -6.28197 6.12972 2.41824 0.304 5.64844 2.313 0.396405 4.23091 2.35514 -6.11836 4.89822 2.38267 -6.21583 5.64844 2.313 0.396405 4.99338 2.3013 0.518936 3.48107 2.48352 -6.0238 4.23091 2.35514 -6.11836 4.99338 2.3013 0.518936 4.39089 2.37307 0.634048 2.66107 2.74287 -5.92957 3.48107 2.48352 -6.0238 4.39089 2.37307 0.634048 3.45331 2.60552 0.763895 1.78903 3.14244 -5.83328 2.66107 2.74287 -5.92957 3.45331 2.60552 0.763895 2.27075 2.95101 0.90603 0.900391 3.45672 -5.81703 1.78903 3.14244 -5.83328 2.27075 2.95101 0.90603 1.27333 3.30855 1.00838 2.69602 8.79244 -5.29524 1.80895 8.79244 -5.17754 2.37147 8.44025 1.76233 3.40711 8.44026 1.64908 3.52321 8.79244 -5.41314 2.69602 8.79244 -5.29524 3.40711 8.44026 1.64908 4.33901 8.44026 1.51555 4.27063 8.79183 -5.52909 3.52321 8.79244 -5.41314 4.33901 8.44026 1.51555 5.01588 8.43328 1.39633 4.79596 8.76429 -5.6432 4.27063 8.79183 -5.52909 5.01588 8.43328 1.39633 5.61403 8.40726 1.25927 5.36773 8.69398 -5.73298 4.79596 8.76429 -5.6432 5.61403 8.40726 1.25927 6.14629 8.32965 1.12341 5.83175 8.54684 -5.80922 5.36773 8.69398 -5.73298 6.14629 8.32965 1.12341 6.57839 8.20177 0.982119 6.20387 8.36065 -5.89123 5.83175 8.54684 -5.80922 6.57839 8.20177 0.982119 6.93073 8.02582 0.862446 6.54884 8.12676 -5.97674 6.20387 8.36065 -5.89123 6.93073 8.02582 0.862446 7.25738 7.80481 0.737683 6.86078 7.84919 -6.06326 6.54884 8.12676 -5.97674 7.25738 7.80481 0.737683 7.55274 7.54251 0.611428 7.13435 7.53268 -6.14821 6.86078 7.84919 -6.06326 7.55274 7.54251 0.611428 7.81177 7.24341 0.487473 7.36485 7.18265 -6.22906 7.13435 7.53268 -6.14821 7.81177 7.24341 0.487473 8.03003 6.91264 0.369494 7.54836 6.80509 -6.30341 7.36485 7.18265 -6.22906 8.03003 6.91264 0.369494 8.20378 6.55585 0.261001 5.91115 7.47356 7.42102 5.29935 2.71917 6.87926 5.97642 2.69949 6.81011 6.3614 7.43695 7.33037 4.23651 7.95074 8.03381 2.99875 7.90066 8.19123 3.07939 7.67686 9.20546 4.36736 7.72393 9.04107 5.15975 7.94456 7.87227 4.23651 7.95074 8.03381 4.36736 7.72393 9.04107 5.28923 7.71716 8.87512 5.86977 7.93542 7.71481 5.15975 7.94456 7.87227 5.28923 7.71716 8.87512 6.00448 7.70819 8.71162 6.3751 7.90015 7.55243 5.86977 7.93542 7.71481 6.00448 7.70819 8.71162 6.49516 7.67344 8.54524 6.76034 7.82699 7.40644 6.3751 7.90015 7.55243 6.49516 7.67344 8.54524 6.85722 7.60498 8.39765 7.12115 7.70646 7.24409 6.76034 7.82699 7.40644 6.85722 7.60498 8.39765 7.20677 7.49218 8.23198 7.45512 7.54062 7.07656 7.12115 7.70646 7.24409 7.20677 7.49218 8.23198 7.53785 7.33698 8.0569 7.76474 7.3323 6.90718 7.45512 7.54062 7.07656 7.53785 7.33698 8.0569 7.84478 7.14202 7.88048 8.04471 7.08507 6.74209 7.76474 7.3323 6.90718 7.84478 7.14202 7.88048 8.12232 6.91065 7.70927 8.29023 6.80316 6.58597 8.04471 7.08507 6.74209 8.12232 6.91065 7.70927 8.36572 6.64683 7.54808 8.49711 6.49139 6.44188 8.29023 6.80316 6.58597 8.36572 6.64683 7.54808 8.5708 6.35505 7.39987 8.66181 6.1551 6.31171 8.49711 6.49139 6.44188 8.5708 6.35505 7.39987 8.73407 6.04034 7.26627 8.7815 5.80004 6.19659 8.66181 6.1551 6.31171 8.73407 6.04034 7.26627 8.85272 5.70805 7.14812 8.85415 5.43228 6.09733 8.7815 5.80004 6.19659 8.85272 5.70805 7.14812 8.92474 5.36388 7.04592 8.8785 5.05813 6.01479 8.85415 5.43228 6.09733 8.92474 5.36388 7.04592 8.94888 5.01373 6.96036 8.85415 4.68397 5.9501 8.8785 5.05813 6.01479 8.94888 5.01373 6.96036 8.92474 4.66357 6.89255 8.7815 4.31622 5.90471 8.85415 4.68397 5.9501 8.92474 4.66357 6.89255 8.85272 4.31941 6.84406 8.66181 3.96115 5.88028 8.7815 4.31622 5.90471 8.85272 4.31941 6.84406 8.73407 3.98712 6.81686 8.49711 3.62486 5.87845 8.66181 3.96115 5.88028 8.73407 3.98712 6.81686 8.5708 3.6724 6.81297 8.29023 3.31309 5.90037 8.49711 3.62486 5.87845 8.5708 3.6724 6.81297 8.36572 3.38063 6.83397 8.04471 3.03118 5.94627 8.29023 3.31309 5.90037 8.36572 3.38063 6.83397 8.12232 3.11681 6.88041 7.76474 2.78395 6.01496 8.04471 3.03118 5.94627 8.12232 3.11681 6.88041 7.84478 2.88543 6.95131 7.45512 2.57563 6.10341 7.76474 2.78395 6.01496 7.84478 2.88543 6.95131 7.53785 2.69048 7.04354 7.11544 2.40979 6.2068 7.45512 2.57563 6.10341 7.53785 2.69048 7.04354 7.20677 2.53527 7.15193 6.75712 2.28926 6.32018 7.11544 2.40979 6.2068 7.20677 2.53527 7.15193 6.85722 2.42248 7.26949 6.37034 2.21611 6.43551 6.75712 2.28926 6.32018 6.85722 2.42248 7.26949 6.49516 2.35402 7.38828 5.8601 2.19159 6.56721 6.37034 2.21611 6.43551 6.49516 2.35402 7.38828 6.00448 2.33106 7.5214 5.14544 2.21139 6.69469 5.8601 2.19159 6.56721 6.00448 2.33106 7.5214 5.28923 2.37033 7.6502 4.2281 2.3503 6.82683 5.14544 2.21139 6.69469 5.28923 2.37033 7.6502 4.36736 2.47091 7.78279 3.13511 2.60483 6.96341 4.2281 2.3503 6.82683 4.36736 2.47091 7.78279 3.27147 2.71985 7.91903 1.66737 3.2541 7.12434 3.13511 2.60483 6.96341 3.27147 2.71985 7.91903 1.82964 3.21157 8.09755 1.82964 3.21157 8.09755 3.27147 2.71985 7.91903 3.31794 2.90698 7.94448 1.93298 3.37169 8.13191 3.27147 2.71985 7.91903 4.36736 2.47091 7.78279 4.39535 2.66107 7.79499 3.31794 2.90698 7.94448 4.36736 2.47091 7.78279 5.28923 2.37033 7.6502 5.29532 2.56347 7.65385 4.39535 2.66107 7.79499 5.28923 2.37033 7.6502 6.00448 2.33106 7.5214 5.99046 2.52543 7.52272 5.29532 2.56347 7.65385 6.00448 2.33106 7.5214 6.49516 2.35402 7.38828 6.46263 2.54919 7.39245 5.99046 2.52543 7.52272 6.49516 2.35402 7.38828 6.85722 2.42248 7.26949 6.80371 2.61526 7.28502 6.46263 2.54919 7.39245 6.85722 2.42248 7.26949 7.20677 2.53527 7.15193 7.13676 2.72296 7.18497 6.80371 2.61526 7.28502 7.20677 2.53527 7.15193 7.53785 2.69048 7.04354 7.45273 2.86784 7.09708 7.13676 2.72296 7.18497 7.53785 2.69048 7.04354 7.84478 2.88543 6.95131 7.74386 3.04728 7.02162 7.45273 2.86784 7.09708 7.84478 2.88543 6.95131 8.12232 3.11681 6.88041 8.00438 3.25912 6.96182 7.74386 3.04728 7.02162 8.12232 3.11681 6.88041 8.36572 3.38063 6.83397 8.23023 3.5004 6.9211 8.00438 3.25912 6.96182 8.36572 3.38063 6.83397 8.5708 3.6724 6.81297 8.41853 3.76734 6.90144 8.23023 3.5004 6.9211 8.5708 3.6724 6.81297 8.73407 3.98712 6.81686 8.56707 4.05567 6.9033 8.41853 3.76734 6.90144 8.73407 3.98712 6.81686 8.85272 4.31941 6.84406 8.67402 4.36072 6.92598 8.56707 4.05567 6.9033 8.85272 4.31941 6.84406 8.92474 4.66357 6.89255 8.73794 4.6775 6.96823 8.67402 4.36072 6.92598 8.92474 4.66357 6.89255 8.94888 5.01373 6.96036 8.75777 5.00081 7.02847 8.73794 4.6775 6.96823 8.94888 5.01373 6.96036 8.92474 5.36388 7.04592 8.73303 5.32542 7.10511 8.75777 5.00081 7.02847 8.92474 5.36388 7.04592 8.85272 5.70805 7.14812 8.66395 5.64614 7.19715 8.73303 5.32542 7.10511 8.85272 5.70805 7.14812 8.73407 6.04034 7.26627 8.55137 5.95803 7.30391 8.66395 5.64614 7.19715 8.73407 6.04034 7.26627 8.5708 6.35505 7.39987 8.39682 6.25641 7.42493 8.55137 5.95803 7.30391 8.5708 6.35505 7.39987 8.36572 6.64683 7.54808 8.20255 6.5366 7.5602 8.39682 6.25641 7.42493 8.36572 6.64683 7.54808 8.12232 6.91065 7.70927 7.97155 6.79351 7.70975 8.20255 6.5366 7.5602 8.12232 6.91065 7.70927 7.84478 7.14202 7.88048 7.70755 7.02125 7.87255 7.97155 6.79351 7.70975 7.84478 7.14202 7.88048 7.53785 7.33698 8.0569 7.41495 7.21571 8.04245 7.70755 7.02125 7.87255 7.53785 7.33698 8.0569 7.20677 7.49218 8.23198 7.0997 7.37163 8.21364 7.41495 7.21571 8.04245 7.20677 7.49218 8.23198 6.85722 7.60498 8.39765 6.76848 7.48143 8.38078 7.0997 7.37163 8.21364 6.85722 7.60498 8.39765 6.49516 7.67344 8.54524 6.42695 7.54633 8.53136 6.76848 7.48143 8.38078 6.49516 7.67344 8.54524 6.00448 7.70819 8.71162 5.95736 7.58194 8.70167 6.42695 7.54633 8.53136 6.00448 7.70819 8.71162 5.28923 7.71716 8.87512 5.25656 7.5938 8.8726 5.95736 7.58194 8.70167 5.28923 7.71716 8.87512 4.36736 7.72393 9.04107 4.34668 7.60213 9.04875 5.25656 7.5938 8.8726 4.36736 7.72393 9.04107 3.07939 7.67686 9.20546 3.08304 7.55243 9.18423 4.34668 7.60213 9.04875 1.93298 3.37169 8.13191 3.31794 2.90698 7.94448 3.35842 3.07445 7.04233 1.79344 3.59898 7.19282 3.31794 2.90698 7.94448 4.39535 2.66107 7.79499 4.4191 2.83107 6.9573 3.35842 3.07445 7.04233 4.39535 2.66107 7.79499 5.29532 2.56347 7.65385 5.29935 2.71917 6.87926 4.4191 2.83107 6.9573 5.29532 2.56347 7.65385 5.99046 2.52543 7.52272 5.97642 2.69949 6.81011 5.29935 2.71917 6.87926 5.99046 2.52543 7.52272 6.46263 2.54919 7.39245 6.43207 2.72423 6.74389 5.97642 2.69949 6.81011 6.46263 2.54919 7.39245 6.80371 2.61526 7.28502 6.75467 2.78832 6.69345 6.43207 2.72423 6.74389 6.80371 2.61526 7.28502 7.13676 2.72296 7.18497 7.07336 2.89188 6.65014 6.75467 2.78832 6.69345 7.13676 2.72296 7.18497 7.45273 2.86784 7.09708 7.37669 3.02781 6.61578 7.07336 2.89188 6.65014 7.45273 2.86784 7.09708 7.74386 3.04728 7.02162 7.65481 3.19293 6.58639 7.37669 3.02781 6.61578 7.74386 3.04728 7.02162 8.00438 3.25912 6.96182 7.90096 3.38659 6.56191 7.65481 3.19293 6.58639 8.00438 3.25912 6.96182 8.23023 3.5004 6.9211 8.11136 3.60711 6.54404 7.90096 3.38659 6.56191 8.23023 3.5004 6.9211 8.41853 3.76734 6.90144 8.28445 3.85139 6.53457 8.12019 3.61958 6.54356 8.11136 3.60711 6.54404 8.41853 3.76734 6.90144 8.56707 4.05567 6.9033 8.41943 4.11572 6.53443 8.28445 3.85139 6.53457 8.56707 4.05567 6.9033 8.67402 4.36072 6.92598 8.51547 4.3961 6.54379 8.41943 4.11572 6.53443 8.67402 4.36072 6.92598 8.73794 4.6775 6.96823 8.57174 4.68816 6.56243 8.51547 4.3961 6.54379 8.73794 4.6775 6.96823 8.75777 5.00081 7.02847 8.58736 4.98737 6.58972 8.57174 4.68816 6.56243 8.75777 5.00081 7.02847 8.73303 5.32542 7.10511 8.56166 5.28924 6.62475 8.58736 4.98737 6.58972 8.73303 5.32542 7.10511 8.66395 5.64614 7.19715 8.49473 5.58934 6.66701 8.56166 5.28924 6.62475 8.66395 5.64614 7.19715 8.55137 5.95803 7.30391 8.38704 5.8837 6.71603 8.49473 5.58934 6.66701 8.55137 5.95803 7.30391 8.39682 6.25641 7.42493 8.23971 6.16883 6.77146 8.38704 5.8837 6.71603 8.39682 6.25641 7.42493 8.20255 6.5366 7.5602 8.05465 6.44089 6.83396 8.23971 6.16883 6.77146 8.20255 6.5366 7.5602 7.97155 6.79351 7.70975 7.83442 6.69414 6.90517 8.05465 6.44089 6.83396 7.97155 6.79351 7.70975 7.70755 7.02125 7.87255 7.58214 6.92005 6.98624 7.83442 6.69414 6.90517 7.70755 7.02125 7.87255 7.41495 7.21571 8.04245 7.30172 7.11482 7.07233 7.58214 6.92005 6.98624 7.41495 7.21571 8.04245 7.0997 7.37163 8.21364 6.99996 7.27122 7.16068 7.30172 7.11482 7.07233 7.0997 7.37163 8.21364 6.76848 7.48143 8.38078 6.68464 7.37638 7.24983 6.99996 7.27122 7.16068 6.76848 7.48143 8.38078 6.42695 7.54633 8.53136 6.3614 7.43695 7.33037 6.68464 7.37638 7.24983 6.42695 7.54633 8.53136 5.95736 7.58194 8.70167 5.91115 7.47356 7.42102 6.3614 7.43695 7.33037 5.95736 7.58194 8.70167 5.25656 7.5938 8.8726 5.2241 7.48828 7.51392 5.91115 7.47356 7.42102 5.25656 7.5938 8.8726 4.34668 7.60213 9.04875 4.3255 7.49771 7.61122 5.2241 7.48828 7.51392 4.34668 7.60213 9.04875 3.08304 7.55243 9.18423 2.96671 7.44724 7.71315 4.3255 7.49771 7.61122 2.96671 7.44724 7.71315 1.79344 3.59898 7.19282 3.35842 3.07445 7.04233 4.3255 7.49771 7.61122 4.3255 7.49771 7.61122 3.35842 3.07445 7.04233 4.4191 2.83107 6.9573 5.2241 7.48828 7.51392 5.2241 7.48828 7.51392 4.4191 2.83107 6.9573 5.29935 2.71917 6.87926 5.91115 7.47356 7.42102 8.56166 5.28924 6.62475 8.51547 4.3961 6.54379 8.57174 4.68816 6.56243 8.58736 4.98737 6.58972 6.3614 7.43695 7.33037 5.97642 2.69949 6.81011 6.43207 2.72423 6.74389 6.68464 7.37638 7.24983 6.68464 7.37638 7.24983 6.43207 2.72423 6.74389 6.75467 2.78832 6.69345 6.99996 7.27122 7.16068 6.99996 7.27122 7.16068 6.75467 2.78832 6.69345 7.07336 2.89188 6.65014 7.30172 7.11482 7.07233 7.30172 7.11482 7.07233 7.07336 2.89188 6.65014 7.37669 3.02781 6.61578 7.58214 6.92005 6.98624 7.58214 6.92005 6.98624 7.37669 3.02781 6.61578 7.65481 3.19293 6.58639 7.83442 6.69414 6.90517 7.83442 6.69414 6.90517 7.65481 3.19293 6.58639 7.90096 3.38659 6.56191 8.05465 6.44089 6.83396 8.05465 6.44089 6.83396 7.90096 3.38659 6.56191 8.11136 3.60711 6.54404 8.12019 3.61958 6.54356 8.23971 6.16883 6.77146 8.23971 6.16883 6.77146 8.12019 3.61958 6.54356 8.28445 3.85139 6.53457 8.38704 5.8837 6.71603 8.38704 5.8837 6.71603 8.28445 3.85139 6.53457 8.41943 4.11572 6.53443 8.49473 5.58934 6.66701 8.49473 5.58934 6.66701 8.41943 4.11572 6.53443 8.51547 4.3961 6.54379 8.56166 5.28924 6.62475 -2.44586 9.13077 -20.5988 -2.62469 9.04903 -13.5702 -1.94114 8.98476 -13.5613 -2.00751 8.98198 -20.5988 -2.89988 9.22108 -20.5988 -3.26581 9.08804 -13.5839 -2.62469 9.04903 -13.5702 -2.44586 9.13077 -20.5988 -3.3618 9.25136 -20.5988 -3.84828 9.0984 -13.6021 -3.26581 9.08804 -13.5839 -2.89988 9.22108 -20.5988 -3.82372 9.22108 -20.5988 -4.36033 9.06917 -13.63 -3.84828 9.0984 -13.6021 -3.3618 9.25136 -20.5988 -4.27774 9.13077 -20.5988 -4.85147 8.98198 -13.6555 -4.36033 9.06917 -13.63 -3.82372 9.22108 -20.5988 -4.71609 8.98198 -20.5988 -5.26859 8.83832 -13.6911 -4.85147 8.98198 -13.6555 -4.27774 9.13077 -20.5988 -5.13126 8.77724 -20.5988 -5.66365 8.64065 -13.7294 -5.26859 8.83832 -13.6911 -4.71609 8.98198 -20.5988 -5.51616 8.52005 -20.5988 -6.0299 8.39234 -13.7693 -5.66365 8.64065 -13.7294 -5.13126 8.77724 -20.5988 -5.8642 8.21483 -20.5988 -6.36108 8.09766 -13.8097 -6.0299 8.39234 -13.7693 -5.51616 8.52005 -20.5988 -6.16942 7.8668 -20.5988 -6.65151 7.76164 -13.8494 -6.36108 8.09766 -13.8097 -5.8642 8.21483 -20.5988 -6.4266 7.4819 -20.5988 -6.89624 7.39003 -13.8872 -6.65151 7.76164 -13.8494 -6.16942 7.8668 -20.5988 -6.63134 7.06672 -20.5988 -7.09106 6.98918 -13.9219 -6.89624 7.39003 -13.8872 -6.4266 7.4819 -20.5988 -6.78014 6.62838 -20.5988 -7.23265 6.56597 -13.9526 -7.09106 6.98918 -13.9219 -6.63134 7.06672 -20.5988 -6.87045 6.17436 -20.5988 -7.31858 6.12763 -13.9784 -7.23265 6.56597 -13.9526 -6.78014 6.62838 -20.5988 -6.90073 5.71244 -20.5988 -7.34739 5.68165 -13.9987 -7.31858 6.12763 -13.9784 -6.87045 6.17436 -20.5988 -6.87045 5.25051 -20.5988 -7.31858 5.23567 -14.013 -7.34739 5.68165 -13.9987 -6.90073 5.71244 -20.5988 -6.78014 4.7965 -20.5988 -7.23265 4.79733 -14.0213 -7.31858 5.23567 -14.013 -6.87045 5.25051 -20.5988 -6.63134 4.35815 -20.5988 -7.09106 4.37412 -14.0235 -7.23265 4.79733 -14.0213 -6.78014 4.7965 -20.5988 -6.4266 3.94298 -20.5988 -6.89623 3.97328 -14.0199 -7.09106 4.37412 -14.0235 -6.63134 4.35815 -20.5988 -6.16942 3.55808 -20.5988 -6.65151 3.60167 -14.011 -6.89623 3.97328 -14.0199 -6.4266 3.94298 -20.5988 -5.8642 3.21004 -20.5988 -6.36108 3.26564 -13.9974 -6.65151 3.60167 -14.011 -6.16942 3.55808 -20.5988 -5.51616 2.90482 -20.5988 -6.0299 2.97096 -13.9799 -6.36108 3.26564 -13.9974 -5.8642 3.21004 -20.5988 -5.13126 2.64764 -20.5988 -5.66365 2.72266 -13.9593 -6.0299 2.97096 -13.9799 -5.51616 2.90482 -20.5988 -4.71609 2.4429 -20.5988 -5.26859 2.52499 -13.9363 -5.66365 2.72266 -13.9593 -5.13126 2.64764 -20.5988 -4.27774 2.2941 -20.5988 -4.85147 2.38132 -13.9119 -5.26859 2.52499 -13.9363 -4.71609 2.4429 -20.5988 -3.82372 2.20379 -20.5988 -4.36033 2.29413 -13.8932 -4.85147 2.38132 -13.9119 -4.27774 2.2941 -20.5988 -3.3618 2.17352 -20.5988 -3.84828 2.2649 -13.8676 -4.36033 2.29413 -13.8932 -3.82372 2.20379 -20.5988 -2.89988 2.20379 -20.5988 -3.26582 2.2999 -13.8471 -3.84828 2.2649 -13.8676 -3.3618 2.17352 -20.5988 -2.44586 2.2941 -20.5988 -2.62469 2.52204 -13.8319 -3.26582 2.2999 -13.8471 -2.89988 2.20379 -20.5988 -2.00752 2.4429 -20.5988 -1.94114 2.90142 -13.8218 -2.62469 2.52204 -13.8319 -2.44586 2.2941 -20.5988 -1.94114 2.90142 -13.8218 -2.00752 2.4429 -20.5988 -1.59234 2.64764 -20.5988 -1.42447 3.21714 -13.8176 -7.09106 6.98918 -13.9219 -8.08694 6.80509 -6.30341 -7.90344 7.18265 -6.22906 -6.89624 7.39003 -13.8872 -7.23265 6.56597 -13.9526 -8.22031 6.40645 -6.36911 -8.08694 6.80509 -6.30341 -7.09106 6.98918 -13.9219 -7.31858 6.12763 -13.9784 -8.30125 5.99356 -6.42436 -8.22031 6.40645 -6.36911 -7.23265 6.56597 -13.9526 -7.34739 5.68165 -13.9987 -8.32839 5.57348 -6.46781 -8.30125 5.99356 -6.42436 -7.31858 6.12763 -13.9784 -7.31858 5.23567 -14.013 -8.30125 5.15341 -6.49855 -8.32839 5.57348 -6.46781 -7.34739 5.68165 -13.9987 -7.23265 4.79733 -14.0213 -8.22031 4.74052 -6.51621 -8.30125 5.15341 -6.49855 -7.31858 5.23567 -14.013 -7.09106 4.37412 -14.0235 -8.08694 4.34188 -6.52091 -8.22031 4.74052 -6.51621 -7.23265 4.79733 -14.0213 -6.89623 3.97328 -14.0199 -7.90344 3.96431 -6.51324 -8.08694 4.34188 -6.52091 -7.09106 4.37412 -14.0235 -6.65151 3.60167 -14.011 -7.67293 3.61428 -6.4942 -7.90344 3.96431 -6.51324 -6.89623 3.97328 -14.0199 -6.36108 3.26564 -13.9974 -7.39937 3.29777 -6.46515 -7.67293 3.61428 -6.4942 -6.65151 3.60167 -14.011 -6.0299 2.97096 -13.9799 -7.08743 3.0202 -6.42764 -7.39937 3.29777 -6.46515 -6.36108 3.26564 -13.9974 -5.66365 2.72266 -13.9593 -6.74245 2.78632 -6.38344 -7.08743 3.0202 -6.42764 -6.0299 2.97096 -13.9799 -5.26859 2.52499 -13.9363 -6.37034 2.60012 -6.33431 -6.74245 2.78632 -6.38344 -5.66365 2.72266 -13.9593 -4.85147 2.38132 -13.9119 -5.97745 2.4648 -6.28197 -6.37034 2.60012 -6.33431 -5.26859 2.52499 -13.9363 -4.36033 2.29413 -13.8932 -5.43681 2.38267 -6.21583 -5.97745 2.4648 -6.28197 -4.85147 2.38132 -13.9119 -3.84828 2.2649 -13.8676 -4.7695 2.35514 -6.11836 -5.43681 2.38267 -6.21583 -4.36033 2.29413 -13.8932 -3.26582 2.2999 -13.8471 -4.01965 2.48352 -6.0238 -4.7695 2.35514 -6.11836 -3.84828 2.2649 -13.8676 -2.62469 2.52204 -13.8319 -3.19965 2.74287 -5.92957 -4.01965 2.48352 -6.0238 -3.26582 2.2999 -13.8471 -1.94114 2.90142 -13.8218 -2.32762 3.14244 -5.83328 -3.19965 2.74287 -5.92957 -2.62469 2.52204 -13.8319 -1.42447 3.21714 -13.8176 -1.43898 3.45672 -5.81703 -2.32762 3.14244 -5.83328 -1.94114 2.90142 -13.8218 -2.62469 9.04903 -13.5702 -3.2346 8.79244 -5.29524 -2.34754 8.79244 -5.17754 -1.94114 8.98476 -13.5613 -3.26581 9.08804 -13.5839 -4.06179 8.79244 -5.41314 -3.2346 8.79244 -5.29524 -2.62469 9.04903 -13.5702 -3.84828 9.0984 -13.6021 -4.80922 8.79183 -5.52909 -4.06179 8.79244 -5.41314 -3.26581 9.08804 -13.5839 -4.36033 9.06917 -13.63 -5.33455 8.76429 -5.6432 -4.80922 8.79183 -5.52909 -3.84828 9.0984 -13.6021 -4.85147 8.98198 -13.6555 -5.90631 8.69398 -5.73298 -5.33455 8.76429 -5.6432 -4.36033 9.06917 -13.63 -5.26859 8.83832 -13.6911 -6.37034 8.54684 -5.80922 -5.90631 8.69398 -5.73298 -4.85147 8.98198 -13.6555 -5.66365 8.64065 -13.7294 -6.74245 8.36065 -5.89123 -6.37034 8.54684 -5.80922 -5.26859 8.83832 -13.6911 -6.0299 8.39234 -13.7693 -7.08743 8.12676 -5.97674 -6.74245 8.36065 -5.89123 -5.66365 8.64065 -13.7294 -6.36108 8.09766 -13.8097 -7.39937 7.84919 -6.06326 -7.08743 8.12676 -5.97674 -6.0299 8.39234 -13.7693 -6.65151 7.76164 -13.8494 -7.67293 7.53268 -6.14821 -7.39937 7.84919 -6.06326 -6.36108 8.09766 -13.8097 -6.89624 7.39003 -13.8872 -7.90344 7.18265 -6.22906 -7.67293 7.53268 -6.14821 -6.65151 7.76164 -13.8494 -8.22031 6.40645 -6.36911 -8.86864 6.17915 0.165135 -8.74236 6.55585 0.261001 -8.08694 6.80509 -6.30341 -8.30125 5.99356 -6.42436 -8.94529 5.78898 0.084507 -8.86864 6.17915 0.165135 -8.22031 6.40645 -6.36911 -8.32839 5.57348 -6.46781 -8.97098 5.39201 0.021114 -8.94529 5.78898 0.084507 -8.30125 5.99356 -6.42436 -8.30125 5.15341 -6.49855 -8.94529 4.99505 -0.023744 -8.97098 5.39201 0.021114 -8.32839 5.57348 -6.46781 -8.22031 4.74052 -6.51621 -8.86864 4.60488 -0.049514 -8.94529 4.99505 -0.023744 -8.30125 5.15341 -6.49855 -8.08694 4.34188 -6.52091 -8.74236 4.22818 -0.056373 -8.86864 4.60488 -0.049514 -8.22031 4.74052 -6.51621 -7.90344 3.96431 -6.51324 -8.56861 3.87139 -0.045176 -8.74236 4.22818 -0.056373 -8.08694 4.34188 -6.52091 -7.67293 3.61428 -6.4942 -8.35035 3.54062 -0.017398 -8.56861 3.87139 -0.045176 -7.90344 3.96431 -6.51324 -7.39937 3.29777 -6.46515 -8.09132 3.24152 0.024996 -8.35035 3.54062 -0.017398 -7.67293 3.61428 -6.4942 -7.08743 3.0202 -6.42764 -7.79596 2.97922 0.079722 -8.09132 3.24152 0.024996 -7.39937 3.29777 -6.46515 -6.74245 2.78632 -6.38344 -7.46932 2.75821 0.144216 -7.79596 2.97922 0.079722 -7.08743 3.0202 -6.42764 -6.37034 2.60012 -6.33431 -7.07511 2.58226 0.215909 -7.46932 2.75821 0.144216 -6.74245 2.78632 -6.38344 -5.97745 2.4648 -6.28197 -6.66831 2.41824 0.304 -7.07511 2.58226 0.215909 -6.37034 2.60012 -6.33431 -5.43681 2.38267 -6.21583 -6.18702 2.313 0.396405 -6.66831 2.41824 0.304 -5.97745 2.4648 -6.28197 -4.7695 2.35514 -6.11836 -5.53197 2.3013 0.518936 -6.18702 2.313 0.396405 -5.43681 2.38267 -6.21583 -4.01965 2.48352 -6.0238 -4.92948 2.37307 0.634048 -5.53197 2.3013 0.518936 -4.7695 2.35514 -6.11836 -3.19965 2.74287 -5.92957 -3.9919 2.60552 0.763895 -4.92948 2.37307 0.634048 -4.01965 2.48352 -6.0238 -2.32762 3.14244 -5.83328 -2.80933 2.95101 0.90603 -3.9919 2.60552 0.763895 -3.19965 2.74287 -5.92957 -1.43898 3.45672 -5.81703 -1.81192 3.30855 1.00838 -2.80933 2.95101 0.90603 -2.32762 3.14244 -5.83328 -3.2346 8.79244 -5.29524 -3.9457 8.44026 1.64908 -2.91006 8.44025 1.76233 -2.34754 8.79244 -5.17754 -4.06179 8.79244 -5.41314 -4.87759 8.44026 1.51555 -3.9457 8.44026 1.64908 -3.2346 8.79244 -5.29524 -4.80922 8.79183 -5.52909 -5.55446 8.43328 1.39633 -4.87759 8.44026 1.51555 -4.06179 8.79244 -5.41314 -5.33455 8.76429 -5.6432 -6.15262 8.40726 1.25927 -5.55446 8.43328 1.39633 -4.80922 8.79183 -5.52909 -5.90631 8.69398 -5.73298 -6.68488 8.32965 1.12341 -6.15262 8.40726 1.25927 -5.33455 8.76429 -5.6432 -6.37034 8.54684 -5.80922 -7.11698 8.20177 0.982119 -6.68488 8.32965 1.12341 -5.90631 8.69398 -5.73298 -6.74245 8.36065 -5.89123 -7.46932 8.02582 0.862446 -7.11698 8.20177 0.982119 -6.37034 8.54684 -5.80922 -7.08743 8.12676 -5.97674 -7.79596 7.80481 0.737683 -7.46932 8.02582 0.862446 -6.74245 8.36065 -5.89123 -7.39937 7.84919 -6.06326 -8.09132 7.54251 0.611428 -7.79596 7.80481 0.737683 -7.08743 8.12676 -5.97674 -7.67293 7.53268 -6.14821 -8.35035 7.24341 0.487473 -8.09132 7.54251 0.611428 -7.39937 7.84919 -6.06326 -7.90344 7.18265 -6.22906 -8.56861 6.91264 0.369494 -8.35035 7.24341 0.487473 -7.67293 7.53268 -6.14821 -8.08694 6.80509 -6.30341 -8.74236 6.55585 0.261001 -8.56861 6.91264 0.369494 -7.90344 7.18265 -6.22906 -6.44973 7.47356 7.42102 -6.89999 7.43695 7.33037 -6.51501 2.69949 6.81011 -5.83793 2.71917 6.87926 -4.7751 7.95074 8.03381 -4.90595 7.72393 9.04107 -3.61798 7.67686 9.20546 -3.53734 7.90066 8.19123 -5.69833 7.94456 7.87227 -5.82781 7.71716 8.87512 -4.90595 7.72393 9.04107 -4.7751 7.95074 8.03381 -6.40835 7.93542 7.71481 -6.54306 7.70819 8.71162 -5.82781 7.71716 8.87512 -5.69833 7.94456 7.87227 -6.91368 7.90015 7.55243 -7.03375 7.67344 8.54524 -6.54306 7.70819 8.71162 -6.40835 7.93542 7.71481 -7.29893 7.82699 7.40644 -7.3958 7.60498 8.39765 -7.03375 7.67344 8.54524 -6.91368 7.90015 7.55243 -7.65973 7.70646 7.24409 -7.74536 7.49218 8.23198 -7.3958 7.60498 8.39765 -7.29893 7.82699 7.40644 -7.99371 7.54062 7.07656 -8.07644 7.33698 8.0569 -7.74536 7.49218 8.23198 -7.65973 7.70646 7.24409 -8.30333 7.3323 6.90718 -8.38337 7.14202 7.88048 -8.07644 7.33698 8.0569 -7.99371 7.54062 7.07656 -8.58329 7.08507 6.74209 -8.6609 6.91065 7.70927 -8.38337 7.14202 7.88048 -8.30333 7.3323 6.90718 -8.82882 6.80316 6.58597 -8.9043 6.64683 7.54808 -8.6609 6.91065 7.70927 -8.58329 7.08507 6.74209 -9.0357 6.49139 6.44188 -9.10939 6.35505 7.39987 -8.9043 6.64683 7.54808 -8.82882 6.80316 6.58597 -9.20039 6.1551 6.31171 -9.27265 6.04034 7.26627 -9.10939 6.35505 7.39987 -9.0357 6.49139 6.44188 -9.32009 5.80004 6.19659 -9.39131 5.70805 7.14812 -9.27265 6.04034 7.26627 -9.20039 6.1551 6.31171 -9.39274 5.43228 6.09733 -9.46333 5.36388 7.04592 -9.39131 5.70805 7.14812 -9.32009 5.80004 6.19659 -9.41709 5.05813 6.01479 -9.48747 5.01373 6.96036 -9.46333 5.36388 7.04592 -9.39274 5.43228 6.09733 -9.39274 4.68397 5.9501 -9.46333 4.66357 6.89255 -9.48747 5.01373 6.96036 -9.41709 5.05813 6.01479 -9.32009 4.31622 5.90471 -9.39131 4.31941 6.84406 -9.46333 4.66357 6.89255 -9.39274 4.68397 5.9501 -9.20039 3.96115 5.88028 -9.27265 3.98712 6.81686 -9.39131 4.31941 6.84406 -9.32009 4.31622 5.90471 -9.0357 3.62486 5.87845 -9.10939 3.6724 6.81297 -9.27265 3.98712 6.81686 -9.20039 3.96115 5.88028 -8.82882 3.31309 5.90037 -8.9043 3.38063 6.83397 -9.10939 3.6724 6.81297 -9.0357 3.62486 5.87845 -8.58329 3.03118 5.94627 -8.6609 3.11681 6.88041 -8.9043 3.38063 6.83397 -8.82882 3.31309 5.90037 -8.30333 2.78395 6.01496 -8.38337 2.88543 6.95131 -8.6609 3.11681 6.88041 -8.58329 3.03118 5.94627 -7.99371 2.57563 6.10341 -8.07644 2.69048 7.04354 -8.38337 2.88543 6.95131 -8.30333 2.78395 6.01496 -7.65403 2.40979 6.2068 -7.74536 2.53527 7.15193 -8.07644 2.69048 7.04354 -7.99371 2.57563 6.10341 -7.29571 2.28926 6.32018 -7.3958 2.42248 7.26949 -7.74536 2.53527 7.15193 -7.65403 2.40979 6.2068 -6.90893 2.21611 6.43551 -7.03375 2.35402 7.38828 -7.3958 2.42248 7.26949 -7.29571 2.28926 6.32018 -6.39869 2.19159 6.56721 -6.54306 2.33106 7.5214 -7.03375 2.35402 7.38828 -6.90893 2.21611 6.43551 -5.68402 2.21139 6.69469 -5.82781 2.37033 7.6502 -6.54306 2.33106 7.5214 -6.39869 2.19159 6.56721 -4.76669 2.3503 6.82683 -4.90595 2.47091 7.78279 -5.82781 2.37033 7.6502 -5.68402 2.21139 6.69469 -3.6737 2.60483 6.96341 -3.81006 2.71985 7.91903 -4.90595 2.47091 7.78279 -4.76669 2.3503 6.82683 -2.20596 3.2541 7.12434 -2.36823 3.21157 8.09755 -3.81006 2.71985 7.91903 -3.6737 2.60483 6.96341 -2.36823 3.21157 8.09755 -2.47156 3.37169 8.13191 -3.85652 2.90698 7.94448 -3.81006 2.71985 7.91903 -3.81006 2.71985 7.91903 -3.85652 2.90698 7.94448 -4.93394 2.66107 7.79499 -4.90595 2.47091 7.78279 -4.90595 2.47091 7.78279 -4.93394 2.66107 7.79499 -5.83391 2.56347 7.65385 -5.82781 2.37033 7.6502 -5.82781 2.37033 7.6502 -5.83391 2.56347 7.65385 -6.52905 2.52543 7.52272 -6.54306 2.33106 7.5214 -6.54306 2.33106 7.5214 -6.52905 2.52543 7.52272 -7.00121 2.54919 7.39245 -7.03375 2.35402 7.38828 -7.03375 2.35402 7.38828 -7.00121 2.54919 7.39245 -7.3423 2.61526 7.28502 -7.3958 2.42248 7.26949 -7.3958 2.42248 7.26949 -7.3423 2.61526 7.28502 -7.67535 2.72296 7.18497 -7.74536 2.53527 7.15193 -7.74536 2.53527 7.15193 -7.67535 2.72296 7.18497 -7.99131 2.86784 7.09708 -8.07644 2.69048 7.04354 -8.07644 2.69048 7.04354 -7.99131 2.86784 7.09708 -8.28244 3.04728 7.02162 -8.38337 2.88543 6.95131 -8.38337 2.88543 6.95131 -8.28244 3.04728 7.02162 -8.54296 3.25912 6.96182 -8.6609 3.11681 6.88041 -8.6609 3.11681 6.88041 -8.54296 3.25912 6.96182 -8.76881 3.5004 6.9211 -8.9043 3.38063 6.83397 -8.9043 3.38063 6.83397 -8.76881 3.5004 6.9211 -8.95712 3.76734 6.90144 -9.10939 3.6724 6.81297 -9.10939 3.6724 6.81297 -8.95712 3.76734 6.90144 -9.10566 4.05567 6.9033 -9.27265 3.98712 6.81686 -9.27265 3.98712 6.81686 -9.10566 4.05567 6.9033 -9.21261 4.36072 6.92598 -9.39131 4.31941 6.84406 -9.39131 4.31941 6.84406 -9.21261 4.36072 6.92598 -9.27652 4.6775 6.96823 -9.46333 4.66357 6.89255 -9.46333 4.66357 6.89255 -9.27652 4.6775 6.96823 -9.29636 5.00081 7.02847 -9.48747 5.01373 6.96036 -9.48747 5.01373 6.96036 -9.29636 5.00081 7.02847 -9.27162 5.32542 7.10511 -9.46333 5.36388 7.04592 -9.46333 5.36388 7.04592 -9.27162 5.32542 7.10511 -9.20253 5.64614 7.19715 -9.39131 5.70805 7.14812 -9.39131 5.70805 7.14812 -9.20253 5.64614 7.19715 -9.08996 5.95803 7.30391 -9.27265 6.04034 7.26627 -9.27265 6.04034 7.26627 -9.08996 5.95803 7.30391 -8.93541 6.25641 7.42493 -9.10939 6.35505 7.39987 -9.10939 6.35505 7.39987 -8.93541 6.25641 7.42493 -8.74114 6.5366 7.5602 -8.9043 6.64683 7.54808 -8.9043 6.64683 7.54808 -8.74114 6.5366 7.5602 -8.51013 6.79351 7.70975 -8.6609 6.91065 7.70927 -8.6609 6.91065 7.70927 -8.51013 6.79351 7.70975 -8.24614 7.02125 7.87255 -8.38337 7.14202 7.88048 -8.38337 7.14202 7.88048 -8.24614 7.02125 7.87255 -7.95354 7.21571 8.04245 -8.07644 7.33698 8.0569 -8.07644 7.33698 8.0569 -7.95354 7.21571 8.04245 -7.63828 7.37163 8.21364 -7.74536 7.49218 8.23198 -7.74536 7.49218 8.23198 -7.63828 7.37163 8.21364 -7.30706 7.48143 8.38078 -7.3958 7.60498 8.39765 -7.3958 7.60498 8.39765 -7.30706 7.48143 8.38078 -6.96553 7.54633 8.53136 -7.03375 7.67344 8.54524 -7.03375 7.67344 8.54524 -6.96553 7.54633 8.53136 -6.49594 7.58194 8.70167 -6.54306 7.70819 8.71162 -6.54306 7.70819 8.71162 -6.49594 7.58194 8.70167 -5.79514 7.5938 8.8726 -5.82781 7.71716 8.87512 -5.82781 7.71716 8.87512 -5.79514 7.5938 8.8726 -4.88526 7.60213 9.04875 -4.90595 7.72393 9.04107 -4.90595 7.72393 9.04107 -4.88526 7.60213 9.04875 -3.62163 7.55243 9.18423 -3.61798 7.67686 9.20546 -2.47156 3.37169 8.13191 -2.33203 3.59898 7.19282 -3.89701 3.07445 7.04233 -3.85652 2.90698 7.94448 -3.85652 2.90698 7.94448 -3.89701 3.07445 7.04233 -4.95768 2.83107 6.9573 -4.93394 2.66107 7.79499 -4.93394 2.66107 7.79499 -4.95768 2.83107 6.9573 -5.83793 2.71917 6.87926 -5.83391 2.56347 7.65385 -5.83391 2.56347 7.65385 -5.83793 2.71917 6.87926 -6.51501 2.69949 6.81011 -6.52905 2.52543 7.52272 -6.52905 2.52543 7.52272 -6.51501 2.69949 6.81011 -6.97065 2.72423 6.74389 -7.00121 2.54919 7.39245 -7.00121 2.54919 7.39245 -6.97065 2.72423 6.74389 -7.29325 2.78832 6.69345 -7.3423 2.61526 7.28502 -7.3423 2.61526 7.28502 -7.29325 2.78832 6.69345 -7.61195 2.89188 6.65014 -7.67535 2.72296 7.18497 -7.67535 2.72296 7.18497 -7.61195 2.89188 6.65014 -7.91528 3.02781 6.61578 -7.99131 2.86784 7.09708 -7.99131 2.86784 7.09708 -7.91528 3.02781 6.61578 -8.19339 3.19293 6.58639 -8.28244 3.04728 7.02162 -8.28244 3.04728 7.02162 -8.19339 3.19293 6.58639 -8.43954 3.38659 6.56191 -8.54296 3.25912 6.96182 -8.54296 3.25912 6.96182 -8.43954 3.38659 6.56191 -8.64994 3.60711 6.54404 -8.76881 3.5004 6.9211 -8.76881 3.5004 6.9211 -8.64994 3.60711 6.54404 -8.65878 3.61958 6.54356 -8.82304 3.85139 6.53457 -8.95712 3.76734 6.90144 -8.95712 3.76734 6.90144 -8.82304 3.85139 6.53457 -8.95801 4.11572 6.53443 -9.10566 4.05567 6.9033 -9.10566 4.05567 6.9033 -8.95801 4.11572 6.53443 -9.05405 4.3961 6.54379 -9.21261 4.36072 6.92598 -9.21261 4.36072 6.92598 -9.05405 4.3961 6.54379 -9.11032 4.68816 6.56243 -9.27652 4.6775 6.96823 -9.27652 4.6775 6.96823 -9.11032 4.68816 6.56243 -9.12594 4.98737 6.58972 -9.29636 5.00081 7.02847 -9.29636 5.00081 7.02847 -9.12594 4.98737 6.58972 -9.10025 5.28924 6.62475 -9.27162 5.32542 7.10511 -9.27162 5.32542 7.10511 -9.10025 5.28924 6.62475 -9.03331 5.58934 6.66701 -9.20253 5.64614 7.19715 -9.20253 5.64614 7.19715 -9.03331 5.58934 6.66701 -8.92563 5.8837 6.71603 -9.08996 5.95803 7.30391 -9.08996 5.95803 7.30391 -8.92563 5.8837 6.71603 -8.77829 6.16883 6.77146 -8.93541 6.25641 7.42493 -8.93541 6.25641 7.42493 -8.77829 6.16883 6.77146 -8.59324 6.44089 6.83396 -8.74114 6.5366 7.5602 -8.74114 6.5366 7.5602 -8.59324 6.44089 6.83396 -8.373 6.69414 6.90517 -8.51013 6.79351 7.70975 -8.51013 6.79351 7.70975 -8.373 6.69414 6.90517 -8.12072 6.92005 6.98624 -8.24614 7.02125 7.87255 -8.24614 7.02125 7.87255 -8.12072 6.92005 6.98624 -7.8403 7.11482 7.07233 -7.95354 7.21571 8.04245 -7.95354 7.21571 8.04245 -7.8403 7.11482 7.07233 -7.53854 7.27122 7.16068 -7.63828 7.37163 8.21364 -7.63828 7.37163 8.21364 -7.53854 7.27122 7.16068 -7.22322 7.37638 7.24983 -7.30706 7.48143 8.38078 -7.30706 7.48143 8.38078 -7.22322 7.37638 7.24983 -6.89999 7.43695 7.33037 -6.96553 7.54633 8.53136 -6.96553 7.54633 8.53136 -6.89999 7.43695 7.33037 -6.44973 7.47356 7.42102 -6.49594 7.58194 8.70167 -6.49594 7.58194 8.70167 -6.44973 7.47356 7.42102 -5.76269 7.48828 7.51392 -5.79514 7.5938 8.8726 -5.79514 7.5938 8.8726 -5.76269 7.48828 7.51392 -4.86409 7.49771 7.61122 -4.88526 7.60213 9.04875 -4.88526 7.60213 9.04875 -4.86409 7.49771 7.61122 -3.5053 7.44724 7.71315 -3.62163 7.55243 9.18423 -3.5053 7.44724 7.71315 -4.86409 7.49771 7.61122 -3.89701 3.07445 7.04233 -2.33203 3.59898 7.19282 -4.86409 7.49771 7.61122 -5.76269 7.48828 7.51392 -4.95768 2.83107 6.9573 -3.89701 3.07445 7.04233 -5.76269 7.48828 7.51392 -6.44973 7.47356 7.42102 -5.83793 2.71917 6.87926 -4.95768 2.83107 6.9573 -9.10025 5.28924 6.62475 -9.12594 4.98737 6.58972 -9.11032 4.68816 6.56243 -9.05405 4.3961 6.54379 -6.89999 7.43695 7.33037 -7.22322 7.37638 7.24983 -6.97065 2.72423 6.74389 -6.51501 2.69949 6.81011 -7.22322 7.37638 7.24983 -7.53854 7.27122 7.16068 -7.29325 2.78832 6.69345 -6.97065 2.72423 6.74389 -7.53854 7.27122 7.16068 -7.8403 7.11482 7.07233 -7.61195 2.89188 6.65014 -7.29325 2.78832 6.69345 -7.8403 7.11482 7.07233 -8.12072 6.92005 6.98624 -7.91528 3.02781 6.61578 -7.61195 2.89188 6.65014 -8.12072 6.92005 6.98624 -8.373 6.69414 6.90517 -8.19339 3.19293 6.58639 -7.91528 3.02781 6.61578 -8.373 6.69414 6.90517 -8.59324 6.44089 6.83396 -8.43954 3.38659 6.56191 -8.19339 3.19293 6.58639 -8.59324 6.44089 6.83396 -8.77829 6.16883 6.77146 -8.65878 3.61958 6.54356 -8.64994 3.60711 6.54404 -8.43954 3.38659 6.56191 -8.77829 6.16883 6.77146 -8.92563 5.8837 6.71603 -8.82304 3.85139 6.53457 -8.65878 3.61958 6.54356 -8.92563 5.8837 6.71603 -9.03331 5.58934 6.66701 -8.95801 4.11572 6.53443 -8.82304 3.85139 6.53457 -9.03331 5.58934 6.66701 -9.10025 5.28924 6.62475 -9.05405 4.3961 6.54379 -8.95801 4.11572 6.53443 -3.9457 8.44026 1.64908 -4.7751 7.95074 8.03381 -3.53734 7.90066 8.19123 -2.91006 8.44025 1.76233 -4.87759 8.44026 1.51555 -5.69833 7.94456 7.87227 -4.7751 7.95074 8.03381 -3.9457 8.44026 1.64908 -5.55446 8.43328 1.39633 -6.40835 7.93542 7.71481 -5.69833 7.94456 7.87227 -4.87759 8.44026 1.51555 -6.15262 8.40726 1.25927 -6.91368 7.90015 7.55243 -6.40835 7.93542 7.71481 -5.55446 8.43328 1.39633 -6.68488 8.32965 1.12341 -7.29893 7.82699 7.40644 -6.91368 7.90015 7.55243 -6.15262 8.40726 1.25927 -7.11698 8.20177 0.982119 -7.65973 7.70646 7.24409 -7.29893 7.82699 7.40644 -6.68488 8.32965 1.12341 -7.46932 8.02582 0.862446 -7.99371 7.54062 7.07656 -7.65973 7.70646 7.24409 -7.11698 8.20177 0.982119 -7.79596 7.80481 0.737683 -8.30333 7.3323 6.90718 -7.99371 7.54062 7.07656 -7.46932 8.02582 0.862446 -8.09132 7.54251 0.611428 -8.58329 7.08507 6.74209 -8.30333 7.3323 6.90718 -7.79596 7.80481 0.737683 -8.35035 7.24341 0.487473 -8.82882 6.80316 6.58597 -8.58329 7.08507 6.74209 -8.09132 7.54251 0.611428 -8.56861 6.91264 0.369494 -9.0357 6.49139 6.44188 -8.82882 6.80316 6.58597 -8.35035 7.24341 0.487473 -8.74236 6.55585 0.261001 -9.20039 6.1551 6.31171 -9.0357 6.49139 6.44188 -8.56861 6.91264 0.369494 -8.86864 6.17915 0.165135 -9.32009 5.80004 6.19659 -9.20039 6.1551 6.31171 -8.74236 6.55585 0.261001 -8.94529 5.78898 0.084507 -9.39274 5.43228 6.09733 -9.32009 5.80004 6.19659 -8.86864 6.17915 0.165135 -8.97098 5.39201 0.021114 -9.41709 5.05813 6.01479 -9.39274 5.43228 6.09733 -8.94529 5.78898 0.084507 -8.94529 4.99505 -0.023744 -9.39274 4.68397 5.9501 -9.41709 5.05813 6.01479 -8.97098 5.39201 0.021114 -8.86864 4.60488 -0.049514 -9.32009 4.31622 5.90471 -9.39274 4.68397 5.9501 -8.94529 4.99505 -0.023744 -8.74236 4.22818 -0.056373 -9.20039 3.96115 5.88028 -9.32009 4.31622 5.90471 -8.86864 4.60488 -0.049514 -8.56861 3.87139 -0.045176 -9.0357 3.62486 5.87845 -9.20039 3.96115 5.88028 -8.74236 4.22818 -0.056373 -8.35035 3.54062 -0.017398 -8.82882 3.31309 5.90037 -9.0357 3.62486 5.87845 -8.56861 3.87139 -0.045176 -8.09132 3.24152 0.024996 -8.58329 3.03118 5.94627 -8.82882 3.31309 5.90037 -8.35035 3.54062 -0.017398 -7.79596 2.97922 0.079722 -8.30333 2.78395 6.01496 -8.58329 3.03118 5.94627 -8.09132 3.24152 0.024996 -7.46932 2.75821 0.144216 -7.99371 2.57563 6.10341 -8.30333 2.78395 6.01496 -7.79596 2.97922 0.079722 -7.07511 2.58226 0.215909 -7.65403 2.40979 6.2068 -7.99371 2.57563 6.10341 -7.46932 2.75821 0.144216 -6.66831 2.41824 0.304 -7.29571 2.28926 6.32018 -7.65403 2.40979 6.2068 -7.07511 2.58226 0.215909 -6.18702 2.313 0.396405 -6.90893 2.21611 6.43551 -7.29571 2.28926 6.32018 -6.66831 2.41824 0.304 -5.53197 2.3013 0.518936 -6.39869 2.19159 6.56721 -6.90893 2.21611 6.43551 -6.18702 2.313 0.396405 -4.92948 2.37307 0.634048 -5.68402 2.21139 6.69469 -6.39869 2.19159 6.56721 -5.53197 2.3013 0.518936 -3.9919 2.60552 0.763895 -4.76669 2.3503 6.82683 -5.68402 2.21139 6.69469 -4.92948 2.37307 0.634048 -2.80933 2.95101 0.90603 -3.6737 2.60483 6.96341 -4.76669 2.3503 6.82683 -3.9919 2.60552 0.763895 -1.81192 3.30855 1.00838 -2.20596 3.2541 7.12434 -3.6737 2.60483 6.96341 -2.80933 2.95101 0.90603 0.450623 3.43933 -13.8161 0.320823 3.21004 -20.5988 0.668859 2.90482 -20.5988 0.895949 3.20654 -13.8177 -0.269292 3.94298 -20.5988 0.015603 3.55808 -20.5988 0.090666 3.59647 -13.8161 -0.269292 3.70063 -13.8162 -0.629249 3.59647 -13.8161 -0.989207 3.43933 -13.8161 -0.859406 3.21004 -20.5988 -0.554185 3.55808 -20.5988 -0.269292 9.01658 -13.543 -0.269293 9.26081 -5.12495 0.727127 9.15581 -5.12996 0.727127 9.15581 -5.12996 1.80895 8.79244 -5.17754 1.40255 8.98476 -13.5613 1.80895 8.79244 -5.17754 1.58324 9.21312 1.68802 2.22541 8.67416 1.76706 2.22541 8.67416 1.76706 2.595 8.30782 1.76233 1.80895 8.79244 -5.17754 -0.269293 9.26081 -5.12495 -0.269293 9.62125 1.60245 0.697502 9.51013 1.62094 0.727127 9.15581 -5.12996 0.727127 9.15581 -5.12996 0.697502 9.51013 1.62094 1.58324 9.21312 1.68802 1.80895 8.79244 -5.17754 1.58324 9.21312 1.68802 1.65664 9.2418 6.35594 2.44929 8.60663 6.44527 2.22541 8.67416 1.76706 2.44929 8.60663 6.44527 3.09125 7.90066 7.61181 2.595 8.30782 1.76233 2.22541 8.67416 1.76706 -0.269293 9.62125 1.60245 -0.269293 9.70236 6.32616 0.727735 9.58797 6.32616 0.697502 9.51013 1.62094 0.727735 9.58797 6.32616 1.65664 9.2418 6.35594 1.58324 9.21312 1.68802 0.697502 9.51013 1.62094 1.27333 3.30855 1.00838 1.98311 3.19452 7.06184 0.805661 2.93688 7.03171 0.502584 3.24673 0.954134 2.44929 8.60663 6.44527 1.65664 9.2418 6.35594 1.63949 9.02062 9.44964 2.42852 8.45488 9.5092 1.63949 9.02062 9.44964 1.51157 8.5332 12.8639 2.24838 8.03884 12.8769 2.42852 8.45488 9.5092 2.24838 8.03884 12.8769 2.81451 7.40196 12.8946 3.03423 7.74813 9.58907 2.42852 8.45488 9.5092 3.03423 7.74813 9.58907 3.09125 7.90066 7.61181 2.44929 8.60663 6.44527 2.42852 8.45488 9.5092 0.727735 9.58797 6.32616 -0.269293 9.70236 6.32616 -0.269293 9.47355 9.42979 0.718174 9.36026 9.42979 -0.269293 9.47355 9.42979 -0.269293 8.9461 12.8583 0.652265 8.84083 12.8588 0.718174 9.36026 9.42979 0.652265 8.84083 12.8588 1.51157 8.5332 12.8639 1.63949 9.02062 9.44964 0.718174 9.36026 9.42979 1.63949 9.02062 9.44964 1.65664 9.2418 6.35594 0.727735 9.58797 6.32616 0.718174 9.36026 9.42979 0.805661 2.93688 7.03171 1.98311 3.19452 7.06184 1.73788 3.20257 10.2705 0.781474 2.89766 10.3072 1.73788 3.20257 10.2705 1.53237 3.21598 13.0482 0.665881 2.9161 13.0572 0.781474 2.89766 10.3072 0.665881 2.9161 13.0572 -0.269293 2.81372 13.0589 -0.269293 2.7977 10.3114 0.781474 2.89766 10.3072 -0.269293 2.7977 10.3114 -0.269293 2.84848 7.02138 0.805661 2.93688 7.03171 0.781474 2.89766 10.3072 3.07066 4.41464 10.0476 2.82332 4.33671 12.9986 2.26537 3.70039 13.0275 2.50555 3.71751 10.177 2.26537 3.70039 13.0275 1.53237 3.21598 13.0482 1.73788 3.20257 10.2705 2.50555 3.71751 10.177 1.73788 3.20257 10.2705 1.98311 3.19452 7.06184 2.65223 3.7443 7.12613 2.50555 3.71751 10.177 3.53619 6.16032 9.76882 3.29017 5.88395 12.9365 3.17121 5.08526 12.9664 3.41937 5.26615 9.90316 3.17121 5.08526 12.9664 2.82332 4.33671 12.9986 3.07066 4.41464 10.0476 3.41937 5.26615 9.90316 3.03423 7.74813 9.58907 2.81451 7.40196 12.8946 3.16782 6.67028 12.9135 3.40564 6.98546 9.66987 3.16782 6.67028 12.9135 3.29017 5.88395 12.9365 3.53619 6.16032 9.76882 3.40564 6.98546 9.66987 2.43729 6.90593 16.2588 1.93998 7.46007 16.2575 1.64402 7.01688 18.3365 2.07475 6.53733 18.3365 1.29338 7.8866 16.2566 0.539359 8.15345 16.2563 0.431029 7.61661 18.3365 1.08404 7.38574 18.3365 -0.269293 2.89034 16.27 0.540293 2.98217 16.2699 0.431029 3.14012 18.3365 -0.269293 3.06045 18.3365 1.29481 3.24848 16.2693 1.94114 3.67434 16.2679 1.64402 3.73986 18.3365 1.08404 3.37099 18.3365 2.43789 4.22843 16.2659 2.74872 4.87503 16.2637 2.34434 4.77863 18.3365 2.07475 4.21941 18.3365 2.8559 5.56819 16.2616 2.74848 6.2605 16.26 2.34434 5.97811 18.3365 2.43738 5.37837 18.3365 0.905427 7.01964 19.5824 1.3915 6.69946 19.5824 1.64402 7.01688 18.3365 1.08404 7.38574 18.3365 1.09122 5.80669 21.6005 0.841175 6.08504 21.6005 0.58418 5.82091 22.3048 0.776461 5.60695 22.3048 -0.269293 7.2892 19.5824 0.3386 7.22004 19.5824 0.431029 7.61661 18.3365 -0.269293 7.69629 18.3365 0.516202 6.29913 21.6005 0.137167 6.43312 21.6005 0.0431 6.08844 22.3048 0.334474 5.98546 22.3048 0.905427 3.53476 19.5824 0.3386 3.33436 19.5824 0.431029 3.14012 18.3365 1.08404 3.37099 18.3365 -0.269293 3.78867 21.6005 0.137167 3.83501 21.6005 0.0431 4.09161 22.3048 -0.269293 4.05581 22.3048 1.76538 4.2712 19.5824 1.3915 3.85494 19.5824 1.64402 3.73986 18.3365 2.07475 4.21941 18.3365 0.516202 3.96891 21.6005 0.841175 4.18309 21.6005 0.58418 4.35913 22.3048 0.334474 4.19435 22.3048 2.08014 5.2772 19.5824 1.99939 4.75662 19.5824 2.34434 4.77863 18.3365 2.43738 5.37837 18.3365 1.09122 4.46134 21.6005 1.24763 4.78599 21.6005 0.896573 4.8225 22.3048 0.776461 4.57285 22.3048 1.76538 6.2832 19.5824 1.99939 5.79778 19.5824 2.34434 5.97811 18.3365 2.07475 6.53733 18.3365 1.3017 5.13402 21.6005 1.24763 5.48215 21.6005 0.896573 5.35755 22.3048 0.93824 5.0899 22.3048 0.18059 5.73 22.7607 0.366504 5.60742 22.7607 0.58418 5.82091 22.3048 0.334474 5.98546 22.3048 -0.269293 5.83324 22.7607 -0.036575 5.80672 22.7607 0.0431 6.08844 22.3048 -0.269293 6.124 22.3048 0.18059 4.3954 22.7607 -0.036575 4.31917 22.7607 0.0431 4.09161 22.3048 0.334474 4.19435 22.3048 0.509927 4.67743 22.7607 0.366504 4.51846 22.7607 0.58418 4.35913 22.3048 0.776461 4.57285 22.3048 0.630472 5.0627 22.7607 0.599222 4.86365 22.7607 0.896573 4.8225 22.3048 0.93824 5.0899 22.3048 0.509927 5.44797 22.7607 0.599222 5.26224 22.7607 0.896573 5.35755 22.3048 0.776461 5.60695 22.3048 0.450623 3.43933 -13.8161 0.900391 3.45672 -5.81703 0.271065 3.56406 -5.87876 0.271065 3.56406 -5.87876 -0.269293 3.57392 -5.86771 -0.269292 3.70063 -13.8162 0.090666 3.59647 -13.8161 0.900391 3.45672 -5.81703 1.27333 3.30855 1.00838 0.502584 3.24673 0.954134 0.271065 3.56406 -5.87876 -0.269293 3.19238 0.966113 -0.269293 3.57392 -5.86771 0.271065 3.56406 -5.87876 0.502584 3.24673 0.954134 -0.269293 2.84848 7.02138 -0.269293 3.19238 0.966113 0.502584 3.24673 0.954134 0.805661 2.93688 7.03171 3.44568 7.08948 7.51697 3.09125 7.90066 7.61181 3.03423 7.74813 9.58907 3.40564 6.98546 9.66987 3.53619 6.16032 9.76882 3.58442 6.28241 7.42267 3.44568 7.08948 7.51697 3.40564 6.98546 9.66987 3.49437 5.37923 7.3172 3.58442 6.28241 7.42267 3.53619 6.16032 9.76882 3.41937 5.26615 9.90316 3.07066 4.41464 10.0476 3.18339 4.47675 7.21177 3.49437 5.37923 7.3172 3.41937 5.26615 9.90316 2.65223 3.7443 7.12613 3.18339 4.47675 7.21177 3.07066 4.41464 10.0476 2.50555 3.71751 10.177 -0.269292 9.01658 -13.543 0.727127 9.15581 -5.12996 1.40255 8.98476 -13.5613 0.668856 8.52005 -20.5988 -0.269292 9.01658 -13.543 1.05376 8.77724 -20.5988 1.05376 8.77724 -20.5988 -0.269292 9.01658 -13.543 1.46893 8.98198 -20.5988 0.320819 8.21483 -20.5988 -0.269292 9.01658 -13.543 0.668856 8.52005 -20.5988 0.015599 7.8668 -20.5988 -0.269292 9.01658 -13.543 0.320819 8.21483 -20.5988 -0.269293 7.4819 -20.5988 -0.269292 9.01658 -13.543 0.015599 7.8668 -20.5988 1.46893 8.98198 -20.5988 -0.269292 9.01658 -13.543 1.40255 8.98476 -13.5613 0.025684 5.29702 23.2003 0.092296 5.22293 23.2002 0.298492 5.3294 23.0276 0.193847 5.44562 23.0278 -0.060529 5.3538 23.2002 0.025684 5.29702 23.2003 0.193847 5.44562 23.0278 0.058518 5.53491 23.0276 -0.161324 5.38948 23.2003 -0.060529 5.3538 23.2002 0.058518 5.53491 23.0276 -0.099772 5.5908 23.0278 -0.269293 5.40171 23.2002 -0.161324 5.38948 23.2003 -0.099772 5.5908 23.0278 -0.269293 5.61013 23.0276 -0.161324 4.69934 23.2003 -0.269293 4.68659 23.2002 -0.269293 4.48722 23.0276 -0.099772 4.50721 23.0278 -0.060529 4.73449 23.2002 -0.161324 4.69934 23.2003 -0.099772 4.50721 23.0278 0.058518 4.56244 23.0276 0.025684 4.7918 23.2003 -0.060529 4.73449 23.2002 0.058518 4.56244 23.0276 0.193847 4.65239 23.0278 0.092296 4.86537 23.2002 0.025684 4.7918 23.2003 0.193847 4.65239 23.0278 0.298492 4.76795 23.0276 0.133652 4.95195 23.2003 0.092296 4.86537 23.2002 0.298492 4.76795 23.0276 0.363367 4.90383 23.0278 0.148234 5.04415 23.2002 0.133652 4.95195 23.2003 0.363367 4.90383 23.0278 0.386329 5.04868 23.0276 0.133652 5.13687 23.2003 0.148234 5.04415 23.2002 0.386329 5.04868 23.0276 0.363367 5.19418 23.0278 0.092296 5.22293 23.2002 0.133652 5.13687 23.2003 0.363367 5.19418 23.0278 0.298492 5.3294 23.0276 -0.221664 5.19665 23.3091 -0.177427 5.18058 23.3091 -0.060529 5.3538 23.2002 -0.161324 5.38948 23.2003 -0.177427 5.18058 23.3091 -0.139168 5.15587 23.3091 0.025684 5.29702 23.2003 -0.060529 5.3538 23.2002 -0.139168 5.15587 23.3091 -0.110176 5.12299 23.3091 0.092296 5.22293 23.2002 0.025684 5.29702 23.2003 -0.110176 5.12299 23.3091 -0.09154 5.08522 23.3091 0.133652 5.13687 23.2003 0.092296 5.22293 23.2002 -0.09154 5.08522 23.3091 -0.085561 5.04432 23.3091 0.148234 5.04415 23.2002 0.133652 5.13687 23.2003 -0.085561 5.04432 23.3091 -0.09154 5.00364 23.3091 0.133652 4.95195 23.2003 0.148234 5.04415 23.2002 -0.09154 5.00364 23.3091 -0.110176 4.96565 23.3091 0.092296 4.86537 23.2002 0.133652 4.95195 23.2003 -0.110176 4.96565 23.3091 -0.139168 4.933 23.3091 0.025684 4.7918 23.2003 0.092296 4.86537 23.2002 -0.139168 4.933 23.3091 -0.177427 4.90805 23.3091 -0.060529 4.73449 23.2002 0.025684 4.7918 23.2003 -0.177427 4.90805 23.3091 -0.221664 4.89221 23.3091 -0.161324 4.69934 23.2003 -0.060529 4.73449 23.2002 -0.221664 4.89221 23.3091 -0.269293 4.88697 23.3091 -0.269293 4.68659 23.2002 -0.161324 4.69934 23.2003 -0.269293 5.20166 23.3091 -0.221664 5.19665 23.3091 -0.161324 5.38948 23.2003 -0.269293 5.40171 23.2002 1.29338 7.8866 16.2566 1.08404 7.38574 18.3365 1.64402 7.01688 18.3365 1.93998 7.46007 16.2575 -0.269293 8.24548 16.2563 -0.269293 7.69629 18.3365 0.431029 7.61661 18.3365 0.539359 8.15345 16.2563 1.29481 3.24848 16.2693 1.08404 3.37099 18.3365 0.431029 3.14012 18.3365 0.540293 2.98217 16.2699 2.43789 4.22843 16.2659 2.07475 4.21941 18.3365 1.64402 3.73986 18.3365 1.94114 3.67434 16.2679 2.8559 5.56819 16.2616 2.43738 5.37837 18.3365 2.34434 4.77863 18.3365 2.74872 4.87503 16.2637 2.43729 6.90593 16.2588 2.07475 6.53733 18.3365 2.34434 5.97811 18.3365 2.74848 6.2605 16.26 0.905427 7.01964 19.5824 0.711333 6.65065 20.6817 1.11708 6.38337 20.6817 1.3915 6.69946 19.5824 0.516202 6.29913 21.6005 0.334474 5.98546 22.3048 0.58418 5.82091 22.3048 0.841175 6.08504 21.6005 0.516202 6.29913 21.6005 0.841175 6.08504 21.6005 1.11708 6.38337 20.6817 0.711333 6.65065 20.6817 1.09122 5.80669 21.6005 1.4292 6.03588 20.6817 1.11708 6.38337 20.6817 0.841175 6.08504 21.6005 1.76538 6.2832 19.5824 2.07475 6.53733 18.3365 1.64402 7.01688 18.3365 1.3915 6.69946 19.5824 1.76538 6.2832 19.5824 1.3915 6.69946 19.5824 1.11708 6.38337 20.6817 1.4292 6.03588 20.6817 -0.269293 7.2892 19.5824 -0.269293 6.87567 20.6817 0.238156 6.81793 20.6817 0.3386 7.22004 19.5824 -0.269293 6.47937 21.6005 -0.269293 6.124 22.3048 0.0431 6.08844 22.3048 0.137167 6.43312 21.6005 -0.269293 6.47937 21.6005 0.137167 6.43312 21.6005 0.238156 6.81793 20.6817 -0.269293 6.87567 20.6817 0.516202 6.29913 21.6005 0.711333 6.65065 20.6817 0.238156 6.81793 20.6817 0.137167 6.43312 21.6005 0.905427 7.01964 19.5824 1.08404 7.38574 18.3365 0.431029 7.61661 18.3365 0.3386 7.22004 19.5824 0.905427 7.01964 19.5824 0.3386 7.22004 19.5824 0.238156 6.81793 20.6817 0.711333 6.65065 20.6817 0.905427 3.53476 19.5824 0.711333 3.74156 20.6817 0.238156 3.5743 20.6817 0.3386 3.33436 19.5824 0.516202 3.96891 21.6005 0.334474 4.19435 22.3048 0.0431 4.09161 22.3048 0.137167 3.83501 21.6005 0.516202 3.96891 21.6005 0.137167 3.83501 21.6005 0.238156 3.5743 20.6817 0.711333 3.74156 20.6817 -0.269293 3.78867 21.6005 -0.269293 3.51654 20.6817 0.238156 3.5743 20.6817 0.137167 3.83501 21.6005 -0.269293 3.26521 19.5824 -0.269293 3.06045 18.3365 0.431029 3.14012 18.3365 0.3386 3.33436 19.5824 -0.269293 3.26521 19.5824 0.3386 3.33436 19.5824 0.238156 3.5743 20.6817 -0.269293 3.51654 20.6817 1.76538 4.2712 19.5824 1.4292 4.35632 20.6817 1.11708 4.00886 20.6817 1.3915 3.85494 19.5824 1.09122 4.46134 21.6005 0.776461 4.57285 22.3048 0.58418 4.35913 22.3048 0.841175 4.18309 21.6005 1.09122 4.46134 21.6005 0.841175 4.18309 21.6005 1.11708 4.00886 20.6817 1.4292 4.35632 20.6817 0.516202 3.96891 21.6005 0.711333 3.74156 20.6817 1.11708 4.00886 20.6817 0.841175 4.18309 21.6005 0.905427 3.53476 19.5824 1.08404 3.37099 18.3365 1.64402 3.73986 18.3365 1.3915 3.85494 19.5824 0.905427 3.53476 19.5824 1.3915 3.85494 19.5824 1.11708 4.00886 20.6817 0.711333 3.74156 20.6817 2.08014 5.2772 19.5824 1.69196 5.1961 20.6817 1.62453 4.76155 20.6817 1.99939 4.75662 19.5824 1.3017 5.13402 21.6005 0.93824 5.0899 22.3048 0.896573 4.8225 22.3048 1.24763 4.78599 21.6005 1.3017 5.13402 21.6005 1.24763 4.78599 21.6005 1.62453 4.76155 20.6817 1.69196 5.1961 20.6817 1.09122 4.46134 21.6005 1.4292 4.35632 20.6817 1.62453 4.76155 20.6817 1.24763 4.78599 21.6005 1.76538 4.2712 19.5824 2.07475 4.21941 18.3365 2.34434 4.77863 18.3365 1.99939 4.75662 19.5824 1.76538 4.2712 19.5824 1.99939 4.75662 19.5824 1.62453 4.76155 20.6817 1.4292 4.35632 20.6817 1.76538 6.2832 19.5824 1.4292 6.03588 20.6817 1.62453 5.63068 20.6817 1.99939 5.79778 19.5824 1.09122 5.80669 21.6005 0.776461 5.60695 22.3048 0.896573 5.35755 22.3048 1.24763 5.48215 21.6005 1.09122 5.80669 21.6005 1.24763 5.48215 21.6005 1.62453 5.63068 20.6817 1.4292 6.03588 20.6817 1.3017 5.13402 21.6005 1.69196 5.1961 20.6817 1.62453 5.63068 20.6817 1.24763 5.48215 21.6005 2.08014 5.2772 19.5824 2.43738 5.37837 18.3365 2.34434 5.97811 18.3365 1.99939 5.79778 19.5824 2.08014 5.2772 19.5824 1.99939 5.79778 19.5824 1.62453 5.63068 20.6817 1.69196 5.1961 20.6817 0.18059 5.73 22.7607 0.058518 5.53491 23.0276 0.193847 5.44562 23.0278 0.366504 5.60742 22.7607 -0.269293 5.04409 23.3545 -0.139168 5.15587 23.3091 -0.177427 5.18058 23.3091 0.509927 5.44797 22.7607 0.776461 5.60695 22.3048 0.58418 5.82091 22.3048 0.366504 5.60742 22.7607 0.509927 5.44797 22.7607 0.366504 5.60742 22.7607 0.193847 5.44562 23.0278 0.298492 5.3294 23.0276 -0.269293 5.83324 22.7607 -0.269293 5.61013 23.0276 -0.099772 5.5908 23.0278 -0.036575 5.80672 22.7607 -0.269293 5.04409 23.3545 -0.177427 5.18058 23.3091 -0.221664 5.19665 23.3091 0.18059 5.73 22.7607 0.334474 5.98546 22.3048 0.0431 6.08844 22.3048 -0.036575 5.80672 22.7607 0.18059 5.73 22.7607 -0.036575 5.80672 22.7607 -0.099772 5.5908 23.0278 0.058518 5.53491 23.0276 0.18059 4.3954 22.7607 0.058518 4.56244 23.0276 -0.099772 4.50721 23.0278 -0.036575 4.31917 22.7607 -0.269293 5.04409 23.3545 -0.221664 4.89221 23.3091 -0.177427 4.90805 23.3091 -0.269293 4.29217 22.7607 -0.269293 4.05581 22.3048 0.0431 4.09161 22.3048 -0.036575 4.31917 22.7607 -0.269293 4.29217 22.7607 -0.036575 4.31917 22.7607 -0.099772 4.50721 23.0278 -0.269293 4.48722 23.0276 0.509927 4.67743 22.7607 0.298492 4.76795 23.0276 0.193847 4.65239 23.0278 0.366504 4.51846 22.7607 -0.269293 5.04409 23.3545 -0.177427 4.90805 23.3091 -0.139168 4.933 23.3091 0.18059 4.3954 22.7607 0.334474 4.19435 22.3048 0.58418 4.35913 22.3048 0.366504 4.51846 22.7607 0.18059 4.3954 22.7607 0.366504 4.51846 22.7607 0.193847 4.65239 23.0278 0.058518 4.56244 23.0276 0.630472 5.0627 22.7607 0.386329 5.04868 23.0276 0.363367 4.90383 23.0278 0.599222 4.86365 22.7607 -0.269293 5.04409 23.3545 -0.09154 5.00364 23.3091 -0.085561 5.04432 23.3091 0.509927 4.67743 22.7607 0.776461 4.57285 22.3048 0.896573 4.8225 22.3048 0.599222 4.86365 22.7607 0.509927 4.67743 22.7607 0.599222 4.86365 22.7607 0.363367 4.90383 23.0278 0.298492 4.76795 23.0276 0.509927 5.44797 22.7607 0.298492 5.3294 23.0276 0.363367 5.19418 23.0278 0.599222 5.26224 22.7607 -0.269293 5.04409 23.3545 -0.085561 5.04432 23.3091 -0.09154 5.08522 23.3091 0.630472 5.0627 22.7607 0.93824 5.0899 22.3048 0.896573 5.35755 22.3048 0.599222 5.26224 22.7607 0.630472 5.0627 22.7607 0.599222 5.26224 22.7607 0.363367 5.19418 23.0278 0.386329 5.04868 23.0276 -0.269293 5.04409 23.3545 -0.09154 5.08522 23.3091 -0.110176 5.12299 23.3091 -0.269293 5.04409 23.3545 -0.110176 5.12299 23.3091 -0.139168 5.15587 23.3091 -0.269293 5.04409 23.3545 -0.221664 5.19665 23.3091 -0.269293 5.20166 23.3091 -0.269293 5.04409 23.3545 -0.269293 4.88697 23.3091 -0.221664 4.89221 23.3091 -0.269293 5.04409 23.3545 -0.139168 4.933 23.3091 -0.110176 4.96565 23.3091 -0.269293 5.04409 23.3545 -0.110176 4.96565 23.3091 -0.09154 5.00364 23.3091 2.74848 6.2605 16.26 3.16782 6.67028 12.9135 2.81451 7.40196 12.8946 2.43729 6.90593 16.2588 2.74848 6.2605 16.26 2.8559 5.56819 16.2616 3.29017 5.88395 12.9365 3.16782 6.67028 12.9135 2.74872 4.87503 16.2637 3.17121 5.08526 12.9664 3.29017 5.88395 12.9365 2.8559 5.56819 16.2616 2.74872 4.87503 16.2637 2.43789 4.22843 16.2659 2.82332 4.33671 12.9986 3.17121 5.08526 12.9664 1.94114 3.67434 16.2679 2.26537 3.70039 13.0275 2.82332 4.33671 12.9986 2.43789 4.22843 16.2659 1.94114 3.67434 16.2679 1.29481 3.24848 16.2693 1.53237 3.21598 13.0482 2.26537 3.70039 13.0275 0.540293 2.98217 16.2699 0.665881 2.9161 13.0572 1.53237 3.21598 13.0482 1.29481 3.24848 16.2693 0.540293 2.98217 16.2699 -0.269293 2.89034 16.27 -0.269293 2.81372 13.0589 0.665881 2.9161 13.0572 0.539359 8.15345 16.2563 0.652265 8.84083 12.8588 -0.269293 8.9461 12.8583 -0.269293 8.24548 16.2563 0.539359 8.15345 16.2563 1.29338 7.8866 16.2566 1.51157 8.5332 12.8639 0.652265 8.84083 12.8588 1.93998 7.46007 16.2575 2.24838 8.03884 12.8769 1.51157 8.5332 12.8639 1.29338 7.8866 16.2566 1.93998 7.46007 16.2575 2.43729 6.90593 16.2588 2.81451 7.40196 12.8946 2.24838 8.03884 12.8769 -0.269292 9.01658 -13.543 -1.26571 9.15581 -5.12996 -0.269293 9.26081 -5.12495 -1.26571 9.15581 -5.12996 -1.94114 8.98476 -13.5613 -2.34754 8.79244 -5.17754 -2.34754 8.79244 -5.17754 -2.76399 8.67416 1.76706 -2.12182 9.21312 1.68802 -2.76399 8.67416 1.76706 -2.34754 8.79244 -5.17754 -3.13358 8.30782 1.76233 -0.269293 9.26081 -5.12495 -1.26571 9.15581 -5.12996 -1.23609 9.51013 1.62094 -0.269293 9.62125 1.60245 -2.12182 9.21312 1.68802 -2.76399 8.67416 1.76706 -2.98787 8.60663 6.44527 -2.19522 9.2418 6.35594 -2.98787 8.60663 6.44527 -2.76399 8.67416 1.76706 -3.13358 8.30782 1.76233 -3.62983 7.90066 7.61181 -0.269293 9.62125 1.60245 -1.23609 9.51013 1.62094 -1.26632 9.58797 6.32616 -0.269293 9.70236 6.32616 -1.26632 9.58797 6.32616 -1.23609 9.51013 1.62094 -2.12182 9.21312 1.68802 -2.19522 9.2418 6.35594 -1.81192 3.30855 1.00838 -1.04117 3.24673 0.954134 -1.34425 2.93688 7.03171 -2.5217 3.19452 7.06184 -2.98787 8.60663 6.44527 -2.9671 8.45488 9.5092 -2.17808 9.02062 9.44964 -2.19522 9.2418 6.35594 -2.17808 9.02062 9.44964 -2.9671 8.45488 9.5092 -2.78696 8.03884 12.8769 -2.05015 8.5332 12.8639 -2.78696 8.03884 12.8769 -2.9671 8.45488 9.5092 -3.57282 7.74813 9.58907 -3.3531 7.40196 12.8946 -3.57282 7.74813 9.58907 -2.9671 8.45488 9.5092 -2.98787 8.60663 6.44527 -3.62983 7.90066 7.61181 -1.26632 9.58797 6.32616 -1.25676 9.36026 9.42979 -0.269293 9.47355 9.42979 -0.269293 9.70236 6.32616 -0.269293 9.47355 9.42979 -1.25676 9.36026 9.42979 -1.19085 8.84083 12.8588 -0.269293 8.9461 12.8583 -1.19085 8.84083 12.8588 -1.25676 9.36026 9.42979 -2.17808 9.02062 9.44964 -2.05015 8.5332 12.8639 -2.17808 9.02062 9.44964 -1.25676 9.36026 9.42979 -1.26632 9.58797 6.32616 -2.19522 9.2418 6.35594 -1.34425 2.93688 7.03171 -1.32006 2.89766 10.3072 -2.27646 3.20257 10.2705 -2.5217 3.19452 7.06184 -2.27646 3.20257 10.2705 -1.32006 2.89766 10.3072 -1.20447 2.9161 13.0572 -2.07096 3.21598 13.0482 -1.20447 2.9161 13.0572 -1.32006 2.89766 10.3072 -0.269293 2.7977 10.3114 -0.269293 2.81372 13.0589 -0.269293 2.7977 10.3114 -1.32006 2.89766 10.3072 -1.34425 2.93688 7.03171 -0.269293 2.84848 7.02138 -3.60924 4.41464 10.0476 -3.04413 3.71751 10.177 -2.80396 3.70039 13.0275 -3.36191 4.33671 12.9986 -2.80396 3.70039 13.0275 -3.04413 3.71751 10.177 -2.27646 3.20257 10.2705 -2.07096 3.21598 13.0482 -2.27646 3.20257 10.2705 -3.04413 3.71751 10.177 -3.19082 3.7443 7.12613 -2.5217 3.19452 7.06184 -4.07477 6.16032 9.76882 -3.95795 5.26615 9.90316 -3.70979 5.08526 12.9664 -3.82875 5.88395 12.9365 -3.70979 5.08526 12.9664 -3.95795 5.26615 9.90316 -3.60924 4.41464 10.0476 -3.36191 4.33671 12.9986 -3.57282 7.74813 9.58907 -3.94422 6.98546 9.66987 -3.70641 6.67028 12.9135 -3.3531 7.40196 12.8946 -3.70641 6.67028 12.9135 -3.94422 6.98546 9.66987 -4.07477 6.16032 9.76882 -3.82875 5.88395 12.9365 -2.97587 6.90593 16.2588 -2.61334 6.53733 18.3365 -2.18261 7.01688 18.3365 -2.47856 7.46007 16.2575 -1.83197 7.8866 16.2566 -1.62263 7.38574 18.3365 -0.969614 7.61661 18.3365 -1.07794 8.15345 16.2563 -0.269293 2.89034 16.27 -0.269293 3.06045 18.3365 -0.969614 3.14012 18.3365 -1.07888 2.98217 16.2699 -1.8334 3.24848 16.2693 -1.62263 3.37099 18.3365 -2.18261 3.73986 18.3365 -2.47973 3.67434 16.2679 -2.97648 4.22843 16.2659 -2.61334 4.21941 18.3365 -2.88293 4.77863 18.3365 -3.2873 4.87503 16.2637 -3.39449 5.56819 16.2616 -2.97596 5.37837 18.3365 -2.88293 5.97811 18.3365 -3.28707 6.2605 16.26 -1.44401 7.01964 19.5824 -1.62263 7.38574 18.3365 -2.18261 7.01688 18.3365 -1.93008 6.69946 19.5824 -1.62981 5.80669 21.6005 -1.31505 5.60695 22.3048 -1.12277 5.82091 22.3048 -1.37976 6.08504 21.6005 -0.269293 7.2892 19.5824 -0.269293 7.69629 18.3365 -0.969614 7.61661 18.3365 -0.877185 7.22004 19.5824 -1.05479 6.29913 21.6005 -0.873059 5.98546 22.3048 -0.581686 6.08844 22.3048 -0.675752 6.43312 21.6005 -1.44401 3.53476 19.5824 -1.62263 3.37099 18.3365 -0.969614 3.14012 18.3365 -0.877185 3.33436 19.5824 -0.269293 3.78867 21.6005 -0.269293 4.05581 22.3048 -0.581686 4.09161 22.3048 -0.675752 3.83501 21.6005 -2.30397 4.2712 19.5824 -2.61334 4.21941 18.3365 -2.18261 3.73986 18.3365 -1.93008 3.85494 19.5824 -1.05479 3.96891 21.6005 -0.873059 4.19435 22.3048 -1.12277 4.35913 22.3048 -1.37976 4.18309 21.6005 -2.61873 5.2772 19.5824 -2.97596 5.37837 18.3365 -2.88293 4.77863 18.3365 -2.53798 4.75662 19.5824 -1.62981 4.46134 21.6005 -1.31505 4.57285 22.3048 -1.43516 4.8225 22.3048 -1.78622 4.78599 21.6005 -2.30397 6.2832 19.5824 -2.61334 6.53733 18.3365 -2.88293 5.97811 18.3365 -2.53798 5.79778 19.5824 -1.84028 5.13402 21.6005 -1.47682 5.0899 22.3048 -1.43516 5.35755 22.3048 -1.78622 5.48215 21.6005 -0.719175 5.73 22.7607 -0.873059 5.98546 22.3048 -1.12277 5.82091 22.3048 -0.905089 5.60742 22.7607 -0.269293 5.83324 22.7607 -0.269293 6.124 22.3048 -0.581686 6.08844 22.3048 -0.502011 5.80672 22.7607 -0.719176 4.3954 22.7607 -0.873059 4.19435 22.3048 -0.581686 4.09161 22.3048 -0.502011 4.31917 22.7607 -1.04851 4.67743 22.7607 -1.31505 4.57285 22.3048 -1.12277 4.35913 22.3048 -0.905089 4.51846 22.7607 -1.16906 5.0627 22.7607 -1.47682 5.0899 22.3048 -1.43516 4.8225 22.3048 -1.13781 4.86365 22.7607 -1.04851 5.44797 22.7607 -1.31505 5.60695 22.3048 -1.43516 5.35755 22.3048 -1.13781 5.26224 22.7607 -0.989207 3.43933 -13.8161 -0.809651 3.56406 -5.87876 -1.43898 3.45672 -5.81703 -0.809651 3.56406 -5.87876 -0.989207 3.43933 -13.8161 -0.629249 3.59647 -13.8161 -1.43898 3.45672 -5.81703 -0.809651 3.56406 -5.87876 -1.04117 3.24673 0.954134 -1.81192 3.30855 1.00838 -0.269293 3.19238 0.966113 -1.04117 3.24673 0.954134 -0.809651 3.56406 -5.87876 -0.269293 3.57392 -5.86771 -0.269293 2.84848 7.02138 -1.34425 2.93688 7.03171 -1.04117 3.24673 0.954134 -0.269293 3.19238 0.966113 -3.98427 7.08948 7.51697 -3.94422 6.98546 9.66987 -3.57282 7.74813 9.58907 -3.62983 7.90066 7.61181 -4.07477 6.16032 9.76882 -3.94422 6.98546 9.66987 -3.98427 7.08948 7.51697 -4.123 6.28241 7.42267 -4.03296 5.37923 7.3172 -3.95795 5.26615 9.90316 -4.07477 6.16032 9.76882 -4.123 6.28241 7.42267 -3.60924 4.41464 10.0476 -3.95795 5.26615 9.90316 -4.03296 5.37923 7.3172 -3.72198 4.47675 7.21177 -3.19082 3.7443 7.12613 -3.04413 3.71751 10.177 -3.60924 4.41464 10.0476 -3.72198 4.47675 7.21177 -0.269292 9.01658 -13.543 -1.94114 8.98476 -13.5613 -1.26571 9.15581 -5.12996 -1.20744 8.52005 -20.5988 -1.59234 8.77724 -20.5988 -0.269292 9.01658 -13.543 -1.59234 8.77724 -20.5988 -2.00751 8.98198 -20.5988 -0.269292 9.01658 -13.543 -0.859405 8.21483 -20.5988 -1.20744 8.52005 -20.5988 -0.269292 9.01658 -13.543 -0.554185 7.8668 -20.5988 -0.859405 8.21483 -20.5988 -0.269292 9.01658 -13.543 -0.269293 7.4819 -20.5988 -0.554185 7.8668 -20.5988 -0.269292 9.01658 -13.543 -2.00751 8.98198 -20.5988 -1.94114 8.98476 -13.5613 -0.269292 9.01658 -13.543 -1.26571 9.15581 -5.12996 -2.34754 8.79244 -5.17754 -2.12182 9.21312 1.68802 -1.23609 9.51013 1.62094 -0.564269 5.29702 23.2003 -0.732432 5.44562 23.0278 -0.837078 5.3294 23.0276 -0.630882 5.22293 23.2002 -0.478056 5.3538 23.2002 -0.597104 5.53491 23.0276 -0.732432 5.44562 23.0278 -0.564269 5.29702 23.2003 -0.377262 5.38948 23.2003 -0.438814 5.5908 23.0278 -0.597104 5.53491 23.0276 -0.478056 5.3538 23.2002 -0.269293 5.40171 23.2002 -0.269293 5.61013 23.0276 -0.438814 5.5908 23.0278 -0.377262 5.38948 23.2003 -0.377262 4.69934 23.2003 -0.438814 4.50721 23.0278 -0.269293 4.48722 23.0276 -0.269293 4.68659 23.2002 -0.478056 4.73449 23.2002 -0.597104 4.56244 23.0276 -0.438814 4.50721 23.0278 -0.377262 4.69934 23.2003 -0.564269 4.7918 23.2003 -0.732432 4.65239 23.0278 -0.597104 4.56244 23.0276 -0.478056 4.73449 23.2002 -0.630882 4.86537 23.2002 -0.837078 4.76795 23.0276 -0.732432 4.65239 23.0278 -0.564269 4.7918 23.2003 -0.672238 4.95195 23.2003 -0.901953 4.90383 23.0278 -0.837078 4.76795 23.0276 -0.630882 4.86537 23.2002 -0.686819 5.04415 23.2002 -0.924914 5.04868 23.0276 -0.901953 4.90383 23.0278 -0.672238 4.95195 23.2003 -0.672238 5.13687 23.2003 -0.901953 5.19418 23.0278 -0.924914 5.04868 23.0276 -0.686819 5.04415 23.2002 -0.630882 5.22293 23.2002 -0.837078 5.3294 23.0276 -0.901953 5.19418 23.0278 -0.672238 5.13687 23.2003 -0.316922 5.19665 23.3091 -0.377262 5.38948 23.2003 -0.478056 5.3538 23.2002 -0.361159 5.18058 23.3091 -0.361159 5.18058 23.3091 -0.478056 5.3538 23.2002 -0.564269 5.29702 23.2003 -0.399417 5.15587 23.3091 -0.399417 5.15587 23.3091 -0.564269 5.29702 23.2003 -0.630882 5.22293 23.2002 -0.428409 5.12299 23.3091 -0.428409 5.12299 23.3091 -0.630882 5.22293 23.2002 -0.672238 5.13687 23.2003 -0.447046 5.08522 23.3091 -0.447046 5.08522 23.3091 -0.672238 5.13687 23.2003 -0.686819 5.04415 23.2002 -0.453025 5.04432 23.3091 -0.453025 5.04432 23.3091 -0.686819 5.04415 23.2002 -0.672238 4.95195 23.2003 -0.447046 5.00364 23.3091 -0.447046 5.00364 23.3091 -0.672238 4.95195 23.2003 -0.630882 4.86537 23.2002 -0.428409 4.96565 23.3091 -0.428409 4.96565 23.3091 -0.630882 4.86537 23.2002 -0.564269 4.7918 23.2003 -0.399417 4.933 23.3091 -0.399417 4.933 23.3091 -0.564269 4.7918 23.2003 -0.478056 4.73449 23.2002 -0.361159 4.90805 23.3091 -0.361159 4.90805 23.3091 -0.478056 4.73449 23.2002 -0.377262 4.69934 23.2003 -0.316922 4.89221 23.3091 -0.316922 4.89221 23.3091 -0.377262 4.69934 23.2003 -0.269293 4.68659 23.2002 -0.269293 4.88697 23.3091 -0.269293 5.20166 23.3091 -0.269293 5.40171 23.2002 -0.377262 5.38948 23.2003 -0.316922 5.19665 23.3091 -1.83197 7.8866 16.2566 -2.47856 7.46007 16.2575 -2.18261 7.01688 18.3365 -1.62263 7.38574 18.3365 -0.269293 8.24548 16.2563 -1.07794 8.15345 16.2563 -0.969614 7.61661 18.3365 -0.269293 7.69629 18.3365 -1.8334 3.24848 16.2693 -1.07888 2.98217 16.2699 -0.969614 3.14012 18.3365 -1.62263 3.37099 18.3365 -2.97648 4.22843 16.2659 -2.47973 3.67434 16.2679 -2.18261 3.73986 18.3365 -2.61334 4.21941 18.3365 -3.39449 5.56819 16.2616 -3.2873 4.87503 16.2637 -2.88293 4.77863 18.3365 -2.97596 5.37837 18.3365 -2.97587 6.90593 16.2588 -3.28707 6.2605 16.26 -2.88293 5.97811 18.3365 -2.61334 6.53733 18.3365 -1.44401 7.01964 19.5824 -1.93008 6.69946 19.5824 -1.65567 6.38337 20.6817 -1.24992 6.65065 20.6817 -1.05479 6.29913 21.6005 -1.37976 6.08504 21.6005 -1.12277 5.82091 22.3048 -0.873059 5.98546 22.3048 -1.05479 6.29913 21.6005 -1.24992 6.65065 20.6817 -1.65567 6.38337 20.6817 -1.37976 6.08504 21.6005 -1.62981 5.80669 21.6005 -1.37976 6.08504 21.6005 -1.65567 6.38337 20.6817 -1.96779 6.03588 20.6817 -2.30397 6.2832 19.5824 -1.93008 6.69946 19.5824 -2.18261 7.01688 18.3365 -2.61334 6.53733 18.3365 -2.30397 6.2832 19.5824 -1.96779 6.03588 20.6817 -1.65567 6.38337 20.6817 -1.93008 6.69946 19.5824 -0.269293 7.2892 19.5824 -0.877185 7.22004 19.5824 -0.776741 6.81793 20.6817 -0.269293 6.87567 20.6817 -0.269293 6.47937 21.6005 -0.675752 6.43312 21.6005 -0.581686 6.08844 22.3048 -0.269293 6.124 22.3048 -0.269293 6.47937 21.6005 -0.269293 6.87567 20.6817 -0.776741 6.81793 20.6817 -0.675752 6.43312 21.6005 -1.05479 6.29913 21.6005 -0.675752 6.43312 21.6005 -0.776741 6.81793 20.6817 -1.24992 6.65065 20.6817 -1.44401 7.01964 19.5824 -0.877185 7.22004 19.5824 -0.969614 7.61661 18.3365 -1.62263 7.38574 18.3365 -1.44401 7.01964 19.5824 -1.24992 6.65065 20.6817 -0.776741 6.81793 20.6817 -0.877185 7.22004 19.5824 -1.44401 3.53476 19.5824 -0.877185 3.33436 19.5824 -0.776741 3.5743 20.6817 -1.24992 3.74156 20.6817 -1.05479 3.96891 21.6005 -0.675752 3.83501 21.6005 -0.581686 4.09161 22.3048 -0.873059 4.19435 22.3048 -1.05479 3.96891 21.6005 -1.24992 3.74156 20.6817 -0.776741 3.5743 20.6817 -0.675752 3.83501 21.6005 -0.269293 3.78867 21.6005 -0.675752 3.83501 21.6005 -0.776741 3.5743 20.6817 -0.269293 3.51654 20.6817 -0.269293 3.26521 19.5824 -0.877185 3.33436 19.5824 -0.969614 3.14012 18.3365 -0.269293 3.06045 18.3365 -0.269293 3.26521 19.5824 -0.269293 3.51654 20.6817 -0.776741 3.5743 20.6817 -0.877185 3.33436 19.5824 -2.30397 4.2712 19.5824 -1.93008 3.85494 19.5824 -1.65567 4.00886 20.6817 -1.96779 4.35632 20.6817 -1.62981 4.46134 21.6005 -1.37976 4.18309 21.6005 -1.12277 4.35913 22.3048 -1.31505 4.57285 22.3048 -1.62981 4.46134 21.6005 -1.96779 4.35632 20.6817 -1.65567 4.00886 20.6817 -1.37976 4.18309 21.6005 -1.05479 3.96891 21.6005 -1.37976 4.18309 21.6005 -1.65567 4.00886 20.6817 -1.24992 3.74156 20.6817 -1.44401 3.53476 19.5824 -1.93008 3.85494 19.5824 -2.18261 3.73986 18.3365 -1.62263 3.37099 18.3365 -1.44401 3.53476 19.5824 -1.24992 3.74156 20.6817 -1.65567 4.00886 20.6817 -1.93008 3.85494 19.5824 -2.61873 5.2772 19.5824 -2.53798 4.75662 19.5824 -2.16312 4.76155 20.6817 -2.23054 5.1961 20.6817 -1.84028 5.13402 21.6005 -1.78622 4.78599 21.6005 -1.43516 4.8225 22.3048 -1.47682 5.0899 22.3048 -1.84028 5.13402 21.6005 -2.23054 5.1961 20.6817 -2.16312 4.76155 20.6817 -1.78622 4.78599 21.6005 -1.62981 4.46134 21.6005 -1.78622 4.78599 21.6005 -2.16312 4.76155 20.6817 -1.96779 4.35632 20.6817 -2.30397 4.2712 19.5824 -2.53798 4.75662 19.5824 -2.88293 4.77863 18.3365 -2.61334 4.21941 18.3365 -2.30397 4.2712 19.5824 -1.96779 4.35632 20.6817 -2.16312 4.76155 20.6817 -2.53798 4.75662 19.5824 -2.30397 6.2832 19.5824 -2.53798 5.79778 19.5824 -2.16312 5.63068 20.6817 -1.96779 6.03588 20.6817 -1.62981 5.80669 21.6005 -1.78622 5.48215 21.6005 -1.43516 5.35755 22.3048 -1.31505 5.60695 22.3048 -1.62981 5.80669 21.6005 -1.96779 6.03588 20.6817 -2.16312 5.63068 20.6817 -1.78622 5.48215 21.6005 -1.84028 5.13402 21.6005 -1.78622 5.48215 21.6005 -2.16312 5.63068 20.6817 -2.23054 5.1961 20.6817 -2.61873 5.2772 19.5824 -2.53798 5.79778 19.5824 -2.88293 5.97811 18.3365 -2.97596 5.37837 18.3365 -2.61873 5.2772 19.5824 -2.23054 5.1961 20.6817 -2.16312 5.63068 20.6817 -2.53798 5.79778 19.5824 -0.719175 5.73 22.7607 -0.905089 5.60742 22.7607 -0.732432 5.44562 23.0278 -0.597104 5.53491 23.0276 -0.269293 5.04409 23.3545 -0.361159 5.18058 23.3091 -0.399417 5.15587 23.3091 -1.04851 5.44797 22.7607 -0.905089 5.60742 22.7607 -1.12277 5.82091 22.3048 -1.31505 5.60695 22.3048 -1.04851 5.44797 22.7607 -0.837078 5.3294 23.0276 -0.732432 5.44562 23.0278 -0.905089 5.60742 22.7607 -0.269293 5.83324 22.7607 -0.502011 5.80672 22.7607 -0.438814 5.5908 23.0278 -0.269293 5.61013 23.0276 -0.269293 5.04409 23.3545 -0.316922 5.19665 23.3091 -0.361159 5.18058 23.3091 -0.719175 5.73 22.7607 -0.502011 5.80672 22.7607 -0.581686 6.08844 22.3048 -0.873059 5.98546 22.3048 -0.719175 5.73 22.7607 -0.597104 5.53491 23.0276 -0.438814 5.5908 23.0278 -0.502011 5.80672 22.7607 -0.719176 4.3954 22.7607 -0.502011 4.31917 22.7607 -0.438814 4.50721 23.0278 -0.597104 4.56244 23.0276 -0.269293 5.04409 23.3545 -0.361159 4.90805 23.3091 -0.316922 4.89221 23.3091 -0.269293 4.29217 22.7607 -0.502011 4.31917 22.7607 -0.581686 4.09161 22.3048 -0.269293 4.05581 22.3048 -0.269293 4.29217 22.7607 -0.269293 4.48722 23.0276 -0.438814 4.50721 23.0278 -0.502011 4.31917 22.7607 -1.04851 4.67743 22.7607 -0.905089 4.51846 22.7607 -0.732432 4.65239 23.0278 -0.837078 4.76795 23.0276 -0.269293 5.04409 23.3545 -0.399417 4.933 23.3091 -0.361159 4.90805 23.3091 -0.719176 4.3954 22.7607 -0.905089 4.51846 22.7607 -1.12277 4.35913 22.3048 -0.873059 4.19435 22.3048 -0.719176 4.3954 22.7607 -0.597104 4.56244 23.0276 -0.732432 4.65239 23.0278 -0.905089 4.51846 22.7607 -1.16906 5.0627 22.7607 -1.13781 4.86365 22.7607 -0.901953 4.90383 23.0278 -0.924914 5.04868 23.0276 -0.269293 5.04409 23.3545 -0.453025 5.04432 23.3091 -0.447046 5.00364 23.3091 -1.04851 4.67743 22.7607 -1.13781 4.86365 22.7607 -1.43516 4.8225 22.3048 -1.31505 4.57285 22.3048 -1.04851 4.67743 22.7607 -0.837078 4.76795 23.0276 -0.901953 4.90383 23.0278 -1.13781 4.86365 22.7607 -1.04851 5.44797 22.7607 -1.13781 5.26224 22.7607 -0.901953 5.19418 23.0278 -0.837078 5.3294 23.0276 -0.269293 5.04409 23.3545 -0.447046 5.08522 23.3091 -0.453025 5.04432 23.3091 -1.16906 5.0627 22.7607 -1.13781 5.26224 22.7607 -1.43516 5.35755 22.3048 -1.47682 5.0899 22.3048 -1.16906 5.0627 22.7607 -0.924914 5.04868 23.0276 -0.901953 5.19418 23.0278 -1.13781 5.26224 22.7607 -0.269293 5.04409 23.3545 -0.428409 5.12299 23.3091 -0.447046 5.08522 23.3091 -0.269293 5.04409 23.3545 -0.399417 5.15587 23.3091 -0.428409 5.12299 23.3091 -0.269293 5.04409 23.3545 -0.269293 5.20166 23.3091 -0.316922 5.19665 23.3091 -0.269293 5.04409 23.3545 -0.316922 4.89221 23.3091 -0.269293 4.88697 23.3091 -0.269293 5.04409 23.3545 -0.428409 4.96565 23.3091 -0.399417 4.933 23.3091 -0.269293 5.04409 23.3545 -0.447046 5.00364 23.3091 -0.428409 4.96565 23.3091 -3.28707 6.2605 16.26 -2.97587 6.90593 16.2588 -3.3531 7.40196 12.8946 -3.70641 6.67028 12.9135 -3.28707 6.2605 16.26 -3.70641 6.67028 12.9135 -3.82875 5.88395 12.9365 -3.39449 5.56819 16.2616 -3.2873 4.87503 16.2637 -3.39449 5.56819 16.2616 -3.82875 5.88395 12.9365 -3.70979 5.08526 12.9664 -3.2873 4.87503 16.2637 -3.70979 5.08526 12.9664 -3.36191 4.33671 12.9986 -2.97648 4.22843 16.2659 -2.47973 3.67434 16.2679 -2.97648 4.22843 16.2659 -3.36191 4.33671 12.9986 -2.80396 3.70039 13.0275 -2.47973 3.67434 16.2679 -2.80396 3.70039 13.0275 -2.07096 3.21598 13.0482 -1.8334 3.24848 16.2693 -1.07888 2.98217 16.2699 -1.8334 3.24848 16.2693 -2.07096 3.21598 13.0482 -1.20447 2.9161 13.0572 -1.07888 2.98217 16.2699 -1.20447 2.9161 13.0572 -0.269293 2.81372 13.0589 -0.269293 2.89034 16.27 -1.07794 8.15345 16.2563 -0.269293 8.24548 16.2563 -0.269293 8.9461 12.8583 -1.19085 8.84083 12.8588 -1.07794 8.15345 16.2563 -1.19085 8.84083 12.8588 -2.05015 8.5332 12.8639 -1.83197 7.8866 16.2566 -2.47856 7.46007 16.2575 -1.83197 7.8866 16.2566 -2.05015 8.5332 12.8639 -2.78696 8.03884 12.8769 -2.47856 7.46007 16.2575 -2.78696 8.03884 12.8769 -3.3531 7.40196 12.8946 -2.97587 6.90593 16.2588 -0.989207 3.43933 -13.8161 -1.42447 3.21714 -13.8176 -1.20744 2.90482 -20.5988 -0.859406 3.21004 -20.5988 -0.989207 3.43933 -13.8161 -1.43898 3.45672 -5.81703 -1.42447 3.21714 -13.8176 1.05376 2.64764 -20.5988 0.895949 3.20654 -13.8177 0.668859 2.90482 -20.5988 0.900391 3.45672 -5.81703 0.895949 3.20654 -13.8177 1.40256 2.90142 -13.8218 1.78903 3.14244 -5.83328 -0.269292 3.70063 -13.8162 -0.629249 3.59647 -13.8161 -0.554185 3.55808 -20.5988 -0.269292 3.94298 -20.5988 -0.809651 3.56406 -5.87876 -0.629249 3.59647 -13.8161 -0.269292 3.70063 -13.8162 -0.269293 3.57392 -5.86771 0.450623 3.43933 -13.8161 0.090666 3.59647 -13.8161 0.015603 3.55808 -20.5988 0.320823 3.21004 -20.5988 0.271065 3.56406 -5.87876 0.090666 3.59647 -13.8161 0.450623 3.43933 -13.8161 -1.42447 3.21714 -13.8176 -1.59234 2.64764 -20.5988 -1.20744 2.90482 -20.5988 1.40256 2.90142 -13.8218 0.895949 3.20654 -13.8177 1.05376 2.64764 -20.5988 1.46893 2.4429 -20.5988 -0.17416 9.7007 2.97561 -0.063031 9.79389 3.57443 0.027917 9.74753 3.57442 -0.090942 9.65985 2.97561 0.027917 9.74753 3.57442 0.114578 9.65811 3.57442 -0.090942 9.65985 2.97561 -0.090942 9.65985 2.97561 -0.269291 9.62407 2.56865 -0.17416 9.7007 2.97561 -0.269291 9.72397 2.97561 -0.269291 9.83317 3.57443 -0.160906 9.82714 3.57442 -0.160906 9.82714 3.57442 -0.063031 9.79389 3.57443 -0.17416 9.7007 2.97561 -0.269291 9.72397 2.97561 -0.17416 9.7007 2.97561 -0.269291 9.62407 2.56865 -0.269291 9.72397 2.97561 -0.364422 9.7007 2.97561 -0.475551 9.79389 3.57443 -0.377677 9.82714 3.57442 -0.269291 9.72397 2.97561 -0.377677 9.82714 3.57442 -0.269291 9.83317 3.57443 -0.269291 9.72397 2.97561 -0.269291 9.72397 2.97561 -0.269291 9.62407 2.56865 -0.364422 9.7007 2.97561 -0.44764 9.65985 2.97561 -0.653161 9.65811 3.57442 -0.566499 9.74753 3.57442 -0.566499 9.74753 3.57442 -0.475551 9.79389 3.57443 -0.364422 9.7007 2.97561 -0.44764 9.65985 2.97561 -0.364422 9.7007 2.97561 -0.269291 9.62407 2.56865 -0.44764 9.65985 2.97561 -0.504916 9.59205 2.97561 -0.694471 9.57256 3.57443 -0.653161 9.65811 3.57442 -0.44764 9.65985 2.97561 -0.44764 9.65985 2.97561 -0.269291 9.62407 2.56865 -0.504916 9.59205 2.97561 0.114578 9.65811 3.57442 0.155889 9.57256 3.57443 -0.033666 9.59205 2.97561 -0.090942 9.65985 2.97561 -0.033666 9.59205 2.97561 -0.269291 9.62407 2.56865 -0.090942 9.65985 2.97561 0.445308 9.86444 5.58008 0.23807 10.0152 5.5851 0.43677 10.137 7.23102 0.722034 9.90139 7.28202 0.584461 10.1856 8.95414 0.900608 9.86772 8.92838 0.722034 9.90139 7.28202 0.43677 10.137 7.23102 1.13238 9.54254 8.90074 0.94269 9.64917 7.33663 0.722034 9.90139 7.28202 0.900608 9.86772 8.92838 -0.006322 10.1054 5.59002 -0.269291 10.1355 5.59245 -0.269291 10.3343 7.18831 0.09668 10.2831 7.19939 -0.269291 10.4818 8.97938 0.179731 10.4003 8.97224 0.09668 10.2831 7.19939 -0.269291 10.3343 7.18831 0.584461 10.1856 8.95414 0.43677 10.137 7.23102 0.09668 10.2831 7.19939 0.179731 10.4003 8.97224 -0.532261 10.1054 5.59002 -0.776653 10.0152 5.5851 -0.975352 10.137 7.23102 -0.635263 10.2831 7.19939 -1.12304 10.1856 8.95414 -0.718313 10.4003 8.97224 -0.635263 10.2831 7.19939 -0.975352 10.137 7.23102 -0.269291 10.4818 8.97938 -0.269291 10.3343 7.18831 -0.635263 10.2831 7.19939 -0.718313 10.4003 8.97224 -0.98389 9.86444 5.58008 -1.14303 9.70231 5.57423 -1.48127 9.64917 7.33663 -1.26062 9.90139 7.28202 -1.67096 9.54254 8.90074 -1.43919 9.86772 8.92838 -1.26062 9.90139 7.28202 -1.48127 9.64917 7.33663 -1.12304 10.1856 8.95414 -0.975352 10.137 7.23102 -1.26062 9.90139 7.28202 -1.43919 9.86772 8.92838 -1.24311 9.57795 5.56681 -1.31368 9.47248 5.5586 -1.73328 9.30289 7.4116 -1.62618 9.46017 7.37755 -1.73328 9.30289 7.4116 -1.93409 9.11329 8.85516 -1.82256 9.3058 8.87698 -1.62618 9.46017 7.37755 -1.67096 9.54254 8.90074 -1.48127 9.64917 7.33663 -1.62618 9.46017 7.37755 -1.82256 9.3058 8.87698 0.704531 9.57795 5.56681 0.604443 9.70231 5.57423 0.94269 9.64917 7.33663 1.0876 9.46017 7.37755 1.13238 9.54254 8.90074 1.28398 9.3058 8.87698 1.0876 9.46017 7.37755 0.94269 9.64917 7.33663 1.3955 9.11329 8.85516 1.19469 9.30289 7.4116 1.0876 9.46017 7.37755 1.28398 9.3058 8.87698 0.900608 9.86772 8.92838 0.584461 10.1856 8.95414 0.648838 10.1473 10.2931 0.982814 9.78946 10.2618 0.648838 10.1473 10.2931 0.654627 10.051 11.3227 0.990708 9.68672 11.2909 0.982814 9.78946 10.2618 0.990708 9.68672 11.2909 1.2349 9.30922 11.2581 1.22547 9.42196 10.2292 0.982814 9.78946 10.2618 1.22547 9.42196 10.2292 1.13238 9.54254 8.90074 0.900608 9.86772 8.92838 0.982814 9.78946 10.2618 0.179731 10.4003 8.97224 -0.269291 10.4818 8.97938 -0.269291 10.4819 10.3224 0.214791 10.3896 10.3144 -0.269291 10.4819 10.3224 -0.269291 10.3882 11.3522 0.217843 10.2957 11.3441 0.214791 10.3896 10.3144 0.217843 10.2957 11.3441 0.654627 10.051 11.3227 0.648838 10.1473 10.2931 0.214791 10.3896 10.3144 0.648838 10.1473 10.2931 0.584461 10.1856 8.95414 0.179731 10.4003 8.97224 0.214791 10.3896 10.3144 -0.718313 10.4003 8.97224 -1.12304 10.1856 8.95414 -1.18742 10.1473 10.2931 -0.753374 10.3896 10.3144 -1.18742 10.1473 10.2931 -1.19321 10.051 11.3227 -0.756425 10.2957 11.3441 -0.753374 10.3896 10.3144 -0.756425 10.2957 11.3441 -0.269291 10.3882 11.3522 -0.269291 10.4819 10.3224 -0.753374 10.3896 10.3144 -0.269291 10.4819 10.3224 -0.269291 10.4818 8.97938 -0.718313 10.4003 8.97224 -0.753374 10.3896 10.3144 -1.43919 9.86772 8.92838 -1.67096 9.54254 8.90074 -1.76406 9.42196 10.2292 -1.5214 9.78946 10.2618 -1.76406 9.42196 10.2292 -1.77348 9.30922 11.2581 -1.52929 9.68672 11.2909 -1.5214 9.78946 10.2618 -1.52929 9.68672 11.2909 -1.19321 10.051 11.3227 -1.18742 10.1473 10.2931 -1.5214 9.78946 10.2618 -1.18742 10.1473 10.2931 -1.12304 10.1856 8.95414 -1.43919 9.86772 8.92838 -1.5214 9.78946 10.2618 -1.82256 9.3058 8.87698 -1.93409 9.11329 8.85516 -2.04296 8.92732 10.1823 -1.92415 9.1506 10.2039 -2.04296 8.92732 10.1823 -2.05415 8.76542 11.2126 -1.93458 8.9896 11.231 -1.92415 9.1506 10.2039 -1.93458 8.9896 11.231 -1.77348 9.30922 11.2581 -1.76406 9.42196 10.2292 -1.92415 9.1506 10.2039 -1.76406 9.42196 10.2292 -1.67096 9.54254 8.90074 -1.82256 9.3058 8.87698 -1.92415 9.1506 10.2039 1.28398 9.3058 8.87698 1.13238 9.54254 8.90074 1.22547 9.42196 10.2292 1.38557 9.1506 10.2039 1.22547 9.42196 10.2292 1.2349 9.30922 11.2581 1.396 8.9896 11.231 1.38557 9.1506 10.2039 1.396 8.9896 11.231 1.51556 8.76542 11.2126 1.50438 8.92732 10.1823 1.38557 9.1506 10.2039 1.50438 8.92732 10.1823 1.3955 9.11329 8.85516 1.28398 9.3058 8.87698 1.38557 9.1506 10.2039 0.990708 9.68672 11.2909 0.654627 10.051 11.3227 0.620765 9.90427 12.2691 0.944529 9.55543 12.2386 0.620765 9.90427 12.2691 0.542019 9.71372 13.1525 0.840416 9.39439 13.1245 0.944529 9.55543 12.2386 0.840416 9.39439 13.1245 1.05844 9.06152 13.0952 1.17977 9.19228 12.2069 0.944529 9.55543 12.2386 1.17977 9.19228 12.2069 1.2349 9.30922 11.2581 0.990708 9.68672 11.2909 0.944529 9.55543 12.2386 0.217843 10.2957 11.3441 -0.269291 10.3882 11.3522 -0.269291 10.232 12.2978 0.19999 10.1414 12.2899 -0.269291 10.232 12.2978 -0.269291 10.0175 13.1791 0.157816 9.93294 13.1716 0.19999 10.1414 12.2899 0.157816 9.93294 13.1716 0.542019 9.71372 13.1525 0.620765 9.90427 12.2691 0.19999 10.1414 12.2899 0.620765 9.90427 12.2691 0.654627 10.051 11.3227 0.217843 10.2957 11.3441 0.19999 10.1414 12.2899 -0.756425 10.2957 11.3441 -1.19321 10.051 11.3227 -1.15935 9.90427 12.2691 -0.738572 10.1414 12.2899 -1.15935 9.90427 12.2691 -1.0806 9.71372 13.1525 -0.696398 9.93294 13.1716 -0.738572 10.1414 12.2899 -0.696398 9.93294 13.1716 -0.269291 10.0175 13.1791 -0.269291 10.232 12.2978 -0.738572 10.1414 12.2899 -0.269291 10.232 12.2978 -0.269291 10.3882 11.3522 -0.756425 10.2957 11.3441 -0.738572 10.1414 12.2899 -1.52929 9.68672 11.2909 -1.77348 9.30922 11.2581 -1.71835 9.19228 12.2069 -1.48311 9.55543 12.2386 -1.71835 9.19228 12.2069 -1.59702 9.06152 13.0952 -1.379 9.39439 13.1245 -1.48311 9.55543 12.2386 -1.379 9.39439 13.1245 -1.0806 9.71372 13.1525 -1.15935 9.90427 12.2691 -1.48311 9.55543 12.2386 -1.15935 9.90427 12.2691 -1.19321 10.051 11.3227 -1.52929 9.68672 11.2909 -1.48311 9.55543 12.2386 -1.93458 8.9896 11.231 -2.05415 8.76542 11.2126 -1.98873 8.63121 12.1581 -1.87355 8.85959 12.1779 -1.98873 8.63121 12.1581 -1.84569 8.54389 13.0482 -1.74009 8.73172 13.0656 -1.87355 8.85959 12.1779 -1.74009 8.73172 13.0656 -1.59702 9.06152 13.0952 -1.71835 9.19228 12.2069 -1.87355 8.85959 12.1779 -1.71835 9.19228 12.2069 -1.77348 9.30922 11.2581 -1.93458 8.9896 11.231 -1.87355 8.85959 12.1779 1.396 8.9896 11.231 1.2349 9.30922 11.2581 1.17977 9.19228 12.2069 1.33497 8.85959 12.1779 1.17977 9.19228 12.2069 1.05844 9.06152 13.0952 1.20151 8.73172 13.0656 1.33497 8.85959 12.1779 1.20151 8.73172 13.0656 1.30711 8.54389 13.0482 1.45015 8.63121 12.1581 1.33497 8.85959 12.1779 1.45015 8.63121 12.1581 1.51556 8.76542 11.2126 1.396 8.9896 11.231 1.33497 8.85959 12.1779 0.840416 9.39439 13.1245 0.542019 9.71372 13.1525 0.413152 9.48607 13.9928 0.674505 9.20238 13.968 0.413152 9.48607 13.9928 0.248747 9.21697 14.7736 0.460253 8.98492 14.7533 0.674505 9.20238 13.968 0.460253 8.98492 14.7533 0.62274 8.74272 14.7334 0.869246 8.9073 13.9426 0.674505 9.20238 13.968 0.869246 8.9073 13.9426 1.05844 9.06152 13.0952 0.840416 9.39439 13.1245 0.674505 9.20238 13.968 0.157816 9.93294 13.1716 -0.269291 10.0175 13.1791 -0.269291 9.74882 14.0158 0.087905 9.67674 14.0095 -0.269291 9.74882 14.0158 -0.269291 9.42075 14.7914 -0.00077 9.36657 14.7867 0.087905 9.67674 14.0095 -0.00077 9.36657 14.7867 0.248747 9.21697 14.7736 0.413152 9.48607 13.9928 0.087905 9.67674 14.0095 0.413152 9.48607 13.9928 0.542019 9.71372 13.1525 0.157816 9.93294 13.1716 0.087905 9.67674 14.0095 -0.696398 9.93294 13.1716 -1.0806 9.71372 13.1525 -0.951735 9.48607 13.9928 -0.626487 9.67674 14.0095 -0.951735 9.48607 13.9928 -0.787329 9.21697 14.7736 -0.537813 9.36657 14.7867 -0.626487 9.67674 14.0095 -0.537813 9.36657 14.7867 -0.269291 9.42075 14.7914 -0.269291 9.74882 14.0158 -0.626487 9.67674 14.0095 -0.269291 9.74882 14.0158 -0.269291 10.0175 13.1791 -0.696398 9.93294 13.1716 -0.626487 9.67674 14.0095 -1.379 9.39439 13.1245 -1.59702 9.06152 13.0952 -1.40783 8.9073 13.9426 -1.21309 9.20238 13.968 -1.40783 8.9073 13.9426 -1.16132 8.74272 14.7334 -0.998835 8.98492 14.7533 -1.21309 9.20238 13.968 -0.998835 8.98492 14.7533 -0.787329 9.21697 14.7736 -0.951735 9.48607 13.9928 -1.21309 9.20238 13.968 -0.951735 9.48607 13.9928 -1.0806 9.71372 13.1525 -1.379 9.39439 13.1245 -1.21309 9.20238 13.968 -1.74009 8.73172 13.0656 -1.84569 8.54389 13.0482 -1.62399 8.44506 13.9053 -1.53324 8.63257 13.9199 -1.62399 8.44506 13.9053 -1.33622 8.37974 14.7105 -1.26378 8.54307 14.7197 -1.53324 8.63257 13.9199 -1.26378 8.54307 14.7197 -1.16132 8.74272 14.7334 -1.40783 8.9073 13.9426 -1.53324 8.63257 13.9199 -1.40783 8.9073 13.9426 -1.59702 9.06152 13.0952 -1.74009 8.73172 13.0656 -1.53324 8.63257 13.9199 1.20151 8.73172 13.0656 1.05844 9.06152 13.0952 0.869246 8.9073 13.9426 0.994658 8.63257 13.9199 0.869246 8.9073 13.9426 0.62274 8.74272 14.7334 0.725195 8.54307 14.7197 0.994658 8.63257 13.9199 0.725195 8.54307 14.7197 0.797635 8.37974 14.7105 1.0854 8.44506 13.9053 0.994658 8.63257 13.9199 1.0854 8.44506 13.9053 1.30711 8.54389 13.0482 1.20151 8.73172 13.0656 0.994658 8.63257 13.9199 0.460253 8.98492 14.7533 0.248747 9.21697 14.7736 0.066618 8.89796 15.5255 0.215788 8.74341 15.512 0.066618 8.89796 15.5255 -0.097681 8.61762 15.9709 -0.006637 8.54382 15.9611 0.215788 8.74341 15.512 -0.006637 8.54382 15.9611 0.091435 8.39723 15.9422 0.335281 8.57678 15.4988 0.215788 8.74341 15.512 0.335281 8.57678 15.4988 0.62274 8.74272 14.7334 0.460253 8.98492 14.7533 0.215788 8.74341 15.512 -0.00077 9.36657 14.7867 -0.269291 9.42075 14.7914 -0.269291 9.02404 15.5365 -0.09758 8.99209 15.5337 -0.269291 9.02404 15.5365 -0.269291 8.67403 15.9784 -0.182311 8.66862 15.9776 -0.09758 8.99209 15.5337 -0.182311 8.66862 15.9776 -0.097681 8.61762 15.9709 0.066618 8.89796 15.5255 -0.09758 8.99209 15.5337 0.066618 8.89796 15.5255 0.248747 9.21697 14.7736 -0.00077 9.36657 14.7867 -0.09758 8.99209 15.5337 -0.537813 9.36657 14.7867 -0.787329 9.21697 14.7736 -0.6052 8.89796 15.5255 -0.441002 8.99209 15.5337 -0.6052 8.89796 15.5255 -0.440901 8.61762 15.9709 -0.356271 8.66862 15.9776 -0.441002 8.99209 15.5337 -0.356271 8.66862 15.9776 -0.269291 8.67403 15.9784 -0.269291 9.02404 15.5365 -0.441002 8.99209 15.5337 -0.269291 9.02404 15.5365 -0.269291 9.42075 14.7914 -0.537813 9.36657 14.7867 -0.441002 8.99209 15.5337 -0.998835 8.98492 14.7533 -1.16132 8.74272 14.7334 -0.873863 8.57678 15.4988 -0.754371 8.74341 15.512 -0.873863 8.57678 15.4988 -0.630017 8.39723 15.9422 -0.531945 8.54382 15.9611 -0.754371 8.74341 15.512 -0.531945 8.54382 15.9611 -0.440901 8.61762 15.9709 -0.6052 8.89796 15.5255 -0.754371 8.74341 15.512 -0.6052 8.89796 15.5255 -0.787329 9.21697 14.7736 -0.998835 8.98492 14.7533 -0.754371 8.74341 15.512 -1.26378 8.54307 14.7197 -1.33622 8.37974 14.7105 -1.00203 8.30997 15.4851 -0.949028 8.45358 15.4922 -1.00203 8.30997 15.4851 -0.680711 8.25339 15.9243 -0.630017 8.39723 15.9422 -0.949028 8.45358 15.4922 -0.630017 8.39723 15.9422 -0.873863 8.57678 15.4988 -0.949028 8.45358 15.4922 -0.873863 8.57678 15.4988 -1.16132 8.74272 14.7334 -1.26378 8.54307 14.7197 -0.949028 8.45358 15.4922 0.725195 8.54307 14.7197 0.62274 8.74272 14.7334 0.335281 8.57678 15.4988 0.410446 8.45358 15.4922 0.335281 8.57678 15.4988 0.091435 8.39723 15.9422 0.410446 8.45358 15.4922 0.091435 8.39723 15.9422 0.142128 8.25339 15.9243 0.463446 8.30997 15.4851 0.410446 8.45358 15.4922 0.463446 8.30997 15.4851 0.797635 8.37974 14.7105 0.725195 8.54307 14.7197 0.410446 8.45358 15.4922 -0.006637 8.54382 15.9611 -0.097681 8.61762 15.9709 -0.166024 8.37526 16.1345 -0.166024 8.37526 16.1345 0.091435 8.39723 15.9422 -0.006637 8.54382 15.9611 -0.182311 8.66862 15.9776 -0.269291 8.67403 15.9784 -0.269291 8.36938 16.1726 -0.166024 8.37526 16.1345 -0.097681 8.61762 15.9709 -0.182311 8.66862 15.9776 -0.269291 8.36938 16.1726 -0.356271 8.66862 15.9776 -0.440901 8.61762 15.9709 -0.372559 8.37526 16.1345 -0.269291 8.36938 16.1726 -0.269291 8.36938 16.1726 -0.269291 8.67403 15.9784 -0.356271 8.66862 15.9776 -0.531945 8.54382 15.9611 -0.630017 8.39723 15.9422 -0.372559 8.37526 16.1345 -0.372559 8.37526 16.1345 -0.440901 8.61762 15.9709 -0.531945 8.54382 15.9611 -0.630017 8.39723 15.9422 -0.680711 8.25339 15.9243 -0.41746 8.24827 16.1319 -0.372559 8.37526 16.1345 -0.630017 8.39723 15.9422 -0.41746 8.24827 16.1319 0.091435 8.39723 15.9422 -0.166024 8.37526 16.1345 -0.121122 8.24827 16.1319 -0.269291 8.25183 16.1994 -0.121122 8.24827 16.1319 -0.166024 8.37526 16.1345 -0.269291 8.36938 16.1726 -0.121122 8.24827 16.1319 0.142128 8.25339 15.9243 0.091435 8.39723 15.9422 0.027917 9.74753 3.57442 -0.063031 9.79389 3.57443 0.23807 10.0152 5.5851 0.445308 9.86444 5.58008 0.604443 9.70231 5.57423 0.114578 9.65811 3.57442 0.027917 9.74753 3.57442 0.445308 9.86444 5.58008 -0.160906 9.82714 3.57442 -0.269291 9.83317 3.57443 -0.269291 10.1355 5.59245 -0.006322 10.1054 5.59002 0.23807 10.0152 5.5851 -0.063031 9.79389 3.57443 -0.160906 9.82714 3.57442 -0.006322 10.1054 5.59002 -0.377677 9.82714 3.57442 -0.475551 9.79389 3.57443 -0.776653 10.0152 5.5851 -0.532261 10.1054 5.59002 -0.269291 10.1355 5.59245 -0.269291 9.83317 3.57443 -0.377677 9.82714 3.57442 -0.532261 10.1054 5.59002 -0.566499 9.74753 3.57442 -0.653161 9.65811 3.57442 -1.14303 9.70231 5.57423 -0.98389 9.86444 5.58008 -0.776653 10.0152 5.5851 -0.475551 9.79389 3.57443 -0.566499 9.74753 3.57442 -0.98389 9.86444 5.58008 -0.653161 9.65811 3.57442 -0.694471 9.57256 3.57443 -1.31368 9.47248 5.5586 -1.24311 9.57795 5.56681 -1.14303 9.70231 5.57423 -0.653161 9.65811 3.57442 -1.24311 9.57795 5.56681 0.114578 9.65811 3.57442 0.604443 9.70231 5.57423 0.704531 9.57795 5.56681 0.775094 9.47248 5.5586 0.155889 9.57256 3.57443 0.114578 9.65811 3.57442 0.704531 9.57795 5.56681 -0.269291 8.25183 16.1994 -0.269291 8.36938 16.1726 -0.372559 8.37526 16.1345 -0.41746 8.24827 16.1319 0.722034 9.90139 7.28202 0.94269 9.64917 7.33663 0.604443 9.70231 5.57423 0.445308 9.86444 5.58008 0.09668 10.2831 7.19939 0.43677 10.137 7.23102 0.23807 10.0152 5.5851 -0.006322 10.1054 5.59002 -0.635263 10.2831 7.19939 -0.269291 10.3343 7.18831 -0.269291 10.1355 5.59245 -0.532261 10.1054 5.59002 -1.26062 9.90139 7.28202 -0.975352 10.137 7.23102 -0.776653 10.0152 5.5851 -0.98389 9.86444 5.58008 -1.62618 9.46017 7.37755 -1.48127 9.64917 7.33663 -1.14303 9.70231 5.57423 -1.24311 9.57795 5.56681 1.0876 9.46017 7.37755 1.19469 9.30289 7.4116 0.775094 9.47248 5.5586 0.704531 9.57795 5.56681 20.0574 5.31775 -19.9407 19.7324 5.34387 -18.6082 20.5317 5.31836 -18.9364 23.3708 5.26453 -12.9233 22.1655 5.32056 -15.4761 20.8359 5.36029 -15.429 21.8369 5.32819 -12.8279 22.6394 5.29721 -10.0363 24.2488 5.19388 -10.2966 24.2732 5.2226 -11.0115 22.6003 5.30139 -10.9018 17.3026 5.32068 -18.8744 17.3026 5.25684 -20.2562 9.51733 4.92407 -19.6176 9.49695 5.14502 -18.3267 18.0608 5.4455 -12.0592 17.4479 5.42505 -15.1416 9.12665 5.43604 -14.3008 9.51147 5.74039 -9.56664 19.3235 5.40408 -7.66515 21.6646 5.33954 -9.4841 21.2856 5.36151 -10.7269 18.6929 5.44345 -9.51549 21.8369 5.32819 -12.8279 20.8359 5.36029 -15.429 19.8743 5.38452 -15.2981 20.6987 5.37201 -12.6567 10.2048 5.70862 -3.66434 18.6929 5.44345 -9.51549 18.0608 5.4455 -12.0592 9.51147 5.74039 -9.56664 20.6987 5.37201 -12.6567 19.8743 5.38452 -15.2981 17.4479 5.42505 -15.1416 18.0608 5.4455 -12.0592 21.6646 5.33954 -9.4841 21.832 5.30679 -8.79817 22.6394 5.29721 -10.0363 18.6929 5.44345 -9.51549 21.2856 5.36151 -10.7269 20.6987 5.37201 -12.6567 18.0608 5.4455 -12.0592 10.2048 5.70862 -3.66434 7.53742 5.91071 -2.61878 8.039 5.54669 3.60682 10.4196 5.52289 0.477034 8.15576 5.28772 5.05658 8.22284 5.06958 5.88939 10.7577 5.06995 3.41367 10.6617 5.31207 2.44451 9.51147 5.74039 -9.56664 7.00726 5.86444 -9.19957 7.53742 5.91071 -2.61878 10.2048 5.70862 -3.66434 9.49695 5.14502 -18.3267 9.51733 4.92407 -19.6176 6.14435 4.88574 -19.9109 6.28558 5.2301 -18.1571 9.49695 5.14502 -18.3267 9.12665 5.43604 -14.3008 17.4479 5.42505 -15.1416 17.3026 5.32068 -18.8744 17.3026 5.32068 -18.8744 19.1322 5.33923 -18.9581 19.6587 5.30762 -20.2885 17.3026 5.25684 -20.2562 19.7324 5.34387 -18.6082 20.8359 5.36029 -15.429 22.1655 5.32056 -15.4761 20.5317 5.31836 -18.9364 24.2732 5.2226 -11.0115 23.3708 5.26453 -12.9233 21.8369 5.32819 -12.8279 22.6003 5.30139 -10.9018 24.2488 5.19388 -10.2966 22.6394 5.29721 -10.0363 21.832 5.30679 -8.79817 22.0781 5.17395 -7.96962 20.0728 5.15551 -5.95075 22.0781 5.17395 -7.96962 21.832 5.30679 -8.79817 19.7852 5.35862 -6.6649 21.6646 5.33954 -9.4841 22.6394 5.29721 -10.0363 22.6003 5.30139 -10.9018 21.2856 5.36151 -10.7269 19.7324 5.34387 -18.6082 19.1322 5.33923 -18.9581 19.8743 5.38452 -15.2981 20.8359 5.36029 -15.429 20.6987 5.37201 -12.6567 21.2856 5.36151 -10.7269 22.6003 5.30139 -10.9018 21.8369 5.32819 -12.8279 8.039 5.54669 3.60682 8.15576 5.28772 5.05658 10.6617 5.31207 2.44451 10.4196 5.52289 0.477034 6.55676 5.63257 -14.7915 7.00726 5.86444 -9.19957 9.51147 5.74039 -9.56664 9.12665 5.43604 -14.3008 19.7852 5.35862 -6.6649 21.832 5.30679 -8.79817 21.6646 5.33954 -9.4841 19.3235 5.40408 -7.66515 10.2048 5.70862 -3.66434 10.4196 5.52289 0.477034 19.3235 5.40408 -7.66515 18.6929 5.44345 -9.51549 10.6617 5.31207 2.44451 19.7852 5.35862 -6.6649 19.3235 5.40408 -7.66515 10.4196 5.52289 0.477034 20.0728 5.15551 -5.95075 19.7852 5.35862 -6.6649 10.6617 5.31207 2.44451 10.7577 5.06995 3.41367 9.49695 5.14502 -18.3267 6.28558 5.2301 -18.1571 6.55676 5.63257 -14.7915 9.12665 5.43604 -14.3008 20.0574 5.13867 -19.9407 20.5317 5.1366 -18.9364 19.7324 5.08997 -18.6082 23.3708 5.02936 -12.9233 21.8369 5.01184 -12.8279 20.8359 5.0625 -15.429 22.1655 5.11035 -15.4761 22.6394 4.92316 -10.0363 22.6003 4.95477 -10.9018 24.2732 4.96613 -11.0115 24.2488 4.92719 -10.2966 17.3026 4.9845 -18.8744 9.49695 4.54688 -18.3267 9.51733 4.49707 -19.6176 17.3026 5.0426 -20.2562 18.0608 4.94604 -12.0592 9.51147 4.53198 -9.56664 9.12665 4.5155 -14.3008 17.4479 4.96411 -15.1416 19.3235 4.87624 -7.66515 18.6929 4.91394 -9.51549 21.2856 4.94281 -10.7269 21.6646 4.90512 -9.4841 21.8369 5.01184 -12.8279 20.6987 4.99005 -12.6567 19.8743 5.03223 -15.2981 20.8359 5.0625 -15.429 10.2048 4.57015 -3.66435 9.51147 4.53198 -9.56664 18.0608 4.94604 -12.0592 18.6929 4.91394 -9.51549 20.6987 4.99005 -12.6567 18.0608 4.94604 -12.0592 17.4479 4.96411 -15.1416 19.8743 5.03223 -15.2981 21.6646 4.90512 -9.4841 22.6394 4.92316 -10.0363 21.832 4.88205 -8.79817 18.6929 4.91394 -9.51549 18.0608 4.94604 -12.0592 20.6987 4.99005 -12.6567 21.2856 4.94281 -10.7269 10.2048 4.57015 -3.66435 10.4196 4.57782 0.477036 8.039 4.38147 3.60683 7.16827 4.36734 -2.6096 8.15576 4.38562 5.05658 10.6617 4.59314 2.4445 10.7577 4.61737 3.41367 8.22284 4.55054 5.88939 9.51147 4.53198 -9.56664 10.2048 4.57015 -3.66435 7.16827 4.36734 -2.6096 6.08075 4.35794 -7.8111 9.49695 4.54688 -18.3267 5.63049 4.35669 -18.1408 5.82141 4.30481 -19.9029 9.51733 4.49707 -19.6176 9.49695 4.54688 -18.3267 17.3026 4.9845 -18.8744 17.4479 4.96411 -15.1416 9.12665 4.5155 -14.3008 17.3026 4.9845 -18.8744 17.3026 5.0426 -20.2562 19.6587 5.13281 -20.2885 19.057 5.06226 -18.7681 17.3026 4.9845 -18.8744 19.057 5.06226 -18.7681 19.8743 5.03223 -15.2981 17.4479 4.96411 -15.1416 19.7324 5.08997 -18.6082 19.057 5.06226 -18.7681 19.6587 5.13281 -20.2885 20.0574 5.13867 -19.9407 19.7324 5.08997 -18.6082 20.5317 5.1366 -18.9364 22.1655 5.11035 -15.4761 20.8359 5.0625 -15.429 24.2732 4.96613 -11.0115 22.6003 4.95477 -10.9018 21.8369 5.01184 -12.8279 23.3708 5.02936 -12.9233 24.2488 4.92719 -10.2966 22.0781 4.87817 -7.96962 21.832 4.88205 -8.79817 22.6394 4.92316 -10.0363 20.0728 4.8686 -5.95075 19.7852 4.84931 -6.66489 21.832 4.88205 -8.79817 22.0781 4.87817 -7.96962 21.6646 4.90512 -9.4841 21.2856 4.94281 -10.7269 22.6003 4.95477 -10.9018 22.6394 4.92316 -10.0363 19.057 5.06226 -18.7681 19.7324 5.08997 -18.6082 20.8359 5.0625 -15.429 19.8743 5.03223 -15.2981 20.6987 4.99005 -12.6567 21.8369 5.01184 -12.8279 22.6003 4.95477 -10.9018 21.2856 4.94281 -10.7269 8.039 4.38147 3.60683 10.4196 4.57782 0.477036 10.6617 4.59314 2.4445 8.15576 4.38562 5.05658 5.88348 4.3551 -14.7748 9.12665 4.5155 -14.3008 9.51147 4.53198 -9.56664 6.08075 4.35794 -7.8111 19.7852 4.84931 -6.66489 19.3235 4.87624 -7.66515 21.6646 4.90512 -9.4841 21.832 4.88205 -8.79817 10.2048 4.57015 -3.66435 18.6929 4.91394 -9.51549 19.3235 4.87624 -7.66515 10.4196 4.57782 0.477036 10.6617 4.59314 2.4445 10.4196 4.57782 0.477036 19.3235 4.87624 -7.66515 19.7852 4.84931 -6.66489 20.0728 4.8686 -5.95075 10.7577 4.61737 3.41367 10.6617 4.59314 2.4445 19.7852 4.84931 -6.66489 9.49695 4.54688 -18.3267 9.12665 4.5155 -14.3008 5.88348 4.3551 -14.7748 5.63049 4.35669 -18.1408 20.0574 5.31775 -19.9407 20.0574 5.13867 -19.9407 19.6587 5.13281 -20.2885 19.6587 5.30762 -20.2885 20.5317 5.31836 -18.9364 20.5317 5.1366 -18.9364 20.0574 5.13867 -19.9407 20.0574 5.31775 -19.9407 24.2732 5.2226 -11.0115 24.2732 4.96613 -11.0115 23.3708 5.02936 -12.9233 23.3708 5.26453 -12.9233 20.0728 5.15551 -5.95075 20.0728 4.8686 -5.95075 22.0781 4.87817 -7.96962 22.0781 5.17395 -7.96962 17.3026 5.25684 -20.2562 17.3026 5.0426 -20.2562 9.51733 4.49707 -19.6176 9.51733 4.92407 -19.6176 24.2488 5.19388 -10.2966 24.2488 4.92719 -10.2966 24.2732 4.96613 -11.0115 24.2732 5.2226 -11.0115 9.51733 4.92407 -19.6176 9.51733 4.49707 -19.6176 5.82141 4.30481 -19.9029 6.14435 4.88574 -19.9109 19.6587 5.30762 -20.2885 19.6587 5.13281 -20.2885 17.3026 5.0426 -20.2562 17.3026 5.25684 -20.2562 22.1655 5.32056 -15.4761 22.1655 5.11035 -15.4761 20.5317 5.1366 -18.9364 20.5317 5.31836 -18.9364 23.3708 5.26453 -12.9233 23.3708 5.02936 -12.9233 22.1655 5.11035 -15.4761 22.1655 5.32056 -15.4761 22.0781 5.17395 -7.96962 22.0781 4.87817 -7.96962 24.2488 4.92719 -10.2966 24.2488 5.19388 -10.2966 8.22284 5.06958 5.88939 8.22284 4.55054 5.88939 10.7577 4.61737 3.41367 10.7577 5.06995 3.41367 10.7577 5.06995 3.41367 10.7577 4.61737 3.41367 20.0728 4.8686 -5.95075 20.0728 5.15551 -5.95075 17.3026 5.32068 -18.8744 17.4479 5.42505 -15.1416 19.8743 5.38452 -15.2981 19.1322 5.33923 -18.9581 19.7324 5.34387 -18.6082 20.0574 5.31775 -19.9407 19.6587 5.30762 -20.2885 19.1322 5.33923 -18.9581 -20.592 5.31775 -19.6833 -21.0535 5.31836 -18.673 -20.2502 5.34387 -18.355 -23.8164 5.26453 -12.6245 -22.2812 5.32819 -12.5485 -21.3132 5.36023 -15.1621 -22.6433 5.32056 -15.1924 -23.0486 5.29724 -9.74702 -23.0203 5.30139 -10.6129 -24.6943 5.2226 -10.7014 -24.6611 5.19385 -9.98693 -17.8239 5.32068 -18.6519 -10.0119 5.14502 -18.2031 -10.0486 4.92407 -19.4936 -17.8414 5.25684 -20.0337 -18.4957 5.4455 -11.8277 -9.91559 5.74039 -9.44354 -9.5907 5.43604 -14.1822 -17.9219 5.42505 -14.9176 -19.7026 5.40408 -7.41802 -19.0956 5.44345 -9.27619 -21.7036 5.36151 -10.4546 -22.0667 5.33954 -9.20719 -22.2812 5.32819 -12.5485 -21.1411 5.37201 -12.3918 -20.3502 5.38452 -15.0434 -21.3132 5.36023 -15.1621 -10.5342 5.70862 -3.53294 -9.91559 5.74039 -9.44354 -18.4957 5.4455 -11.8277 -19.0956 5.44345 -9.27619 -21.1411 5.37201 -12.3918 -18.4957 5.4455 -11.8277 -17.9219 5.42505 -14.9176 -20.3502 5.38452 -15.0434 -22.0667 5.33954 -9.20719 -23.0486 5.29724 -9.74702 -22.2256 5.30679 -8.5192 -19.0956 5.44345 -9.27619 -18.4957 5.4455 -11.8277 -21.1411 5.37201 -12.3918 -21.7036 5.36151 -10.4546 -10.5342 5.70862 -3.53294 -10.6964 5.52289 0.610817 -8.27649 5.54669 3.71022 -7.85376 5.91071 -2.52123 -8.37488 5.28772 5.16135 -10.9138 5.31207 2.5812 -10.9974 5.06995 3.55149 -8.43146 5.06958 5.99493 -9.91559 5.74039 -9.44354 -10.5342 5.70862 -3.53294 -7.85376 5.91071 -2.52123 -7.40692 5.86444 -9.1082 -10.0119 5.14502 -18.2031 -6.79871 5.2301 -18.0742 -6.67963 4.88574 -19.8296 -10.0486 4.92407 -19.4936 -10.0119 5.14502 -18.2031 -17.8239 5.32068 -18.6519 -17.9219 5.42505 -14.9176 -9.5907 5.43604 -14.1822 -17.8239 5.32068 -18.6519 -17.8414 5.25684 -20.0337 -20.1978 5.30762 -20.0361 -19.6544 5.33923 -18.7125 -20.2502 5.34387 -18.355 -21.0535 5.31836 -18.673 -22.6433 5.32056 -15.1924 -21.3132 5.36023 -15.1621 -24.6943 5.2226 -10.7014 -23.0203 5.30139 -10.6129 -22.2812 5.32819 -12.5485 -23.8164 5.26453 -12.6245 -24.6611 5.19385 -9.98693 -22.4609 5.17395 -7.68759 -22.2256 5.30679 -8.5192 -23.0486 5.29724 -9.74702 -20.4303 5.15551 -5.69427 -20.1517 5.35861 -6.412 -22.2256 5.30679 -8.5192 -22.4609 5.17395 -7.68759 -22.0667 5.33954 -9.20719 -21.7036 5.36151 -10.4546 -23.0203 5.30139 -10.6129 -23.0486 5.29724 -9.74702 -20.2502 5.34387 -18.355 -21.3132 5.36023 -15.1621 -20.3502 5.38452 -15.0434 -19.6544 5.33923 -18.7125 -21.1411 5.37201 -12.3918 -22.2812 5.32819 -12.5485 -23.0203 5.30139 -10.6129 -21.7036 5.36151 -10.4546 -8.27649 5.54669 3.71022 -10.6964 5.52289 0.610817 -10.9138 5.31207 2.5812 -8.37488 5.28772 5.16135 -7.02722 5.63257 -14.7054 -9.5907 5.43604 -14.1822 -9.91559 5.74039 -9.44354 -7.40692 5.86444 -9.1082 -20.1517 5.35861 -6.412 -19.7026 5.40408 -7.41802 -22.0667 5.33954 -9.20719 -22.2256 5.30679 -8.5192 -10.5342 5.70862 -3.53294 -19.0956 5.44345 -9.27619 -19.7026 5.40408 -7.41802 -10.6964 5.52289 0.610817 -10.9138 5.31207 2.5812 -10.6964 5.52289 0.610817 -19.7026 5.40408 -7.41802 -20.1517 5.35861 -6.412 -20.4303 5.15551 -5.69427 -10.9974 5.06995 3.55149 -10.9138 5.31207 2.5812 -20.1517 5.35861 -6.412 -10.0119 5.14502 -18.2031 -9.5907 5.43604 -14.1822 -7.02722 5.63257 -14.7054 -6.79871 5.2301 -18.0742 -20.592 5.13867 -19.6833 -20.2502 5.08997 -18.355 -21.0535 5.1366 -18.673 -23.8164 5.02936 -12.6245 -22.6433 5.11035 -15.1924 -21.3132 5.0625 -15.1621 -22.2812 5.01184 -12.5485 -23.0486 4.92316 -9.74702 -24.6611 4.92719 -9.98694 -24.6943 4.96613 -10.7014 -23.0203 4.95477 -10.6129 -17.8239 4.9845 -18.6519 -17.8414 5.0426 -20.0337 -10.0486 4.49707 -19.4936 -10.0119 4.54688 -18.2031 -18.4957 4.94604 -11.8277 -17.9219 4.96411 -14.9176 -9.5907 4.5155 -14.1822 -9.91559 4.53198 -9.44354 -19.7026 4.87622 -7.41802 -22.0667 4.90512 -9.20719 -21.7036 4.94281 -10.4546 -19.0956 4.91394 -9.27619 -22.2812 5.01184 -12.5485 -21.3132 5.0625 -15.1621 -20.3502 5.03223 -15.0434 -21.1411 4.99005 -12.3918 -10.5342 4.57015 -3.53294 -19.0956 4.91394 -9.27619 -18.4957 4.94604 -11.8277 -9.91559 4.53198 -9.44354 -21.1411 4.99005 -12.3918 -20.3502 5.03223 -15.0434 -17.9219 4.96411 -14.9176 -18.4957 4.94604 -11.8277 -22.0667 4.90512 -9.20719 -22.2256 4.88205 -8.5192 -23.0486 4.92316 -9.74702 -19.0956 4.91394 -9.27619 -21.7036 4.94281 -10.4546 -21.1411 4.99005 -12.3918 -18.4957 4.94604 -11.8277 -10.5342 4.57015 -3.53294 -7.48462 4.36734 -2.5304 -8.27649 4.38147 3.71022 -10.6964 4.57782 0.610817 -8.37488 4.38562 5.16135 -8.43146 4.55054 5.99493 -10.9974 4.61737 3.55149 -10.9138 4.59314 2.5812 -9.91559 4.53198 -9.44354 -6.42407 4.35794 -7.75662 -7.48462 4.36734 -2.5304 -10.5342 4.57015 -3.53294 -10.0119 4.54688 -18.2031 -10.0486 4.49707 -19.4936 -6.38745 4.30481 -19.8369 -6.18738 4.35669 -18.0893 -10.0119 4.54688 -18.2031 -9.5907 4.5155 -14.1822 -17.9219 4.96411 -14.9176 -17.8239 4.9845 -18.6519 -17.8239 4.9845 -18.6519 -19.5769 5.06226 -18.5234 -20.1978 5.13281 -20.0361 -17.8414 5.0426 -20.0337 -17.8239 4.9845 -18.6519 -17.9219 4.96411 -14.9176 -20.3502 5.03223 -15.0434 -19.5769 5.06226 -18.5234 -20.2502 5.08997 -18.355 -20.592 5.13867 -19.6833 -20.1978 5.13281 -20.0361 -19.5769 5.06226 -18.5234 -20.2502 5.08997 -18.355 -21.3132 5.0625 -15.1621 -22.6433 5.11035 -15.1924 -21.0535 5.1366 -18.673 -24.6943 4.96613 -10.7014 -23.8164 5.02936 -12.6245 -22.2812 5.01184 -12.5485 -23.0203 4.95477 -10.6129 -24.6611 4.92719 -9.98694 -23.0486 4.92316 -9.74702 -22.2256 4.88205 -8.5192 -22.4609 4.87817 -7.6876 -20.4303 4.8686 -5.69427 -22.4609 4.87817 -7.6876 -22.2256 4.88205 -8.5192 -20.1517 4.8493 -6.412 -22.0667 4.90512 -9.20719 -23.0486 4.92316 -9.74702 -23.0203 4.95477 -10.6129 -21.7036 4.94281 -10.4546 -19.5769 5.06226 -18.5234 -20.3502 5.03223 -15.0434 -21.3132 5.0625 -15.1621 -20.2502 5.08997 -18.355 -21.1411 4.99005 -12.3918 -21.7036 4.94281 -10.4546 -23.0203 4.95477 -10.6129 -22.2812 5.01184 -12.5485 -8.27649 4.38147 3.71022 -8.37488 4.38562 5.16135 -10.9138 4.59314 2.5812 -10.6964 4.57782 0.610817 -6.38568 4.3551 -14.7213 -6.42407 4.35794 -7.75662 -9.91559 4.53198 -9.44354 -9.5907 4.5155 -14.1822 -20.1517 4.8493 -6.412 -22.2256 4.88205 -8.5192 -22.0667 4.90512 -9.20719 -19.7026 4.87622 -7.41802 -10.5342 4.57015 -3.53294 -10.6964 4.57782 0.610817 -19.7026 4.87622 -7.41802 -19.0956 4.91394 -9.27619 -10.9138 4.59314 2.5812 -20.1517 4.8493 -6.412 -19.7026 4.87622 -7.41802 -10.6964 4.57782 0.610817 -20.4303 4.8686 -5.69427 -20.1517 4.8493 -6.412 -10.9138 4.59314 2.5812 -10.9974 4.61737 3.55149 -10.0119 4.54688 -18.2031 -6.18738 4.35669 -18.0893 -6.38568 4.3551 -14.7213 -9.5907 4.5155 -14.1822 -20.592 5.31775 -19.6833 -20.1978 5.30762 -20.0361 -20.1978 5.13281 -20.0361 -20.592 5.13867 -19.6833 -21.0535 5.31836 -18.673 -20.592 5.31775 -19.6833 -20.592 5.13867 -19.6833 -21.0535 5.1366 -18.673 -24.6943 5.2226 -10.7014 -23.8164 5.26453 -12.6245 -23.8164 5.02936 -12.6245 -24.6943 4.96613 -10.7014 -20.4303 5.15551 -5.69427 -22.4609 5.17395 -7.68759 -22.4609 4.87817 -7.6876 -20.4303 4.8686 -5.69427 -17.8414 5.25684 -20.0337 -10.0486 4.92407 -19.4936 -10.0486 4.49707 -19.4936 -17.8414 5.0426 -20.0337 -24.6611 5.19385 -9.98693 -24.6943 5.2226 -10.7014 -24.6943 4.96613 -10.7014 -24.6611 4.92719 -9.98694 -10.0486 4.92407 -19.4936 -6.67963 4.88574 -19.8296 -6.38745 4.30481 -19.8369 -10.0486 4.49707 -19.4936 -20.1978 5.30762 -20.0361 -17.8414 5.25684 -20.0337 -17.8414 5.0426 -20.0337 -20.1978 5.13281 -20.0361 -22.6433 5.32056 -15.1924 -21.0535 5.31836 -18.673 -21.0535 5.1366 -18.673 -22.6433 5.11035 -15.1924 -23.8164 5.26453 -12.6245 -22.6433 5.32056 -15.1924 -22.6433 5.11035 -15.1924 -23.8164 5.02936 -12.6245 -22.4609 5.17395 -7.68759 -24.6611 5.19385 -9.98693 -24.6611 4.92719 -9.98694 -22.4609 4.87817 -7.6876 -8.43146 5.06958 5.99493 -10.9974 5.06995 3.55149 -10.9974 4.61737 3.55149 -8.43146 4.55054 5.99493 -10.9974 5.06995 3.55149 -20.4303 5.15551 -5.69427 -20.4303 4.8686 -5.69427 -10.9974 4.61737 3.55149 -17.8239 5.32068 -18.6519 -19.6544 5.33923 -18.7125 -20.3502 5.38452 -15.0434 -17.9219 5.42505 -14.9176 -20.2502 5.34387 -18.355 -19.6544 5.33923 -18.7125 -20.1978 5.30762 -20.0361 -20.592 5.31775 -19.6833 -6.87045 6.17436 -20.5988 -6.78014 6.62838 -20.5988 -5.79744 6.36511 -23.2936 -5.86179 6.04159 -23.2936 -6.78014 6.62838 -20.5988 -6.63134 7.06672 -20.5988 -5.69141 6.67746 -23.2936 -5.79744 6.36511 -23.2936 -6.63134 7.06672 -20.5988 -6.4266 7.4819 -20.5988 -5.54552 6.9733 -23.2936 -5.69141 6.67746 -23.2936 -6.4266 7.4819 -20.5988 -6.16942 7.8668 -20.5988 -5.36226 7.24756 -23.2936 -5.54552 6.9733 -23.2936 -6.16942 7.8668 -20.5988 -5.8642 8.21483 -20.5988 -5.14477 7.49556 -23.2936 -5.36226 7.24756 -23.2936 -5.8642 8.21483 -20.5988 -5.51616 8.52005 -20.5988 -4.89677 7.71305 -23.2936 -5.14477 7.49556 -23.2936 -5.51616 8.52005 -20.5988 -5.13127 8.77724 -20.5988 -4.62251 7.89631 -23.2936 -4.89677 7.71305 -23.2936 -5.13127 8.77724 -20.5988 -4.71609 8.98198 -20.5988 -4.32666 8.0422 -23.2936 -4.62251 7.89631 -23.2936 -4.71609 8.98198 -20.5988 -4.27774 9.13077 -20.5988 -4.01431 8.14823 -23.2936 -4.32666 8.0422 -23.2936 -4.27774 9.13077 -20.5988 -3.82372 9.22108 -20.5988 -3.69079 8.21258 -23.2936 -4.01431 8.14823 -23.2936 -3.82372 9.22108 -20.5988 -3.3618 9.25136 -20.5988 -3.36164 8.23416 -23.2936 -3.69079 8.21258 -23.2936 -3.3618 9.25136 -20.5988 -2.89988 9.22108 -20.5988 -3.03249 8.21258 -23.2936 -3.36164 8.23416 -23.2936 -2.89988 9.22108 -20.5988 -2.44586 9.13077 -20.5988 -2.70898 8.14823 -23.2936 -3.03249 8.21258 -23.2936 -2.44586 9.13077 -20.5988 -2.00751 8.98198 -20.5988 -2.39662 8.0422 -23.2936 -2.70898 8.14823 -23.2936 -2.00751 8.98198 -20.5988 -1.59234 8.77724 -20.5988 -2.10078 7.89631 -23.2936 -2.39662 8.0422 -23.2936 -1.59234 8.77724 -20.5988 -1.20744 8.52005 -20.5988 -1.82652 7.71305 -23.2936 -2.10078 7.89631 -23.2936 -1.20744 8.52005 -20.5988 -0.859405 8.21483 -20.5988 -1.57852 7.49556 -23.2936 -1.82652 7.71305 -23.2936 -0.859405 8.21483 -20.5988 -0.554185 7.8668 -20.5988 -1.36103 7.24756 -23.2936 -1.57852 7.49556 -23.2936 -0.554185 7.8668 -20.5988 -0.269293 7.4819 -20.5988 -1.17777 6.9733 -23.2936 -1.36103 7.24756 -23.2936 -0.269293 7.4819 -20.5988 -0.092263 7.06672 -20.5988 -1.03188 6.67746 -23.2936 -1.17777 6.9733 -23.2936 -0.092263 7.06672 -20.5988 0.056536 6.62838 -20.5988 -0.925849 6.36511 -23.2936 -1.03188 6.67746 -23.2936 0.056536 6.62838 -20.5988 0.146846 6.17436 -20.5988 -0.861497 6.04159 -23.2936 -0.925849 6.36511 -23.2936 0.146846 6.17436 -20.5988 0.177121 5.71244 -20.5988 -0.839924 5.71244 -23.2936 -0.861497 6.04159 -23.2936 0.177121 5.71244 -20.5988 0.146845 5.25051 -20.5988 -0.861497 5.38329 -23.2936 -0.839924 5.71244 -23.2936 0.146845 5.25051 -20.5988 0.056536 4.7965 -20.5988 -0.92585 5.05977 -23.2936 -0.861497 5.38329 -23.2936 0.056536 4.7965 -20.5988 -0.092263 4.35815 -20.5988 -1.03188 4.74742 -23.2936 -0.92585 5.05977 -23.2936 -0.092263 4.35815 -20.5988 -0.269291 3.94298 -20.5988 -1.17777 4.45158 -23.2936 -1.03188 4.74742 -23.2936 -0.269291 3.94298 -20.5988 -0.554185 3.55808 -20.5988 -1.36103 4.17731 -23.2936 -1.17777 4.45158 -23.2936 -0.554185 3.55808 -20.5988 -0.859406 3.21004 -20.5988 -1.57852 3.92931 -23.2936 -1.36103 4.17731 -23.2936 -0.859406 3.21004 -20.5988 -1.20744 2.90482 -20.5988 -1.82652 3.71182 -23.2936 -1.57852 3.92931 -23.2936 -1.20744 2.90482 -20.5988 -1.59234 2.64764 -20.5988 -2.10078 3.52856 -23.2936 -1.82652 3.71182 -23.2936 -1.59234 2.64764 -20.5988 -2.00751 2.4429 -20.5988 -2.39662 3.38267 -23.2936 -2.10078 3.52856 -23.2936 -2.00751 2.4429 -20.5988 -2.44586 2.2941 -20.5988 -2.70898 3.27664 -23.2936 -2.39662 3.38267 -23.2936 -2.44586 2.2941 -20.5988 -2.89988 2.20379 -20.5988 -3.03249 3.21229 -23.2936 -2.70898 3.27664 -23.2936 -2.89988 2.20379 -20.5988 -3.3618 2.17352 -20.5988 -3.36164 3.19072 -23.2936 -3.03249 3.21229 -23.2936 -3.3618 2.17352 -20.5988 -3.82372 2.20379 -20.5988 -3.69079 3.21229 -23.2936 -3.36164 3.19072 -23.2936 -3.82372 2.20379 -20.5988 -4.27774 2.2941 -20.5988 -4.01431 3.27664 -23.2936 -3.69079 3.21229 -23.2936 -4.27774 2.2941 -20.5988 -4.71609 2.4429 -20.5988 -4.32666 3.38267 -23.2936 -4.01431 3.27664 -23.2936 -4.71609 2.4429 -20.5988 -5.13126 2.64764 -20.5988 -4.6225 3.52856 -23.2936 -4.32666 3.38267 -23.2936 -5.13126 2.64764 -20.5988 -5.51616 2.90482 -20.5988 -4.89677 3.71182 -23.2936 -4.6225 3.52856 -23.2936 -5.51616 2.90482 -20.5988 -5.8642 3.21004 -20.5988 -5.14477 3.92931 -23.2936 -4.89677 3.71182 -23.2936 -5.8642 3.21004 -20.5988 -6.16942 3.55808 -20.5988 -5.36226 4.17731 -23.2936 -5.14477 3.92931 -23.2936 -6.16942 3.55808 -20.5988 -6.4266 3.94298 -20.5988 -5.54552 4.45158 -23.2936 -5.36226 4.17731 -23.2936 -6.4266 3.94298 -20.5988 -6.63134 4.35815 -20.5988 -5.69141 4.74742 -23.2936 -5.54552 4.45158 -23.2936 -6.63134 4.35815 -20.5988 -6.78014 4.7965 -20.5988 -5.79744 5.05977 -23.2936 -5.69141 4.74742 -23.2936 -6.78014 4.7965 -20.5988 -6.87045 5.25051 -20.5988 -5.86179 5.38329 -23.2936 -5.79744 5.05977 -23.2936 -6.87045 5.25051 -20.5988 -6.90072 5.71244 -20.5988 -5.88336 5.71244 -23.2936 -5.86179 5.38329 -23.2936 -6.90072 5.71244 -20.5988 -6.87045 6.17436 -20.5988 -5.86179 6.04159 -23.2936 -5.88336 5.71244 -23.2936 -5.86179 6.04159 -23.2936 -5.79744 6.36511 -23.2936 -5.51387 6.28908 -20.0488 -5.57073 6.00325 -20.0488 -5.79744 6.36511 -23.2936 -5.69141 6.67746 -23.2936 -5.4202 6.56505 -20.0488 -5.51387 6.28908 -20.0488 -5.69141 6.67746 -23.2936 -5.54552 6.9733 -23.2936 -5.2913 6.82643 -20.0488 -5.4202 6.56505 -20.0488 -5.54552 6.9733 -23.2936 -5.36226 7.24756 -23.2936 -5.12938 7.06875 -20.0488 -5.2913 6.82643 -20.0488 -5.36226 7.24756 -23.2936 -5.14477 7.49556 -23.2936 -4.93723 7.28786 -20.0488 -5.12938 7.06875 -20.0488 -5.14477 7.49556 -23.2936 -4.89677 7.71305 -23.2936 -4.71812 7.48002 -20.0488 -4.93723 7.28786 -20.0488 -4.89677 7.71305 -23.2936 -4.62251 7.89631 -23.2936 -4.4758 7.64193 -20.0488 -4.71812 7.48002 -20.0488 -4.62251 7.89631 -23.2936 -4.32666 8.0422 -23.2936 -4.21442 7.77083 -20.0488 -4.4758 7.64193 -20.0488 -4.32666 8.0422 -23.2936 -4.01431 8.14823 -23.2936 -3.93845 7.86451 -20.0488 -4.21442 7.77083 -20.0488 -4.01431 8.14823 -23.2936 -3.69079 8.21258 -23.2936 -3.65261 7.92136 -20.0488 -3.93845 7.86451 -20.0488 -3.69079 8.21258 -23.2936 -3.36164 8.23416 -23.2936 -3.3618 7.94042 -20.0488 -3.65261 7.92136 -20.0488 -3.36164 8.23416 -23.2936 -3.03249 8.21258 -23.2936 -3.07099 7.92136 -20.0488 -3.3618 7.94042 -20.0488 -3.03249 8.21258 -23.2936 -2.70898 8.14823 -23.2936 -2.78516 7.86451 -20.0488 -3.07099 7.92136 -20.0488 -2.70898 8.14823 -23.2936 -2.39662 8.0422 -23.2936 -2.50919 7.77083 -20.0488 -2.78516 7.86451 -20.0488 -2.39662 8.0422 -23.2936 -2.10078 7.89631 -23.2936 -2.24781 7.64193 -20.0488 -2.50919 7.77083 -20.0488 -2.10078 7.89631 -23.2936 -1.82652 7.71305 -23.2936 -2.00549 7.48002 -20.0488 -2.24781 7.64193 -20.0488 -1.82652 7.71305 -23.2936 -1.57852 7.49556 -23.2936 -1.78638 7.28786 -20.0488 -2.00549 7.48002 -20.0488 -1.57852 7.49556 -23.2936 -1.36103 7.24756 -23.2936 -1.59422 7.06875 -20.0488 -1.78638 7.28786 -20.0488 -1.36103 7.24756 -23.2936 -1.17777 6.9733 -23.2936 -1.43231 6.82643 -20.0488 -1.59422 7.06875 -20.0488 -1.17777 6.9733 -23.2936 -1.03188 6.67746 -23.2936 -1.30341 6.56505 -20.0488 -1.43231 6.82643 -20.0488 -1.03188 6.67746 -23.2936 -0.925849 6.36511 -23.2936 -1.20973 6.28908 -20.0488 -1.30341 6.56505 -20.0488 -0.925849 6.36511 -23.2936 -0.861497 6.04159 -23.2936 -1.15287 6.00325 -20.0488 -1.20973 6.28908 -20.0488 -0.861497 6.04159 -23.2936 -0.839924 5.71244 -23.2936 -1.13381 5.71244 -20.0488 -1.15287 6.00325 -20.0488 -0.839924 5.71244 -23.2936 -0.861497 5.38329 -23.2936 -1.15287 5.42163 -20.0488 -1.13381 5.71244 -20.0488 -0.861497 5.38329 -23.2936 -0.92585 5.05977 -23.2936 -1.20973 5.13579 -20.0488 -1.15287 5.42163 -20.0488 -0.92585 5.05977 -23.2936 -1.03188 4.74742 -23.2936 -1.30341 4.85982 -20.0488 -1.20973 5.13579 -20.0488 -1.03188 4.74742 -23.2936 -1.17777 4.45158 -23.2936 -1.43231 4.59844 -20.0488 -1.30341 4.85982 -20.0488 -1.17777 4.45158 -23.2936 -1.36103 4.17731 -23.2936 -1.59422 4.35612 -20.0488 -1.43231 4.59844 -20.0488 -1.36103 4.17731 -23.2936 -1.57852 3.92931 -23.2936 -1.78638 4.13701 -20.0488 -1.59422 4.35612 -20.0488 -1.57852 3.92931 -23.2936 -1.82652 3.71182 -23.2936 -2.00549 3.94485 -20.0488 -1.78638 4.13701 -20.0488 -1.82652 3.71182 -23.2936 -2.10078 3.52856 -23.2936 -2.24781 3.78294 -20.0488 -2.00549 3.94485 -20.0488 -2.10078 3.52856 -23.2936 -2.39662 3.38267 -23.2936 -2.50919 3.65404 -20.0488 -2.24781 3.78294 -20.0488 -2.39662 3.38267 -23.2936 -2.70898 3.27664 -23.2936 -2.78516 3.56037 -20.0488 -2.50919 3.65404 -20.0488 -2.70898 3.27664 -23.2936 -3.03249 3.21229 -23.2936 -3.07099 3.50351 -20.0488 -2.78516 3.56037 -20.0488 -3.03249 3.21229 -23.2936 -3.36164 3.19072 -23.2936 -3.3618 3.48445 -20.0488 -3.07099 3.50351 -20.0488 -3.36164 3.19072 -23.2936 -3.69079 3.21229 -23.2936 -3.65261 3.50351 -20.0488 -3.3618 3.48445 -20.0488 -3.69079 3.21229 -23.2936 -4.01431 3.27664 -23.2936 -3.93845 3.56037 -20.0488 -3.65261 3.50351 -20.0488 -4.01431 3.27664 -23.2936 -4.32666 3.38267 -23.2936 -4.21442 3.65405 -20.0488 -3.93845 3.56037 -20.0488 -4.32666 3.38267 -23.2936 -4.6225 3.52856 -23.2936 -4.47579 3.78294 -20.0488 -4.21442 3.65405 -20.0488 -4.6225 3.52856 -23.2936 -4.89677 3.71182 -23.2936 -4.71811 3.94485 -20.0488 -4.47579 3.78294 -20.0488 -4.89677 3.71182 -23.2936 -5.14477 3.92931 -23.2936 -4.93723 4.13701 -20.0488 -4.71811 3.94485 -20.0488 -5.14477 3.92931 -23.2936 -5.36226 4.17731 -23.2936 -5.12938 4.35612 -20.0488 -4.93723 4.13701 -20.0488 -5.36226 4.17731 -23.2936 -5.54552 4.45158 -23.2936 -5.2913 4.59844 -20.0488 -5.12938 4.35612 -20.0488 -5.54552 4.45158 -23.2936 -5.69141 4.74742 -23.2936 -5.42019 4.85982 -20.0488 -5.2913 4.59844 -20.0488 -5.69141 4.74742 -23.2936 -5.79744 5.05977 -23.2936 -5.51387 5.13579 -20.0488 -5.42019 4.85982 -20.0488 -5.79744 5.05977 -23.2936 -5.86179 5.38329 -23.2936 -5.57073 5.42163 -20.0488 -5.51387 5.13579 -20.0488 -5.86179 5.38329 -23.2936 -5.88336 5.71244 -23.2936 -5.58979 5.71244 -20.0488 -5.57073 5.42163 -20.0488 -5.88336 5.71244 -23.2936 -5.86179 6.04159 -23.2936 -5.57073 6.00325 -20.0488 -5.58979 5.71244 -20.0488 -5.57073 6.00325 -20.0488 -5.51387 6.28908 -20.0488 -3.3618 5.71244 -20.0488 -5.51387 6.28908 -20.0488 -5.4202 6.56505 -20.0488 -3.3618 5.71244 -20.0488 -5.4202 6.56505 -20.0488 -5.2913 6.82643 -20.0488 -3.3618 5.71244 -20.0488 -5.2913 6.82643 -20.0488 -5.12938 7.06875 -20.0488 -3.3618 5.71244 -20.0488 -5.12938 7.06875 -20.0488 -4.93723 7.28786 -20.0488 -3.3618 5.71244 -20.0488 -4.93723 7.28786 -20.0488 -4.71812 7.48002 -20.0488 -3.3618 5.71244 -20.0488 -4.71812 7.48002 -20.0488 -4.4758 7.64193 -20.0488 -3.3618 5.71244 -20.0488 -4.4758 7.64193 -20.0488 -4.21442 7.77083 -20.0488 -3.3618 5.71244 -20.0488 -4.21442 7.77083 -20.0488 -3.93845 7.86451 -20.0488 -3.3618 5.71244 -20.0488 -3.93845 7.86451 -20.0488 -3.65261 7.92136 -20.0488 -3.3618 5.71244 -20.0488 -3.65261 7.92136 -20.0488 -3.3618 7.94042 -20.0488 -3.3618 5.71244 -20.0488 -3.3618 7.94042 -20.0488 -3.07099 7.92136 -20.0488 -3.3618 5.71244 -20.0488 -3.07099 7.92136 -20.0488 -2.78516 7.86451 -20.0488 -3.3618 5.71244 -20.0488 -2.78516 7.86451 -20.0488 -2.50919 7.77083 -20.0488 -3.3618 5.71244 -20.0488 -2.50919 7.77083 -20.0488 -2.24781 7.64193 -20.0488 -3.3618 5.71244 -20.0488 -2.24781 7.64193 -20.0488 -2.00549 7.48002 -20.0488 -3.3618 5.71244 -20.0488 -2.00549 7.48002 -20.0488 -1.78638 7.28786 -20.0488 -3.3618 5.71244 -20.0488 -1.78638 7.28786 -20.0488 -1.59422 7.06875 -20.0488 -3.3618 5.71244 -20.0488 -1.59422 7.06875 -20.0488 -1.43231 6.82643 -20.0488 -3.3618 5.71244 -20.0488 -1.43231 6.82643 -20.0488 -1.30341 6.56505 -20.0488 -3.3618 5.71244 -20.0488 -1.30341 6.56505 -20.0488 -1.20973 6.28908 -20.0488 -3.3618 5.71244 -20.0488 -1.20973 6.28908 -20.0488 -1.15287 6.00325 -20.0488 -3.3618 5.71244 -20.0488 -1.15287 6.00325 -20.0488 -1.13381 5.71244 -20.0488 -3.3618 5.71244 -20.0488 -1.13381 5.71244 -20.0488 -1.15287 5.42163 -20.0488 -3.3618 5.71244 -20.0488 -1.15287 5.42163 -20.0488 -1.20973 5.13579 -20.0488 -3.3618 5.71244 -20.0488 -1.20973 5.13579 -20.0488 -1.30341 4.85982 -20.0488 -3.3618 5.71244 -20.0488 -1.30341 4.85982 -20.0488 -1.43231 4.59844 -20.0488 -3.3618 5.71244 -20.0488 -1.43231 4.59844 -20.0488 -1.59422 4.35612 -20.0488 -3.3618 5.71244 -20.0488 -1.59422 4.35612 -20.0488 -1.78638 4.13701 -20.0488 -3.3618 5.71244 -20.0488 -1.78638 4.13701 -20.0488 -2.00549 3.94485 -20.0488 -3.3618 5.71244 -20.0488 -2.00549 3.94485 -20.0488 -2.24781 3.78294 -20.0488 -3.3618 5.71244 -20.0488 -2.24781 3.78294 -20.0488 -2.50919 3.65404 -20.0488 -3.3618 5.71244 -20.0488 -2.50919 3.65404 -20.0488 -2.78516 3.56037 -20.0488 -3.3618 5.71244 -20.0488 -2.78516 3.56037 -20.0488 -3.07099 3.50351 -20.0488 -3.3618 5.71244 -20.0488 -3.07099 3.50351 -20.0488 -3.3618 3.48445 -20.0488 -3.3618 5.71244 -20.0488 -3.3618 3.48445 -20.0488 -3.65261 3.50351 -20.0488 -3.3618 5.71244 -20.0488 -3.65261 3.50351 -20.0488 -3.93845 3.56037 -20.0488 -3.3618 5.71244 -20.0488 -3.93845 3.56037 -20.0488 -4.21442 3.65405 -20.0488 -3.3618 5.71244 -20.0488 -4.21442 3.65405 -20.0488 -4.47579 3.78294 -20.0488 -3.3618 5.71244 -20.0488 -4.47579 3.78294 -20.0488 -4.71811 3.94485 -20.0488 -3.3618 5.71244 -20.0488 -4.71811 3.94485 -20.0488 -4.93723 4.13701 -20.0488 -3.3618 5.71244 -20.0488 -4.93723 4.13701 -20.0488 -5.12938 4.35612 -20.0488 -3.3618 5.71244 -20.0488 -5.12938 4.35612 -20.0488 -5.2913 4.59844 -20.0488 -3.3618 5.71244 -20.0488 -5.2913 4.59844 -20.0488 -5.42019 4.85982 -20.0488 -3.3618 5.71244 -20.0488 -5.42019 4.85982 -20.0488 -5.51387 5.13579 -20.0488 -3.3618 5.71244 -20.0488 -5.51387 5.13579 -20.0488 -5.57073 5.42163 -20.0488 -3.3618 5.71244 -20.0488 -5.57073 5.42163 -20.0488 -5.58979 5.71244 -20.0488 -3.3618 5.71244 -20.0488 -5.58979 5.71244 -20.0488 -5.57073 6.00325 -20.0488 -3.3618 5.71244 -20.0488 -0.685431 6.17436 -20.5988 -0.595121 6.62838 -20.5988 0.387579 6.36511 -23.2936 0.323228 6.04159 -23.2936 -0.595121 6.62838 -20.5988 -0.446323 7.06672 -20.5988 0.493608 6.67746 -23.2936 0.387579 6.36511 -23.2936 -0.446323 7.06672 -20.5988 -0.269293 7.4819 -20.5988 0.6395 6.9733 -23.2936 0.493608 6.67746 -23.2936 -0.269293 7.4819 -20.5988 0.015599 7.8668 -20.5988 0.822759 7.24756 -23.2936 0.6395 6.9733 -23.2936 0.015599 7.8668 -20.5988 0.320819 8.21483 -20.5988 1.04025 7.49556 -23.2936 0.822759 7.24756 -23.2936 0.320819 8.21483 -20.5988 0.668856 8.52005 -20.5988 1.28825 7.71305 -23.2936 1.04025 7.49556 -23.2936 0.668856 8.52005 -20.5988 1.05376 8.77724 -20.5988 1.56251 7.89631 -23.2936 1.28825 7.71305 -23.2936 1.05376 8.77724 -20.5988 1.46893 8.98198 -20.5988 1.85835 8.0422 -23.2936 1.56251 7.89631 -23.2936 1.46893 8.98198 -20.5988 1.90728 9.13077 -20.5988 2.17071 8.14823 -23.2936 1.85835 8.0422 -23.2936 1.90728 9.13077 -20.5988 2.36129 9.22108 -20.5988 2.49422 8.21258 -23.2936 2.17071 8.14823 -23.2936 2.36129 9.22108 -20.5988 2.82322 9.25136 -20.5988 2.82337 8.23416 -23.2936 2.49422 8.21258 -23.2936 2.82322 9.25136 -20.5988 3.28514 9.22108 -20.5988 3.15253 8.21258 -23.2936 2.82337 8.23416 -23.2936 3.28514 9.22108 -20.5988 3.73916 9.13077 -20.5988 3.47604 8.14823 -23.2936 3.15253 8.21258 -23.2936 3.73916 9.13077 -20.5988 4.17751 8.98198 -20.5988 3.7884 8.0422 -23.2936 3.47604 8.14823 -23.2936 4.17751 8.98198 -20.5988 4.59268 8.77724 -20.5988 4.08424 7.89631 -23.2936 3.7884 8.0422 -23.2936 4.59268 8.77724 -20.5988 4.97758 8.52005 -20.5988 4.3585 7.71305 -23.2936 4.08424 7.89631 -23.2936 4.97758 8.52005 -20.5988 5.32561 8.21483 -20.5988 4.6065 7.49556 -23.2936 4.3585 7.71305 -23.2936 5.32561 8.21483 -20.5988 5.63084 7.8668 -20.5988 4.82399 7.24756 -23.2936 4.6065 7.49556 -23.2936 5.63084 7.8668 -20.5988 5.88802 7.4819 -20.5988 5.00725 6.9733 -23.2936 4.82399 7.24756 -23.2936 5.88802 7.4819 -20.5988 6.09276 7.06672 -20.5988 5.15314 6.67746 -23.2936 5.00725 6.9733 -23.2936 6.09276 7.06672 -20.5988 6.24156 6.62838 -20.5988 5.25917 6.36511 -23.2936 5.15314 6.67746 -23.2936 6.24156 6.62838 -20.5988 6.33186 6.17436 -20.5988 5.32352 6.04159 -23.2936 5.25917 6.36511 -23.2936 6.33186 6.17436 -20.5988 6.36214 5.71244 -20.5988 5.3451 5.71244 -23.2936 5.32352 6.04159 -23.2936 6.36214 5.71244 -20.5988 6.33186 5.25051 -20.5988 5.32352 5.38329 -23.2936 5.3451 5.71244 -23.2936 6.33186 5.25051 -20.5988 6.24156 4.7965 -20.5988 5.25917 5.05977 -23.2936 5.32352 5.38329 -23.2936 6.24156 4.7965 -20.5988 6.09276 4.35815 -20.5988 5.15314 4.74742 -23.2936 5.25917 5.05977 -23.2936 6.09276 4.35815 -20.5988 5.88801 3.94298 -20.5988 5.00725 4.45158 -23.2936 5.15314 4.74742 -23.2936 5.88801 3.94298 -20.5988 5.63083 3.55808 -20.5988 4.82399 4.17731 -23.2936 5.00725 4.45158 -23.2936 5.63083 3.55808 -20.5988 5.32561 3.21004 -20.5988 4.6065 3.92931 -23.2936 4.82399 4.17731 -23.2936 5.32561 3.21004 -20.5988 4.97758 2.90482 -20.5988 4.3585 3.71182 -23.2936 4.6065 3.92931 -23.2936 4.97758 2.90482 -20.5988 4.59268 2.64764 -20.5988 4.08424 3.52856 -23.2936 4.3585 3.71182 -23.2936 4.59268 2.64764 -20.5988 4.17751 2.4429 -20.5988 3.7884 3.38267 -23.2936 4.08424 3.52856 -23.2936 4.17751 2.4429 -20.5988 3.73916 2.2941 -20.5988 3.47604 3.27664 -23.2936 3.7884 3.38267 -23.2936 3.73916 2.2941 -20.5988 3.28514 2.20379 -20.5988 3.15253 3.21229 -23.2936 3.47604 3.27664 -23.2936 3.28514 2.20379 -20.5988 2.82322 2.17352 -20.5988 2.82337 3.19072 -23.2936 3.15253 3.21229 -23.2936 2.82322 2.17352 -20.5988 2.3613 2.20379 -20.5988 2.49423 3.21229 -23.2936 2.82337 3.19072 -23.2936 2.3613 2.20379 -20.5988 1.90728 2.2941 -20.5988 2.17071 3.27664 -23.2936 2.49423 3.21229 -23.2936 1.90728 2.2941 -20.5988 1.46893 2.4429 -20.5988 1.85836 3.38267 -23.2936 2.17071 3.27664 -23.2936 1.46893 2.4429 -20.5988 1.05376 2.64764 -20.5988 1.56252 3.52856 -23.2936 1.85836 3.38267 -23.2936 1.05376 2.64764 -20.5988 0.668859 2.90482 -20.5988 1.28825 3.71182 -23.2936 1.56252 3.52856 -23.2936 0.668859 2.90482 -20.5988 0.320823 3.21004 -20.5988 1.04025 3.92931 -23.2936 1.28825 3.71182 -23.2936 0.320823 3.21004 -20.5988 0.015603 3.55808 -20.5988 0.822761 4.17731 -23.2936 1.04025 3.92931 -23.2936 0.015603 3.55808 -20.5988 -0.269291 3.94298 -20.5988 0.639503 4.45158 -23.2936 0.822761 4.17731 -23.2936 -0.269291 3.94298 -20.5988 -0.446319 4.35815 -20.5988 0.493611 4.74742 -23.2936 0.639503 4.45158 -23.2936 -0.446319 4.35815 -20.5988 -0.595117 4.7965 -20.5988 0.387582 5.05977 -23.2936 0.493611 4.74742 -23.2936 -0.595117 4.7965 -20.5988 -0.685427 5.25051 -20.5988 0.323231 5.38329 -23.2936 0.387582 5.05977 -23.2936 -0.685427 5.25051 -20.5988 -0.715703 5.71244 -20.5988 0.301657 5.71244 -23.2936 0.323231 5.38329 -23.2936 -0.715703 5.71244 -20.5988 -0.685431 6.17436 -20.5988 0.323228 6.04159 -23.2936 0.301657 5.71244 -23.2936 0.323228 6.04159 -23.2936 0.387579 6.36511 -23.2936 0.671146 6.28908 -20.0488 0.614289 6.00325 -20.0488 0.387579 6.36511 -23.2936 0.493608 6.67746 -23.2936 0.764824 6.56505 -20.0488 0.671146 6.28908 -20.0488 0.493608 6.67746 -23.2936 0.6395 6.9733 -23.2936 0.893723 6.82643 -20.0488 0.764824 6.56505 -20.0488 0.6395 6.9733 -23.2936 0.822759 7.24756 -23.2936 1.05563 7.06875 -20.0488 0.893723 6.82643 -20.0488 0.822759 7.24756 -23.2936 1.04025 7.49556 -23.2936 1.24779 7.28786 -20.0488 1.05563 7.06875 -20.0488 1.04025 7.49556 -23.2936 1.28825 7.71305 -23.2936 1.4669 7.48002 -20.0488 1.24779 7.28786 -20.0488 1.28825 7.71305 -23.2936 1.56251 7.89631 -23.2936 1.70922 7.64193 -20.0488 1.4669 7.48002 -20.0488 1.56251 7.89631 -23.2936 1.85835 8.0422 -23.2936 1.9706 7.77083 -20.0488 1.70922 7.64193 -20.0488 1.85835 8.0422 -23.2936 2.17071 8.14823 -23.2936 2.24657 7.86451 -20.0488 1.9706 7.77083 -20.0488 2.17071 8.14823 -23.2936 2.49422 8.21258 -23.2936 2.53241 7.92136 -20.0488 2.24657 7.86451 -20.0488 2.49422 8.21258 -23.2936 2.82337 8.23416 -23.2936 2.82322 7.94042 -20.0488 2.53241 7.92136 -20.0488 2.82337 8.23416 -23.2936 3.15253 8.21258 -23.2936 3.11403 7.92136 -20.0488 2.82322 7.94042 -20.0488 3.15253 8.21258 -23.2936 3.47604 8.14823 -23.2936 3.39986 7.86451 -20.0488 3.11403 7.92136 -20.0488 3.47604 8.14823 -23.2936 3.7884 8.0422 -23.2936 3.67583 7.77083 -20.0488 3.39986 7.86451 -20.0488 3.7884 8.0422 -23.2936 4.08424 7.89631 -23.2936 3.93721 7.64193 -20.0488 3.67583 7.77083 -20.0488 4.08424 7.89631 -23.2936 4.3585 7.71305 -23.2936 4.17953 7.48002 -20.0488 3.93721 7.64193 -20.0488 4.3585 7.71305 -23.2936 4.6065 7.49556 -23.2936 4.39864 7.28786 -20.0488 4.17953 7.48002 -20.0488 4.6065 7.49556 -23.2936 4.82399 7.24756 -23.2936 4.5908 7.06875 -20.0488 4.39864 7.28786 -20.0488 4.82399 7.24756 -23.2936 5.00725 6.9733 -23.2936 4.75271 6.82643 -20.0488 4.5908 7.06875 -20.0488 5.00725 6.9733 -23.2936 5.15314 6.67746 -23.2936 4.88161 6.56505 -20.0488 4.75271 6.82643 -20.0488 5.15314 6.67746 -23.2936 5.25917 6.36511 -23.2936 4.97529 6.28908 -20.0488 4.88161 6.56505 -20.0488 5.25917 6.36511 -23.2936 5.32352 6.04159 -23.2936 5.03215 6.00325 -20.0488 4.97529 6.28908 -20.0488 5.32352 6.04159 -23.2936 5.3451 5.71244 -23.2936 5.05121 5.71244 -20.0488 5.03215 6.00325 -20.0488 5.3451 5.71244 -23.2936 5.32352 5.38329 -23.2936 5.03215 5.42163 -20.0488 5.05121 5.71244 -20.0488 5.32352 5.38329 -23.2936 5.25917 5.05977 -23.2936 4.97529 5.13579 -20.0488 5.03215 5.42163 -20.0488 5.25917 5.05977 -23.2936 5.15314 4.74742 -23.2936 4.88161 4.85982 -20.0488 4.97529 5.13579 -20.0488 5.15314 4.74742 -23.2936 5.00725 4.45158 -23.2936 4.75271 4.59844 -20.0488 4.88161 4.85982 -20.0488 5.00725 4.45158 -23.2936 4.82399 4.17731 -23.2936 4.5908 4.35612 -20.0488 4.75271 4.59844 -20.0488 4.82399 4.17731 -23.2936 4.6065 3.92931 -23.2936 4.39864 4.13701 -20.0488 4.5908 4.35612 -20.0488 4.6065 3.92931 -23.2936 4.3585 3.71182 -23.2936 4.17953 3.94485 -20.0488 4.39864 4.13701 -20.0488 4.3585 3.71182 -23.2936 4.08424 3.52856 -23.2936 3.93721 3.78294 -20.0488 4.17953 3.94485 -20.0488 4.08424 3.52856 -23.2936 3.7884 3.38267 -23.2936 3.67583 3.65404 -20.0488 3.93721 3.78294 -20.0488 3.7884 3.38267 -23.2936 3.47604 3.27664 -23.2936 3.39986 3.56037 -20.0488 3.67583 3.65404 -20.0488 3.47604 3.27664 -23.2936 3.15253 3.21229 -23.2936 3.11403 3.50351 -20.0488 3.39986 3.56037 -20.0488 3.15253 3.21229 -23.2936 2.82337 3.19072 -23.2936 2.82322 3.48445 -20.0488 3.11403 3.50351 -20.0488 2.82337 3.19072 -23.2936 2.49423 3.21229 -23.2936 2.53241 3.50351 -20.0488 2.82322 3.48445 -20.0488 2.49423 3.21229 -23.2936 2.17071 3.27664 -23.2936 2.24657 3.56037 -20.0488 2.53241 3.50351 -20.0488 2.17071 3.27664 -23.2936 1.85836 3.38267 -23.2936 1.9706 3.65405 -20.0488 2.24657 3.56037 -20.0488 1.85836 3.38267 -23.2936 1.56252 3.52856 -23.2936 1.70922 3.78294 -20.0488 1.9706 3.65405 -20.0488 1.56252 3.52856 -23.2936 1.28825 3.71182 -23.2936 1.4669 3.94485 -20.0488 1.70922 3.78294 -20.0488 1.28825 3.71182 -23.2936 1.04025 3.92931 -23.2936 1.24779 4.13701 -20.0488 1.4669 3.94485 -20.0488 1.04025 3.92931 -23.2936 0.822761 4.17731 -23.2936 1.05564 4.35612 -20.0488 1.24779 4.13701 -20.0488 0.822761 4.17731 -23.2936 0.639503 4.45158 -23.2936 0.893725 4.59844 -20.0488 1.05564 4.35612 -20.0488 0.639503 4.45158 -23.2936 0.493611 4.74742 -23.2936 0.764826 4.85982 -20.0488 0.893725 4.59844 -20.0488 0.493611 4.74742 -23.2936 0.387582 5.05977 -23.2936 0.671148 5.13579 -20.0488 0.764826 4.85982 -20.0488 0.387582 5.05977 -23.2936 0.323231 5.38329 -23.2936 0.614292 5.42163 -20.0488 0.671148 5.13579 -20.0488 0.323231 5.38329 -23.2936 0.301657 5.71244 -23.2936 0.595231 5.71244 -20.0488 0.614292 5.42163 -20.0488 0.301657 5.71244 -23.2936 0.323228 6.04159 -23.2936 0.614289 6.00325 -20.0488 0.595231 5.71244 -20.0488 0.614289 6.00325 -20.0488 0.671146 6.28908 -20.0488 2.82322 5.71244 -20.0488 0.671146 6.28908 -20.0488 0.764824 6.56505 -20.0488 2.82322 5.71244 -20.0488 0.764824 6.56505 -20.0488 0.893723 6.82643 -20.0488 2.82322 5.71244 -20.0488 0.893723 6.82643 -20.0488 1.05563 7.06875 -20.0488 2.82322 5.71244 -20.0488 1.05563 7.06875 -20.0488 1.24779 7.28786 -20.0488 2.82322 5.71244 -20.0488 1.24779 7.28786 -20.0488 1.4669 7.48002 -20.0488 2.82322 5.71244 -20.0488 1.4669 7.48002 -20.0488 1.70922 7.64193 -20.0488 2.82322 5.71244 -20.0488 1.70922 7.64193 -20.0488 1.9706 7.77083 -20.0488 2.82322 5.71244 -20.0488 1.9706 7.77083 -20.0488 2.24657 7.86451 -20.0488 2.82322 5.71244 -20.0488 2.24657 7.86451 -20.0488 2.53241 7.92136 -20.0488 2.82322 5.71244 -20.0488 2.53241 7.92136 -20.0488 2.82322 7.94042 -20.0488 2.82322 5.71244 -20.0488 2.82322 7.94042 -20.0488 3.11403 7.92136 -20.0488 2.82322 5.71244 -20.0488 3.11403 7.92136 -20.0488 3.39986 7.86451 -20.0488 2.82322 5.71244 -20.0488 3.39986 7.86451 -20.0488 3.67583 7.77083 -20.0488 2.82322 5.71244 -20.0488 3.67583 7.77083 -20.0488 3.93721 7.64193 -20.0488 2.82322 5.71244 -20.0488 3.93721 7.64193 -20.0488 4.17953 7.48002 -20.0488 2.82322 5.71244 -20.0488 4.17953 7.48002 -20.0488 4.39864 7.28786 -20.0488 2.82322 5.71244 -20.0488 4.39864 7.28786 -20.0488 4.5908 7.06875 -20.0488 2.82322 5.71244 -20.0488 4.5908 7.06875 -20.0488 4.75271 6.82643 -20.0488 2.82322 5.71244 -20.0488 4.75271 6.82643 -20.0488 4.88161 6.56505 -20.0488 2.82322 5.71244 -20.0488 4.88161 6.56505 -20.0488 4.97529 6.28908 -20.0488 2.82322 5.71244 -20.0488 4.97529 6.28908 -20.0488 5.03215 6.00325 -20.0488 2.82322 5.71244 -20.0488 5.03215 6.00325 -20.0488 5.05121 5.71244 -20.0488 2.82322 5.71244 -20.0488 5.05121 5.71244 -20.0488 5.03215 5.42163 -20.0488 2.82322 5.71244 -20.0488 5.03215 5.42163 -20.0488 4.97529 5.13579 -20.0488 2.82322 5.71244 -20.0488 4.97529 5.13579 -20.0488 4.88161 4.85982 -20.0488 2.82322 5.71244 -20.0488 4.88161 4.85982 -20.0488 4.75271 4.59844 -20.0488 2.82322 5.71244 -20.0488 4.75271 4.59844 -20.0488 4.5908 4.35612 -20.0488 2.82322 5.71244 -20.0488 4.5908 4.35612 -20.0488 4.39864 4.13701 -20.0488 2.82322 5.71244 -20.0488 4.39864 4.13701 -20.0488 4.17953 3.94485 -20.0488 2.82322 5.71244 -20.0488 4.17953 3.94485 -20.0488 3.93721 3.78294 -20.0488 2.82322 5.71244 -20.0488 3.93721 3.78294 -20.0488 3.67583 3.65404 -20.0488 2.82322 5.71244 -20.0488 3.67583 3.65404 -20.0488 3.39986 3.56037 -20.0488 2.82322 5.71244 -20.0488 3.39986 3.56037 -20.0488 3.11403 3.50351 -20.0488 2.82322 5.71244 -20.0488 3.11403 3.50351 -20.0488 2.82322 3.48445 -20.0488 2.82322 5.71244 -20.0488 2.82322 3.48445 -20.0488 2.53241 3.50351 -20.0488 2.82322 5.71244 -20.0488 2.53241 3.50351 -20.0488 2.24657 3.56037 -20.0488 2.82322 5.71244 -20.0488 2.24657 3.56037 -20.0488 1.9706 3.65405 -20.0488 2.82322 5.71244 -20.0488 1.9706 3.65405 -20.0488 1.70922 3.78294 -20.0488 2.82322 5.71244 -20.0488 1.70922 3.78294 -20.0488 1.4669 3.94485 -20.0488 2.82322 5.71244 -20.0488 1.4669 3.94485 -20.0488 1.24779 4.13701 -20.0488 2.82322 5.71244 -20.0488 1.24779 4.13701 -20.0488 1.05564 4.35612 -20.0488 2.82322 5.71244 -20.0488 1.05564 4.35612 -20.0488 0.893725 4.59844 -20.0488 2.82322 5.71244 -20.0488 0.893725 4.59844 -20.0488 0.764826 4.85982 -20.0488 2.82322 5.71244 -20.0488 0.764826 4.85982 -20.0488 0.671148 5.13579 -20.0488 2.82322 5.71244 -20.0488 0.671148 5.13579 -20.0488 0.614292 5.42163 -20.0488 2.82322 5.71244 -20.0488 0.614292 5.42163 -20.0488 0.595231 5.71244 -20.0488 2.82322 5.71244 -20.0488 0.595231 5.71244 -20.0488 0.614289 6.00325 -20.0488 2.82322 5.71244 -20.0488 -8.25625 16.8355 -22.8728 -7.98784 16.2598 -23.0474 -7.91576 16.1053 -22.4869 -8.46704 17.0008 -20.7866 -4.74265 8.65556 -18.2687 -4.80362 8.78067 -14.2469 -8.86912 17.9014 -19.1189 -7.79203 15.8399 -23.0138 -4.43467 8.63997 -22.4375 -4.62444 8.62651 -20.4726 -7.91576 16.1053 -22.4869 -8.86912 17.9014 -19.1189 -9.40844 19.306 -19.1553 -9.43015 19.3525 -19.4356 -7.98784 16.2598 -23.0474 -7.79203 15.8399 -23.0138 -7.91576 16.1053 -22.4869 -8.86912 17.9014 -19.1189 -8.87729 18.1669 -18.5118 -9.40844 19.306 -19.1553 -8.86912 17.9014 -19.1189 -9.43015 19.3525 -19.4356 -8.83123 18.0683 -21.1892 -8.46704 17.0008 -20.7866 -8.46704 17.0008 -20.7866 -8.83123 18.0683 -21.1892 -8.25625 16.8355 -22.8728 -7.91576 16.1053 -22.4869 -8.86912 17.9014 -19.1189 -4.80362 8.78067 -14.2469 -4.56864 8.92668 -13.2924 -8.87729 18.1669 -18.5118 -8.46704 17.0008 -20.7866 -7.91576 16.1053 -22.4869 -4.62444 8.62651 -20.4726 -4.74265 8.65556 -18.2687 -8.87729 18.1669 -18.5118 -4.56864 8.92668 -13.2924 -4.46828 8.97348 -13.2924 -8.77713 18.2136 -18.5118 -8.87729 18.1669 -18.5118 -8.77713 18.2136 -18.5118 -9.30831 19.3526 -19.1553 -9.40844 19.306 -19.1553 -9.43015 19.3525 -19.4356 -9.33004 19.3992 -19.4356 -8.73126 18.115 -21.1892 -8.83123 18.0683 -21.1892 -7.98784 16.2598 -23.0474 -7.88799 16.3064 -23.0474 -7.69219 15.8865 -23.0138 -7.79203 15.8399 -23.0138 -7.79203 15.8399 -23.0138 -7.69219 15.8865 -23.0138 -4.33476 8.68655 -22.4375 -4.43467 8.63997 -22.4375 -8.15643 16.882 -22.8728 -7.81593 16.1518 -22.4869 -7.88799 16.3064 -23.0474 -8.14755 17.1497 -20.7866 -4.14874 8.9325 -18.2687 -4.20247 8.82328 -20.4726 -7.81593 16.1518 -22.4869 -7.69219 15.8865 -23.0138 -7.81593 16.1518 -22.4869 -4.20247 8.82328 -20.4726 -4.33476 8.68655 -22.4375 -8.14755 17.1497 -20.7866 -8.57905 18.0367 -19.1189 -4.20539 9.05963 -14.2469 -4.14874 8.9325 -18.2687 -8.57905 18.0367 -19.1189 -9.33004 19.3992 -19.4356 -9.30831 19.3526 -19.1553 -7.88799 16.3064 -23.0474 -7.81593 16.1518 -22.4869 -7.69219 15.8865 -23.0138 -8.57905 18.0367 -19.1189 -9.30831 19.3526 -19.1553 -8.77713 18.2136 -18.5118 -8.57905 18.0367 -19.1189 -8.14755 17.1497 -20.7866 -8.73126 18.115 -21.1892 -9.33004 19.3992 -19.4356 -8.14755 17.1497 -20.7866 -7.81593 16.1518 -22.4869 -8.15643 16.882 -22.8728 -8.73126 18.115 -21.1892 -8.57905 18.0367 -19.1189 -8.77713 18.2136 -18.5118 -4.46828 8.97348 -13.2924 -4.20539 9.05963 -14.2469 -8.25625 16.8355 -22.8728 -8.83123 18.0683 -21.1892 -8.73126 18.115 -21.1892 -8.15643 16.882 -22.8728 -9.43015 19.3525 -19.4356 -9.40844 19.306 -19.1553 -9.30831 19.3526 -19.1553 -9.33004 19.3992 -19.4356 -7.98784 16.2598 -23.0474 -8.25625 16.8355 -22.8728 -8.15643 16.882 -22.8728 -7.88799 16.3064 -23.0474 7.71766 16.8355 -22.8728 7.37718 16.1053 -22.4869 7.44925 16.2598 -23.0474 7.92845 17.0008 -20.7866 8.33054 17.9014 -19.1189 4.26504 8.78067 -14.2469 4.20407 8.65556 -18.2687 7.25345 15.8399 -23.0138 7.37718 16.1053 -22.4869 4.08586 8.62651 -20.4726 3.89608 8.63997 -22.4375 8.33054 17.9014 -19.1189 8.89156 19.3525 -19.4356 8.86986 19.306 -19.1553 7.44925 16.2598 -23.0474 7.37718 16.1053 -22.4869 7.25345 15.8399 -23.0138 8.33054 17.9014 -19.1189 8.86986 19.306 -19.1553 8.33871 18.1669 -18.5118 8.33054 17.9014 -19.1189 7.92845 17.0008 -20.7866 8.29265 18.0683 -21.1892 8.89156 19.3525 -19.4356 7.92845 17.0008 -20.7866 7.37718 16.1053 -22.4869 7.71766 16.8355 -22.8728 8.29265 18.0683 -21.1892 8.33054 17.9014 -19.1189 8.33871 18.1669 -18.5118 4.03006 8.92668 -13.2924 4.26504 8.78067 -14.2469 7.92845 17.0008 -20.7866 4.20407 8.65556 -18.2687 4.08586 8.62651 -20.4726 7.37718 16.1053 -22.4869 8.33871 18.1669 -18.5118 8.23855 18.2136 -18.5118 3.92969 8.97348 -13.2924 4.03006 8.92668 -13.2924 8.33871 18.1669 -18.5118 8.86986 19.306 -19.1553 8.76972 19.3526 -19.1553 8.23855 18.2136 -18.5118 8.89156 19.3525 -19.4356 8.29265 18.0683 -21.1892 8.19268 18.115 -21.1892 8.79145 19.3992 -19.4356 7.44925 16.2598 -23.0474 7.25345 15.8399 -23.0138 7.15361 15.8865 -23.0138 7.34941 16.3064 -23.0474 7.25345 15.8399 -23.0138 3.89608 8.63997 -22.4375 3.79618 8.68655 -22.4375 7.15361 15.8865 -23.0138 7.61784 16.882 -22.8728 7.34941 16.3064 -23.0474 7.27735 16.1518 -22.4869 7.60897 17.1497 -20.7866 7.27735 16.1518 -22.4869 3.66388 8.82328 -20.4726 3.61016 8.9325 -18.2687 7.15361 15.8865 -23.0138 3.79618 8.68655 -22.4375 3.66388 8.82328 -20.4726 7.27735 16.1518 -22.4869 7.60897 17.1497 -20.7866 3.61016 8.9325 -18.2687 3.6668 9.05963 -14.2469 8.04046 18.0367 -19.1189 8.04046 18.0367 -19.1189 8.76972 19.3526 -19.1553 8.79145 19.3992 -19.4356 7.34941 16.3064 -23.0474 7.15361 15.8865 -23.0138 7.27735 16.1518 -22.4869 8.04046 18.0367 -19.1189 8.23855 18.2136 -18.5118 8.76972 19.3526 -19.1553 8.04046 18.0367 -19.1189 8.79145 19.3992 -19.4356 8.19268 18.115 -21.1892 7.60897 17.1497 -20.7866 7.60897 17.1497 -20.7866 8.19268 18.115 -21.1892 7.61784 16.882 -22.8728 7.27735 16.1518 -22.4869 8.04046 18.0367 -19.1189 3.6668 9.05963 -14.2469 3.92969 8.97348 -13.2924 8.23855 18.2136 -18.5118 7.71766 16.8355 -22.8728 7.61784 16.882 -22.8728 8.19268 18.115 -21.1892 8.29265 18.0683 -21.1892 8.89156 19.3525 -19.4356 8.79145 19.3992 -19.4356 8.76972 19.3526 -19.1553 8.86986 19.306 -19.1553 7.44925 16.2598 -23.0474 7.34941 16.3064 -23.0474 7.61784 16.882 -22.8728 7.71766 16.8355 -22.8728 3.66388 8.82328 -20.4726 3.79618 8.68655 -22.4375 3.89608 8.63997 -22.4375 4.08586 8.62651 -20.4726 -4.62444 8.62651 -20.4726 -4.43467 8.63997 -22.4375 -4.33476 8.68655 -22.4375 -4.20247 8.82328 -20.4726 - - - - - - - - - - -0.15186 0.988312 0.013374 -0.206543 0.977774 -0.036018 0.026661 0.999633 0.004783 -0.091552 0.995536 0.022936 -0.077799 0.996743 0.021245 -0.15186 0.988312 0.013374 -0.091552 0.995536 0.022936 -0.04564 0.99854 0.028885 0.01151 0.999733 0.020032 -0.077799 0.996743 0.021245 -0.04564 0.99854 0.028885 0.019586 0.99944 0.027111 0.123343 0.992293 0.011913 0.01151 0.999733 0.020032 0.019586 0.99944 0.027111 0.113549 0.993366 0.018177 0.254654 0.967032 0 0.123343 0.992293 0.011913 0.113549 0.993366 0.018177 0.243012 0.97002 0.002582 0.384519 0.923045 -0.011552 0.254654 0.967032 0 0.243012 0.97002 0.002582 0.38179 0.924127 -0.014997 0.501708 0.864765 -0.021688 0.384519 0.923045 -0.011552 0.38179 0.924127 -0.014997 0.50103 0.864915 -0.029841 0.610067 0.79174 -0.031092 0.501708 0.864765 -0.021688 0.50103 0.864915 -0.029841 0.608524 0.792357 -0.043233 0.707798 0.705302 -0.03964 0.610067 0.79174 -0.031092 0.608524 0.792357 -0.043233 0.705483 0.706542 -0.055603 0.793307 0.606988 -0.047222 0.707798 0.705302 -0.03964 0.705483 0.706542 -0.055603 0.790411 0.608928 -0.066759 0.865223 0.4985 -0.053736 0.793307 0.606988 -0.047222 0.790411 0.608928 -0.066759 0.861992 0.501114 -0.076517 0.922401 0.381686 -0.059096 0.865223 0.4985 -0.053736 0.861992 0.501114 -0.076517 0.919087 0.384843 -0.084704 0.963939 0.258504 -0.063222 0.922401 0.381686 -0.059096 0.919087 0.384843 -0.084704 0.960755 0.261993 -0.091156 0.98918 0.130998 -0.066051 0.963939 0.258504 -0.063222 0.960755 0.261993 -0.091156 0.986269 0.134566 -0.095735 0.997716 0.001282 -0.067532 0.98918 0.130998 -0.066051 0.986269 0.134566 -0.095735 0.995143 0.004678 -0.098326 0.989401 -0.128497 -0.067629 0.997716 0.001282 -0.067532 0.995143 0.004678 -0.098326 0.98716 -0.125476 -0.098851 0.964348 -0.25619 -0.066323 0.989401 -0.128497 -0.067629 0.98716 -0.125476 -0.098851 0.962386 -0.253674 -0.097276 0.922935 -0.379662 -0.063614 0.964348 -0.25619 -0.066323 0.962386 -0.253674 -0.097276 0.921187 -0.377694 -0.093608 0.865802 -0.496834 -0.059522 0.922935 -0.379662 -0.063614 0.921187 -0.377694 -0.093608 0.864216 -0.495382 -0.087904 0.793848 -0.605707 -0.054087 0.865802 -0.496834 -0.059522 0.864216 -0.495382 -0.087904 0.792405 -0.604692 -0.08026 0.708224 -0.704397 -0.047371 0.793848 -0.605707 -0.054087 0.792405 -0.604692 -0.08026 0.706942 -0.703718 -0.070812 0.610325 -0.791168 -0.039459 0.708224 -0.704397 -0.047371 0.706942 -0.703718 -0.070812 0.609246 -0.790729 -0.05973 0.501776 -0.864461 -0.030456 0.610325 -0.791168 -0.039459 0.609246 -0.790729 -0.05973 0.500949 -0.864188 -0.047209 0.384411 -0.922934 -0.020492 0.501776 -0.864461 -0.030456 0.500949 -0.864188 -0.047209 0.383876 -0.922778 -0.033471 0.254457 -0.967044 -0.008784 0.384411 -0.922934 -0.020492 0.383876 -0.922778 -0.033471 0.24848 -0.968492 -0.016771 0.123112 -0.992387 0.003291 0.254457 -0.967044 -0.008784 0.24848 -0.968492 -0.016771 0.114042 -0.993476 0 -0.000407 -0.999911 0.013344 0.123112 -0.992387 0.003291 0.114042 -0.993476 0 -0.017872 -0.999719 0.01559 -0.168877 -0.985292 0.026087 -0.000407 -0.999911 0.013344 -0.017872 -0.999719 0.01559 -0.192088 -0.980811 0.033358 -0.350573 -0.9356 0.041844 -0.168877 -0.985292 0.026087 -0.192088 -0.980811 0.033358 -0.364185 -0.930147 0.046853 -0.454286 -0.889249 0.053487 -0.350573 -0.9356 0.041844 -0.364185 -0.930147 0.046853 -0.439566 -0.896847 0.049465 0.986679 0.142183 -0.079046 0.960409 0.269549 -0.07041 0.960761 0.272873 -0.049792 0.987318 0.145481 -0.063547 0.996239 0.011476 -0.085886 0.986679 0.142183 -0.079046 0.987318 0.145481 -0.063547 0.997228 0.013512 -0.073163 0.988586 -0.120259 -0.09075 0.996239 0.011476 -0.085886 0.997228 0.013512 -0.073163 0.989644 -0.120386 -0.078176 0.963578 -0.250554 -0.093492 0.988586 -0.120259 -0.09075 0.989644 -0.120386 -0.078176 0.964227 -0.253224 -0.078384 0.921487 -0.376859 -0.094016 0.963578 -0.250554 -0.093492 0.964227 -0.253224 -0.078384 0.921294 -0.381781 -0.073899 0.86302 -0.496668 -0.0922831 0.921487 -0.376859 -0.094016 0.921294 -0.381781 -0.073899 0.861894 -0.502884 -0.065167 0.789314 -0.607603 -0.0883221 0.86302 -0.496668 -0.0922831 0.861894 -0.502884 -0.065167 0.787758 -0.613707 -0.052928 0.701892 -0.707521 -0.082231 0.789314 -0.607603 -0.0883221 0.787758 -0.613707 -0.052928 0.701062 -0.712081 -0.038124 0.602557 -0.794621 -0.074178 0.701892 -0.707521 -0.082231 0.701062 -0.712081 -0.038124 0.604018 -0.796674 -0.02175 0.483176 -0.873221 -0.063454 0.602557 -0.794621 -0.074178 0.604018 -0.796674 -0.02175 0.492226 -0.870454 -0.004816 0.377237 -0.924591 -0.053137 0.483176 -0.873221 -0.063454 0.492226 -0.870454 -0.004816 0.384383 -0.923109 0.010951 0.262551 -0.964018 -0.041672 0.377237 -0.924591 -0.053137 0.384383 -0.923109 0.010951 0.272503 -0.961766 0.027347 0.105891 -0.994056 -0.025279 0.262551 -0.964018 -0.041672 0.272503 -0.961766 0.027347 0.130502 -0.990367 0.046295 -0.040865 -0.999115 -0.009958 0.105891 -0.994056 -0.025279 0.130502 -0.990367 0.046295 0.006007 -0.997927 0.06408 -0.17101 -0.985269 0.000187 -0.040865 -0.999115 -0.009958 0.006007 -0.997927 0.06408 -0.097294 -0.992509 0.073883 -0.265742 -0.964044 0.000846 -0.17101 -0.985269 0.000187 -0.097294 -0.992509 0.073883 -0.191674 -0.97883 0.071785 -0.327716 -0.944776 0.000512 -0.265742 -0.964044 0.000846 -0.191674 -0.97883 0.071785 -0.299512 -0.952283 0.058734 -0.366229 -0.929221 0.04924 -0.148624 -0.988708 -0.01918 -0.327716 -0.944776 0.000512 -0.299512 -0.952283 0.058734 0.00404 0.997931 0.064158 -0.00312 0.997829 0.065786 -0.010998 0.988573 0.150341 0.009592 0.988966 0.147833 0.015606 0.997932 0.062354 0.00404 0.997931 0.064158 0.009592 0.988966 0.147833 0.036897 0.988757 0.144906 0.042973 0.997283 0.059826 0.015606 0.997932 0.062354 0.036897 0.988757 0.144906 0.074397 0.987218 0.140942 0.112955 0.992212 0.052502 0.042973 0.997283 0.059826 0.074397 0.987218 0.140942 0.161345 0.978227 0.130534 0.233512 0.97155 0.039544 0.112955 0.992212 0.052502 0.161345 0.978227 0.130534 0.282344 0.952362 0.115273 0.379744 0.924815 0.0226 0.233512 0.97155 0.039544 0.282344 0.952362 0.115273 0.410668 0.906654 0.096595 0.506984 0.861933 0.006322 0.379744 0.924815 0.0226 0.410668 0.906654 0.096595 0.525856 0.847206 0.075613 0.611953 0.790851 -0.00822999 0.506984 0.861933 0.006322 0.525856 0.847206 0.075613 0.625087 0.778701 0.053765 0.706776 0.707083 -0.022392 0.611953 0.790851 -0.00822999 0.625087 0.778701 0.053765 0.714768 0.698661 0.031294 0.790237 0.611747 -0.035934 0.706776 0.707083 -0.022392 0.714768 0.698661 0.031294 0.794343 0.607405 0.008865 0.861122 0.506069 -0.048616 0.790237 0.611747 -0.035934 0.794343 0.607405 0.008865 0.862801 0.505383 -0.012722 0.918223 0.391463 -0.0601889 0.861122 0.506069 -0.048616 0.862801 0.505383 -0.012722 0.918775 0.393436 -0.032575 0.960409 0.269549 -0.07041 0.918223 0.391463 -0.0601889 0.918775 0.393436 -0.032575 0.960761 0.272873 -0.049792 0.919087 0.384843 -0.084704 0.861992 0.501114 -0.076517 0.858936 0.50538 -0.08258 0.916086 0.389938 -0.093464 0.960755 0.261993 -0.091156 0.919087 0.384843 -0.084704 0.916086 0.389938 -0.093464 0.958104 0.267484 -0.102411 0.986269 0.134566 -0.095735 0.960755 0.261993 -0.091156 0.958104 0.267484 -0.102411 0.984119 0.139951 -0.109198 0.995143 0.004678 -0.098326 0.986269 0.134566 -0.095735 0.984119 0.139951 -0.109198 0.993478 0.009482 -0.113633 0.98716 -0.125476 -0.098851 0.995143 0.004678 -0.098326 0.993478 0.009482 -0.113633 0.985825 -0.12162 -0.115576 0.962386 -0.253674 -0.097276 0.98716 -0.125476 -0.098851 0.985825 -0.12162 -0.115576 0.961148 -0.250958 -0.11495 0.921187 -0.377694 -0.093608 0.962386 -0.253674 -0.097276 0.961148 -0.250958 -0.11495 0.919807 -0.37612 -0.11175 0.864216 -0.495382 -0.087904 0.921187 -0.377694 -0.093608 0.919807 -0.37612 -0.11175 0.862519 -0.494789 -0.106041 0.792405 -0.604692 -0.08026 0.864216 -0.495382 -0.087904 0.862519 -0.494789 -0.106041 0.790325 -0.604807 -0.097956 0.706942 -0.703718 -0.070812 0.792405 -0.604692 -0.08026 0.790325 -0.604807 -0.097956 0.704541 -0.704226 -0.087681 0.609246 -0.790729 -0.05973 0.706942 -0.703718 -0.070812 0.704541 -0.704226 -0.087681 0.606694 -0.791347 -0.075447 0.500949 -0.864188 -0.047209 0.609246 -0.790729 -0.05973 0.606694 -0.791347 -0.075447 0.493902 -0.867398 -0.06067 0.383876 -0.922778 -0.033471 0.500949 -0.864188 -0.047209 0.493902 -0.867398 -0.06067 0.382885 -0.922658 -0.045828 0.24848 -0.968492 -0.016771 0.383876 -0.922778 -0.033471 0.382885 -0.922658 -0.045828 0.251749 -0.967336 -0.029707 0.114042 -0.993476 0 0.24848 -0.968492 -0.016771 0.251749 -0.967336 -0.029707 0.103547 -0.994554 -0.011814 -0.017872 -0.999719 0.01559 0.114042 -0.993476 0 0.103547 -0.994554 -0.011814 -0.047274 -0.998855 0.007315 -0.192088 -0.980811 0.033358 -0.017872 -0.999719 0.01559 -0.047274 -0.998855 0.007315 -0.21105 -0.977133 0.025867 -0.364185 -0.930147 0.046853 -0.192088 -0.980811 0.033358 -0.21105 -0.977133 0.025867 -0.341122 -0.939464 0.032302 -0.439566 -0.896847 0.049465 -0.364185 -0.930147 0.046853 -0.341122 -0.939464 0.032302 -0.381777 -0.923931 0.024443 -0.445811 -0.894813 0.023721 -0.494411 -0.868045 0.045333 -0.284527 -0.958629 0.008604 -0.091552 0.995536 0.022936 0.026661 0.999633 0.004783 0.341884 0.939737 -0.003147 -0.012182 0.999076 0.041221 -0.04564 0.99854 0.028885 -0.091552 0.995536 0.022936 -0.012182 0.999076 0.041221 -0.001559 0.999067 0.043156 0.019586 0.99944 0.027111 -0.04564 0.99854 0.028885 -0.001559 0.999067 0.043156 0.031621 0.998667 0.0408 0.113549 0.993366 0.018177 0.019586 0.99944 0.027111 0.031621 0.998667 0.0408 0.101292 0.994328 0.032422 0.243012 0.97002 0.002582 0.113549 0.993366 0.018177 0.101292 0.994328 0.032422 0.225252 0.974176 0.015602 0.38179 0.924127 -0.014997 0.243012 0.97002 0.002582 0.225252 0.974176 0.015602 0.376 0.9266 -0.006016 0.50103 0.864915 -0.029841 0.38179 0.924127 -0.014997 0.376 0.9266 -0.006016 0.501464 0.864828 -0.024624 0.608524 0.792357 -0.043233 0.50103 0.864915 -0.029841 0.501464 0.864828 -0.024624 0.607661 0.793149 -0.040777 0.705483 0.706542 -0.055603 0.608524 0.792357 -0.043233 0.607661 0.793149 -0.040777 0.703521 0.708466 -0.055986 0.790411 0.608928 -0.066759 0.705483 0.706542 -0.055603 0.703521 0.708466 -0.055986 0.787695 0.612075 -0.070004 0.861992 0.501114 -0.076517 0.790411 0.608928 -0.066759 0.787695 0.612075 -0.070004 0.858936 0.50538 -0.08258 0.958104 0.267484 -0.102411 0.916086 0.389938 -0.093464 0.918223 0.391463 -0.0601889 0.960409 0.269549 -0.07041 0.984119 0.139951 -0.109198 0.958104 0.267484 -0.102411 0.960409 0.269549 -0.07041 0.986679 0.142183 -0.079046 0.993478 0.009482 -0.113633 0.984119 0.139951 -0.109198 0.986679 0.142183 -0.079046 0.996239 0.011476 -0.085886 0.985825 -0.12162 -0.115576 0.993478 0.009482 -0.113633 0.996239 0.011476 -0.085886 0.988586 -0.120259 -0.09075 0.961148 -0.250958 -0.11495 0.985825 -0.12162 -0.115576 0.988586 -0.120259 -0.09075 0.963578 -0.250554 -0.093492 0.919807 -0.37612 -0.11175 0.961148 -0.250958 -0.11495 0.963578 -0.250554 -0.093492 0.921487 -0.376859 -0.094016 0.862519 -0.494789 -0.106041 0.919807 -0.37612 -0.11175 0.921487 -0.376859 -0.094016 0.86302 -0.496668 -0.0922831 0.790325 -0.604807 -0.097956 0.862519 -0.494789 -0.106041 0.86302 -0.496668 -0.0922831 0.789314 -0.607603 -0.0883221 0.704541 -0.704226 -0.087681 0.790325 -0.604807 -0.097956 0.789314 -0.607603 -0.0883221 0.701892 -0.707521 -0.082231 0.606694 -0.791347 -0.075447 0.704541 -0.704226 -0.087681 0.701892 -0.707521 -0.082231 0.602557 -0.794621 -0.074178 0.493902 -0.867398 -0.06067 0.606694 -0.791347 -0.075447 0.602557 -0.794621 -0.074178 0.483176 -0.873221 -0.063454 0.382885 -0.922658 -0.045828 0.493902 -0.867398 -0.06067 0.483176 -0.873221 -0.063454 0.377237 -0.924591 -0.053137 0.251749 -0.967336 -0.029707 0.382885 -0.922658 -0.045828 0.377237 -0.924591 -0.053137 0.262551 -0.964018 -0.041672 0.103547 -0.994554 -0.011814 0.251749 -0.967336 -0.029707 0.262551 -0.964018 -0.041672 0.105891 -0.994056 -0.025279 -0.047274 -0.998855 0.007315 0.103547 -0.994554 -0.011814 0.105891 -0.994056 -0.025279 -0.040865 -0.999115 -0.009958 -0.21105 -0.977133 0.025867 -0.047274 -0.998855 0.007315 -0.040865 -0.999115 -0.009958 -0.17101 -0.985269 0.000187 -0.341122 -0.939464 0.032302 -0.21105 -0.977133 0.025867 -0.17101 -0.985269 0.000187 -0.265742 -0.964044 0.000846 -0.381777 -0.923931 0.024443 -0.341122 -0.939464 0.032302 -0.265742 -0.964044 0.000846 -0.327716 -0.944776 0.000512 -0.284527 -0.958629 0.008604 -0.381777 -0.923931 0.024443 -0.327716 -0.944776 0.000512 -0.148624 -0.988708 -0.01918 -0.012182 0.999076 0.041221 0.341884 0.939737 -0.003147 -0.00312 0.997829 0.065786 0.00404 0.997931 0.064158 -0.001559 0.999067 0.043156 -0.012182 0.999076 0.041221 0.00404 0.997931 0.064158 0.015606 0.997932 0.062354 0.031621 0.998667 0.0408 -0.001559 0.999067 0.043156 0.015606 0.997932 0.062354 0.042973 0.997283 0.059826 0.101292 0.994328 0.032422 0.031621 0.998667 0.0408 0.042973 0.997283 0.059826 0.112955 0.992212 0.052502 0.225252 0.974176 0.015602 0.101292 0.994328 0.032422 0.112955 0.992212 0.052502 0.233512 0.97155 0.039544 0.376 0.9266 -0.006016 0.225252 0.974176 0.015602 0.233512 0.97155 0.039544 0.379744 0.924815 0.0226 0.501464 0.864828 -0.024624 0.376 0.9266 -0.006016 0.379744 0.924815 0.0226 0.506984 0.861933 0.006322 0.607661 0.793149 -0.040777 0.501464 0.864828 -0.024624 0.506984 0.861933 0.006322 0.611953 0.790851 -0.00822999 0.703521 0.708466 -0.055986 0.607661 0.793149 -0.040777 0.611953 0.790851 -0.00822999 0.706776 0.707083 -0.022392 0.787695 0.612075 -0.070004 0.703521 0.708466 -0.055986 0.706776 0.707083 -0.022392 0.790237 0.611747 -0.035934 0.858936 0.50538 -0.08258 0.787695 0.612075 -0.070004 0.790237 0.611747 -0.035934 0.861122 0.506069 -0.048616 0.916086 0.389938 -0.093464 0.858936 0.50538 -0.08258 0.861122 0.506069 -0.048616 0.918223 0.391463 -0.0601889 0.115182 -0.126916 0.985203 0.115182 -0.126916 0.985203 0.155924 -0.121472 0.980272 0.155924 -0.121472 0.980272 0.009592 0.988966 0.147833 -0.010998 0.988573 0.150341 0.071846 0.60094 0.796059 0.110065 0.609678 0.78497 0.036897 0.988757 0.144906 0.009592 0.988966 0.147833 0.110065 0.609678 0.78497 0.169921 0.59707 0.783986 0.074397 0.987218 0.140942 0.036897 0.988757 0.144906 0.169921 0.59707 0.783986 0.251655 0.550679 0.795878 0.161345 0.978227 0.130534 0.074397 0.987218 0.140942 0.251655 0.550679 0.795878 0.363403 0.49381 0.789993 0.282344 0.952362 0.115273 0.161345 0.978227 0.130534 0.363403 0.49381 0.789993 0.459452 0.430725 0.776775 0.410668 0.906654 0.096595 0.282344 0.952362 0.115273 0.459452 0.430725 0.776775 0.535111 0.372488 0.758228 0.525856 0.847206 0.075613 0.410668 0.906654 0.096595 0.535111 0.372488 0.758228 0.593313 0.328308 0.734979 0.625087 0.778701 0.053765 0.525856 0.847206 0.075613 0.593313 0.328308 0.734979 0.642511 0.29087 0.708924 0.714768 0.698661 0.031294 0.625087 0.778701 0.053765 0.642511 0.29087 0.708924 0.685502 0.254178 0.682262 0.794343 0.607405 0.008865 0.714768 0.698661 0.031294 0.685502 0.254178 0.682262 0.725206 0.214903 0.654135 0.862801 0.505383 -0.012722 0.794343 0.607405 0.008865 0.725206 0.214903 0.654135 0.762459 0.167901 0.624873 0.918775 0.393436 -0.032575 0.862801 0.505383 -0.012722 0.762459 0.167901 0.624873 0.794807 0.110389 0.596738 0.960761 0.272873 -0.049792 0.918775 0.393436 -0.032575 0.794807 0.110389 0.596738 0.819606 0.042627 0.57134 0.987318 0.145481 -0.063547 0.960761 0.272873 -0.049792 0.819606 0.042627 0.57134 0.834812 -0.03331 0.549526 0.997228 0.013512 -0.073163 0.987318 0.145481 -0.063547 0.834812 -0.03331 0.549526 0.839047 -0.114537 0.531866 0.989644 -0.120386 -0.078176 0.997228 0.013512 -0.073163 0.839047 -0.114537 0.531866 0.831704 -0.197673 0.518839 0.964227 -0.253224 -0.078384 0.989644 -0.120386 -0.078176 0.831704 -0.197673 0.518839 0.813054 -0.279426 0.510749 0.921294 -0.381781 -0.073899 0.964227 -0.253224 -0.078384 0.813054 -0.279426 0.510749 0.78385 -0.356997 0.508067 0.861894 -0.502884 -0.065167 0.921294 -0.381781 -0.073899 0.78385 -0.356997 0.508067 0.745032 -0.427883 0.511707 0.787758 -0.613707 -0.052928 0.861894 -0.502884 -0.065167 0.745032 -0.427883 0.511707 0.697682 -0.48971 0.522899 0.701062 -0.712081 -0.038124 0.787758 -0.613707 -0.052928 0.697682 -0.48971 0.522899 0.643013 -0.540106 0.542973 0.604018 -0.796674 -0.02175 0.701062 -0.712081 -0.038124 0.643013 -0.540106 0.542973 0.582399 -0.576896 0.572715 0.492226 -0.870454 -0.004816 0.604018 -0.796674 -0.02175 0.582399 -0.576896 0.572715 0.516912 -0.599819 0.610753 0.384383 -0.923109 0.010951 0.492226 -0.870454 -0.004816 0.516912 -0.599819 0.610753 0.450105 -0.611291 0.650944 0.272503 -0.961766 0.027347 0.384383 -0.923109 0.010951 0.450105 -0.611291 0.650944 0.380537 -0.620258 0.685909 0.130502 -0.990367 0.046295 0.272503 -0.961766 0.027347 0.380537 -0.620258 0.685909 0.286946 -0.636207 0.716173 0.006007 -0.997927 0.06408 0.130502 -0.990367 0.046295 0.286946 -0.636207 0.716173 0.16969 -0.650751 0.740087 -0.097294 -0.992509 0.073883 0.006007 -0.997927 0.06408 0.16969 -0.650751 0.740087 0.067091 -0.662641 0.745926 -0.191674 -0.97883 0.071785 -0.097294 -0.992509 0.073883 0.067091 -0.662641 0.745926 -0.020373 -0.680506 0.732459 -0.299512 -0.952283 0.058734 -0.191674 -0.97883 0.071785 -0.020373 -0.680506 0.732459 -0.125453 -0.702629 0.700409 -0.366229 -0.929221 0.04924 -0.299512 -0.952283 0.058734 -0.125453 -0.702629 0.700409 -0.185919 -0.71252 0.676572 -0.185919 -0.71252 0.676572 -0.125453 -0.702629 0.700409 0.252241 0.537593 0.804592 0.27495 0.512798 0.81329 -0.125453 -0.702629 0.700409 -0.020373 -0.680506 0.732459 0.207046 0.58138 0.786848 0.252241 0.537593 0.804592 -0.020373 -0.680506 0.732459 0.067091 -0.662641 0.745926 0.173244 0.609918 0.773296 0.207046 0.58138 0.786848 0.067091 -0.662641 0.745926 0.16969 -0.650751 0.740087 0.164728 0.620395 0.766795 0.173244 0.609918 0.773296 0.16969 -0.650751 0.740087 0.286946 -0.636207 0.716173 0.141191 0.619577 0.772133 0.164728 0.620395 0.766795 0.286946 -0.636207 0.716173 0.380537 -0.620258 0.685909 0.082812 0.600723 0.795157 0.141191 0.619577 0.772133 0.380537 -0.620258 0.685909 0.450105 -0.611291 0.650944 0.022221 0.557982 0.829556 0.082812 0.600723 0.795157 0.450105 -0.611291 0.650944 0.516912 -0.599819 0.610753 -0.031996 0.501023 0.864842 0.022221 0.557982 0.829556 0.516912 -0.599819 0.610753 0.582399 -0.576896 0.572715 -0.088637 0.437314 0.89493 -0.031996 0.501023 0.864842 0.582399 -0.576896 0.572715 0.643013 -0.540106 0.542973 -0.153269 0.366663 0.917642 -0.088637 0.437314 0.89493 0.643013 -0.540106 0.542973 0.697682 -0.48971 0.522899 -0.221055 0.286889 0.93211 -0.153269 0.366663 0.917642 0.697682 -0.48971 0.522899 0.745032 -0.427883 0.511707 -0.284122 0.198505 0.938014 -0.221055 0.286889 0.93211 0.745032 -0.427883 0.511707 0.78385 -0.356997 0.508067 -0.336592 0.104244 0.935863 -0.284122 0.198505 0.938014 0.78385 -0.356997 0.508067 0.813054 -0.279426 0.510749 -0.375399 0.007309 0.926835 -0.336592 0.104244 0.935863 0.813054 -0.279426 0.510749 0.831704 -0.197673 0.518839 -0.399571 -0.089774 0.912296 -0.375399 0.007309 0.926835 0.831704 -0.197673 0.518839 0.839047 -0.114537 0.531866 -0.40947 -0.185225 0.893323 -0.399571 -0.089774 0.912296 0.839047 -0.114537 0.531866 0.834812 -0.03331 0.549526 -0.406217 -0.277898 0.870494 -0.40947 -0.185225 0.893323 0.834812 -0.03331 0.549526 0.819606 0.042627 0.57134 -0.391248 -0.366986 0.843947 -0.406217 -0.277898 0.870494 0.819606 0.042627 0.57134 0.794807 0.110389 0.596738 -0.366406 -0.451618 0.813503 -0.391248 -0.366986 0.843947 0.794807 0.110389 0.596738 0.762459 0.167901 0.624873 -0.333404 -0.531242 0.778861 -0.366406 -0.451618 0.813503 0.762459 0.167901 0.624873 0.725206 0.214903 0.654135 -0.292011 -0.605559 0.740289 -0.333404 -0.531242 0.778861 0.725206 0.214903 0.654135 0.685502 0.254178 0.682262 -0.239291 -0.673038 0.699828 -0.292011 -0.605559 0.740289 0.685502 0.254178 0.682262 0.642511 0.29087 0.708924 -0.177169 -0.728596 0.661634 -0.239291 -0.673038 0.699828 0.642511 0.29087 0.708924 0.593313 0.328308 0.734979 -0.108662 -0.769837 0.628923 -0.177169 -0.728596 0.661634 0.593313 0.328308 0.734979 0.535111 0.372488 0.758228 -0.026097 -0.795006 0.60604 -0.108662 -0.769837 0.628923 0.535111 0.372488 0.758228 0.459452 0.430725 0.776775 0.061689 -0.795896 0.602283 -0.026097 -0.795006 0.60604 0.459452 0.430725 0.776775 0.363403 0.49381 0.789993 0.130682 -0.774696 0.618683 0.061689 -0.795896 0.602283 0.363403 0.49381 0.789993 0.251655 0.550679 0.795878 0.15141 -0.741583 0.653552 0.130682 -0.774696 0.618683 0.251655 0.550679 0.795878 0.169921 0.59707 0.783986 0.134778 -0.70538 0.695898 0.15141 -0.741583 0.653552 0.169921 0.59707 0.783986 0.110065 0.609678 0.78497 0.116583 -0.69512 0.709378 0.134778 -0.70538 0.695898 0.110065 0.609678 0.78497 0.071846 0.60094 0.796059 0.108239 -0.702525 0.70338 0.116583 -0.69512 0.709378 0.27495 0.512798 0.81329 0.252241 0.537593 0.804592 0.285445 0.939919 0.18728 0.331255 0.926071 0.18073 0.252241 0.537593 0.804592 0.207046 0.58138 0.786848 0.189037 0.96218 0.196149 0.285445 0.939919 0.18728 0.207046 0.58138 0.786848 0.173244 0.609918 0.773296 0.105574 0.97262 0.207037 0.189037 0.96218 0.196149 0.173244 0.609918 0.773296 0.164728 0.620395 0.766795 0.037214 0.971985 0.232079 0.105574 0.97262 0.207037 0.164728 0.620395 0.766795 0.141191 0.619577 0.772133 -0.059893 0.963086 0.262446 0.037214 0.971985 0.232079 0.141191 0.619577 0.772133 0.082812 0.600723 0.795157 -0.177393 0.94041 0.290106 -0.059893 0.963086 0.262446 0.082812 0.600723 0.795157 0.022221 0.557982 0.829556 -0.284083 0.904496 0.318095 -0.177393 0.94041 0.290106 0.022221 0.557982 0.829556 -0.031996 0.501023 0.864842 -0.385745 0.856277 0.343498 -0.284083 0.904496 0.318095 -0.031996 0.501023 0.864842 -0.088637 0.437314 0.89493 -0.489669 0.792436 0.363688 -0.385745 0.856277 0.343498 -0.088637 0.437314 0.89493 -0.153269 0.366663 0.917642 -0.59559 0.708509 0.378533 -0.489669 0.792436 0.363688 -0.153269 0.366663 0.917642 -0.221055 0.286889 0.93211 -0.695454 0.604291 0.388815 -0.59559 0.708509 0.378533 -0.221055 0.286889 0.93211 -0.284122 0.198505 0.938014 -0.78141 0.483457 0.394547 -0.74061 0.545885 0.391798 -0.695454 0.604291 0.388815 -0.284122 0.198505 0.938014 -0.336592 0.104244 0.935863 -0.848934 0.351143 0.39498 -0.78141 0.483457 0.394547 -0.336592 0.104244 0.935863 -0.375399 0.007309 0.926835 -0.896199 0.212404 0.389503 -0.848934 0.351143 0.39498 -0.375399 0.007309 0.926835 -0.399571 -0.089774 0.912296 -0.922962 0.071433 0.378204 -0.896199 0.212404 0.389503 -0.399571 -0.089774 0.912296 -0.40947 -0.185225 0.893323 -0.929717 -0.068363 0.361874 -0.922962 0.071433 0.378204 -0.40947 -0.185225 0.893323 -0.406217 -0.277898 0.870494 -0.91749 -0.203871 0.34154 -0.929717 -0.068363 0.361874 -0.406217 -0.277898 0.870494 -0.391248 -0.366986 0.843947 -0.887969 -0.332228 0.318019 -0.91749 -0.203871 0.34154 -0.391248 -0.366986 0.843947 -0.366406 -0.451618 0.813503 -0.843596 -0.450795 0.291771 -0.887969 -0.332228 0.318019 -0.366406 -0.451618 0.813503 -0.333404 -0.531242 0.778861 -0.787193 -0.557812 0.263008 -0.843596 -0.450795 0.291771 -0.333404 -0.531242 0.778861 -0.292011 -0.605559 0.740289 -0.720302 -0.653626 0.232247 -0.787193 -0.557812 0.263008 -0.292011 -0.605559 0.740289 -0.239291 -0.673038 0.699828 -0.641618 -0.740196 0.201087 -0.720302 -0.653626 0.232247 -0.239291 -0.673038 0.699828 -0.177169 -0.728596 0.661634 -0.552767 -0.815467 0.171643 -0.641618 -0.740196 0.201087 -0.177169 -0.728596 0.661634 -0.108662 -0.769837 0.628923 -0.455097 -0.878523 0.145201 -0.552767 -0.815467 0.171643 -0.108662 -0.769837 0.628923 -0.026097 -0.795006 0.60604 -0.338644 -0.932844 0.122973 -0.455097 -0.878523 0.145201 -0.026097 -0.795006 0.60604 0.061689 -0.795896 0.602283 -0.212293 -0.971366 0.106673 -0.338644 -0.932844 0.122973 0.061689 -0.795896 0.602283 0.130682 -0.774696 0.618683 -0.101873 -0.990252 0.094989 -0.212293 -0.971366 0.106673 0.130682 -0.774696 0.618683 0.15141 -0.741583 0.653552 -0.028192 -0.995957 0.085293 -0.101873 -0.990252 0.094989 0.15141 -0.741583 0.653552 0.134778 -0.70538 0.695898 -0.001092 -0.996963 0.077867 -0.028192 -0.995957 0.085293 0.134778 -0.70538 0.695898 0.116583 -0.69512 0.709378 0.022957 -0.997119 0.072298 -0.001092 -0.996963 0.077867 0.116583 -0.69512 0.709378 0.108239 -0.702525 0.70338 0.044377 -0.996579 0.06972 0.022957 -0.997119 0.072298 0.061578 -0.145953 0.987373 0.061578 -0.145953 0.987373 0.06792 -0.141445 0.987613 0.06792 -0.141445 0.987613 0.06792 -0.141445 0.987613 0.06792 -0.141445 0.987613 0.085704 -0.133365 0.987354 0.085704 -0.133365 0.987354 0.085704 -0.133365 0.987354 0.085704 -0.133365 0.987354 0.115182 -0.126916 0.985203 0.115182 -0.126916 0.985203 0.184657 -0.098032 0.977902 0.184657 -0.098032 0.977902 0.183761 -0.098324 0.978041 0.183761 -0.098324 0.978041 0.155924 -0.121472 0.980272 0.155924 -0.121472 0.980272 0.191946 -0.116814 0.974429 0.191946 -0.116814 0.974429 0.191946 -0.116814 0.974429 0.191946 -0.116814 0.974429 0.201306 -0.112496 0.973047 0.201306 -0.112496 0.973047 0.201306 -0.112496 0.973047 0.201306 -0.112496 0.973047 0.194038 -0.107891 0.975043 0.194038 -0.107891 0.975043 0.194038 -0.107891 0.975043 0.194038 -0.107891 0.975043 0.191234 -0.103258 0.976098 0.191234 -0.103258 0.976098 0.191234 -0.103258 0.976098 0.191234 -0.103258 0.976098 0.189875 -0.099317 0.976772 0.189875 -0.099317 0.976772 0.189875 -0.099317 0.976772 0.189875 -0.099317 0.976772 0.187133 -0.096975 0.977536 0.187133 -0.096975 0.977536 0.187133 -0.096975 0.977536 0.187133 -0.096975 0.977536 0.186235 -0.0963089 0.977773 0.185961 -0.096342 0.977822 0.185961 -0.096342 0.977822 0.185961 -0.096342 0.977822 0.185961 -0.096342 0.977822 0.185884 -0.096698 0.977802 0.185884 -0.096698 0.977802 0.185884 -0.096698 0.977802 0.185884 -0.096698 0.977802 0.185817 -0.09738 0.977747 0.185817 -0.09738 0.977747 0.185817 -0.09738 0.977747 0.185817 -0.09738 0.977747 0.184657 -0.098032 0.977902 0.184657 -0.098032 0.977902 0.15186 0.988312 0.013374 0.091552 0.995536 0.022936 -0.026661 0.999633 0.004783 0.206543 0.977774 -0.036018 0.077799 0.996743 0.021245 0.04564 0.99854 0.028885 0.091552 0.995536 0.022936 0.15186 0.988312 0.013374 -0.01151 0.999733 0.020032 -0.019586 0.99944 0.027111 0.04564 0.99854 0.028885 0.077799 0.996743 0.021245 -0.123343 0.992293 0.011913 -0.113549 0.993366 0.018177 -0.019586 0.99944 0.027111 -0.01151 0.999733 0.020032 -0.254655 0.967032 0 -0.243012 0.97002 0.002582 -0.113549 0.993366 0.018177 -0.123343 0.992293 0.011913 -0.384519 0.923045 -0.011552 -0.38179 0.924127 -0.014997 -0.243012 0.97002 0.002582 -0.254655 0.967032 0 -0.501708 0.864765 -0.021688 -0.501029 0.864916 -0.029841 -0.38179 0.924127 -0.014997 -0.384519 0.923045 -0.011552 -0.610068 0.791739 -0.031092 -0.608524 0.792357 -0.043233 -0.501029 0.864916 -0.029841 -0.501708 0.864765 -0.021688 -0.707799 0.705301 -0.03964 -0.705484 0.706542 -0.055603 -0.608524 0.792357 -0.043233 -0.610068 0.791739 -0.031092 -0.793306 0.606989 -0.047222 -0.790411 0.608929 -0.066759 -0.705484 0.706542 -0.055603 -0.707799 0.705301 -0.03964 -0.865222 0.498502 -0.053736 -0.861991 0.501115 -0.076517 -0.790411 0.608929 -0.066759 -0.793306 0.606989 -0.047222 -0.922401 0.381685 -0.059095 -0.919087 0.384842 -0.084704 -0.861991 0.501115 -0.076517 -0.865222 0.498502 -0.053736 -0.963939 0.258504 -0.063222 -0.960755 0.261994 -0.091156 -0.919087 0.384842 -0.084704 -0.922401 0.381685 -0.059095 -0.989179 0.131 -0.066051 -0.986269 0.134567 -0.095735 -0.960755 0.261994 -0.091156 -0.963939 0.258504 -0.063222 -0.997716 0.001282 -0.067532 -0.995143 0.004678 -0.098326 -0.986269 0.134567 -0.095735 -0.989179 0.131 -0.066051 -0.989401 -0.128498 -0.067629 -0.987159 -0.125478 -0.098851 -0.995143 0.004678 -0.098326 -0.997716 0.001282 -0.067532 -0.964348 -0.25619 -0.066323 -0.962386 -0.253675 -0.097276 -0.987159 -0.125478 -0.098851 -0.989401 -0.128498 -0.067629 -0.922936 -0.379661 -0.063614 -0.921187 -0.377693 -0.093608 -0.962386 -0.253675 -0.097276 -0.964348 -0.25619 -0.066323 -0.865803 -0.496833 -0.059522 -0.864217 -0.495381 -0.087904 -0.921187 -0.377693 -0.093608 -0.922936 -0.379661 -0.063614 -0.793847 -0.605707 -0.054087 -0.792405 -0.604692 -0.08026 -0.864217 -0.495381 -0.087904 -0.865803 -0.496833 -0.059522 -0.708224 -0.704397 -0.047371 -0.706942 -0.703718 -0.070812 -0.792405 -0.604692 -0.08026 -0.793847 -0.605707 -0.054087 -0.610325 -0.791168 -0.039459 -0.609246 -0.790729 -0.05973 -0.706942 -0.703718 -0.070812 -0.708224 -0.704397 -0.047371 -0.501776 -0.864461 -0.030456 -0.500949 -0.864188 -0.047209 -0.609246 -0.790729 -0.05973 -0.610325 -0.791168 -0.039459 -0.384412 -0.922934 -0.020492 -0.383876 -0.922778 -0.033471 -0.500949 -0.864188 -0.047209 -0.501776 -0.864461 -0.030456 -0.254457 -0.967044 -0.008784 -0.24848 -0.968492 -0.016771 -0.383876 -0.922778 -0.033471 -0.384412 -0.922934 -0.020492 -0.123112 -0.992387 0.003291 -0.114042 -0.993476 0 -0.24848 -0.968492 -0.016771 -0.254457 -0.967044 -0.008784 0.000407 -0.999911 0.013344 0.017872 -0.999719 0.01559 -0.114042 -0.993476 0 -0.123112 -0.992387 0.003291 0.168876 -0.985292 0.026087 0.192088 -0.980811 0.033358 0.017872 -0.999719 0.01559 0.000407 -0.999911 0.013344 0.350573 -0.9356 0.041844 0.364185 -0.930147 0.046853 0.192088 -0.980811 0.033358 0.168876 -0.985292 0.026087 0.45612 -0.888306 0.053546 0.44131 -0.895993 0.049416 0.364185 -0.930147 0.046853 0.350573 -0.9356 0.041844 0.44131 -0.895993 0.049416 0.45612 -0.888306 0.053546 0.521072 -0.851615 0.056884 0.493499 -0.868564 0.045337 -0.919087 0.384842 -0.084704 -0.916085 0.389939 -0.093464 -0.858936 0.50538 -0.08258 -0.861991 0.501115 -0.076517 -0.960755 0.261994 -0.091156 -0.958104 0.267485 -0.102411 -0.916085 0.389939 -0.093464 -0.919087 0.384842 -0.084704 -0.986269 0.134567 -0.095735 -0.984119 0.13995 -0.109198 -0.958104 0.267485 -0.102411 -0.960755 0.261994 -0.091156 -0.995143 0.004678 -0.098326 -0.993478 0.009482 -0.113633 -0.984119 0.13995 -0.109198 -0.986269 0.134567 -0.095735 -0.987159 -0.125478 -0.098851 -0.985825 -0.121619 -0.115576 -0.993478 0.009482 -0.113633 -0.995143 0.004678 -0.098326 -0.962386 -0.253675 -0.097276 -0.961148 -0.25096 -0.11495 -0.985825 -0.121619 -0.115576 -0.987159 -0.125478 -0.098851 -0.921187 -0.377693 -0.093608 -0.919807 -0.376121 -0.11175 -0.961148 -0.25096 -0.11495 -0.962386 -0.253675 -0.097276 -0.864217 -0.495381 -0.087904 -0.862519 -0.494788 -0.106041 -0.919807 -0.376121 -0.11175 -0.921187 -0.377693 -0.093608 -0.792405 -0.604692 -0.08026 -0.790324 -0.604807 -0.097956 -0.862519 -0.494788 -0.106041 -0.864217 -0.495381 -0.087904 -0.706942 -0.703718 -0.070812 -0.704541 -0.704226 -0.087681 -0.790324 -0.604807 -0.097956 -0.792405 -0.604692 -0.08026 -0.609246 -0.790729 -0.05973 -0.606694 -0.791347 -0.075447 -0.704541 -0.704226 -0.087681 -0.706942 -0.703718 -0.070812 -0.500949 -0.864188 -0.047209 -0.493902 -0.867398 -0.06067 -0.606694 -0.791347 -0.075447 -0.609246 -0.790729 -0.05973 -0.383876 -0.922778 -0.033471 -0.382886 -0.922658 -0.045828 -0.493902 -0.867398 -0.06067 -0.500949 -0.864188 -0.047209 -0.24848 -0.968492 -0.016771 -0.251749 -0.967336 -0.029707 -0.382886 -0.922658 -0.045828 -0.383876 -0.922778 -0.033471 -0.114042 -0.993476 0 -0.103546 -0.994555 -0.011814 -0.251749 -0.967336 -0.029707 -0.24848 -0.968492 -0.016771 0.017872 -0.999719 0.01559 0.047274 -0.998855 0.007315 -0.103546 -0.994555 -0.011814 -0.114042 -0.993476 0 0.192088 -0.980811 0.033358 0.21105 -0.977133 0.025867 0.047274 -0.998855 0.007315 0.017872 -0.999719 0.01559 0.364185 -0.930147 0.046853 0.341122 -0.939464 0.032302 0.21105 -0.977133 0.025867 0.192088 -0.980811 0.033358 0.44131 -0.895993 0.049416 0.382622 -0.923584 0.024365 0.341122 -0.939464 0.032302 0.364185 -0.930147 0.046853 0.493499 -0.868564 0.045337 0.28338 -0.95897 0.008443 0.382622 -0.923584 0.024365 0.44131 -0.895993 0.049416 0.091552 0.995536 0.022936 0.012182 0.999076 0.041221 -0.341884 0.939737 -0.003147 -0.026661 0.999633 0.004783 0.04564 0.99854 0.028885 0.001559 0.999067 0.043156 0.012182 0.999076 0.041221 0.091552 0.995536 0.022936 -0.019586 0.99944 0.027111 -0.031621 0.998667 0.0408 0.001559 0.999067 0.043156 0.04564 0.99854 0.028885 -0.113549 0.993366 0.018177 -0.101292 0.994328 0.032422 -0.031621 0.998667 0.0408 -0.019586 0.99944 0.027111 -0.243012 0.97002 0.002582 -0.225252 0.974176 0.015602 -0.101292 0.994328 0.032422 -0.113549 0.993366 0.018177 -0.38179 0.924127 -0.014997 -0.376 0.9266 -0.006016 -0.225252 0.974176 0.015602 -0.243012 0.97002 0.002582 -0.501029 0.864916 -0.029841 -0.501464 0.864828 -0.024624 -0.376 0.9266 -0.006016 -0.38179 0.924127 -0.014997 -0.608524 0.792357 -0.043233 -0.60766 0.79315 -0.040777 -0.501464 0.864828 -0.024624 -0.501029 0.864916 -0.029841 -0.705484 0.706542 -0.055603 -0.703521 0.708466 -0.055986 -0.60766 0.79315 -0.040777 -0.608524 0.792357 -0.043233 -0.790411 0.608929 -0.066759 -0.787695 0.612075 -0.070004 -0.703521 0.708466 -0.055986 -0.705484 0.706542 -0.055603 -0.861991 0.501115 -0.076517 -0.858936 0.50538 -0.08258 -0.787695 0.612075 -0.070004 -0.790411 0.608929 -0.066759 -0.958104 0.267485 -0.102411 -0.960409 0.269549 -0.070409 -0.918223 0.391464 -0.060189 -0.916085 0.389939 -0.093464 -0.984119 0.13995 -0.109198 -0.986679 0.142182 -0.079046 -0.960409 0.269549 -0.070409 -0.958104 0.267485 -0.102411 -0.993478 0.009482 -0.113633 -0.996239 0.011476 -0.085886 -0.986679 0.142182 -0.079046 -0.984119 0.13995 -0.109198 -0.985825 -0.121619 -0.115576 -0.988586 -0.120257 -0.09075 -0.996239 0.011476 -0.085886 -0.993478 0.009482 -0.113633 -0.961148 -0.25096 -0.11495 -0.963577 -0.250556 -0.093492 -0.988586 -0.120257 -0.09075 -0.985825 -0.121619 -0.115576 -0.919807 -0.376121 -0.11175 -0.921487 -0.37686 -0.094016 -0.963577 -0.250556 -0.093492 -0.961148 -0.25096 -0.11495 -0.862519 -0.494788 -0.106041 -0.863021 -0.496668 -0.092284 -0.921487 -0.37686 -0.094016 -0.919807 -0.376121 -0.11175 -0.790324 -0.604807 -0.097956 -0.789314 -0.607604 -0.088322 -0.863021 -0.496668 -0.092284 -0.862519 -0.494788 -0.106041 -0.704541 -0.704226 -0.087681 -0.701893 -0.70752 -0.082231 -0.789314 -0.607604 -0.088322 -0.790324 -0.604807 -0.097956 -0.606694 -0.791347 -0.075447 -0.602556 -0.794622 -0.074178 -0.701893 -0.70752 -0.082231 -0.704541 -0.704226 -0.087681 -0.493902 -0.867398 -0.06067 -0.483175 -0.873221 -0.063454 -0.602556 -0.794622 -0.074178 -0.606694 -0.791347 -0.075447 -0.382886 -0.922658 -0.045828 -0.377238 -0.924591 -0.053137 -0.483175 -0.873221 -0.063454 -0.493902 -0.867398 -0.06067 -0.251749 -0.967336 -0.029707 -0.262551 -0.964018 -0.041672 -0.377238 -0.924591 -0.053137 -0.382886 -0.922658 -0.045828 -0.103546 -0.994555 -0.011814 -0.105891 -0.994056 -0.025279 -0.262551 -0.964018 -0.041672 -0.251749 -0.967336 -0.029707 0.047274 -0.998855 0.007315 0.040865 -0.999115 -0.009958 -0.105891 -0.994056 -0.025279 -0.103546 -0.994555 -0.011814 0.21105 -0.977133 0.025867 0.17101 -0.985269 0.000187 0.040865 -0.999115 -0.009958 0.047274 -0.998855 0.007315 0.341122 -0.939464 0.032302 0.265742 -0.964044 0.000846 0.17101 -0.985269 0.000187 0.21105 -0.977133 0.025867 0.382622 -0.923584 0.024365 0.327716 -0.944776 0.000512 0.265742 -0.964044 0.000846 0.341122 -0.939464 0.032302 0.28338 -0.95897 0.008443 0.148624 -0.988708 -0.01918 0.327716 -0.944776 0.000512 0.382622 -0.923584 0.024365 0.012182 0.999076 0.041221 -0.00404 0.997931 0.064158 0.00312 0.997829 0.065786 -0.341884 0.939737 -0.003147 0.001559 0.999067 0.043156 -0.015606 0.997932 0.062354 -0.00404 0.997931 0.064158 0.012182 0.999076 0.041221 -0.031621 0.998667 0.0408 -0.042973 0.997283 0.059826 -0.015606 0.997932 0.062354 0.001559 0.999067 0.043156 -0.101292 0.994328 0.032422 -0.112955 0.992212 0.052502 -0.042973 0.997283 0.059826 -0.031621 0.998667 0.0408 -0.225252 0.974176 0.015602 -0.233512 0.971549 0.039544 -0.112955 0.992212 0.052502 -0.101292 0.994328 0.032422 -0.376 0.9266 -0.006016 -0.379744 0.924815 0.0226 -0.233512 0.971549 0.039544 -0.225252 0.974176 0.015602 -0.501464 0.864828 -0.024624 -0.506983 0.861933 0.006322 -0.379744 0.924815 0.0226 -0.376 0.9266 -0.006016 -0.60766 0.79315 -0.040777 -0.611952 0.790852 -0.00823 -0.506983 0.861933 0.006322 -0.501464 0.864828 -0.024624 -0.703521 0.708466 -0.055986 -0.706776 0.707083 -0.022392 -0.611952 0.790852 -0.00823 -0.60766 0.79315 -0.040777 -0.787695 0.612075 -0.070004 -0.790237 0.611747 -0.035934 -0.706776 0.707083 -0.022392 -0.703521 0.708466 -0.055986 -0.858936 0.50538 -0.08258 -0.861121 0.50607 -0.048616 -0.790237 0.611747 -0.035934 -0.787695 0.612075 -0.070004 -0.916085 0.389939 -0.093464 -0.918223 0.391464 -0.060189 -0.861121 0.50607 -0.048616 -0.858936 0.50538 -0.08258 -0.115183 -0.126916 0.985203 -0.155924 -0.121472 0.980272 -0.155924 -0.121472 0.980272 -0.115183 -0.126916 0.985203 -0.009592 0.988966 0.147833 -0.110065 0.609678 0.784971 -0.071845 0.60094 0.796059 0.010998 0.988573 0.150341 -0.036897 0.988757 0.144906 -0.169921 0.59707 0.783986 -0.110065 0.609678 0.784971 -0.009592 0.988966 0.147833 -0.074397 0.987218 0.140942 -0.251655 0.55068 0.795878 -0.169921 0.59707 0.783986 -0.036897 0.988757 0.144906 -0.161345 0.978227 0.130534 -0.363403 0.493811 0.789993 -0.251655 0.55068 0.795878 -0.074397 0.987218 0.140942 -0.282344 0.952362 0.115273 -0.459453 0.430724 0.776775 -0.363403 0.493811 0.789993 -0.161345 0.978227 0.130534 -0.410669 0.906653 0.0965949 -0.535111 0.372488 0.758227 -0.459453 0.430724 0.776775 -0.282344 0.952362 0.115273 -0.525855 0.847207 0.075613 -0.593312 0.328309 0.734979 -0.535111 0.372488 0.758227 -0.410669 0.906653 0.0965949 -0.625087 0.778701 0.053765 -0.642511 0.29087 0.708925 -0.593312 0.328309 0.734979 -0.525855 0.847207 0.075613 -0.714769 0.69866 0.031294 -0.685501 0.254178 0.682262 -0.642511 0.29087 0.708925 -0.625087 0.778701 0.053765 -0.794343 0.607405 0.008865 -0.725205 0.214904 0.654136 -0.685501 0.254178 0.682262 -0.714769 0.69866 0.031294 -0.862801 0.505384 -0.012722 -0.762458 0.167901 0.624873 -0.725205 0.214904 0.654136 -0.794343 0.607405 0.008865 -0.918775 0.393436 -0.032575 -0.794807 0.110388 0.596738 -0.762458 0.167901 0.624873 -0.862801 0.505384 -0.012722 -0.96076 0.272874 -0.049792 -0.819605 0.042628 0.571341 -0.794807 0.110388 0.596738 -0.918775 0.393436 -0.032575 -0.987318 0.145481 -0.063546 -0.834812 -0.033308 0.549527 -0.819605 0.042628 0.571341 -0.96076 0.272874 -0.049792 -0.997228 0.013511 -0.073162 -0.839046 -0.114537 0.531867 -0.834812 -0.033308 0.549527 -0.987318 0.145481 -0.063546 -0.989644 -0.120388 -0.078174 -0.831703 -0.197676 0.518839 -0.839046 -0.114537 0.531867 -0.997228 0.013511 -0.073162 -0.964227 -0.253224 -0.078383 -0.813055 -0.279425 0.510748 -0.831703 -0.197676 0.518839 -0.989644 -0.120388 -0.078174 -0.921295 -0.381779 -0.0739 -0.783851 -0.356995 0.508067 -0.813055 -0.279425 0.510748 -0.964227 -0.253224 -0.078383 -0.861893 -0.502885 -0.065168 -0.74503 -0.427884 0.511709 -0.783851 -0.356995 0.508067 -0.921295 -0.381779 -0.0739 -0.787757 -0.613708 -0.052929 -0.697681 -0.489711 0.5229 -0.74503 -0.427884 0.511709 -0.861893 -0.502885 -0.065168 -0.701062 -0.712081 -0.038124 -0.643012 -0.540107 0.542973 -0.697681 -0.489711 0.5229 -0.787757 -0.613708 -0.052929 -0.604017 -0.796674 -0.02175 -0.582399 -0.576896 0.572715 -0.643012 -0.540107 0.542973 -0.701062 -0.712081 -0.038124 -0.492226 -0.870454 -0.004817 -0.516912 -0.599818 0.610753 -0.582399 -0.576896 0.572715 -0.604017 -0.796674 -0.02175 -0.384383 -0.923109 0.010951 -0.450105 -0.611291 0.650944 -0.516912 -0.599818 0.610753 -0.492226 -0.870454 -0.004817 -0.272503 -0.961766 0.027347 -0.380537 -0.620258 0.68591 -0.450105 -0.611291 0.650944 -0.384383 -0.923109 0.010951 -0.130502 -0.990367 0.046295 -0.286946 -0.636207 0.716173 -0.380537 -0.620258 0.68591 -0.272503 -0.961766 0.027347 -0.006007 -0.997927 0.06408 -0.16969 -0.650751 0.740087 -0.286946 -0.636207 0.716173 -0.130502 -0.990367 0.046295 0.097294 -0.992509 0.073883 -0.067092 -0.662641 0.745926 -0.16969 -0.650751 0.740087 -0.006007 -0.997927 0.06408 0.191674 -0.97883 0.071785 0.020373 -0.680506 0.732459 -0.067092 -0.662641 0.745926 0.097294 -0.992509 0.073883 0.299512 -0.952283 0.058734 0.125452 -0.702629 0.70041 0.020373 -0.680506 0.732459 0.191674 -0.97883 0.071785 0.366229 -0.929221 0.04924 0.185918 -0.71252 0.676572 0.125452 -0.702629 0.70041 0.299512 -0.952283 0.058734 0.185918 -0.71252 0.676572 -0.27495 0.512798 0.81329 -0.252241 0.537593 0.804592 0.125452 -0.702629 0.70041 0.125452 -0.702629 0.70041 -0.252241 0.537593 0.804592 -0.207046 0.58138 0.786847 0.020373 -0.680506 0.732459 0.020373 -0.680506 0.732459 -0.207046 0.58138 0.786847 -0.173244 0.609918 0.773296 -0.067092 -0.662641 0.745926 -0.067092 -0.662641 0.745926 -0.173244 0.609918 0.773296 -0.164728 0.620395 0.766795 -0.16969 -0.650751 0.740087 -0.16969 -0.650751 0.740087 -0.164728 0.620395 0.766795 -0.141191 0.619577 0.772133 -0.286946 -0.636207 0.716173 -0.286946 -0.636207 0.716173 -0.141191 0.619577 0.772133 -0.082812 0.600723 0.795156 -0.380537 -0.620258 0.68591 -0.380537 -0.620258 0.68591 -0.082812 0.600723 0.795156 -0.02222 0.557983 0.829555 -0.450105 -0.611291 0.650944 -0.450105 -0.611291 0.650944 -0.02222 0.557983 0.829555 0.031996 0.501024 0.864842 -0.516912 -0.599818 0.610753 -0.516912 -0.599818 0.610753 0.031996 0.501024 0.864842 0.088637 0.437314 0.89493 -0.582399 -0.576896 0.572715 -0.582399 -0.576896 0.572715 0.088637 0.437314 0.89493 0.153269 0.366662 0.917642 -0.643012 -0.540107 0.542973 -0.643012 -0.540107 0.542973 0.153269 0.366662 0.917642 0.221057 0.286889 0.93211 -0.697681 -0.489711 0.5229 -0.697681 -0.489711 0.5229 0.221057 0.286889 0.93211 0.284124 0.198507 0.938013 -0.74503 -0.427884 0.511709 -0.74503 -0.427884 0.511709 0.284124 0.198507 0.938013 0.33659 0.104246 0.935863 -0.783851 -0.356995 0.508067 -0.783851 -0.356995 0.508067 0.33659 0.104246 0.935863 0.375396 0.007311 0.926836 -0.813055 -0.279425 0.510748 -0.813055 -0.279425 0.510748 0.375396 0.007311 0.926836 0.399569 -0.089777 0.912296 -0.831703 -0.197676 0.518839 -0.831703 -0.197676 0.518839 0.399569 -0.089777 0.912296 0.409468 -0.185225 0.893324 -0.839046 -0.114537 0.531867 -0.839046 -0.114537 0.531867 0.409468 -0.185225 0.893324 0.406217 -0.277894 0.870496 -0.834812 -0.033308 0.549527 -0.834812 -0.033308 0.549527 0.406217 -0.277894 0.870496 0.391248 -0.366987 0.843947 -0.819605 0.042628 0.571341 -0.819605 0.042628 0.571341 0.391248 -0.366987 0.843947 0.366406 -0.451618 0.813504 -0.794807 0.110388 0.596738 -0.794807 0.110388 0.596738 0.366406 -0.451618 0.813504 0.333405 -0.531241 0.778861 -0.762458 0.167901 0.624873 -0.762458 0.167901 0.624873 0.333405 -0.531241 0.778861 0.292011 -0.605559 0.740289 -0.725205 0.214904 0.654136 -0.725205 0.214904 0.654136 0.292011 -0.605559 0.740289 0.239291 -0.673039 0.699827 -0.685501 0.254178 0.682262 -0.685501 0.254178 0.682262 0.239291 -0.673039 0.699827 0.177171 -0.728596 0.661633 -0.642511 0.29087 0.708925 -0.642511 0.29087 0.708925 0.177171 -0.728596 0.661633 0.108663 -0.769837 0.628923 -0.593312 0.328309 0.734979 -0.593312 0.328309 0.734979 0.108663 -0.769837 0.628923 0.026097 -0.795006 0.60604 -0.535111 0.372488 0.758227 -0.535111 0.372488 0.758227 0.026097 -0.795006 0.60604 -0.061689 -0.795896 0.602282 -0.459453 0.430724 0.776775 -0.459453 0.430724 0.776775 -0.061689 -0.795896 0.602282 -0.130682 -0.774696 0.618683 -0.363403 0.493811 0.789993 -0.363403 0.493811 0.789993 -0.130682 -0.774696 0.618683 -0.151409 -0.741583 0.653552 -0.251655 0.55068 0.795878 -0.251655 0.55068 0.795878 -0.151409 -0.741583 0.653552 -0.134778 -0.70538 0.695898 -0.169921 0.59707 0.783986 -0.169921 0.59707 0.783986 -0.134778 -0.70538 0.695898 -0.116583 -0.69512 0.709378 -0.110065 0.609678 0.784971 -0.110065 0.609678 0.784971 -0.116583 -0.69512 0.709378 -0.108238 -0.702524 0.70338 -0.071845 0.60094 0.796059 -0.27495 0.512798 0.81329 -0.331255 0.92607 0.180731 -0.285445 0.939919 0.187281 -0.252241 0.537593 0.804592 -0.252241 0.537593 0.804592 -0.285445 0.939919 0.187281 -0.189037 0.96218 0.196149 -0.207046 0.58138 0.786847 -0.207046 0.58138 0.786847 -0.189037 0.96218 0.196149 -0.105574 0.97262 0.207037 -0.173244 0.609918 0.773296 -0.173244 0.609918 0.773296 -0.105574 0.97262 0.207037 -0.037213 0.971985 0.232079 -0.164728 0.620395 0.766795 -0.164728 0.620395 0.766795 -0.037213 0.971985 0.232079 0.059893 0.963086 0.262446 -0.141191 0.619577 0.772133 -0.141191 0.619577 0.772133 0.059893 0.963086 0.262446 0.177393 0.94041 0.290106 -0.082812 0.600723 0.795156 -0.082812 0.600723 0.795156 0.177393 0.94041 0.290106 0.284084 0.904495 0.318095 -0.02222 0.557983 0.829555 -0.02222 0.557983 0.829555 0.284084 0.904495 0.318095 0.385745 0.856277 0.343497 0.031996 0.501024 0.864842 0.031996 0.501024 0.864842 0.385745 0.856277 0.343497 0.489669 0.792436 0.363688 0.088637 0.437314 0.89493 0.088637 0.437314 0.89493 0.489669 0.792436 0.363688 0.59559 0.708508 0.378535 0.153269 0.366662 0.917642 0.153269 0.366662 0.917642 0.59559 0.708508 0.378535 0.695454 0.60429 0.388816 0.221057 0.286889 0.93211 0.221057 0.286889 0.93211 0.695454 0.60429 0.388816 0.740611 0.545884 0.391798 0.78141 0.483457 0.394547 0.284124 0.198507 0.938013 0.284124 0.198507 0.938013 0.78141 0.483457 0.394547 0.848932 0.351146 0.394983 0.33659 0.104246 0.935863 0.33659 0.104246 0.935863 0.848932 0.351146 0.394983 0.896197 0.212405 0.389506 0.375396 0.007311 0.926836 0.375396 0.007311 0.926836 0.896197 0.212405 0.389506 0.922961 0.071429 0.378207 0.399569 -0.089777 0.912296 0.399569 -0.089777 0.912296 0.922961 0.071429 0.378207 0.929716 -0.068365 0.361876 0.409468 -0.185225 0.893324 0.409468 -0.185225 0.893324 0.929716 -0.068365 0.361876 0.91749 -0.203868 0.341541 0.406217 -0.277894 0.870496 0.406217 -0.277894 0.870496 0.91749 -0.203868 0.341541 0.887968 -0.332231 0.318019 0.391248 -0.366987 0.843947 0.391248 -0.366987 0.843947 0.887968 -0.332231 0.318019 0.843595 -0.450796 0.291772 0.366406 -0.451618 0.813504 0.366406 -0.451618 0.813504 0.843595 -0.450796 0.291772 0.787193 -0.557811 0.263009 0.333405 -0.531241 0.778861 0.333405 -0.531241 0.778861 0.787193 -0.557811 0.263009 0.720301 -0.653627 0.232247 0.292011 -0.605559 0.740289 0.292011 -0.605559 0.740289 0.720301 -0.653627 0.232247 0.641618 -0.740197 0.201086 0.239291 -0.673039 0.699827 0.239291 -0.673039 0.699827 0.641618 -0.740197 0.201086 0.552767 -0.815468 0.171643 0.177171 -0.728596 0.661633 0.177171 -0.728596 0.661633 0.552767 -0.815468 0.171643 0.455097 -0.878523 0.145201 0.108663 -0.769837 0.628923 0.108663 -0.769837 0.628923 0.455097 -0.878523 0.145201 0.338644 -0.932844 0.122973 0.026097 -0.795006 0.60604 0.026097 -0.795006 0.60604 0.338644 -0.932844 0.122973 0.212294 -0.971366 0.106674 -0.061689 -0.795896 0.602282 -0.061689 -0.795896 0.602282 0.212294 -0.971366 0.106674 0.101873 -0.990252 0.09499 -0.130682 -0.774696 0.618683 -0.130682 -0.774696 0.618683 0.101873 -0.990252 0.09499 0.028192 -0.995957 0.085293 -0.151409 -0.741583 0.653552 -0.151409 -0.741583 0.653552 0.028192 -0.995957 0.085293 0.001092 -0.996963 0.077867 -0.134778 -0.70538 0.695898 -0.134778 -0.70538 0.695898 0.001092 -0.996963 0.077867 -0.022957 -0.997119 0.072298 -0.116583 -0.69512 0.709378 -0.116583 -0.69512 0.709378 -0.022957 -0.997119 0.072298 -0.044377 -0.996579 0.06972 -0.108238 -0.702524 0.70338 -0.061578 -0.145953 0.987373 -0.06792 -0.141445 0.987613 -0.06792 -0.141445 0.987613 -0.061578 -0.145953 0.987373 -0.06792 -0.141445 0.987613 -0.085704 -0.133365 0.987354 -0.085704 -0.133365 0.987354 -0.06792 -0.141445 0.987613 -0.085704 -0.133365 0.987354 -0.115183 -0.126916 0.985203 -0.115183 -0.126916 0.985203 -0.085704 -0.133365 0.987354 -0.184659 -0.098032 0.977901 -0.183767 -0.098322 0.97804 -0.183767 -0.098322 0.97804 -0.184659 -0.098032 0.977901 -0.155924 -0.121472 0.980272 -0.191947 -0.116814 0.974428 -0.191947 -0.116814 0.974428 -0.155924 -0.121472 0.980272 -0.191947 -0.116814 0.974428 -0.201306 -0.112495 0.973047 -0.201306 -0.112495 0.973047 -0.191947 -0.116814 0.974428 -0.201306 -0.112495 0.973047 -0.194039 -0.107891 0.975043 -0.194039 -0.107891 0.975043 -0.201306 -0.112495 0.973047 -0.194039 -0.107891 0.975043 -0.191234 -0.103258 0.976098 -0.191234 -0.103258 0.976098 -0.194039 -0.107891 0.975043 -0.191234 -0.103258 0.976098 -0.189875 -0.099317 0.976772 -0.189875 -0.099317 0.976772 -0.191234 -0.103258 0.976098 -0.189875 -0.099317 0.976772 -0.187131 -0.096975 0.977537 -0.187131 -0.096975 0.977537 -0.189875 -0.099317 0.976772 -0.187131 -0.096975 0.977537 -0.185963 -0.096342 0.977822 -0.185963 -0.096342 0.977822 -0.186233 -0.096309 0.977774 -0.187131 -0.096975 0.977537 -0.185963 -0.096342 0.977822 -0.185886 -0.096697 0.977802 -0.185886 -0.096697 0.977802 -0.185963 -0.096342 0.977822 -0.185886 -0.096697 0.977802 -0.185816 -0.097381 0.977747 -0.185816 -0.097381 0.977747 -0.185886 -0.096697 0.977802 -0.185816 -0.097381 0.977747 -0.184659 -0.098032 0.977901 -0.184659 -0.098032 0.977901 -0.185816 -0.097381 0.977747 -0.00404 0.997931 0.064158 -0.009592 0.988966 0.147833 0.010998 0.988573 0.150341 0.00312 0.997829 0.065786 -0.015606 0.997932 0.062354 -0.036897 0.988757 0.144906 -0.009592 0.988966 0.147833 -0.00404 0.997931 0.064158 -0.042973 0.997283 0.059826 -0.074397 0.987218 0.140942 -0.036897 0.988757 0.144906 -0.015606 0.997932 0.062354 -0.112955 0.992212 0.052502 -0.161345 0.978227 0.130534 -0.074397 0.987218 0.140942 -0.042973 0.997283 0.059826 -0.233512 0.971549 0.039544 -0.282344 0.952362 0.115273 -0.161345 0.978227 0.130534 -0.112955 0.992212 0.052502 -0.379744 0.924815 0.0226 -0.410669 0.906653 0.0965949 -0.282344 0.952362 0.115273 -0.233512 0.971549 0.039544 -0.506983 0.861933 0.006322 -0.525855 0.847207 0.075613 -0.410669 0.906653 0.0965949 -0.379744 0.924815 0.0226 -0.611952 0.790852 -0.00823 -0.625087 0.778701 0.053765 -0.525855 0.847207 0.075613 -0.506983 0.861933 0.006322 -0.706776 0.707083 -0.022392 -0.714769 0.69866 0.031294 -0.625087 0.778701 0.053765 -0.611952 0.790852 -0.00823 -0.790237 0.611747 -0.035934 -0.794343 0.607405 0.008865 -0.714769 0.69866 0.031294 -0.706776 0.707083 -0.022392 -0.861121 0.50607 -0.048616 -0.862801 0.505384 -0.012722 -0.794343 0.607405 0.008865 -0.790237 0.611747 -0.035934 -0.918223 0.391464 -0.060189 -0.918775 0.393436 -0.032575 -0.862801 0.505384 -0.012722 -0.861121 0.50607 -0.048616 -0.960409 0.269549 -0.070409 -0.96076 0.272874 -0.049792 -0.918775 0.393436 -0.032575 -0.918223 0.391464 -0.060189 -0.986679 0.142182 -0.079046 -0.987318 0.145481 -0.063546 -0.96076 0.272874 -0.049792 -0.960409 0.269549 -0.070409 -0.996239 0.011476 -0.085886 -0.997228 0.013511 -0.073162 -0.987318 0.145481 -0.063546 -0.986679 0.142182 -0.079046 -0.988586 -0.120257 -0.09075 -0.989644 -0.120388 -0.078174 -0.997228 0.013511 -0.073162 -0.996239 0.011476 -0.085886 -0.963577 -0.250556 -0.093492 -0.964227 -0.253224 -0.078383 -0.989644 -0.120388 -0.078174 -0.988586 -0.120257 -0.09075 -0.921487 -0.37686 -0.094016 -0.921295 -0.381779 -0.0739 -0.964227 -0.253224 -0.078383 -0.963577 -0.250556 -0.093492 -0.863021 -0.496668 -0.092284 -0.861893 -0.502885 -0.065168 -0.921295 -0.381779 -0.0739 -0.921487 -0.37686 -0.094016 -0.789314 -0.607604 -0.088322 -0.787757 -0.613708 -0.052929 -0.861893 -0.502885 -0.065168 -0.863021 -0.496668 -0.092284 -0.701893 -0.70752 -0.082231 -0.701062 -0.712081 -0.038124 -0.787757 -0.613708 -0.052929 -0.789314 -0.607604 -0.088322 -0.602556 -0.794622 -0.074178 -0.604017 -0.796674 -0.02175 -0.701062 -0.712081 -0.038124 -0.701893 -0.70752 -0.082231 -0.483175 -0.873221 -0.063454 -0.492226 -0.870454 -0.004817 -0.604017 -0.796674 -0.02175 -0.602556 -0.794622 -0.074178 -0.377238 -0.924591 -0.053137 -0.384383 -0.923109 0.010951 -0.492226 -0.870454 -0.004817 -0.483175 -0.873221 -0.063454 -0.262551 -0.964018 -0.041672 -0.272503 -0.961766 0.027347 -0.384383 -0.923109 0.010951 -0.377238 -0.924591 -0.053137 -0.105891 -0.994056 -0.025279 -0.130502 -0.990367 0.046295 -0.272503 -0.961766 0.027347 -0.262551 -0.964018 -0.041672 0.040865 -0.999115 -0.009958 -0.006007 -0.997927 0.06408 -0.130502 -0.990367 0.046295 -0.105891 -0.994056 -0.025279 0.17101 -0.985269 0.000187 0.097294 -0.992509 0.073883 -0.006007 -0.997927 0.06408 0.040865 -0.999115 -0.009958 0.265742 -0.964044 0.000846 0.191674 -0.97883 0.071785 0.097294 -0.992509 0.073883 0.17101 -0.985269 0.000187 0.327716 -0.944776 0.000512 0.299512 -0.952283 0.058734 0.191674 -0.97883 0.071785 0.265742 -0.964044 0.000846 0.148624 -0.988708 -0.01918 0.366229 -0.929221 0.04924 0.299512 -0.952283 0.058734 0.327716 -0.944776 0.000512 -0.445811 -0.894813 0.023721 -0.582844 -0.811787 0.035994 -0.557651 -0.828488 0.051316 -0.494411 -0.868045 0.045333 -0.604257 -0.796743 -0.008635 -0.604525 -0.796545 0.008104 -0.443938 -0.896051 0.003339 0 -0.999954 -0.009584 0.443938 -0.896051 0.003339 0.443454 -0.895984 0.023669 0.581495 -0.812748 0.036112 0.604526 -0.796544 0.00810399 0 0.994646 -0.103337 0 0.999165 -0.040857 0.175396 0.984084 -0.028556 0.175396 0.984084 -0.028556 0.341884 0.939737 -0.003147 0.026661 0.999633 0.004783 0.341884 0.939737 -0.003147 0.491005 0.870749 -0.026669 0.681279 0.731655 -0.023231 0.681279 0.731655 -0.023231 0.720979 0.692503 -0.02509 0.341884 0.939737 -0.003147 0 0.999165 -0.040857 0 0.999388 -0.03498 0.220583 0.974804 -0.033166 0.175396 0.984084 -0.028556 0.175396 0.984084 -0.028556 0.220583 0.974804 -0.033166 0.491005 0.870749 -0.026669 0.341884 0.939737 -0.003147 0.491005 0.870749 -0.026669 0.485327 0.874036 0.02279 0.677095 0.7357 0.016967 0.681279 0.731655 -0.023231 0.677095 0.7357 0.016967 0.799468 0.600105 0.026933 0.720979 0.692503 -0.02509 0.681279 0.731655 -0.023231 0 0.999388 -0.03498 0 0.999603 0.02818 0.228695 0.973098 0.027919 0.220583 0.974804 -0.033166 0.228695 0.973098 0.027919 0.485327 0.874036 0.02279 0.491005 0.870749 -0.026669 0.220583 0.974804 -0.033166 -0.148624 -0.988708 -0.01918 0.345437 -0.938439 -0.002476 0.146374 -0.988837 -0.027841 0.061083 -0.99702 -0.047115 0.677095 0.7357 0.016967 0.485327 0.874036 0.02279 0.465527 0.87919 0.101535 0.661766 0.744264 0.090209 0.465527 0.87919 0.101535 0.445593 0.879248 0.168434 0.650266 0.743289 0.157086 0.661766 0.744264 0.090209 0.650266 0.743289 0.157086 0.821776 0.551415 0.143615 0.826495 0.556863 0.082522 0.661766 0.744264 0.090209 0.826495 0.556863 0.082522 0.799468 0.600105 0.026933 0.677095 0.7357 0.016967 0.661766 0.744264 0.090209 0.228695 0.973098 0.027919 0 0.999603 0.02818 0 0.993613 0.112841 0.22857 0.967204 0.110782 0 0.993613 0.112841 0 0.984211 0.176998 0.223438 0.958867 0.17507 0.22857 0.967204 0.110782 0.223438 0.958867 0.17507 0.445593 0.879248 0.168434 0.465527 0.87919 0.101535 0.22857 0.967204 0.110782 0.465527 0.87919 0.101535 0.485327 0.874036 0.02279 0.228695 0.973098 0.027919 0.22857 0.967204 0.110782 0.146374 -0.988837 -0.027841 0.345437 -0.938439 -0.002476 0.436406 -0.899333 0.027397 0.190955 -0.981579 0.006223 0.436406 -0.899333 0.027397 0.441664 -0.896393 0.037577 0.215614 -0.976219 0.022503 0.190955 -0.981579 0.006223 0.215614 -0.976219 0.022503 0 -0.999866 0.016393 0 -0.999997 -0.002491 0.190955 -0.981579 0.006223 0 -0.999997 -0.002491 0 -0.999402 -0.034571 0.146374 -0.988837 -0.027841 0.190955 -0.981579 0.006223 0.863044 -0.503517 0.04032 0.842239 -0.53474 0.068455 0.661575 -0.74793 0.054025 0.685025 -0.727424 0.03994 0.661575 -0.74793 0.054025 0.441664 -0.896393 0.037577 0.436406 -0.899333 0.027397 0.685025 -0.727424 0.03994 0.436406 -0.899333 0.027397 0.345437 -0.938439 -0.002476 0.701376 -0.712132 0.030636 0.685025 -0.727424 0.03994 0.998462 0.019889 0.051741 0.994426 0.009551 0.105003 0.957377 -0.276295 0.084202 0.967423 -0.249596 0.042355 0.957377 -0.276295 0.084202 0.842239 -0.53474 0.068455 0.863044 -0.503517 0.04032 0.967423 -0.249596 0.042355 0.826495 0.556863 0.082522 0.821776 0.551415 0.143615 0.945571 0.299741 0.126688 0.951973 0.298456 0.068349 0.945571 0.299741 0.126688 0.994426 0.009551 0.105003 0.998462 0.019889 0.051741 0.951973 0.298456 0.068349 0.812854 0.545204 0.204988 0.637797 0.739162 0.216461 0.626748 0.727893 0.278134 0.799671 0.535857 0.270895 0.434895 0.872246 0.223727 0.219218 0.948784 0.227492 0.215496 0.934688 0.282702 0.427081 0.85927 0.281527 0 -0.998581 0.053258 0.222658 -0.973202 0.057457 0.222666 -0.966686 0.126243 0 -0.992501 0.122237 0.443355 -0.893641 0.069582 0.651749 -0.753327 0.087871 0.644214 -0.74842 0.157661 0.440564 -0.886995 0.138356 0.828149 -0.549418 0.11095 0.947056 -0.29032 0.137109 0.933433 -0.290426 0.210607 0.816663 -0.547379 0.18286 0.986448 0.001983 0.164063 0.937588 0.2928 0.187607 0.922756 0.286809 0.257415 0.97154 -0.000244 0.236875 0.419612 0.844517 0.332742 0.615237 0.714694 0.33271 0.626748 0.727893 0.278134 0.427081 0.85927 0.281527 0.747051 0.500768 0.437202 0.587685 0.68296 0.433811 0.561143 0.652377 0.509434 0.711556 0.477104 0.515809 0 0.943482 0.331423 0.211882 0.919253 0.331784 0.215496 0.934688 0.282702 0 0.959108 0.283041 0.401855 0.809028 0.428936 0.203263 0.882149 0.42485 0.194826 0.845807 0.496642 0.384603 0.774493 0.502236 0.434936 -0.875798 0.209306 0.220138 -0.955418 0.196765 0.222666 -0.966686 0.126243 0.440564 -0.886995 0.138356 0 -0.947546 0.319619 0.21234 -0.921922 0.323993 0.204365 -0.887598 0.412801 0 -0.912821 0.40836 0.803071 -0.538894 0.254305 0.634783 -0.737957 0.229063 0.644214 -0.74842 0.157661 0.816663 -0.547379 0.18286 0.418575 -0.843231 0.337277 0.608863 -0.708168 0.35747 0.583121 -0.678496 0.446781 0.402026 -0.810229 0.426502 0.952541 -0.000502 0.304411 0.91627 -0.285569 0.280892 0.933433 -0.290426 0.210607 0.97154 -0.000244 0.236875 0.767182 -0.515142 0.382178 0.872333 -0.27206 0.406224 0.830218 -0.259041 0.493594 0.732184 -0.491931 0.471074 0.784271 0.52553 0.329754 0.904487 0.281009 0.320838 0.922756 0.286809 0.257415 0.799671 0.535857 0.270895 0.905152 -0.000557 0.425088 0.859789 0.267243 0.435137 0.817397 0.254204 0.516954 0.86015 -0.000612 0.51004 0.35571 0.716604 0.599958 0.516939 0.601394 0.609179 0.561143 0.652377 0.509434 0.384603 0.774493 0.502236 0 0.806876 0.59072 0.180635 0.784628 0.593068 0.194826 0.845807 0.496642 0 0.869035 0.49475 0.372566 -0.751352 0.54467 0.190015 -0.825669 0.531193 0.204365 -0.887598 0.412801 0.402026 -0.810229 0.426502 0.672207 -0.452034 0.586347 0.538127 -0.626483 0.56386 0.583121 -0.678496 0.446781 0.732184 -0.491931 0.471074 0.785374 -0.000654 0.619022 0.759373 -0.237041 0.605941 0.830218 -0.259041 0.493594 0.86015 -0.000612 0.51004 0.652753 0.437876 0.618206 0.747293 0.232644 0.622438 0.817397 0.254204 0.516954 0.711556 0.477104 0.515809 -0.445811 -0.894813 0.023721 -0.284527 -0.958629 0.008604 -0.140048 -0.990026 -0.015349 -0.140048 -0.990026 -0.015349 0 -0.999544 -0.030189 0 -0.999954 -0.009584 -0.443938 -0.896051 0.003339 -0.284527 -0.958629 0.008604 -0.148624 -0.988708 -0.01918 0.061083 -0.99702 -0.047115 -0.140048 -0.990026 -0.015349 0 -0.998559 -0.053674 0 -0.999544 -0.030189 -0.140048 -0.990026 -0.015349 0.061083 -0.99702 -0.047115 0 -0.999402 -0.034571 0 -0.998559 -0.053674 0.061083 -0.99702 -0.047115 0.146374 -0.988837 -0.027841 0.955358 0.293029 0.03775 0.799468 0.600105 0.026933 0.826495 0.556863 0.082522 0.951973 0.298456 0.068349 0.998462 0.019889 0.051741 0.999416 0.02463 0.023687 0.955358 0.293029 0.03775 0.951973 0.298456 0.068349 0.971894 -0.234536 0.020369 0.999416 0.02463 0.023687 0.998462 0.019889 0.051741 0.967423 -0.249596 0.042355 0.863044 -0.503517 0.04032 0.874237 -0.484921 0.023679 0.971894 -0.234536 0.020369 0.967423 -0.249596 0.042355 0.701376 -0.712132 0.030636 0.874237 -0.484921 0.023679 0.863044 -0.503517 0.04032 0.685025 -0.727424 0.03994 0 0.994646 -0.103337 0.175396 0.984084 -0.028556 0.026661 0.999633 0.004783 -0.603119 0.786057 -0.135506 0 0.994646 -0.103337 -0.496188 0.859573 -0.122198 -0.496188 0.859573 -0.122198 0 0.994646 -0.103337 -0.206543 0.977774 -0.036018 -0.700336 0.700318 -0.138148 0 0.994646 -0.103337 -0.603119 0.786057 -0.135506 -0.771621 0.622122 -0.132533 0 0.994646 -0.103337 -0.700336 0.700318 -0.138148 -0.797128 0.590015 -0.128331 0 0.994646 -0.103337 -0.771621 0.622122 -0.132533 -0.206543 0.977774 -0.036018 0 0.994646 -0.103337 0.026661 0.999633 0.004783 0.348198 0.406055 0.844913 0.432328 0.290711 0.853569 0.559078 0.3754 0.739261 0.446031 0.519464 0.728844 0.243428 0.491327 0.836266 0.348198 0.406055 0.844913 0.446031 0.519464 0.728844 0.308979 0.622947 0.718658 0.124804 0.543133 0.83032 0.243428 0.491327 0.836266 0.308979 0.622947 0.718658 0.157564 0.685013 0.711289 0 0.560798 0.827953 0.124804 0.543133 0.83032 0.157564 0.685013 0.711289 0 0.70553 0.70868 0.126834 -0.551788 0.824283 0 -0.569467 0.822014 0 -0.735484 0.677542 0.164156 -0.713728 0.680915 0.246591 -0.498189 0.831265 0.126834 -0.551788 0.824283 0.164156 -0.713728 0.680915 0.320463 -0.646839 0.692028 0.352561 -0.410911 0.840745 0.246591 -0.498189 0.831265 0.320463 -0.646839 0.692028 0.46054 -0.536472 0.707178 0.435739 -0.293537 0.850863 0.352561 -0.410911 0.840745 0.46054 -0.536472 0.707178 0.571902 -0.384953 0.724389 0.48941 -0.152754 0.858571 0.435739 -0.293537 0.850863 0.571902 -0.384953 0.724389 0.643887 -0.201009 0.738245 0.507044 -0.000289 0.86192 0.48941 -0.152754 0.858571 0.643887 -0.201009 0.738245 0.665723 -0.000533 0.746199 0.487072 0.152259 0.859987 0.507044 -0.000289 0.86192 0.665723 -0.000533 0.746199 0.635855 0.19832 0.745894 0.432328 0.290711 0.853569 0.487072 0.152259 0.859987 0.635855 0.19832 0.745894 0.559078 0.3754 0.739261 0.084249 0.366969 0.92641 0.163783 0.330892 0.929347 0.243428 0.491327 0.836266 0.124804 0.543133 0.83032 0.163783 0.330892 0.929347 0.232358 0.271241 0.934044 0.348198 0.406055 0.844913 0.243428 0.491327 0.836266 0.232358 0.271241 0.934044 0.28676 0.193047 0.93835 0.432328 0.290711 0.853569 0.348198 0.406055 0.844913 0.28676 0.193047 0.93835 0.320583 0.100357 0.941889 0.487072 0.152259 0.859987 0.432328 0.290711 0.853569 0.320583 0.100357 0.941889 0.332909 -0.000137 0.942959 0.507044 -0.000289 0.86192 0.487072 0.152259 0.859987 0.332909 -0.000137 0.942959 0.320752 -0.100128 0.941856 0.48941 -0.152754 0.858571 0.507044 -0.000289 0.86192 0.320752 -0.100128 0.941856 0.286662 -0.193246 0.938339 0.435739 -0.293537 0.850863 0.48941 -0.152754 0.858571 0.286662 -0.193246 0.938339 0.232699 -0.271357 0.933925 0.352561 -0.410911 0.840745 0.435739 -0.293537 0.850863 0.232699 -0.271357 0.933925 0.163691 -0.33097 0.929335 0.246591 -0.498189 0.831265 0.352561 -0.410911 0.840745 0.163691 -0.33097 0.929335 0.084418 -0.367413 0.926219 0.126834 -0.551788 0.824283 0.246591 -0.498189 0.831265 0.084418 -0.367413 0.926219 0 -0.380108 0.924942 0 -0.569467 0.822014 0.126834 -0.551788 0.824283 0 0.380081 0.924953 0.084249 0.366969 0.92641 0.124804 0.543133 0.83032 0 0.560798 0.827953 0.434895 0.872246 0.223727 0.427081 0.85927 0.281527 0.626748 0.727893 0.278134 0.637797 0.739162 0.216461 0 0.973506 0.228663 0 0.959108 0.283041 0.215496 0.934688 0.282702 0.219218 0.948784 0.227492 0.443355 -0.893641 0.069582 0.440564 -0.886995 0.138356 0.222666 -0.966686 0.126243 0.222658 -0.973202 0.057457 0.828149 -0.549418 0.11095 0.816663 -0.547379 0.18286 0.644214 -0.74842 0.157661 0.651749 -0.753327 0.087871 0.986448 0.001983 0.164063 0.97154 -0.000244 0.236875 0.933433 -0.290426 0.210607 0.947056 -0.29032 0.137109 0.812854 0.545204 0.204988 0.799671 0.535857 0.270895 0.922756 0.286809 0.257415 0.937588 0.2928 0.187607 0.419612 0.844517 0.332742 0.411969 0.829251 0.377656 0.60336 0.701012 0.380183 0.615237 0.714694 0.33271 0.401855 0.809028 0.428936 0.384603 0.774493 0.502236 0.561143 0.652377 0.509434 0.587685 0.68296 0.433811 0.401855 0.809028 0.428936 0.587685 0.68296 0.433811 0.60336 0.701012 0.380183 0.411969 0.829251 0.377656 0.747051 0.500768 0.437202 0.768194 0.514841 0.380547 0.60336 0.701012 0.380183 0.587685 0.68296 0.433811 0.784271 0.52553 0.329754 0.799671 0.535857 0.270895 0.626748 0.727893 0.278134 0.615237 0.714694 0.33271 0.784271 0.52553 0.329754 0.615237 0.714694 0.33271 0.60336 0.701012 0.380183 0.768194 0.514841 0.380547 0 0.943482 0.331423 0 0.927356 0.374179 0.20818 0.903316 0.375074 0.211882 0.919253 0.331784 0 0.905915 0.42346 0 0.869035 0.49475 0.194826 0.845807 0.496642 0.203263 0.882149 0.42485 0 0.905915 0.42346 0.203263 0.882149 0.42485 0.20818 0.903316 0.375074 0 0.927356 0.374179 0.401855 0.809028 0.428936 0.411969 0.829251 0.377656 0.20818 0.903316 0.375074 0.203263 0.882149 0.42485 0.419612 0.844517 0.332742 0.427081 0.85927 0.281527 0.215496 0.934688 0.282702 0.211882 0.919253 0.331784 0.419612 0.844517 0.332742 0.211882 0.919253 0.331784 0.20818 0.903316 0.375074 0.411969 0.829251 0.377656 0.434936 -0.875798 0.209306 0.428105 -0.862215 0.270761 0.2169 -0.941522 0.257856 0.220138 -0.955418 0.196765 0.418575 -0.843231 0.337277 0.402026 -0.810229 0.426502 0.204365 -0.887598 0.412801 0.21234 -0.921922 0.323993 0.418575 -0.843231 0.337277 0.21234 -0.921922 0.323993 0.2169 -0.941522 0.257856 0.428105 -0.862215 0.270761 0 -0.947546 0.319619 0 -0.967312 0.25359 0.2169 -0.941522 0.257856 0.21234 -0.921922 0.323993 0 -0.981272 0.192626 0 -0.992501 0.122237 0.222666 -0.966686 0.126243 0.220138 -0.955418 0.196765 0 -0.981272 0.192626 0.220138 -0.955418 0.196765 0.2169 -0.941522 0.257856 0 -0.967312 0.25359 0.803071 -0.538894 0.254305 0.787827 -0.528817 0.315724 0.623869 -0.725431 0.290752 0.634783 -0.737957 0.229063 0.767182 -0.515142 0.382178 0.732184 -0.491931 0.471074 0.583121 -0.678496 0.446781 0.608863 -0.708168 0.35747 0.767182 -0.515142 0.382178 0.608863 -0.708168 0.35747 0.623869 -0.725431 0.290752 0.787827 -0.528817 0.315724 0.418575 -0.843231 0.337277 0.428105 -0.862215 0.270761 0.623869 -0.725431 0.290752 0.608863 -0.708168 0.35747 0.434936 -0.875798 0.209306 0.440564 -0.886995 0.138356 0.644214 -0.74842 0.157661 0.634783 -0.737957 0.229063 0.434936 -0.875798 0.209306 0.634783 -0.737957 0.229063 0.623869 -0.725431 0.290752 0.428105 -0.862215 0.270761 0.952541 -0.000502 0.304411 0.932128 -0.000528 0.362127 0.89745 -0.279798 0.341022 0.91627 -0.285569 0.280892 0.905152 -0.000557 0.425088 0.86015 -0.000612 0.51004 0.830218 -0.259041 0.493594 0.872333 -0.27206 0.406224 0.905152 -0.000557 0.425088 0.872333 -0.27206 0.406224 0.89745 -0.279798 0.341022 0.932128 -0.000528 0.362127 0.767182 -0.515142 0.382178 0.787827 -0.528817 0.315724 0.89745 -0.279798 0.341022 0.872333 -0.27206 0.406224 0.803071 -0.538894 0.254305 0.816663 -0.547379 0.18286 0.933433 -0.290426 0.210607 0.91627 -0.285569 0.280892 0.803071 -0.538894 0.254305 0.91627 -0.285569 0.280892 0.89745 -0.279798 0.341022 0.787827 -0.528817 0.315724 0.784271 0.52553 0.329754 0.768194 0.514841 0.380547 0.885183 0.275057 0.375226 0.904487 0.281009 0.320838 0.747051 0.500768 0.437202 0.711556 0.477104 0.515809 0.817397 0.254204 0.516954 0.859789 0.267243 0.435137 0.747051 0.500768 0.437202 0.859789 0.267243 0.435137 0.885183 0.275057 0.375226 0.768194 0.514841 0.380547 0.905152 -0.000557 0.425088 0.932128 -0.000528 0.362127 0.885183 0.275057 0.375226 0.859789 0.267243 0.435137 0.952541 -0.000502 0.304411 0.97154 -0.000244 0.236875 0.922756 0.286809 0.257415 0.904487 0.281009 0.320838 0.952541 -0.000502 0.304411 0.904487 0.281009 0.320838 0.885183 0.275057 0.375226 0.932128 -0.000528 0.362127 0.35571 0.716604 0.599958 0.308979 0.622947 0.718658 0.446031 0.519464 0.728844 0.516939 0.601394 0.609179 0 -0.000241 1 0.232358 0.271241 0.934044 0.163783 0.330892 0.929347 0.652753 0.437876 0.618206 0.711556 0.477104 0.515809 0.561143 0.652377 0.509434 0.516939 0.601394 0.609179 0.652753 0.437876 0.618206 0.516939 0.601394 0.609179 0.446031 0.519464 0.728844 0.559078 0.3754 0.739261 0 0.806876 0.59072 0 0.70553 0.70868 0.157564 0.685013 0.711289 0.180635 0.784628 0.593068 0 -0.000241 1 0.163783 0.330892 0.929347 0.084249 0.366969 0.92641 0.35571 0.716604 0.599958 0.384603 0.774493 0.502236 0.194826 0.845807 0.496642 0.180635 0.784628 0.593068 0.35571 0.716604 0.599958 0.180635 0.784628 0.593068 0.157564 0.685013 0.711289 0.308979 0.622947 0.718658 0.372566 -0.751352 0.54467 0.320463 -0.646839 0.692028 0.164156 -0.713728 0.680915 0.190015 -0.825669 0.531193 0 -0.000241 1 0.084418 -0.367413 0.926219 0.163691 -0.33097 0.929335 0 -0.849883 0.526972 0 -0.912821 0.40836 0.204365 -0.887598 0.412801 0.190015 -0.825669 0.531193 0 -0.849883 0.526972 0.190015 -0.825669 0.531193 0.164156 -0.713728 0.680915 0 -0.735484 0.677542 0.672207 -0.452034 0.586347 0.571902 -0.384953 0.724389 0.46054 -0.536472 0.707178 0.538127 -0.626483 0.56386 0 -0.000241 1 0.163691 -0.33097 0.929335 0.232699 -0.271357 0.933925 0.372566 -0.751352 0.54467 0.402026 -0.810229 0.426502 0.583121 -0.678496 0.446781 0.538127 -0.626483 0.56386 0.372566 -0.751352 0.54467 0.538127 -0.626483 0.56386 0.46054 -0.536472 0.707178 0.320463 -0.646839 0.692028 0.785374 -0.000654 0.619022 0.665723 -0.000533 0.746199 0.643887 -0.201009 0.738245 0.759373 -0.237041 0.605941 0 -0.000241 1 0.320752 -0.100128 0.941856 0.332909 -0.000137 0.942959 0.672207 -0.452034 0.586347 0.732184 -0.491931 0.471074 0.830218 -0.259041 0.493594 0.759373 -0.237041 0.605941 0.672207 -0.452034 0.586347 0.759373 -0.237041 0.605941 0.643887 -0.201009 0.738245 0.571902 -0.384953 0.724389 0.652753 0.437876 0.618206 0.559078 0.3754 0.739261 0.635855 0.19832 0.745894 0.747293 0.232644 0.622438 0 -0.000241 1 0.332909 -0.000137 0.942959 0.320583 0.100357 0.941889 0.785374 -0.000654 0.619022 0.86015 -0.000612 0.51004 0.817397 0.254204 0.516954 0.747293 0.232644 0.622438 0.785374 -0.000654 0.619022 0.747293 0.232644 0.622438 0.635855 0.19832 0.745894 0.665723 -0.000533 0.746199 0 -0.000241 1 0.320583 0.100357 0.941889 0.28676 0.193047 0.93835 0 -0.000241 1 0.28676 0.193047 0.93835 0.232358 0.271241 0.934044 0 -0.000241 1 0.084249 0.366969 0.92641 0 0.380081 0.924953 0 -0.000241 1 0 -0.380108 0.924942 0.084418 -0.367413 0.926219 0 -0.000241 1 0.232699 -0.271357 0.933925 0.286662 -0.193246 0.938339 0 -0.000241 1 0.286662 -0.193246 0.938339 0.320752 -0.100128 0.941856 0.937588 0.2928 0.187607 0.945571 0.299741 0.126688 0.821776 0.551415 0.143615 0.812854 0.545204 0.204988 0.937588 0.2928 0.187607 0.986448 0.001983 0.164063 0.994426 0.009551 0.105003 0.945571 0.299741 0.126688 0.947056 -0.29032 0.137109 0.957377 -0.276295 0.084202 0.994426 0.009551 0.105003 0.986448 0.001983 0.164063 0.947056 -0.29032 0.137109 0.828149 -0.549418 0.11095 0.842239 -0.53474 0.068455 0.957377 -0.276295 0.084202 0.651749 -0.753327 0.087871 0.661575 -0.74793 0.054025 0.842239 -0.53474 0.068455 0.828149 -0.549418 0.11095 0.651749 -0.753327 0.087871 0.443355 -0.893641 0.069582 0.441664 -0.896393 0.037577 0.661575 -0.74793 0.054025 0.222658 -0.973202 0.057457 0.215614 -0.976219 0.022503 0.441664 -0.896393 0.037577 0.443355 -0.893641 0.069582 0.222658 -0.973202 0.057457 0 -0.998581 0.053258 0 -0.999866 0.016393 0.215614 -0.976219 0.022503 0.219218 0.948784 0.227492 0.223438 0.958867 0.17507 0 0.984211 0.176998 0 0.973506 0.228663 0.219218 0.948784 0.227492 0.434895 0.872246 0.223727 0.445593 0.879248 0.168434 0.223438 0.958867 0.17507 0.637797 0.739162 0.216461 0.650266 0.743289 0.157086 0.445593 0.879248 0.168434 0.434895 0.872246 0.223727 0.637797 0.739162 0.216461 0.812854 0.545204 0.204988 0.821776 0.551415 0.143615 0.650266 0.743289 0.157086 0 0.994646 -0.103337 -0.175396 0.984084 -0.028556 0 0.999165 -0.040857 -0.175396 0.984084 -0.028556 -0.026661 0.999633 0.004783 -0.341884 0.939737 -0.003147 -0.341884 0.939737 -0.003147 -0.68128 0.731655 -0.023231 -0.491005 0.870749 -0.026669 -0.68128 0.731655 -0.023231 -0.341884 0.939737 -0.003147 -0.720979 0.692502 -0.02509 0 0.999165 -0.040857 -0.175396 0.984084 -0.028556 -0.220583 0.974804 -0.033166 0 0.999388 -0.03498 -0.491005 0.870749 -0.026669 -0.68128 0.731655 -0.023231 -0.677095 0.7357 0.016967 -0.485327 0.874036 0.02279 -0.677095 0.7357 0.016967 -0.68128 0.731655 -0.023231 -0.720979 0.692502 -0.02509 -0.799468 0.600105 0.026933 0 0.999388 -0.03498 -0.220583 0.974804 -0.033166 -0.228695 0.973098 0.027919 0 0.999603 0.02818 -0.228695 0.973098 0.027919 -0.220583 0.974804 -0.033166 -0.491005 0.870749 -0.026669 -0.485327 0.874036 0.02279 0.148624 -0.988708 -0.01918 -0.061083 -0.99702 -0.047115 -0.146374 -0.988837 -0.027841 -0.345437 -0.938439 -0.002475 -0.677095 0.7357 0.016967 -0.661766 0.744264 0.090209 -0.465527 0.87919 0.101535 -0.485327 0.874036 0.02279 -0.465527 0.87919 0.101535 -0.661766 0.744264 0.090209 -0.650266 0.743289 0.157086 -0.445593 0.879248 0.168434 -0.650266 0.743289 0.157086 -0.661766 0.744264 0.090209 -0.826495 0.556863 0.082522 -0.821776 0.551415 0.143615 -0.826495 0.556863 0.082522 -0.661766 0.744264 0.090209 -0.677095 0.7357 0.016967 -0.799468 0.600105 0.026933 -0.228695 0.973098 0.027919 -0.22857 0.967204 0.110782 0 0.993613 0.112841 0 0.999603 0.02818 0 0.993613 0.112841 -0.22857 0.967204 0.110782 -0.223438 0.958867 0.17507 0 0.984211 0.176998 -0.223438 0.958867 0.17507 -0.22857 0.967204 0.110782 -0.465527 0.87919 0.101535 -0.445593 0.879248 0.168434 -0.465527 0.87919 0.101535 -0.22857 0.967204 0.110782 -0.228695 0.973098 0.027919 -0.485327 0.874036 0.02279 -0.146374 -0.988837 -0.027841 -0.190955 -0.981579 0.006223 -0.436406 -0.899333 0.027397 -0.345437 -0.938439 -0.002475 -0.436406 -0.899333 0.027397 -0.190955 -0.981579 0.006223 -0.215614 -0.976219 0.022503 -0.441664 -0.896393 0.037577 -0.215614 -0.976219 0.022503 -0.190955 -0.981579 0.006223 0 -0.999997 -0.002491 0 -0.999866 0.016393 0 -0.999997 -0.002491 -0.190955 -0.981579 0.006223 -0.146374 -0.988837 -0.027841 0 -0.999402 -0.034571 -0.863044 -0.503517 0.04032 -0.685025 -0.727424 0.03994 -0.661575 -0.74793 0.054025 -0.842239 -0.53474 0.068455 -0.661575 -0.74793 0.054025 -0.685025 -0.727424 0.03994 -0.436406 -0.899333 0.027397 -0.441664 -0.896393 0.037577 -0.436406 -0.899333 0.027397 -0.685025 -0.727424 0.03994 -0.701376 -0.712132 0.030636 -0.345437 -0.938439 -0.002475 -0.998462 0.019889 0.051741 -0.967423 -0.249596 0.042355 -0.957377 -0.276295 0.084202 -0.994426 0.009551 0.105003 -0.957377 -0.276295 0.084202 -0.967423 -0.249596 0.042355 -0.863044 -0.503517 0.04032 -0.842239 -0.53474 0.068455 -0.826495 0.556863 0.082522 -0.951973 0.298455 0.068349 -0.945572 0.29974 0.126688 -0.821776 0.551415 0.143615 -0.945572 0.29974 0.126688 -0.951973 0.298455 0.068349 -0.998462 0.019889 0.051741 -0.994426 0.009551 0.105003 -0.812854 0.545204 0.204988 -0.799671 0.535857 0.270895 -0.626748 0.727893 0.278134 -0.637797 0.739162 0.216461 -0.434895 0.872246 0.223727 -0.427081 0.85927 0.281527 -0.215496 0.934688 0.282702 -0.219218 0.948784 0.227492 0 -0.998581 0.053258 0 -0.992501 0.122237 -0.222666 -0.966686 0.126243 -0.222658 -0.973202 0.057457 -0.443355 -0.893641 0.069582 -0.440564 -0.886995 0.138356 -0.644214 -0.74842 0.157661 -0.651749 -0.753327 0.087871 -0.828148 -0.549418 0.11095 -0.816663 -0.547379 0.18286 -0.933433 -0.290426 0.210607 -0.947056 -0.29032 0.137109 -0.986448 0.001983 0.164063 -0.97154 -0.000244 0.236875 -0.922756 0.286809 0.257415 -0.937588 0.2928 0.187607 -0.419612 0.844517 0.332742 -0.427081 0.85927 0.281527 -0.626748 0.727893 0.278134 -0.615237 0.714694 0.332709 -0.747051 0.500768 0.437203 -0.711556 0.477104 0.515809 -0.561143 0.652377 0.509434 -0.587685 0.68296 0.433812 0 0.943482 0.331423 0 0.959108 0.283041 -0.215496 0.934688 0.282702 -0.211883 0.919252 0.331784 -0.401854 0.809028 0.428936 -0.384603 0.774493 0.502236 -0.194826 0.845807 0.496642 -0.203263 0.882149 0.42485 -0.434936 -0.875798 0.209306 -0.440564 -0.886995 0.138356 -0.222666 -0.966686 0.126243 -0.220138 -0.955418 0.196765 0 -0.947546 0.319619 0 -0.912821 0.40836 -0.204365 -0.887598 0.412801 -0.21234 -0.921922 0.323993 -0.803071 -0.538894 0.254305 -0.816663 -0.547379 0.18286 -0.644214 -0.74842 0.157661 -0.634783 -0.737957 0.229063 -0.418576 -0.843231 0.337277 -0.402026 -0.810229 0.426502 -0.583121 -0.678496 0.446781 -0.608863 -0.708168 0.35747 -0.952541 -0.000502 0.30441 -0.97154 -0.000244 0.236875 -0.933433 -0.290426 0.210607 -0.91627 -0.285569 0.280892 -0.767182 -0.515142 0.382178 -0.732184 -0.491931 0.471074 -0.830218 -0.259041 0.493594 -0.872333 -0.27206 0.406224 -0.784271 0.52553 0.329754 -0.799671 0.535857 0.270895 -0.922756 0.286809 0.257415 -0.904487 0.281009 0.320837 -0.905152 -0.000557 0.425088 -0.860151 -0.000612 0.51004 -0.817398 0.254204 0.516954 -0.859789 0.267243 0.435137 -0.35571 0.716604 0.599957 -0.384603 0.774493 0.502236 -0.561143 0.652377 0.509434 -0.51694 0.601394 0.609179 0 0.806876 0.59072 0 0.869035 0.49475 -0.194826 0.845807 0.496642 -0.180634 0.784628 0.593068 -0.372565 -0.751352 0.54467 -0.402026 -0.810229 0.426502 -0.204365 -0.887598 0.412801 -0.190015 -0.825668 0.531193 -0.672207 -0.452035 0.586347 -0.732184 -0.491931 0.471074 -0.583121 -0.678496 0.446781 -0.538127 -0.626484 0.56386 -0.785373 -0.000654 0.619023 -0.860151 -0.000612 0.51004 -0.830218 -0.259041 0.493594 -0.759372 -0.237041 0.605942 -0.652753 0.437875 0.618205 -0.711556 0.477104 0.515809 -0.817398 0.254204 0.516954 -0.747293 0.232644 0.622438 0.443454 -0.895984 0.023669 0.140048 -0.990026 -0.015349 0.28338 -0.95897 0.008443 0.140048 -0.990026 -0.015349 0.443454 -0.895984 0.023669 0.443938 -0.896051 0.003339 0.28338 -0.95897 0.008443 0.140048 -0.990026 -0.015349 -0.061083 -0.99702 -0.047115 0.148624 -0.988708 -0.01918 0 -0.998559 -0.053674 -0.061083 -0.99702 -0.047115 0.140048 -0.990026 -0.015349 0 -0.999544 -0.030189 0 -0.999402 -0.034571 -0.146374 -0.988837 -0.027841 -0.061083 -0.99702 -0.047115 0 -0.998559 -0.053674 -0.955358 0.293028 0.03775 -0.951973 0.298455 0.068349 -0.826495 0.556863 0.082522 -0.799468 0.600105 0.026933 -0.998462 0.019889 0.051741 -0.951973 0.298455 0.068349 -0.955358 0.293028 0.03775 -0.999416 0.02463 0.023687 -0.971894 -0.234536 0.020369 -0.967423 -0.249596 0.042355 -0.998462 0.019889 0.051741 -0.999416 0.02463 0.023687 -0.863044 -0.503517 0.04032 -0.967423 -0.249596 0.042355 -0.971894 -0.234536 0.020369 -0.874237 -0.484921 0.023679 -0.701376 -0.712132 0.030636 -0.685025 -0.727424 0.03994 -0.863044 -0.503517 0.04032 -0.874237 -0.484921 0.023679 0 0.994646 -0.103337 -0.026661 0.999633 0.004783 -0.175396 0.984084 -0.028556 0.603119 0.786057 -0.135506 0.496188 0.859573 -0.122198 0 0.994646 -0.103337 0.496188 0.859573 -0.122198 0.206543 0.977774 -0.036018 0 0.994646 -0.103337 0.700336 0.700318 -0.138148 0.603119 0.786057 -0.135506 0 0.994646 -0.103337 0.771621 0.622123 -0.132533 0.700336 0.700318 -0.138148 0 0.994646 -0.103337 0.797128 0.590015 -0.128331 0.771621 0.622123 -0.132533 0 0.994646 -0.103337 0.206543 0.977774 -0.036018 -0.026661 0.999633 0.004783 0 0.994646 -0.103337 -0.175396 0.984084 -0.028556 -0.341884 0.939737 -0.003147 -0.491005 0.870749 -0.026669 -0.220583 0.974804 -0.033166 -0.348196 0.406055 0.844913 -0.446032 0.519464 0.728844 -0.559079 0.3754 0.73926 -0.432328 0.290711 0.853569 -0.243422 0.491328 0.836267 -0.308979 0.622947 0.718658 -0.446032 0.519464 0.728844 -0.348196 0.406055 0.844913 -0.124797 0.543134 0.83032 -0.157561 0.685013 0.711289 -0.308979 0.622947 0.718658 -0.243422 0.491328 0.836267 0 0.560798 0.827953 0 0.70553 0.70868 -0.157561 0.685013 0.711289 -0.124797 0.543134 0.83032 -0.126839 -0.551788 0.824283 -0.164159 -0.713727 0.680915 0 -0.735484 0.677542 0 -0.569467 0.822014 -0.246593 -0.498188 0.831264 -0.320464 -0.646838 0.692028 -0.164159 -0.713727 0.680915 -0.126839 -0.551788 0.824283 -0.35256 -0.410912 0.840745 -0.460538 -0.536472 0.707179 -0.320464 -0.646838 0.692028 -0.246593 -0.498188 0.831264 -0.435742 -0.293537 0.850861 -0.571901 -0.384953 0.724389 -0.460538 -0.536472 0.707179 -0.35256 -0.410912 0.840745 -0.489411 -0.152754 0.85857 -0.643886 -0.20101 0.738245 -0.571901 -0.384953 0.724389 -0.435742 -0.293537 0.850861 -0.507044 -0.000289 0.86192 -0.665722 -0.000533 0.7462 -0.643886 -0.20101 0.738245 -0.489411 -0.152754 0.85857 -0.487072 0.152259 0.859987 -0.635855 0.19832 0.745894 -0.665722 -0.000533 0.7462 -0.507044 -0.000289 0.86192 -0.432328 0.290711 0.853569 -0.559079 0.3754 0.73926 -0.635855 0.19832 0.745894 -0.487072 0.152259 0.859987 -0.084244 0.36697 0.92641 -0.124797 0.543134 0.83032 -0.243422 0.491328 0.836267 -0.163778 0.330893 0.929347 -0.163778 0.330893 0.929347 -0.243422 0.491328 0.836267 -0.348196 0.406055 0.844913 -0.232356 0.271241 0.934044 -0.232356 0.271241 0.934044 -0.348196 0.406055 0.844913 -0.432328 0.290711 0.853569 -0.286759 0.193047 0.938351 -0.286759 0.193047 0.938351 -0.432328 0.290711 0.853569 -0.487072 0.152259 0.859987 -0.320582 0.100357 0.941889 -0.320582 0.100357 0.941889 -0.487072 0.152259 0.859987 -0.507044 -0.000289 0.86192 -0.332906 -0.000137 0.94296 -0.332906 -0.000137 0.94296 -0.507044 -0.000289 0.86192 -0.489411 -0.152754 0.85857 -0.320756 -0.100128 0.941854 -0.320756 -0.100128 0.941854 -0.489411 -0.152754 0.85857 -0.435742 -0.293537 0.850861 -0.286676 -0.193245 0.938335 -0.286676 -0.193245 0.938335 -0.435742 -0.293537 0.850861 -0.35256 -0.410912 0.840745 -0.232707 -0.271357 0.933923 -0.232707 -0.271357 0.933923 -0.35256 -0.410912 0.840745 -0.246593 -0.498188 0.831264 -0.163693 -0.33097 0.929335 -0.163693 -0.33097 0.929335 -0.246593 -0.498188 0.831264 -0.126839 -0.551788 0.824283 -0.08442 -0.367413 0.926219 -0.08442 -0.367413 0.926219 -0.126839 -0.551788 0.824283 0 -0.569467 0.822014 0 -0.380108 0.924942 0 0.380081 0.924953 0 0.560798 0.827953 -0.124797 0.543134 0.83032 -0.084244 0.36697 0.92641 -0.434895 0.872246 0.223727 -0.637797 0.739162 0.216461 -0.626748 0.727893 0.278134 -0.427081 0.85927 0.281527 0 0.973506 0.228663 -0.219218 0.948784 0.227492 -0.215496 0.934688 0.282702 0 0.959108 0.283041 -0.443355 -0.893641 0.069582 -0.222658 -0.973202 0.057457 -0.222666 -0.966686 0.126243 -0.440564 -0.886995 0.138356 -0.828148 -0.549418 0.11095 -0.651749 -0.753327 0.087871 -0.644214 -0.74842 0.157661 -0.816663 -0.547379 0.18286 -0.986448 0.001983 0.164063 -0.947056 -0.29032 0.137109 -0.933433 -0.290426 0.210607 -0.97154 -0.000244 0.236875 -0.812854 0.545204 0.204988 -0.937588 0.2928 0.187607 -0.922756 0.286809 0.257415 -0.799671 0.535857 0.270895 -0.419612 0.844517 0.332742 -0.615237 0.714694 0.332709 -0.60336 0.701012 0.380183 -0.411969 0.829251 0.377655 -0.401854 0.809028 0.428936 -0.587685 0.68296 0.433812 -0.561143 0.652377 0.509434 -0.384603 0.774493 0.502236 -0.401854 0.809028 0.428936 -0.411969 0.829251 0.377655 -0.60336 0.701012 0.380183 -0.587685 0.68296 0.433812 -0.747051 0.500768 0.437203 -0.587685 0.68296 0.433812 -0.60336 0.701012 0.380183 -0.768194 0.514841 0.380547 -0.784271 0.52553 0.329754 -0.615237 0.714694 0.332709 -0.626748 0.727893 0.278134 -0.799671 0.535857 0.270895 -0.784271 0.52553 0.329754 -0.768194 0.514841 0.380547 -0.60336 0.701012 0.380183 -0.615237 0.714694 0.332709 0 0.943482 0.331423 -0.211883 0.919252 0.331784 -0.20818 0.903316 0.375074 0 0.927356 0.374179 0 0.905915 0.42346 -0.203263 0.882149 0.42485 -0.194826 0.845807 0.496642 0 0.869035 0.49475 0 0.905915 0.42346 0 0.927356 0.374179 -0.20818 0.903316 0.375074 -0.203263 0.882149 0.42485 -0.401854 0.809028 0.428936 -0.203263 0.882149 0.42485 -0.20818 0.903316 0.375074 -0.411969 0.829251 0.377655 -0.419612 0.844517 0.332742 -0.211883 0.919252 0.331784 -0.215496 0.934688 0.282702 -0.427081 0.85927 0.281527 -0.419612 0.844517 0.332742 -0.411969 0.829251 0.377655 -0.20818 0.903316 0.375074 -0.211883 0.919252 0.331784 -0.434936 -0.875798 0.209306 -0.220138 -0.955418 0.196765 -0.2169 -0.941522 0.257856 -0.428105 -0.862215 0.270761 -0.418576 -0.843231 0.337277 -0.21234 -0.921922 0.323993 -0.204365 -0.887598 0.412801 -0.402026 -0.810229 0.426502 -0.418576 -0.843231 0.337277 -0.428105 -0.862215 0.270761 -0.2169 -0.941522 0.257856 -0.21234 -0.921922 0.323993 0 -0.947546 0.319619 -0.21234 -0.921922 0.323993 -0.2169 -0.941522 0.257856 0 -0.967312 0.25359 0 -0.981272 0.192626 -0.220138 -0.955418 0.196765 -0.222666 -0.966686 0.126243 0 -0.992501 0.122237 0 -0.981272 0.192626 0 -0.967312 0.25359 -0.2169 -0.941522 0.257856 -0.220138 -0.955418 0.196765 -0.803071 -0.538894 0.254305 -0.634783 -0.737957 0.229063 -0.623869 -0.725431 0.290752 -0.787827 -0.528817 0.315724 -0.767182 -0.515142 0.382178 -0.608863 -0.708168 0.35747 -0.583121 -0.678496 0.446781 -0.732184 -0.491931 0.471074 -0.767182 -0.515142 0.382178 -0.787827 -0.528817 0.315724 -0.623869 -0.725431 0.290752 -0.608863 -0.708168 0.35747 -0.418576 -0.843231 0.337277 -0.608863 -0.708168 0.35747 -0.623869 -0.725431 0.290752 -0.428105 -0.862215 0.270761 -0.434936 -0.875798 0.209306 -0.634783 -0.737957 0.229063 -0.644214 -0.74842 0.157661 -0.440564 -0.886995 0.138356 -0.434936 -0.875798 0.209306 -0.428105 -0.862215 0.270761 -0.623869 -0.725431 0.290752 -0.634783 -0.737957 0.229063 -0.952541 -0.000502 0.30441 -0.91627 -0.285569 0.280892 -0.89745 -0.279798 0.341022 -0.932128 -0.000528 0.362127 -0.905152 -0.000557 0.425088 -0.872333 -0.27206 0.406224 -0.830218 -0.259041 0.493594 -0.860151 -0.000612 0.51004 -0.905152 -0.000557 0.425088 -0.932128 -0.000528 0.362127 -0.89745 -0.279798 0.341022 -0.872333 -0.27206 0.406224 -0.767182 -0.515142 0.382178 -0.872333 -0.27206 0.406224 -0.89745 -0.279798 0.341022 -0.787827 -0.528817 0.315724 -0.803071 -0.538894 0.254305 -0.91627 -0.285569 0.280892 -0.933433 -0.290426 0.210607 -0.816663 -0.547379 0.18286 -0.803071 -0.538894 0.254305 -0.787827 -0.528817 0.315724 -0.89745 -0.279798 0.341022 -0.91627 -0.285569 0.280892 -0.784271 0.52553 0.329754 -0.904487 0.281009 0.320837 -0.885183 0.275057 0.375226 -0.768194 0.514841 0.380547 -0.747051 0.500768 0.437203 -0.859789 0.267243 0.435137 -0.817398 0.254204 0.516954 -0.711556 0.477104 0.515809 -0.747051 0.500768 0.437203 -0.768194 0.514841 0.380547 -0.885183 0.275057 0.375226 -0.859789 0.267243 0.435137 -0.905152 -0.000557 0.425088 -0.859789 0.267243 0.435137 -0.885183 0.275057 0.375226 -0.932128 -0.000528 0.362127 -0.952541 -0.000502 0.30441 -0.904487 0.281009 0.320837 -0.922756 0.286809 0.257415 -0.97154 -0.000244 0.236875 -0.952541 -0.000502 0.30441 -0.932128 -0.000528 0.362127 -0.885183 0.275057 0.375226 -0.904487 0.281009 0.320837 -0.35571 0.716604 0.599957 -0.51694 0.601394 0.609179 -0.446032 0.519464 0.728844 -0.308979 0.622947 0.718658 0 -0.000241 1 -0.163778 0.330893 0.929347 -0.232356 0.271241 0.934044 -0.652753 0.437875 0.618205 -0.51694 0.601394 0.609179 -0.561143 0.652377 0.509434 -0.711556 0.477104 0.515809 -0.652753 0.437875 0.618205 -0.559079 0.3754 0.73926 -0.446032 0.519464 0.728844 -0.51694 0.601394 0.609179 0 0.806876 0.59072 -0.180634 0.784628 0.593068 -0.157561 0.685013 0.711289 0 0.70553 0.70868 0 -0.000241 1 -0.084244 0.36697 0.92641 -0.163778 0.330893 0.929347 -0.35571 0.716604 0.599957 -0.180634 0.784628 0.593068 -0.194826 0.845807 0.496642 -0.384603 0.774493 0.502236 -0.35571 0.716604 0.599957 -0.308979 0.622947 0.718658 -0.157561 0.685013 0.711289 -0.180634 0.784628 0.593068 -0.372565 -0.751352 0.54467 -0.190015 -0.825668 0.531193 -0.164159 -0.713727 0.680915 -0.320464 -0.646838 0.692028 0 -0.000241 1 -0.163693 -0.33097 0.929335 -0.08442 -0.367413 0.926219 0 -0.849883 0.526972 -0.190015 -0.825668 0.531193 -0.204365 -0.887598 0.412801 0 -0.912821 0.40836 0 -0.849883 0.526972 0 -0.735484 0.677542 -0.164159 -0.713727 0.680915 -0.190015 -0.825668 0.531193 -0.672207 -0.452035 0.586347 -0.538127 -0.626484 0.56386 -0.460538 -0.536472 0.707179 -0.571901 -0.384953 0.724389 0 -0.000241 1 -0.232707 -0.271357 0.933923 -0.163693 -0.33097 0.929335 -0.372565 -0.751352 0.54467 -0.538127 -0.626484 0.56386 -0.583121 -0.678496 0.446781 -0.402026 -0.810229 0.426502 -0.372565 -0.751352 0.54467 -0.320464 -0.646838 0.692028 -0.460538 -0.536472 0.707179 -0.538127 -0.626484 0.56386 -0.785373 -0.000654 0.619023 -0.759372 -0.237041 0.605942 -0.643886 -0.20101 0.738245 -0.665722 -0.000533 0.7462 0 -0.000241 1 -0.332906 -0.000137 0.94296 -0.320756 -0.100128 0.941854 -0.672207 -0.452035 0.586347 -0.759372 -0.237041 0.605942 -0.830218 -0.259041 0.493594 -0.732184 -0.491931 0.471074 -0.672207 -0.452035 0.586347 -0.571901 -0.384953 0.724389 -0.643886 -0.20101 0.738245 -0.759372 -0.237041 0.605942 -0.652753 0.437875 0.618205 -0.747293 0.232644 0.622438 -0.635855 0.19832 0.745894 -0.559079 0.3754 0.73926 0 -0.000241 1 -0.320582 0.100357 0.941889 -0.332906 -0.000137 0.94296 -0.785373 -0.000654 0.619023 -0.747293 0.232644 0.622438 -0.817398 0.254204 0.516954 -0.860151 -0.000612 0.51004 -0.785373 -0.000654 0.619023 -0.665722 -0.000533 0.7462 -0.635855 0.19832 0.745894 -0.747293 0.232644 0.622438 0 -0.000241 1 -0.286759 0.193047 0.938351 -0.320582 0.100357 0.941889 0 -0.000241 1 -0.232356 0.271241 0.934044 -0.286759 0.193047 0.938351 0 -0.000241 1 0 0.380081 0.924953 -0.084244 0.36697 0.92641 0 -0.000241 1 -0.08442 -0.367413 0.926219 0 -0.380108 0.924942 0 -0.000241 1 -0.286676 -0.193245 0.938335 -0.232707 -0.271357 0.933923 0 -0.000241 1 -0.320756 -0.100128 0.941854 -0.286676 -0.193245 0.938335 -0.937588 0.2928 0.187607 -0.812854 0.545204 0.204988 -0.821776 0.551415 0.143615 -0.945572 0.29974 0.126688 -0.937588 0.2928 0.187607 -0.945572 0.29974 0.126688 -0.994426 0.009551 0.105003 -0.986448 0.001983 0.164063 -0.947056 -0.29032 0.137109 -0.986448 0.001983 0.164063 -0.994426 0.009551 0.105003 -0.957377 -0.276295 0.084202 -0.947056 -0.29032 0.137109 -0.957377 -0.276295 0.084202 -0.842239 -0.53474 0.068455 -0.828148 -0.549418 0.11095 -0.651749 -0.753327 0.087871 -0.828148 -0.549418 0.11095 -0.842239 -0.53474 0.068455 -0.661575 -0.74793 0.054025 -0.651749 -0.753327 0.087871 -0.661575 -0.74793 0.054025 -0.441664 -0.896393 0.037577 -0.443355 -0.893641 0.069582 -0.222658 -0.973202 0.057457 -0.443355 -0.893641 0.069582 -0.441664 -0.896393 0.037577 -0.215614 -0.976219 0.022503 -0.222658 -0.973202 0.057457 -0.215614 -0.976219 0.022503 0 -0.999866 0.016393 0 -0.998581 0.053258 -0.219218 0.948784 0.227492 0 0.973506 0.228663 0 0.984211 0.176998 -0.223438 0.958867 0.17507 -0.219218 0.948784 0.227492 -0.223438 0.958867 0.17507 -0.445593 0.879248 0.168434 -0.434895 0.872246 0.223727 -0.637797 0.739162 0.216461 -0.434895 0.872246 0.223727 -0.445593 0.879248 0.168434 -0.650266 0.743289 0.157086 -0.637797 0.739162 0.216461 -0.650266 0.743289 0.157086 -0.821776 0.551415 0.143615 -0.812854 0.545204 0.204988 0.443454 -0.895984 0.023669 0.493499 -0.868564 0.045337 0.556266 -0.829396 0.05167 0.581495 -0.812748 0.036112 0.443454 -0.895984 0.023669 0.28338 -0.95897 0.008443 0.493499 -0.868564 0.045337 -0.519321 -0.852703 0.056596 -0.494411 -0.868045 0.045333 -0.557651 -0.828488 0.051316 -0.284527 -0.958629 0.008604 -0.494411 -0.868045 0.045333 -0.439566 -0.896847 0.049465 -0.381777 -0.923931 0.024443 0 -0.999954 -0.009584 0.443938 -0.896051 0.003339 0.604526 -0.796544 0.00810399 0.604258 -0.796742 -0.008635 0.140048 -0.990026 -0.015349 0.443938 -0.896051 0.003339 0 -0.999954 -0.009584 0 -0.999544 -0.030189 -0.445811 -0.894813 0.023721 -0.443938 -0.896051 0.003339 -0.604525 -0.796545 0.008104 -0.582844 -0.811787 0.035994 -0.140048 -0.990026 -0.015349 -0.443938 -0.896051 0.003339 -0.445811 -0.894813 0.023721 0.493499 -0.868564 0.045337 0.521072 -0.851615 0.056884 0.556266 -0.829396 0.05167 -0.439566 -0.896847 0.049465 -0.494411 -0.868045 0.045333 -0.519321 -0.852703 0.056596 -0.454286 -0.889249 0.053487 0.343882 0.910453 -0.229827 0.399547 0.897609 -0.186172 0.600389 0.773366 -0.203564 0.631774 0.724979 -0.274349 0.600389 0.773366 -0.203564 0.764467 0.604584 -0.22376 0.631774 0.724979 -0.274349 0.631774 0.724979 -0.274349 0 0.942039 -0.335502 0.343882 0.910453 -0.229827 0 0.977713 -0.209944 0 0.986665 -0.162763 0.190901 0.966454 -0.171826 0.190901 0.966454 -0.171826 0.399547 0.897609 -0.186172 0.343882 0.910453 -0.229827 0 0.977713 -0.209944 0.343882 0.910453 -0.229827 0 0.942039 -0.335502 0 0.977713 -0.209944 -0.343882 0.910453 -0.229826 -0.399547 0.897609 -0.186171 -0.190901 0.966454 -0.171826 0 0.977713 -0.209944 -0.190901 0.966454 -0.171826 0 0.986665 -0.162763 0 0.977713 -0.209944 0 0.977713 -0.209944 0 0.942039 -0.335502 -0.343882 0.910453 -0.229826 -0.631774 0.724979 -0.27435 -0.764466 0.604585 -0.223761 -0.600389 0.773366 -0.203563 -0.600389 0.773366 -0.203563 -0.399547 0.897609 -0.186171 -0.343882 0.910453 -0.229826 -0.631774 0.724979 -0.27435 -0.343882 0.910453 -0.229826 0 0.942039 -0.335502 -0.631774 0.724979 -0.27435 -0.764567 0.563576 -0.312761 -0.824012 0.510811 -0.245105 -0.764466 0.604585 -0.223761 -0.631774 0.724979 -0.27435 -0.631774 0.724979 -0.27435 0 0.942039 -0.335502 -0.764567 0.563576 -0.312761 0.764467 0.604584 -0.22376 0.824013 0.510811 -0.245103 0.764569 0.563577 -0.312755 0.631774 0.724979 -0.274349 0.764569 0.563577 -0.312755 0 0.942039 -0.335502 0.631774 0.724979 -0.274349 0.653614 0.741372 -0.15217 0.47228 0.869901 -0.142211 0.533365 0.840287 -0.097158 0.708668 0.698887 -0.0966759 0.584936 0.810178 -0.038231 0.755342 0.654196 -0.038547 0.708668 0.698887 -0.0966759 0.533365 0.840287 -0.097158 0.821861 0.568633 -0.034659 0.784691 0.612672 -0.094302 0.708668 0.698887 -0.0966759 0.755342 0.654196 -0.038547 0.235357 0.962411 -0.135542 0 0.991058 -0.133431 0 0.995049 -0.099385 0.278308 0.955499 -0.097803 0 0.999267 -0.038282 0.318446 0.947197 -0.037557 0.278308 0.955499 -0.097803 0 0.995049 -0.099385 0.584936 0.810178 -0.038231 0.533365 0.840287 -0.097158 0.278308 0.955499 -0.097803 0.318446 0.947197 -0.037557 -0.235357 0.962411 -0.135542 -0.472279 0.869901 -0.142211 -0.533365 0.840287 -0.097158 -0.278308 0.955499 -0.097803 -0.584936 0.810178 -0.038232 -0.318446 0.947197 -0.037557 -0.278308 0.955499 -0.097803 -0.533365 0.840287 -0.097158 0 0.999267 -0.038282 0 0.995049 -0.099385 -0.278308 0.955499 -0.097803 -0.318446 0.947197 -0.037557 -0.653614 0.741372 -0.15217 -0.747305 0.644621 -0.161242 -0.784691 0.612672 -0.094301 -0.708669 0.698886 -0.096676 -0.82186 0.568634 -0.034659 -0.755342 0.654196 -0.038547 -0.708669 0.698886 -0.096676 -0.784691 0.612672 -0.094301 -0.584936 0.810178 -0.038232 -0.533365 0.840287 -0.097158 -0.708669 0.698886 -0.096676 -0.755342 0.654196 -0.038547 -0.803839 0.568447 -0.175246 -0.83205 0.522913 -0.185081 -0.838023 0.537192 -0.095616 -0.821812 0.561922 -0.0941779 -0.838023 0.537192 -0.095616 -0.861535 0.506819 -0.029856 -0.849379 0.526891 -0.030696 -0.821812 0.561922 -0.0941779 -0.82186 0.568634 -0.034659 -0.784691 0.612672 -0.094301 -0.821812 0.561922 -0.0941779 -0.849379 0.526891 -0.030696 0.803839 0.568447 -0.175246 0.747305 0.644621 -0.161241 0.784691 0.612672 -0.094302 0.821812 0.561921 -0.094179 0.821861 0.568633 -0.034659 0.849379 0.52689 -0.030696 0.821812 0.561921 -0.094179 0.784691 0.612672 -0.094302 0.861535 0.506819 -0.029856 0.838023 0.537191 -0.095617 0.821812 0.561921 -0.094179 0.849379 0.52689 -0.030696 0.755342 0.654196 -0.038547 0.584936 0.810178 -0.038231 0.613393 0.789117 0.032306 0.78248 0.622274 0.022347 0.613393 0.789117 0.032306 0.619752 0.777641 0.105742 0.789394 0.607428 0.088817 0.78248 0.622274 0.022347 0.789394 0.607428 0.088817 0.865126 0.494724 0.082497 0.849559 0.527073 0.021074 0.78248 0.622274 0.022347 0.849559 0.527073 0.021074 0.821861 0.568633 -0.034659 0.755342 0.654196 -0.038547 0.78248 0.622274 0.022347 0.318446 0.947197 -0.037557 0 0.999267 -0.038282 0 0.998942 0.045994 0.339282 0.939736 0.04224 0 0.998942 0.045994 0 0.99188 0.127176 0.343484 0.931318 0.121099 0.339282 0.939736 0.04224 0.343484 0.931318 0.121099 0.619752 0.777641 0.105742 0.613393 0.789117 0.032306 0.339282 0.939736 0.04224 0.613393 0.789117 0.032306 0.584936 0.810178 -0.038231 0.318446 0.947197 -0.037557 0.339282 0.939736 0.04224 -0.318446 0.947197 -0.037557 -0.584936 0.810178 -0.038232 -0.613393 0.789117 0.032306 -0.339281 0.939736 0.04224 -0.613393 0.789117 0.032306 -0.619752 0.777642 0.105742 -0.343483 0.931319 0.121098 -0.339281 0.939736 0.04224 -0.343483 0.931319 0.121098 0 0.99188 0.127176 0 0.998942 0.045994 -0.339281 0.939736 0.04224 0 0.998942 0.045994 0 0.999267 -0.038282 -0.318446 0.947197 -0.037557 -0.339281 0.939736 0.04224 -0.755342 0.654196 -0.038547 -0.82186 0.568634 -0.034659 -0.849559 0.527073 0.021074 -0.782481 0.622274 0.022347 -0.849559 0.527073 0.021074 -0.865126 0.494724 0.082497 -0.789393 0.607429 0.0888169 -0.782481 0.622274 0.022347 -0.789393 0.607429 0.0888169 -0.619752 0.777642 0.105742 -0.613393 0.789117 0.032306 -0.782481 0.622274 0.022347 -0.613393 0.789117 0.032306 -0.584936 0.810178 -0.038232 -0.755342 0.654196 -0.038547 -0.782481 0.622274 0.022347 -0.849379 0.526891 -0.030696 -0.861535 0.506819 -0.029856 -0.879381 0.475273 0.028361 -0.872998 0.487042 0.025792 -0.879381 0.475273 0.028361 -0.884595 0.457037 0.092786 -0.886962 0.453443 0.087676 -0.872998 0.487042 0.025792 -0.886962 0.453443 0.087676 -0.865126 0.494724 0.082497 -0.849559 0.527073 0.021074 -0.872998 0.487042 0.025792 -0.849559 0.527073 0.021074 -0.82186 0.568634 -0.034659 -0.849379 0.526891 -0.030696 -0.872998 0.487042 0.025792 0.849379 0.52689 -0.030696 0.821861 0.568633 -0.034659 0.849559 0.527073 0.021074 0.872998 0.487042 0.025792 0.849559 0.527073 0.021074 0.865126 0.494724 0.082497 0.886962 0.453443 0.087676 0.872998 0.487042 0.025792 0.886962 0.453443 0.087676 0.884595 0.457037 0.092786 0.879381 0.475273 0.028361 0.872998 0.487042 0.025792 0.879381 0.475273 0.028361 0.861535 0.506819 -0.029856 0.849379 0.52689 -0.030696 0.872998 0.487042 0.025792 0.789394 0.607428 0.088817 0.619752 0.777641 0.105742 0.617092 0.766168 0.179399 0.785251 0.597914 0.160873 0.617092 0.766168 0.179399 0.611753 0.748769 0.255154 0.774423 0.585242 0.240336 0.785251 0.597914 0.160873 0.774423 0.585242 0.240336 0.8624 0.451014 0.229895 0.869887 0.469512 0.151182 0.785251 0.597914 0.160873 0.869887 0.469512 0.151182 0.865126 0.494724 0.082497 0.789394 0.607428 0.088817 0.785251 0.597914 0.160873 0.343484 0.931318 0.121099 0 0.99188 0.127176 0 0.979621 0.200857 0.34404 0.918543 0.194718 0 0.979621 0.200857 0 0.96222 0.272272 0.344734 0.899988 0.266795 0.34404 0.918543 0.194718 0.344734 0.899988 0.266795 0.611753 0.748769 0.255154 0.617092 0.766168 0.179399 0.34404 0.918543 0.194718 0.617092 0.766168 0.179399 0.619752 0.777641 0.105742 0.343484 0.931318 0.121099 0.34404 0.918543 0.194718 -0.343483 0.931319 0.121098 -0.619752 0.777642 0.105742 -0.617092 0.766168 0.179399 -0.34404 0.918543 0.194718 -0.617092 0.766168 0.179399 -0.611753 0.748769 0.255153 -0.344734 0.899988 0.266795 -0.34404 0.918543 0.194718 -0.344734 0.899988 0.266795 0 0.96222 0.272272 0 0.979621 0.200857 -0.34404 0.918543 0.194718 0 0.979621 0.200857 0 0.99188 0.127176 -0.343483 0.931319 0.121098 -0.34404 0.918543 0.194718 -0.789393 0.607429 0.0888169 -0.865126 0.494724 0.082497 -0.869887 0.469512 0.151182 -0.785251 0.597914 0.160873 -0.869887 0.469512 0.151182 -0.8624 0.451014 0.229895 -0.774423 0.585242 0.240336 -0.785251 0.597914 0.160873 -0.774423 0.585242 0.240336 -0.611753 0.748769 0.255153 -0.617092 0.766168 0.179399 -0.785251 0.597914 0.160873 -0.617092 0.766168 0.179399 -0.619752 0.777642 0.105742 -0.789393 0.607429 0.0888169 -0.785251 0.597914 0.160873 -0.886962 0.453443 0.087676 -0.884595 0.457037 0.092786 -0.880271 0.44808 0.156035 -0.890748 0.428224 0.152289 -0.880271 0.44808 0.156035 -0.869462 0.438181 0.228106 -0.88353 0.409998 0.226444 -0.890748 0.428224 0.152289 -0.88353 0.409998 0.226444 -0.8624 0.451014 0.229895 -0.869887 0.469512 0.151182 -0.890748 0.428224 0.152289 -0.869887 0.469512 0.151182 -0.865126 0.494724 0.082497 -0.886962 0.453443 0.087676 -0.890748 0.428224 0.152289 0.886962 0.453443 0.087676 0.865126 0.494724 0.082497 0.869887 0.469512 0.151182 0.890748 0.428224 0.152289 0.869887 0.469512 0.151182 0.8624 0.451014 0.229895 0.88353 0.409998 0.226444 0.890748 0.428224 0.152289 0.88353 0.409998 0.226444 0.869462 0.438181 0.228106 0.880271 0.44808 0.156036 0.890748 0.428224 0.152289 0.880271 0.44808 0.156036 0.884595 0.457037 0.092786 0.886962 0.453443 0.087676 0.890748 0.428224 0.152289 0.774423 0.585242 0.240336 0.611753 0.748769 0.255154 0.605216 0.723655 0.331718 0.759099 0.567233 0.319398 0.605216 0.723655 0.331718 0.592184 0.698661 0.401486 0.739008 0.553829 0.383589 0.759099 0.567233 0.319398 0.739008 0.553829 0.383589 0.810643 0.452392 0.371753 0.84156 0.443285 0.308667 0.759099 0.567233 0.319398 0.84156 0.443285 0.308667 0.8624 0.451014 0.229895 0.774423 0.585242 0.240336 0.759099 0.567233 0.319398 0.344734 0.899988 0.266795 0 0.96222 0.272272 0 0.937351 0.348387 0.344021 0.874316 0.342376 0 0.937351 0.348387 0 0.903107 0.429416 0.336139 0.843015 0.419925 0.344021 0.874316 0.342376 0.336139 0.843015 0.419925 0.592184 0.698661 0.401486 0.605216 0.723655 0.331718 0.344021 0.874316 0.342376 0.605216 0.723655 0.331718 0.611753 0.748769 0.255154 0.344734 0.899988 0.266795 0.344021 0.874316 0.342376 -0.344734 0.899988 0.266795 -0.611753 0.748769 0.255153 -0.605216 0.723655 0.331718 -0.344021 0.874316 0.342376 -0.605216 0.723655 0.331718 -0.592184 0.698661 0.401486 -0.336139 0.843015 0.419925 -0.344021 0.874316 0.342376 -0.336139 0.843015 0.419925 0 0.903107 0.429416 0 0.937351 0.348387 -0.344021 0.874316 0.342376 0 0.937351 0.348387 0 0.96222 0.272272 -0.344734 0.899988 0.266795 -0.344021 0.874316 0.342376 -0.774423 0.585242 0.240336 -0.8624 0.451014 0.229895 -0.84156 0.443285 0.308667 -0.759099 0.567233 0.319399 -0.84156 0.443285 0.308667 -0.810643 0.452392 0.371753 -0.739008 0.553829 0.383589 -0.759099 0.567233 0.319399 -0.739008 0.553829 0.383589 -0.592184 0.698661 0.401486 -0.605216 0.723655 0.331718 -0.759099 0.567233 0.319399 -0.605216 0.723655 0.331718 -0.611753 0.748769 0.255153 -0.774423 0.585242 0.240336 -0.759099 0.567233 0.319399 -0.88353 0.409998 0.226444 -0.869462 0.438181 0.228106 -0.863748 0.404037 0.301153 -0.869274 0.391852 0.301354 -0.863748 0.404037 0.301153 -0.86087 0.354348 0.365159 -0.849675 0.380157 0.365422 -0.869274 0.391852 0.301354 -0.849675 0.380157 0.365422 -0.810643 0.452392 0.371753 -0.84156 0.443285 0.308667 -0.869274 0.391852 0.301354 -0.84156 0.443285 0.308667 -0.8624 0.451014 0.229895 -0.88353 0.409998 0.226444 -0.869274 0.391852 0.301354 0.88353 0.409998 0.226444 0.8624 0.451014 0.229895 0.84156 0.443285 0.308667 0.869274 0.391852 0.301354 0.84156 0.443285 0.308667 0.810643 0.452392 0.371753 0.849675 0.380157 0.365422 0.869274 0.391852 0.301354 0.849675 0.380157 0.365422 0.86087 0.354347 0.365159 0.863748 0.404037 0.301153 0.869274 0.391852 0.301354 0.863748 0.404037 0.301153 0.869462 0.438181 0.228106 0.88353 0.409998 0.226444 0.869274 0.391852 0.301354 0.739008 0.553829 0.383589 0.592184 0.698661 0.401486 0.552426 0.661583 0.507083 0.694128 0.529682 0.487466 0.552426 0.661583 0.507083 0.449862 0.54391 0.708369 0.583454 0.432487 0.687413 0.694128 0.529682 0.487466 0.583454 0.432487 0.687413 0.669822 0.280104 0.687663 0.757116 0.443807 0.479386 0.694128 0.529682 0.487466 0.757116 0.443807 0.479386 0.810643 0.452392 0.371753 0.739008 0.553829 0.383589 0.694128 0.529682 0.487466 0.336139 0.843015 0.419925 0 0.903107 0.429416 0 0.839836 0.542841 0.306716 0.788571 0.532993 0 0.839836 0.542841 0 0.673437 0.739244 0.232805 0.634239 0.737253 0.306716 0.788571 0.532993 0.232805 0.634239 0.737253 0.449862 0.54391 0.708369 0.552426 0.661583 0.507083 0.306716 0.788571 0.532993 0.552426 0.661583 0.507083 0.592184 0.698661 0.401486 0.336139 0.843015 0.419925 0.306716 0.788571 0.532993 -0.336139 0.843015 0.419925 -0.592184 0.698661 0.401486 -0.552426 0.661583 0.507083 -0.306716 0.788571 0.532993 -0.552426 0.661583 0.507083 -0.449862 0.54391 0.708369 -0.232805 0.634239 0.737253 -0.306716 0.788571 0.532993 -0.232805 0.634239 0.737253 0 0.673437 0.739244 0 0.839836 0.542841 -0.306716 0.788571 0.532993 0 0.839836 0.542841 0 0.903107 0.429416 -0.336139 0.843015 0.419925 -0.306716 0.788571 0.532993 -0.739008 0.553829 0.383589 -0.810643 0.452392 0.371753 -0.757116 0.443807 0.479386 -0.694129 0.529682 0.487465 -0.757116 0.443807 0.479386 -0.669822 0.280104 0.687663 -0.583455 0.432487 0.687412 -0.694129 0.529682 0.487465 -0.583455 0.432487 0.687412 -0.449862 0.54391 0.708369 -0.552426 0.661583 0.507083 -0.694129 0.529682 0.487465 -0.552426 0.661583 0.507083 -0.592184 0.698661 0.401486 -0.739008 0.553829 0.383589 -0.694129 0.529682 0.487465 -0.849675 0.380157 0.365422 -0.86087 0.354348 0.365159 -0.822551 0.281333 0.494229 -0.799391 0.351122 0.487532 -0.822551 0.281333 0.494229 -0.701312 0.175778 0.690842 -0.669822 0.280104 0.687663 -0.799391 0.351122 0.487532 -0.669822 0.280104 0.687663 -0.757116 0.443807 0.479386 -0.799391 0.351122 0.487532 -0.757116 0.443807 0.479386 -0.810643 0.452392 0.371753 -0.849675 0.380157 0.365422 -0.799391 0.351122 0.487532 0.849675 0.380157 0.365422 0.810643 0.452392 0.371753 0.757116 0.443807 0.479386 0.799391 0.351122 0.487532 0.757116 0.443807 0.479386 0.669822 0.280104 0.687663 0.799391 0.351122 0.487532 0.669822 0.280104 0.687663 0.701312 0.175778 0.690843 0.822551 0.281332 0.494229 0.799391 0.351122 0.487532 0.822551 0.281332 0.494229 0.86087 0.354347 0.365159 0.849675 0.380157 0.365422 0.799391 0.351122 0.487532 0.583454 0.432487 0.687413 0.449862 0.54391 0.708369 0.457274 0.304978 0.835397 0.457274 0.304978 0.835397 0.669822 0.280104 0.687663 0.583454 0.432487 0.687413 0.232805 0.634239 0.737253 0 0.673437 0.739244 0 0.409084 0.912497 0.457274 0.304978 0.835397 0.449862 0.54391 0.708369 0.232805 0.634239 0.737253 0 0.409084 0.912497 -0.232805 0.634239 0.737253 -0.449862 0.54391 0.708369 -0.457275 0.304979 0.835397 0 0.409084 0.912497 0 0.409084 0.912497 0 0.673437 0.739244 -0.232805 0.634239 0.737253 -0.583455 0.432487 0.687412 -0.669822 0.280104 0.687663 -0.457275 0.304979 0.835397 -0.457275 0.304979 0.835397 -0.449862 0.54391 0.708369 -0.583455 0.432487 0.687412 -0.669822 0.280104 0.687663 -0.701312 0.175778 0.690842 -0.527772 0.156863 0.834776 -0.457275 0.304979 0.835397 -0.669822 0.280104 0.687663 -0.527772 0.156863 0.834776 0.669822 0.280104 0.687663 0.457274 0.304978 0.835397 0.527771 0.156863 0.834776 0 0.172986 0.984924 0.527771 0.156863 0.834776 0.457274 0.304978 0.835397 0 0.409084 0.912497 0.527771 0.156863 0.834776 0.701312 0.175778 0.690843 0.669822 0.280104 0.687663 0.600389 0.773366 -0.203564 0.399547 0.897609 -0.186172 0.47228 0.869901 -0.142211 0.653614 0.741372 -0.15217 0.747305 0.644621 -0.161241 0.764467 0.604584 -0.22376 0.600389 0.773366 -0.203564 0.653614 0.741372 -0.15217 0.190901 0.966454 -0.171826 0 0.986665 -0.162763 0 0.991058 -0.133431 0.235357 0.962411 -0.135542 0.47228 0.869901 -0.142211 0.399547 0.897609 -0.186172 0.190901 0.966454 -0.171826 0.235357 0.962411 -0.135542 -0.190901 0.966454 -0.171826 -0.399547 0.897609 -0.186171 -0.472279 0.869901 -0.142211 -0.235357 0.962411 -0.135542 0 0.991058 -0.133431 0 0.986665 -0.162763 -0.190901 0.966454 -0.171826 -0.235357 0.962411 -0.135542 -0.600389 0.773366 -0.203563 -0.764466 0.604585 -0.223761 -0.747305 0.644621 -0.161242 -0.653614 0.741372 -0.15217 -0.472279 0.869901 -0.142211 -0.399547 0.897609 -0.186171 -0.600389 0.773366 -0.203563 -0.653614 0.741372 -0.15217 -0.764466 0.604585 -0.223761 -0.824012 0.510811 -0.245105 -0.83205 0.522913 -0.185081 -0.803839 0.568447 -0.175246 -0.747305 0.644621 -0.161242 -0.764466 0.604585 -0.223761 -0.803839 0.568447 -0.175246 0.764467 0.604584 -0.22376 0.747305 0.644621 -0.161241 0.803839 0.568447 -0.175246 0.83205 0.522913 -0.185082 0.824013 0.510811 -0.245103 0.764467 0.604584 -0.22376 0.803839 0.568447 -0.175246 0 0.172986 0.984924 0 0.409084 0.912497 -0.457275 0.304979 0.835397 -0.527772 0.156863 0.834776 0.708668 0.698887 -0.0966759 0.784691 0.612672 -0.094302 0.747305 0.644621 -0.161241 0.653614 0.741372 -0.15217 0.278308 0.955499 -0.097803 0.533365 0.840287 -0.097158 0.47228 0.869901 -0.142211 0.235357 0.962411 -0.135542 -0.278308 0.955499 -0.097803 0 0.995049 -0.099385 0 0.991058 -0.133431 -0.235357 0.962411 -0.135542 -0.708669 0.698886 -0.096676 -0.533365 0.840287 -0.097158 -0.472279 0.869901 -0.142211 -0.653614 0.741372 -0.15217 -0.821812 0.561922 -0.0941779 -0.784691 0.612672 -0.094301 -0.747305 0.644621 -0.161242 -0.803839 0.568447 -0.175246 0.821812 0.561921 -0.094179 0.838023 0.537191 -0.095617 0.83205 0.522913 -0.185082 0.803839 0.568447 -0.175246 0.561694 0.706999 -0.429712 0.017318 0.99973 -0.015483 0.648864 0.696236 -0.30697 0.656079 0.694032 -0.296444 0.651868 0.695745 -0.301674 0.027672 0.999592 -0.007082 0.038541 0.999255 -0.001828 0.066284 0.997165 0.035606 0.659382 0.694762 0.287265 0.702516 0.699508 -0.130995 0.047351 0.998869 0.004318 -0.017201 0.99838 -0.05423 -0.052435 0.680297 -0.731059 -0.009732 0.648145 -0.761455 0.00223 0.994101 -0.108433 0.022883 0.999642 -0.013862 0.005132 0.999525 -0.030397 0.028259 0.997742 -0.060932 0.041852 0.998759 -0.026988 0.050782 0.998132 0.033979 0.048354 0.99867 0.017902 0.037572 0.999294 0.000501 0.035532 0.999334 0.008358 0.038541 0.999255 -0.001828 0.027672 0.999592 -0.007082 0.017974 0.99978 -0.010765 0.030797 0.999514 -0.004797 0.055938 0.998282 0.017432 0.035532 0.999334 0.008358 0.022883 0.999642 -0.013862 0.041852 0.998759 -0.026988 0.030797 0.999514 -0.004797 0.017974 0.99978 -0.010765 0.005132 0.999525 -0.030397 0.022883 0.999642 -0.013862 0.048354 0.99867 0.017902 0.094957 0.992627 0.075328 0.066284 0.997165 0.035606 0.035532 0.999334 0.008358 0.037572 0.999294 0.000501 0.030797 0.999514 -0.004797 0.022883 0.999642 -0.013862 0.055938 0.998282 0.017432 0.072244 0.997187 0.019949 0.112437 0.990125 0.083732 0.085551 0.994083 0.066938 0.181043 0.968343 0.171857 0.56697 0.58605 0.578871 0.566889 0.591178 0.573712 0.158747 0.974995 0.155514 0.041852 0.998759 -0.026988 0.062679 0.997519 -0.032049 0.072244 0.997187 0.019949 0.055938 0.998282 0.017432 0.00223 0.994101 -0.108433 -0.009732 0.648145 -0.761455 0.061382 0.625741 -0.777612 0.03203 0.989925 -0.137922 0.00223 0.994101 -0.108433 0.028259 0.997742 -0.060932 0.005132 0.999525 -0.030397 -0.017201 0.99838 -0.05423 -0.017201 0.99838 -0.05423 -0.008655 0.99951 -0.030067 0.226062 0.721422 -0.654558 -0.052435 0.680297 -0.731059 0.017318 0.99973 -0.015483 0.027672 0.999592 -0.007082 0.651868 0.695745 -0.301674 0.648864 0.696236 -0.30697 0.702516 0.699508 -0.130995 0.656079 0.694032 -0.296444 0.038541 0.999255 -0.001828 0.047351 0.998869 0.004318 0.659382 0.694762 0.287265 0.066284 0.997165 0.035606 0.094957 0.992627 0.075328 0.555995 0.640136 0.530185 0.563074 0.60894 0.558694 0.555995 0.640136 0.530185 0.094957 0.992627 0.075328 0.122729 0.985736 0.115156 0.048354 0.99867 0.017902 0.066284 0.997165 0.035606 0.047351 0.998869 0.004318 0.037572 0.999294 0.000501 0.017318 0.99973 -0.015483 0.00919 0.999816 -0.016813 0.017974 0.99978 -0.010765 0.027672 0.999592 -0.007082 0.030797 0.999514 -0.004797 0.037572 0.999294 0.000501 0.047351 0.998869 0.004318 0.038541 0.999255 -0.001828 0.112437 0.990125 0.083732 0.181043 0.968343 0.171857 0.158747 0.974995 0.155514 0.085551 0.994083 0.066938 0.058957 0.995457 -0.074761 0.062679 0.997519 -0.032049 0.041852 0.998759 -0.026988 0.028259 0.997742 -0.060932 0.122729 0.985736 0.115156 0.094957 0.992627 0.075328 0.048354 0.99867 0.017902 0.050782 0.998132 0.033979 0.055938 0.998282 0.017432 0.085551 0.994083 0.066938 0.050782 0.998132 0.033979 0.035532 0.999334 0.008358 0.158747 0.974995 0.155514 0.122729 0.985736 0.115156 0.050782 0.998132 0.033979 0.085551 0.994083 0.066938 0.563074 0.60894 0.558694 0.122729 0.985736 0.115156 0.158747 0.974995 0.155514 0.566889 0.591178 0.573712 0.00223 0.994101 -0.108433 0.03203 0.989925 -0.137922 0.058957 0.995457 -0.074761 0.028259 0.997742 -0.060932 0.576028 -0.695607 -0.429328 0.654294 -0.689064 -0.311594 0.041982 -0.998832 -0.023913 0.640616 -0.697152 -0.321854 0.014641 -0.99941 -0.031073 0.029498 -0.999232 -0.025789 0.648124 -0.692644 -0.316512 0.001971 -0.999458 -0.032866 0.004604 -0.999354 -0.035646 0.681132 -0.712575 -0.168214 0.636851 -0.733032 0.238924 0.048346 -0.998736 -0.013738 0.054146 -0.998513 0.006347 0.04024 -0.719167 -0.693671 0.003061 -0.70036 -0.713782 0.029583 -0.999492 -0.011888 0.049346 -0.998772 -0.004483 0.050871 -0.998697 -0.004035 0.039694 -0.999165 -0.009695 0.00984401 -0.999807 -0.016974 0.018885 -0.999716 -0.014539 0.004088 -0.999635 -0.026715 -0.002546 -0.999573 -0.029103 0.014641 -0.99941 -0.031073 0.014399 -0.99964 -0.022652 0.027857 -0.999453 -0.017793 0.029498 -0.999232 -0.025789 0.049191 -0.99877 -0.006225 0.049346 -0.998772 -0.004483 0.029583 -0.999492 -0.011888 0.018885 -0.999716 -0.014539 0.014399 -0.99964 -0.022652 0.029583 -0.999492 -0.011888 0.039694 -0.999165 -0.009695 0.027857 -0.999453 -0.017793 -0.002546 -0.999573 -0.029103 0.001971 -0.999458 -0.032866 0.002886 -0.99982 -0.018737 0.018885 -0.999716 -0.014539 0.029583 -0.999492 -0.011888 0.014399 -0.99964 -0.022652 0.004088 -0.999635 -0.026715 0.049191 -0.99877 -0.006225 0.050101 -0.998723 -0.006533 0.074396 -0.997221 -0.003913 0.062812 -0.998013 -0.004955 0.112232 -0.992711 0.043919 0.072525 -0.997086 0.023666 0.537508 -0.6683 0.514257 0.552418 -0.645287 0.527674 0.049346 -0.998772 -0.004483 0.049191 -0.99877 -0.006225 0.062812 -0.998013 -0.004955 0.053003 -0.99859 -0.00278 0.054146 -0.998513 0.006347 0.049697 -0.998627 0.016536 0.0937 -0.729383 -0.677658 0.04024 -0.719167 -0.693671 0.054146 -0.998513 0.006347 0.048346 -0.998736 -0.013738 0.039694 -0.999165 -0.009695 0.050871 -0.998697 -0.004035 0.048346 -0.998736 -0.013738 0.003061 -0.70036 -0.713782 0.260779 -0.714179 -0.649571 0.039005 -0.998965 -0.023398 0.048346 -0.998736 -0.013738 0.039005 -0.998965 -0.023398 0.027857 -0.999453 -0.017793 0.039694 -0.999165 -0.009695 0.041982 -0.998832 -0.023913 0.039005 -0.998965 -0.023398 0.260779 -0.714179 -0.649571 0.576028 -0.695607 -0.429328 0.041982 -0.998832 -0.023913 0.654294 -0.689064 -0.311594 0.648124 -0.692644 -0.316512 0.029498 -0.999232 -0.025789 0.681132 -0.712575 -0.168214 0.004604 -0.999354 -0.035646 0.014641 -0.99941 -0.031073 0.640616 -0.697152 -0.321854 0.636851 -0.733032 0.238924 0.516396 -0.706207 0.484363 0.002886 -0.99982 -0.018737 0.001971 -0.999458 -0.032866 0.515101 -0.697006 0.498853 0.017819 -0.999834 -0.003652 0.002886 -0.99982 -0.018737 0.516396 -0.706207 0.484363 -0.002546 -0.999573 -0.029103 0.004088 -0.999635 -0.026715 0.004604 -0.999354 -0.035646 0.001971 -0.999458 -0.032866 0.039005 -0.998965 -0.023398 0.041982 -0.998832 -0.023913 0.029498 -0.999232 -0.025789 0.027857 -0.999453 -0.017793 0.014399 -0.99964 -0.022652 0.014641 -0.99941 -0.031073 0.004604 -0.999354 -0.035646 0.004088 -0.999635 -0.026715 0.074396 -0.997221 -0.003913 0.050101 -0.998723 -0.006533 0.072525 -0.997086 0.023666 0.112232 -0.992711 0.043919 0.049634 -0.998765 -0.002252 0.050871 -0.998697 -0.004035 0.049346 -0.998772 -0.004483 0.053003 -0.99859 -0.00278 0.017819 -0.999834 -0.003652 0.00984401 -0.999807 -0.016974 -0.002546 -0.999573 -0.029103 0.002886 -0.99982 -0.018737 0.049191 -0.99877 -0.006225 0.018885 -0.999716 -0.014539 0.00984401 -0.999807 -0.016974 0.050101 -0.998723 -0.006533 0.072525 -0.997086 0.023666 0.050101 -0.998723 -0.006533 0.00984401 -0.999807 -0.016974 0.017819 -0.999834 -0.003652 0.515101 -0.697006 0.498853 0.537508 -0.6683 0.514257 0.072525 -0.997086 0.023666 0.017819 -0.999834 -0.003652 0.054146 -0.998513 0.006347 0.050871 -0.998697 -0.004035 0.049634 -0.998765 -0.002252 0.049697 -0.998627 0.016536 0.561694 0.706999 -0.429712 0.576028 -0.695607 -0.429328 0.260779 -0.714179 -0.649571 0.226062 0.721422 -0.654558 0.648864 0.696236 -0.30697 0.654294 -0.689064 -0.311594 0.576028 -0.695607 -0.429328 0.561694 0.706999 -0.429712 0.702516 0.699508 -0.130995 0.681132 -0.712575 -0.168214 0.640616 -0.697152 -0.321854 0.656079 0.694032 -0.296444 0.563074 0.60894 0.558694 0.515101 -0.697006 0.498853 0.516396 -0.706207 0.484363 0.555995 0.640136 0.530185 -0.052435 0.680297 -0.731059 0.003061 -0.70036 -0.713782 0.04024 -0.719167 -0.693671 -0.009732 0.648145 -0.761455 0.659382 0.694762 0.287265 0.636851 -0.733032 0.238924 0.681132 -0.712575 -0.168214 0.702516 0.699508 -0.130995 -0.009732 0.648145 -0.761455 0.04024 -0.719167 -0.693671 0.0937 -0.729383 -0.677658 0.061382 0.625741 -0.777612 0.226062 0.721422 -0.654558 0.260779 -0.714179 -0.649571 0.003061 -0.70036 -0.713782 -0.052435 0.680297 -0.731059 0.651868 0.695745 -0.301674 0.648124 -0.692644 -0.316512 0.654294 -0.689064 -0.311594 0.648864 0.696236 -0.30697 0.656079 0.694032 -0.296444 0.640616 -0.697152 -0.321854 0.648124 -0.692644 -0.316512 0.651868 0.695745 -0.301674 0.555995 0.640136 0.530185 0.516396 -0.706207 0.484363 0.636851 -0.733032 0.238924 0.659382 0.694762 0.287265 0.56697 0.58605 0.578871 0.552418 -0.645287 0.527674 0.537508 -0.6683 0.514257 0.566889 0.591178 0.573712 0.566889 0.591178 0.573712 0.537508 -0.6683 0.514257 0.515101 -0.697006 0.498853 0.563074 0.60894 0.558694 -0.017201 0.99838 -0.05423 0.005132 0.999525 -0.030397 0.017974 0.99978 -0.010765 0.00919 0.999816 -0.016813 0.017318 0.99973 -0.015483 0.561694 0.706999 -0.429712 0.226062 0.721422 -0.654558 -0.008655 0.99951 -0.030067 -0.567088 0.706999 -0.422568 -0.652698 0.696236 -0.298733 -0.017512 0.99973 -0.015263 -0.659779 0.694032 -0.288116 -0.038561 0.999255 -0.00134 -0.02776 0.999592 -0.006732 -0.655634 0.695745 -0.293399 -0.065828 0.997165 0.036442 -0.047292 0.998869 0.004917 -0.704118 0.699508 -0.122094 -0.655694 0.694762 0.295587 0.016514 0.99838 -0.054443 -0.003603 0.994101 -0.108396 -0.000432 0.650708 -0.759328 0.043177 0.680297 -0.731664 -0.023057 0.999642 -0.013571 -0.04219 0.998759 -0.026456 -0.029028 0.997742 -0.060569 -0.005516 0.999525 -0.03033 -0.050348 0.998132 0.034619 -0.035423 0.999334 0.008807 -0.037562 0.999294 0.000977 -0.048124 0.99867 0.018513 -0.038561 0.999255 -0.00134 -0.030856 0.999514 -0.004407 -0.018109 0.99978 -0.010537 -0.02776 0.999592 -0.006732 -0.055712 0.998282 0.018139 -0.04219 0.998759 -0.026456 -0.023057 0.999642 -0.013571 -0.035423 0.999334 0.008807 -0.030856 0.999514 -0.004407 -0.023057 0.999642 -0.013571 -0.005516 0.999525 -0.03033 -0.018109 0.99978 -0.010537 -0.048124 0.99867 0.018513 -0.065828 0.997165 0.036442 -0.093996 0.992627 0.076524 -0.035423 0.999334 0.008807 -0.023057 0.999642 -0.013571 -0.030856 0.999514 -0.004407 -0.037562 0.999294 0.000977 -0.055712 0.998282 0.018139 -0.084697 0.994083 0.068015 -0.111368 0.990125 0.085149 -0.071985 0.997187 0.020862 -0.178853 0.968343 0.174135 -0.156766 0.974995 0.157511 -0.559582 0.591178 0.580842 -0.559598 0.58605 0.586 -0.04219 0.998759 -0.026456 -0.055712 0.998282 0.018139 -0.071985 0.997187 0.020862 -0.06308 0.997519 -0.031253 -0.003603 0.994101 -0.108396 -0.033773 0.989925 -0.137505 -0.071845 0.630994 -0.772454 -0.000432 0.650708 -0.759328 -0.003603 0.994101 -0.108396 0.016514 0.99838 -0.054443 -0.005516 0.999525 -0.03033 -0.029028 0.997742 -0.060569 0.016514 0.99838 -0.054443 0.043177 0.680297 -0.731664 -0.234329 0.721422 -0.651645 0.008274 0.99951 -0.030174 -0.017512 0.99973 -0.015263 -0.652698 0.696236 -0.298733 -0.655634 0.695745 -0.293399 -0.02776 0.999592 -0.006732 -0.704118 0.699508 -0.122094 -0.047292 0.998869 0.004917 -0.038561 0.999255 -0.00134 -0.659779 0.694032 -0.288116 -0.655694 0.694762 0.295587 -0.549239 0.640136 0.53718 -0.093996 0.992627 0.076524 -0.065828 0.997165 0.036442 -0.555958 0.60894 0.565777 -0.121262 0.985736 0.1167 -0.093996 0.992627 0.076524 -0.549239 0.640136 0.53718 -0.048124 0.99867 0.018513 -0.037562 0.999294 0.000977 -0.047292 0.998869 0.004917 -0.065828 0.997165 0.036442 -0.017512 0.99973 -0.015263 -0.02776 0.999592 -0.006732 -0.018109 0.99978 -0.010537 -0.009402 0.999816 -0.016695 -0.030856 0.999514 -0.004407 -0.038561 0.999255 -0.00134 -0.047292 0.998869 0.004917 -0.037562 0.999294 0.000977 -0.111368 0.990125 0.085149 -0.084697 0.994083 0.068015 -0.156766 0.974995 0.157511 -0.178853 0.968343 0.174135 -0.059898 0.995457 -0.074009 -0.029028 0.997742 -0.060569 -0.04219 0.998759 -0.026456 -0.06308 0.997519 -0.031253 -0.121262 0.985736 0.1167 -0.050348 0.998132 0.034619 -0.048124 0.99867 0.018513 -0.093996 0.992627 0.076524 -0.055712 0.998282 0.018139 -0.035423 0.999334 0.008807 -0.050348 0.998132 0.034619 -0.084697 0.994083 0.068015 -0.156766 0.974995 0.157511 -0.084697 0.994083 0.068015 -0.050348 0.998132 0.034619 -0.121262 0.985736 0.1167 -0.555958 0.60894 0.565777 -0.559582 0.591178 0.580842 -0.156766 0.974995 0.157511 -0.121262 0.985736 0.1167 -0.003603 0.994101 -0.108396 -0.029028 0.997742 -0.060569 -0.059898 0.995457 -0.074009 -0.033773 0.989925 -0.137505 -0.581416 -0.695606 -0.422004 -0.042281 -0.998832 -0.02338 -0.658185 -0.689064 -0.303288 -0.644639 -0.697152 -0.31372 -0.652078 -0.692644 -0.308283 -0.029822 -0.999232 -0.025413 -0.015033 -0.99941 -0.030885 -0.002387 -0.999458 -0.032839 -0.633776 -0.733032 0.246965 -0.683207 -0.712575 -0.15958 -0.005055 -0.999354 -0.035585 -0.048516 -0.998736 -0.013125 -0.012095 -0.700361 -0.713687 -0.049857 -0.716774 -0.69552 -0.054278 -0.998501 0.007046 -0.029731 -0.999492 -0.011512 -0.039814 -0.999165 -0.009192 -0.051055 -0.99869 -0.003291 -0.049308 -0.998776 -0.003817 -0.010058 -0.999807 -0.016848 0.002177 -0.999573 -0.029133 -0.004426 -0.999635 -0.026661 -0.019067 -0.999716 -0.014299 -0.015033 -0.99941 -0.030885 -0.029822 -0.999232 -0.025413 -0.02808 -0.999453 -0.017439 -0.014684 -0.99964 -0.022468 -0.049179 -0.998774 -0.005635 -0.019067 -0.999716 -0.014299 -0.029731 -0.999492 -0.011512 -0.049308 -0.998776 -0.003817 -0.014684 -0.99964 -0.022468 -0.02808 -0.999453 -0.017439 -0.039814 -0.999165 -0.009192 -0.029731 -0.999492 -0.011512 0.002177 -0.999573 -0.029133 -0.003123 -0.99982 -0.018699 -0.002387 -0.999458 -0.032839 -0.019067 -0.999716 -0.014299 -0.004426 -0.999635 -0.026661 -0.014684 -0.99964 -0.022468 -0.029731 -0.999492 -0.011512 -0.049179 -0.998774 -0.005635 -0.062695 -0.998024 -0.004226 -0.0744479 -0.99722 -0.002969 -0.050183 -0.998723 -0.005897 -0.111667 -0.992711 0.045336 -0.545695 -0.645287 0.534623 -0.530956 -0.6683 0.521019 -0.07222 -0.997086 0.024582 -0.049308 -0.998776 -0.003817 -0.052852 -0.9986 -0.002026 -0.062695 -0.998024 -0.004226 -0.049179 -0.998774 -0.005635 -0.054278 -0.998501 0.007046 -0.049857 -0.716774 -0.69552 -0.104309 -0.724676 -0.68115 -0.049918 -0.998605 0.017191 -0.054278 -0.998501 0.007046 -0.051055 -0.99869 -0.003291 -0.039814 -0.999165 -0.009192 -0.048516 -0.998736 -0.013125 -0.048516 -0.998736 -0.013125 -0.039298 -0.998965 -0.022903 -0.26898 -0.714179 -0.646218 -0.012095 -0.700361 -0.713687 -0.048516 -0.998736 -0.013125 -0.039814 -0.999165 -0.009192 -0.02808 -0.999453 -0.017439 -0.039298 -0.998965 -0.022903 -0.042281 -0.998832 -0.02338 -0.581416 -0.695606 -0.422004 -0.26898 -0.714179 -0.646218 -0.039298 -0.998965 -0.022903 -0.042281 -0.998832 -0.02338 -0.029822 -0.999232 -0.025413 -0.652078 -0.692644 -0.308283 -0.658185 -0.689064 -0.303288 -0.683207 -0.712575 -0.15958 -0.644639 -0.697152 -0.31372 -0.015033 -0.99941 -0.030885 -0.005055 -0.999354 -0.035585 -0.633776 -0.733032 0.246965 -0.002387 -0.999458 -0.032839 -0.003123 -0.99982 -0.018699 -0.510224 -0.706207 0.49086 -0.508745 -0.697006 0.505333 -0.510224 -0.706207 0.49086 -0.003123 -0.99982 -0.018699 -0.017864 -0.999834 -0.003426 0.002177 -0.999573 -0.029133 -0.002387 -0.999458 -0.032839 -0.005055 -0.999354 -0.035585 -0.004426 -0.999635 -0.026661 -0.039298 -0.998965 -0.022903 -0.02808 -0.999453 -0.017439 -0.029822 -0.999232 -0.025413 -0.042281 -0.998832 -0.02338 -0.014684 -0.99964 -0.022468 -0.004426 -0.999635 -0.026661 -0.005055 -0.999354 -0.035585 -0.015033 -0.99941 -0.030885 -0.0744479 -0.99722 -0.002969 -0.111667 -0.992711 0.045336 -0.07222 -0.997086 0.024582 -0.050183 -0.998723 -0.005897 -0.049933 -0.998752 -0.001425 -0.052852 -0.9986 -0.002026 -0.049308 -0.998776 -0.003817 -0.051055 -0.99869 -0.003291 -0.017864 -0.999834 -0.003426 -0.003123 -0.99982 -0.018699 0.002177 -0.999573 -0.029133 -0.010058 -0.999807 -0.016848 -0.049179 -0.998774 -0.005635 -0.050183 -0.998723 -0.005897 -0.010058 -0.999807 -0.016848 -0.019067 -0.999716 -0.014299 -0.07222 -0.997086 0.024582 -0.017864 -0.999834 -0.003426 -0.010058 -0.999807 -0.016848 -0.050183 -0.998723 -0.005897 -0.508745 -0.697006 0.505333 -0.017864 -0.999834 -0.003426 -0.07222 -0.997086 0.024582 -0.530956 -0.6683 0.521019 -0.054278 -0.998501 0.007046 -0.049918 -0.998605 0.017191 -0.049933 -0.998752 -0.001425 -0.051055 -0.99869 -0.003291 -0.567088 0.706999 -0.422568 -0.234329 0.721422 -0.651645 -0.26898 -0.714179 -0.646218 -0.581416 -0.695606 -0.422004 -0.652698 0.696236 -0.298733 -0.567088 0.706999 -0.422568 -0.581416 -0.695606 -0.422004 -0.658185 -0.689064 -0.303288 -0.704118 0.699508 -0.122094 -0.659779 0.694032 -0.288116 -0.644639 -0.697152 -0.31372 -0.683207 -0.712575 -0.15958 -0.555958 0.60894 0.565777 -0.549239 0.640136 0.53718 -0.510224 -0.706207 0.49086 -0.508745 -0.697006 0.505333 0.043177 0.680297 -0.731664 -0.000432 0.650708 -0.759328 -0.049857 -0.716774 -0.69552 -0.012095 -0.700361 -0.713687 -0.655694 0.694762 0.295587 -0.704118 0.699508 -0.122094 -0.683207 -0.712575 -0.15958 -0.633776 -0.733032 0.246965 -0.000432 0.650708 -0.759328 -0.071845 0.630994 -0.772454 -0.104309 -0.724676 -0.68115 -0.049857 -0.716774 -0.69552 -0.234329 0.721422 -0.651645 0.043177 0.680297 -0.731664 -0.012095 -0.700361 -0.713687 -0.26898 -0.714179 -0.646218 -0.655634 0.695745 -0.293399 -0.652698 0.696236 -0.298733 -0.658185 -0.689064 -0.303288 -0.652078 -0.692644 -0.308283 -0.659779 0.694032 -0.288116 -0.655634 0.695745 -0.293399 -0.652078 -0.692644 -0.308283 -0.644639 -0.697152 -0.31372 -0.549239 0.640136 0.53718 -0.655694 0.694762 0.295587 -0.633776 -0.733032 0.246965 -0.510224 -0.706207 0.49086 -0.559598 0.58605 0.586 -0.559582 0.591178 0.580842 -0.530956 -0.6683 0.521019 -0.545695 -0.645287 0.534623 -0.559582 0.591178 0.580842 -0.555958 0.60894 0.565777 -0.508745 -0.697006 0.505333 -0.530956 -0.6683 0.521019 0.016514 0.99838 -0.054443 -0.009402 0.999816 -0.016695 -0.018109 0.99978 -0.010537 -0.005516 0.999525 -0.03033 -0.017512 0.99973 -0.015263 0.008274 0.99951 -0.030174 -0.234329 0.721422 -0.651645 -0.567088 0.706999 -0.422568 -0.927544 0.122109 -0.353201 -0.90367 0.242137 -0.3532 -0.90367 0.242137 -0.3532 -0.927544 0.122109 -0.353201 -0.90367 0.242137 -0.3532 -0.864334 0.358019 -0.353198 -0.864334 0.358019 -0.353198 -0.90367 0.242137 -0.3532 -0.864334 0.358019 -0.353198 -0.81021 0.467775 -0.353195 -0.81021 0.467775 -0.353195 -0.864334 0.358019 -0.353198 -0.81021 0.467775 -0.353195 -0.742222 0.569527 -0.353192 -0.742222 0.569527 -0.353192 -0.81021 0.467775 -0.353195 -0.742222 0.569527 -0.353192 -0.661535 0.661535 -0.353188 -0.661535 0.661535 -0.353188 -0.742222 0.569527 -0.353192 -0.661535 0.661535 -0.353188 -0.56953 0.742225 -0.353182 -0.56953 0.742225 -0.353182 -0.661535 0.661535 -0.353188 -0.56953 0.742225 -0.353182 -0.467778 0.810216 -0.353177 -0.467778 0.810216 -0.353177 -0.56953 0.742225 -0.353182 -0.467778 0.810216 -0.353177 -0.358022 0.864343 -0.353172 -0.358022 0.864343 -0.353172 -0.467778 0.810216 -0.353177 -0.358022 0.864343 -0.353172 -0.242141 0.903682 -0.353166 -0.242141 0.903682 -0.353166 -0.358022 0.864343 -0.353172 -0.242141 0.903682 -0.353166 -0.122116 0.927559 -0.35316 -0.122116 0.927559 -0.35316 -0.242141 0.903682 -0.353166 -0.122116 0.927559 -0.35316 0 0.935565 -0.353154 0 0.935565 -0.353154 -0.122116 0.927559 -0.35316 0 0.935565 -0.353154 0.122117 0.927564 -0.353147 0.122117 0.927564 -0.353147 0 0.935565 -0.353154 0.122117 0.927564 -0.353147 0.242142 0.903691 -0.353141 0.242142 0.903691 -0.353141 0.122117 0.927564 -0.353147 0.242142 0.903691 -0.353141 0.358027 0.864357 -0.353135 0.358027 0.864357 -0.353135 0.242142 0.903691 -0.353141 0.358027 0.864357 -0.353135 0.467787 0.810231 -0.35313 0.467787 0.810231 -0.35313 0.358027 0.864357 -0.353135 0.467787 0.810231 -0.35313 0.569543 0.742243 -0.353124 0.569543 0.742243 -0.353124 0.467787 0.810231 -0.35313 0.569543 0.742243 -0.353124 0.661554 0.661554 -0.35312 0.661554 0.661554 -0.35312 0.569543 0.742243 -0.353124 0.661554 0.661554 -0.35312 0.733619 0.579762 -0.354513 0.733619 0.579762 -0.354513 0.661554 0.661554 -0.35312 0.733619 0.579762 -0.354513 0.809611 0.465642 -0.357363 0.809611 0.465642 -0.357363 0.733619 0.579762 -0.354513 0.809611 0.465642 -0.357363 0.86942 0.343981 -0.354664 0.86942 0.343981 -0.354664 0.809611 0.465642 -0.357363 0.86942 0.343981 -0.354664 0.903704 0.242146 -0.353107 0.903704 0.242146 -0.353107 0.86942 0.343981 -0.354664 0.903704 0.242146 -0.353107 0.927579 0.122117 -0.353106 0.927579 0.122117 -0.353106 0.903704 0.242146 -0.353107 0.927579 0.122117 -0.353106 0.935583 0 -0.353106 0.935583 0 -0.353106 0.927579 0.122117 -0.353106 0.935583 0 -0.353106 0.927579 -0.122118 -0.353106 0.927579 -0.122118 -0.353106 0.935583 0 -0.353106 0.927579 -0.122118 -0.353106 0.903704 -0.242147 -0.353107 0.903704 -0.242147 -0.353107 0.927579 -0.122118 -0.353106 0.903704 -0.242147 -0.353107 0.86942 -0.34398 -0.354664 0.86942 -0.34398 -0.354664 0.903704 -0.242147 -0.353107 0.86942 -0.34398 -0.354664 0.809611 -0.465641 -0.357363 0.809611 -0.465641 -0.357363 0.86942 -0.34398 -0.354664 0.809611 -0.465641 -0.357363 0.733618 -0.579763 -0.354513 0.733618 -0.579763 -0.354513 0.809611 -0.465641 -0.357363 0.733618 -0.579763 -0.354513 0.661553 -0.661554 -0.35312 0.661553 -0.661554 -0.35312 0.733618 -0.579763 -0.354513 0.661553 -0.661554 -0.35312 0.569543 -0.742243 -0.353124 0.569543 -0.742243 -0.353124 0.661553 -0.661554 -0.35312 0.569543 -0.742243 -0.353124 0.467788 -0.810231 -0.353129 0.467788 -0.810231 -0.353129 0.569543 -0.742243 -0.353124 0.467788 -0.810231 -0.353129 0.358029 -0.864356 -0.353135 0.358029 -0.864356 -0.353135 0.467788 -0.810231 -0.353129 0.358029 -0.864356 -0.353135 0.242143 -0.903691 -0.353141 0.242143 -0.903691 -0.353141 0.358029 -0.864356 -0.353135 0.242143 -0.903691 -0.353141 0.122114 -0.927564 -0.353147 0.122114 -0.927564 -0.353147 0.242143 -0.903691 -0.353141 0.122114 -0.927564 -0.353147 0 -0.935565 -0.353154 0 -0.935565 -0.353154 0.122114 -0.927564 -0.353147 0 -0.935565 -0.353154 -0.122115 -0.927559 -0.35316 -0.122115 -0.927559 -0.35316 0 -0.935565 -0.353154 -0.122115 -0.927559 -0.35316 -0.242141 -0.903682 -0.353166 -0.242141 -0.903682 -0.353166 -0.122115 -0.927559 -0.35316 -0.242141 -0.903682 -0.353166 -0.358024 -0.864343 -0.353172 -0.358024 -0.864343 -0.353172 -0.242141 -0.903682 -0.353166 -0.358024 -0.864343 -0.353172 -0.467778 -0.810216 -0.353177 -0.467778 -0.810216 -0.353177 -0.358024 -0.864343 -0.353172 -0.467778 -0.810216 -0.353177 -0.569529 -0.742226 -0.353182 -0.569529 -0.742226 -0.353182 -0.467778 -0.810216 -0.353177 -0.569529 -0.742226 -0.353182 -0.661535 -0.661535 -0.353188 -0.661535 -0.661535 -0.353188 -0.569529 -0.742226 -0.353182 -0.661535 -0.661535 -0.353188 -0.742223 -0.569527 -0.353191 -0.742223 -0.569527 -0.353191 -0.661535 -0.661535 -0.353188 -0.742223 -0.569527 -0.353191 -0.810211 -0.467774 -0.353194 -0.810211 -0.467774 -0.353194 -0.742223 -0.569527 -0.353191 -0.810211 -0.467774 -0.353194 -0.864335 -0.358018 -0.353198 -0.864335 -0.358018 -0.353198 -0.810211 -0.467774 -0.353194 -0.864335 -0.358018 -0.353198 -0.90367 -0.242138 -0.3532 -0.90367 -0.242138 -0.3532 -0.864335 -0.358018 -0.353198 -0.90367 -0.242138 -0.3532 -0.927544 -0.122113 -0.353201 -0.927544 -0.122113 -0.353201 -0.90367 -0.242138 -0.3532 -0.927544 -0.122113 -0.353201 -0.935547 0 -0.353201 -0.935547 0 -0.353201 -0.927544 -0.122113 -0.353201 -0.935547 0 -0.353201 -0.927544 0.122109 -0.353201 -0.927544 0.122109 -0.353201 -0.935547 0 -0.353201 0.987412 -0.129991 -0.090108 0.961996 -0.257766 -0.090109 0.650821 -0.174387 -0.738933 0.668015 -0.0879429 -0.738932 0.961996 -0.257766 -0.090109 0.920121 -0.381125 -0.090111 0.62249 -0.257843 -0.738934 0.650821 -0.174387 -0.738933 0.920121 -0.381125 -0.090111 0.862502 -0.497966 -0.090114 0.583508 -0.336889 -0.738935 0.62249 -0.257843 -0.738934 0.862502 -0.497966 -0.090114 0.790125 -0.606285 -0.090118 0.534542 -0.410169 -0.738936 0.583508 -0.336889 -0.738935 0.790125 -0.606285 -0.090118 0.704229 -0.704229 -0.090122 0.47643 -0.47643 -0.738937 0.534542 -0.410169 -0.738936 0.704229 -0.704229 -0.090122 0.606284 -0.790125 -0.0901269 0.410167 -0.53454 -0.738939 0.47643 -0.47643 -0.738937 0.606284 -0.790125 -0.0901269 0.497966 -0.8625 -0.090132 0.336886 -0.583502 -0.73894 0.410167 -0.53454 -0.738939 0.497966 -0.8625 -0.090132 0.381126 -0.920119 -0.090137 0.257844 -0.62248 -0.738942 0.336886 -0.583502 -0.73894 0.381126 -0.920119 -0.090137 0.257764 -0.961994 -0.090143 0.174387 -0.650808 -0.738944 0.257844 -0.62248 -0.738942 0.257764 -0.961994 -0.090143 0.129995 -0.987408 -0.090149 0.087944 -0.668 -0.738946 0.174387 -0.650808 -0.738944 0.129995 -0.987408 -0.090149 0 -0.995928 -0.090156 0 -0.673762 -0.738948 0.087944 -0.668 -0.738946 0 -0.995928 -0.090156 -0.129994 -0.987407 -0.090162 -0.0879429 -0.667996 -0.738951 0 -0.673762 -0.738948 -0.129994 -0.987407 -0.090162 -0.257764 -0.961991 -0.0901679 -0.174384 -0.650799 -0.738952 -0.0879429 -0.667996 -0.738951 -0.257764 -0.961991 -0.0901679 -0.381124 -0.920116 -0.090174 -0.257839 -0.622468 -0.738954 -0.174384 -0.650799 -0.738952 -0.381124 -0.920116 -0.090174 -0.497963 -0.862496 -0.09018 -0.336881 -0.583486 -0.738956 -0.257839 -0.622468 -0.738954 -0.497963 -0.862496 -0.09018 -0.606281 -0.79012 -0.090185 -0.410157 -0.534522 -0.738957 -0.336881 -0.583486 -0.738956 -0.606281 -0.79012 -0.090185 -0.704225 -0.704225 -0.090189 -0.476413 -0.476413 -0.73896 -0.410157 -0.534522 -0.738957 -0.704225 -0.704225 -0.090189 -0.79012 -0.606281 -0.0901939 -0.53452 -0.410152 -0.738961 -0.476413 -0.476413 -0.73896 -0.79012 -0.606281 -0.0901939 -0.862495 -0.497962 -0.0901969 -0.583482 -0.336873 -0.738963 -0.53452 -0.410152 -0.738961 -0.862495 -0.497962 -0.0901969 -0.920113 -0.381124 -0.0902 -0.62246 -0.257831 -0.738963 -0.583482 -0.336873 -0.738963 -0.920113 -0.381124 -0.0902 -0.961988 -0.257763 -0.090202 -0.650788 -0.174378 -0.738964 -0.62246 -0.257831 -0.738963 -0.961988 -0.257763 -0.090202 -0.987403 -0.129993 -0.090203 -0.66798 -0.087941 -0.738965 -0.650788 -0.174378 -0.738964 -0.987403 -0.129993 -0.090203 -0.995923 0 -0.090203 -0.673744 0 -0.738965 -0.66798 -0.087941 -0.738965 -0.995923 0 -0.090203 -0.987403 0.129994 -0.090203 -0.66798 0.087941 -0.738965 -0.673744 0 -0.738965 -0.987403 0.129994 -0.090203 -0.961988 0.257765 -0.090202 -0.650787 0.174378 -0.738964 -0.66798 0.087941 -0.738965 -0.961988 0.257765 -0.090202 -0.920114 0.381123 -0.0902 -0.62246 0.257831 -0.738963 -0.650787 0.174378 -0.738964 -0.920114 0.381123 -0.0902 -0.862495 0.497962 -0.0901969 -0.583482 0.336873 -0.738963 -0.62246 0.257831 -0.738963 -0.862495 0.497962 -0.0901969 -0.79012 0.606281 -0.0901939 -0.53452 0.410152 -0.738961 -0.583482 0.336873 -0.738963 -0.79012 0.606281 -0.0901939 -0.704225 0.704225 -0.0901889 -0.476413 0.476413 -0.73896 -0.53452 0.410152 -0.738961 -0.704225 0.704225 -0.0901889 -0.606281 0.79012 -0.090185 -0.410154 0.534523 -0.738958 -0.476413 0.476413 -0.73896 -0.606281 0.79012 -0.090185 -0.497963 0.862497 -0.090179 -0.336873 0.583488 -0.738958 -0.410154 0.534523 -0.738958 -0.497963 0.862497 -0.090179 -0.381124 0.920116 -0.090174 -0.257831 0.622469 -0.738955 -0.336873 0.583488 -0.738958 -0.381124 0.920116 -0.090174 -0.257764 0.961991 -0.090168 -0.174381 0.6508 -0.738953 -0.257831 0.622469 -0.738955 -0.257764 0.961991 -0.090168 -0.129994 0.987407 -0.090161 -0.087943 0.667996 -0.73895 -0.174381 0.6508 -0.738953 -0.129994 0.987407 -0.090161 0 0.995928 -0.090155 0 0.673762 -0.738948 -0.087943 0.667996 -0.73895 0 0.995928 -0.090155 0.129995 0.987408 -0.090149 0.087944 0.668 -0.738946 0 0.673762 -0.738948 0.129995 0.987408 -0.090149 0.257766 0.961993 -0.090143 0.174384 0.650809 -0.738944 0.087944 0.668 -0.738946 0.257766 0.961993 -0.090143 0.381127 0.920118 -0.090137 0.257841 0.622481 -0.738942 0.174384 0.650809 -0.738944 0.381127 0.920118 -0.090137 0.497965 0.8625 -0.0901309 0.336889 0.583502 -0.738939 0.257841 0.622481 -0.738942 0.497965 0.8625 -0.0901309 0.606284 0.790125 -0.090126 0.41017 0.534539 -0.738937 0.336889 0.583502 -0.738939 0.606284 0.790125 -0.090126 0.704229 0.70423 -0.090121 0.47643 0.476431 -0.738937 0.41017 0.534539 -0.738937 0.704229 0.70423 -0.090121 0.790126 0.606284 -0.090117 0.534543 0.410169 -0.738935 0.47643 0.476431 -0.738937 0.790126 0.606284 -0.090117 0.862502 0.497966 -0.090114 0.583508 0.336889 -0.738934 0.534543 0.410169 -0.738935 0.862502 0.497966 -0.090114 0.920121 0.381127 -0.090111 0.62249 0.257844 -0.738934 0.583508 0.336889 -0.738934 0.920121 0.381127 -0.090111 0.961997 0.257765 -0.090109 0.650821 0.174386 -0.738933 0.62249 0.257844 -0.738934 0.961997 0.257765 -0.090109 0.987412 0.129995 -0.090108 0.668016 0.087945 -0.738932 0.650821 0.174386 -0.738933 0.987412 0.129995 -0.090108 0.995932 0 -0.090107 0.67378 0 -0.738932 0.668016 0.087945 -0.738932 0.995932 0 -0.090107 0.987412 -0.129991 -0.090108 0.668015 -0.0879429 -0.738932 0.67378 0 -0.738932 0.668015 -0.0879429 -0.738932 0.650821 -0.174387 -0.738933 0 0 -1 0.650821 -0.174387 -0.738933 0.62249 -0.257843 -0.738934 0 0 -1 0.62249 -0.257843 -0.738934 0.583508 -0.336889 -0.738935 0 0 -1 0.583508 -0.336889 -0.738935 0.534542 -0.410169 -0.738936 0 0 -1 0.534542 -0.410169 -0.738936 0.47643 -0.47643 -0.738937 0 0 -1 0.47643 -0.47643 -0.738937 0.410167 -0.53454 -0.738939 0 0 -1 0.410167 -0.53454 -0.738939 0.336886 -0.583502 -0.73894 0 0 -1 0.336886 -0.583502 -0.73894 0.257844 -0.62248 -0.738942 0 0 -1 0.257844 -0.62248 -0.738942 0.174387 -0.650808 -0.738944 0 0 -1 0.174387 -0.650808 -0.738944 0.087944 -0.668 -0.738946 0 0 -1 0.087944 -0.668 -0.738946 0 -0.673762 -0.738948 0 0 -1 0 -0.673762 -0.738948 -0.0879429 -0.667996 -0.738951 0 0 -1 -0.0879429 -0.667996 -0.738951 -0.174384 -0.650799 -0.738952 0 0 -1 -0.174384 -0.650799 -0.738952 -0.257839 -0.622468 -0.738954 0 0 -1 -0.257839 -0.622468 -0.738954 -0.336881 -0.583486 -0.738956 0 0 -1 -0.336881 -0.583486 -0.738956 -0.410157 -0.534522 -0.738957 0 0 -1 -0.410157 -0.534522 -0.738957 -0.476413 -0.476413 -0.73896 0 0 -1 -0.476413 -0.476413 -0.73896 -0.53452 -0.410152 -0.738961 0 0 -1 -0.53452 -0.410152 -0.738961 -0.583482 -0.336873 -0.738963 0 0 -1 -0.583482 -0.336873 -0.738963 -0.62246 -0.257831 -0.738963 0 0 -1 -0.62246 -0.257831 -0.738963 -0.650788 -0.174378 -0.738964 0 0 -1 -0.650788 -0.174378 -0.738964 -0.66798 -0.087941 -0.738965 0 0 -1 -0.66798 -0.087941 -0.738965 -0.673744 0 -0.738965 0 0 -1 -0.673744 0 -0.738965 -0.66798 0.087941 -0.738965 0 0 -1 -0.66798 0.087941 -0.738965 -0.650787 0.174378 -0.738964 0 0 -1 -0.650787 0.174378 -0.738964 -0.62246 0.257831 -0.738963 0 0 -1 -0.62246 0.257831 -0.738963 -0.583482 0.336873 -0.738963 0 0 -1 -0.583482 0.336873 -0.738963 -0.53452 0.410152 -0.738961 0 0 -1 -0.53452 0.410152 -0.738961 -0.476413 0.476413 -0.73896 0 0 -1 -0.476413 0.476413 -0.73896 -0.410154 0.534523 -0.738958 0 0 -1 -0.410154 0.534523 -0.738958 -0.336873 0.583488 -0.738958 0 0 -1 -0.336873 0.583488 -0.738958 -0.257831 0.622469 -0.738955 0 0 -1 -0.257831 0.622469 -0.738955 -0.174381 0.6508 -0.738953 0 0 -1 -0.174381 0.6508 -0.738953 -0.087943 0.667996 -0.73895 0 0 -1 -0.087943 0.667996 -0.73895 0 0.673762 -0.738948 0 0 -1 0 0.673762 -0.738948 0.087944 0.668 -0.738946 0 0 -1 0.087944 0.668 -0.738946 0.174384 0.650809 -0.738944 0 0 -1 0.174384 0.650809 -0.738944 0.257841 0.622481 -0.738942 0 0 -1 0.257841 0.622481 -0.738942 0.336889 0.583502 -0.738939 0 0 -1 0.336889 0.583502 -0.738939 0.41017 0.534539 -0.738937 0 0 -1 0.41017 0.534539 -0.738937 0.47643 0.476431 -0.738937 0 0 -1 0.47643 0.476431 -0.738937 0.534543 0.410169 -0.738935 0 0 -1 0.534543 0.410169 -0.738935 0.583508 0.336889 -0.738934 0 0 -1 0.583508 0.336889 -0.738934 0.62249 0.257844 -0.738934 0 0 -1 0.62249 0.257844 -0.738934 0.650821 0.174386 -0.738933 0 0 -1 0.650821 0.174386 -0.738933 0.668016 0.087945 -0.738932 0 0 -1 0.668016 0.087945 -0.738932 0.67378 0 -0.738932 0 0 -1 0.67378 0 -0.738932 0.668015 -0.0879429 -0.738932 0 0 -1 -0.927544 0.122109 -0.353201 -0.90367 0.242137 -0.3532 -0.90367 0.242137 -0.3532 -0.927544 0.122109 -0.353201 -0.90367 0.242137 -0.3532 -0.869388 0.343969 -0.354753 -0.869388 0.343969 -0.354753 -0.90367 0.242137 -0.3532 -0.869388 0.343969 -0.354753 -0.809583 0.465626 -0.357446 -0.809583 0.465626 -0.357446 -0.869388 0.343969 -0.354753 -0.809583 0.465626 -0.357446 -0.733596 0.579745 -0.354588 -0.733596 0.579745 -0.354588 -0.809583 0.465626 -0.357446 -0.733596 0.579745 -0.354588 -0.661536 0.661535 -0.353188 -0.661536 0.661535 -0.353188 -0.733596 0.579745 -0.354588 -0.661536 0.661535 -0.353188 -0.56953 0.742225 -0.353182 -0.56953 0.742225 -0.353182 -0.661536 0.661535 -0.353188 -0.56953 0.742225 -0.353182 -0.467778 0.810215 -0.353178 -0.467778 0.810215 -0.353178 -0.56953 0.742225 -0.353182 -0.467778 0.810215 -0.353178 -0.358022 0.864343 -0.353172 -0.358022 0.864343 -0.353172 -0.467778 0.810215 -0.353178 -0.358022 0.864343 -0.353172 -0.242141 0.903682 -0.353166 -0.242141 0.903682 -0.353166 -0.358022 0.864343 -0.353172 -0.242141 0.903682 -0.353166 -0.122116 0.927559 -0.35316 -0.122116 0.927559 -0.35316 -0.242141 0.903682 -0.353166 -0.122116 0.927559 -0.35316 0 0.935565 -0.353154 0 0.935565 -0.353154 -0.122116 0.927559 -0.35316 0 0.935565 -0.353154 0.122117 0.927564 -0.353147 0.122117 0.927564 -0.353147 0 0.935565 -0.353154 0.122117 0.927564 -0.353147 0.242142 0.903692 -0.353141 0.242142 0.903692 -0.353141 0.122117 0.927564 -0.353147 0.242142 0.903692 -0.353141 0.358027 0.864357 -0.353135 0.358027 0.864357 -0.353135 0.242142 0.903692 -0.353141 0.358027 0.864357 -0.353135 0.467787 0.810231 -0.35313 0.467787 0.810231 -0.35313 0.358027 0.864357 -0.353135 0.467787 0.810231 -0.35313 0.569543 0.742243 -0.353124 0.569543 0.742243 -0.353124 0.467787 0.810231 -0.35313 0.569543 0.742243 -0.353124 0.661554 0.661553 -0.35312 0.661554 0.661553 -0.35312 0.569543 0.742243 -0.353124 0.661554 0.661553 -0.35312 0.742245 0.569545 -0.353115 0.742245 0.569545 -0.353115 0.661554 0.661553 -0.35312 0.742245 0.569545 -0.353115 0.810237 0.467791 -0.353112 0.810237 0.467791 -0.353112 0.742245 0.569545 -0.353115 0.810237 0.467791 -0.353112 0.864365 0.358031 -0.353109 0.864365 0.358031 -0.353109 0.810237 0.467791 -0.353112 0.864365 0.358031 -0.353109 0.903704 0.242147 -0.353107 0.903704 0.242147 -0.353107 0.864365 0.358031 -0.353109 0.903704 0.242147 -0.353107 0.927579 0.122117 -0.353106 0.927579 0.122117 -0.353106 0.903704 0.242147 -0.353107 0.927579 0.122117 -0.353106 0.935583 0 -0.353106 0.935583 0 -0.353106 0.927579 0.122117 -0.353106 0.935583 0 -0.353106 0.927579 -0.122118 -0.353106 0.927579 -0.122118 -0.353106 0.935583 0 -0.353106 0.927579 -0.122118 -0.353106 0.903704 -0.242147 -0.353107 0.903704 -0.242147 -0.353107 0.927579 -0.122118 -0.353106 0.903704 -0.242147 -0.353107 0.864365 -0.358032 -0.35311 0.864365 -0.358032 -0.35311 0.903704 -0.242147 -0.353107 0.864365 -0.358032 -0.35311 0.810237 -0.467791 -0.353112 0.810237 -0.467791 -0.353112 0.864365 -0.358032 -0.35311 0.810237 -0.467791 -0.353112 0.742245 -0.569545 -0.353116 0.742245 -0.569545 -0.353116 0.810237 -0.467791 -0.353112 0.742245 -0.569545 -0.353116 0.661553 -0.661554 -0.35312 0.661553 -0.661554 -0.35312 0.742245 -0.569545 -0.353116 0.661553 -0.661554 -0.35312 0.569543 -0.742242 -0.353125 0.569543 -0.742242 -0.353125 0.661553 -0.661554 -0.35312 0.569543 -0.742242 -0.353125 0.467788 -0.810231 -0.353129 0.467788 -0.810231 -0.353129 0.569543 -0.742242 -0.353125 0.467788 -0.810231 -0.353129 0.358029 -0.864356 -0.353135 0.358029 -0.864356 -0.353135 0.467788 -0.810231 -0.353129 0.358029 -0.864356 -0.353135 0.242143 -0.903691 -0.353141 0.242143 -0.903691 -0.353141 0.358029 -0.864356 -0.353135 0.242143 -0.903691 -0.353141 0.122114 -0.927564 -0.353147 0.122114 -0.927564 -0.353147 0.242143 -0.903691 -0.353141 0.122114 -0.927564 -0.353147 0 -0.935565 -0.353154 0 -0.935565 -0.353154 0.122114 -0.927564 -0.353147 0 -0.935565 -0.353154 -0.122115 -0.927559 -0.35316 -0.122115 -0.927559 -0.35316 0 -0.935565 -0.353154 -0.122115 -0.927559 -0.35316 -0.242141 -0.903682 -0.353166 -0.242141 -0.903682 -0.353166 -0.122115 -0.927559 -0.35316 -0.242141 -0.903682 -0.353166 -0.358024 -0.864343 -0.353172 -0.358024 -0.864343 -0.353172 -0.242141 -0.903682 -0.353166 -0.358024 -0.864343 -0.353172 -0.467778 -0.810216 -0.353178 -0.467778 -0.810216 -0.353178 -0.358024 -0.864343 -0.353172 -0.467778 -0.810216 -0.353178 -0.569529 -0.742226 -0.353183 -0.569529 -0.742226 -0.353183 -0.467778 -0.810216 -0.353178 -0.569529 -0.742226 -0.353183 -0.661535 -0.661536 -0.353187 -0.661535 -0.661536 -0.353187 -0.569529 -0.742226 -0.353183 -0.661535 -0.661536 -0.353187 -0.733596 -0.579745 -0.354587 -0.733596 -0.579745 -0.354587 -0.661535 -0.661536 -0.353187 -0.733596 -0.579745 -0.354587 -0.809583 -0.465626 -0.357446 -0.809583 -0.465626 -0.357446 -0.733596 -0.579745 -0.354587 -0.809583 -0.465626 -0.357446 -0.869389 -0.343967 -0.354753 -0.869389 -0.343967 -0.354753 -0.809583 -0.465626 -0.357446 -0.869389 -0.343967 -0.354753 -0.90367 -0.242137 -0.3532 -0.90367 -0.242137 -0.3532 -0.869389 -0.343967 -0.354753 -0.90367 -0.242137 -0.3532 -0.927544 -0.122113 -0.353201 -0.927544 -0.122113 -0.353201 -0.90367 -0.242137 -0.3532 -0.927544 -0.122113 -0.353201 -0.935547 0 -0.353201 -0.935547 0 -0.353201 -0.927544 -0.122113 -0.353201 -0.935547 0 -0.353201 -0.927544 0.122109 -0.353201 -0.927544 0.122109 -0.353201 -0.935547 0 -0.353201 0.987412 -0.12999 -0.090108 0.961996 -0.257766 -0.090109 0.650821 -0.174387 -0.738933 0.668015 -0.0879429 -0.738932 0.961996 -0.257766 -0.090109 0.920121 -0.381126 -0.090111 0.62249 -0.257844 -0.738934 0.650821 -0.174387 -0.738933 0.920121 -0.381126 -0.090111 0.862502 -0.497966 -0.090114 0.583508 -0.336889 -0.738934 0.62249 -0.257844 -0.738934 0.862502 -0.497966 -0.090114 0.790125 -0.606284 -0.090117 0.534543 -0.410169 -0.738935 0.583508 -0.336889 -0.738934 0.790125 -0.606284 -0.090117 0.704229 -0.704229 -0.090122 0.476431 -0.476431 -0.738937 0.534543 -0.410169 -0.738935 0.704229 -0.704229 -0.090122 0.606284 -0.790125 -0.090126 0.410167 -0.53454 -0.738939 0.476431 -0.476431 -0.738937 0.606284 -0.790125 -0.090126 0.497966 -0.8625 -0.090132 0.336886 -0.583502 -0.73894 0.410167 -0.53454 -0.738939 0.497966 -0.8625 -0.090132 0.381126 -0.920119 -0.090137 0.257844 -0.62248 -0.738941 0.336886 -0.583502 -0.73894 0.381126 -0.920119 -0.090137 0.257764 -0.961994 -0.090143 0.174387 -0.650808 -0.738944 0.257844 -0.62248 -0.738941 0.257764 -0.961994 -0.090143 0.129995 -0.987408 -0.090149 0.087944 -0.668 -0.738946 0.174387 -0.650808 -0.738944 0.129995 -0.987408 -0.090149 0 -0.995928 -0.090156 0 -0.673762 -0.738948 0.087944 -0.668 -0.738946 0 -0.995928 -0.090156 -0.129994 -0.987407 -0.090162 -0.0879429 -0.667996 -0.738951 0 -0.673762 -0.738948 -0.129994 -0.987407 -0.090162 -0.257764 -0.961991 -0.0901679 -0.174384 -0.650799 -0.738952 -0.0879429 -0.667996 -0.738951 -0.257764 -0.961991 -0.0901679 -0.381124 -0.920116 -0.090174 -0.257839 -0.622468 -0.738954 -0.174384 -0.650799 -0.738952 -0.381124 -0.920116 -0.090174 -0.497963 -0.862496 -0.09018 -0.336881 -0.583486 -0.738956 -0.257839 -0.622468 -0.738954 -0.497963 -0.862496 -0.09018 -0.606281 -0.79012 -0.090185 -0.410157 -0.534522 -0.738957 -0.336881 -0.583486 -0.738956 -0.606281 -0.79012 -0.090185 -0.704225 -0.704225 -0.090189 -0.476413 -0.476413 -0.73896 -0.410157 -0.534522 -0.738957 -0.704225 -0.704225 -0.090189 -0.79012 -0.606281 -0.0901939 -0.53452 -0.410152 -0.738961 -0.476413 -0.476413 -0.73896 -0.79012 -0.606281 -0.0901939 -0.862495 -0.497962 -0.0901969 -0.583482 -0.336873 -0.738963 -0.53452 -0.410152 -0.738961 -0.862495 -0.497962 -0.0901969 -0.920114 -0.381123 -0.0902 -0.62246 -0.257831 -0.738963 -0.583482 -0.336873 -0.738963 -0.920114 -0.381123 -0.0902 -0.961988 -0.257763 -0.090202 -0.650788 -0.174378 -0.738964 -0.62246 -0.257831 -0.738963 -0.961988 -0.257763 -0.090202 -0.987403 -0.129993 -0.090203 -0.66798 -0.087941 -0.738965 -0.650788 -0.174378 -0.738964 -0.987403 -0.129993 -0.090203 -0.995923 0 -0.090203 -0.673744 0 -0.738965 -0.66798 -0.087941 -0.738965 -0.995923 0 -0.090203 -0.987403 0.129994 -0.090203 -0.66798 0.087941 -0.738965 -0.673744 0 -0.738965 -0.987403 0.129994 -0.090203 -0.961988 0.257766 -0.090202 -0.650787 0.174379 -0.738964 -0.66798 0.087941 -0.738965 -0.961988 0.257766 -0.090202 -0.920113 0.381124 -0.0901999 -0.62246 0.257831 -0.738963 -0.650787 0.174379 -0.738964 -0.920113 0.381124 -0.0901999 -0.862496 0.497961 -0.090197 -0.583482 0.336873 -0.738963 -0.62246 0.257831 -0.738963 -0.862496 0.497961 -0.090197 -0.79012 0.606281 -0.0901939 -0.53452 0.410152 -0.738961 -0.583482 0.336873 -0.738963 -0.79012 0.606281 -0.0901939 -0.704225 0.704225 -0.090189 -0.476413 0.476413 -0.73896 -0.53452 0.410152 -0.738961 -0.704225 0.704225 -0.090189 -0.606281 0.79012 -0.090185 -0.410154 0.534523 -0.738958 -0.476413 0.476413 -0.73896 -0.606281 0.79012 -0.090185 -0.497963 0.862497 -0.090179 -0.336873 0.583488 -0.738958 -0.410154 0.534523 -0.738958 -0.497963 0.862497 -0.090179 -0.381124 0.920116 -0.090174 -0.257831 0.622469 -0.738955 -0.336873 0.583488 -0.738958 -0.381124 0.920116 -0.090174 -0.257764 0.961991 -0.090168 -0.174381 0.6508 -0.738953 -0.257831 0.622469 -0.738955 -0.257764 0.961991 -0.090168 -0.129994 0.987407 -0.090162 -0.0879429 0.667996 -0.738951 -0.174381 0.6508 -0.738953 -0.129994 0.987407 -0.090162 0 0.995928 -0.090155 0 0.673762 -0.738948 -0.0879429 0.667996 -0.738951 0 0.995928 -0.090155 0.129995 0.987408 -0.090149 0.087944 0.668 -0.738946 0 0.673762 -0.738948 0.129995 0.987408 -0.090149 0.257766 0.961993 -0.090143 0.174384 0.650809 -0.738944 0.087944 0.668 -0.738946 0.257766 0.961993 -0.090143 0.381127 0.920118 -0.090137 0.257841 0.622481 -0.738942 0.174384 0.650809 -0.738944 0.381127 0.920118 -0.090137 0.497965 0.8625 -0.0901309 0.336889 0.583502 -0.738939 0.257841 0.622481 -0.738942 0.497965 0.8625 -0.0901309 0.606283 0.790125 -0.090126 0.41017 0.534539 -0.738937 0.336889 0.583502 -0.738939 0.606283 0.790125 -0.090126 0.704229 0.70423 -0.090121 0.47643 0.476431 -0.738937 0.41017 0.534539 -0.738937 0.704229 0.70423 -0.090121 0.790126 0.606284 -0.090117 0.534543 0.410169 -0.738935 0.47643 0.476431 -0.738937 0.790126 0.606284 -0.090117 0.862502 0.497966 -0.090114 0.583508 0.336889 -0.738934 0.534543 0.410169 -0.738935 0.862502 0.497966 -0.090114 0.920121 0.381127 -0.090111 0.62249 0.257844 -0.738933 0.583508 0.336889 -0.738934 0.920121 0.381127 -0.090111 0.961996 0.257766 -0.090109 0.650821 0.174387 -0.738933 0.62249 0.257844 -0.738933 0.961996 0.257766 -0.090109 0.987412 0.129995 -0.090108 0.668015 0.087946 -0.738932 0.650821 0.174387 -0.738933 0.987412 0.129995 -0.090108 0.995932 0 -0.090107 0.67378 0 -0.738932 0.668015 0.087946 -0.738932 0.995932 0 -0.090107 0.987412 -0.12999 -0.090108 0.668015 -0.0879429 -0.738932 0.67378 0 -0.738932 0.668015 -0.0879429 -0.738932 0.650821 -0.174387 -0.738933 0 0 -1 0.650821 -0.174387 -0.738933 0.62249 -0.257844 -0.738934 0 0 -1 0.62249 -0.257844 -0.738934 0.583508 -0.336889 -0.738934 0 0 -1 0.583508 -0.336889 -0.738934 0.534543 -0.410169 -0.738935 0 0 -1 0.534543 -0.410169 -0.738935 0.476431 -0.476431 -0.738937 0 0 -1 0.476431 -0.476431 -0.738937 0.410167 -0.53454 -0.738939 0 0 -1 0.410167 -0.53454 -0.738939 0.336886 -0.583502 -0.73894 0 0 -1 0.336886 -0.583502 -0.73894 0.257844 -0.62248 -0.738941 0 0 -1 0.257844 -0.62248 -0.738941 0.174387 -0.650808 -0.738944 0 0 -1 0.174387 -0.650808 -0.738944 0.087944 -0.668 -0.738946 0 0 -1 0.087944 -0.668 -0.738946 0 -0.673762 -0.738948 0 0 -1 0 -0.673762 -0.738948 -0.0879429 -0.667996 -0.738951 0 0 -1 -0.0879429 -0.667996 -0.738951 -0.174384 -0.650799 -0.738952 0 0 -1 -0.174384 -0.650799 -0.738952 -0.257839 -0.622468 -0.738954 0 0 -1 -0.257839 -0.622468 -0.738954 -0.336881 -0.583486 -0.738956 0 0 -1 -0.336881 -0.583486 -0.738956 -0.410157 -0.534522 -0.738957 0 0 -1 -0.410157 -0.534522 -0.738957 -0.476413 -0.476413 -0.73896 0 0 -1 -0.476413 -0.476413 -0.73896 -0.53452 -0.410152 -0.738961 0 0 -1 -0.53452 -0.410152 -0.738961 -0.583482 -0.336873 -0.738963 0 0 -1 -0.583482 -0.336873 -0.738963 -0.62246 -0.257831 -0.738963 0 0 -1 -0.62246 -0.257831 -0.738963 -0.650788 -0.174378 -0.738964 0 0 -1 -0.650788 -0.174378 -0.738964 -0.66798 -0.087941 -0.738965 0 0 -1 -0.66798 -0.087941 -0.738965 -0.673744 0 -0.738965 0 0 -1 -0.673744 0 -0.738965 -0.66798 0.087941 -0.738965 0 0 -1 -0.66798 0.087941 -0.738965 -0.650787 0.174379 -0.738964 0 0 -1 -0.650787 0.174379 -0.738964 -0.62246 0.257831 -0.738963 0 0 -1 -0.62246 0.257831 -0.738963 -0.583482 0.336873 -0.738963 0 0 -1 -0.583482 0.336873 -0.738963 -0.53452 0.410152 -0.738961 0 0 -1 -0.53452 0.410152 -0.738961 -0.476413 0.476413 -0.73896 0 0 -1 -0.476413 0.476413 -0.73896 -0.410154 0.534523 -0.738958 0 0 -1 -0.410154 0.534523 -0.738958 -0.336873 0.583488 -0.738958 0 0 -1 -0.336873 0.583488 -0.738958 -0.257831 0.622469 -0.738955 0 0 -1 -0.257831 0.622469 -0.738955 -0.174381 0.6508 -0.738953 0 0 -1 -0.174381 0.6508 -0.738953 -0.0879429 0.667996 -0.738951 0 0 -1 -0.0879429 0.667996 -0.738951 0 0.673762 -0.738948 0 0 -1 0 0.673762 -0.738948 0.087944 0.668 -0.738946 0 0 -1 0.087944 0.668 -0.738946 0.174384 0.650809 -0.738944 0 0 -1 0.174384 0.650809 -0.738944 0.257841 0.622481 -0.738942 0 0 -1 0.257841 0.622481 -0.738942 0.336889 0.583502 -0.738939 0 0 -1 0.336889 0.583502 -0.738939 0.41017 0.534539 -0.738937 0 0 -1 0.41017 0.534539 -0.738937 0.47643 0.476431 -0.738937 0 0 -1 0.47643 0.476431 -0.738937 0.534543 0.410169 -0.738935 0 0 -1 0.534543 0.410169 -0.738935 0.583508 0.336889 -0.738934 0 0 -1 0.583508 0.336889 -0.738934 0.62249 0.257844 -0.738933 0 0 -1 0.62249 0.257844 -0.738933 0.650821 0.174387 -0.738933 0 0 -1 0.650821 0.174387 -0.738933 0.668015 0.087946 -0.738932 0 0 -1 0.668015 0.087946 -0.738932 0.67378 0 -0.738932 0 0 -1 0.67378 0 -0.738932 0.668015 -0.0879429 -0.738932 0 0 -1 -0.772909 0.383205 -0.505732 -0.765 0.121518 -0.632462 -0.997907 0.021867 0.06086 -0.99756 0.020045 0.06688 -0.998569 0.024838 0.047356 -0.927135 -0.358854 0.107909 -0.93163 -0.357573 0.064863 -0.998025 0.02187 0.058891 -0.998474 0.021979 0.050659 -0.905261 -0.420044 -0.06376 -0.997907 0.021867 0.06086 -0.93163 -0.357573 0.064863 -0.846179 0.410099 0.340295 -0.533987 0.827983 -0.171178 -0.765 0.121518 -0.632462 -0.998025 0.02187 0.058891 -0.997907 0.021867 0.06086 -0.93163 -0.357573 0.064863 -0.803588 0.268167 0.53135 -0.846179 0.410099 0.340295 -0.93163 -0.357573 0.064863 -0.533987 0.827983 -0.171178 -0.739895 0.561353 -0.370727 -0.99756 0.020045 0.06688 -0.99756 0.020045 0.06688 -0.739895 0.561353 -0.370727 -0.772909 0.383205 -0.505732 -0.997907 0.021867 0.06086 -0.93163 -0.357573 0.064863 -0.927135 -0.358854 0.107909 -0.936121 0.159534 0.313411 -0.803588 0.268167 0.53135 -0.99756 0.020045 0.06688 -0.997907 0.021867 0.06086 -0.905261 -0.420044 -0.06376 -0.998569 0.024838 0.047356 -0.803588 0.268167 0.53135 -0.936121 0.159534 0.313411 0.479517 0.819657 0.313411 0.422383 0.588421 0.689458 -0.803588 0.268167 0.53135 0.422383 0.588421 0.689458 0.40115 0.806362 0.434579 -0.846179 0.410099 0.340295 -0.533987 0.827983 -0.171178 0.358346 0.917617 -0.17195 0.376044 0.801366 -0.465192 -0.739895 0.561353 -0.370727 -0.765 0.121518 -0.632462 0.6165 0.363222 -0.698568 0.650495 0.247705 -0.717982 -0.998025 0.02187 0.058891 -0.998025 0.02187 0.058891 0.650495 0.247705 -0.717982 0.638733 0.242972 -0.730058 -0.998474 0.021979 0.050659 0.203264 0.838402 -0.505732 0.624691 0.778497 0.06086 0.6165 0.363222 -0.698568 0.625864 0.77706 0.06688 0.622841 0.780914 0.047356 0.903663 0.423471 -0.06376 0.624691 0.778497 0.06086 0.650495 0.247705 -0.717982 0.624691 0.778497 0.06086 0.903663 0.423471 -0.06376 0.638733 0.242972 -0.730058 0.625864 0.77706 0.06688 0.615741 0.785606 0.060711 0.870849 0.47956 0.10791 0.622841 0.780914 0.047356 0.615741 0.785606 0.060711 0.358346 0.917617 -0.17195 0.40115 0.806362 0.434579 0.6165 0.363222 -0.698568 0.624691 0.778497 0.06086 0.650495 0.247705 -0.717982 0.615741 0.785606 0.060711 0.40115 0.806362 0.434579 0.422383 0.588421 0.689458 0.615741 0.785606 0.060711 0.625864 0.77706 0.06688 0.376044 0.801366 -0.465192 0.358346 0.917617 -0.17195 0.625864 0.77706 0.06688 0.624691 0.778497 0.06086 0.203264 0.838402 -0.505732 0.376044 0.801366 -0.465192 0.615741 0.785606 0.060711 0.422383 0.588421 0.689458 0.479517 0.819657 0.313411 0.870849 0.47956 0.10791 -0.772909 0.383205 -0.505732 -0.739895 0.561353 -0.370727 0.376044 0.801366 -0.465192 0.203264 0.838402 -0.505732 -0.533987 0.827983 -0.171178 -0.846179 0.410099 0.340295 0.40115 0.806362 0.434579 0.358346 0.917617 -0.17195 -0.765 0.121518 -0.632462 -0.772909 0.383205 -0.505732 0.203264 0.838402 -0.505732 0.6165 0.363222 -0.698568 0.772909 0.383205 -0.505732 0.997907 0.021867 0.06086 0.765 0.121518 -0.632462 0.99756 0.020045 0.06688 0.93163 -0.357573 0.064864 0.927135 -0.358855 0.107909 0.998569 0.024838 0.047356 0.998025 0.02187 0.058891 0.997907 0.021867 0.06086 0.905261 -0.420044 -0.063761 0.998474 0.021979 0.050659 0.93163 -0.357573 0.064864 0.533987 0.827983 -0.171178 0.846179 0.410099 0.340295 0.765 0.121518 -0.632462 0.997907 0.021867 0.06086 0.998025 0.02187 0.058891 0.93163 -0.357573 0.064864 0.846179 0.410099 0.340295 0.803588 0.268167 0.53135 0.93163 -0.357573 0.064864 0.99756 0.020045 0.06688 0.739895 0.561353 -0.370727 0.533987 0.827983 -0.171178 0.99756 0.020045 0.06688 0.997907 0.021867 0.06086 0.772909 0.383205 -0.505732 0.739895 0.561353 -0.370727 0.93163 -0.357573 0.064864 0.803588 0.268167 0.53135 0.936121 0.159534 0.313411 0.927135 -0.358855 0.107909 0.99756 0.020045 0.06688 0.998569 0.024838 0.047356 0.905261 -0.420044 -0.063761 0.997907 0.021867 0.06086 0.803588 0.268167 0.53135 -0.422387 0.58842 0.689457 -0.479517 0.819657 0.313411 0.936121 0.159534 0.313411 0.803588 0.268167 0.53135 0.846179 0.410099 0.340295 -0.401155 0.806361 0.434577 -0.422387 0.58842 0.689457 0.533987 0.827983 -0.171178 0.739895 0.561353 -0.370727 -0.376046 0.801367 -0.465189 -0.358351 0.917615 -0.171951 0.765 0.121518 -0.632462 0.998025 0.02187 0.058891 -0.650496 0.247704 -0.717982 -0.616501 0.36322 -0.698569 0.998025 0.02187 0.058891 0.998474 0.021979 0.050659 -0.638734 0.242972 -0.730057 -0.650496 0.247704 -0.717982 -0.203265 0.838402 -0.505732 -0.616501 0.36322 -0.698569 -0.624691 0.778497 0.06086 -0.625864 0.77706 0.06688 -0.624691 0.778497 0.06086 -0.903663 0.423471 -0.06376 -0.622841 0.780914 0.047356 -0.650496 0.247704 -0.717982 -0.638734 0.242972 -0.730057 -0.903663 0.423471 -0.06376 -0.624691 0.778497 0.06086 -0.625864 0.77706 0.06688 -0.622841 0.780914 0.047356 -0.870849 0.47956 0.10791 -0.615741 0.785606 0.060711 -0.615741 0.785606 0.060711 -0.401155 0.806361 0.434577 -0.358351 0.917615 -0.171951 -0.616501 0.36322 -0.698569 -0.650496 0.247704 -0.717982 -0.624691 0.778497 0.06086 -0.615741 0.785606 0.060711 -0.422387 0.58842 0.689457 -0.401155 0.806361 0.434577 -0.615741 0.785606 0.060711 -0.358351 0.917615 -0.171951 -0.376046 0.801367 -0.465189 -0.625864 0.77706 0.06688 -0.625864 0.77706 0.06688 -0.376046 0.801367 -0.465189 -0.203265 0.838402 -0.505732 -0.624691 0.778497 0.06086 -0.615741 0.785606 0.060711 -0.870849 0.47956 0.10791 -0.479517 0.819657 0.313411 -0.422387 0.58842 0.689457 0.772909 0.383205 -0.505732 -0.203265 0.838402 -0.505732 -0.376046 0.801367 -0.465189 0.739895 0.561353 -0.370727 0.533987 0.827983 -0.171178 -0.358351 0.917615 -0.171951 -0.401155 0.806361 0.434577 0.846179 0.410099 0.340295 0.765 0.121518 -0.632462 -0.616501 0.36322 -0.698569 -0.203265 0.838402 -0.505732 0.772909 0.383205 -0.505732 -0.422365 -0.905766 0.034591 -0.422365 -0.905766 0.034591 -0.422365 -0.905766 0.034591 -0.422365 -0.905766 0.034591 0.422365 -0.905766 0.03459 0.422365 -0.905766 0.03459 0.422365 -0.905766 0.03459 0.422365 -0.905766 0.03459 - - - - - - - - - - 0.746236 0.024224 0.753193 0.024224 0.751234 0.108568 0.74277 0.108656 0.73903 0.024224 0.746236 0.024224 0.74277 0.108656 0.7337 0.108733 0.731699 0.024224 0.73903 0.024224 0.7337 0.108733 0.723426 0.108788 0.724368 0.024224 0.731699 0.024224 0.723426 0.108788 0.716176 0.108809 0.717162 0.024224 0.724368 0.024224 0.716176 0.108809 0.709223 0.108832 0.710205 0.024224 0.717162 0.024224 0.709223 0.108832 0.703304 0.10882 0.703616 0.024224 0.710205 0.024224 0.703304 0.10882 0.697693 0.108798 0.697507 0.024224 0.703616 0.024224 0.697693 0.108798 0.692487 0.108768 0.691983 0.024224 0.697507 0.024224 0.692487 0.108768 0.687775 0.108732 0.687139 0.024224 0.691983 0.024224 0.687775 0.108732 0.683638 0.108689 0.682547 0.024224 0.687139 0.024224 0.683638 0.108689 0.679356 0.108693 0.67543 0.024224 0.682547 0.024224 0.679356 0.108693 0.672891 0.108671 0.668455 0.024224 0.67543 0.024224 0.672891 0.108671 0.666903 0.10861 0.66123 0.024224 0.668455 0.024224 0.666903 0.10861 0.660701 0.108561 0.65388 0.024224 0.66123 0.024224 0.660701 0.108561 0.654393 0.108524 0.646529 0.024224 0.65388 0.024224 0.654393 0.108524 0.648085 0.108501 0.639305 0.024224 0.646529 0.024224 0.648085 0.108501 0.641885 0.108492 0.63233 0.024224 0.639305 0.024224 0.641885 0.108492 0.635901 0.108496 0.625723 0.024224 0.63233 0.024224 0.635901 0.108496 0.630233 0.108512 0.619599 0.024224 0.625723 0.024224 0.630233 0.108512 0.62498 0.10854 0.61406 0.024224 0.619599 0.024224 0.62498 0.10854 0.620231 0.108578 0.609204 0.024224 0.61406 0.024224 0.620231 0.108578 0.616066 0.108624 0.606294 0.024224 0.609204 0.024224 0.616066 0.108624 0.611683 0.108608 0.600902 0.024224 0.606294 0.024224 0.611683 0.108608 0.605218 0.108502 0.593962 0.024224 0.600902 0.024224 0.605218 0.108502 0.599315 0.108462 0.586773 0.024224 0.593962 0.024224 0.599315 0.108462 0.592378 0.108393 0.57946 0.024224 0.586773 0.024224 0.592378 0.108393 0.585137 0.108334 0.572146 0.024224 0.57946 0.024224 0.585137 0.108334 0.576913 0.108248 0.564958 0.024224 0.572146 0.024224 0.576913 0.108248 0.567872 0.108137 0.558017 0.024224 0.564958 0.024224 0.567872 0.108137 0.55824 0.108004 0.65644 0.279826 0.661379 0.280759 0.657332 0.353834 0.652633 0.352672 0.651418 0.279101 0.65644 0.279826 0.652633 0.352672 0.647854 0.351712 0.646397 0.278601 0.651418 0.279101 0.647854 0.351712 0.643077 0.350969 0.641465 0.278332 0.646397 0.278601 0.643077 0.350969 0.638385 0.350459 0.636705 0.27829 0.641465 0.278332 0.638385 0.350459 0.633856 0.350201 0.6322 0.278464 0.636705 0.27829 0.633856 0.350201 0.62957 0.350215 0.628024 0.278837 0.6322 0.278464 0.62957 0.350215 0.6256 0.350514 0.624251 0.279382 0.628024 0.278837 0.6256 0.350514 0.622013 0.3511 0.620944 0.280074 0.624251 0.279382 0.622013 0.3511 0.61887 0.351958 0.618243 0.28119 0.620944 0.280074 0.61887 0.351958 0.616293 0.353494 0.613081 0.281888 0.618243 0.28119 0.616293 0.353494 0.611675 0.354771 0.607561 0.282432 0.613081 0.281888 0.611675 0.354771 0.606727 0.355702 0.600339 0.282899 0.607561 0.282432 0.606727 0.355702 0.601401 0.356623 0.591893 0.283609 0.600339 0.282899 0.601401 0.356623 0.594399 0.357591 0.58245 0.284181 0.591893 0.283609 0.594399 0.357591 0.584659 0.35826 0.570673 0.284661 0.58245 0.284181 0.584659 0.35826 0.572197 0.358739 0.556453 0.28503 0.570673 0.284661 0.572197 0.358739 0.557379 0.35906 0.54074 0.359512 0.54329 0.285053 0.556453 0.28503 0.557379 0.35906 0.731093 0.294989 0.744761 0.295446 0.742796 0.373774 0.728042 0.372828 0.718764 0.294195 0.731093 0.294989 0.728042 0.372828 0.715495 0.371689 0.709787 0.29335 0.718764 0.294195 0.715495 0.371689 0.70581 0.370411 0.701825 0.292221 0.709787 0.29335 0.70581 0.370411 0.698874 0.368894 0.694726 0.291048 0.701825 0.292221 0.698874 0.368894 0.693569 0.367469 0.688934 0.289721 0.694726 0.291048 0.693569 0.367469 0.688572 0.365826 0.684206 0.288585 0.688934 0.289721 0.688572 0.365826 0.683927 0.364096 0.67981 0.287365 0.684206 0.288585 0.683927 0.364096 0.679607 0.362322 0.675823 0.2861 0.67981 0.287365 0.679607 0.362322 0.675689 0.360575 0.672313 0.284831 0.675823 0.2861 0.675689 0.360575 0.672242 0.358905 0.670006 0.283376 0.672313 0.284831 0.672242 0.358905 0.66775 0.357038 0.66615 0.281879 0.670006 0.283376 0.66775 0.357038 0.661872 0.35519 0.661379 0.280759 0.66615 0.281879 0.661872 0.35519 0.657332 0.353834 0.672891 0.108671 0.679356 0.108693 0.673543 0.203472 0.669806 0.202634 0.666903 0.10861 0.672891 0.108671 0.669806 0.202634 0.664561 0.201942 0.660701 0.108561 0.666903 0.10861 0.664561 0.201942 0.659131 0.201368 0.654393 0.108524 0.660701 0.108561 0.659131 0.201368 0.653608 0.200927 0.648085 0.108501 0.654393 0.108524 0.653608 0.200927 0.648086 0.200628 0.641885 0.108492 0.648085 0.108501 0.648086 0.200628 0.642661 0.200473 0.635901 0.108496 0.641885 0.108492 0.642661 0.200473 0.637424 0.200462 0.630233 0.108512 0.635901 0.108496 0.637424 0.200462 0.632466 0.200587 0.62498 0.10854 0.630233 0.108512 0.632466 0.200587 0.627871 0.200835 0.620231 0.108578 0.62498 0.10854 0.627871 0.200835 0.623717 0.201192 0.616066 0.108624 0.620231 0.108578 0.623717 0.201192 0.620076 0.201639 0.611683 0.108608 0.616066 0.108624 0.620076 0.201639 0.617222 0.202217 0.605218 0.108502 0.611683 0.108608 0.617222 0.202217 0.612463 0.202408 0.599315 0.108462 0.605218 0.108502 0.612463 0.202408 0.607212 0.20255 0.592378 0.108393 0.599315 0.108462 0.607212 0.20255 0.599994 0.20268 0.585137 0.108334 0.592378 0.108393 0.599994 0.20268 0.591064 0.203016 0.576913 0.108248 0.585137 0.108334 0.591064 0.203016 0.581049 0.203228 0.567872 0.108137 0.576913 0.108248 0.581049 0.203228 0.57011 0.203358 0.55824 0.108004 0.567872 0.108137 0.57011 0.203358 0.558482 0.203453 0.5483 0.107857 0.551107 0.107899 0.54647 0.203557 0.74277 0.108656 0.751234 0.108568 0.746772 0.21072 0.734932 0.210128 0.7337 0.108733 0.74277 0.108656 0.734932 0.210128 0.723883 0.209486 0.723426 0.108788 0.7337 0.108733 0.723883 0.209486 0.71389 0.208801 0.716176 0.108809 0.723426 0.108788 0.71389 0.208801 0.705122 0.208062 0.709223 0.108832 0.716176 0.108809 0.705122 0.208062 0.69825 0.207479 0.703304 0.10882 0.709223 0.108832 0.69825 0.207479 0.692983 0.206949 0.697693 0.108798 0.703304 0.10882 0.692983 0.206949 0.687985 0.206338 0.692487 0.108768 0.697693 0.108798 0.687985 0.206338 0.683342 0.205666 0.687775 0.108732 0.692487 0.108768 0.683342 0.205666 0.679135 0.204956 0.683638 0.108689 0.687775 0.108732 0.679135 0.204956 0.675437 0.204232 0.679356 0.108693 0.683638 0.108689 0.675437 0.204232 0.673543 0.203472 0.664561 0.201942 0.669806 0.202634 0.66615 0.281879 0.661379 0.280759 0.659131 0.201368 0.664561 0.201942 0.661379 0.280759 0.65644 0.279826 0.653608 0.200927 0.659131 0.201368 0.65644 0.279826 0.651418 0.279101 0.648086 0.200628 0.653608 0.200927 0.651418 0.279101 0.646397 0.278601 0.642661 0.200473 0.648086 0.200628 0.646397 0.278601 0.641465 0.278332 0.637424 0.200462 0.642661 0.200473 0.641465 0.278332 0.636705 0.27829 0.632466 0.200587 0.637424 0.200462 0.636705 0.27829 0.6322 0.278464 0.627871 0.200835 0.632466 0.200587 0.6322 0.278464 0.628024 0.278837 0.623717 0.201192 0.627871 0.200835 0.628024 0.278837 0.624251 0.279382 0.620076 0.201639 0.623717 0.201192 0.624251 0.279382 0.620944 0.280074 0.617222 0.202217 0.620076 0.201639 0.620944 0.280074 0.618243 0.28119 0.612463 0.202408 0.617222 0.202217 0.618243 0.28119 0.613081 0.281888 0.607212 0.20255 0.612463 0.202408 0.613081 0.281888 0.607561 0.282432 0.599994 0.20268 0.607212 0.20255 0.607561 0.282432 0.600339 0.282899 0.591064 0.203016 0.599994 0.20268 0.600339 0.282899 0.591893 0.283609 0.581049 0.203228 0.591064 0.203016 0.591893 0.283609 0.58245 0.284181 0.57011 0.203358 0.581049 0.203228 0.58245 0.284181 0.570673 0.284661 0.558482 0.203453 0.57011 0.203358 0.570673 0.284661 0.556453 0.28503 0.54647 0.203557 0.558482 0.203453 0.556453 0.28503 0.54329 0.285053 0.734932 0.210128 0.746772 0.21072 0.744761 0.295446 0.731093 0.294989 0.723883 0.209486 0.734932 0.210128 0.731093 0.294989 0.718764 0.294195 0.71389 0.208801 0.723883 0.209486 0.718764 0.294195 0.709787 0.29335 0.705122 0.208062 0.71389 0.208801 0.709787 0.29335 0.701825 0.292221 0.69825 0.207479 0.705122 0.208062 0.701825 0.292221 0.694726 0.291048 0.692983 0.206949 0.69825 0.207479 0.694726 0.291048 0.688934 0.289721 0.687985 0.206338 0.692983 0.206949 0.688934 0.289721 0.684206 0.288585 0.683342 0.205666 0.687985 0.206338 0.684206 0.288585 0.67981 0.287365 0.679135 0.204956 0.683342 0.205666 0.67981 0.287365 0.675823 0.2861 0.675437 0.204232 0.679135 0.204956 0.675823 0.2861 0.672313 0.284831 0.673543 0.203472 0.675437 0.204232 0.672313 0.284831 0.670006 0.283376 0.669806 0.202634 0.673543 0.203472 0.670006 0.283376 0.66615 0.281879 0.091556 0.639915 0.011952 0.650158 0.011623 0.638822 0.090943 0.632376 0.728042 0.372828 0.742796 0.373774 0.742891 0.386159 0.727261 0.385086 0.715495 0.371689 0.728042 0.372828 0.727261 0.385086 0.714973 0.383911 0.70581 0.370411 0.715495 0.371689 0.714973 0.383911 0.70517 0.382561 0.698874 0.368894 0.70581 0.370411 0.70517 0.382561 0.698418 0.380993 0.693569 0.367469 0.698874 0.368894 0.698418 0.380993 0.693396 0.379526 0.688572 0.365826 0.693569 0.367469 0.693396 0.379526 0.688542 0.377836 0.683927 0.364096 0.688572 0.365826 0.688542 0.377836 0.683922 0.376025 0.679607 0.362322 0.683927 0.364096 0.683922 0.376025 0.679625 0.374178 0.675689 0.360575 0.679607 0.362322 0.679625 0.374178 0.675729 0.372361 0.672242 0.358905 0.675689 0.360575 0.675729 0.372361 0.672022 0.37049 0.66775 0.357038 0.672242 0.358905 0.672022 0.37049 0.667185 0.368601 0.661872 0.35519 0.66775 0.357038 0.667185 0.368601 0.661477 0.366835 0.657332 0.353834 0.661872 0.35519 0.661477 0.366835 0.656675 0.365358 0.652633 0.352672 0.657332 0.353834 0.656675 0.365358 0.652025 0.364164 0.647854 0.351712 0.652633 0.352672 0.652025 0.364164 0.647298 0.36317 0.643077 0.350969 0.647854 0.351712 0.647298 0.36317 0.642574 0.362389 0.638385 0.350459 0.643077 0.350969 0.642574 0.362389 0.637932 0.361848 0.633856 0.350201 0.638385 0.350459 0.637932 0.361848 0.633453 0.361539 0.62957 0.350215 0.633856 0.350201 0.633453 0.361539 0.62921 0.36152 0.6256 0.350514 0.62957 0.350215 0.62921 0.36152 0.625278 0.361803 0.622013 0.3511 0.6256 0.350514 0.625278 0.361803 0.621718 0.362369 0.61887 0.351958 0.622013 0.3511 0.621718 0.362369 0.618548 0.363208 0.616293 0.353494 0.61887 0.351958 0.618548 0.363208 0.615751 0.36506 0.611675 0.354771 0.616293 0.353494 0.615751 0.36506 0.61142 0.366277 0.606727 0.355702 0.611675 0.354771 0.61142 0.366277 0.606571 0.367267 0.601401 0.356623 0.606727 0.355702 0.606571 0.367267 0.601557 0.368251 0.594399 0.357591 0.601401 0.356623 0.601557 0.368251 0.594808 0.369261 0.584659 0.35826 0.594399 0.357591 0.594808 0.369261 0.585021 0.369945 0.572197 0.358739 0.584659 0.35826 0.585021 0.369945 0.57249 0.370425 0.557379 0.35906 0.572197 0.358739 0.57249 0.370425 0.558044 0.370723 0.54074 0.359512 0.557379 0.35906 0.558044 0.370723 0.539493 0.371285 0.539493 0.371285 0.558044 0.370723 0.558286 0.373316 0.539346 0.373787 0.558044 0.370723 0.57249 0.370425 0.572542 0.373014 0.558286 0.373316 0.57249 0.370425 0.585021 0.369945 0.585037 0.372552 0.572542 0.373014 0.585021 0.369945 0.594808 0.369261 0.594903 0.37188 0.585037 0.372552 0.594808 0.369261 0.601557 0.368251 0.601879 0.370891 0.594903 0.37188 0.601557 0.368251 0.606571 0.367267 0.607033 0.369924 0.601879 0.370891 0.606571 0.367267 0.61142 0.366277 0.612108 0.368878 0.607033 0.369924 0.61142 0.366277 0.615751 0.36506 0.616837 0.36745 0.612108 0.368878 0.615751 0.36506 0.618548 0.363208 0.619764 0.365426 0.616837 0.36745 0.618548 0.363208 0.621718 0.362369 0.622458 0.36474 0.619764 0.365426 0.621718 0.362369 0.625278 0.361803 0.625707 0.364204 0.622458 0.36474 0.625278 0.361803 0.62921 0.36152 0.629352 0.363931 0.625707 0.364204 0.62921 0.36152 0.633453 0.361539 0.63333 0.363967 0.629352 0.363931 0.633453 0.361539 0.637932 0.361848 0.637601 0.364303 0.63333 0.363967 0.637932 0.361848 0.642574 0.362389 0.642081 0.364868 0.637601 0.364303 0.642574 0.362389 0.647298 0.36317 0.646666 0.365676 0.642081 0.364868 0.647298 0.36317 0.652025 0.364164 0.65128 0.366696 0.646666 0.365676 0.652025 0.364164 0.656675 0.365358 0.655842 0.367908 0.65128 0.366696 0.656675 0.365358 0.661477 0.366835 0.660797 0.369449 0.655842 0.367908 0.661477 0.366835 0.667185 0.368601 0.666257 0.371141 0.660797 0.369449 0.667185 0.368601 0.672022 0.37049 0.67103 0.372946 0.666257 0.371141 0.672022 0.37049 0.675729 0.372361 0.674993 0.374834 0.67103 0.372946 0.675729 0.372361 0.679625 0.374178 0.679162 0.376606 0.674993 0.374834 0.679625 0.374178 0.683922 0.376025 0.683722 0.378348 0.679162 0.376606 0.683922 0.376025 0.688542 0.377836 0.688554 0.380009 0.683722 0.378348 0.688542 0.377836 0.693396 0.379526 0.693533 0.381568 0.688554 0.380009 0.693396 0.379526 0.698418 0.380993 0.698632 0.382925 0.693533 0.381568 0.698418 0.380993 0.70517 0.382561 0.705408 0.384355 0.698632 0.382925 0.70517 0.382561 0.714973 0.383911 0.7152 0.385617 0.705408 0.384355 0.714973 0.383911 0.727261 0.385086 0.72728 0.386733 0.7152 0.385617 0.727261 0.385086 0.742891 0.386159 0.743194 0.387866 0.72728 0.386733 0.689504 0.406974 0.689504 0.412715 0.680381 0.413913 0.680381 0.407338 0.689504 0.412715 0.689504 0.417194 0.680381 0.418313 0.680381 0.413913 0.689504 0.417194 0.689504 0.420986 0.680381 0.42199 0.680381 0.418313 0.689504 0.420986 0.689504 0.423986 0.680381 0.424848 0.680381 0.42199 0.689504 0.423986 0.689504 0.426154 0.680381 0.426837 0.680381 0.424848 0.689504 0.426154 0.689504 0.427763 0.680381 0.428257 0.680381 0.426837 0.689504 0.427763 0.689504 0.429318 0.680381 0.429638 0.680381 0.428257 0.689504 0.429318 0.689504 0.430771 0.680381 0.430929 0.680381 0.429638 0.689504 0.430771 0.689504 0.432093 0.680381 0.432107 0.680381 0.430929 0.689504 0.432093 0.689504 0.433251 0.680381 0.433144 0.680381 0.432107 0.689504 0.433251 0.689504 0.434219 0.680381 0.434019 0.680381 0.433144 0.689504 0.434219 0.689504 0.435045 0.680381 0.434656 0.680381 0.434052 0.680381 0.434019 0.689504 0.435045 0.689504 0.436519 0.680381 0.435939 0.680381 0.434656 0.689504 0.436519 0.689504 0.43801 0.680381 0.437371 0.680381 0.435939 0.689504 0.43801 0.689504 0.439559 0.680381 0.438863 0.680381 0.437371 0.689504 0.439559 0.689504 0.441139 0.680381 0.440392 0.680381 0.438863 0.689504 0.441139 0.689504 0.442726 0.680381 0.441933 0.680381 0.440392 0.689504 0.442726 0.689504 0.444294 0.680381 0.443466 0.680381 0.441933 0.689504 0.444294 0.689504 0.445819 0.680381 0.44497 0.680381 0.443466 0.689504 0.445819 0.689504 0.447278 0.680381 0.446426 0.680381 0.44497 0.689504 0.447278 0.689504 0.448647 0.680381 0.447816 0.680381 0.446426 0.689504 0.448647 0.689504 0.449903 0.680381 0.449109 0.680381 0.447816 0.689504 0.449903 0.689504 0.451017 0.680381 0.450264 0.680381 0.449109 0.689504 0.451017 0.689504 0.451963 0.680381 0.451263 0.680381 0.450264 0.689504 0.451963 0.689504 0.453643 0.680381 0.45287 0.680381 0.451263 0.689504 0.453643 0.689504 0.4554 0.680381 0.45454 0.680381 0.45287 0.689504 0.4554 0.689504 0.457188 0.680381 0.456241 0.680381 0.45454 0.689504 0.457188 0.689504 0.459609 0.680381 0.458587 0.680381 0.456241 0.689504 0.459609 0.689504 0.463134 0.680381 0.462116 0.680381 0.458587 0.689504 0.463134 0.689504 0.467664 0.680381 0.466706 0.680381 0.462116 0.689504 0.467664 0.689504 0.473547 0.680381 0.473597 0.680381 0.466706 0.091116 0.689214 0.026683 0.708858 0.017901 0.682656 0.091961 0.666464 0.091961 0.666464 0.017901 0.682656 0.013826 0.664897 0.091803 0.651418 0.091803 0.651418 0.013826 0.664897 0.011952 0.650158 0.091556 0.639915 0.054984 0.595536 0.04003 0.59631 0.04492 0.595367 0.049929 0.595106 0.090943 0.632376 0.011623 0.638822 0.012037 0.631193 0.089929 0.626964 0.089929 0.626964 0.012037 0.631193 0.01311 0.625791 0.088169 0.621684 0.088169 0.621684 0.01311 0.625791 0.014844 0.620455 0.08555 0.616632 0.08555 0.616632 0.014844 0.620455 0.01712 0.615376 0.082289 0.611937 0.082289 0.611937 0.01712 0.615376 0.019885 0.61072 0.078506 0.607713 0.078506 0.607713 0.019885 0.61072 0.023127 0.606598 0.074266 0.604025 0.074266 0.604025 0.023127 0.606598 0.026819 0.603076 0.027028 0.602928 0.069711 0.600927 0.069711 0.600927 0.027028 0.602928 0.030909 0.600178 0.064937 0.59846 0.064937 0.59846 0.030909 0.600178 0.035335 0.597918 0.060008 0.596657 0.060008 0.596657 0.035335 0.597918 0.04003 0.59631 0.054984 0.595536 0.768634 0.024224 0.7721 0.108656 0.763636 0.108568 0.761677 0.024224 0.77584 0.024224 0.781171 0.108733 0.7721 0.108656 0.768634 0.024224 0.783171 0.024224 0.791444 0.108788 0.781171 0.108733 0.77584 0.024224 0.790502 0.024224 0.798694 0.108809 0.791444 0.108788 0.783171 0.024224 0.797708 0.024224 0.805647 0.108832 0.798694 0.108809 0.790502 0.024224 0.804665 0.024224 0.811566 0.10882 0.805647 0.108832 0.797708 0.024224 0.811255 0.024224 0.817177 0.108798 0.811566 0.10882 0.804665 0.024224 0.817363 0.024224 0.822383 0.108768 0.817177 0.108798 0.811255 0.024224 0.822887 0.024224 0.827096 0.108732 0.822383 0.108768 0.817363 0.024224 0.827731 0.024224 0.831232 0.108689 0.827096 0.108732 0.822887 0.024224 0.832324 0.024224 0.835514 0.108693 0.831232 0.108689 0.827731 0.024224 0.839441 0.024224 0.841979 0.108671 0.835514 0.108693 0.832324 0.024224 0.846416 0.024224 0.847967 0.10861 0.841979 0.108671 0.839441 0.024224 0.85364 0.024224 0.854169 0.108561 0.847967 0.10861 0.846416 0.024224 0.860991 0.024224 0.860478 0.108524 0.854169 0.108561 0.85364 0.024224 0.868341 0.024224 0.866786 0.108501 0.860478 0.108524 0.860991 0.024224 0.875566 0.024224 0.872985 0.108492 0.866786 0.108501 0.868341 0.024224 0.882541 0.024224 0.878969 0.108496 0.872985 0.108492 0.875566 0.024224 0.889147 0.024224 0.884637 0.108512 0.878969 0.108496 0.882541 0.024224 0.895272 0.024224 0.88989 0.10854 0.884637 0.108512 0.889147 0.024224 0.90081 0.024224 0.89464 0.108578 0.88989 0.10854 0.895272 0.024224 0.905667 0.024224 0.898804 0.108624 0.89464 0.108578 0.90081 0.024224 0.908577 0.024224 0.903187 0.108608 0.898804 0.108624 0.905667 0.024224 0.913968 0.024224 0.909653 0.108502 0.903187 0.108608 0.908577 0.024224 0.920908 0.024224 0.915556 0.108462 0.909653 0.108502 0.913968 0.024224 0.928097 0.024224 0.922492 0.108393 0.915556 0.108462 0.920908 0.024224 0.935411 0.024224 0.929733 0.108334 0.922492 0.108393 0.928097 0.024224 0.942724 0.024224 0.937957 0.108248 0.929733 0.108334 0.935411 0.024224 0.949913 0.024224 0.946999 0.108137 0.937957 0.108248 0.942724 0.024224 0.956853 0.024224 0.95663 0.108004 0.946999 0.108137 0.949913 0.024224 0.95663 0.108004 0.956853 0.024224 0.963427 0.02429 0.963905 0.107896 0.841979 0.108671 0.845065 0.202634 0.841327 0.203472 0.835514 0.108693 0.847967 0.10861 0.850309 0.201942 0.845065 0.202634 0.841979 0.108671 0.854169 0.108561 0.855739 0.201368 0.850309 0.201942 0.847967 0.10861 0.860478 0.108524 0.861262 0.200927 0.855739 0.201368 0.854169 0.108561 0.866786 0.108501 0.866784 0.200628 0.861262 0.200927 0.860478 0.108524 0.872985 0.108492 0.872209 0.200473 0.866784 0.200628 0.866786 0.108501 0.878969 0.108496 0.877446 0.200462 0.872209 0.200473 0.872985 0.108492 0.884637 0.108512 0.882404 0.200587 0.877446 0.200462 0.878969 0.108496 0.88989 0.10854 0.886999 0.200835 0.882404 0.200587 0.884637 0.108512 0.89464 0.108578 0.891153 0.201192 0.886999 0.200835 0.88989 0.10854 0.898804 0.108624 0.894795 0.201639 0.891153 0.201192 0.89464 0.108578 0.903187 0.108608 0.897648 0.202217 0.894795 0.201639 0.898804 0.108624 0.909653 0.108502 0.902408 0.202408 0.897648 0.202217 0.903187 0.108608 0.915556 0.108462 0.907659 0.20255 0.902408 0.202408 0.909653 0.108502 0.922492 0.108393 0.914876 0.20268 0.907659 0.20255 0.915556 0.108462 0.929733 0.108334 0.923807 0.203016 0.914876 0.20268 0.922492 0.108393 0.937957 0.108248 0.933821 0.203228 0.923807 0.203016 0.929733 0.108334 0.946999 0.108137 0.94476 0.203358 0.933821 0.203228 0.937957 0.108248 0.95663 0.108004 0.956389 0.203453 0.94476 0.203358 0.946999 0.108137 0.963905 0.107896 0.968401 0.203557 0.956389 0.203453 0.95663 0.108004 0.7721 0.108656 0.779939 0.210128 0.768099 0.21072 0.763636 0.108568 0.781171 0.108733 0.790987 0.209486 0.779939 0.210128 0.7721 0.108656 0.791444 0.108788 0.80098 0.208801 0.790987 0.209486 0.781171 0.108733 0.798694 0.108809 0.809749 0.208062 0.80098 0.208801 0.791444 0.108788 0.805647 0.108832 0.81662 0.207479 0.809749 0.208062 0.798694 0.108809 0.811566 0.10882 0.821887 0.206949 0.81662 0.207479 0.805647 0.108832 0.817177 0.108798 0.826885 0.206338 0.821887 0.206949 0.811566 0.10882 0.822383 0.108768 0.831528 0.205666 0.826885 0.206338 0.817177 0.108798 0.827096 0.108732 0.835735 0.204956 0.831528 0.205666 0.822383 0.108768 0.831232 0.108689 0.839433 0.204232 0.835735 0.204956 0.827096 0.108732 0.835514 0.108693 0.841327 0.203472 0.839433 0.204232 0.831232 0.108689 0.850309 0.201942 0.853491 0.280759 0.848721 0.281879 0.845065 0.202634 0.855739 0.201368 0.85843 0.279826 0.853491 0.280759 0.850309 0.201942 0.861262 0.200927 0.863453 0.279101 0.85843 0.279826 0.855739 0.201368 0.866784 0.200628 0.868473 0.278601 0.863453 0.279101 0.861262 0.200927 0.872209 0.200473 0.873405 0.278332 0.868473 0.278601 0.866784 0.200628 0.877446 0.200462 0.878165 0.27829 0.873405 0.278332 0.872209 0.200473 0.882404 0.200587 0.882671 0.278464 0.878165 0.27829 0.877446 0.200462 0.886999 0.200835 0.886846 0.278837 0.882671 0.278464 0.882404 0.200587 0.891153 0.201192 0.890619 0.279382 0.886846 0.278837 0.886999 0.200835 0.894795 0.201639 0.893926 0.280074 0.890619 0.279382 0.891153 0.201192 0.897648 0.202217 0.896628 0.28119 0.893926 0.280074 0.894795 0.201639 0.902408 0.202408 0.901789 0.281888 0.896628 0.28119 0.897648 0.202217 0.907659 0.20255 0.907309 0.282432 0.901789 0.281888 0.902408 0.202408 0.914876 0.20268 0.914532 0.282899 0.907309 0.282432 0.907659 0.20255 0.923807 0.203016 0.922977 0.283609 0.914532 0.282899 0.914876 0.20268 0.933821 0.203228 0.93242 0.284181 0.922977 0.283609 0.923807 0.203016 0.94476 0.203358 0.944197 0.284661 0.93242 0.284181 0.933821 0.203228 0.956389 0.203453 0.958417 0.28503 0.944197 0.284661 0.94476 0.203358 0.968401 0.203557 0.97158 0.285053 0.958417 0.28503 0.956389 0.203453 0.779939 0.210128 0.783778 0.294989 0.770109 0.295446 0.768099 0.21072 0.790987 0.209486 0.796107 0.294195 0.783778 0.294989 0.779939 0.210128 0.80098 0.208801 0.805083 0.29335 0.796107 0.294195 0.790987 0.209486 0.809749 0.208062 0.813046 0.292221 0.805083 0.29335 0.80098 0.208801 0.81662 0.207479 0.820144 0.291048 0.813046 0.292221 0.809749 0.208062 0.821887 0.206949 0.825937 0.289721 0.820144 0.291048 0.81662 0.207479 0.826885 0.206338 0.830664 0.288585 0.825937 0.289721 0.821887 0.206949 0.831528 0.205666 0.83506 0.287365 0.830664 0.288585 0.826885 0.206338 0.835735 0.204956 0.839048 0.2861 0.83506 0.287365 0.831528 0.205666 0.839433 0.204232 0.842558 0.284831 0.839048 0.2861 0.835735 0.204956 0.841327 0.203472 0.844864 0.283376 0.842558 0.284831 0.839433 0.204232 0.845065 0.202634 0.848721 0.281879 0.844864 0.283376 0.841327 0.203472 0.091556 0.778679 0.090943 0.786218 0.011622 0.779772 0.011952 0.768436 0.786828 0.372828 0.787609 0.385086 0.77198 0.386159 0.772074 0.373774 0.799376 0.371689 0.799898 0.383911 0.787609 0.385086 0.786828 0.372828 0.80906 0.370411 0.809701 0.382561 0.799898 0.383911 0.799376 0.371689 0.815996 0.368894 0.816452 0.380993 0.809701 0.382561 0.80906 0.370411 0.821301 0.367469 0.821474 0.379526 0.816452 0.380993 0.815996 0.368894 0.826299 0.365826 0.826329 0.377836 0.821474 0.379526 0.821301 0.367469 0.830944 0.364096 0.830948 0.376025 0.826329 0.377836 0.826299 0.365826 0.835263 0.362322 0.835245 0.374178 0.830948 0.376025 0.830944 0.364096 0.839181 0.360575 0.839141 0.372361 0.835245 0.374178 0.835263 0.362322 0.842629 0.358905 0.842848 0.37049 0.839141 0.372361 0.839181 0.360575 0.847121 0.357038 0.847686 0.368601 0.842848 0.37049 0.842629 0.358905 0.852998 0.35519 0.853393 0.366835 0.847686 0.368601 0.847121 0.357038 0.857538 0.353834 0.858195 0.365358 0.853393 0.366835 0.852998 0.35519 0.862237 0.352672 0.862845 0.364164 0.858195 0.365358 0.857538 0.353834 0.867016 0.351712 0.867572 0.36317 0.862845 0.364164 0.862237 0.352672 0.871793 0.350969 0.872297 0.362389 0.867572 0.36317 0.867016 0.351712 0.876486 0.350459 0.876938 0.361848 0.872297 0.362389 0.871793 0.350969 0.881014 0.350201 0.881417 0.361539 0.876938 0.361848 0.876486 0.350459 0.8853 0.350215 0.885661 0.36152 0.881417 0.361539 0.881014 0.350201 0.889271 0.350514 0.889593 0.361803 0.885661 0.36152 0.8853 0.350215 0.892858 0.3511 0.893153 0.362369 0.889593 0.361803 0.889271 0.350514 0.896 0.351958 0.896323 0.363208 0.893153 0.362369 0.892858 0.3511 0.898577 0.353494 0.899119 0.36506 0.896323 0.363208 0.896 0.351958 0.903196 0.354771 0.90345 0.366277 0.899119 0.36506 0.898577 0.353494 0.908143 0.355702 0.908299 0.367267 0.90345 0.366277 0.903196 0.354771 0.913469 0.356623 0.913313 0.368251 0.908299 0.367267 0.908143 0.355702 0.920471 0.357591 0.920063 0.369261 0.913313 0.368251 0.913469 0.356623 0.930212 0.35826 0.92985 0.369945 0.920063 0.369261 0.920471 0.357591 0.942673 0.358739 0.94238 0.370425 0.92985 0.369945 0.930212 0.35826 0.957492 0.35906 0.956826 0.370723 0.94238 0.370425 0.942673 0.358739 0.97413 0.359512 0.975377 0.371285 0.956826 0.370723 0.957492 0.35906 0.975377 0.371285 0.975524 0.373787 0.956585 0.373316 0.956826 0.370723 0.956826 0.370723 0.956585 0.373316 0.942329 0.373014 0.94238 0.370425 0.94238 0.370425 0.942329 0.373014 0.929833 0.372552 0.92985 0.369945 0.92985 0.369945 0.929833 0.372552 0.919968 0.37188 0.920063 0.369261 0.920063 0.369261 0.919968 0.37188 0.912991 0.370891 0.913313 0.368251 0.913313 0.368251 0.912991 0.370891 0.907838 0.369924 0.908299 0.367267 0.908299 0.367267 0.907838 0.369924 0.902763 0.368878 0.90345 0.366277 0.90345 0.366277 0.902763 0.368878 0.898033 0.36745 0.899119 0.36506 0.899119 0.36506 0.898033 0.36745 0.895106 0.365426 0.896323 0.363208 0.896323 0.363208 0.895106 0.365426 0.892413 0.36474 0.893153 0.362369 0.893153 0.362369 0.892413 0.36474 0.889164 0.364204 0.889593 0.361803 0.889593 0.361803 0.889164 0.364204 0.885518 0.363931 0.885661 0.36152 0.885661 0.36152 0.885518 0.363931 0.881541 0.363967 0.881417 0.361539 0.881417 0.361539 0.881541 0.363967 0.87727 0.364303 0.876938 0.361848 0.876938 0.361848 0.87727 0.364303 0.872789 0.364868 0.872297 0.362389 0.872297 0.362389 0.872789 0.364868 0.868205 0.365676 0.867572 0.36317 0.867572 0.36317 0.868205 0.365676 0.86359 0.366696 0.862845 0.364164 0.862845 0.364164 0.86359 0.366696 0.859028 0.367908 0.858195 0.365358 0.858195 0.365358 0.859028 0.367908 0.854073 0.369449 0.853393 0.366835 0.853393 0.366835 0.854073 0.369449 0.848613 0.371141 0.847686 0.368601 0.847686 0.368601 0.848613 0.371141 0.843841 0.372946 0.842848 0.37049 0.842848 0.37049 0.843841 0.372946 0.839878 0.374834 0.839141 0.372361 0.839141 0.372361 0.839878 0.374834 0.835709 0.376606 0.835245 0.374178 0.835245 0.374178 0.835709 0.376606 0.831148 0.378348 0.830948 0.376025 0.830948 0.376025 0.831148 0.378348 0.826317 0.380009 0.826329 0.377836 0.826329 0.377836 0.826317 0.380009 0.821337 0.381568 0.821474 0.379526 0.821474 0.379526 0.821337 0.381568 0.816239 0.382925 0.816452 0.380993 0.816452 0.380993 0.816239 0.382925 0.809462 0.384355 0.809701 0.382561 0.809701 0.382561 0.809462 0.384355 0.79967 0.385617 0.799898 0.383911 0.799898 0.383911 0.79967 0.385617 0.78759 0.386733 0.787609 0.385086 0.787609 0.385086 0.78759 0.386733 0.771677 0.387866 0.77198 0.386159 0.689504 0.543922 0.680381 0.543558 0.680381 0.536983 0.689504 0.538181 0.689504 0.538181 0.680381 0.536983 0.680381 0.532583 0.689504 0.533703 0.689504 0.533703 0.680381 0.532583 0.680381 0.528907 0.689504 0.52991 0.689504 0.52991 0.680381 0.528907 0.680381 0.526048 0.689504 0.526911 0.689504 0.526911 0.680381 0.526048 0.680381 0.524059 0.689504 0.524743 0.689504 0.524743 0.680381 0.524059 0.680381 0.52264 0.689504 0.523134 0.689504 0.523134 0.680381 0.52264 0.680381 0.521258 0.689504 0.521579 0.689504 0.521579 0.680381 0.521258 0.680381 0.519967 0.689504 0.520125 0.689504 0.520125 0.680381 0.519967 0.680381 0.51879 0.689504 0.518804 0.689504 0.518804 0.680381 0.51879 0.680381 0.517753 0.689504 0.517646 0.689504 0.517646 0.680381 0.517753 0.680381 0.516877 0.689504 0.516677 0.689504 0.516677 0.680381 0.516877 0.680381 0.516844 0.680381 0.516241 0.689504 0.515851 0.689504 0.515851 0.680381 0.516241 0.680381 0.514957 0.689504 0.514377 0.689504 0.514377 0.680381 0.514957 0.680381 0.513525 0.689504 0.512886 0.689504 0.512886 0.680381 0.513525 0.680381 0.512033 0.689504 0.511337 0.689504 0.511337 0.680381 0.512033 0.680381 0.510504 0.689504 0.509757 0.689504 0.509757 0.680381 0.510504 0.680381 0.508963 0.689504 0.50817 0.689504 0.50817 0.680381 0.508963 0.680381 0.50743 0.689504 0.506602 0.689504 0.506602 0.680381 0.50743 0.680381 0.505927 0.689504 0.505077 0.689504 0.505077 0.680381 0.505927 0.680381 0.50447 0.689504 0.503619 0.689504 0.503619 0.680381 0.50447 0.680381 0.503081 0.689504 0.502249 0.689504 0.502249 0.680381 0.503081 0.680381 0.501787 0.689504 0.500993 0.689504 0.500993 0.680381 0.501787 0.680381 0.500633 0.689504 0.49988 0.689504 0.49988 0.680381 0.500633 0.680381 0.499634 0.689504 0.498934 0.689504 0.498934 0.680381 0.499634 0.680381 0.498026 0.689504 0.497254 0.689504 0.497254 0.680381 0.498026 0.680381 0.496356 0.689504 0.495497 0.689504 0.495497 0.680381 0.496356 0.680381 0.494655 0.689504 0.493708 0.689504 0.493708 0.680381 0.494655 0.680381 0.492309 0.689504 0.491288 0.689504 0.491288 0.680381 0.492309 0.680381 0.48878 0.689504 0.487762 0.689504 0.487762 0.680381 0.48878 0.680381 0.484191 0.689504 0.483233 0.689504 0.483233 0.680381 0.484191 0.680381 0.477299 0.689504 0.47735 0.091115 0.729379 0.09196 0.75213 0.0179 0.735938 0.026683 0.709735 0.09196 0.75213 0.091803 0.767175 0.013826 0.753697 0.0179 0.735938 0.091803 0.767175 0.091556 0.778679 0.011952 0.768436 0.013826 0.753697 0.054983 0.823057 0.049929 0.823488 0.044919 0.823226 0.040029 0.822284 0.090943 0.786218 0.089929 0.79163 0.012037 0.787401 0.011622 0.779772 0.089929 0.79163 0.088168 0.796909 0.01311 0.792802 0.012037 0.787401 0.088168 0.796909 0.08555 0.801962 0.014844 0.798138 0.01311 0.792802 0.08555 0.801962 0.082289 0.806657 0.01712 0.803217 0.014844 0.798138 0.082289 0.806657 0.078506 0.810881 0.019884 0.807874 0.01712 0.803217 0.078506 0.810881 0.074266 0.814569 0.023127 0.811995 0.019884 0.807874 0.074266 0.814569 0.069711 0.817667 0.027028 0.815666 0.026819 0.815518 0.023127 0.811995 0.069711 0.817667 0.064937 0.820134 0.030909 0.818416 0.027028 0.815666 0.064937 0.820134 0.060008 0.821937 0.035335 0.820676 0.030909 0.818416 0.060008 0.821937 0.054983 0.823057 0.040029 0.822284 0.035335 0.820676 0.783778 0.294989 0.786828 0.372828 0.772074 0.373774 0.770109 0.295446 0.796107 0.294195 0.799376 0.371689 0.786828 0.372828 0.783778 0.294989 0.805083 0.29335 0.80906 0.370411 0.799376 0.371689 0.796107 0.294195 0.813046 0.292221 0.815996 0.368894 0.80906 0.370411 0.805083 0.29335 0.820144 0.291048 0.821301 0.367469 0.815996 0.368894 0.813046 0.292221 0.825937 0.289721 0.826299 0.365826 0.821301 0.367469 0.820144 0.291048 0.830664 0.288585 0.830944 0.364096 0.826299 0.365826 0.825937 0.289721 0.83506 0.287365 0.835263 0.362322 0.830944 0.364096 0.830664 0.288585 0.839048 0.2861 0.839181 0.360575 0.835263 0.362322 0.83506 0.287365 0.842558 0.284831 0.842629 0.358905 0.839181 0.360575 0.839048 0.2861 0.844864 0.283376 0.847121 0.357038 0.842629 0.358905 0.842558 0.284831 0.848721 0.281879 0.852998 0.35519 0.847121 0.357038 0.844864 0.283376 0.853491 0.280759 0.857538 0.353834 0.852998 0.35519 0.848721 0.281879 0.85843 0.279826 0.862237 0.352672 0.857538 0.353834 0.853491 0.280759 0.863453 0.279101 0.867016 0.351712 0.862237 0.352672 0.85843 0.279826 0.868473 0.278601 0.871793 0.350969 0.867016 0.351712 0.863453 0.279101 0.873405 0.278332 0.876486 0.350459 0.871793 0.350969 0.868473 0.278601 0.878165 0.27829 0.881014 0.350201 0.876486 0.350459 0.873405 0.278332 0.882671 0.278464 0.8853 0.350215 0.881014 0.350201 0.878165 0.27829 0.886846 0.278837 0.889271 0.350514 0.8853 0.350215 0.882671 0.278464 0.890619 0.279382 0.892858 0.3511 0.889271 0.350514 0.886846 0.278837 0.893926 0.280074 0.896 0.351958 0.892858 0.3511 0.890619 0.279382 0.896628 0.28119 0.898577 0.353494 0.896 0.351958 0.893926 0.280074 0.901789 0.281888 0.903196 0.354771 0.898577 0.353494 0.896628 0.28119 0.907309 0.282432 0.908143 0.355702 0.903196 0.354771 0.901789 0.281888 0.914532 0.282899 0.913469 0.356623 0.908143 0.355702 0.907309 0.282432 0.922977 0.283609 0.920471 0.357591 0.913469 0.356623 0.914532 0.282899 0.93242 0.284181 0.930212 0.35826 0.920471 0.357591 0.922977 0.283609 0.944197 0.284661 0.942673 0.358739 0.930212 0.35826 0.93242 0.284181 0.958417 0.28503 0.957492 0.35906 0.942673 0.358739 0.944197 0.284661 0.97158 0.285053 0.97413 0.359512 0.957492 0.35906 0.958417 0.28503 0.5483 0.107857 0.539243 0.02429 0.545179 0.02429 0.551107 0.107899 0.527114 0.02429 0.533009 0.02429 0.537707 0.107857 0.527114 0.107857 0.977209 0.107857 0.96657 0.107857 0.97572 0.02429 0.981954 0.02429 0.881049 0.448097 0.881049 0.56821 0.868656 0.56821 0.868656 0.56821 0.855201 0.568044 0.860256 0.447791 0.855201 0.568044 0.858008 0.650534 0.850021 0.651517 0.850021 0.651517 0.845424 0.651459 0.855201 0.568044 0.881049 0.56821 0.881049 0.64947 0.869025 0.6497 0.868656 0.56821 0.868656 0.56821 0.869025 0.6497 0.858008 0.650534 0.855201 0.568044 0.858008 0.650534 0.857095 0.708592 0.847236 0.709703 0.850021 0.651517 0.847236 0.709703 0.839252 0.731418 0.845424 0.651459 0.850021 0.651517 0.881049 0.64947 0.881049 0.708221 0.868648 0.708221 0.869025 0.6497 0.868648 0.708221 0.857095 0.708592 0.858008 0.650534 0.869025 0.6497 0.763072 0.642064 0.7719 0.728692 0.757255 0.729919 0.753486 0.64139 0.847236 0.709703 0.857095 0.708592 0.857308 0.74707 0.847495 0.747811 0.857308 0.74707 0.858899 0.789535 0.849735 0.789697 0.847495 0.747811 0.849735 0.789697 0.842694 0.789917 0.839961 0.748804 0.847495 0.747811 0.839961 0.748804 0.839252 0.731418 0.847236 0.709703 0.847495 0.747811 0.868648 0.708221 0.881049 0.708221 0.881049 0.746823 0.868767 0.746823 0.881049 0.746823 0.881049 0.789465 0.869587 0.789472 0.868767 0.746823 0.869587 0.789472 0.858899 0.789535 0.857308 0.74707 0.868767 0.746823 0.857308 0.74707 0.857095 0.708592 0.868648 0.708221 0.868767 0.746823 0.757255 0.729919 0.7719 0.728692 0.770877 0.757263 0.756954 0.757719 0.770877 0.757263 0.768316 0.79181 0.756566 0.791923 0.756954 0.757719 0.756566 0.791923 0.743885 0.791943 0.743885 0.757771 0.756954 0.757719 0.743885 0.757771 0.743885 0.72997 0.757255 0.729919 0.756954 0.757719 0.793597 0.754491 0.790462 0.791193 0.779496 0.791553 0.782067 0.7561 0.779496 0.791553 0.768316 0.79181 0.770877 0.757263 0.782067 0.7561 0.770877 0.757263 0.7719 0.728692 0.78202 0.727101 0.782067 0.7561 0.816395 0.751021 0.812962 0.790419 0.803028 0.790792 0.805274 0.752693 0.803028 0.790792 0.793219 0.791193 0.793714 0.754491 0.805274 0.752693 0.836143 0.748783 0.831842 0.789896 0.822742 0.790132 0.826658 0.749789 0.822742 0.790132 0.812962 0.790419 0.816395 0.751021 0.826658 0.749789 0.847386 0.831728 0.853571 0.831728 0.857252 0.857582 0.851895 0.857582 0.861613 0.831728 0.870991 0.831728 0.872339 0.857582 0.864217 0.857582 0.743885 0.831728 0.754409 0.831728 0.752596 0.857582 0.743885 0.857582 0.764217 0.831728 0.772878 0.831728 0.767682 0.857582 0.760718 0.857582 0.792375 0.831728 0.800417 0.831728 0.799221 0.857582 0.792266 0.857582 0.809038 0.831728 0.817649 0.831728 0.814139 0.857582 0.80668 0.857582 0.866438 0.873078 0.860393 0.873078 0.857252 0.857582 0.864217 0.857582 0.864127 0.898178 0.867237 0.898178 0.870434 0.906939 0.868042 0.906939 0.881049 0.873078 0.873488 0.873078 0.872339 0.857582 0.881049 0.857582 0.871279 0.898178 0.875993 0.898178 0.877163 0.906939 0.873539 0.906939 0.758496 0.873078 0.751446 0.873078 0.752596 0.857582 0.760718 0.857582 0.743885 0.898178 0.748941 0.898178 0.747771 0.906939 0.743885 0.906939 0.772235 0.873078 0.764542 0.873078 0.767682 0.857582 0.776545 0.857582 0.753655 0.898178 0.757697 0.898178 0.754501 0.906939 0.751395 0.906939 0.805423 0.873078 0.798949 0.873078 0.799221 0.857582 0.80668 0.857582 0.795279 0.898178 0.799317 0.898178 0.799771 0.906939 0.796667 0.906939 0.817936 0.873078 0.811898 0.873078 0.814139 0.857582 0.821095 0.857582 0.803645 0.898178 0.807975 0.898178 0.806426 0.906939 0.803097 0.906939 0.875453 0.912608 0.873141 0.912608 0.870434 0.906939 0.873539 0.906939 0.881049 0.912608 0.878154 0.912608 0.877163 0.906939 0.881049 0.906939 0.749481 0.912608 0.74678 0.912608 0.747771 0.906939 0.751395 0.906939 0.754742 0.912608 0.751793 0.912608 0.754501 0.906939 0.758456 0.906939 0.80276 0.912608 0.800284 0.912608 0.799771 0.906939 0.803097 0.906939 0.807551 0.912608 0.805241 0.912608 0.806426 0.906939 0.809528 0.906939 0.7559 0.457684 0.758584 0.55613 0.753853 0.556405 0.753853 0.556405 0.743885 0.556543 0.743885 0.457683 0.749892 0.457683 0.758584 0.55613 0.763072 0.642064 0.753486 0.64139 0.753853 0.556405 0.743885 0.641539 0.743885 0.556543 0.753853 0.556405 0.753486 0.64139 0.743885 0.72997 0.743885 0.641539 0.753486 0.64139 0.757255 0.729919 0.82795 0.733113 0.838039 0.731397 0.836143 0.748783 0.826658 0.749789 0.816395 0.751021 0.817912 0.732015 0.82795 0.733113 0.826658 0.749789 0.806678 0.728023 0.817912 0.732015 0.816395 0.751021 0.805274 0.752693 0.793714 0.754491 0.793711 0.72554 0.806678 0.728023 0.805274 0.752693 0.78202 0.727101 0.793594 0.72554 0.793597 0.754491 0.782067 0.7561 0.881049 0.448097 0.868656 0.56821 0.860256 0.447791 0.849759 0.00880599 0.876374 0.210329 0.838839 0.008807 0.838839 0.008807 0.876374 0.210329 0.827061 0.008807 0.859633 0.00880599 0.876374 0.210329 0.849759 0.00880599 0.868292 0.008807 0.876374 0.210329 0.859633 0.00880599 0.876374 0.008807 0.876374 0.210329 0.868292 0.008807 0.827061 0.008807 0.876374 0.210329 0.827061 0.210329 0.876564 0.917625 0.875162 0.917625 0.873892 0.915835 0.875446 0.915835 0.878072 0.917625 0.876564 0.917625 0.875446 0.915835 0.876972 0.915835 0.879571 0.917625 0.878072 0.917625 0.876972 0.915835 0.87894 0.915835 0.881049 0.917625 0.879571 0.917625 0.87894 0.915835 0.881049 0.915835 0.745417 0.917625 0.743885 0.917625 0.743885 0.915835 0.745994 0.915835 0.746863 0.917625 0.745417 0.917625 0.745994 0.915835 0.747963 0.915835 0.74866 0.917625 0.746863 0.917625 0.747963 0.915835 0.749941 0.915835 0.750312 0.917625 0.74866 0.917625 0.749941 0.915835 0.751975 0.915835 0.80122 0.917625 0.800016 0.917625 0.799094 0.915835 0.800784 0.915835 0.802529 0.917625 0.80122 0.917625 0.800784 0.915835 0.802585 0.915835 0.803844 0.917625 0.802529 0.917625 0.802585 0.915835 0.804395 0.915835 0.805042 0.917625 0.803844 0.917625 0.804395 0.915835 0.806077 0.915835 0.879847 0.918905 0.878308 0.918903 0.878072 0.917625 0.879571 0.917625 0.878308 0.918903 0.87685 0.918897 0.876564 0.917625 0.878072 0.917625 0.87685 0.918897 0.875874 0.918913 0.875162 0.917625 0.876564 0.917625 0.804771 0.918901 0.803837 0.918901 0.803844 0.917625 0.805042 0.917625 0.803837 0.918901 0.802475 0.918901 0.802529 0.917625 0.803844 0.917625 0.802475 0.918901 0.801121 0.918901 0.80122 0.917625 0.802529 0.917625 0.801121 0.918901 0.800193 0.918901 0.800016 0.917625 0.80122 0.917625 0.750099 0.918901 0.748615 0.918901 0.74866 0.917625 0.750312 0.917625 0.748615 0.918901 0.746863 0.918901 0.746863 0.917625 0.74866 0.917625 0.746863 0.918901 0.745417 0.918901 0.745417 0.917625 0.746863 0.917625 0.745417 0.918901 0.743885 0.918901 0.743885 0.917625 0.745417 0.917625 0.881049 0.918892 0.879847 0.918905 0.879571 0.917625 0.881049 0.917625 0.861613 0.831728 0.864217 0.857582 0.857252 0.857582 0.853571 0.831728 0.881049 0.831728 0.881049 0.857582 0.872339 0.857582 0.870991 0.831728 0.764217 0.831728 0.760718 0.857582 0.752596 0.857582 0.754409 0.831728 0.782967 0.831728 0.776545 0.857582 0.767682 0.857582 0.772878 0.831728 0.809038 0.831728 0.80668 0.857582 0.799221 0.857582 0.800417 0.831728 0.825677 0.831728 0.821095 0.857582 0.814139 0.857582 0.817649 0.831728 0.866438 0.873078 0.868852 0.886751 0.863806 0.886751 0.860393 0.873078 0.871279 0.898178 0.873539 0.906939 0.870434 0.906939 0.867237 0.898178 0.871279 0.898178 0.867237 0.898178 0.863806 0.886751 0.868852 0.886751 0.864127 0.898178 0.859924 0.886751 0.863806 0.886751 0.867237 0.898178 0.855742 0.873078 0.851895 0.857582 0.857252 0.857582 0.860393 0.873078 0.855742 0.873078 0.860393 0.873078 0.863806 0.886751 0.859924 0.886751 0.881049 0.873078 0.881049 0.886751 0.874737 0.886751 0.873488 0.873078 0.881049 0.898178 0.881049 0.906939 0.877163 0.906939 0.875993 0.898178 0.881049 0.898178 0.875993 0.898178 0.874737 0.886751 0.881049 0.886751 0.871279 0.898178 0.868852 0.886751 0.874737 0.886751 0.875993 0.898178 0.866438 0.873078 0.864217 0.857582 0.872339 0.857582 0.873488 0.873078 0.866438 0.873078 0.873488 0.873078 0.874737 0.886751 0.868852 0.886751 0.758496 0.873078 0.756082 0.886751 0.750197 0.886751 0.751446 0.873078 0.753655 0.898178 0.751395 0.906939 0.747771 0.906939 0.748941 0.898178 0.753655 0.898178 0.748941 0.898178 0.750197 0.886751 0.756082 0.886751 0.743885 0.898178 0.743885 0.886751 0.750197 0.886751 0.748941 0.898178 0.743885 0.873078 0.743885 0.857582 0.752596 0.857582 0.751446 0.873078 0.743885 0.873078 0.751446 0.873078 0.750197 0.886751 0.743885 0.886751 0.772235 0.873078 0.767551 0.886751 0.761129 0.886751 0.764542 0.873078 0.762842 0.898178 0.758456 0.906939 0.754501 0.906939 0.757697 0.898178 0.762842 0.898178 0.757697 0.898178 0.761129 0.886751 0.767551 0.886751 0.753655 0.898178 0.756082 0.886751 0.761129 0.886751 0.757697 0.898178 0.758496 0.873078 0.760718 0.857582 0.767682 0.857582 0.764542 0.873078 0.758496 0.873078 0.764542 0.873078 0.761129 0.886751 0.756082 0.886751 0.805423 0.873078 0.804416 0.886751 0.799011 0.886751 0.798949 0.873078 0.803645 0.898178 0.803097 0.906939 0.799771 0.906939 0.799317 0.898178 0.803645 0.898178 0.799317 0.898178 0.799011 0.886751 0.804416 0.886751 0.795279 0.898178 0.793971 0.886751 0.799011 0.886751 0.799317 0.898178 0.792911 0.873078 0.792266 0.857582 0.799221 0.857582 0.798949 0.873078 0.792911 0.873078 0.798949 0.873078 0.799011 0.886751 0.793971 0.886751 0.817936 0.873078 0.814861 0.886751 0.809821 0.886751 0.811898 0.873078 0.812012 0.898178 0.809528 0.906939 0.806426 0.906939 0.807975 0.898178 0.812012 0.898178 0.807975 0.898178 0.809821 0.886751 0.814861 0.886751 0.803645 0.898178 0.804416 0.886751 0.809821 0.886751 0.807975 0.898178 0.805423 0.873078 0.80668 0.857582 0.814139 0.857582 0.811898 0.873078 0.805423 0.873078 0.811898 0.873078 0.809821 0.886751 0.804416 0.886751 0.875453 0.912608 0.876972 0.915835 0.875446 0.915835 0.873141 0.912608 0.877703 0.920585 0.87685 0.918897 0.878308 0.918903 0.871357 0.912608 0.868042 0.906939 0.870434 0.906939 0.873141 0.912608 0.871357 0.912608 0.873141 0.912608 0.875446 0.915835 0.873892 0.915835 0.881049 0.912608 0.881049 0.915835 0.87894 0.915835 0.878154 0.912608 0.879245 0.920585 0.878308 0.918903 0.879847 0.918905 0.875453 0.912608 0.873539 0.906939 0.877163 0.906939 0.878154 0.912608 0.875453 0.912608 0.878154 0.912608 0.87894 0.915835 0.876972 0.915835 0.749481 0.912608 0.747963 0.915835 0.745994 0.915835 0.74678 0.912608 0.746062 0.920585 0.745417 0.918901 0.746863 0.918901 0.743885 0.912608 0.743885 0.906939 0.747771 0.906939 0.74678 0.912608 0.743885 0.912608 0.74678 0.912608 0.745994 0.915835 0.743885 0.915835 0.754742 0.912608 0.751975 0.915835 0.749941 0.915835 0.751793 0.912608 0.747554 0.920585 0.746863 0.918901 0.748615 0.918901 0.749481 0.912608 0.751395 0.906939 0.754501 0.906939 0.751793 0.912608 0.749481 0.912608 0.751793 0.912608 0.749941 0.915835 0.747963 0.915835 0.80276 0.912608 0.802585 0.915835 0.800784 0.915835 0.800284 0.912608 0.801696 0.920585 0.801121 0.918901 0.802475 0.918901 0.797968 0.912608 0.796667 0.906939 0.799771 0.906939 0.800284 0.912608 0.797968 0.912608 0.800284 0.912608 0.800784 0.915835 0.799094 0.915835 0.807551 0.912608 0.806077 0.915835 0.804395 0.915835 0.805241 0.912608 0.80324 0.920585 0.802475 0.918901 0.803837 0.918901 0.80276 0.912608 0.803097 0.906939 0.806426 0.906939 0.805241 0.912608 0.80276 0.912608 0.805241 0.912608 0.804395 0.915835 0.802585 0.915835 0.804393 0.920585 0.803837 0.918901 0.804771 0.918901 0.876437 0.920585 0.875874 0.918913 0.87685 0.918897 0.880633 0.920585 0.879847 0.918905 0.881049 0.918892 0.744648 0.920585 0.743885 0.918901 0.745417 0.918901 0.749189 0.920585 0.748615 0.918901 0.750099 0.918901 0.800241 0.920585 0.800193 0.918901 0.801121 0.918901 0.817649 0.831728 0.822742 0.790132 0.831842 0.789896 0.825677 0.831728 0.817649 0.831728 0.809038 0.831728 0.812962 0.790419 0.822742 0.790132 0.800417 0.831728 0.803028 0.790792 0.812962 0.790419 0.809038 0.831728 0.800417 0.831728 0.792375 0.831728 0.793219 0.791193 0.803028 0.790792 0.772878 0.831728 0.779496 0.791553 0.790462 0.791193 0.782967 0.831728 0.772878 0.831728 0.764217 0.831728 0.768316 0.79181 0.779496 0.791553 0.754409 0.831728 0.756566 0.791923 0.768316 0.79181 0.764217 0.831728 0.754409 0.831728 0.743885 0.831728 0.743885 0.791943 0.756566 0.791923 0.870991 0.831728 0.869587 0.789472 0.881049 0.789465 0.881049 0.831728 0.870991 0.831728 0.861613 0.831728 0.858899 0.789535 0.869587 0.789472 0.853571 0.831728 0.849735 0.789697 0.858899 0.789535 0.861613 0.831728 0.853571 0.831728 0.847386 0.831728 0.842694 0.789917 0.849735 0.789697 0.881049 0.448097 0.893442 0.56821 0.881049 0.56821 0.893442 0.56821 0.901843 0.447791 0.906897 0.568044 0.906897 0.568044 0.912077 0.651517 0.90409 0.650534 0.912077 0.651517 0.906897 0.568044 0.916674 0.651459 0.881049 0.56821 0.893442 0.56821 0.893074 0.6497 0.881049 0.64947 0.90409 0.650534 0.912077 0.651517 0.914862 0.709703 0.905003 0.708592 0.914862 0.709703 0.912077 0.651517 0.916674 0.651459 0.922846 0.731418 0.881049 0.64947 0.893074 0.6497 0.89345 0.708221 0.881049 0.708221 0.89345 0.708221 0.893074 0.6497 0.90409 0.650534 0.905003 0.708592 0.724699 0.642064 0.734285 0.64139 0.730515 0.729919 0.715871 0.728692 0.914862 0.709703 0.914603 0.747811 0.90479 0.74707 0.905003 0.708592 0.90479 0.74707 0.914603 0.747811 0.912363 0.789697 0.903199 0.789535 0.912363 0.789697 0.914603 0.747811 0.922137 0.748804 0.919404 0.789917 0.922137 0.748804 0.914603 0.747811 0.914862 0.709703 0.922846 0.731418 0.89345 0.708221 0.893331 0.746823 0.881049 0.746823 0.881049 0.708221 0.881049 0.746823 0.893331 0.746823 0.892511 0.789472 0.881049 0.789465 0.892511 0.789472 0.893331 0.746823 0.90479 0.74707 0.903199 0.789535 0.90479 0.74707 0.893331 0.746823 0.89345 0.708221 0.905003 0.708592 0.730515 0.729919 0.730816 0.757719 0.716894 0.757263 0.715871 0.728692 0.716894 0.757263 0.730816 0.757719 0.731204 0.791923 0.719455 0.79181 0.731204 0.791923 0.730816 0.757719 0.743885 0.757771 0.743885 0.791943 0.743885 0.757771 0.730816 0.757719 0.730515 0.729919 0.743885 0.72997 0.694174 0.754491 0.705704 0.7561 0.708275 0.791553 0.697308 0.791193 0.708275 0.791553 0.705704 0.7561 0.716894 0.757263 0.719455 0.79181 0.716894 0.757263 0.705704 0.7561 0.705751 0.727101 0.715871 0.728692 0.945703 0.751021 0.956824 0.752693 0.95907 0.790792 0.949136 0.790419 0.95907 0.790792 0.956824 0.752693 0.968384 0.754491 0.968879 0.791193 0.925954 0.748783 0.93544 0.749789 0.939356 0.790132 0.930256 0.789896 0.939356 0.790132 0.93544 0.749789 0.945703 0.751021 0.949136 0.790419 0.914712 0.831728 0.910203 0.857582 0.904846 0.857582 0.908527 0.831728 0.900485 0.831728 0.897881 0.857582 0.889759 0.857582 0.891107 0.831728 0.743885 0.831728 0.743885 0.857582 0.735175 0.857582 0.733362 0.831728 0.723554 0.831728 0.727053 0.857582 0.720089 0.857582 0.714893 0.831728 0.969723 0.831728 0.969832 0.857582 0.962877 0.857582 0.961681 0.831728 0.953059 0.831728 0.955418 0.857582 0.947958 0.857582 0.944449 0.831728 0.89566 0.873078 0.897881 0.857582 0.904846 0.857582 0.901705 0.873078 0.897971 0.898178 0.894056 0.906939 0.891664 0.906939 0.894861 0.898178 0.881049 0.873078 0.881049 0.857582 0.889759 0.857582 0.88861 0.873078 0.890819 0.898178 0.888558 0.906939 0.884934 0.906939 0.886104 0.898178 0.729275 0.873078 0.727053 0.857582 0.735175 0.857582 0.736325 0.873078 0.743885 0.898178 0.743885 0.906939 0.74 0.906939 0.73883 0.898178 0.715536 0.873078 0.711226 0.857582 0.720089 0.857582 0.723229 0.873078 0.734116 0.898178 0.736376 0.906939 0.73327 0.906939 0.730074 0.898178 0.956674 0.873078 0.955418 0.857582 0.962877 0.857582 0.963149 0.873078 0.966819 0.898178 0.965431 0.906939 0.962326 0.906939 0.962781 0.898178 0.944162 0.873078 0.941003 0.857582 0.947958 0.857582 0.950199 0.873078 0.958452 0.898178 0.959 0.906939 0.955671 0.906939 0.954123 0.898178 0.886644 0.912608 0.888558 0.906939 0.891664 0.906939 0.888957 0.912608 0.881049 0.912608 0.881049 0.906939 0.884934 0.906939 0.883943 0.912608 0.73829 0.912608 0.736376 0.906939 0.74 0.906939 0.740991 0.912608 0.733028 0.912608 0.729315 0.906939 0.73327 0.906939 0.735978 0.912608 0.959338 0.912608 0.959 0.906939 0.962326 0.906939 0.961814 0.912608 0.954546 0.912608 0.952569 0.906939 0.955671 0.906939 0.956856 0.912608 0.731871 0.457684 0.733917 0.556405 0.729187 0.55613 0.733917 0.556405 0.731871 0.457684 0.737878 0.457683 0.729187 0.55613 0.733917 0.556405 0.734285 0.64139 0.724699 0.642064 0.743885 0.641539 0.734285 0.64139 0.733917 0.556405 0.743885 0.556543 0.743885 0.72997 0.730515 0.729919 0.734285 0.64139 0.743885 0.641539 0.934148 0.733113 0.93544 0.749789 0.925954 0.748783 0.924059 0.731397 0.945703 0.751021 0.93544 0.749789 0.934148 0.733113 0.944186 0.732015 0.95542 0.728023 0.956824 0.752693 0.945703 0.751021 0.944186 0.732015 0.968384 0.754491 0.956824 0.752693 0.95542 0.728023 0.968387 0.72554 0.705751 0.727101 0.705704 0.7561 0.694174 0.754491 0.694177 0.72554 0.881049 0.448097 0.901843 0.447791 0.893442 0.56821 0.849774 0.00880599 0.838855 0.008807 0.87639 0.210329 0.838855 0.008807 0.827061 0.008807 0.87639 0.210329 0.859648 0.008807 0.849774 0.00880599 0.87639 0.210329 0.868307 0.008807 0.859648 0.008807 0.87639 0.210329 0.87639 0.008807 0.868307 0.008807 0.87639 0.210329 0.827061 0.008807 0.827061 0.210329 0.87639 0.210329 0.893442 0.56821 0.906897 0.568044 0.90409 0.650534 0.893074 0.6497 0.885534 0.917625 0.886652 0.915835 0.888206 0.915835 0.886936 0.917625 0.884026 0.917625 0.885126 0.915835 0.886652 0.915835 0.885534 0.917625 0.882527 0.917625 0.883157 0.915835 0.885126 0.915835 0.884026 0.917625 0.881049 0.917625 0.881049 0.915835 0.883157 0.915835 0.882527 0.917625 0.742353 0.917625 0.741777 0.915835 0.743885 0.915835 0.743885 0.917625 0.740908 0.917625 0.739808 0.915835 0.741777 0.915835 0.742353 0.917625 0.739111 0.917625 0.73783 0.915835 0.739808 0.915835 0.740908 0.917625 0.737459 0.917625 0.735796 0.915835 0.73783 0.915835 0.739111 0.917625 0.960878 0.917625 0.961314 0.915835 0.963004 0.915835 0.962081 0.917625 0.959569 0.917625 0.959512 0.915835 0.961314 0.915835 0.960878 0.917625 0.958254 0.917625 0.957702 0.915835 0.959512 0.915835 0.959569 0.917625 0.957056 0.917625 0.95602 0.915835 0.957702 0.915835 0.958254 0.917625 0.882251 0.918905 0.882527 0.917625 0.884026 0.917625 0.88379 0.918903 0.88379 0.918903 0.884026 0.917625 0.885534 0.917625 0.885248 0.918897 0.885248 0.918897 0.885534 0.917625 0.886936 0.917625 0.886224 0.918913 0.957326 0.918901 0.957056 0.917625 0.958254 0.917625 0.958261 0.918901 0.958261 0.918901 0.958254 0.917625 0.959569 0.917625 0.959622 0.918901 0.959622 0.918901 0.959569 0.917625 0.960878 0.917625 0.960977 0.918901 0.960977 0.918901 0.960878 0.917625 0.962081 0.917625 0.961904 0.918901 0.737672 0.918901 0.737459 0.917625 0.739111 0.917625 0.739156 0.918901 0.739156 0.918901 0.739111 0.917625 0.740908 0.917625 0.740908 0.918901 0.740908 0.918901 0.740908 0.917625 0.742353 0.917625 0.742353 0.918901 0.742353 0.918901 0.742353 0.917625 0.743885 0.917625 0.743885 0.918901 0.881049 0.918892 0.881049 0.917625 0.882527 0.917625 0.882251 0.918905 0.900485 0.831728 0.908527 0.831728 0.904846 0.857582 0.897881 0.857582 0.881049 0.831728 0.891107 0.831728 0.889759 0.857582 0.881049 0.857582 0.723554 0.831728 0.733362 0.831728 0.735175 0.857582 0.727053 0.857582 0.704804 0.831728 0.714893 0.831728 0.720089 0.857582 0.711226 0.857582 0.953059 0.831728 0.961681 0.831728 0.962877 0.857582 0.955418 0.857582 0.936421 0.831728 0.944449 0.831728 0.947958 0.857582 0.941003 0.857582 0.89566 0.873078 0.901705 0.873078 0.898292 0.886751 0.893246 0.886751 0.890819 0.898178 0.894861 0.898178 0.891664 0.906939 0.888558 0.906939 0.890819 0.898178 0.893246 0.886751 0.898292 0.886751 0.894861 0.898178 0.897971 0.898178 0.894861 0.898178 0.898292 0.886751 0.902174 0.886751 0.906355 0.873078 0.901705 0.873078 0.904846 0.857582 0.910203 0.857582 0.906355 0.873078 0.902174 0.886751 0.898292 0.886751 0.901705 0.873078 0.881049 0.873078 0.88861 0.873078 0.88736 0.886751 0.881049 0.886751 0.881049 0.898178 0.886104 0.898178 0.884934 0.906939 0.881049 0.906939 0.881049 0.898178 0.881049 0.886751 0.88736 0.886751 0.886104 0.898178 0.890819 0.898178 0.886104 0.898178 0.88736 0.886751 0.893246 0.886751 0.89566 0.873078 0.88861 0.873078 0.889759 0.857582 0.897881 0.857582 0.89566 0.873078 0.893246 0.886751 0.88736 0.886751 0.88861 0.873078 0.729275 0.873078 0.736325 0.873078 0.737574 0.886751 0.731689 0.886751 0.734116 0.898178 0.73883 0.898178 0.74 0.906939 0.736376 0.906939 0.734116 0.898178 0.731689 0.886751 0.737574 0.886751 0.73883 0.898178 0.743885 0.898178 0.73883 0.898178 0.737574 0.886751 0.743885 0.886751 0.743885 0.873078 0.736325 0.873078 0.735175 0.857582 0.743885 0.857582 0.743885 0.873078 0.743885 0.886751 0.737574 0.886751 0.736325 0.873078 0.715536 0.873078 0.723229 0.873078 0.726642 0.886751 0.72022 0.886751 0.724929 0.898178 0.730074 0.898178 0.73327 0.906939 0.729315 0.906939 0.724929 0.898178 0.72022 0.886751 0.726642 0.886751 0.730074 0.898178 0.734116 0.898178 0.730074 0.898178 0.726642 0.886751 0.731689 0.886751 0.729275 0.873078 0.723229 0.873078 0.720089 0.857582 0.727053 0.857582 0.729275 0.873078 0.731689 0.886751 0.726642 0.886751 0.723229 0.873078 0.956674 0.873078 0.963149 0.873078 0.963086 0.886751 0.957681 0.886751 0.958452 0.898178 0.962781 0.898178 0.962326 0.906939 0.959 0.906939 0.958452 0.898178 0.957681 0.886751 0.963086 0.886751 0.962781 0.898178 0.966819 0.898178 0.962781 0.898178 0.963086 0.886751 0.968126 0.886751 0.969186 0.873078 0.963149 0.873078 0.962877 0.857582 0.969832 0.857582 0.969186 0.873078 0.968126 0.886751 0.963086 0.886751 0.963149 0.873078 0.944162 0.873078 0.950199 0.873078 0.952276 0.886751 0.947237 0.886751 0.950086 0.898178 0.954123 0.898178 0.955671 0.906939 0.952569 0.906939 0.950086 0.898178 0.947237 0.886751 0.952276 0.886751 0.954123 0.898178 0.958452 0.898178 0.954123 0.898178 0.952276 0.886751 0.957681 0.886751 0.956674 0.873078 0.950199 0.873078 0.947958 0.857582 0.955418 0.857582 0.956674 0.873078 0.957681 0.886751 0.952276 0.886751 0.950199 0.873078 0.886644 0.912608 0.888957 0.912608 0.886652 0.915835 0.885126 0.915835 0.884395 0.920585 0.88379 0.918903 0.885248 0.918897 0.890741 0.912608 0.888957 0.912608 0.891664 0.906939 0.894056 0.906939 0.890741 0.912608 0.888206 0.915835 0.886652 0.915835 0.888957 0.912608 0.881049 0.912608 0.883943 0.912608 0.883157 0.915835 0.881049 0.915835 0.882853 0.920585 0.882251 0.918905 0.88379 0.918903 0.886644 0.912608 0.883943 0.912608 0.884934 0.906939 0.888558 0.906939 0.886644 0.912608 0.885126 0.915835 0.883157 0.915835 0.883943 0.912608 0.73829 0.912608 0.740991 0.912608 0.741777 0.915835 0.739808 0.915835 0.741709 0.920585 0.740908 0.918901 0.742353 0.918901 0.743885 0.912608 0.740991 0.912608 0.74 0.906939 0.743885 0.906939 0.743885 0.912608 0.743885 0.915835 0.741777 0.915835 0.740991 0.912608 0.733028 0.912608 0.735978 0.912608 0.73783 0.915835 0.735796 0.915835 0.740217 0.920585 0.739156 0.918901 0.740908 0.918901 0.73829 0.912608 0.735978 0.912608 0.73327 0.906939 0.736376 0.906939 0.73829 0.912608 0.739808 0.915835 0.73783 0.915835 0.735978 0.912608 0.959338 0.912608 0.961814 0.912608 0.961314 0.915835 0.959512 0.915835 0.960401 0.920585 0.959622 0.918901 0.960977 0.918901 0.96413 0.912608 0.961814 0.912608 0.962326 0.906939 0.965431 0.906939 0.96413 0.912608 0.963004 0.915835 0.961314 0.915835 0.961814 0.912608 0.954546 0.912608 0.956856 0.912608 0.957702 0.915835 0.95602 0.915835 0.958857 0.920585 0.958261 0.918901 0.959622 0.918901 0.959338 0.912608 0.956856 0.912608 0.955671 0.906939 0.959 0.906939 0.959338 0.912608 0.959512 0.915835 0.957702 0.915835 0.956856 0.912608 0.957705 0.920585 0.957326 0.918901 0.958261 0.918901 0.885661 0.920585 0.885248 0.918897 0.886224 0.918913 0.881464 0.920585 0.881049 0.918892 0.882251 0.918905 0.743123 0.920585 0.742353 0.918901 0.743885 0.918901 0.738582 0.920585 0.737672 0.918901 0.739156 0.918901 0.961857 0.920585 0.960977 0.918901 0.961904 0.918901 0.944449 0.831728 0.936421 0.831728 0.930256 0.789896 0.939356 0.790132 0.944449 0.831728 0.939356 0.790132 0.949136 0.790419 0.953059 0.831728 0.961681 0.831728 0.953059 0.831728 0.949136 0.790419 0.95907 0.790792 0.961681 0.831728 0.95907 0.790792 0.968879 0.791193 0.969723 0.831728 0.714893 0.831728 0.704804 0.831728 0.697308 0.791193 0.708275 0.791553 0.714893 0.831728 0.708275 0.791553 0.719455 0.79181 0.723554 0.831728 0.733362 0.831728 0.723554 0.831728 0.719455 0.79181 0.731204 0.791923 0.733362 0.831728 0.731204 0.791923 0.743885 0.791943 0.743885 0.831728 0.891107 0.831728 0.881049 0.831728 0.881049 0.789465 0.892511 0.789472 0.891107 0.831728 0.892511 0.789472 0.903199 0.789535 0.900485 0.831728 0.908527 0.831728 0.900485 0.831728 0.903199 0.789535 0.912363 0.789697 0.908527 0.831728 0.912363 0.789697 0.919404 0.789917 0.914712 0.831728 0.96657 0.107857 0.963905 0.107896 0.969784 0.02429 0.97572 0.02429 0.96657 0.107857 0.968401 0.203557 0.963905 0.107896 0.551444 0.02429 0.551107 0.107899 0.545179 0.02429 0.54647 0.203557 0.551107 0.107899 0.55824 0.108004 0.558482 0.203453 0.987849 0.107857 0.977209 0.107857 0.981954 0.02429 0.987849 0.02429 0.733917 0.556405 0.737878 0.457683 0.743885 0.457683 0.743885 0.556543 0.5483 0.107857 0.537707 0.107857 0.533009 0.02429 0.539243 0.02429 0.753853 0.556405 0.749892 0.457683 0.7559 0.457684 0.963905 0.107896 0.963427 0.02429 0.969784 0.02429 0.55824 0.108004 0.551107 0.107899 0.551444 0.02429 0.558017 0.024224 0.555156 0.099887 0.575555 0.10374 0.575695 0.106893 0.555543 0.102863 0.575695 0.106893 0.57612 0.109943 0.555543 0.102863 0.555543 0.102863 0.541332 0.096589 0.555156 0.099887 0.555085 0.096589 0.575437 0.096589 0.575455 0.100347 0.575455 0.100347 0.575555 0.10374 0.555156 0.099887 0.555085 0.096589 0.555156 0.099887 0.541332 0.096589 0.555085 0.096589 0.555156 0.093291 0.575555 0.089438 0.575455 0.092831 0.555085 0.096589 0.575455 0.092831 0.575437 0.096589 0.555085 0.096589 0.555085 0.096589 0.541332 0.096589 0.555156 0.093291 0.555543 0.090315 0.57612 0.083236 0.575695 0.086285 0.575695 0.086285 0.575555 0.089438 0.555156 0.093291 0.555543 0.090315 0.555156 0.093291 0.541332 0.096589 0.555543 0.090315 0.555266 0.08821 0.575325 0.08038 0.57612 0.083236 0.555543 0.090315 0.555543 0.090315 0.541332 0.096589 0.555266 0.08821 0.57612 0.109943 0.575325 0.112798 0.555266 0.104969 0.555543 0.102863 0.555266 0.104969 0.541332 0.096589 0.555543 0.102863 0.644612 0.121364 0.64433 0.114179 0.700808 0.121068 0.703281 0.130958 0.622675 0.454578 0.618375 0.4546 0.618375 0.435382 0.622675 0.43451 0.615248 0.454608 0.615248 0.436464 0.618375 0.435382 0.618375 0.4546 0.644227 0.105706 0.644221 0.096589 0.698737 0.096589 0.699274 0.109277 0.634495 0.454571 0.628302 0.454571 0.628302 0.433863 0.634495 0.433594 0.622675 0.454578 0.622675 0.43451 0.628302 0.433863 0.628302 0.454571 0.644227 0.087472 0.64433 0.078999 0.700808 0.07211 0.699274 0.083901 0.646242 0.454578 0.640689 0.454571 0.640689 0.433863 0.646242 0.43451 0.634495 0.454571 0.634495 0.433594 0.640689 0.433863 0.640689 0.454571 0.644612 0.071815 0.6449 0.066297 0.705929 0.054571 0.703281 0.062221 0.653743 0.454608 0.650515 0.4546 0.650515 0.435382 0.653743 0.436464 0.646242 0.454578 0.646242 0.43451 0.650515 0.435382 0.650515 0.4546 0.644771 0.062907 0.64454 0.060232 0.709565 0.045834 0.707914 0.049547 0.665184 0.449364 0.66765 0.465025 0.665651 0.464938 0.663979 0.448798 0.653743 0.454608 0.653743 0.436464 0.657392 0.437667 0.657392 0.454576 0.644771 0.130272 0.6449 0.126881 0.705929 0.138608 0.707914 0.143632 0.615248 0.454608 0.611599 0.454576 0.611599 0.437667 0.615248 0.436464 0.601737 0.465263 0.604051 0.449588 0.605251 0.44901 0.603735 0.465175 0.618375 0.4546 0.622675 0.454578 0.622675 0.468853 0.618375 0.468853 0.622675 0.468853 0.622675 0.479891 0.618375 0.479891 0.618375 0.468853 0.618375 0.479891 0.615248 0.479891 0.615248 0.468847 0.618375 0.468853 0.615248 0.468847 0.615248 0.454608 0.618375 0.4546 0.618375 0.468853 0.628302 0.454571 0.634495 0.454571 0.634495 0.468853 0.628302 0.468853 0.634495 0.468853 0.634495 0.479891 0.628263 0.479891 0.628302 0.468853 0.628263 0.479891 0.622675 0.479891 0.622675 0.468853 0.628302 0.468853 0.622675 0.468853 0.622675 0.454578 0.628302 0.454571 0.628302 0.468853 0.640689 0.454571 0.646242 0.454578 0.646242 0.468853 0.640689 0.468853 0.646242 0.468853 0.646316 0.479891 0.640728 0.479891 0.640689 0.468853 0.640728 0.479891 0.634495 0.479891 0.634495 0.468853 0.640689 0.468853 0.634495 0.468853 0.634495 0.454571 0.640689 0.454571 0.640689 0.468853 0.650515 0.4546 0.653743 0.454608 0.653743 0.468847 0.650515 0.468853 0.653743 0.468847 0.653743 0.479891 0.650616 0.479891 0.650515 0.468853 0.650616 0.479891 0.646316 0.479891 0.646242 0.468853 0.650515 0.468853 0.646242 0.468853 0.646242 0.454578 0.650515 0.4546 0.650515 0.468853 0.665651 0.464938 0.66765 0.465025 0.668011 0.479341 0.665618 0.479255 0.668011 0.479341 0.66804 0.490461 0.665498 0.490334 0.665618 0.479255 0.657392 0.479891 0.653743 0.479891 0.653743 0.468847 0.657392 0.468866 0.653743 0.468847 0.653743 0.454608 0.657392 0.454576 0.657392 0.468831 0.611599 0.454576 0.615248 0.454608 0.615248 0.468847 0.611599 0.468831 0.615248 0.468847 0.615248 0.479891 0.611599 0.479891 0.611599 0.468866 0.603654 0.490587 0.601111 0.490686 0.60126 0.479567 0.603654 0.479508 0.60126 0.479567 0.601737 0.465263 0.603735 0.465175 0.603654 0.479508 0.618375 0.479891 0.622675 0.479891 0.623108 0.490092 0.618966 0.490092 0.623108 0.490092 0.624116 0.499663 0.620298 0.499663 0.618966 0.490092 0.620298 0.499663 0.617519 0.499663 0.615959 0.490092 0.618966 0.490092 0.615959 0.490092 0.615248 0.479891 0.618375 0.479891 0.618966 0.490092 0.628263 0.479891 0.634495 0.479891 0.634495 0.490092 0.628491 0.490092 0.634495 0.490092 0.634495 0.499663 0.629031 0.499663 0.628491 0.490092 0.629031 0.499663 0.624116 0.499663 0.623108 0.490092 0.628491 0.490092 0.623108 0.490092 0.622675 0.479891 0.628263 0.479891 0.628491 0.490092 0.640728 0.479891 0.646316 0.479891 0.645883 0.490092 0.640499 0.490092 0.645883 0.490092 0.644875 0.499663 0.63996 0.499663 0.640499 0.490092 0.63996 0.499663 0.634495 0.499663 0.634495 0.490092 0.640499 0.490092 0.634495 0.490092 0.634495 0.479891 0.640728 0.479891 0.640499 0.490092 0.650616 0.479891 0.653743 0.479891 0.653028 0.490092 0.650025 0.490092 0.653028 0.490092 0.651484 0.499663 0.648693 0.499663 0.650025 0.490092 0.648693 0.499663 0.644875 0.499663 0.645883 0.490092 0.650025 0.490092 0.645883 0.490092 0.646316 0.479891 0.650616 0.479891 0.650025 0.490092 0.665498 0.490334 0.66804 0.490461 0.66791 0.500645 0.665357 0.500528 0.66791 0.500645 0.667668 0.51019 0.665276 0.510093 0.665357 0.500528 0.654777 0.499663 0.651484 0.499663 0.653028 0.490092 0.656549 0.490092 0.653028 0.490092 0.653743 0.479891 0.657392 0.479891 0.65661 0.490092 0.611599 0.479891 0.615248 0.479891 0.615959 0.490092 0.61238 0.490092 0.615959 0.490092 0.617519 0.499663 0.614229 0.499663 0.61243 0.490092 0.603664 0.510347 0.60127 0.510418 0.601132 0.500871 0.603686 0.500782 0.601132 0.500871 0.601111 0.490686 0.603654 0.490587 0.603686 0.500782 0.620298 0.499663 0.624116 0.499663 0.625764 0.508811 0.62242 0.508811 0.625764 0.508811 0.627868 0.517364 0.625162 0.517364 0.62242 0.508811 0.625162 0.517364 0.623101 0.517364 0.619936 0.508811 0.62242 0.508811 0.619936 0.508811 0.617519 0.499663 0.620298 0.499663 0.62242 0.508811 0.629031 0.499663 0.634495 0.499663 0.634495 0.508811 0.629926 0.508811 0.634495 0.508811 0.634495 0.517364 0.63106 0.517364 0.629926 0.508811 0.63106 0.517364 0.627868 0.517364 0.625764 0.508811 0.629926 0.508811 0.625764 0.508811 0.624116 0.499663 0.629031 0.499663 0.629926 0.508811 0.63996 0.499663 0.644875 0.499663 0.643227 0.508811 0.639065 0.508811 0.643227 0.508811 0.641123 0.517364 0.637931 0.517364 0.639065 0.508811 0.637931 0.517364 0.634495 0.517364 0.634495 0.508811 0.639065 0.508811 0.634495 0.508811 0.634495 0.499663 0.63996 0.499663 0.639065 0.508811 0.648693 0.499663 0.651484 0.499663 0.649044 0.508811 0.64657 0.508811 0.649044 0.508811 0.645896 0.517364 0.643829 0.517364 0.64657 0.508811 0.643829 0.517364 0.641123 0.517364 0.643227 0.508811 0.64657 0.508811 0.643227 0.508811 0.644875 0.499663 0.648693 0.499663 0.64657 0.508811 0.665276 0.510093 0.667668 0.51019 0.667367 0.519392 0.665339 0.519282 0.667367 0.519392 0.667072 0.528011 0.665485 0.527886 0.665339 0.519282 0.647948 0.517364 0.645896 0.517364 0.649044 0.508811 0.651632 0.508811 0.649044 0.508811 0.651484 0.499663 0.654651 0.499663 0.651813 0.508811 0.614359 0.499663 0.617519 0.499663 0.619936 0.508811 0.617149 0.508811 0.619936 0.508811 0.623101 0.517364 0.621051 0.517364 0.617352 0.508811 0.603263 0.528137 0.601675 0.528245 0.601472 0.519623 0.603502 0.519535 0.601472 0.519623 0.60127 0.510418 0.603664 0.510347 0.603502 0.519535 0.625162 0.517364 0.627868 0.517364 0.630198 0.525558 0.628092 0.525558 0.630198 0.525558 0.632287 0.530426 0.63094 0.530455 0.628092 0.525558 0.63094 0.530455 0.629091 0.53045 0.626689 0.525558 0.628092 0.525558 0.626689 0.525558 0.623101 0.517364 0.625162 0.517364 0.628092 0.525558 0.63106 0.517364 0.634495 0.517364 0.634495 0.525558 0.632298 0.525558 0.634495 0.525558 0.634495 0.530447 0.633342 0.530447 0.632298 0.525558 0.633342 0.530447 0.632287 0.530426 0.630198 0.525558 0.632298 0.525558 0.630198 0.525558 0.627868 0.517364 0.63106 0.517364 0.632298 0.525558 0.637931 0.517364 0.641123 0.517364 0.638793 0.525558 0.636692 0.525558 0.638793 0.525558 0.636707 0.530428 0.635648 0.530447 0.636692 0.525558 0.635648 0.530447 0.634495 0.530447 0.634495 0.525558 0.636692 0.525558 0.634495 0.525558 0.634495 0.517364 0.637931 0.517364 0.636692 0.525558 0.643829 0.517364 0.645896 0.517364 0.642294 0.525558 0.640884 0.525558 0.642294 0.525558 0.639936 0.530444 0.638066 0.530468 0.640884 0.525558 0.638066 0.530468 0.636707 0.530428 0.638793 0.525558 0.640884 0.525558 0.638793 0.525558 0.641123 0.517364 0.643829 0.517364 0.640884 0.525558 0.665485 0.527886 0.667072 0.528011 0.666826 0.536311 0.665632 0.536198 0.666826 0.536311 0.666718 0.541033 0.666112 0.540995 0.665632 0.536198 0.639936 0.530444 0.642294 0.525558 0.643805 0.525558 0.642294 0.525558 0.645896 0.517364 0.647948 0.517364 0.643805 0.525558 0.621051 0.517364 0.623101 0.517364 0.626689 0.525558 0.62518 0.525558 0.626689 0.525558 0.629091 0.53045 0.62518 0.525558 0.60252 0.541246 0.601889 0.54127 0.601831 0.536547 0.603026 0.536447 0.601831 0.536547 0.601675 0.528245 0.603263 0.528137 0.603026 0.536447 0.63094 0.530455 0.632287 0.530426 0.631383 0.532805 0.629229 0.532555 0.629091 0.53045 0.63094 0.530455 0.633342 0.530447 0.634495 0.530447 0.634495 0.532565 0.633127 0.532619 0.632287 0.530426 0.633342 0.530447 0.634495 0.532565 0.635648 0.530447 0.636707 0.530428 0.635864 0.532619 0.634495 0.532565 0.634495 0.532565 0.634495 0.530447 0.635648 0.530447 0.638066 0.530468 0.639936 0.530444 0.63999 0.532471 0.637634 0.532803 0.636707 0.530428 0.638066 0.530468 0.666112 0.540995 0.666718 0.541033 0.666599 0.543289 0.665514 0.542938 0.666112 0.540995 0.666599 0.543289 0.60252 0.541246 0.603033 0.543185 0.601963 0.54355 0.603073 0.544683 0.601963 0.54355 0.603033 0.543185 0.604052 0.543724 0.601963 0.54355 0.601889 0.54127 0.60252 0.541246 0.575695 0.106893 0.575555 0.10374 0.64433 0.114179 0.644612 0.121364 0.6449 0.126881 0.57612 0.109943 0.575695 0.106893 0.644612 0.121364 0.575455 0.100347 0.575437 0.096589 0.644221 0.096589 0.644227 0.105706 0.64433 0.114179 0.575555 0.10374 0.575455 0.100347 0.644227 0.105706 0.575455 0.092831 0.575555 0.089438 0.64433 0.078999 0.644227 0.087472 0.644221 0.096589 0.575437 0.096589 0.575455 0.092831 0.644227 0.087472 0.575695 0.086285 0.57612 0.083236 0.6449 0.066297 0.644612 0.071815 0.64433 0.078999 0.575555 0.089438 0.575695 0.086285 0.644612 0.071815 0.57612 0.083236 0.575325 0.08038 0.64454 0.060232 0.644771 0.062907 0.6449 0.066297 0.57612 0.083236 0.644771 0.062907 0.57612 0.109943 0.6449 0.126881 0.644771 0.130272 0.64454 0.132946 0.575325 0.112798 0.57612 0.109943 0.644771 0.130272 0.66557 0.544464 0.66453 0.543572 0.665514 0.542938 0.666599 0.543289 0.703281 0.130958 0.705929 0.138608 0.6449 0.126881 0.644612 0.121364 0.699274 0.109277 0.700808 0.121068 0.64433 0.114179 0.644227 0.105706 0.699274 0.083901 0.698737 0.096589 0.644221 0.096589 0.644227 0.087472 0.703281 0.062221 0.700808 0.07211 0.64433 0.078999 0.644612 0.071815 0.707914 0.049547 0.705929 0.054571 0.6449 0.066297 0.644771 0.062907 0.707914 0.143632 0.709565 0.147344 0.64454 0.132946 0.644771 0.130272 0.070585 0.36479 0.07474 0.382772 0.06404 0.378225 0.024856 0.458665 0.041492 0.424515 0.059372 0.425366 0.045479 0.4602 0.034222 0.497628 0.012611 0.493862 0.012401 0.48424 0.034892 0.48599 0.107477 0.379588 0.107709 0.361269 0.212348 0.369906 0.212411 0.388235 0.096159 0.47116 0.104911 0.429789 0.216733 0.442464 0.210781 0.506098 0.078451 0.530075 0.047249 0.505218 0.052551 0.488559 0.087239 0.505282 0.045479 0.4602 0.059372 0.425366 0.072288 0.427285 0.060765 0.462689 0.200484 0.585398 0.087239 0.505282 0.096159 0.47116 0.210781 0.506098 0.060765 0.462689 0.072288 0.427285 0.104911 0.429789 0.096159 0.47116 0.047249 0.505218 0.044883 0.514419 0.034222 0.497628 0.087239 0.505282 0.052551 0.488559 0.060765 0.462689 0.096159 0.47116 0.200484 0.585398 0.236203 0.599903 0.228435 0.683585 0.196918 0.641084 0.226626 0.703072 0.225587 0.714266 0.192151 0.680817 0.193336 0.667516 0.210781 0.506098 0.244414 0.511446 0.236203 0.599903 0.200484 0.585398 0.212411 0.388235 0.212348 0.369906 0.257732 0.368809 0.25556 0.391924 0.212411 0.388235 0.216733 0.442464 0.104911 0.429789 0.107477 0.379588 0.107477 0.379588 0.082877 0.378166 0.076039 0.360204 0.107709 0.361269 0.07474 0.382772 0.059372 0.425366 0.041492 0.424515 0.06404 0.378225 0.012401 0.48424 0.024856 0.458665 0.045479 0.4602 0.034892 0.48599 0.012611 0.493862 0.034222 0.497628 0.044883 0.514419 0.041438 0.525527 0.068053 0.553052 0.041438 0.525527 0.044883 0.514419 0.072075 0.543457 0.047249 0.505218 0.034222 0.497628 0.034892 0.48599 0.052551 0.488559 0.07474 0.382772 0.082877 0.378166 0.072288 0.427285 0.059372 0.425366 0.060765 0.462689 0.052551 0.488559 0.034892 0.48599 0.045479 0.4602 0.228435 0.683585 0.226626 0.703072 0.193336 0.667516 0.196918 0.641084 0.251391 0.436282 0.244414 0.511446 0.210781 0.506098 0.216733 0.442464 0.072075 0.543457 0.044883 0.514419 0.047249 0.505218 0.078451 0.530075 0.200484 0.585398 0.196918 0.641084 0.078451 0.530075 0.087239 0.505282 0.193336 0.667516 0.072075 0.543457 0.078451 0.530075 0.196918 0.641084 0.068053 0.553052 0.072075 0.543457 0.193336 0.667516 0.192151 0.680817 0.212411 0.388235 0.25556 0.391924 0.251391 0.436282 0.216733 0.442464 0.070585 0.351325 0.06404 0.337889 0.07474 0.333343 0.024856 0.257449 0.045479 0.255914 0.059372 0.290748 0.041492 0.2916 0.034222 0.218486 0.034892 0.230125 0.012401 0.231875 0.012611 0.222252 0.107477 0.336526 0.212411 0.327879 0.212348 0.346209 0.107709 0.354846 0.096159 0.244954 0.210781 0.210017 0.216733 0.27365 0.104911 0.286326 0.078451 0.18604 0.087239 0.210833 0.052551 0.227556 0.047249 0.210897 0.045479 0.255914 0.060765 0.253426 0.072288 0.28883 0.059372 0.290748 0.200484 0.130717 0.210781 0.210017 0.096159 0.244954 0.087239 0.210833 0.060765 0.253426 0.096159 0.244954 0.104911 0.286326 0.072288 0.28883 0.047249 0.210897 0.034222 0.218486 0.044883 0.201695 0.087239 0.210833 0.096159 0.244954 0.060765 0.253426 0.052551 0.227556 0.200484 0.130717 0.196918 0.07503 0.229471 0.03253 0.24282 0.116212 0.226626 0.013043 0.193336 0.048598 0.192151 0.035298 0.225587 0.001849 0.210781 0.210017 0.200484 0.130717 0.24282 0.116212 0.253606 0.184555 0.212411 0.327879 0.256596 0.324191 0.257732 0.347306 0.212348 0.346209 0.212411 0.327879 0.107477 0.336526 0.104911 0.286326 0.216733 0.27365 0.107477 0.336526 0.107709 0.354846 0.076039 0.35591 0.083854 0.335383 0.107477 0.336526 0.083854 0.335383 0.072288 0.28883 0.104911 0.286326 0.07474 0.333343 0.083854 0.335383 0.076039 0.35591 0.070585 0.351325 0.07474 0.333343 0.06404 0.337889 0.041492 0.2916 0.059372 0.290748 0.012401 0.231875 0.034892 0.230125 0.045479 0.255914 0.024856 0.257449 0.012611 0.222252 0.041438 0.190587 0.044883 0.201695 0.034222 0.218486 0.068053 0.163062 0.072075 0.172657 0.044883 0.201695 0.041438 0.190587 0.047249 0.210897 0.052551 0.227556 0.034892 0.230125 0.034222 0.218486 0.083854 0.335383 0.07474 0.333343 0.059372 0.290748 0.072288 0.28883 0.060765 0.253426 0.045479 0.255914 0.034892 0.230125 0.052551 0.227556 0.229471 0.03253 0.196918 0.07503 0.193336 0.048598 0.226626 0.013043 0.258008 0.279833 0.216733 0.27365 0.210781 0.210017 0.253606 0.184555 0.072075 0.172657 0.078451 0.18604 0.047249 0.210897 0.044883 0.201695 0.200484 0.130717 0.087239 0.210833 0.078451 0.18604 0.196918 0.07503 0.193336 0.048598 0.196918 0.07503 0.078451 0.18604 0.072075 0.172657 0.068053 0.163062 0.192151 0.035298 0.193336 0.048598 0.072075 0.172657 0.212411 0.327879 0.216733 0.27365 0.258008 0.279833 0.256596 0.324191 0.070585 0.36479 0.070585 0.36479 0.076039 0.360204 0.076039 0.360204 0.06404 0.378225 0.063428 0.377032 0.070585 0.36479 0.070585 0.36479 0.012401 0.48424 0.012401 0.48424 0.024856 0.458665 0.024856 0.458665 0.068054 0.553052 0.068054 0.553052 0.041438 0.525527 0.041438 0.525527 0.107709 0.361269 0.107709 0.361269 0.212348 0.369906 0.212348 0.369906 0.012611 0.493862 0.012611 0.493862 0.012401 0.48424 0.012401 0.48424 0.212348 0.369906 0.212348 0.369906 0.257732 0.368809 0.257732 0.368809 0.076039 0.360204 0.076039 0.360204 0.107709 0.361269 0.107709 0.361269 0.041492 0.424515 0.041492 0.424515 0.063428 0.377032 0.06404 0.378225 0.024856 0.458665 0.024856 0.458665 0.041492 0.424515 0.041492 0.424515 0.041438 0.525527 0.041438 0.525527 0.012611 0.493862 0.012611 0.493862 0.225587 0.714266 0.225587 0.714266 0.192151 0.680817 0.192151 0.680817 0.192151 0.680817 0.192151 0.680817 0.068054 0.553052 0.068054 0.553052 0.107477 0.379588 0.104911 0.429789 0.072288 0.427285 0.082877 0.378166 0.07474 0.382772 0.070585 0.36479 0.076039 0.360204 0.082877 0.378166 0.450488 0.36479 0.457033 0.378225 0.446333 0.382772 0.496218 0.458665 0.475594 0.4602 0.461701 0.425366 0.479581 0.424515 0.486851 0.497628 0.486181 0.48599 0.508672 0.48424 0.508462 0.493862 0.413596 0.379588 0.308662 0.388235 0.308725 0.369906 0.413364 0.361269 0.424914 0.47116 0.310293 0.506098 0.30434 0.442464 0.416162 0.429789 0.442622 0.530075 0.433835 0.505282 0.468522 0.488559 0.473824 0.505218 0.475594 0.4602 0.460308 0.462689 0.448785 0.427285 0.461701 0.425366 0.320589 0.585398 0.310293 0.506098 0.424914 0.47116 0.433835 0.505282 0.460308 0.462689 0.424914 0.47116 0.416162 0.429789 0.448785 0.427285 0.473824 0.505218 0.486851 0.497628 0.47619 0.514419 0.433835 0.505282 0.424914 0.47116 0.460308 0.462689 0.468522 0.488559 0.320589 0.585398 0.324155 0.641084 0.292639 0.683585 0.28487 0.599903 0.294447 0.703072 0.327737 0.667516 0.328923 0.680817 0.295486 0.714266 0.310293 0.506098 0.320589 0.585398 0.28487 0.599903 0.27666 0.511446 0.308662 0.388235 0.265513 0.391924 0.263341 0.368809 0.308725 0.369906 0.308662 0.388235 0.413596 0.379588 0.416162 0.429789 0.30434 0.442464 0.413596 0.379588 0.413364 0.361269 0.445034 0.360204 0.438196 0.378166 0.446333 0.382772 0.457033 0.378225 0.479581 0.424515 0.461701 0.425366 0.508672 0.48424 0.486181 0.48599 0.475594 0.4602 0.496218 0.458665 0.508462 0.493862 0.479635 0.525527 0.47619 0.514419 0.486851 0.497628 0.45302 0.553052 0.448998 0.543457 0.47619 0.514419 0.479635 0.525527 0.473824 0.505218 0.468522 0.488559 0.486181 0.48599 0.486851 0.497628 0.446333 0.382772 0.461701 0.425366 0.448785 0.427285 0.438196 0.378166 0.460308 0.462689 0.475594 0.4602 0.486181 0.48599 0.468522 0.488559 0.292639 0.683585 0.324155 0.641084 0.327737 0.667516 0.294447 0.703072 0.269682 0.436282 0.30434 0.442464 0.310293 0.506098 0.27666 0.511446 0.448998 0.543457 0.442622 0.530075 0.473824 0.505218 0.47619 0.514419 0.320589 0.585398 0.433835 0.505282 0.442622 0.530075 0.324155 0.641084 0.327737 0.667516 0.324155 0.641084 0.442622 0.530075 0.448998 0.543457 0.45302 0.553052 0.328923 0.680817 0.327737 0.667516 0.448998 0.543457 0.308662 0.388235 0.30434 0.442464 0.269682 0.436282 0.265513 0.391924 0.450488 0.351325 0.446333 0.333343 0.457033 0.337889 0.496218 0.257449 0.479581 0.2916 0.461701 0.290748 0.475594 0.255914 0.486851 0.218486 0.508462 0.222252 0.508672 0.231875 0.486181 0.230125 0.413596 0.336526 0.413364 0.354846 0.308725 0.346209 0.308662 0.327879 0.424914 0.244954 0.416162 0.286326 0.30434 0.27365 0.310293 0.210017 0.442622 0.18604 0.473824 0.210897 0.468522 0.227556 0.433835 0.210833 0.475594 0.255914 0.461701 0.290748 0.448785 0.28883 0.460308 0.253426 0.320589 0.130717 0.433835 0.210833 0.424914 0.244954 0.310293 0.210017 0.460308 0.253426 0.448785 0.28883 0.416162 0.286326 0.424914 0.244954 0.473824 0.210897 0.47619 0.201695 0.486851 0.218486 0.433835 0.210833 0.468522 0.227556 0.460308 0.253426 0.424914 0.244954 0.320589 0.130717 0.278254 0.116212 0.291603 0.03253 0.324155 0.07503 0.294447 0.013043 0.295486 0.001849 0.328923 0.035298 0.327737 0.048598 0.310293 0.210017 0.267467 0.184555 0.278254 0.116212 0.320589 0.130717 0.308662 0.327879 0.308725 0.346209 0.263341 0.347306 0.264478 0.324191 0.308662 0.327879 0.30434 0.27365 0.416162 0.286326 0.413596 0.336526 0.413596 0.336526 0.43722 0.335383 0.445034 0.35591 0.413364 0.354846 0.413596 0.336526 0.416162 0.286326 0.448785 0.28883 0.43722 0.335383 0.446333 0.333343 0.450488 0.351325 0.445034 0.35591 0.43722 0.335383 0.446333 0.333343 0.461701 0.290748 0.479581 0.2916 0.457033 0.337889 0.508672 0.231875 0.496218 0.257449 0.475594 0.255914 0.486181 0.230125 0.508462 0.222252 0.486851 0.218486 0.47619 0.201695 0.479635 0.190587 0.45302 0.163062 0.479635 0.190587 0.47619 0.201695 0.448998 0.172657 0.473824 0.210897 0.486851 0.218486 0.486181 0.230125 0.468522 0.227556 0.43722 0.335383 0.448785 0.28883 0.461701 0.290748 0.446333 0.333343 0.460308 0.253426 0.468522 0.227556 0.486181 0.230125 0.475594 0.255914 0.291603 0.03253 0.294447 0.013043 0.327737 0.048598 0.324155 0.07503 0.263065 0.279833 0.267467 0.184555 0.310293 0.210017 0.30434 0.27365 0.448998 0.172657 0.47619 0.201695 0.473824 0.210897 0.442622 0.18604 0.320589 0.130717 0.324155 0.07503 0.442622 0.18604 0.433835 0.210833 0.327737 0.048598 0.448998 0.172657 0.442622 0.18604 0.324155 0.07503 0.45302 0.163062 0.448998 0.172657 0.327737 0.048598 0.328923 0.035298 0.308662 0.327879 0.264478 0.324191 0.263065 0.279833 0.30434 0.27365 0.450488 0.36479 0.445034 0.360204 0.445034 0.360204 0.450488 0.36479 0.457645 0.377032 0.450488 0.36479 0.450488 0.36479 0.457645 0.377032 0.508672 0.48424 0.496218 0.458665 0.496218 0.458665 0.508672 0.48424 0.45302 0.553052 0.479635 0.525527 0.479635 0.525527 0.45302 0.553052 0.413364 0.361269 0.308725 0.369906 0.308725 0.369906 0.413364 0.361269 0.508462 0.493862 0.508672 0.48424 0.508672 0.48424 0.508462 0.493862 0.308725 0.369906 0.263341 0.368809 0.263341 0.368809 0.308725 0.369906 0.445034 0.360204 0.413364 0.361269 0.413364 0.361269 0.445034 0.360204 0.479581 0.424515 0.457645 0.377032 0.457645 0.377032 0.479581 0.424515 0.496218 0.458665 0.479581 0.424515 0.479581 0.424515 0.496218 0.458665 0.479635 0.525527 0.508462 0.493862 0.508462 0.493862 0.479635 0.525527 0.295486 0.714266 0.328923 0.680817 0.328923 0.680817 0.295486 0.714266 0.328923 0.680817 0.45302 0.553052 0.45302 0.553052 0.328923 0.680817 0.413596 0.379588 0.438196 0.378166 0.448785 0.427285 0.416162 0.429789 0.446333 0.382772 0.438196 0.378166 0.445034 0.360204 0.450488 0.36479 0.155911 0.965745 0.153404 0.965745 0.153404 0.916881 0.155911 0.916881 0.153404 0.965745 0.150897 0.965744 0.150897 0.916881 0.153404 0.916881 0.150897 0.965744 0.14839 0.965744 0.148391 0.916881 0.150897 0.916881 0.14839 0.965744 0.145884 0.965744 0.145884 0.916881 0.148391 0.916881 0.145884 0.965744 0.143377 0.965744 0.143377 0.916881 0.145884 0.916881 0.143377 0.965744 0.14087 0.965743 0.14087 0.916881 0.143377 0.916881 0.14087 0.965743 0.138363 0.965743 0.138364 0.91688 0.14087 0.916881 0.138363 0.965743 0.135857 0.965743 0.135857 0.91688 0.138364 0.91688 0.135857 0.965743 0.13335 0.965742 0.13335 0.91688 0.135857 0.91688 0.13335 0.965742 0.130843 0.965742 0.130844 0.91688 0.13335 0.91688 0.130843 0.965742 0.128336 0.965742 0.128337 0.916879 0.130844 0.91688 0.128336 0.965742 0.12583 0.965741 0.12583 0.916879 0.128337 0.916879 0.12583 0.965741 0.123323 0.965741 0.123324 0.916879 0.12583 0.916879 0.123323 0.965741 0.120816 0.96574 0.120817 0.916878 0.123324 0.916879 0.120816 0.96574 0.11831 0.96574 0.11831 0.916878 0.120817 0.916878 0.11831 0.96574 0.115803 0.96574 0.115804 0.916878 0.11831 0.916878 0.115803 0.96574 0.113296 0.965739 0.113297 0.916878 0.115804 0.916878 0.113296 0.965739 0.11079 0.965739 0.11079 0.916877 0.113297 0.916878 0.11079 0.965739 0.108283 0.965739 0.108283 0.916877 0.11079 0.916877 0.108283 0.965739 0.105776 0.965739 0.105777 0.916877 0.108283 0.916877 0.105776 0.965739 0.10327 0.965738 0.10327 0.916877 0.105777 0.916877 0.10327 0.965738 0.100763 0.965738 0.100763 0.916877 0.10327 0.916877 0.100763 0.965738 0.098257 0.965738 0.098257 0.916877 0.100763 0.916877 0.098257 0.965738 0.09575 0.965738 0.09575 0.916877 0.098257 0.916877 0.09575 0.965738 0.093243 0.965738 0.093243 0.916877 0.09575 0.916877 0.093243 0.965738 0.090737 0.965739 0.090736 0.916877 0.093243 0.916877 0.090737 0.965739 0.08823 0.965739 0.08823 0.916877 0.090736 0.916877 0.08823 0.965739 0.085723 0.965739 0.085723 0.916877 0.08823 0.916877 0.085723 0.965739 0.083217 0.965739 0.083216 0.916878 0.085723 0.916877 0.083217 0.965739 0.08071 0.96574 0.08071 0.916878 0.083216 0.916878 0.08071 0.96574 0.078203 0.96574 0.078203 0.916878 0.08071 0.916878 0.078203 0.96574 0.075697 0.96574 0.075696 0.916878 0.078203 0.916878 0.075697 0.96574 0.07319 0.965741 0.07319 0.916879 0.075696 0.916878 0.07319 0.965741 0.070683 0.965741 0.070683 0.916879 0.07319 0.916879 0.070683 0.965741 0.068177 0.965742 0.068176 0.916879 0.070683 0.916879 0.068177 0.965742 0.06567 0.965742 0.065669 0.91688 0.068176 0.916879 0.185992 0.965742 0.183485 0.965742 0.183484 0.91688 0.185991 0.91688 0.183485 0.965742 0.180978 0.965743 0.180978 0.91688 0.183484 0.91688 0.180978 0.965743 0.178471 0.965743 0.178471 0.91688 0.180978 0.91688 0.178471 0.965743 0.175965 0.965743 0.175964 0.916881 0.178471 0.91688 0.175965 0.965743 0.173458 0.965744 0.173457 0.916881 0.175964 0.916881 0.173458 0.965744 0.170951 0.965744 0.170951 0.916881 0.173457 0.916881 0.170951 0.965744 0.168444 0.965744 0.168444 0.916881 0.170951 0.916881 0.168444 0.965744 0.165938 0.965744 0.165937 0.916881 0.168444 0.916881 0.165938 0.965744 0.163431 0.965745 0.163431 0.916881 0.165937 0.916881 0.163431 0.965745 0.160924 0.965745 0.160924 0.916882 0.163431 0.916881 0.160924 0.965745 0.158417 0.965745 0.158417 0.916882 0.160924 0.916882 0.158417 0.965745 0.155911 0.965745 0.155911 0.916881 0.158417 0.916882 0.169359 0.86949 0.165155 0.86949 0.165155 0.913571 0.169358 0.913571 0.165155 0.86949 0.160952 0.86949 0.160951 0.913571 0.165155 0.913571 0.160952 0.86949 0.156748 0.86949 0.156747 0.913571 0.160951 0.913571 0.156748 0.86949 0.152545 0.86949 0.152543 0.91357 0.156747 0.913571 0.152545 0.86949 0.148341 0.86949 0.14834 0.91357 0.152543 0.91357 0.148341 0.86949 0.144138 0.869489 0.144136 0.91357 0.14834 0.91357 0.144138 0.869489 0.139934 0.869489 0.139932 0.91357 0.144136 0.91357 0.139934 0.869489 0.135731 0.869489 0.135729 0.91357 0.139932 0.91357 0.135731 0.869489 0.131528 0.869489 0.131525 0.913569 0.135729 0.91357 0.131528 0.869489 0.127324 0.869488 0.127322 0.913569 0.131525 0.913569 0.127324 0.869488 0.123121 0.869488 0.123118 0.913569 0.127322 0.913569 0.123121 0.869488 0.118917 0.869488 0.118915 0.913569 0.123118 0.913569 0.118917 0.869488 0.114714 0.869488 0.114711 0.913568 0.118915 0.913569 0.114714 0.869488 0.11051 0.869487 0.110508 0.913568 0.114711 0.913568 0.11051 0.869487 0.106307 0.869487 0.106305 0.913568 0.110508 0.913568 0.106307 0.869487 0.102103 0.869487 0.102102 0.913568 0.106305 0.913568 0.102103 0.869487 0.0979 0.869487 0.097898 0.913567 0.102102 0.913568 0.0979 0.869487 0.093697 0.869486 0.093695 0.913567 0.097898 0.913567 0.093697 0.869486 0.089493 0.869486 0.089492 0.913567 0.093695 0.913567 0.089493 0.869486 0.08529 0.869486 0.085289 0.913567 0.089492 0.913567 0.08529 0.869486 0.081086 0.869486 0.081085 0.913567 0.085289 0.913567 0.081086 0.869486 0.076883 0.869486 0.076882 0.913567 0.081085 0.913567 0.076883 0.869486 0.072679 0.869486 0.072679 0.913567 0.076882 0.913567 0.072679 0.869486 0.068476 0.869486 0.068476 0.913567 0.072679 0.913567 0.068476 0.869486 0.064272 0.869486 0.064273 0.913567 0.068476 0.913567 0.064272 0.869486 0.060069 0.869486 0.06007 0.913567 0.064273 0.913567 0.060069 0.869486 0.055865 0.869486 0.055866 0.913567 0.06007 0.913567 0.055865 0.869486 0.051662 0.869486 0.051663 0.913567 0.055866 0.913567 0.051662 0.869486 0.047458 0.869487 0.04746 0.913567 0.051663 0.913567 0.047458 0.869487 0.043255 0.869487 0.043257 0.913568 0.04746 0.913567 0.043255 0.869487 0.039051 0.869487 0.039054 0.913568 0.043257 0.913568 0.039051 0.869487 0.034848 0.869487 0.03485 0.913568 0.039054 0.913568 0.034848 0.869487 0.030645 0.869488 0.030647 0.913568 0.03485 0.913568 0.030645 0.869488 0.026441 0.869488 0.026443 0.913569 0.030647 0.913568 0.026441 0.869488 0.022238 0.869488 0.02224 0.913569 0.026443 0.913569 0.022238 0.869488 0.018034 0.869488 0.018037 0.913569 0.02224 0.913569 0.2198 0.869488 0.215597 0.869489 0.215599 0.913569 0.219802 0.913569 0.215597 0.869489 0.211393 0.869489 0.211395 0.91357 0.215599 0.913569 0.211393 0.869489 0.20719 0.869489 0.207192 0.91357 0.211395 0.91357 0.20719 0.869489 0.202986 0.869489 0.202988 0.91357 0.207192 0.91357 0.202986 0.869489 0.198783 0.86949 0.198784 0.91357 0.202988 0.91357 0.198783 0.86949 0.194579 0.86949 0.194581 0.91357 0.198784 0.91357 0.194579 0.86949 0.190376 0.86949 0.190377 0.913571 0.194581 0.91357 0.190376 0.86949 0.186172 0.86949 0.186173 0.913571 0.190377 0.913571 0.186172 0.86949 0.181969 0.86949 0.18197 0.913571 0.186173 0.913571 0.181969 0.86949 0.177765 0.86949 0.177766 0.913571 0.18197 0.913571 0.177765 0.86949 0.173562 0.86949 0.173562 0.913571 0.177766 0.913571 0.173562 0.86949 0.169359 0.86949 0.169358 0.913571 0.173562 0.913571 0.368495 0.884579 0.367696 0.888595 0.337456 0.880542 0.367696 0.888595 0.36638 0.892473 0.337456 0.880542 0.36638 0.892473 0.364568 0.896146 0.337456 0.880542 0.364568 0.896146 0.362293 0.899551 0.337456 0.880542 0.362293 0.899551 0.359593 0.90263 0.337456 0.880542 0.359593 0.90263 0.356514 0.90533 0.337456 0.880542 0.356514 0.90533 0.353109 0.907605 0.337456 0.880542 0.353109 0.907605 0.349436 0.909416 0.337456 0.880542 0.349436 0.909416 0.345558 0.910733 0.337456 0.880542 0.345558 0.910733 0.341542 0.911532 0.337456 0.880542 0.341542 0.911532 0.337456 0.911799 0.337456 0.880542 0.337456 0.911799 0.333369 0.911532 0.337456 0.880542 0.333369 0.911532 0.329353 0.910733 0.337456 0.880542 0.329353 0.910733 0.325475 0.909416 0.337456 0.880542 0.325475 0.909416 0.321802 0.907605 0.337456 0.880542 0.321802 0.907605 0.318397 0.90533 0.337456 0.880542 0.318397 0.90533 0.315318 0.90263 0.337456 0.880542 0.315318 0.90263 0.312618 0.899551 0.337456 0.880542 0.312618 0.899551 0.310343 0.896146 0.337456 0.880542 0.310343 0.896146 0.308532 0.892473 0.337456 0.880542 0.308532 0.892473 0.307215 0.888595 0.337456 0.880542 0.307215 0.888595 0.306416 0.884579 0.337456 0.880542 0.306416 0.884579 0.306149 0.880492 0.337456 0.880542 0.306149 0.880492 0.306416 0.876406 0.337456 0.880542 0.306416 0.876406 0.307215 0.87239 0.337456 0.880542 0.307215 0.87239 0.308532 0.868512 0.337456 0.880542 0.308532 0.868512 0.310343 0.864839 0.337456 0.880542 0.310343 0.864839 0.312618 0.861434 0.337456 0.880542 0.312618 0.861434 0.315318 0.858355 0.337456 0.880542 0.315318 0.858355 0.318397 0.855655 0.337456 0.880542 0.318397 0.855655 0.321802 0.85338 0.337456 0.880542 0.321802 0.85338 0.325475 0.851569 0.337456 0.880542 0.325475 0.851569 0.329353 0.850252 0.337456 0.880542 0.329353 0.850252 0.333369 0.849453 0.337456 0.880542 0.333369 0.849453 0.337456 0.849185 0.337456 0.880542 0.337456 0.849185 0.341542 0.849453 0.337456 0.880542 0.341542 0.849453 0.345559 0.850252 0.337456 0.880542 0.345559 0.850252 0.349436 0.851569 0.337456 0.880542 0.349436 0.851569 0.353109 0.85338 0.337456 0.880542 0.353109 0.85338 0.356514 0.855655 0.337456 0.880542 0.356514 0.855655 0.359593 0.858355 0.337456 0.880542 0.359593 0.858355 0.362293 0.861434 0.337456 0.880542 0.362293 0.861434 0.364568 0.864839 0.337456 0.880542 0.364568 0.864839 0.36638 0.868512 0.337456 0.880542 0.36638 0.868512 0.367696 0.87239 0.337456 0.880542 0.367696 0.87239 0.368495 0.876406 0.337456 0.880542 0.368495 0.876406 0.368763 0.880492 0.337456 0.880542 0.368763 0.880492 0.368495 0.884579 0.337456 0.880542 0.155911 0.965745 0.153404 0.965745 0.153404 0.916881 0.155911 0.916881 0.153404 0.965745 0.150897 0.965744 0.150897 0.916881 0.153404 0.916881 0.150897 0.965744 0.14839 0.965744 0.148391 0.916881 0.150897 0.916881 0.14839 0.965744 0.145884 0.965744 0.145884 0.916881 0.148391 0.916881 0.145884 0.965744 0.143377 0.965744 0.143377 0.916881 0.145884 0.916881 0.143377 0.965744 0.14087 0.965743 0.14087 0.916881 0.143377 0.916881 0.14087 0.965743 0.138363 0.965743 0.138364 0.91688 0.14087 0.916881 0.138363 0.965743 0.135857 0.965743 0.135857 0.91688 0.138364 0.91688 0.135857 0.965743 0.13335 0.965742 0.13335 0.91688 0.135857 0.91688 0.13335 0.965742 0.130843 0.965742 0.130844 0.91688 0.13335 0.91688 0.130843 0.965742 0.128336 0.965742 0.128337 0.916879 0.130844 0.91688 0.128336 0.965742 0.12583 0.965741 0.12583 0.916879 0.128337 0.916879 0.12583 0.965741 0.123323 0.965741 0.123324 0.916879 0.12583 0.916879 0.123323 0.965741 0.120816 0.96574 0.120817 0.916878 0.123324 0.916879 0.120816 0.96574 0.11831 0.96574 0.11831 0.916878 0.120817 0.916878 0.11831 0.96574 0.115803 0.96574 0.115804 0.916878 0.11831 0.916878 0.115803 0.96574 0.113296 0.965739 0.113297 0.916878 0.115804 0.916878 0.113296 0.965739 0.11079 0.965739 0.11079 0.916877 0.113297 0.916878 0.11079 0.965739 0.108283 0.965739 0.108283 0.916877 0.11079 0.916877 0.108283 0.965739 0.105776 0.965739 0.105777 0.916877 0.108283 0.916877 0.105776 0.965739 0.10327 0.965738 0.10327 0.916877 0.105777 0.916877 0.10327 0.965738 0.100763 0.965738 0.100763 0.916877 0.10327 0.916877 0.100763 0.965738 0.098257 0.965738 0.098257 0.916877 0.100763 0.916877 0.098257 0.965738 0.09575 0.965738 0.09575 0.916877 0.098257 0.916877 0.09575 0.965738 0.093243 0.965738 0.093243 0.916877 0.09575 0.916877 0.093243 0.965738 0.090737 0.965739 0.090736 0.916877 0.093243 0.916877 0.090737 0.965739 0.08823 0.965739 0.08823 0.916877 0.090736 0.916877 0.08823 0.965739 0.085723 0.965739 0.085723 0.916877 0.08823 0.916877 0.085723 0.965739 0.083217 0.965739 0.083216 0.916878 0.085723 0.916877 0.083217 0.965739 0.08071 0.96574 0.08071 0.916878 0.083216 0.916878 0.08071 0.96574 0.078203 0.96574 0.078203 0.916878 0.08071 0.916878 0.078203 0.96574 0.075697 0.96574 0.075696 0.916878 0.078203 0.916878 0.075697 0.96574 0.07319 0.965741 0.07319 0.916879 0.075696 0.916878 0.07319 0.965741 0.070683 0.965741 0.070683 0.916879 0.07319 0.916879 0.070683 0.965741 0.068177 0.965742 0.068176 0.916879 0.070683 0.916879 0.068177 0.965742 0.06567 0.965742 0.065669 0.91688 0.068176 0.916879 0.185992 0.965742 0.183485 0.965742 0.183484 0.91688 0.185991 0.91688 0.183485 0.965742 0.180978 0.965743 0.180978 0.91688 0.183484 0.91688 0.180978 0.965743 0.178471 0.965743 0.178471 0.91688 0.180978 0.91688 0.178471 0.965743 0.175965 0.965743 0.175964 0.916881 0.178471 0.91688 0.175965 0.965743 0.173458 0.965744 0.173457 0.916881 0.175964 0.916881 0.173458 0.965744 0.170951 0.965744 0.170951 0.916881 0.173457 0.916881 0.170951 0.965744 0.168444 0.965744 0.168444 0.916881 0.170951 0.916881 0.168444 0.965744 0.165938 0.965744 0.165937 0.916881 0.168444 0.916881 0.165938 0.965744 0.163431 0.965745 0.163431 0.916881 0.165937 0.916881 0.163431 0.965745 0.160924 0.965745 0.160924 0.916882 0.163431 0.916881 0.160924 0.965745 0.158417 0.965745 0.158417 0.916882 0.160924 0.916882 0.158417 0.965745 0.155911 0.965745 0.155911 0.916881 0.158417 0.916882 0.527659 0.86949 0.523455 0.86949 0.523455 0.913571 0.527658 0.913571 0.523455 0.86949 0.519252 0.86949 0.519251 0.913571 0.523455 0.913571 0.519252 0.86949 0.515048 0.86949 0.515047 0.913571 0.519251 0.913571 0.515048 0.86949 0.510845 0.86949 0.510843 0.91357 0.515047 0.913571 0.510845 0.86949 0.506642 0.86949 0.50664 0.91357 0.510843 0.91357 0.506642 0.86949 0.502438 0.869489 0.502436 0.91357 0.50664 0.91357 0.502438 0.869489 0.498235 0.869489 0.498233 0.91357 0.502436 0.91357 0.498235 0.869489 0.494031 0.869489 0.494029 0.91357 0.498233 0.91357 0.494031 0.869489 0.489828 0.869489 0.489825 0.913569 0.494029 0.91357 0.489828 0.869489 0.485624 0.869488 0.485622 0.913569 0.489825 0.913569 0.485624 0.869488 0.481421 0.869488 0.481418 0.913569 0.485622 0.913569 0.481421 0.869488 0.477217 0.869488 0.477215 0.913569 0.481418 0.913569 0.477217 0.869488 0.473014 0.869488 0.473012 0.913568 0.477215 0.913569 0.473014 0.869488 0.46881 0.869487 0.468808 0.913568 0.473012 0.913568 0.46881 0.869487 0.464607 0.869487 0.464605 0.913568 0.468808 0.913568 0.464607 0.869487 0.460404 0.869487 0.460402 0.913568 0.464605 0.913568 0.460404 0.869487 0.4562 0.869487 0.456198 0.913567 0.460402 0.913568 0.4562 0.869487 0.451997 0.869486 0.451995 0.913567 0.456198 0.913567 0.451997 0.869486 0.447793 0.869486 0.447792 0.913567 0.451995 0.913567 0.447793 0.869486 0.44359 0.869486 0.443589 0.913567 0.447792 0.913567 0.44359 0.869486 0.439386 0.869486 0.439386 0.913567 0.443589 0.913567 0.439386 0.869486 0.435183 0.869486 0.435182 0.913567 0.439386 0.913567 0.435183 0.869486 0.430979 0.869486 0.430979 0.913567 0.435182 0.913567 0.430979 0.869486 0.426776 0.869486 0.426776 0.913567 0.430979 0.913567 0.426776 0.869486 0.422572 0.869486 0.422573 0.913567 0.426776 0.913567 0.422572 0.869486 0.418369 0.869486 0.41837 0.913567 0.422573 0.913567 0.418369 0.869486 0.414165 0.869486 0.414167 0.913567 0.41837 0.913567 0.414165 0.869486 0.409962 0.869486 0.409963 0.913567 0.414167 0.913567 0.409962 0.869486 0.405758 0.869487 0.40576 0.913567 0.409963 0.913567 0.405758 0.869487 0.401555 0.869487 0.401557 0.913568 0.40576 0.913567 0.401555 0.869487 0.397352 0.869487 0.397354 0.913568 0.401557 0.913568 0.397352 0.869487 0.393148 0.869487 0.39315 0.913568 0.397354 0.913568 0.393148 0.869487 0.388945 0.869488 0.388947 0.913568 0.39315 0.913568 0.388945 0.869488 0.384741 0.869488 0.384744 0.913569 0.388947 0.913568 0.384741 0.869488 0.380538 0.869488 0.38054 0.913569 0.384744 0.913569 0.380538 0.869488 0.376334 0.869488 0.376337 0.913569 0.38054 0.913569 0.5781 0.869488 0.573897 0.869489 0.573899 0.913569 0.578102 0.913569 0.573897 0.869489 0.569693 0.869489 0.569695 0.91357 0.573899 0.913569 0.569693 0.869489 0.56549 0.869489 0.565492 0.91357 0.569695 0.91357 0.56549 0.869489 0.561286 0.869489 0.561288 0.91357 0.565492 0.91357 0.561286 0.869489 0.557083 0.86949 0.557085 0.91357 0.561288 0.91357 0.557083 0.86949 0.552879 0.86949 0.552881 0.91357 0.557085 0.91357 0.552879 0.86949 0.548676 0.86949 0.548677 0.913571 0.552881 0.91357 0.548676 0.86949 0.544472 0.86949 0.544473 0.913571 0.548677 0.913571 0.544472 0.86949 0.540269 0.86949 0.54027 0.913571 0.544473 0.913571 0.540269 0.86949 0.536066 0.86949 0.536066 0.913571 0.54027 0.913571 0.536066 0.86949 0.531862 0.86949 0.531862 0.913571 0.536066 0.913571 0.531862 0.86949 0.527659 0.86949 0.527658 0.913571 0.531862 0.913571 0.289167 0.884579 0.288368 0.888595 0.258127 0.880542 0.288368 0.888595 0.287051 0.892473 0.258127 0.880542 0.287051 0.892473 0.28524 0.896146 0.258127 0.880542 0.28524 0.896146 0.282965 0.899551 0.258127 0.880542 0.282965 0.899551 0.280265 0.90263 0.258127 0.880542 0.280265 0.90263 0.277186 0.90533 0.258127 0.880542 0.277186 0.90533 0.273781 0.907605 0.258127 0.880542 0.273781 0.907605 0.270108 0.909416 0.258127 0.880542 0.270108 0.909416 0.26623 0.910733 0.258127 0.880542 0.26623 0.910733 0.262214 0.911532 0.258127 0.880542 0.262214 0.911532 0.258127 0.911799 0.258127 0.880542 0.258127 0.911799 0.254041 0.911532 0.258127 0.880542 0.254041 0.911532 0.250024 0.910733 0.258127 0.880542 0.250024 0.910733 0.246147 0.909416 0.258127 0.880542 0.246147 0.909416 0.242474 0.907605 0.258127 0.880542 0.242474 0.907605 0.239069 0.90533 0.258127 0.880542 0.239069 0.90533 0.23599 0.90263 0.258127 0.880542 0.23599 0.90263 0.23329 0.899551 0.258127 0.880542 0.23329 0.899551 0.231015 0.896146 0.258127 0.880542 0.231015 0.896146 0.229203 0.892473 0.258127 0.880542 0.229203 0.892473 0.227887 0.888595 0.258127 0.880542 0.227887 0.888595 0.227088 0.884579 0.258127 0.880542 0.227088 0.884579 0.22682 0.880492 0.258127 0.880542 0.22682 0.880492 0.227088 0.876406 0.258127 0.880542 0.227088 0.876406 0.227887 0.87239 0.258127 0.880542 0.227887 0.87239 0.229203 0.868512 0.258127 0.880542 0.229203 0.868512 0.231015 0.864839 0.258127 0.880542 0.231015 0.864839 0.23329 0.861434 0.258127 0.880542 0.23329 0.861434 0.23599 0.858355 0.258127 0.880542 0.23599 0.858355 0.239069 0.855655 0.258127 0.880542 0.239069 0.855655 0.242474 0.85338 0.258127 0.880542 0.242474 0.85338 0.246147 0.851569 0.258127 0.880542 0.246147 0.851569 0.250024 0.850252 0.258127 0.880542 0.250024 0.850252 0.254041 0.849453 0.258127 0.880542 0.254041 0.849453 0.258127 0.849185 0.258127 0.880542 0.258127 0.849185 0.262214 0.849453 0.258127 0.880542 0.262214 0.849453 0.26623 0.850252 0.258127 0.880542 0.26623 0.850252 0.270108 0.851569 0.258127 0.880542 0.270108 0.851569 0.273781 0.85338 0.258127 0.880542 0.273781 0.85338 0.277186 0.855655 0.258127 0.880542 0.277186 0.855655 0.280265 0.858355 0.258127 0.880542 0.280265 0.858355 0.282965 0.861434 0.258127 0.880542 0.282965 0.861434 0.28524 0.864839 0.258127 0.880542 0.28524 0.864839 0.287051 0.868512 0.258127 0.880542 0.287051 0.868512 0.288368 0.87239 0.258127 0.880542 0.288368 0.87239 0.289167 0.876406 0.258127 0.880542 0.289167 0.876406 0.289434 0.880492 0.258127 0.880542 0.289434 0.880492 0.289167 0.884579 0.258127 0.880542 0.518938 0.583037 0.521289 0.590731 0.513762 0.593069 0.490926 0.581374 0.457093 0.692527 0.403053 0.692527 0.468529 0.570408 0.520838 0.596345 0.513107 0.692527 0.486706 0.692527 0.513762 0.593069 0.468529 0.570408 0.469023 0.552405 0.472789 0.551668 0.521289 0.590731 0.520838 0.596337 0.513762 0.593069 0.468529 0.570408 0.460376 0.567783 0.469023 0.552405 0.468529 0.570408 0.472789 0.551668 0.496334 0.567673 0.490926 0.581374 0.490926 0.581374 0.496334 0.567673 0.518938 0.583037 0.513762 0.593069 0.468529 0.570408 0.403053 0.692527 0.390228 0.692527 0.460376 0.567783 0.490926 0.581374 0.513762 0.593069 0.486706 0.692527 0.457093 0.692527 0.460246 0.835055 0.389671 0.710226 0.390231 0.710144 0.460442 0.835 0.460246 0.835055 0.460442 0.835 0.469026 0.850257 0.468849 0.850334 0.472943 0.851262 0.472789 0.850999 0.496334 0.834994 0.496522 0.835363 0.521751 0.811936 0.521289 0.811936 0.52083 0.806226 0.521229 0.806226 0.521229 0.806226 0.52083 0.806226 0.513124 0.710339 0.513564 0.710339 0.518938 0.819629 0.513762 0.809597 0.521289 0.811936 0.490926 0.821292 0.457093 0.710139 0.486706 0.710139 0.513762 0.809597 0.52083 0.806226 0.513762 0.809597 0.486706 0.710139 0.513124 0.710339 0.490926 0.821292 0.468529 0.832258 0.403053 0.710139 0.457093 0.710139 0.468529 0.832258 0.472782 0.850998 0.469026 0.850257 0.521289 0.811936 0.513762 0.809597 0.52083 0.806226 0.468529 0.832258 0.469026 0.850257 0.460442 0.835 0.468529 0.832258 0.490926 0.821292 0.496334 0.834994 0.472782 0.850998 0.490926 0.821292 0.513762 0.809597 0.518938 0.819629 0.496334 0.834994 0.468529 0.832258 0.460442 0.835 0.390231 0.710144 0.403053 0.710139 0.519195 0.819972 0.496522 0.835363 0.496334 0.834994 0.518938 0.819629 0.472777 0.851236 0.469033 0.850495 0.469026 0.850257 0.472782 0.850998 0.521775 0.812149 0.519462 0.819894 0.518938 0.819629 0.521289 0.811936 0.53757 0.583037 0.542746 0.593069 0.535219 0.590731 0.565582 0.581374 0.587979 0.570408 0.653455 0.692527 0.599415 0.692527 0.53567 0.596345 0.542746 0.593069 0.569802 0.692527 0.543401 0.692527 0.587979 0.570408 0.583719 0.551668 0.587485 0.552405 0.535219 0.590731 0.542746 0.593069 0.53567 0.596337 0.587979 0.570408 0.587485 0.552405 0.596132 0.567783 0.587979 0.570408 0.565582 0.581374 0.560173 0.567673 0.583719 0.551668 0.565582 0.581374 0.542746 0.593069 0.53757 0.583037 0.560173 0.567673 0.587979 0.570408 0.596132 0.567783 0.66628 0.692527 0.653455 0.692527 0.565582 0.581374 0.599415 0.692527 0.569802 0.692527 0.542746 0.593069 0.596262 0.835055 0.596066 0.835 0.666277 0.710144 0.666837 0.710226 0.596262 0.835055 0.587659 0.850334 0.587482 0.850257 0.596066 0.835 0.583565 0.851262 0.559986 0.835363 0.560173 0.834994 0.583719 0.850999 0.534757 0.811936 0.535279 0.806226 0.535678 0.806226 0.535219 0.811936 0.535279 0.806226 0.542943 0.710339 0.543384 0.710339 0.535678 0.806226 0.53757 0.819629 0.535219 0.811936 0.542746 0.809597 0.565582 0.821292 0.542746 0.809597 0.569802 0.710139 0.599415 0.710139 0.535678 0.806226 0.543384 0.710339 0.569802 0.710139 0.542746 0.809597 0.565582 0.821292 0.599415 0.710139 0.653455 0.710139 0.587979 0.832258 0.587979 0.832258 0.587482 0.850257 0.583725 0.850998 0.535219 0.811936 0.535678 0.806226 0.542746 0.809597 0.587979 0.832258 0.596066 0.835 0.587482 0.850257 0.587979 0.832258 0.583725 0.850998 0.560173 0.834994 0.565582 0.821292 0.565582 0.821292 0.560173 0.834994 0.53757 0.819629 0.542746 0.809597 0.587979 0.832258 0.653455 0.710139 0.666277 0.710144 0.596066 0.835 0.537313 0.819972 0.53757 0.819629 0.560173 0.834994 0.559986 0.835363 0.583731 0.851236 0.583725 0.850998 0.587482 0.850257 0.587475 0.850495 0.534733 0.812149 0.535219 0.811936 0.53757 0.819629 0.537046 0.819894 0.657379 0.417338 0.663642 0.417338 0.663642 0.425952 0.657379 0.425952 0.657379 0.417338 0.663642 0.417338 0.663642 0.425952 0.657379 0.425952 - - - - - - - - - - - - - - -

0 1 2 0 2 3 4 5 6 4 6 7 8 9 10 8 10 11 12 13 14 12 14 15 16 17 18 16 18 19 20 21 22 20 22 23 24 25 26 24 26 27 28 29 30 28 30 31 32 33 34 32 34 35 36 37 38 36 38 39 40 41 42 40 42 43 44 45 46 44 46 47 48 49 50 48 50 51 52 53 54 52 54 55 56 57 58 56 58 59 60 61 62 60 62 63 64 65 66 64 66 67 68 69 70 68 70 71 72 73 74 72 74 75 76 77 78 76 78 79 80 81 82 80 82 83 84 85 86 84 86 87 88 89 90 88 90 91 92 93 94 92 94 95 96 97 98 96 98 99 100 101 102 100 102 103 104 105 106 104 106 107 108 109 110 108 110 111 112 113 114 112 114 115 116 117 118 116 118 119 120 121 122 120 122 123 124 125 126 124 126 127 128 129 130 128 130 131 132 133 134 132 134 135 136 137 138 136 138 139 140 141 142 140 142 143 144 145 146 144 146 147 148 149 150 148 150 151 152 153 154 152 154 155 156 157 158 156 158 159 160 161 162 160 162 163 164 165 166 164 166 167 168 169 170 168 170 171 172 173 174 172 174 175 176 177 178 176 178 179 180 181 182 180 182 183 184 185 186 184 186 187 188 189 190 188 190 191 192 193 194 192 194 195 196 197 198 196 198 199 200 201 202 200 202 203 204 205 206 204 206 207 208 209 210 208 210 211 212 213 214 212 214 215 216 217 218 216 218 219 220 221 222 220 222 223 224 225 226 224 226 227 228 229 230 228 230 231 232 233 234 232 234 235 236 237 238 236 238 239 240 241 242 240 242 243 244 245 246 244 246 247 248 249 250 248 250 251 252 253 254 252 254 255 256 257 258 256 258 259 260 261 262 260 262 263 264 265 266 264 266 267 268 269 270 268 270 271 272 273 274 272 274 275 276 277 278 276 278 279 280 281 282 280 282 283 284 285 286 284 286 287 288 289 290 288 290 291 292 293 294 292 294 295 296 297 298 296 298 299 300 301 302 300 302 303 304 305 306 304 306 307 308 309 310 308 310 311 312 313 314 312 314 315 316 317 318 316 318 319 320 321 322 323 324 325 323 325 326 327 328 329 327 329 330 331 332 333 331 333 334 335 336 337 335 337 338 339 340 341 339 341 342 343 344 345 343 345 346 347 348 349 347 349 350 351 352 353 351 353 354 355 356 357 355 357 358 359 360 361 359 361 362 363 364 365 363 365 366 367 368 369 367 369 370 371 372 373 371 373 374 375 376 377 375 377 378 379 380 381 379 381 382 383 384 385 383 385 386 387 388 389 387 389 390 391 392 393 391 393 394 395 396 397 395 397 398 399 400 401 399 401 402 403 404 405 403 405 406 407 408 409 407 409 410 411 412 413 411 413 414 415 416 417 415 417 418 419 420 421 419 421 422 423 424 425 423 425 426 427 428 429 427 429 430 431 432 433 431 433 434 435 436 437 435 437 438 439 440 441 439 441 442 443 444 445 443 445 446 447 448 449 447 449 450 451 452 453 451 453 454 455 456 457 455 457 458 459 460 461 459 461 462 463 464 465 463 465 466 467 468 469 467 469 470 471 472 473 471 473 474 475 476 477 475 477 478 479 480 481 479 481 482 483 484 485 483 485 486 487 488 489 487 489 490 491 492 493 491 493 494 495 496 497 495 497 498 499 500 501 499 501 502 503 504 505 503 505 506 507 508 509 507 509 510 511 512 513 511 513 514 515 516 517 515 517 518 519 520 521 519 521 522 523 524 525 523 525 526 527 528 529 527 529 530 531 532 533 531 533 534 535 536 537 535 537 538 539 540 541 539 541 542 543 544 545 543 545 546 547 548 549 547 549 550 551 552 553 551 553 554 555 556 557 555 557 558 559 560 561 559 561 562 563 564 565 563 565 566 567 568 569 567 569 570 571 572 573 571 573 574 575 576 577 575 577 578 579 580 581 579 581 582 583 584 585 583 585 586 587 588 589 587 589 590 591 592 593 591 593 594 595 596 597 595 597 598 599 600 601 599 601 602 603 604 605 603 605 606 607 608 609 607 609 610 611 612 613 611 613 614 615 616 617 615 617 618 619 620 621 619 621 622 623 624 625 623 625 626 627 628 629 627 629 630 631 632 633 631 633 634 635 636 637 635 637 638 639 640 641 639 641 642 643 644 645 643 645 646 647 648 649 647 649 650 651 652 653 651 653 654 655 656 657 655 657 658 659 660 661 659 661 662 663 664 665 663 665 666 667 668 669 667 669 670 671 672 673 671 673 674 675 676 677 675 677 678 679 680 681 679 681 682 683 684 685 683 685 686 687 688 689 687 689 690 691 692 693 691 693 694 695 696 697 695 697 698 699 700 701 699 701 702 703 704 705 703 705 706 707 708 709 707 709 710 711 712 713 711 713 714 715 716 717 715 717 718 719 720 721 719 721 722 723 724 725 723 725 726 727 728 729 727 729 730 731 732 733 731 733 734 735 736 737 735 737 738 739 740 741 739 741 742 743 744 745 743 745 746 747 748 749 747 749 750 751 752 753 751 753 754 755 756 757 755 757 758 759 760 761 759 761 762 763 764 765 763 765 766 767 768 769 767 769 770 771 772 773 771 773 774 775 776 777 775 777 778 779 780 781 779 781 782 783 784 785 783 785 786 787 788 789 787 789 790 787 790 791 792 793 794 792 794 795 796 797 798 796 798 799 800 801 802 800 802 803 804 805 806 804 806 807 808 809 810 808 810 811 812 813 814 812 814 815 816 817 818 816 818 819 820 821 822 820 822 823 824 825 826 824 826 827 828 829 830 828 830 831 832 833 834 832 834 835 836 837 838 836 838 839 840 841 842 840 842 843 844 845 846 844 846 847 848 849 850 848 850 851 852 853 854 852 854 855 856 857 858 856 858 859 860 861 862 860 862 863 864 865 866 864 866 867 868 869 870 868 870 871 872 873 874 872 874 875 876 877 878 876 878 879 880 881 882 880 882 883 884 885 886 884 886 887 888 889 890 888 890 891 892 893 894 892 894 895 896 897 898 896 898 899 900 901 902 900 902 903 904 905 906 904 906 907 908 909 910 908 910 911 908 911 912 913 914 915 913 915 916 917 918 919 917 919 920 921 922 923 921 923 924 925 926 927 925 927 928 929 930 931 929 931 932 933 934 935 933 935 936 937 938 939 937 939 940 941 942 943 941 943 944 945 946 947 945 947 948 949 950 951 949 951 952 953 954 955 953 955 956 957 958 959 957 959 960 961 962 963 961 963 964 965 966 967 965 967 968 969 970 971 969 971 972 973 974 975 973 975 976 977 978 979 977 979 980 981 982 983 981 983 984 985 986 987 985 987 988 989 990 991 989 991 992 993 994 995 993 995 996 997 998 999 997 999 1000 1001 1002 1003 1001 1003 1004 1005 1006 1007 1005 1007 1008 1009 1010 1011 1009 1011 1012 1013 1014 1015 1013 1015 1016 1017 1018 1019 1017 1019 1020 1021 1022 1023 1021 1023 1024 1025 1026 1027 1025 1027 1028 1029 1030 1031 1029 1031 1032 1033 1034 1035 1033 1035 1036 1037 1038 1039 1037 1039 1040 1041 1042 1043 1041 1043 1044 1045 1046 1047 1045 1047 1048 1049 1050 1051 1049 1051 1052 1053 1054 1055 1053 1055 1056 1057 1058 1059 1057 1059 1060 1061 1062 1063 1061 1063 1064 1065 1066 1067 1065 1067 1068 1069 1070 1071 1069 1071 1072 1073 1074 1075 1073 1075 1076 1077 1078 1079 1077 1079 1080 1081 1082 1083 1081 1083 1084 1085 1086 1087 1085 1087 1088 1089 1090 1091 1089 1091 1092 1093 1094 1095 1093 1095 1096 1097 1098 1099 1097 1099 1100 1101 1102 1103 1101 1103 1104 1105 1106 1107 1105 1107 1108 1109 1110 1111 1109 1111 1112 1113 1114 1115 1113 1115 1116 1117 1118 1119 1117 1119 1120 1121 1122 1123 1121 1123 1124 1125 1126 1127 1125 1127 1128 1129 1130 1131 1129 1131 1132 1133 1134 1135 1133 1135 1136 1137 1138 1139 1137 1139 1140 1141 1142 1143 1141 1143 1144 1145 1146 1147 1145 1147 1148 1149 1150 1151 1149 1151 1152 1153 1154 1155 1153 1155 1156 1157 1158 1159 1157 1159 1160 1161 1162 1163 1161 1163 1164 1165 1166 1167 1165 1167 1168 1169 1170 1171 1169 1171 1172 1173 1174 1175 1173 1175 1176 1177 1178 1179 1177 1179 1180 1181 1182 1183 1181 1183 1184 1185 1186 1187 1185 1187 1188 1189 1190 1191 1189 1191 1192 1193 1194 1195 1193 1195 1196 1197 1198 1199 1197 1199 1200 1201 1202 1203 1201 1203 1204 1205 1206 1207 1205 1207 1208 1209 1210 1211 1209 1211 1212 1213 1214 1215 1213 1215 1216 1217 1218 1219 1217 1219 1220 1221 1222 1223 1221 1223 1224 1225 1226 1227 1225 1227 1228 1229 1230 1231 1229 1231 1232 1233 1234 1235 1233 1235 1236 1237 1238 1239 1237 1239 1240 1241 1242 1243 1241 1243 1244 1245 1246 1247 1245 1247 1248 1249 1250 1251 1249 1251 1252 1253 1254 1255 1253 1255 1256 1257 1258 1259 1257 1259 1260 1261 1262 1263 1261 1263 1264 1265 1266 1267 1265 1267 1268 1269 1270 1271 1269 1271 1272 1273 1274 1275 1273 1275 1276 1277 1278 1279 1277 1279 1280 1281 1282 1283 1281 1283 1284 1285 1286 1287 1285 1287 1288 1289 1290 1291 1289 1291 1292 1293 1294 1295 1293 1295 1296 1297 1298 1299 1297 1299 1300 1301 1302 1303 1301 1303 1304 1305 1306 1307 1305 1307 1308 1309 1310 1311 1309 1311 1312 1313 1314 1315 1313 1315 1316 1317 1318 1319 1317 1319 1320 1321 1322 1323 1321 1323 1324 1325 1326 1327 1325 1327 1328 1329 1330 1331 1329 1331 1332 1333 1334 1335 1333 1335 1336 1337 1338 1339 1337 1339 1340 1341 1342 1343 1341 1343 1344 1345 1346 1347 1345 1347 1348 1349 1350 1351 1349 1351 1352 1353 1354 1355 1353 1355 1356 1357 1358 1359 1357 1359 1360 1361 1362 1363 1361 1363 1364 1365 1366 1367 1365 1367 1368 1369 1370 1371 1369 1371 1372 1373 1374 1375 1373 1375 1376 1377 1378 1379 1377 1379 1380 1381 1382 1383 1381 1383 1384 1385 1386 1387 1385 1387 1388 1389 1390 1391 1389 1391 1392 1393 1394 1395 1393 1395 1396 1397 1398 1399 1397 1399 1400 1401 1402 1403 1401 1403 1404 1405 1406 1407 1405 1407 1408 1409 1410 1411 1409 1411 1412 1413 1414 1415 1413 1415 1416 1417 1418 1419 1417 1419 1420 1421 1422 1423 1421 1423 1424 1425 1426 1427 1425 1427 1428 1429 1430 1431 1429 1431 1432 1433 1434 1435 1433 1435 1436 1437 1438 1439 1437 1439 1440 1441 1442 1443 1441 1443 1444 1445 1446 1447 1445 1447 1448 1449 1450 1451 1449 1451 1452 1453 1454 1455 1453 1455 1456 1457 1458 1459 1457 1459 1460 1461 1462 1463 1461 1463 1464 1465 1466 1467 1465 1467 1468 1469 1470 1471 1469 1471 1472 1473 1474 1475 1473 1475 1476 1477 1478 1479 1477 1479 1480 1481 1482 1483 1481 1483 1484 1485 1486 1487 1485 1487 1488 1489 1490 1491 1489 1491 1492 1493 1494 1495 1493 1495 1496 1497 1498 1499 1497 1499 1500 1501 1502 1503 1501 1503 1504 1505 1506 1507 1505 1507 1508 1509 1510 1511 1509 1511 1512 1513 1514 1515 1513 1515 1516 1517 1518 1519 1517 1519 1520 1521 1522 1523 1521 1523 1524 1525 1526 1527 1525 1527 1528 1529 1530 1531 1529 1531 1532 1533 1534 1535 1533 1535 1536 1537 1538 1539 1537 1539 1540 1541 1542 1543 1541 1543 1544 1545 1546 1547 1545 1547 1548 1549 1550 1551 1549 1551 1552 1553 1554 1555 1553 1555 1556 1557 1558 1559 1557 1559 1560 1561 1562 1563 1561 1563 1564 1565 1566 1567 1565 1567 1568 1569 1570 1571 1569 1571 1572 1573 1574 1575 1573 1575 1576 1577 1578 1579 1577 1579 1580 1581 1582 1583 1581 1583 1584 1585 1586 1587 1585 1587 1588 1589 1590 1591 1589 1591 1592 1593 1594 1595 1593 1595 1596 1593 1596 1597 1598 1599 1600 1598 1600 1601 1602 1603 1604 1602 1604 1605 1606 1607 1608 1606 1608 1609 1610 1611 1612 1610 1612 1613 1614 1615 1616 1614 1616 1617 1618 1619 1620 1618 1620 1621 1622 1623 1624 1622 1624 1625 1626 1627 1628 1626 1628 1629 1630 1631 1632 1630 1632 1633 1634 1635 1636 1634 1636 1637 1638 1639 1640 1638 1640 1641 1642 1643 1644 1642 1644 1645 1646 1647 1648 1646 1648 1649 1650 1651 1652 1650 1652 1653 1654 1655 1656 1654 1656 1657 1658 1659 1660 1658 1660 1661 1662 1663 1664 1662 1664 1665 1666 1667 1668 1666 1668 1669 1670 1671 1672 1670 1672 1673 1674 1675 1676 1674 1676 1677 1678 1679 1680 1678 1680 1681 1682 1683 1684 1682 1684 1685 1686 1687 1688 1686 1688 1689 1690 1691 1692 1690 1692 1693 1694 1695 1696 1694 1696 1697 1698 1699 1700 1698 1700 1701 1702 1703 1704 1702 1704 1705 1706 1707 1708 1706 1708 1709 1710 1711 1712 1710 1712 1713 1714 1715 1716 1714 1716 1717 1714 1717 1718 1719 1720 1721 1719 1721 1722 1723 1724 1725 1723 1725 1726 1727 1728 1729 1727 1729 1730 1731 1732 1733 1731 1733 1734 1735 1736 1737 1735 1737 1738 1739 1740 1741 1739 1741 1742 1743 1744 1745 1743 1745 1746 1747 1748 1749 1747 1749 1750 1751 1752 1753 1751 1753 1754 1755 1756 1757 1755 1757 1758 1759 1760 1761 1759 1761 1762 1763 1764 1765 1763 1765 1766 1767 1768 1769 1767 1769 1770 1771 1772 1773 1771 1773 1774 1775 1776 1777 1775 1777 1778 1779 1780 1781 1779 1781 1782 1783 1784 1785 1783 1785 1786 1787 1788 1789 1787 1789 1790 1791 1792 1793 1791 1793 1794 1795 1796 1797 1795 1797 1798 1799 1800 1801 1799 1801 1802 1803 1804 1805 1803 1805 1806 1807 1808 1809 1807 1809 1810 1811 1812 1813 1811 1813 1814 1815 1816 1817 1815 1817 1818 1819 1820 1821 1819 1821 1822 1823 1824 1825 1823 1825 1826 1827 1828 1829 1827 1829 1830 1831 1832 1833 1831 1833 1834 1835 1836 1837 1835 1837 1838 1839 1840 1841 1839 1841 1842 1843 1844 1845 1843 1845 1846 1847 1848 1849 1847 1849 1850 1851 1852 1853 1851 1853 1854 1855 1856 1857 1855 1857 1858 1859 1860 1861 1859 1861 1862 1863 1864 1865 1863 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1879 1881 1882 1883 1884 1885 1883 1885 1886 1887 1888 1889 1887 1889 1890 1891 1892 1893 1891 1893 1894 1895 1896 1897 1895 1897 1898 1899 1900 1901 1899 1901 1902 1903 1904 1905 1903 1905 1906 1907 1908 1909 1907 1909 1910 1911 1912 1913 1911 1913 1914 1915 1916 1917 1915 1917 1918 1919 1920 1921 1919 1921 1922 1923 1924 1925 1923 1925 1926 1927 1928 1929 1927 1929 1930 1931 1932 1933 1931 1933 1934 1935 1936 1937 1935 1937 1938 1939 1940 1941 1939 1941 1942 1943 1944 1945 1943 1945 1946 1947 1948 1949 1947 1949 1950 1951 1952 1953 1951 1953 1954 1955 1956 1957 1955 1957 1958 1959 1960 1961 1959 1961 1962 1963 1964 1965 1963 1965 1966 1967 1968 1969 1967 1969 1970 1971 1972 1973 1971 1973 1974 1975 1976 1977 1975 1977 1978 1979 1980 1981 1979 1981 1982 1983 1984 1985 1983 1985 1986 1987 1988 1989 1987 1989 1990 1991 1992 1993 1991 1993 1994 1995 1996 1997 1995 1997 1998 1999 2000 2001 1999 2001 2002 2003 2004 2005 2003 2005 2006 2007 2008 2009 2007 2009 2010 2011 2012 2013 2011 2013 2014 2015 2016 2017 2015 2017 2018 2019 2020 2021 2019 2021 2022 2023 2024 2025 2023 2025 2026 2027 2028 2029 2027 2029 2030 2031 2032 2033 2031 2033 2034 2035 2036 2037 2035 2037 2038 2039 2040 2041 2039 2041 2042 2043 2044 2045 2043 2045 2046 2047 2048 2049 2047 2049 2050 2051 2052 2053 2051 2053 2054 2055 2056 2057 2055 2057 2058 2059 2060 2061 2059 2061 2062 2063 2064 2065 2063 2065 2066 2067 2068 2069 2067 2069 2070 2071 2072 2073 2071 2073 2074 2075 2076 2077 2075 2077 2078 2079 2080 2081 2082 2083 2084 2082 2084 2085 2086 2087 2088 2086 2088 2089 2090 2091 2092 2090 2092 2093 2094 2095 2096 2094 2096 2097 2098 2099 2100 2098 2100 2101 2102 2103 2104 2102 2104 2105 2106 2107 2108 2106 2108 2109 2110 2111 2112 2110 2112 2113 2114 2115 2116 2114 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2139 2141 2142 2143 2144 2145 2143 2145 2146 2147 2148 2149 2147 2149 2150 2151 2152 2153 2151 2153 2154 2155 2156 2157 2155 2157 2158 2159 2160 2161 2159 2161 2162 2163 2164 2165 2163 2165 2166 2167 2168 2169 2167 2169 2170 2171 2172 2173 2171 2173 2174 2175 2176 2177 2175 2177 2178 2179 2180 2181 2179 2181 2182 2183 2184 2185 2183 2185 2186 2187 2188 2189 2187 2189 2190 2191 2192 2193 2191 2193 2194 2195 2196 2197 2195 2197 2198 2199 2200 2201 2199 2201 2202 2203 2204 2205 2203 2205 2206 2207 2208 2209 2207 2209 2210 2211 2212 2213 2211 2213 2214 2215 2216 2217 2215 2217 2218 2219 2220 2221 2219 2221 2222 2223 2224 2225 2223 2225 2226 2227 2228 2229 2227 2229 2230 2231 2232 2233 2231 2233 2234 2235 2236 2237 2235 2237 2238 2239 2240 2241 2239 2241 2242 2243 2244 2245 2243 2245 2246 2247 2248 2249 2247 2249 2250 2251 2252 2253 2251 2253 2254 2255 2256 2257 2255 2257 2258 2259 2260 2261 2259 2261 2262 2263 2264 2265 2263 2265 2266 2267 2268 2269 2267 2269 2270 2271 2272 2273 2271 2273 2274 2275 2276 2277 2275 2277 2278 2279 2280 2281 2279 2281 2282 2283 2284 2285 2283 2285 2286 2287 2288 2289 2287 2289 2290 2291 2292 2293 2291 2293 2294 2295 2296 2297 2295 2297 2298 2299 2300 2301 2299 2301 2302 2303 2304 2305 2303 2305 2306 2307 2308 2309 2307 2309 2310 2311 2312 2313 2311 2313 2314 2315 2316 2317 2315 2317 2318 2319 2320 2321 2319 2321 2322 2323 2324 2325 2323 2325 2326 2327 2328 2329 2327 2329 2330 2331 2332 2333 2331 2333 2334 2335 2336 2337 2335 2337 2338 2339 2340 2341 2339 2341 2342 2343 2344 2345 2343 2345 2346 2347 2348 2349 2347 2349 2350 2351 2352 2353 2351 2353 2354 2355 2356 2357 2355 2357 2358 2359 2360 2361 2359 2361 2362 2363 2364 2365 2363 2365 2366 2367 2368 2369 2367 2369 2370 2371 2372 2373 2371 2373 2374 2375 2376 2377 2375 2377 2378 2379 2380 2381 2379 2381 2382 2383 2384 2385 2383 2385 2386 2387 2388 2389 2387 2389 2390 2391 2392 2393 2391 2393 2394 2395 2396 2397 2395 2397 2398 2399 2400 2401 2399 2401 2402 2403 2404 2405 2403 2405 2406 2407 2408 2409 2410 2411 2412 2410 2412 2413 2414 2415 2416 2414 2416 2417 2418 2419 2420 2418 2420 2421 2422 2423 2424 2425 2426 2427 2425 2427 2428 2429 2430 2431 2429 2431 2432 2433 2434 2435 2433 2435 2436 2437 2438 2439 2440 2441 2442 2440 2442 2443 2444 2445 2446 2444 2446 2447 2448 2449 2450 2448 2450 2451 2452 2453 2454 2455 2456 2457 2455 2457 2458 2459 2460 2461 2459 2461 2462 2463 2464 2465 2463 2465 2466 2467 2468 2469 2470 2471 2472 2470 2472 2473 2474 2475 2476 2474 2476 2477 2478 2479 2480 2478 2480 2481 2482 2483 2484 2485 2486 2487 2485 2487 2488 2489 2490 2491 2489 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2511 2513 2514 2515 2516 2517 2515 2517 2518 2519 2520 2521 2519 2521 2522 2523 2524 2525 2523 2525 2526 2527 2528 2529 2527 2529 2530 2531 2532 2533 2531 2533 2534 2535 2536 2537 2535 2537 2538 2539 2540 2541 2539 2541 2542 2543 2544 2545 2543 2545 2546 2547 2548 2549 2547 2549 2550 2551 2552 2553 2551 2553 2554 2555 2556 2557 2555 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2571 2573 2574 2575 2576 2577 2575 2577 2578 2579 2580 2581 2579 2581 2582 2583 2584 2585 2583 2585 2586 2587 2588 2589 2587 2589 2590 2591 2592 2593 2591 2593 2594 2595 2596 2597 2595 2597 2598 2599 2600 2601 2599 2601 2602 2603 2604 2605 2603 2605 2606 2607 2608 2609 2607 2609 2610 2611 2612 2613 2611 2613 2614 2615 2616 2617 2615 2617 2618 2619 2620 2621 2619 2621 2622 2623 2624 2625 2623 2625 2626 2627 2628 2629 2627 2629 2630 2631 2632 2633 2631 2633 2634 2635 2636 2637 2635 2637 2638 2639 2640 2641 2639 2641 2642 2643 2644 2645 2643 2645 2646 2647 2648 2649 2647 2649 2650 2651 2652 2653 2651 2653 2654 2655 2656 2657 2655 2657 2658 2659 2660 2661 2659 2661 2662 2663 2664 2665 2663 2665 2666 2667 2668 2669 2667 2669 2670 2671 2672 2673 2671 2673 2674 2675 2676 2677 2675 2677 2678 2679 2680 2681 2679 2681 2682 2683 2684 2685 2683 2685 2686 2687 2688 2689 2687 2689 2690 2691 2692 2693 2691 2693 2694 2695 2696 2697 2695 2697 2698 2699 2700 2701 2699 2701 2702 2703 2704 2705 2703 2705 2706 2707 2708 2709 2707 2709 2710 2711 2712 2713 2711 2713 2714 2715 2716 2717 2715 2717 2718 2719 2720 2721 2719 2721 2722 2723 2724 2725 2723 2725 2726 2727 2728 2729 2727 2729 2730 2731 2732 2733 2731 2733 2734 2735 2736 2737 2735 2737 2738 2739 2740 2741 2739 2741 2742 2743 2744 2745 2743 2745 2746 2747 2748 2749 2747 2749 2750 2751 2752 2753 2751 2753 2754 2755 2756 2757 2755 2757 2758 2759 2760 2761 2759 2761 2762 2763 2764 2765 2763 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2773 2775 2776 2777 2778 2779 2777 2779 2780 2781 2782 2783 2781 2783 2784 2785 2786 2787 2785 2787 2788 2789 2790 2791 2789 2791 2792 2793 2794 2795 2793 2795 2796 2797 2798 2799 2797 2799 2800 2801 2802 2803 2801 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2826 2828 2829 2830 2831 2832 2830 2832 2833 2834 2835 2836 2834 2836 2837 2838 2839 2840 2838 2840 2841 2842 2843 2844 2842 2844 2845 2846 2847 2848 2846 2848 2849 2850 2851 2852 2850 2852 2853 2854 2855 2856 2854 2856 2857 2858 2859 2860 2858 2860 2861 2862 2863 2864 2862 2864 2865 2866 2867 2868 2866 2868 2869 2870 2871 2872 2870 2872 2873 2874 2875 2876 2874 2876 2877 2878 2879 2880 2878 2880 2881 2882 2883 2884 2882 2884 2885 2886 2887 2888 2886 2888 2889 2890 2891 2892 2890 2892 2893 2894 2895 2896 2894 2896 2897 2898 2899 2900 2898 2900 2901 2902 2903 2904 2902 2904 2905 2906 2907 2908 2906 2908 2909 2910 2911 2912 2910 2912 2913 2914 2915 2916 2914 2916 2917 2918 2919 2920 2918 2920 2921 2922 2923 2924 2922 2924 2925 2926 2927 2928 2926 2928 2929 2930 2931 2932 2930 2932 2933 2934 2935 2936 2934 2936 2937 2938 2939 2940 2938 2940 2941 2942 2943 2944 2942 2944 2945 2946 2947 2948 2946 2948 2949 2950 2951 2952 2950 2952 2953 2954 2955 2956 2954 2956 2957 2958 2959 2960 2958 2960 2961 2962 2963 2964 2962 2964 2965 2966 2967 2968 2966 2968 2969 2970 2971 2972 2970 2972 2973 2974 2975 2976 2974 2976 2977 2978 2979 2980 2978 2980 2981 2982 2983 2984 2982 2984 2985 2986 2987 2988 2986 2988 2989 2990 2991 2992 2990 2992 2993 2994 2995 2996 2994 2996 2997 2998 2999 3000 2998 3000 3001 3002 3003 3004 3002 3004 3005 3006 3007 3008 3006 3008 3009 3010 3011 3012 3010 3012 3013 3014 3015 3016 3014 3016 3017 3018 3019 3020 3018 3020 3021 3022 3023 3024 3022 3024 3025 3026 3027 3028 3026 3028 3029 3030 3031 3032 3030 3032 3033 3034 3035 3036 3034 3036 3037 3038 3039 3040 3038 3040 3041 3042 3043 3044 3042 3044 3045 3046 3047 3048 3046 3048 3049 3050 3051 3052 3050 3052 3053 3054 3055 3056 3054 3056 3057 3058 3059 3060 3058 3060 3061 3062 3063 3064 3062 3064 3065 3066 3067 3068 3066 3068 3069 3070 3071 3072 3070 3072 3073 3074 3075 3076 3074 3076 3077 3078 3079 3080 3078 3080 3081 3082 3083 3084 3082 3084 3085 3086 3087 3088 3086 3088 3089 3090 3091 3092 3090 3092 3093 3094 3095 3096 3094 3096 3097 3098 3099 3100 3101 3102 3103 3101 3103 3104 3105 3106 3107 3105 3107 3108 3109 3110 3111 3109 3111 3112 3113 3114 3115 3116 3117 3118 3116 3118 3119 3120 3121 3122 3120 3122 3123 3124 3125 3126 3124 3126 3127 3128 3129 3130 3131 3132 3133 3131 3133 3134 3135 3136 3137 3135 3137 3138 3139 3140 3141 3139 3141 3142 3143 3144 3145 3146 3147 3148 3146 3148 3149 3150 3151 3152 3150 3152 3153 3154 3155 3156 3154 3156 3157 3158 3159 3160 3161 3162 3163 3161 3163 3164 3165 3166 3167 3165 3167 3168 3169 3170 3171 3169 3171 3172 3173 3174 3175 3176 3177 3178 3176 3178 3179 3180 3181 3182 3180 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3202 3204 3205 3206 3207 3208 3206 3208 3209 3210 3211 3212 3210 3212 3213 3214 3215 3216 3214 3216 3217 3218 3219 3220 3218 3220 3221 3222 3223 3224 3222 3224 3225 3226 3227 3228 3226 3228 3229 3230 3231 3232 3230 3232 3233 3234 3235 3236 3234 3236 3237 3238 3239 3240 3238 3240 3241 3242 3243 3244 3242 3244 3245 3246 3247 3248 3246 3248 3249 3250 3251 3252 3250 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3260 3262 3263 3264 3265 3266 3264 3266 3267 3268 3269 3270 3268 3270 3271 3272 3273 3274 3272 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3282 3284 3285 3286 3287 3288 3286 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3299 3301 3302 3303 3304 3305 3306 3307 3308 3306 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3319 3321 3322 3323 3324 3325 3326 3327 3328 3326 3328 3329 3330 3331 3332 3333 3334 3335 3333 3335 3336 3337 3338 3339 3340 3341 3342 3340 3342 3343 3344 3345 3346 3344 3346 3347 3348 3349 3350 3348 3350 3351 3352 3353 3354 3352 3354 3355 3356 3357 3358 3356 3358 3359 3360 3361 3362 3360 3362 3363 3364 3365 3366 3364 3366 3367 3368 3369 3370 3368 3370 3371 3372 3373 3374 3372 3374 3375 3376 3377 3378 3376 3378 3379 3380 3381 3382 3380 3382 3383 3384 3385 3386 3384 3386 3387 3388 3389 3390 3388 3390 3391 3392 3393 3394 3392 3394 3395 3396 3397 3398 3396 3398 3399 3400 3401 3402 3400 3402 3403 3404 3405 3406 3404 3406 3407 3408 3409 3410 3408 3410 3411 3412 3413 3414 3412 3414 3415 3416 3417 3418 3416 3418 3419 3420 3421 3422 3420 3422 3423 3424 3425 3426 3424 3426 3427 3428 3429 3430 3428 3430 3431 3432 3433 3434 3432 3434 3435 3436 3437 3438 3436 3438 3439 3440 3441 3442 3440 3442 3443 3444 3445 3446 3444 3446 3447 3448 3449 3450 3448 3450 3451 3452 3453 3454 3452 3454 3455 3456 3457 3458 3456 3458 3459 3460 3461 3462 3460 3462 3463 3464 3465 3466 3464 3466 3467 3468 3469 3470 3468 3470 3471 3472 3473 3474 3472 3474 3475 3476 3477 3478 3476 3478 3479 3480 3481 3482 3480 3482 3483 3484 3485 3486 3484 3486 3487 3488 3489 3490 3488 3490 3491 3492 3493 3494 3492 3494 3495 3496 3497 3498 3496 3498 3499 3500 3501 3502 3500 3502 3503 3504 3505 3506 3504 3506 3507 3508 3509 3510 3508 3510 3511 3512 3513 3514 3512 3514 3515 3516 3517 3518 3516 3518 3519 3520 3521 3522 3520 3522 3523 3524 3525 3526 3524 3526 3527 3528 3529 3530 3528 3530 3531 3532 3533 3534 3532 3534 3535 3536 3537 3538 3536 3538 3539 3540 3541 3542 3540 3542 3543 3544 3545 3546 3544 3546 3547 3548 3549 3550 3548 3550 3551 3552 3553 3554 3552 3554 3555 3556 3557 3558 3556 3558 3559 3560 3561 3562 3560 3562 3563 3564 3565 3566 3564 3566 3567 3568 3569 3570 3568 3570 3571 3572 3573 3574 3572 3574 3575 3576 3577 3578 3576 3578 3579 3580 3581 3582 3580 3582 3583 3584 3585 3586 3584 3586 3587 3588 3589 3590 3588 3590 3591 3592 3593 3594 3592 3594 3595 3596 3597 3598 3596 3598 3599 3600 3601 3602 3600 3602 3603 3604 3605 3606 3604 3606 3607 3608 3609 3610 3608 3610 3611 3612 3613 3614 3612 3614 3615 3616 3617 3618 3616 3618 3619 3620 3621 3622 3620 3622 3623 3624 3625 3626 3624 3626 3627 3628 3629 3630 3628 3630 3631 3632 3633 3634 3632 3634 3635 3636 3637 3638 3636 3638 3639 3640 3641 3642 3640 3642 3643 3644 3645 3646 3644 3646 3647 3648 3649 3650 3648 3650 3651 3652 3653 3654 3652 3654 3655 3656 3657 3658 3656 3658 3659 3660 3661 3662 3660 3662 3663 3664 3665 3666 3664 3666 3667 3668 3669 3670 3668 3670 3671 3672 3673 3674 3672 3674 3675 3676 3677 3678 3676 3678 3679 3680 3681 3682 3680 3682 3683 3684 3685 3686 3684 3686 3687 3688 3689 3690 3688 3690 3691 3692 3693 3694 3692 3694 3695 3696 3697 3698 3696 3698 3699 3700 3701 3702 3700 3702 3703 3704 3705 3706 3704 3706 3707 3708 3709 3710 3708 3710 3711 3712 3713 3714 3712 3714 3715 3716 3717 3718 3716 3718 3719 3720 3721 3722 3720 3722 3723 3724 3725 3726 3724 3726 3727 3728 3729 3730 3728 3730 3731 3732 3733 3734 3732 3734 3735 3736 3737 3738 3736 3738 3739 3740 3741 3742 3740 3742 3743 3744 3745 3746 3744 3746 3747 3748 3749 3750 3748 3750 3751 3752 3753 3754 3752 3754 3755 3756 3757 3758 3756 3758 3759 3760 3761 3762 3760 3762 3763 3764 3765 3766 3764 3766 3767 3768 3769 3770 3768 3770 3771 3772 3773 3774 3775 3776 3777 3775 3777 3778 3779 3780 3781 3779 3781 3782 3783 3784 3785 3786 3787 3788 3786 3788 3789 3790 3791 3792 3790 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3803 3805 3806 3807 3808 3809 3807 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3829 3831 3832 3833 3834 3835 3836 3837 3838 3836 3838 3839 3840 3841 3842 3840 3842 3843 3844 3845 3846 3844 3846 3847 3848 3849 3850 3848 3850 3851 3852 3853 3854 3852 3854 3855 3856 3857 3858 3856 3858 3859 3860 3861 3862 3860 3862 3863 3864 3865 3866 3864 3866 3867 3868 3869 3870 3868 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3878 3880 3881 3882 3883 3884 3882 3884 3885 3886 3887 3888 3886 3888 3889 3890 3891 3892 3890 3892 3893 3894 3895 3896 3894 3896 3897 3898 3899 3900 3898 3900 3901 3902 3903 3904 3902 3904 3905 3906 3907 3908 3906 3908 3909 3910 3911 3912 3913 3914 3915 3913 3915 3916 3917 3918 3919 3917 3919 3920 3921 3922 3923 3921 3923 3924 3925 3926 3927 3925 3927 3928 3929 3930 3931 3929 3931 3932 3933 3934 3935 3933 3935 3936 3937 3938 3939 3937 3939 3940 3941 3942 3943 3941 3943 3944 3945 3946 3947 3948 3949 3950 3948 3950 3951 3952 3953 3954 3952 3954 3955 3956 3957 3958 3956 3958 3959 3960 3961 3962 3960 3962 3963 3964 3965 3966 3964 3966 3967 3968 3969 3970 3968 3970 3971 3972 3973 3974 3972 3974 3975 3976 3977 3978 3976 3978 3979 3980 3981 3982 3980 3982 3983 3984 3985 3986 3984 3986 3987 3988 3989 3990 3988 3990 3991 3992 3993 3994 3992 3994 3995 3996 3997 3998 3996 3998 3999 4000 4001 4002 4000 4002 4003 4004 4005 4006 4004 4006 4007 4008 4009 4010 4008 4010 4011 4012 4013 4014 4012 4014 4015 4016 4017 4018 4016 4018 4019 4020 4021 4022 4020 4022 4023 4024 4025 4026 4024 4026 4027 4028 4029 4030 4028 4030 4031 4032 4033 4034 4035 4036 4037 4035 4037 4038 4039 4040 4041 4039 4041 4042 4043 4044 4045 4043 4045 4046 4047 4048 4049 4047 4049 4050 4051 4052 4053 4051 4053 4054 4055 4056 4057 4055 4057 4058 4059 4060 4061 4059 4061 4062 4063 4064 4065 4063 4065 4066 4067 4068 4069 4070 4071 4072 4070 4072 4073 4074 4075 4076 4074 4076 4077 4078 4079 4080 4078 4080 4081 4082 4083 4084 4082 4084 4085 4086 4087 4088 4086 4088 4089 4090 4091 4092 4090 4092 4093 4094 4095 4096 4094 4096 4097 4098 4099 4100 4098 4100 4101 4102 4103 4104 4102 4104 4105 4106 4107 4108 4106 4108 4109 4110 4111 4112 4110 4112 4113 4114 4115 4116 4114 4116 4117 4118 4119 4120 4118 4120 4121 4122 4123 4124 4122 4124 4125 4126 4127 4128 4126 4128 4129 4130 4131 4132 4130 4132 4133 4134 4135 4136 4134 4136 4137 4138 4139 4140 4138 4140 4141 4142 4143 4144 4142 4144 4145 4146 4147 4148 4146 4148 4149 4150 4151 4152 4150 4152 4153 4154 4155 4156 4154 4156 4157 4158 4159 4160 4158 4160 4161 4162 4163 4164 4162 4164 4165 4166 4167 4168 4166 4168 4169 4170 4171 4172 4170 4172 4173 4174 4175 4176 4174 4176 4177 4178 4179 4180 4178 4180 4181 4182 4183 4184 4182 4184 4185 4186 4187 4188 4186 4188 4189 4190 4191 4192 4190 4192 4193 4194 4195 4196 4194 4196 4197 4198 4199 4200 4198 4200 4201 4202 4203 4204 4202 4204 4205 4206 4207 4208 4206 4208 4209 4210 4211 4212 4210 4212 4213 4214 4215 4216 4214 4216 4217 4218 4219 4220 4218 4220 4221 4222 4223 4224 4225 4226 4227 4225 4227 4228 4229 4230 4231 4229 4231 4232 4233 4234 4235 4233 4235 4236 4237 4238 4239 4237 4239 4240 4241 4242 4243 4241 4243 4244 4245 4246 4247 4245 4247 4248 4249 4250 4251 4249 4251 4252 4253 4254 4255 4253 4255 4256 4257 4258 4259 4260 4261 4262 4260 4262 4263 4264 4265 4266 4264 4266 4267 4268 4269 4270 4268 4270 4271 4272 4273 4274 4272 4274 4275 4276 4277 4278 4276 4278 4279 4280 4281 4282 4280 4282 4283 4284 4285 4286 4284 4286 4287 4288 4289 4290 4288 4290 4291 4292 4293 4294 4292 4294 4295 4296 4297 4298 4296 4298 4299 4300 4301 4302 4300 4302 4303 4304 4305 4306 4304 4306 4307 4308 4309 4310 4308 4310 4311 4312 4313 4314 4312 4314 4315 4316 4317 4318 4316 4318 4319 4320 4321 4322 4320 4322 4323 4324 4325 4326 4324 4326 4327 4328 4329 4330 4328 4330 4331 4332 4333 4334 4332 4334 4335 4336 4337 4338 4336 4338 4339 4340 4341 4342 4340 4342 4343 4344 4345 4346 4347 4348 4349 4347 4349 4350 4351 4352 4353 4351 4353 4354 4355 4356 4357 4355 4357 4358 4359 4360 4361 4359 4361 4362 4363 4364 4365 4363 4365 4366 4367 4368 4369 4367 4369 4370 4371 4372 4373 4371 4373 4374 4375 4376 4377 4375 4377 4378 4379 4380 4381 4382 4383 4384 4382 4384 4385 4386 4387 4388 4386 4388 4389 4390 4391 4392 4390 4392 4393 4394 4395 4396 4394 4396 4397 4398 4399 4400 4398 4400 4401 4402 4403 4404 4402 4404 4405 4406 4407 4408 4406 4408 4409 4410 4411 4412 4410 4412 4413 4414 4415 4416 4414 4416 4417 4418 4419 4420 4418 4420 4421 4422 4423 4424 4422 4424 4425 4426 4427 4428 4426 4428 4429 4430 4431 4432 4430 4432 4433 4434 4435 4436 4434 4436 4437 4438 4439 4440 4438 4440 4441 4442 4443 4444 4442 4444 4445 4446 4447 4448 4446 4448 4449 4450 4451 4452 4450 4452 4453 4454 4455 4456 4454 4456 4457 4458 4459 4460 4458 4460 4461 4462 4463 4464 4462 4464 4465 4466 4467 4468 4466 4468 4469 4470 4471 4472 4470 4472 4473 4474 4475 4476 4474 4476 4477 4478 4479 4480 4478 4480 4481 4482 4483 4484 4482 4484 4485 4486 4487 4488 4486 4488 4489 4490 4491 4492 4490 4492 4493 4494 4495 4496 4494 4496 4497 4498 4499 4500 4498 4500 4501 4502 4503 4504 4502 4504 4505 4506 4507 4508 4506 4508 4509 4510 4511 4512 4510 4512 4513 4514 4515 4516 4514 4516 4517 4518 4519 4520 4518 4520 4521 4522 4523 4524 4522 4524 4525 4526 4527 4528 4526 4528 4529 4530 4531 4532 4530 4532 4533 4534 4535 4536 4534 4536 4537 4538 4539 4540 4538 4540 4541 4542 4543 4544 4542 4544 4545 4546 4547 4548 4546 4548 4549 4550 4551 4552 4550 4552 4553 4554 4555 4556 4554 4556 4557 4558 4559 4560 4558 4560 4561 4562 4563 4564 4562 4564 4565 4566 4567 4568 4566 4568 4569 4570 4571 4572 4570 4572 4573 4574 4575 4576 4574 4576 4577 4578 4579 4580 4578 4580 4581 4582 4583 4584 4582 4584 4585 4586 4587 4588 4586 4588 4589 4590 4591 4592 4590 4592 4593 4594 4595 4596 4594 4596 4597 4598 4599 4600 4598 4600 4601 4602 4603 4604 4602 4604 4605 4606 4607 4608 4606 4608 4609 4610 4611 4612 4610 4612 4613 4614 4615 4616 4614 4616 4617 4618 4619 4620 4618 4620 4621 4622 4623 4624 4622 4624 4625 4626 4627 4628 4626 4628 4629 4630 4631 4632 4630 4632 4633 4634 4635 4636 4634 4636 4637 4638 4639 4640 4638 4640 4641 4642 4643 4644 4642 4644 4645 4646 4647 4648 4646 4648 4649 4650 4651 4652 4650 4652 4653 4654 4655 4656 4654 4656 4657 4658 4659 4660 4658 4660 4661 4662 4663 4664 4662 4664 4665 4666 4667 4668 4666 4668 4669 4670 4671 4672 4670 4672 4673 4674 4675 4676 4674 4676 4677 4678 4679 4680 4678 4680 4681 4682 4683 4684 4682 4684 4685 4686 4687 4688 4686 4688 4689 4690 4691 4692 4690 4692 4693 4694 4695 4696 4694 4696 4697 4698 4699 4700 4698 4700 4701 4702 4703 4704 4702 4704 4705 4706 4707 4708 4706 4708 4709 4710 4711 4712 4710 4712 4713 4714 4715 4716 4714 4716 4717 4718 4719 4720 4718 4720 4721 4722 4723 4724 4722 4724 4725 4726 4727 4728 4726 4728 4729 4730 4731 4732 4730 4732 4733 4734 4735 4736 4734 4736 4737 4738 4739 4740 4738 4740 4741 4742 4743 4744 4742 4744 4745 4746 4747 4748 4746 4748 4749 4750 4751 4752 4750 4752 4753 4754 4755 4756 4754 4756 4757 4758 4759 4760 4758 4760 4761 4762 4763 4764 4762 4764 4765 4766 4767 4768 4766 4768 4769 4770 4771 4772 4770 4772 4773 4774 4775 4776 4774 4776 4777 4778 4779 4780 4778 4780 4781 4782 4783 4784 4782 4784 4785 4786 4787 4788 4786 4788 4789 4790 4791 4792 4790 4792 4793 4794 4795 4796 4794 4796 4797 4798 4799 4800 4798 4800 4801 4802 4803 4804 4802 4804 4805 4806 4807 4808 4806 4808 4809 4810 4811 4812 4810 4812 4813 4814 4815 4816 4814 4816 4817 4818 4819 4820 4818 4820 4821 4822 4823 4824 4822 4824 4825 4826 4827 4828 4826 4828 4829 4830 4831 4832 4830 4832 4833 4834 4835 4836 4834 4836 4837 4838 4839 4840 4838 4840 4841 4842 4843 4844 4842 4844 4845 4846 4847 4848 4846 4848 4849 4850 4851 4852 4850 4852 4853 4854 4855 4856 4854 4856 4857 4858 4859 4860 4858 4860 4861 4862 4863 4864 4862 4864 4865 4866 4867 4868 4866 4868 4869 4870 4871 4872 4870 4872 4873 4874 4875 4876 4874 4876 4877 4878 4879 4880 4878 4880 4881 4882 4883 4884 4882 4884 4885 4886 4887 4888 4886 4888 4889 4890 4891 4892 4890 4892 4893 4894 4895 4896 4894 4896 4897 4898 4899 4900 4898 4900 4901 4902 4903 4904 4902 4904 4905 4906 4907 4908 4906 4908 4909 4910 4911 4912 4910 4912 4913 4914 4915 4916 4914 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5062 5064 5065 5066 5067 5068 5066 5068 5069 5070 5071 5072 5070 5072 5073 5074 5075 5076 5074 5076 5077 5078 5079 5080 5078 5080 5081 5082 5083 5084 5082 5084 5085 5086 5087 5088 5086 5088 5089 5090 5091 5092 5090 5092 5093 5094 5095 5096 5094 5096 5097 5098 5099 5100 5098 5100 5101 5102 5103 5104 5102 5104 5105 5106 5107 5108 5106 5108 5109 5110 5111 5112 5110 5112 5113 5114 5115 5116 5114 5116 5117 5118 5119 5120 5118 5120 5121 5122 5123 5124 5122 5124 5125 5126 5127 5128 5126 5128 5129 5130 5131 5132 5130 5132 5133 5134 5135 5136 5134 5136 5137 5138 5139 5140 5138 5140 5141 5142 5143 5144 5142 5144 5145 5146 5147 5148 5146 5148 5149 5150 5151 5152 5150 5152 5153 5154 5155 5156 5154 5156 5157 5158 5159 5160 5158 5160 5161 5162 5163 5164 5162 5164 5165 5166 5167 5168 5166 5168 5169 5170 5171 5172 5170 5172 5173 5174 5175 5176 5174 5176 5177 5178 5179 5180 5178 5180 5181 5182 5183 5184 5182 5184 5185 5186 5187 5188 5186 5188 5189 5190 5191 5192 5190 5192 5193 5194 5195 5196 5194 5196 5197 5198 5199 5200 5198 5200 5201 5202 5203 5204 5202 5204 5205 5206 5207 5208 5206 5208 5209 5210 5211 5212 5210 5212 5213 5214 5215 5216 5214 5216 5217 5218 5219 5220 5218 5220 5221 5222 5223 5224 5222 5224 5225 5226 5227 5228 5226 5228 5229 5230 5231 5232 5230 5232 5233 5234 5235 5236 5234 5236 5237 5238 5239 5240 5238 5240 5241 5242 5243 5244 5242 5244 5245 5246 5247 5248 5246 5248 5249 5250 5251 5252 5250 5252 5253 5254 5255 5256 5254 5256 5257 5258 5259 5260 5258 5260 5261 5262 5263 5264 5262 5264 5265 5266 5267 5268 5266 5268 5269 5270 5271 5272 5270 5272 5273 5274 5275 5276 5274 5276 5277 5278 5279 5280 5278 5280 5281 5282 5283 5284 5282 5284 5285 5286 5287 5288 5286 5288 5289 5290 5291 5292 5290 5292 5293 5294 5295 5296 5294 5296 5297 5298 5299 5300 5298 5300 5301 5302 5303 5304 5302 5304 5305 5306 5307 5308 5306 5308 5309 5310 5311 5312 5310 5312 5313 5314 5315 5316 5314 5316 5317 5318 5319 5320 5318 5320 5321 5322 5323 5324 5322 5324 5325 5326 5327 5328 5326 5328 5329 5330 5331 5332 5330 5332 5333 5334 5335 5336 5334 5336 5337 5338 5339 5340 5338 5340 5341 5342 5343 5344 5342 5344 5345 5346 5347 5348 5346 5348 5349 5350 5351 5352 5350 5352 5353 5354 5355 5356 5354 5356 5357 5358 5359 5360 5358 5360 5361 5362 5363 5364 5362 5364 5365 5366 5367 5368 5366 5368 5369 5370 5371 5372 5370 5372 5373 5374 5375 5376 5374 5376 5377 5378 5379 5380 5378 5380 5381 5382 5383 5384 5382 5384 5385 5386 5387 5388 5386 5388 5389 5390 5391 5392 5390 5392 5393 5394 5395 5396 5394 5396 5397 5398 5399 5400 5398 5400 5401 5402 5403 5404 5402 5404 5405 5406 5407 5408 5406 5408 5409 5410 5411 5412 5410 5412 5413 5414 5415 5416 5414 5416 5417 5418 5419 5420 5418 5420 5421 5422 5423 5424 5422 5424 5425 5426 5427 5428 5426 5428 5429 5430 5431 5432 5430 5432 5433 5434 5435 5436 5434 5436 5437 5438 5439 5440 5438 5440 5441 5442 5443 5444 5442 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5593 5595 5596 5597 5598 5599 5597 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5610 5612 5613 5614 5615 5616 5614 5616 5617 5618 5619 5620 5618 5620 5621 5622 5623 5624 5622 5624 5625 5626 5627 5628 5626 5628 5629 5630 5631 5632 5630 5632 5633 5634 5635 5636 5634 5636 5637 5638 5639 5640 5638 5640 5641 5642 5643 5644 5642 5644 5645 5646 5647 5648 5649 5650 5651 5649 5651 5652 5653 5654 5655 5653 5655 5656 5657 5658 5659 5657 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5670 5672 5673 5674 5675 5676 5674 5676 5677 5678 5679 5680 5678 5680 5681 5682 5683 5684 5682 5684 5685 5686 5687 5688 5686 5688 5689 5690 5691 5692 5690 5692 5693 5694 5695 5696 5697 5698 5699 5697 5699 5700 5701 5702 5703 5701 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5714 5716 5717 5718 5719 5720 5718 5720 5721 5722 5723 5724 5722 5724 5725 5726 5727 5728 5726 5728 5729 5730 5731 5732 5730 5732 5733 5734 5735 5736 5734 5736 5737 5738 5739 5740 5738 5740 5741 5742 5743 5744 5742 5744 5745 5746 5747 5748 5746 5748 5749 5750 5751 5752 5753 5754 5755 5753 5755 5756 5757 5758 5759 5757 5759 5760 5761 5762 5763 5761 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5774 5776 5777 5778 5779 5780 5778 5780 5781 5782 5783 5784 5782 5784 5785 5786 5787 5788 5786 5788 5789 5790 5791 5792 5790 5792 5793 5794 5795 5796 5794 5796 5797 5798 5799 5800 5798 5800 5801 5802 5803 5804 5802 5804 5805

-
-
-
-
- - - - - 0.2 0 0 0 0 0.2 0 -1.187411 0 0 0.2 0.7991223 0 0 0 1 - - - - - - - - - - - -0.9998822 0.01057715 -0.0111275 0.009105275 0.01387102 0.31177 -0.9500563 5.406124 -0.006579665 -0.9500988 -0.3118801 -22.78586 0 0 0 1 - - - - - - - - -
diff --git a/Cube4Fun/art.scnassets/texture.png b/Cube4Fun/art.scnassets/texture.png deleted file mode 100644 index ba39258..0000000 Binary files a/Cube4Fun/art.scnassets/texture.png and /dev/null differ diff --git a/Cube4Fun/list-add-2.png b/Cube4Fun/list-add-2.png deleted file mode 100644 index 69adf24..0000000 Binary files a/Cube4Fun/list-add-2.png and /dev/null differ diff --git a/Cube4Fun/list-remove-2.png b/Cube4Fun/list-remove-2.png deleted file mode 100644 index f2f85e8..0000000 Binary files a/Cube4Fun/list-remove-2.png and /dev/null differ diff --git a/Cube4Fun/media-playback-pause-5.png b/Cube4Fun/media-playback-pause-5.png deleted file mode 100644 index 39cce36..0000000 Binary files a/Cube4Fun/media-playback-pause-5.png and /dev/null differ diff --git a/Cube4Fun/media-playback-start-5.png b/Cube4Fun/media-playback-start-5.png deleted file mode 100644 index b58577c..0000000 Binary files a/Cube4Fun/media-playback-start-5.png and /dev/null differ diff --git a/Cube4Fun/media-seek-backward-5.png b/Cube4Fun/media-seek-backward-5.png deleted file mode 100644 index cc4e632..0000000 Binary files a/Cube4Fun/media-seek-backward-5.png and /dev/null differ diff --git a/Cube4Fun/media-seek-forward-5.png b/Cube4Fun/media-seek-forward-5.png deleted file mode 100644 index ef96448..0000000 Binary files a/Cube4Fun/media-seek-forward-5.png and /dev/null differ diff --git a/Cube4Fun/media-skip-backward-5.png b/Cube4Fun/media-skip-backward-5.png deleted file mode 100644 index af3447f..0000000 Binary files a/Cube4Fun/media-skip-backward-5.png and /dev/null differ diff --git a/Cube4Fun/media-skip-forward-5.png b/Cube4Fun/media-skip-forward-5.png deleted file mode 100644 index c19c35a..0000000 Binary files a/Cube4Fun/media-skip-forward-5.png and /dev/null differ diff --git a/Cube4Fun/view-sidetree.png b/Cube4Fun/view-sidetree.png deleted file mode 100644 index ef6524f..0000000 Binary files a/Cube4Fun/view-sidetree.png and /dev/null differ diff --git a/libPocoFoundationd.12.dylib b/libPocoFoundationd.12.dylib deleted file mode 100755 index 91fdc56..0000000 Binary files a/libPocoFoundationd.12.dylib and /dev/null differ diff --git a/libPocoNet.12.dylib b/libPocoNet.12.dylib deleted file mode 100755 index 9025e7c..0000000 Binary files a/libPocoNet.12.dylib and /dev/null differ