diff --git a/examples/js/loaders/gltf/glTF-parser.js b/examples/js/loaders/gltf/glTF-parser.js index 30476f7b291b0086a4c81871708a41239df66c3b..0a0ac30482fa860073615ba0f87efc7aa7c76ec1 100755 --- a/examples/js/loaders/gltf/glTF-parser.js +++ b/examples/js/loaders/gltf/glTF-parser.js @@ -22,364 +22,374 @@ // THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. /* - The Abstract Loader has two modes: - #1: [static] load all the JSON at once [as of now] - #2: [stream] stream and parse JSON progressively [not yet supported] + The Abstract Loader has two modes: + #1: [static] load all the JSON at once [as of now] + #2: [stream] stream and parse JSON progressively [not yet supported] - Whatever is the mechanism used to parse the JSON (#1 or #2), - The loader starts by resolving the paths to binaries and referenced json files (by replace the value of the path property with an absolute path if it was relative). + Whatever is the mechanism used to parse the JSON (#1 or #2), + The loader starts by resolving the paths to binaries and referenced json files (by replace the value of the path property with an absolute path if it was relative). - In case #1: it is guaranteed to call the concrete loader implementation methods in a order that solves the dependencies between the entries. - only the nodes requires an extra pass to set up the hirerarchy. - In case #2: the concrete implementation will have to solve the dependencies. no order is guaranteed. + In case #1: it is guaranteed to call the concrete loader implementation methods in a order that solves the dependencies between the entries. + only the nodes requires an extra pass to set up the hirerarchy. + In case #2: the concrete implementation will have to solve the dependencies. no order is guaranteed. - When case #1 is used the followed dependency order is: + When case #1 is used the followed dependency order is: - scenes -> nodes -> meshes -> materials -> techniques -> shaders - -> buffers - -> cameras - -> lights + scenes -> nodes -> meshes -> materials -> techniques -> shaders + -> buffers + -> cameras + -> lights - The readers starts with the leafs, i.e: - shaders, techniques, materials, meshes, buffers, cameras, lights, nodes, scenes + The readers starts with the leafs, i.e: + shaders, techniques, materials, meshes, buffers, cameras, lights, nodes, scenes - For each called handle method called the client should return true if the next handle can be call right after returning, - or false if a callback on client side will notify the loader that the next handle method can be called. + For each called handle method called the client should return true if the next handle can be call right after returning, + or false if a callback on client side will notify the loader that the next handle method can be called. */ var global = window; (function (root, factory) { if (typeof exports === 'object') { - // Node. Does not work with strict CommonJS, but - // only CommonJS-like enviroments that support module.exports, - // like Node. + // Node. Does not work with strict CommonJS, but + // only CommonJS-like enviroments that support module.exports, + // like Node. factory(module.exports); } else if (typeof define === 'function' && define.amd) { - // AMD. Register as an anonymous module. + // AMD. Register as an anonymous module. define([], function () { return factory(root); }); } else { - // Browser globals + // Browser globals factory(root); } }(this, function (root) { "use strict"; - var categoriesDepsOrder = [ "buffers", "bufferViews", "images", "videos", "samplers", "textures", "shaders", "programs", "techniques", "materials", "accessors", "meshes", "cameras", "lights", "skins", "nodes", "scenes", "animations" ]; + var categoriesDepsOrder = ["extensions", "buffers", "bufferViews", "images", "videos", "samplers", "textures", "shaders", "programs", "techniques", "materials", "accessors", "meshes", "cameras", "lights", "skins", "nodes", "animations", "scenes"]; var glTFParser = Object.create(Object.prototype, { - _rootDescription: { value: null, writable: true }, + _rootDescription: { value: null, writable: true }, - rootDescription: { - set: function(value) { - this._rootDescription = value; - }, - get: function() { - return this._rootDescription; - } - }, - - baseURL: { value: null, writable: true }, + rootDescription: { + set: function(value) { + this._rootDescription = value; + }, + get: function() { + return this._rootDescription; + } + }, - //detect absolute path following the same protocol than window.location - _isAbsolutePath: { - value: function(path) { - var isAbsolutePathRegExp = new RegExp("^" + window.location.protocol, "i"); + baseURL: { value: null, writable: true }, - return path.match(isAbsolutePathRegExp) ? true : false; - } - }, + //detect absolute path following the same protocol than window.location + _isAbsolutePath: { + value: function(path) { + var isAbsolutePathRegExp = new RegExp("^"+window.location.protocol, "i"); - resolvePathIfNeeded: { - value: function(path) { - if (this._isAbsolutePath(path)) { - return path; - } + return path.match(isAbsolutePathRegExp) ? true : false; + } + }, - return this.baseURL + path; - } - }, - - _resolvePathsForCategories: { - value: function(categories) { - categories.forEach( function(category) { - var descriptions = this.json[category]; - if (descriptions) { - var descriptionKeys = Object.keys(descriptions); - descriptionKeys.forEach( function(descriptionKey) { - var description = descriptions[descriptionKey]; - description.path = this.resolvePathIfNeeded(description.path); - }, this); - } - }, this); - } - }, - - _json: { - value: null, - writable: true - }, - - json: { - enumerable: true, - get: function() { - return this._json; - }, - set: function(value) { - if (this._json !== value) { - this._json = value; - this._resolvePathsForCategories([ "buffers", "shaders", "images", "videos" ]); - } - } - }, - - _path: { - value: null, - writable: true - }, - - getEntryDescription: { - value: function (entryID, entryType) { - var entries = null; - - var category = entryType; - entries = this.rootDescription[category]; - if (!entries) { - console.log("ERROR:CANNOT find expected category named:" + category); - return null; - } + resolvePathIfNeeded: { + value: function(path) { + if (this._isAbsolutePath(path)) { + return path; + } - return entries ? entries[entryID] : null; - } - }, + var isDataUriRegex = /^data:/; + if (isDataUriRegex.test(path)) { + return path; + } + + return this.baseURL + path; + } + }, + + _resolvePathsForCategories: { + value: function(categories) { + categories.forEach( function(category) { + var descriptions = this.json[category]; + if (descriptions) { + var descriptionKeys = Object.keys(descriptions); + descriptionKeys.forEach( function(descriptionKey) { + var description = descriptions[descriptionKey]; + description.uri = this.resolvePathIfNeeded(description.uri); + }, this); + } + }, this); + } + }, + + _json: { + value: null, + writable: true + }, + + json: { + enumerable: true, + get: function() { + return this._json; + }, + set: function(value) { + if (this._json !== value) { + this._json = value; + this._resolvePathsForCategories(["buffers", "shaders", "images", "videos"]); + } + } + }, + + _path: { + value: null, + writable: true + }, + + getEntryDescription: { + value: function (entryID, entryType) { + var entries = null; + + var category = entryType; + entries = this.rootDescription[category]; + if (!entries) { + console.log("ERROR:CANNOT find expected category named:"+category); + return null; + } - _stepToNextCategory: { - value: function() { - this._state.categoryIndex = this.getNextCategoryIndex(this._state.categoryIndex + 1); - if (this._state.categoryIndex !== -1) { - this._state.categoryState.index = 0; - return true; - } + return entries ? entries[entryID] : null; + } + }, + + _stepToNextCategory: { + value: function() { + this._state.categoryIndex = this.getNextCategoryIndex(this._state.categoryIndex + 1); + if (this._state.categoryIndex !== -1) { + this._state.categoryState.index = 0; + return true; + } - return false; - } - }, - - _stepToNextDescription: { - enumerable: false, - value: function() { - var categoryState = this._state.categoryState; - var keys = categoryState.keys; - if (!keys) { - console.log("INCONSISTENCY ERROR"); - return false; - } + return false; + } + }, + + _stepToNextDescription: { + enumerable: false, + value: function() { + var categoryState = this._state.categoryState; + var keys = categoryState.keys; + if (!keys) { + console.log("INCONSISTENCY ERROR"); + return false; + } - categoryState.index ++; - categoryState.keys = null; - if (categoryState.index >= keys.length) { - return this._stepToNextCategory(); - } - return false; - } - }, - - hasCategory: { - value: function(category) { - return this.rootDescription[category] ? true : false; - } - }, - - _handleState: { - value: function() { - - var methodForType = { - "buffers" : this.handleBuffer, - "bufferViews" : this.handleBufferView, - "shaders" : this.handleShader, - "programs" : this.handleProgram, - "techniques" : this.handleTechnique, - "materials" : this.handleMaterial, - "meshes" : this.handleMesh, - "cameras" : this.handleCamera, - "lights" : this.handleLight, - "nodes" : this.handleNode, - "scenes" : this.handleScene, - "images" : this.handleImage, - "animations" : this.handleAnimation, - "accessors" : this.handleAccessor, - "skins" : this.handleSkin, - "samplers" : this.handleSampler, - "textures" : this.handleTexture, - "videos" : this.handleVideo - - }; - - var success = true; - while (this._state.categoryIndex !== -1) { - var category = categoriesDepsOrder[this._state.categoryIndex]; - var categoryState = this._state.categoryState; - var keys = categoryState.keys; - if (!keys) { - categoryState.keys = keys = Object.keys(this.rootDescription[category]); - if (keys) { - if (keys.length == 0) { - this._stepToNextDescription(); - continue; + categoryState.index++; + categoryState.keys = null; + if (categoryState.index >= keys.length) { + return this._stepToNextCategory(); } + return false; } - } + }, - var type = category; - var entryID = keys[categoryState.index]; - var description = this.getEntryDescription(entryID, type); - if (!description) { - if (this.handleError) { - this.handleError("INCONSISTENCY ERROR: no description found for entry " + entryID); - success = false; - break; + hasCategory: { + value: function(category) { + return this.rootDescription[category] ? true : false; } - } else { + }, + + _handleState: { + value: function() { + + var methodForType = { + "buffers" : this.handleBuffer, + "bufferViews" : this.handleBufferView, + "shaders" : this.handleShader, + "programs" : this.handleProgram, + "techniques" : this.handleTechnique, + "materials" : this.handleMaterial, + "meshes" : this.handleMesh, + "cameras" : this.handleCamera, + "lights" : this.handleLight, + "nodes" : this.handleNode, + "scenes" : this.handleScene, + "images" : this.handleImage, + "animations" : this.handleAnimation, + "accessors" : this.handleAccessor, + "skins" : this.handleSkin, + "samplers" : this.handleSampler, + "textures" : this.handleTexture, + "videos" : this.handleVideo, + "extensions" : this.handleExtension, + + }; + + var success = true; + while (this._state.categoryIndex !== -1) { + var category = categoriesDepsOrder[this._state.categoryIndex]; + var categoryState = this._state.categoryState; + var keys = categoryState.keys; + if (!keys) { + categoryState.keys = keys = Object.keys(this.rootDescription[category]); + if (keys) { + if (keys.length == 0) { + this._stepToNextDescription(); + continue; + } + } + } + + var type = category; + var entryID = keys[categoryState.index]; + var description = this.getEntryDescription(entryID, type); + if (!description) { + if (this.handleError) { + this.handleError("INCONSISTENCY ERROR: no description found for entry "+entryID); + success = false; + break; + } + } else { + + if (methodForType[type]) { + if (methodForType[type].call(this, entryID, description, this._state.userInfo) === false) { + success = false; + break; + } + } + + this._stepToNextDescription(); + } + } - if (methodForType[type]) { - if (methodForType[type].call(this, entryID, description, this._state.userInfo) === false) { - success = false; - break; + if (this.handleLoadCompleted) { + this.handleLoadCompleted(success); } - } - this._stepToNextDescription(); - } - } + } + }, + + _loadJSONIfNeeded: { + enumerable: true, + value: function(callback) { + var self = this; + //FIXME: handle error + if (!this._json) { + var jsonPath = this._path; + var i = jsonPath.lastIndexOf("/"); + this.baseURL = (i !== 0) ? jsonPath.substring(0, i + 1) : ''; + var jsonfile = new XMLHttpRequest(); + jsonfile.open("GET", jsonPath, true); + jsonfile.onreadystatechange = function() { + if (jsonfile.readyState == 4) { + if (jsonfile.status == 200) { + self.json = JSON.parse(jsonfile.responseText); + if (callback) { + callback(self.json); + } + } + } + }; + jsonfile.send(null); + } else { + if (callback) { + callback(this.json); + } + } + } + }, + + /* load JSON and assign it as description to the reader */ + _buildLoader: { + value: function(callback) { + var self = this; + function JSONReady(json) { + self.rootDescription = json; + if (callback) + callback(this); + } - if (this.handleLoadCompleted) { - this.handleLoadCompleted(success); - } + this._loadJSONIfNeeded(JSONReady); + } + }, + + _state: { value: null, writable: true }, + + _getEntryType: { + value: function(entryID) { + var rootKeys = categoriesDepsOrder; + for (var i = 0 ; i < rootKeys.length ; i++) { + var rootValues = this.rootDescription[rootKeys[i]]; + if (rootValues) { + return rootKeys[i]; + } + } + return null; + } + }, + + getNextCategoryIndex: { + value: function(currentIndex) { + for (var i = currentIndex ; i < categoriesDepsOrder.length ; i++) { + if (this.hasCategory(categoriesDepsOrder[i])) { + return i; + } + } - } - }, - - _loadJSONIfNeeded: { - enumerable: true, - value: function(callback) { - var self = this; - //FIXME: handle error - if (!this._json) { - var jsonPath = this._path; - var i = jsonPath.lastIndexOf("/"); - this.baseURL = (i !== 0) ? jsonPath.substring(0, i + 1) : ''; - var jsonfile = new XMLHttpRequest(); - jsonfile.open("GET", jsonPath, true); - jsonfile.addEventListener( 'load', function ( event ) { - self.json = JSON.parse(jsonfile.responseText); - if (callback) { - callback(self.json); + return -1; } - }, false ); - jsonfile.send(null); - } else { - if (callback) { - callback(this.json); - } - } - } - }, - - /* load JSON and assign it as description to the reader */ - _buildLoader: { - value: function(callback) { - var self = this; - function JSONReady(json) { - self.rootDescription = json; - if (callback) - callback(this); - } + }, + + load: { + enumerable: true, + value: function(userInfo, options) { + var self = this; + this._buildLoader(function loaderReady(reader) { + var startCategory = self.getNextCategoryIndex.call(self,0); + if (startCategory !== -1) { + self._state = { "userInfo" : userInfo, + "options" : options, + "categoryIndex" : startCategory, + "categoryState" : { "index" : "0" } }; + self._handleState(); + } + }); + } + }, - this._loadJSONIfNeeded(JSONReady); - } - }, + initWithPath: { + value: function(path) { + this._path = path; + this._json = null; + return this; + } + }, - _state: { value: null, writable: true }, + //this is meant to be global and common for all instances + _knownURLs: { writable: true, value: {} }, - _getEntryType: { - value: function(entryID) { - var rootKeys = categoriesDepsOrder; - for (var i = 0 ; i < rootKeys.length ; i ++) { - var rootValues = this.rootDescription[rootKeys[i]]; - if (rootValues) { - return rootKeys[i]; - } - } - return null; - } - }, - - getNextCategoryIndex: { - value: function(currentIndex) { - for (var i = currentIndex ; i < categoriesDepsOrder.length ; i ++) { - if (this.hasCategory(categoriesDepsOrder[i])) { - return i; + //to be invoked by subclass, so that ids can be ensured to not overlap + loaderContext: { + value: function() { + if (typeof this._knownURLs[this._path] === "undefined") { + this._knownURLs[this._path] = Object.keys(this._knownURLs).length; + } + return "__" + this._knownURLs[this._path]; + } + }, + + initWithJSON: { + value: function(json, baseURL) { + this.json = json; + this.baseURL = baseURL; + if (!baseURL) { + console.log("WARNING: no base URL passed to Reader:initWithJSON"); + } + return this; + } } - } - return -1; - } - }, - - load: { - enumerable: true, - value: function(userInfo, options) { - var self = this; - this._buildLoader(function loaderReady(reader) { - var startCategory = self.getNextCategoryIndex.call(self, 0); - if (startCategory !== -1) { - self._state = { "userInfo" : userInfo, - "options" : options, - "categoryIndex" : startCategory, - "categoryState" : { "index" : "0" } }; - self._handleState(); - } }); - } - }, - - initWithPath: { - value: function(path) { - this._path = path; - this._json = null; - return this; - } - }, - - //this is meant to be global and common for all instances - _knownURLs: { writable: true, value: {} }, - - //to be invoked by subclass, so that ids can be ensured to not overlap - loaderContext: { - value: function() { - if (typeof this._knownURLs[this._path] === "undefined") { - this._knownURLs[this._path] = Object.keys(this._knownURLs).length; - } - return "__" + this._knownURLs[this._path]; - } - }, - - initWithJSON: { - value: function(json, baseURL) { - this.json = json; - this.baseURL = baseURL; - if (!baseURL) { - console.log("WARNING: no base URL passed to Reader:initWithJSON"); - } - return this; - } - } - - }); - if (root) { + if(root) { root.glTFParser = glTFParser; } diff --git a/examples/js/loaders/gltf/glTFAnimation.js b/examples/js/loaders/gltf/glTFAnimation.js index 0e39da14b1d9d313d606d8e9f1adc4a23ede5210..735e5f1e2a437201e0f68bbf03e6b75850973b68 100644 --- a/examples/js/loaders/gltf/glTFAnimation.js +++ b/examples/js/loaders/gltf/glTFAnimation.js @@ -24,7 +24,7 @@ THREE.glTFAnimator = ( function () { update : function() { - for (i = 0; i < animators.length; i ++) + for (i = 0; i < animators.length; i++) { animators[i].update(); } @@ -45,18 +45,18 @@ THREE.glTFAnimation = function(interps) { this.createInterpolators(interps); } -}; +} THREE.glTFAnimation.prototype.createInterpolators = function(interps) { var i, len = interps.length; - for (i = 0; i < len; i ++) + for (i = 0; i < len; i++) { var interp = new THREE.glTFInterpolator(interps[i]); this.interps.push(interp); this.duration = Math.max(this.duration, interp.duration); } -}; +} // Start/stop THREE.glTFAnimation.prototype.play = function() @@ -67,13 +67,13 @@ THREE.glTFAnimation.prototype.play = function() this.startTime = Date.now(); this.running = true; THREE.glTFAnimator.add(this); -}; +} THREE.glTFAnimation.prototype.stop = function() { this.running = false; THREE.glTFAnimator.remove(this); -}; +} // Update - drive key frame evaluation THREE.glTFAnimation.prototype.update = function() @@ -90,7 +90,7 @@ THREE.glTFAnimation.prototype.update = function() { this.running = false; var i, len = this.interps.length; - for (i = 0; i < len; i ++) + for (i = 0; i < len; i++) { this.interps[i].interp(this.duration); } @@ -100,12 +100,12 @@ THREE.glTFAnimation.prototype.update = function() else { var i, len = this.interps.length; - for (i = 0; i < len; i ++) + for (i = 0; i < len; i++) { this.interps[i].interp(t); } } -}; +} //Interpolator class //Construction/initialization @@ -147,7 +147,7 @@ THREE.glTFInterpolator = function(param) this.quat1 = new THREE.Quaternion; this.quat2 = new THREE.Quaternion; this.quat3 = new THREE.Quaternion; -}; +} //Interpolation and tweening methods THREE.glTFInterpolator.prototype.interp = function(t) @@ -202,7 +202,7 @@ THREE.glTFInterpolator.prototype.interp = function(t) } else { - for (i = 0; i < this.count - 1; i ++) + for (i = 0; i < this.count - 1; i++) { var key1 = this.keys[i]; var key2 = this.keys[i + 1]; @@ -238,7 +238,7 @@ THREE.glTFInterpolator.prototype.interp = function(t) { this.copyValue(this.target); } -}; +} THREE.glTFInterpolator.prototype.copyValue = function(target) { @@ -248,4 +248,4 @@ THREE.glTFInterpolator.prototype.copyValue = function(target) { else { target.copy(this.vec3); } -}; +} diff --git a/examples/js/loaders/gltf/glTFLoader.js b/examples/js/loaders/gltf/glTFLoader.js index bc7bfd7afdd45427f6fa5d54d1a0b89e67011a72..47a3f2f3366abf6df28880b04bc47df0cda02f34 100644 --- a/examples/js/loaders/gltf/glTFLoader.js +++ b/examples/js/loaders/gltf/glTFLoader.js @@ -3,7 +3,8 @@ */ -THREE.glTFLoader = function () { +THREE.glTFLoader = function (showStatus) { + this.meshesRequested = 0; this.meshesLoaded = 0; this.pendingMeshes = []; @@ -13,79 +14,312 @@ THREE.glTFLoader = function () { this.shadersRequested = 0; this.shadersLoaded = 0; this.shaders = {}; - THREE.Loader.call( this ); -}; + this.loadRequests = []; + THREE.glTFShaders.removeAll(); + THREE.Loader.call( this, showStatus ); +} -THREE.glTFLoader.prototype = Object.create( THREE.Loader.prototype ); +THREE.glTFLoader.prototype = new THREE.Loader(); THREE.glTFLoader.prototype.constructor = THREE.glTFLoader; THREE.glTFLoader.prototype.load = function( url, callback ) { - + var theLoader = this; // Utilities function RgbArraytoHex(colorArray) { - if (!colorArray) return 0xFFFFFFFF; + if(!colorArray) return 0xFFFFFFFF; var r = Math.floor(colorArray[0] * 255), - g = Math.floor(colorArray[1] * 255), - b = Math.floor(colorArray[2] * 255), - a = 255; + g = Math.floor(colorArray[1] * 255), + b = Math.floor(colorArray[2] * 255), + a = 255; var color = (a << 24) + (r << 16) + (g << 8) + b; return color; } + + function componentsPerElementForGLType(type) { + switch(type) { + case "SCALAR" : + nElements = 1; + break; + case "VEC2" : + nElements = 2; + break; + case "VEC3" : + nElements = 3; + break; + case "VEC4" : + nElements = 4; + break; + case "MAT2" : + nElements = 4; + break; + case "MAT3" : + nElements = 9; + break; + case "MAT4" : + nElements = 16; + break; + default : + debugger; + break; + } + + return nElements; + } + + function replaceShaderDefinitions(shader, material) { + + // Three.js seems too dependent on attribute names so globally + // replace those in the shader code + var program = material.params.program; + var shaderParams = material.params.technique.parameters; + var shaderAttributes = material.params.technique.attributes; + var params = {}; + + for (var attribute in material.params.attributes) { + var pname = shaderAttributes[attribute]; + var shaderParam = shaderParams[pname]; + var semantic = shaderParam.semantic; + if (semantic) { + params[attribute] = shaderParam; + } + } + + + var s = shader; + var r = ""; + for (var pname in params) { + var param = params[pname]; + var semantic = param.semantic; + + r = eval("/" + pname + "/g"); + + switch (semantic) { + case "POSITION" : + s = s.replace(r, 'position'); + break; + case "NORMAL" : + s = s.replace(r, 'normal'); + break; + case "TEXCOORD_0" : + s = s.replace(r, 'uv'); + break; + case "WEIGHT" : + s = s.replace(r, 'skinWeight'); + break; + case "JOINT" : + s = s.replace(r, 'skinIndex'); + break; + default : + break; + } - function convertAxisAngleToQuaternion(rotations, count) - { - var q = new THREE.Quaternion; - var axis = new THREE.Vector3; - var euler = new THREE.Vector3; - - var i; - for (i = 0; i < count; i ++) { - axis.set(rotations[i * 4], rotations[i * 4 + 1], - rotations[i * 4 + 2]).normalize(); - var angle = rotations[i * 4 + 3]; - q.setFromAxisAngle(axis, angle); - rotations[i * 4] = q.x; - rotations[i * 4 + 1] = q.y; - rotations[i * 4 + 2] = q.z; - rotations[i * 4 + 3] = q.w; } + + return s; } - function componentsPerElementForGLType(glType) { - switch (glType) { - case WebGLRenderingContext.FLOAT : - case WebGLRenderingContext.UNSIGNED_BYTE : - case WebGLRenderingContext.UNSIGNED_SHORT : - return 1; - case WebGLRenderingContext.FLOAT_VEC2 : - return 2; - case WebGLRenderingContext.FLOAT_VEC3 : - return 3; - case WebGLRenderingContext.FLOAT_VEC4 : - return 4; - case WebGLRenderingContext.FLOAT_MAT4 : - return 16; - default: - return null; + function replaceShaderSemantics(material) { + + var vertexShader = theLoader.shaders[material.params.vertexShader]; + if (vertexShader) { + vertexShader = replaceShaderDefinitions(vertexShader, material); + theLoader.shaders[material.params.vertexShader] = vertexShader; + } + + } + + function createShaderMaterial(material) { + + // replace named attributes and uniforms with Three.js built-ins + replaceShaderSemantics(material); + + var fragmentShader = theLoader.shaders[material.params.fragmentShader]; + if (!fragmentShader) { + console.log("ERROR: Missing fragment shader definition:", material.params.fragmentShader); + return new THREE.MeshPhongMaterial; + } + + var vertexShader = theLoader.shaders[material.params.vertexShader]; + if (!vertexShader) { + console.log("ERROR: Missing vertex shader definition:", material.params.vertexShader); + return new THREE.MeshPhongMaterial; + } + + // clone most uniforms but then clobber textures, we want them to + // be reused + var uniforms = THREE.UniformsUtils.clone(material.params.uniforms); + for (uniform in material.params.uniforms) { + var src = material.params.uniforms[uniform]; + var dst = uniforms[uniform]; + if (dst.type == "t") { + dst.value = src.value; + } } + + var shaderMaterial = new THREE.RawShaderMaterial( { + + fragmentShader: fragmentShader, + vertexShader: vertexShader, + uniforms: uniforms, + transparent: material.params.transparent, + + } ); + +// console.log("New shader material") + return shaderMaterial; } function LoadTexture(src) { - if (!src) { return null; } + if(!src) { return null; } + + var isDataUriRegex = /^data:/; + + var loadImage = function(url, success, error) { + var image = new Image(); + + image.onload = function() { + success(image); + }; + + if (typeof error !== 'undefined') { + image.onerror = error; + } + + image.src = url; + }; + + function loadImageFromTypedArray(uint8Array, format) { + //>>includeStart('debug', pragmas.debug); + if (!defined(uint8Array)) { + throw new DeveloperError('uint8Array is required.'); + } + + if (!defined(format)) { + throw new DeveloperError('format is required.'); + } + //>>includeEnd('debug'); + + var blob = new Blob([uint8Array], { + type : format + }); + + }; + + function decodeDataUriText(isBase64, data) { + var result = decodeURIComponent(data); + if (isBase64) { + return atob(result); + } + return result; + } + + function decodeDataUriArrayBuffer(isBase64, data) { + var byteString = decodeDataUriText(isBase64, data); + var buffer = new ArrayBuffer(byteString.length); + var view = new Uint8Array(buffer); + for (var i = 0; i < byteString.length; i++) { + view[i] = byteString.charCodeAt(i); + } + return buffer; + } + + function decodeDataUri(dataUriRegexResult, responseType) { + responseType = typeof responseType !== 'undefined' ? responseType : ''; + var mimeType = dataUriRegexResult[1]; + var isBase64 = !!dataUriRegexResult[2]; + var data = dataUriRegexResult[3]; + + switch (responseType) { + case '': + case 'text': + return decodeDataUriText(isBase64, data); + case 'ArrayBuffer': + return decodeDataUriArrayBuffer(isBase64, data); + case 'blob': + var buffer = decodeDataUriArrayBuffer(isBase64, data); + return new Blob([buffer], { + type : mimeType + }); + case 'document': + var parser = new DOMParser(); + return parser.parseFromString(decodeDataUriText(isBase64, data), mimeType); + case 'json': + return JSON.parse(decodeDataUriText(isBase64, data)); + default: + throw 'Unhandled responseType: ' + responseType; + } + } + + var dataUriRegex = /^data:(.*?)(;base64)?,(.*)$/; + var dataUriRegexResult = dataUriRegex.exec(src); + if (dataUriRegexResult !== null) { + var texture = new THREE.Texture; + var blob = decodeDataUri(dataUriRegexResult, 'blob'); + var blobUrl = window.URL.createObjectURL(blob); + loadImage(blobUrl, function(img) { + texture.image = img; + texture.needsUpdate = true; + }); + return texture; + } + return new THREE.TextureLoader().load(src); } - // Geometry processing + function CreateTexture(resources, resource) { + var texturePath = null; + var textureParams = null; + + if (resource) + { + var texture = resource; + if (texture) { + var textureEntry = resources.getEntry(texture); + if (textureEntry) { + { + var imageEntry = resources.getEntry(textureEntry.description.source); + if (imageEntry) { + texturePath = imageEntry.description.uri; + } + + var samplerEntry = resources.getEntry(textureEntry.description.sampler); + if (samplerEntry) { + textureParams = samplerEntry.description; + } + } + } + } + } - var ClassicGeometry = function() { + var texture = LoadTexture(texturePath); + if (texture && textureParams) { + + if (textureParams.wrapS == WebGLRenderingContext.REPEAT) + texture.wrapS = THREE.RepeatWrapping; + + if (textureParams.wrapT == WebGLRenderingContext.REPEAT) + texture.wrapT = THREE.RepeatWrapping; + + if (textureParams.magFilter == WebGLRenderingContext.LINEAR) + texture.magFilter = THREE.LinearFilter; + +// if (textureParams.minFilter == "LINEAR") +// texture.minFilter = THREE.LinearFilter; + } + + return texture; + } + + // Geometry processing - this.geometry = new THREE.BufferGeometry(); + var ClassicGeometry = function() { + this.geometry = new THREE.BufferGeometry; this.totalAttributes = 0; this.loadedAttributes = 0; this.indicesLoaded = false; @@ -100,34 +334,40 @@ THREE.glTFLoader.prototype.load = function( url, callback ) { ClassicGeometry.prototype.constructor = ClassicGeometry; ClassicGeometry.prototype.buildBufferGeometry = function() { - // Build indexed mesh + // Build indexed mesh var geometry = this.geometry; + geometry.setIndex(new THREE.BufferAttribute( this.indexArray, 1 ) ); - geometry.setIndex( new THREE.BufferAttribute( this.indexArray, 1 ) ); - geometry.addGroup( 0, this.indexArray.length ); + var offset = { + start: 0, + index: 0, + count: this.indexArray.length + }; - geometry.computeBoundingSphere(); - }; + geometry.groups.push( offset ); + geometry.computeBoundingSphere(); + } + ClassicGeometry.prototype.checkFinished = function() { - if (this.indexArray && this.loadedAttributes === this.totalAttributes) { - + if(this.indexArray && this.loadedAttributes === this.totalAttributes) { + this.buildBufferGeometry(); - + this.finished = true; - if (this.onload) { + if(this.onload) { this.onload(); } } }; - // Delegate for processing index buffers + // Delegate for processing index buffers var IndicesDelegate = function() {}; IndicesDelegate.prototype.handleError = function(errorCode, info) { - // FIXME: report error - console.log("ERROR(IndicesDelegate):" + errorCode + ":" + info); + // FIXME: report error + console.log("ERROR(IndicesDelegate):"+errorCode+":"+info); }; IndicesDelegate.prototype.convert = function(resource, ctx) { @@ -147,13 +387,13 @@ THREE.glTFLoader.prototype.load = function( url, callback ) { this.indices = indices; this.geometry = geometry; }; - - // Delegate for processing vertex attribute buffers + + // Delegate for processing vertex attribute buffers var VertexAttributeDelegate = function() {}; VertexAttributeDelegate.prototype.handleError = function(errorCode, info) { - // FIXME: report error - console.log("ERROR(VertexAttributeDelegate):" + errorCode + ":" + info); + // FIXME: report error + console.log("ERROR(VertexAttributeDelegate):"+errorCode+":"+info); }; VertexAttributeDelegate.prototype.convert = function(resource, ctx) { @@ -161,50 +401,6 @@ THREE.glTFLoader.prototype.load = function( url, callback ) { }; - - VertexAttributeDelegate.prototype.arrayResourceAvailable = function(glResource, ctx) { - var geom = ctx.geometry; - var attribute = ctx.attribute; - var semantic = ctx.semantic; - var floatArray; - var i, l; - //FIXME: Float32 is assumed here, but should be checked. - - if (semantic == "POSITION") { - // TODO: Should be easy to take strides into account here - floatArray = new Float32Array(glResource, 0, attribute.count * componentsPerElementForGLType(attribute.type)); - for (i = 0, l = floatArray.length; i < l; i += 3) { - geom.geometry.vertices.push( new THREE.Vector3( floatArray[i], floatArray[i + 1], floatArray[i + 2] ) ); - } - } else if (semantic == "NORMAL") { - geom.geometry.normals = []; - floatArray = new Float32Array(glResource, 0, attribute.count * componentsPerElementForGLType(attribute.type)); - for (i = 0, l = floatArray.length; i < l; i += 3) { - geom.geometry.normals.push( new THREE.Vector3( floatArray[i], floatArray[i + 1], floatArray[i + 2] ) ); - } - } else if ((semantic == "TEXCOORD_0") || (semantic == "TEXCOORD" )) { - geom.uvs = []; - floatArray = new Float32Array(glResource, 0, attribute.count * componentsPerElementForGLType(attribute.type)); - for (i = 0, l = floatArray.length; i < l; i += 2) { - geom.uvs.push( new THREE.Vector2( floatArray[i], 1.0 - floatArray[i + 1] ) ); - } - } - else if (semantic == "WEIGHT") { - nComponents = componentsPerElementForGLType(attribute.type); - floatArray = new Float32Array(glResource, 0, attribute.count * nComponents); - for (i = 0, l = floatArray.length; i < l; i += 4) { - geom.geometry.skinWeights.push( new THREE.Vector4( floatArray[i], floatArray[i + 1], floatArray[i + 2], floatArray[i + 3] ) ); - } - } - else if (semantic == "JOINT") { - nComponents = componentsPerElementForGLType(attribute.type); - floatArray = new Float32Array(glResource, 0, attribute.count * nComponents); - for (i = 0, l = floatArray.length; i < l; i += 4) { - geom.geometry.skinIndices.push( new THREE.Vector4( floatArray[i], floatArray[i + 1], floatArray[i + 2], floatArray[i + 3] ) ); - } - } - }; - VertexAttributeDelegate.prototype.bufferResourceAvailable = function(glResource, ctx) { var geom = ctx.geometry; var attribute = ctx.attribute; @@ -212,43 +408,44 @@ THREE.glTFLoader.prototype.load = function( url, callback ) { var floatArray; var i, l; var nComponents; - //FIXME: Float32 is assumed here, but should be checked. + //FIXME: Float32 is assumed here, but should be checked. if (semantic == "POSITION") { - // TODO: Should be easy to take strides into account here + // TODO: Should be easy to take strides into account here floatArray = new Float32Array(glResource, 0, attribute.count * componentsPerElementForGLType(attribute.type)); geom.geometry.addAttribute( 'position', new THREE.BufferAttribute( floatArray, 3 ) ); } else if (semantic == "NORMAL") { - floatArray = new Float32Array(glResource, 0, attribute.count * componentsPerElementForGLType(attribute.type)); + nComponents = componentsPerElementForGLType(attribute.type); + floatArray = new Float32Array(glResource, 0, attribute.count * nComponents); geom.geometry.addAttribute( 'normal', new THREE.BufferAttribute( floatArray, 3 ) ); } else if ((semantic == "TEXCOORD_0") || (semantic == "TEXCOORD" )) { - + nComponents = componentsPerElementForGLType(attribute.type); floatArray = new Float32Array(glResource, 0, attribute.count * nComponents); - // N.B.: flip Y value... should we just set texture.flipY everywhere? - for (i = 0; i < floatArray.length / 2; i ++) { - floatArray[i * 2 + 1] = 1.0 - floatArray[i * 2 + 1]; + // N.B.: flip Y value... should we just set texture.flipY everywhere? + for (i = 0; i < floatArray.length / 2; i++) { + floatArray[i*2+1] = 1.0 - floatArray[i*2+1]; } geom.geometry.addAttribute( 'uv', new THREE.BufferAttribute( floatArray, nComponents ) ); } - else if (semantic == "WEIGHT") { - nComponents = componentsPerElementForGLType(attribute.type); - floatArray = new Float32Array(glResource, 0, attribute.count * nComponents); - geom.geometry.addAttribute( 'skinWeight', new THREE.BufferAttribute( floatArray, nComponents ) ); - } - else if (semantic == "JOINT") { - nComponents = componentsPerElementForGLType(attribute.type); - floatArray = new Float32Array(glResource, 0, attribute.count * nComponents); - geom.geometry.addAttribute( 'skinIndex', new THREE.BufferAttribute( floatArray, nComponents ) ); - } - }; - + else if (semantic == "WEIGHT") { + nComponents = componentsPerElementForGLType(attribute.type); + floatArray = new Float32Array(glResource, 0, attribute.count * nComponents); + geom.geometry.addAttribute( 'skinWeight', new THREE.BufferAttribute( floatArray, nComponents ) ); + } + else if (semantic == "JOINT") { + nComponents = componentsPerElementForGLType(attribute.type); + floatArray = new Float32Array(glResource, 0, attribute.count * nComponents); + geom.geometry.addAttribute( 'skinIndex', new THREE.BufferAttribute( floatArray, nComponents ) ); + } + } + VertexAttributeDelegate.prototype.resourceAvailable = function(glResource, ctx) { this.bufferResourceAvailable(glResource, ctx); - + var geom = ctx.geometry; - geom.loadedAttributes ++; + geom.loadedAttributes++; geom.checkFinished(); return true; }; @@ -269,28 +466,28 @@ THREE.glTFLoader.prototype.load = function( url, callback ) { }; Mesh.prototype.addPrimitive = function(geometry, material) { - + var self = this; geometry.onload = function() { - self.loadedGeometry ++; + self.loadedGeometry++; self.checkComplete(); }; - + this.primitives.push({ - geometry: geometry, - material: material, - mesh: null - }); + geometry: geometry, + material: material, + mesh: null + }); }; Mesh.prototype.onComplete = function(callback) { this.onCompleteCallbacks.push(callback); - this.checkComplete(); + //this.checkComplete(); }; Mesh.prototype.checkComplete = function() { var self = this; - if (this.onCompleteCallbacks.length && this.primitives.length == this.loadedGeometry) { + if(this.onCompleteCallbacks.length && this.primitives.length == this.loadedGeometry) { this.onCompleteCallbacks.forEach(function(callback) { callback(self); }); @@ -299,33 +496,44 @@ THREE.glTFLoader.prototype.load = function( url, callback ) { }; Mesh.prototype.attachToNode = function(threeNode) { - // Assumes that the geometry is complete + // Assumes that the geometry is complete + var that = this; this.primitives.forEach(function(primitive) { - /*if(!primitive.mesh) { - primitive.mesh = new THREE.Mesh(primitive.geometry, primitive.material); - }*/ + /*if(!primitive.mesh) { + primitive.mesh = new THREE.Mesh(primitive.geometry, primitive.material); + }*/ var material = primitive.material; + var materialParams = material.params; if (!(material instanceof THREE.Material)) { - material = theLoader.createShaderMaterial(material); + material = createShaderMaterial(material); } - var threeMesh = new THREE.Mesh(primitive.geometry.geometry, material); - threeMesh.castShadow = true; - threeNode.add(threeMesh); + if (!that.skin) { + // console.log ("New mesh") + var threeMesh = new THREE.Mesh(primitive.geometry.geometry, material); + threeMesh.castShadow = true; + threeNode.add(threeMesh); + + if (material instanceof THREE.ShaderMaterial) { + var glTFShader = new THREE.glTFShader(material, materialParams, threeMesh, theLoader.rootObj); + THREE.glTFShaders.add(glTFShader); + + } + } }); }; - // Delayed-loaded material + // Delayed-loaded material var Material = function(params) { this.params = params; }; - - // Delegate for processing animation parameter buffers + + // Delegate for processing animation parameter buffers var AnimationParameterDelegate = function() {}; AnimationParameterDelegate.prototype.handleError = function(errorCode, info) { - // FIXME: report error - console.log("ERROR(AnimationParameterDelegate):" + errorCode + ":" + info); + // FIXME: report error + console.log("ERROR(AnimationParameterDelegate):"+errorCode+":"+info); }; AnimationParameterDelegate.prototype.convert = function(resource, ctx) { @@ -333,16 +541,16 @@ THREE.glTFLoader.prototype.load = function( url, callback ) { var glResource = null; switch (parameter.type) { - case WebGLRenderingContext.FLOAT : - case WebGLRenderingContext.FLOAT_VEC2 : - case WebGLRenderingContext.FLOAT_VEC3 : - case WebGLRenderingContext.FLOAT_VEC4 : + case "SCALAR" : + case "VEC2" : + case "VEC3" : + case "VEC4" : glResource = new Float32Array(resource, 0, parameter.count * componentsPerElementForGLType(parameter.type)); break; default: break; } - + return glResource; }; @@ -361,10 +569,10 @@ THREE.glTFLoader.prototype.load = function( url, callback ) { this.animation = animation; }; - // Animations + // Animations var Animation = function() { - // create Three.js keyframe here + // create Three.js keyframe here this.totalParameters = 0; this.loadedParameters = 0; this.parameters = {}; @@ -377,13 +585,13 @@ THREE.glTFLoader.prototype.load = function( url, callback ) { Animation.prototype.handleParameterLoaded = function(parameter) { this.parameters[parameter.name] = parameter; - this.loadedParameters ++; + this.loadedParameters++; this.checkFinished(); }; - + Animation.prototype.checkFinished = function() { - if (this.loadedParameters === this.totalParameters) { - // Build animation + if(this.loadedParameters === this.totalParameters) { + // Build animation this.finishedLoading = true; if (this.onload) { @@ -391,13 +599,13 @@ THREE.glTFLoader.prototype.load = function( url, callback ) { } } }; - - // Delegate for processing inverse bind matrices buffer + + // Delegate for processing inverse bind matrices buffer var InverseBindMatricesDelegate = function() {}; InverseBindMatricesDelegate.prototype.handleError = function(errorCode, info) { - // FIXME: report error - console.log("ERROR(InverseBindMatricesDelegate):" + errorCode + ":" + info); + // FIXME: report error + console.log("ERROR(InverseBindMatricesDelegate):"+errorCode+":"+info); }; InverseBindMatricesDelegate.prototype.convert = function(resource, ctx) { @@ -405,13 +613,13 @@ THREE.glTFLoader.prototype.load = function( url, callback ) { var glResource = null; switch (parameter.type) { - case WebGLRenderingContext.FLOAT_MAT4 : + case "MAT4" : glResource = new Float32Array(resource, 0, parameter.count * componentsPerElementForGLType(parameter.type)); break; default: break; } - + return glResource; }; @@ -428,22 +636,21 @@ THREE.glTFLoader.prototype.load = function( url, callback ) { this.skin = skin; }; - // Delegate for processing shaders from external files + // Delegate for processing shaders from external files var ShaderDelegate = function() {}; ShaderDelegate.prototype.handleError = function(errorCode, info) { - // FIXME: report error - console.log("ERROR(ShaderDelegate):" + errorCode + ":" + info); + // FIXME: report error + console.log("ERROR(ShaderDelegate):"+errorCode+":"+info); }; ShaderDelegate.prototype.convert = function(resource, ctx) { - return resource; - }; - + return resource; + } + ShaderDelegate.prototype.resourceAvailable = function(data, ctx) { - theLoader.shadersLoaded ++; + theLoader.shadersLoaded++; theLoader.shaders[ctx.id] = data; - theLoader.checkComplete(); return true; }; @@ -451,10 +658,10 @@ THREE.glTFLoader.prototype.load = function( url, callback ) { var ShaderContext = function(id, path) { this.id = id; - this.path = path; + this.uri = path; }; - - // Resource management + + // Resource management var ResourceEntry = function(entryID, object, description) { this.entryID = entryID; @@ -473,12 +680,12 @@ THREE.glTFLoader.prototype.load = function( url, callback ) { } if (this._entries[entryID]) { - console.warn("entry[" + entryID + "] is being overwritten"); + console.warn("entry["+entryID+"] is being overwritten"); } - + this._entries[entryID] = new ResourceEntry(entryID, object, description ); }; - + Resources.prototype.getEntry = function(entryID) { return this._entries[entryID]; }; @@ -488,1015 +695,1171 @@ THREE.glTFLoader.prototype.load = function( url, callback ) { }; LoadDelegate = function() { - }; - + } + LoadDelegate.prototype.loadCompleted = function(callback, obj) { callback.call(Window, obj); - }; - - // Loader + } + + // Loader var ThreeGLTFLoader = Object.create(glTFParser, { - load: { - enumerable: true, - value: function(userInfo, options) { - this.resources = new Resources(); - this.cameras = []; - this.lights = []; - this.animations = []; - this.joints = {}; - this.skeltons = {}; - THREE.GLTFLoaderUtils.init(); - glTFParser.load.call(this, userInfo, options); - } - }, - - cameras: { - enumerable: true, - writable: true, - value : [] - }, - - lights: { - enumerable: true, - writable: true, - value : [] - }, - - animations: { - enumerable: true, - writable: true, - value : [] - }, - - // Implement WebGLTFLoader handlers - - handleBuffer: { - value: function(entryID, description, userInfo) { - this.resources.setEntry(entryID, null, description); - description.type = "ArrayBuffer"; - return true; - } - }, - - handleBufferView: { - value: function(entryID, description, userInfo) { - this.resources.setEntry(entryID, null, description); - - var buffer = this.resources.getEntry(description.buffer); - description.type = "ArrayBufferView"; - - var bufferViewEntry = this.resources.getEntry(entryID); - bufferViewEntry.buffer = buffer; - return true; - } - }, - - handleShader: { - value: function(entryID, description, userInfo) { - this.resources.setEntry(entryID, null, description); - var shaderRequest = { - id : entryID, - path : description.path, - }; - - var shaderContext = new ShaderContext(entryID, description.path); - - theLoader.shadersRequested ++; - THREE.GLTFLoaderUtils.getFile(shaderRequest, shaderDelegate, shaderContext); - - return true; - } - }, - - handleProgram: { - value: function(entryID, description, userInfo) { - this.resources.setEntry(entryID, null, description); - return true; - } - }, - - handleTechnique: { - value: function(entryID, description, userInfo) { - this.resources.setEntry(entryID, null, description); - return true; - } - }, - - createShaderMaterial : { - value: function(material) { - - var fragmentShader = theLoader.shaders[material.params.fragmentShader]; - if (!fragmentShader) { - console.log("ERROR: Missing fragment shader definition:", material.params.fragmentShader); - return new THREE.MeshPhongMaterial; - } + load: { + enumerable: true, + value: function(userInfo, options) { + this.resources = new Resources(); + this.cameras = []; + this.lights = []; + this.animations = []; + this.joints = {}; + THREE.GLTFLoaderUtils.init(); + glTFParser.load.call(this, userInfo, options); + } + }, + + cameras: { + enumerable: true, + writable: true, + value : [] + }, + + lights: { + enumerable: true, + writable: true, + value : [] + }, + + animations: { + enumerable: true, + writable: true, + value : [] + }, + + // Implement WebGLTFLoader handlers + + handleBuffer: { + value: function(entryID, description, userInfo) { + this.resources.setEntry(entryID, null, description); + description.type = "ArrayBuffer"; + return true; + } + }, - var vertexShader = theLoader.shaders[material.params.vertexShader]; - if (!fragmentShader) { - console.log("ERROR: Missing vertex shader definition:", material.params.vertexShader); - return new THREE.MeshPhongMaterial; - } + handleBufferView: { + value: function(entryID, description, userInfo) { + this.resources.setEntry(entryID, null, description); - var uniforms = {}; - var shaderMaterial = new THREE.ShaderMaterial( { + var buffer = this.resources.getEntry(description.buffer); + description.type = "ArrayBufferView"; - fragmentShader: fragmentShader, - vertexShader: vertexShader, - uniforms: uniforms, + var bufferViewEntry = this.resources.getEntry(entryID); + bufferViewEntry.buffer = buffer; + return true; + } + }, + + handleShader: { + value: function(entryID, description, userInfo) { + this.resources.setEntry(entryID, null, description); + var shaderRequest = { + id : entryID, + uri : description.uri, + }; + + var shaderContext = new ShaderContext(entryID, description.uri); + + theLoader.shadersRequested++; + THREE.GLTFLoaderUtils.getFile(shaderRequest, shaderDelegate, shaderContext); + + return true; + } + }, - } ); + handleProgram: { + value: function(entryID, description, userInfo) { + this.resources.setEntry(entryID, null, description); + return true; + } + }, - return new THREE.MeshPhongMaterial(material.params); - } - }, + handleTechnique: { + value: function(entryID, description, userInfo) { + description.refCount = 0; + this.resources.setEntry(entryID, null, description); + return true; + } + }, + + + createShaderParams : { + value: function(materialId, values, params, programID, technique) { + var program = this.resources.getEntry(programID); + + params.uniforms = {}; + params.attributes = {}; + params.program = program; + params.technique = technique; + if (program) { + params.fragmentShader = program.description.fragmentShader; + params.vertexShader = program.description.vertexShader; + for (var uniform in technique.uniforms) { + var pname = technique.uniforms[uniform]; + var shaderParam = technique.parameters[pname]; + var ptype = shaderParam.type; + var pcount = shaderParam.count; + var value = values[pname]; + var utype = ""; + var uvalue; + var ulength; + + // THIS: for (n in WebGLRenderingContext) { z = WebGLRenderingContext[n]; idx[z] = n; } + //console.log("shader uniform param type: ", ptype, "-", theLoader.idx[ptype]) + + + switch (ptype) { + case WebGLRenderingContext.FLOAT : + utype = "f"; + uvalue = shaderParam.value; + if (pname == "transparency") { + var USE_A_ONE = true; // for now, hack because file format isn't telling us + var opacity = USE_A_ONE ? value : (1.0 - value); + uvalue = opacity; + params.transparent = true; + } + break; + case WebGLRenderingContext.FLOAT_VEC2 : + utype = "v2"; + uvalue = new THREE.Vector2; + if (shaderParam && shaderParam.value) { + var v2 = shaderParam.value; + uvalue.fromArray(v2); + } + if (value) { + uvalue.fromArray(value); + } + break; + case WebGLRenderingContext.FLOAT_VEC3 : + utype = "v3"; + uvalue = new THREE.Vector3; + if (shaderParam && shaderParam.value) { + var v3 = shaderParam.value; + uvalue.fromArray(v3); + } + if (value) { + uvalue.fromArray(value); + } + break; + case WebGLRenderingContext.FLOAT_VEC4 : + utype = "v4"; + uvalue = new THREE.Vector4; + if (shaderParam && shaderParam.value) { + var v4 = shaderParam.value; + uvalue.fromArray(v4); + } + if (value) { + uvalue.fromArray(value); + } + break; + case WebGLRenderingContext.FLOAT_MAT2 : + // what to do? + console.log("Warning: FLOAT_MAT2"); + break; + case WebGLRenderingContext.FLOAT_MAT3 : + utype = "m3"; + uvalue = new THREE.Matrix3; + if (shaderParam && shaderParam.value) { + var m3 = shaderParam.value; + uvalue.fromArray(m3); + } + if (value) { + uvalue.fromArray(value); + } + break; + case WebGLRenderingContext.FLOAT_MAT4 : + if (pcount !== undefined) { + utype = "m4v"; + uvalue = new Array(pcount); + for (var mi = 0; mi < pcount; mi++) { + uvalue[mi] = new THREE.Matrix4; + } + ulength = pcount; + + if (shaderParam && shaderParam.value) { + var m4v = shaderParam.value; + uvalue.fromArray(m4v); + } + if (value) { + uvalue.fromArray(value); + + } + } + else { + utype = "m4"; + uvalue = new THREE.Matrix4; + + if (shaderParam && shaderParam.value) { + var m4 = shaderParam.value; + uvalue.fromArray(m4); + } + if (value) { + uvalue.fromArray(value); + + } + } + break; + case WebGLRenderingContext.SAMPLER_2D : + utype = "t"; + uvalue = value ? CreateTexture(this.resources, value) : null; + break; + default : + throw new Error("Unknown shader uniform param type: " + ptype + " - " + theLoader.idx[ptype]); + + break; + } - createShaderParams : { - value: function(materialId, values, params, instanceProgram) { - var program = this.resources.getEntry(instanceProgram.program); - if (program) { - params.fragmentShader = program.description.fragmentShader; - params.vertexShader = program.description.vertexShader; - params.attributes = instanceProgram.attributes; - params.uniforms = instanceProgram.uniforms; - } - } - }, - - threeJSMaterialType : { - value: function(materialId, technique, values, params) { - - var materialType = THREE.MeshPhongMaterial; - var defaultPass = null; - if (technique && technique.description && technique.description.passes) - defaultPass = technique.description.passes.defaultPass; - - if (defaultPass) { - if (defaultPass.details && defaultPass.details.commonProfile) { - var profile = technique.description.passes.defaultPass.details.commonProfile; - if (profile) - { - switch (profile.lightingModel) - { - case 'Blinn' : - case 'Phong' : - materialType = THREE.MeshPhongMaterial; - break; + var udecl = { type : utype, value : uvalue, length : ulength }; - case 'Lambert' : - materialType = THREE.MeshLambertMaterial; - break; + params.uniforms[uniform] = udecl; + } - default : - materialType = THREE.MeshBasicMaterial; - break; - } + for (var attribute in technique.attributes) { + var pname = technique.attributes[attribute]; + var param = technique.parameters[pname]; + var atype = param.type; + var semantic = param.semantic; + var adecl = { type : atype, semantic : semantic }; - if (profile.extras && profile.extras.doubleSided) - { - params.side = THREE.DoubleSide; + params.attributes[attribute] = adecl; + } + } } - } - else if (defaultPass.instanceProgram) { + }, + + threeJSMaterialType : { + value: function(materialId, material, params) { + + var extensions = material.extensions; + var khr_material = extensions ? extensions.KHR_materials_common : null; + + var materialType = null; + var values; + + if (khr_material) { + + switch (khr_material.technique) + { + case 'BLINN' : + case 'PHONG' : + materialType = THREE.MeshPhongMaterial; + break; + + case 'LAMBERT' : + materialType = THREE.MeshLambertMaterial; + break; + + case 'CONSTANT' : + default : + materialType = THREE.MeshBasicMaterial; + break; + } + + if (khr_material.doubleSided) + { + params.side = THREE.DoubleSide; + } - var instanceProgram = defaultPass.instanceProgram; + if (khr_material.transparent) + { + params.transparent = true; + } - this.createShaderParams(materialId, values, params, instanceProgram); + values = {}; + for (prop in khr_material.values) { + values[prop] = khr_material.values[prop]; + } - var loadshaders = true; + } + else { + var technique = material.technique ? + this.resources.getEntry(material.technique) : + null; - if (loadshaders) { - materialType = Material; - } - } - } + values = material.values; + var description = technique.description; - var texturePath = null; - var textureParams = null; - var diffuse = values.diffuse; - if (diffuse) - { - var texture = diffuse; - if (texture) { - var textureEntry = this.resources.getEntry(texture); - if (textureEntry) { - { - var imageEntry = this.resources.getEntry(textureEntry.description.source); - if (imageEntry) { - texturePath = imageEntry.description.path; + if (++description.refCount > 1) { + //console.log("refcount", description.refCount); } - - var samplerEntry = this.resources.getEntry(textureEntry.description.sampler); - if (samplerEntry) { - textureParams = samplerEntry.description; + + var programID = description.program; + this.createShaderParams(materialId, values, params, programID, description); + + var loadshaders = true; + + if (loadshaders) { + materialType = Material; } } + + if (values.diffuse && typeof(values.diffuse) == 'string') { + params.map = CreateTexture(this.resources, values.diffuse); + } + if (values.reflective && typeof(values.reflective) == 'string') { + params.envMap = CreateTexture(this.resources, values.reflective); + } + + var shininess = values.shininesss || values.shininess; // N.B.: typo in converter! + if (shininess) + { + shininess = shininess; + } + + var diffuseColor = null; + if (!params.map) { + diffuseColor = values.diffuse; + } + var opacity = 1.0; + if (values.hasOwnProperty("transparency")) + { + var USE_A_ONE = true; // for now, hack because file format isn't telling us + opacity = USE_A_ONE ? values.transparency : (1.0 - values.transparency); + } + + // if (diffuseColor) diffuseColor = [0, 1, 0]; + + params.color = RgbArraytoHex(diffuseColor); + params.opacity = opacity; + params.transparent = opacity < 1.0; + // hack hack hack + if (params.map && params.map.sourceFile.toLowerCase().indexOf(".png") != -1) + params.transparent = true; + + if (!(shininess === undefined)) + { + params.shininess = shininess; + } + + delete params.ambient; + if (!(values.ambient === undefined) && !(typeof(values.ambient) == 'string')) + { + //params.ambient = RgbArraytoHex(values.ambient); + } + + if (!(values.emission === undefined)) + { + params.emissive = RgbArraytoHex(values.emission); + } + + if (!(values.specular === undefined)) + { + params.specular = RgbArraytoHex(values.specular); + } + + return materialType; + } - } - } + }, + + handleMaterial: { + value: function(entryID, description, userInfo) { + var params = {}; + + var materialType = this.threeJSMaterialType(entryID, description, params); + + var material = new materialType(params); + + this.resources.setEntry(entryID, material, description); + + return true; + } + }, + + handleMesh: { + value: function(entryID, description, userInfo) { + var mesh = new Mesh(); + this.resources.setEntry(entryID, mesh, description); + var primitivesDescription = description.primitives; + if (!primitivesDescription) { + //FIXME: not implemented in delegate + console.log("MISSING_PRIMITIVES for mesh:"+ entryID); + return false; + } - var texture = LoadTexture(texturePath); - if (texture && textureParams) { + for (var i = 0 ; i < primitivesDescription.length ; i++) { + var primitiveDescription = primitivesDescription[i]; + + if (primitiveDescription.mode === WebGLRenderingContext.TRIANGLES) { + + var geometry = new ClassicGeometry(); + var materialEntry = this.resources.getEntry(primitiveDescription.material); + + mesh.addPrimitive(geometry, materialEntry.object); + + var allAttributes = Object.keys(primitiveDescription.attributes); + + // count them first, async issues otherwise + allAttributes.forEach( function(semantic) { + geometry.totalAttributes++; + }, this); + + var indices = this.resources.getEntry(primitiveDescription.indices); + var bufferEntry = this.resources.getEntry(indices.description.bufferView); + var indicesObject = { + bufferView : bufferEntry, + byteOffset : indices.description.byteOffset, + count : indices.description.count, + id : indices.entryID, + componentType : indices.description.componentType, + type : indices.description.type + }; + + var indicesContext = new IndicesContext(indicesObject, geometry); + var loaddata = { + indicesObject : indicesObject, + indicesDelegate : indicesDelegate, + indicesContext : indicesContext + }; + + theLoader.scheduleLoad(function(data) { + var alreadyProcessedIndices = + THREE.GLTFLoaderUtils.getBuffer(data.indicesObject, + data.indicesDelegate, data.indicesContext); + + if (alreadyProcessedIndices) { + data.indicesDelegate.resourceAvailable( + alreadyProcessedIndices, data.indicesContext); + } - if (textureParams.wrapS == WebGLRenderingContext.REPEAT) - texture.wrapS = THREE.RepeatWrapping; + }, loaddata); + + // Load Vertex Attributes + allAttributes.forEach( function(semantic) { + + var attribute; + var attributeID = primitiveDescription.attributes[semantic]; + var attributeEntry = this.resources.getEntry(attributeID); + if (!attributeEntry) { + //let's just use an anonymous object for the attribute + attribute = description.attributes[attributeID]; + attribute.id = attributeID; + this.resources.setEntry(attributeID, attribute, attribute); + + var bufferEntry = this.resources.getEntry(attribute.bufferView); + attributeEntry = this.resources.getEntry(attributeID); + + } else { + attribute = attributeEntry.object; + attribute.id = attributeID; + var bufferEntry = this.resources.getEntry(attribute.bufferView); + } - if (textureParams.wrapT == WebGLRenderingContext.REPEAT) - texture.wrapT = THREE.RepeatWrapping; + var attributeObject = { + bufferView : bufferEntry, + byteOffset : attribute.byteOffset, + byteStride : attribute.byteStride, + count : attribute.count, + max : attribute.max, + min : attribute.min, + componentType : attribute.componentType, + type : attribute.type, + id : attributeID + }; + + var attribContext = new VertexAttributeContext(attributeObject, semantic, geometry); + + var loaddata = { + attributeObject : attributeObject, + vertexAttributeDelegate : vertexAttributeDelegate, + attribContext : attribContext + }; + + theLoader.scheduleLoad(function(data) { + var alreadyProcessedAttribute = + THREE.GLTFLoaderUtils.getBuffer(data.attributeObject, + data.vertexAttributeDelegate, data.attribContext); + + if (alreadyProcessedAttribute) { + data.vertexAttributeDelegate.resourceAvailable( + alreadyProcessedAttribute, data.attribContext); + } - if (textureParams.magFilter == WebGLRenderingContext.LINEAR) - texture.magFilter = THREE.LinearFilter; + }, loaddata); -// if (textureParams.minFilter == "LINEAR") -// texture.minFilter = THREE.LinearFilter; - params.map = texture; - } + }, this); + } + } + return true; + } + }, - var envMapPath = null; - var envMapParams = null; - var reflective = values.reflective; - if (reflective) - { - var texture = reflective; - if (texture) { - var textureEntry = this.resources.getEntry(texture); - if (textureEntry) { + handleCamera: { + value: function(entryID, description, userInfo) { + var camera; + if (description.type == "perspective") { - var imageEntry = this.resources.getEntry(textureEntry.description.source); - if (imageEntry) { - envMapPath = imageEntry.description.path; + var znear = description.perspective.znear; + var zfar = description.perspective.zfar; + var yfov = description.perspective.yfov; + var xfov = description.perspective.xfov; + var aspect_ratio = description.perspective.aspect_ratio; + + if (!aspect_ratio) + aspect_ratio = 1; + + if (xfov === undefined) { + if (yfov) + { + // According to COLLADA spec... + // aspect_ratio = xfov / yfov + xfov = yfov * aspect_ratio; + } + } + + if (yfov === undefined) + { + if (xfov) + { + // According to COLLADA spec... + // aspect_ratio = xfov / yfov + yfov = xfov / aspect_ratio; + } + } + + if (xfov) + { + xfov = THREE.Math.radToDeg(xfov); - var samplerEntry = this.resources.getEntry(textureEntry.description.sampler); - if (samplerEntry) { - envMapParams = samplerEntry.description; + camera = new THREE.PerspectiveCamera(xfov, aspect_ratio, znear, zfar); } } + else + { + camera = new THREE.OrthographicCamera( window.innerWidth / - 2, window.innerWidth / 2, window.innerHeight / 2, window.innerHeight / - 2, znear, zfar ); + } + + if (camera) + { + this.resources.setEntry(entryID, camera, description); + } + + return true; } - } - } - - var texture = LoadTexture(envMapPath); - if (texture && envMapParams) { - - if (envMapParams.wrapS == WebGLRenderingContext.REPEAT) - texture.wrapS = THREE.RepeatWrapping; - - if (envMapParams.wrapT == WebGLRenderingContext.REPEAT) - texture.wrapT = THREE.RepeatWrapping; - - if (envMapParams.magFilter == WebGLRenderingContext.LINEAR) - texture.magFilter = THREE.LinearFilter; - -// if (envMapParams.minFilter == WebGLRenderingContext.LINEAR) -// texture.minFilter = THREE.LinearFilter; - - params.envMap = texture; - } - - var shininess = values.shininesss || values.shininess; // N.B.: typo in converter! - if (shininess) - { - shininess = shininess; - } - - var diffuseColor = !texturePath ? diffuse : null; - var opacity = 1.0; - if (values.hasOwnProperty("transparency")) - { - var USE_A_ONE = true; // for now, hack because file format isn't telling us - opacity = USE_A_ONE ? values.transparency : (1.0 - values.transparency); - } - - // if (diffuseColor) diffuseColor = [0, 1, 0]; - - params.color = RgbArraytoHex(diffuseColor); - params.opacity = opacity; - params.transparent = opacity < 1.0; - // hack hack hack - if (texturePath && texturePath.toLowerCase().indexOf(".png") != -1) - params.transparent = true; - - if (!(shininess === undefined)) - { - params.shininess = shininess; - } - - if (!(values.emission === undefined)) - { - params.emissive = RgbArraytoHex(values.emission); - } - - if (!(values.specular === undefined)) - { - params.specular = RgbArraytoHex(values.specular); - } - - return materialType; - - } - }, - - handleMaterial: { - value: function(entryID, description, userInfo) { - //this should be rewritten using the meta datas that actually create the shader. - //here we will infer what needs to be pass to Three.js by looking inside the technique parameters. - var technique = this.resources.getEntry(description.instanceTechnique.technique); - var materialParams = {}; - var values = description.instanceTechnique.values; - - var materialType = this.threeJSMaterialType(entryID, technique, values, materialParams); - - var material = new materialType(materialParams); - - this.resources.setEntry(entryID, material, description); - - return true; - } - }, + }, - handleMesh: { - value: function(entryID, description, userInfo) { - var mesh = new Mesh(); - this.resources.setEntry(entryID, mesh, description); - var primitivesDescription = description.primitives; - if (!primitivesDescription) { - //FIXME: not implemented in delegate - console.log("MISSING_PRIMITIVES for mesh:" + entryID); - return false; - } + handleLight: { + value: function(entryID, description, userInfo) { - for (var i = 0 ; i < primitivesDescription.length ; i ++) { - var primitiveDescription = primitivesDescription[i]; - - if (primitiveDescription.primitive === WebGLRenderingContext.TRIANGLES) { - - var geometry = new ClassicGeometry(); - var materialEntry = this.resources.getEntry(primitiveDescription.material); - - mesh.addPrimitive(geometry, materialEntry.object); - - var indices = this.resources.getEntry(primitiveDescription.indices); - var bufferEntry = this.resources.getEntry(indices.description.bufferView); - var indicesObject = { - bufferView : bufferEntry, - byteOffset : indices.description.byteOffset, - count : indices.description.count, - id : indices.entryID, - type : indices.description.type - }; - - var indicesContext = new IndicesContext(indicesObject, geometry); - var alreadyProcessedIndices = THREE.GLTFLoaderUtils.getBuffer(indicesObject, indicesDelegate, indicesContext); - /*if(alreadyProcessedIndices) { - indicesDelegate.resourceAvailable(alreadyProcessedIndices, indicesContext); - }*/ - - // Load Vertex Attributes - var allAttributes = Object.keys(primitiveDescription.attributes); - allAttributes.forEach( function(semantic) { - geometry.totalAttributes ++; - - var attribute; - var attributeID = primitiveDescription.attributes[semantic]; - var attributeEntry = this.resources.getEntry(attributeID); - if (!attributeEntry) { - //let's just use an anonymous object for the attribute - attribute = description.attributes[attributeID]; - attribute.id = attributeID; - this.resources.setEntry(attributeID, attribute, attribute); - - var bufferEntry = this.resources.getEntry(attribute.bufferView); - attributeEntry = this.resources.getEntry(attributeID); - - } else { - attribute = attributeEntry.object; - attribute.id = attributeID; - var bufferEntry = this.resources.getEntry(attribute.bufferView); + var light = null; + var type = description.type; + if (type && description[type]) + { + var lparams = description[type]; + var color = RgbArraytoHex(lparams.color); + + switch (type) { + case "directional" : + light = new THREE.DirectionalLight(color); + light.position.set(0, 0, 1); + break; + + case "point" : + light = new THREE.PointLight(color); + break; + + case "spot " : + light = new THREE.SpotLight(color); + light.position.set(0, 0, 1); + break; + + case "ambient" : + light = new THREE.AmbientLight(color); + break; + } } - var attributeObject = { - bufferView : bufferEntry, - byteOffset : attribute.byteOffset, - byteStride : attribute.byteStride, - count : attribute.count, - max : attribute.max, - min : attribute.min, - type : attribute.type, - id : attributeID - }; - - var attribContext = new VertexAttributeContext(attributeObject, semantic, geometry); - - var alreadyProcessedAttribute = THREE.GLTFLoaderUtils.getBuffer(attributeObject, vertexAttributeDelegate, attribContext); - /*if(alreadyProcessedAttribute) { - vertexAttributeDelegate.resourceAvailable(alreadyProcessedAttribute, attribContext); - }*/ - }, this); - } - } - return true; - } - }, - - handleCamera: { - value: function(entryID, description, userInfo) { - var camera; - if (description.type == "perspective") - { - var znear = description.perspective.znear; - var zfar = description.perspective.zfar; - var yfov = description.perspective.yfov; - var xfov = description.perspective.xfov; - var aspect_ratio = description.perspective.aspect_ratio; - - if (!aspect_ratio) - aspect_ratio = 1; - - if (yfov === undefined) - { - if (xfov) - { - // According to COLLADA spec... - // aspect_ratio = xfov / yfov - yfov = xfov / aspect_ratio; + if (light) + { + this.resources.setEntry(entryID, light, description); + } + + return true; } + }, - } - - if (yfov) - { - camera = new THREE.PerspectiveCamera(yfov, aspect_ratio, znear, zfar); - } - } - else - { - camera = new THREE.OrthographicCamera( window.innerWidth / - 2, window.innerWidth / 2, window.innerHeight / 2, window.innerHeight / - 2, znear, zfar ); - } - - if (camera) - { - this.resources.setEntry(entryID, camera, description); - } - - return true; - } - }, - - handleLight: { - value: function(entryID, description, userInfo) { - - var light = null; - var type = description.type; - if (type && description[type]) - { - var lparams = description[type]; - var color = RgbArraytoHex(lparams.color); - - switch (type) { - case "directional" : - light = new THREE.DirectionalLight(color); - light.position.set(0, 0, 1); - break; - - case "point" : - light = new THREE.PointLight(color); - break; - - case "spot " : - light = new THREE.SpotLight(color); - light.position.set(0, 0, 1); - break; - - case "ambient" : - light = new THREE.AmbientLight(color); - break; - } - } - - if (light) - { - this.resources.setEntry(entryID, light, description); - } - - return true; - } - }, - - addPendingMesh: { - value: function(mesh, threeNode) { - theLoader.pendingMeshes.push({ - mesh: mesh, - node: threeNode - }); - } - }, - - handleNode: { - value: function(entryID, description, userInfo) { - - var threeNode = null; - if (description.jointId) { - threeNode = new THREE.Bone(); - threeNode.jointId = description.jointId; - this.joints[description.jointId] = entryID; - } - else { - threeNode = new THREE.Object3D(); - } - - threeNode.name = description.name; - - this.resources.setEntry(entryID, threeNode, description); - - var m = description.matrix; - if (m) { - threeNode.applyMatrix(new THREE.Matrix4().fromArray( m )); - threeNode.matrixAutoUpdate = false; - threeNode.matrixWorldNeedsUpdate = true; - } - else { - var t = description.translation; - var r = description.rotation; - var s = description.scale; - - var position = t ? new THREE.Vector3(t[0], t[1], t[2]) : - new THREE.Vector3; - if (r) { - convertAxisAngleToQuaternion(r, 1); - } - var rotation = r ? new THREE.Quaternion(r[0], r[1], r[2], r[3]) : - new THREE.Quaternion; - var scale = s ? new THREE.Vector3(s[0], s[1], s[2]) : - new THREE.Vector3; - - var matrix = new THREE.Matrix4; - matrix.compose(position, rotation, scale); - threeNode.matrixAutoUpdate = false; - threeNode.matrixWorldNeedsUpdate = true; - threeNode.applyMatrix(matrix); - } - - var self = this; - - // Iterate through all node meshes and attach the appropriate objects - //FIXME: decision needs to be made between these 2 ways, probably meshes will be discarded. - var meshEntry; - if (description.mesh) { - meshEntry = this.resources.getEntry(description.mesh); - theLoader.meshesRequested ++; - meshEntry.object.onComplete(function(mesh) { - self.addPendingMesh(mesh, threeNode); - theLoader.meshesLoaded ++; - theLoader.checkComplete(); - }); - } - - if (description.meshes) { - description.meshes.forEach( function(meshID) { - meshEntry = this.resources.getEntry(meshID); - theLoader.meshesRequested ++; - meshEntry.object.onComplete(function(mesh) { - self.addPendingMesh(mesh, threeNode); - theLoader.meshesLoaded ++; - theLoader.checkComplete(); - }); - }, this); - } - - if (description.instanceSkin) { - - var skinEntry = this.resources.getEntry(description.instanceSkin.skin); - - if (skinEntry) { - - var skin = skinEntry.object; - description.instanceSkin.skin = skin; - threeNode.instanceSkin = description.instanceSkin; - - var sources = description.instanceSkin.sources; - skin.meshes = []; - sources.forEach( function(meshID) { - meshEntry = this.resources.getEntry(meshID); - theLoader.meshesRequested ++; - meshEntry.object.onComplete(function(mesh) { - - skin.meshes.push(mesh); - theLoader.meshesLoaded ++; - theLoader.checkComplete(); + addPendingMesh: { + value: function(mesh, threeNode) { + theLoader.pendingMeshes.push({ + mesh: mesh, + node: threeNode }); - }, this); - - } - } - - if (description.camera) { - var cameraEntry = this.resources.getEntry(description.camera); - if (cameraEntry) { - threeNode.add(cameraEntry.object); - this.cameras.push(cameraEntry.object); - } - } - - if (description.light) { - var lightEntry = this.resources.getEntry(description.light); - if (lightEntry) { - threeNode.add(lightEntry.object); - this.lights.push(lightEntry.object); - } - } + } + }, + + handleNode: { + value: function(entryID, description, userInfo) { + + var threeNode = null; + if (description.jointName) { + threeNode = new THREE.Bone(); + threeNode.jointName = description.jointName; + this.joints[description.jointName] = entryID; + } + else { + threeNode = new THREE.Object3D(); + } + + threeNode.name = description.name; + threeNode.glTFID = entryID; + threeNode.glTF = description; + + this.resources.setEntry(entryID, threeNode, description); + + var m = description.matrix; + if(m) { + threeNode.matrixAutoUpdate = false; + threeNode.applyMatrix(new THREE.Matrix4().set( + m[0], m[4], m[8], m[12], + m[1], m[5], m[9], m[13], + m[2], m[6], m[10], m[14], + m[3], m[7], m[11], m[15] + )); + } + else { + var t = description.translation; + var r = description.rotation; + var s = description.scale; + + var position = t ? new THREE.Vector3(t[0], t[1], t[2]) : + new THREE.Vector3; + + var rotation = r ? new THREE.Quaternion(r[0], r[1], r[2], r[3]) : + new THREE.Quaternion; + var scale = s ? new THREE.Vector3(s[0], s[1], s[2]) : + new THREE.Vector3(1, 1, 1); + + var matrix = new THREE.Matrix4; + matrix.compose(position, rotation, scale); + threeNode.matrixAutoUpdate = false; + threeNode.applyMatrix(matrix); + } - return true; - } - }, - - buildNodeHirerachy: { - value: function(nodeEntryId, parentThreeNode) { - var nodeEntry = this.resources.getEntry(nodeEntryId); - var threeNode = nodeEntry.object; - parentThreeNode.add(threeNode); - - var children = nodeEntry.description.children; - if (children) { - children.forEach( function(childID) { - this.buildNodeHirerachy(childID, threeNode); - }, this); - } + var self = this; - return threeNode; - } - }, + if (description.meshes) { + description.meshInstances = {}; + var skinEntry; + if (description.skin) { + skinEntry = this.resources.getEntry(description.skin); + } - buildSkin: { - value: function(node) { + description.meshes.forEach( function(meshID) { + meshEntry = this.resources.getEntry(meshID); + theLoader.meshesRequested++; + meshEntry.object.onComplete(function(mesh) { + self.addPendingMesh(mesh, threeNode); + description.meshInstances[meshID] = meshEntry.object; + if (skinEntry) { + mesh.skin = skinEntry; + description.instanceSkin = skinEntry.object; + } - var skin = node.instanceSkin.skin; - if (skin) { - node.instanceSkin.skeletons.forEach(function(skeleton) { - var nodeEntry = this.resources.getEntry(skeleton); - if (nodeEntry) { + theLoader.meshesLoaded++; + theLoader.checkComplete(); + }); + }, this); + } + + if (description.camera) { + var cameraEntry = this.resources.getEntry(description.camera); + if (cameraEntry) { + threeNode.add(cameraEntry.object); + this.cameras.push(cameraEntry.object); + } + } - var rootSkeleton = nodeEntry.object; + if (description.extensions && description.extensions.KHR_materials_common + && description.extensions.KHR_materials_common.light) { + var lightID = description.extensions.KHR_materials_common.light; + var lightEntry = this.resources.getEntry(lightID); + if (lightEntry) { + threeNode.add(lightEntry.object); + this.lights.push(lightEntry.object); + } + } + + return true; + } + }, - var dobones = true; + handleExtension: { + value: function(entryID, description, userInfo) { - var i, len = skin.meshes.length; - for (i = 0; i < len; i ++) { - var mesh = skin.meshes[i]; - var threeMesh = null; - mesh.primitives.forEach(function(primitive) { + // console.log("Extension", entryID, description); - var material = primitive.material; - if (!(material instanceof THREE.Material)) { - material = this.createShaderMaterial(material); + switch (entryID) { + case 'KHR_materials_common' : + var lights = description.lights; + for (lightID in lights) { + var light = lights[lightID]; + this.handleLight(lightID, light); } + break; + } + + return true; + } + }, + + buildNodeHirerachy: { + value: function(nodeEntryId, parentThreeNode) { + var nodeEntry = this.resources.getEntry(nodeEntryId); + var threeNode = nodeEntry.object; + parentThreeNode.add(threeNode); + + var children = nodeEntry.description.children; + if (children) { + children.forEach( function(childID) { + this.buildNodeHirerachy(childID, threeNode); + }, this); + } - threeMesh = new THREE.SkinnedMesh(primitive.geometry.geometry, material, false); - threeMesh.add(rootSkeleton); - - var geometry = primitive.geometry.geometry; - var j; - if (geometry.vertices) { - for ( j = 0; j < geometry.vertices.length; j ++ ) { - geometry.vertices[j].applyMatrix4( skin.bindShapeMatrix ); - } - } - else if (geometry.attributes.position) { - var a = geometry.attributes.position.array; - var v = new THREE.Vector3; - for ( j = 0; j < a.length / 3; j ++ ) { - v.set(a[j * 3], a[j * 3 + 1], a[j * 3 + 2]); - v.applyMatrix4( skin.bindShapeMatrix ); - a[j * 3] = v.x; - a[j * 3 + 1] = v.y; - a[j * 3 + 2] = v.z; - } - } - - if (threeMesh && dobones) { - - material.skinning = true; - - threeMesh.boneInverses = []; - var jointsIds = skin.jointsIds; - var bones = []; - var boneInverses = []; - var i, len = jointsIds.length; - for (i = 0; i < len; i ++) { - var jointId = jointsIds[i]; - var nodeForJoint = this.joints[jointId]; - var joint = this.resources.getEntry(nodeForJoint).object; - if (joint) { - - joint.skin = threeMesh; - bones.push(joint); - - var m = skin.inverseBindMatrices; - var mat = new THREE.Matrix4().set( - m[i * 16 + 0], m[i * 16 + 4], m[i * 16 + 8], m[i * 16 + 12], - m[i * 16 + 1], m[i * 16 + 5], m[i * 16 + 9], m[i * 16 + 13], - m[i * 16 + 2], m[i * 16 + 6], m[i * 16 + 10], m[i * 16 + 14], - m[i * 16 + 3], m[i * 16 + 7], m[i * 16 + 11], m[i * 16 + 15] - ); - boneInverses.push(mat); - - } else { - console.log("WARNING: jointId:" + jointId + " cannot be found in skeleton:" + skeleton); - } + return threeNode; + } + }, + + buildSkin: { + value: function(node) { + + var glTF = node.glTF; + var skin = glTF.instanceSkin; + var skeletons = glTF.skeletons; + if (skin) { + skeletons.forEach(function(skeleton) { + var nodeEntry = this.resources.getEntry(skeleton); + if (nodeEntry) { + + var rootSkeleton = nodeEntry.object; + node.add(rootSkeleton); + + var dobones = true; + + for (meshID in glTF.meshInstances) { + var mesh = glTF.meshInstances[meshID]; + var threeMesh = null; + mesh.primitives.forEach(function(primitive) { + + var material = primitive.material; + var materialParams = material.params; + if (!(material instanceof THREE.Material)) { + material = createShaderMaterial(material); + } + + threeMesh = new THREE.SkinnedMesh(primitive.geometry.geometry, material, false); + + var geometry = primitive.geometry.geometry; + var j; +/* if (geometry.vertices) { + for ( j = 0; j < geometry.vertices.length; j ++ ) { + geometry.vertices[j].applyMatrix4( skin.bindShapeMatrix ); + } + } + else if (geometry.attributes.position) { + var a = geometry.attributes.position.array; + var v = new THREE.Vector3; + for ( j = 0; j < a.length / 3; j++ ) { + v.set(a[j * 3], a[j * 3 + 1], a[j * 3 + 2]); + v.applyMatrix4( skin.bindShapeMatrix ); + a[j * 3] = v.x; + a[j * 3 + 1] = v.y; + a[j * 3 + 2] = v.z; + } + }*/ + + if (threeMesh && dobones) { + + material.skinning = true; + + var jointNames = skin.jointNames; + var joints = []; + var bones = []; + var boneInverses = []; + var i, len = jointNames.length; + for (i = 0; i < len; i++) { + var jointName = jointNames[i]; + var nodeForJoint = this.joints[jointName]; + var joint = this.resources.getEntry(nodeForJoint).object; + if (joint) { + + joint.skin = threeMesh; + joints.push(joint); + bones.push(joint); + + var m = skin.inverseBindMatrices; + var mat = new THREE.Matrix4().set( + m[i * 16 + 0], m[i * 16 + 4], m[i * 16 + 8], m[i * 16 + 12], + m[i * 16 + 1], m[i * 16 + 5], m[i * 16 + 9], m[i * 16 + 13], + m[i * 16 + 2], m[i * 16 + 6], m[i * 16 + 10], m[i * 16 + 14], + m[i * 16 + 3], m[i * 16 + 7], m[i * 16 + 11], m[i * 16 + 15] + ); + boneInverses.push(mat); + + } else { + console.log("WARNING: jointName:"+jointName+" cannot be found in skeleton:"+skeleton); + } + } + + threeMesh.bind( new THREE.Skeleton( bones, + boneInverses, false ), skin.bindShapeMatrix ); + + //threeMesh.bindMode = "detached"; + //threeMesh.normalizeSkinWeights(); + //threeMesh.pose(); + } + + if (threeMesh) { + threeMesh.castShadow = true; + node.add(threeMesh); + + if (material instanceof THREE.ShaderMaterial) { + materialParams.joints = joints; + var glTFShader = new THREE.glTFShader(material, materialParams, threeMesh, theLoader.rootObj); + THREE.glTFShaders.add(glTFShader); + + } + } + + }, this); } - - threeMesh.bind( new THREE.Skeleton( bones, boneInverses, false ), threeMesh.matrixWorld ); - } - - if (threeMesh) { - threeMesh.castShadow = true; - node.add(threeMesh); + } + }, this); + } - } + }, + + buildSkins: { + value: function(node) { + + if (node.glTF && node.glTF.instanceSkin) + this.buildSkin(node); + + var children = node.children; + if (children) { + children.forEach( function(child) { + this.buildSkins(child); + }, this); + } + } + }, + + createMeshAnimations : { + value : function(root) { + this.buildSkins(root); + } + }, + handleScene: { + value: function(entryID, description, userInfo) { - }, this); - - } - } - }, - - buildSkins: { - value: function(node) { - - if (node.instanceSkin) - this.buildSkin(node); - - var children = node.children; - if (children) { - children.forEach( function(child) { - this.buildSkins(child); - }, this); - } - } - }, - - createMeshAnimations : { - value : function(root) { - this.buildSkins(root); - } - }, + if (!description.nodes) { + console.log("ERROR: invalid file required nodes property is missing from scene"); + return false; + } - handleScene: { - value: function(entryID, description, userInfo) { + description.nodes.forEach( function(nodeUID) { + this.buildNodeHirerachy(nodeUID, userInfo.rootObj); + }, this); - if (!description.nodes) { - console.log("ERROR: invalid file required nodes property is missing from scene"); - return false; - } + if (this.delegate) { + this.delegate.loadCompleted(userInfo.callback, userInfo.rootObj); + } - description.nodes.forEach( function(nodeUID) { - this.buildNodeHirerachy(nodeUID, userInfo.rootObj); - }, this); + theLoader.loadAllAssets(); - if (this.delegate) { - this.delegate.loadCompleted(userInfo.callback, userInfo.rootObj); - } + return true; + } + }, - return true; - } - }, + handleImage: { + value: function(entryID, description, userInfo) { + this.resources.setEntry(entryID, null, description); + return true; + } + }, + + addNodeAnimationChannel : { + value : function(name, channel, interp) { + if (!this.nodeAnimationChannels) + this.nodeAnimationChannels = {}; + + if (!this.nodeAnimationChannels[name]) { + this.nodeAnimationChannels[name] = []; + } + + this.nodeAnimationChannels[name].push(interp); + }, + }, + + createAnimations : { + value : function() { + for (var name in this.nodeAnimationChannels) { + var nodeAnimationChannels = this.nodeAnimationChannels[name]; + var i, len = nodeAnimationChannels.length; + //console.log(" animation channels for node " + name); + //for (i = 0; i < len; i++) { + // console.log(nodeAnimationChannels[i]); + //} + var anim = new THREE.glTFAnimation(nodeAnimationChannels); + anim.name = "animation_" + name; + this.animations.push(anim); + } + } + }, + + buildAnimation: { + value : function(animation) { + + var interps = []; + var i, len = animation.channels.length; + for (i = 0; i < len; i++) { + + var channel = animation.channels[i]; + var sampler = animation.samplers[channel.sampler]; + if (sampler) { + + var input = animation.parameters[sampler.input]; + if (input && input.data) { + + var output = animation.parameters[sampler.output]; + if (output && output.data) { + + var target = channel.target; + var node = this.resources.getEntry(target.id); + if (node) { + + var path = target.path; + + var interp = { + keys : input.data, + values : output.data, + count : input.count, + target : node.object, + path : path, + type : sampler.interpolation + }; + + this.addNodeAnimationChannel(target.id, channel, interp); + interps.push(interp); + } + } + } + } + } + } + }, + + handleAnimation: { + value: function(entryID, description, userInfo) { + + var self = this; + theLoader.animationsRequested++; + var animation = new Animation(); + animation.name = entryID; + animation.onload = function() { + // self.buildAnimation(animation); + theLoader.animationsLoaded++; + theLoader.animations.push(animation); + theLoader.checkComplete(); + }; + + animation.channels = description.channels; + animation.samplers = description.samplers; + this.resources.setEntry(entryID, animation, description); + var parameters = description.parameters; + if (!parameters) { + //FIXME: not implemented in delegate + console.log("MISSING_PARAMETERS for animation:"+ entryID); + return false; + } + + // Load parameter buffers + var params = Object.keys(parameters); + params.forEach( function(param) { + + // async help + animation.totalParameters++; + + }, this); + + var params = Object.keys(parameters); + params.forEach( function(param) { + + var parameter = parameters[param]; + var accessor = this.resources.getEntry(parameter); + if (!accessor) + debugger; + accessor = accessor.object; + var bufferView = this.resources.getEntry(accessor.bufferView); + var paramObject = { + bufferView : bufferView, + byteOffset : accessor.byteOffset, + count : accessor.count, + componentType : accessor.componentType, + type : accessor.type, + id : accessor.bufferView, + name : param + }; + + var paramContext = new AnimationParameterContext(paramObject, animation); + + var loaddata = { + paramObject : paramObject, + animationParameterDelegate : animationParameterDelegate, + paramContext : paramContext + }; + + theLoader.scheduleLoad(function(data) { + + var alreadyProcessedAttribute = + THREE.GLTFLoaderUtils.getBuffer(data.paramObject, + data.animationParameterDelegate, data.paramContext); + + if (alreadyProcessedAttribute) { + data.animationParameterDelegate.resourceAvailable( + alreadyProcessedAttribute, data.paramContext); + } - handleImage: { - value: function(entryID, description, userInfo) { - this.resources.setEntry(entryID, null, description); - return true; - } - }, + }, loaddata); - addNodeAnimationChannel : { - value : function(name, channel, interp) { - if (!this.nodeAnimationChannels) - this.nodeAnimationChannels = {}; - if (!this.nodeAnimationChannels[name]) { - this.nodeAnimationChannels[name] = []; - } + }, this); - this.nodeAnimationChannels[name].push(interp); - }, - }, - - createAnimations : { - value : function() { - for (var name in this.nodeAnimationChannels) { - var nodeAnimationChannels = this.nodeAnimationChannels[name]; - var i, len = nodeAnimationChannels.length; - //console.log(" animation channels for node " + name); - //for (i = 0; i < len; i++) { - // console.log(nodeAnimationChannels[i]); - //} - var anim = new THREE.glTFAnimation(nodeAnimationChannels); - anim.name = "animation_" + name; - this.animations.push(anim); - } - } - }, - - buildAnimation: { - value : function(animation) { + return true; + } + }, - var interps = []; - var i, len = animation.channels.length; - for (i = 0; i < len; i ++) { + handleAccessor: { + value: function(entryID, description, userInfo) { + // Save attribute entry + this.resources.setEntry(entryID, description, description); + return true; + } + }, + + handleSkin: { + value: function(entryID, description, userInfo) { + // Save skin entry + + var skin = { + }; + + var m = description.bindShapeMatrix; + skin.bindShapeMatrix = new THREE.Matrix4().set( + m[0], m[4], m[8], m[12], + m[1], m[5], m[9], m[13], + m[2], m[6], m[10], m[14], + m[3], m[7], m[11], m[15] + ); + + skin.jointNames = description.jointNames; + var inverseBindMatricesDescription = this.resources.getEntry(description.inverseBindMatrices); + inverseBindMatricesDescription = inverseBindMatricesDescription.description; + skin.inverseBindMatricesDescription = inverseBindMatricesDescription; + skin.inverseBindMatricesDescription.id = description.inverseBindMatrices; + + var bufferEntry = this.resources.getEntry(inverseBindMatricesDescription.bufferView); + + var paramObject = { + bufferView : bufferEntry, + byteOffset : inverseBindMatricesDescription.byteOffset, + count : inverseBindMatricesDescription.count, + componentType : inverseBindMatricesDescription.componentType, + type : inverseBindMatricesDescription.type, + id : inverseBindMatricesDescription.bufferView, + name : skin.inverseBindMatricesDescription.id + }; + + var context = new InverseBindMatricesContext(paramObject, skin); + + var loaddata = { + paramObject : paramObject, + inverseBindMatricesDelegate : inverseBindMatricesDelegate, + context : context + }; + + theLoader.scheduleLoad(function(data) { + + var alreadyProcessedAttribute = + THREE.GLTFLoaderUtils.getBuffer(data.paramObject, + data.inverseBindMatricesDelegate, data.context); + + if (alreadyProcessedAttribute) { + data.inverseBindMatricesDelegate.resourceAvailable( + alreadyProcessedAttribute, data.context); + } - var channel = animation.channels[i]; - var sampler = animation.samplers[channel.sampler]; - if (sampler) { + }, loaddata); - var input = animation.parameters[sampler.input]; - if (input && input.data) { - var output = animation.parameters[sampler.output]; - if (output && output.data) { - var target = channel.target; - var node = this.resources.getEntry(target.id); - if (node) { + var bufferView = this.resources.getEntry(skin.inverseBindMatricesDescription.bufferView); + skin.inverseBindMatricesDescription.bufferView = + bufferView.object; + this.resources.setEntry(entryID, skin, description); + return true; + } + }, - var path = target.path; + handleSampler: { + value: function(entryID, description, userInfo) { + // Save attribute entry + this.resources.setEntry(entryID, description, description); + return true; + } + }, - if (path == "rotation") - { - convertAxisAngleToQuaternion(output.data, output.count); - } + handleTexture: { + value: function(entryID, description, userInfo) { + // Save attribute entry + this.resources.setEntry(entryID, null, description); + return true; + } + }, + + handleError: { + value: function(msg) { - var interp = { - keys : input.data, - values : output.data, - count : input.count, - target : node.object, - path : path, - type : sampler.interpolation - }; - - this.addNodeAnimationChannel(target.id, channel, interp); - interps.push(interp); - } - } + throw new Error(msg); + return true; + } + }, + + _delegate: { + value: new LoadDelegate, + writable: true + }, + + delegate: { + enumerable: true, + get: function() { + return this._delegate; + }, + set: function(value) { + this._delegate = value; } } - } - } - }, + }); - handleAnimation: { - value: function(entryID, description, userInfo) { - var self = this; - theLoader.animationsRequested ++; - var animation = new Animation(); - animation.name = entryID; - animation.onload = function() { - // self.buildAnimation(animation); - theLoader.animationsLoaded ++; - theLoader.animations.push(animation); - theLoader.checkComplete(); - }; - - animation.channels = description.channels; - animation.samplers = description.samplers; - this.resources.setEntry(entryID, animation, description); - var parameters = description.parameters; - if (!parameters) { - //FIXME: not implemented in delegate - console.log("MISSING_PARAMETERS for animation:" + entryID); - return false; - } - - // Load parameter buffers - var params = Object.keys(parameters); - params.forEach( function(param) { - - animation.totalParameters ++; - var parameter = parameters[param]; - var accessor = this.resources.getEntry(parameter); - if (!accessor) - debugger; - accessor = accessor.object; - var bufferView = this.resources.getEntry(accessor.bufferView); - var paramObject = { - bufferView : bufferView, - byteOffset : accessor.byteOffset, - count : accessor.count, - type : accessor.type, - id : accessor.bufferView, - name : param - }; - - var paramContext = new AnimationParameterContext(paramObject, animation); - - var alreadyProcessedAttribute = THREE.GLTFLoaderUtils.getBuffer(paramObject, animationParameterDelegate, paramContext); - /*if(alreadyProcessedAttribute) { - vertexAttributeDelegate.resourceAvailable(alreadyProcessedAttribute, attribContext); - }*/ - }, this); - - return true; - } - }, - - handleAccessor: { - value: function(entryID, description, userInfo) { - // Save attribute entry - this.resources.setEntry(entryID, description, description); - return true; - } - }, - - handleSkin: { - value: function(entryID, description, userInfo) { - // Save skin entry - - var skin = { - }; - - var m = description.bindShapeMatrix; - skin.bindShapeMatrix = new THREE.Matrix4().fromArray( m ); - - skin.jointsIds = description.joints; - var inverseBindMatricesDescription = description.inverseBindMatrices; - skin.inverseBindMatricesDescription = inverseBindMatricesDescription; - skin.inverseBindMatricesDescription.id = entryID + "_inverseBindMatrices"; - - var bufferEntry = this.resources.getEntry(inverseBindMatricesDescription.bufferView); - - var paramObject = { - bufferView : bufferEntry, - byteOffset : inverseBindMatricesDescription.byteOffset, - count : inverseBindMatricesDescription.count, - type : inverseBindMatricesDescription.type, - id : inverseBindMatricesDescription.bufferView, - name : skin.inverseBindMatricesDescription.id - }; - - var context = new InverseBindMatricesContext(paramObject, skin); - - var alreadyProcessedAttribute = THREE.GLTFLoaderUtils.getBuffer(paramObject, inverseBindMatricesDelegate, context); - - var bufferView = this.resources.getEntry(skin.inverseBindMatricesDescription.bufferView); - skin.inverseBindMatricesDescription.bufferView = - bufferView.object; - this.resources.setEntry(entryID, skin, description); - return true; - } - }, - - handleSampler: { - value: function(entryID, description, userInfo) { - // Save attribute entry - this.resources.setEntry(entryID, description, description); - return true; - } - }, - - handleTexture: { - value: function(entryID, description, userInfo) { - // Save attribute entry - this.resources.setEntry(entryID, null, description); - return true; - } - }, - - handleError: { - value: function(msg) { - - throw new Error(msg); - return true; - } - }, - - _delegate: { - value: new LoadDelegate, - writable: true - }, - - delegate: { - enumerable: true, - get: function() { - return this._delegate; - }, - set: function(value) { - this._delegate = value; - } - } - }); - - - // Loader + // Loader var Context = function(rootObj, callback) { this.rootObj = rootObj; @@ -1506,49 +1869,67 @@ THREE.glTFLoader.prototype.load = function( url, callback ) { var rootObj = new THREE.Object3D(); var self = this; - + var loader = Object.create(ThreeGLTFLoader); loader.initWithPath(url); - loader.load(new Context(rootObj, - function(obj) { - }), - null); + loader.load(new Context(rootObj, + function(obj) { + }), + null); this.loader = loader; this.callback = callback; this.rootObj = rootObj; return rootObj; -}; +} + + +THREE.glTFLoader.prototype.scheduleLoad = function(loadFn, data) { + + this.loadRequests.push({fn: loadFn, data:data}); +} + +THREE.glTFLoader.prototype.loadAllAssets = function() { + + for (var i = 0, len = this.loadRequests.length; i < len; i++) { + var request = this.loadRequests[i]; + request.fn(request.data); + } +} THREE.glTFLoader.prototype.callLoadedCallback = function() { var result = { scene : this.rootObj, cameras : this.loader.cameras, animations : this.loader.animations, + shaders : this.loader.shaders, }; - + this.callback(result); -}; +} THREE.glTFLoader.prototype.checkComplete = function() { - if (this.meshesLoaded == this.meshesRequested + if (this.meshesLoaded == this.meshesRequested && this.shadersLoaded == this.shadersRequested && this.animationsLoaded == this.animationsRequested) { - - for (var i = 0; i < this.pendingMeshes.length; i ++) { + for (var i = 0; i < this.pendingMeshes.length; i++) { var pending = this.pendingMeshes[i]; pending.mesh.attachToNode(pending.node); } - - for (var i = 0; i < this.animationsLoaded; i ++) { + + for (var i = 0; i < this.animationsLoaded; i++) { var animation = this.animations[i]; this.loader.buildAnimation(animation); } this.loader.createAnimations(); this.loader.createMeshAnimations(this.rootObj); + THREE.glTFShaders.bindShaderParameters(this.rootObj); this.callLoadedCallback(); } -}; +} + + + diff --git a/examples/js/loaders/gltf/glTFLoaderUtils.js b/examples/js/loaders/gltf/glTFLoaderUtils.js index 820fc621f12a9abef6346389ebb5182ce8e0591b..f653cacbb0315b03fa0c06a3a26289554faa9a28 100644 --- a/examples/js/loaders/gltf/glTFLoaderUtils.js +++ b/examples/js/loaders/gltf/glTFLoaderUtils.js @@ -26,8 +26,8 @@ THREE.GLTFLoaderUtils = Object.create(Object, { value: function() { this._streams = {}; this._streamsStatus = {}; - this._resources = {}; - this._resourcesStatus = {}; + this._resources = {}; + this._resourcesStatus = {}; } }, @@ -35,60 +35,119 @@ THREE.GLTFLoaderUtils = Object.create(Object, { _containsResource: { enumerable: false, value: function(resourceID) { - return this._resources[resourceID] ? true : false; + return this._resources[resourceID] ? true : false; } }, _storeResource: { enumerable: false, value: function(resourceID, resource) { - if (!resourceID) { - console.log("ERROR: entry does not contain id, cannot store"); - return; - } + if (!resourceID) { + console.log("ERROR: entry does not contain id, cannot store"); + return; + } - if (this._containsResource[resourceID]) { - console.log("WARNING: resource:" + resourceID + " is already stored, overriding"); - } + if (this._containsResource[resourceID]) { + console.log("WARNING: resource:"+resourceID+" is already stored, overriding"); + } - this._resources[resourceID] = resource; + this._resources[resourceID] = resource; } }, _getResource: { enumerable: false, value: function(resourceID) { - return this._resources[resourceID]; + return this._resources[resourceID]; } }, _loadStream: { value: function(path, type, delegate) { - var self = this; - if (!type) { - delegate.handleError(THREE.GLTFLoaderUtils.INVALID_TYPE, null); - return; - } - if (!path) { - delegate.handleError(THREE.GLTFLoaderUtils.INVALID_PATH); - return; - } - var xhr = new XMLHttpRequest(); - xhr.open('GET', path, true); - xhr.responseType = (type === this.ARRAY_BUFFER) ? "arraybuffer" : "text"; + var dataUriRegex = /^data:(.*?)(;base64)?,(.*)$/; + + function decodeDataUriText(isBase64, data) { + var result = decodeURIComponent(data); + if (isBase64) { + return atob(result); + } + return result; + } + + function decodeDataUriArrayBuffer(isBase64, data) { + var byteString = decodeDataUriText(isBase64, data); + var buffer = new ArrayBuffer(byteString.length); + var view = new Uint8Array(buffer); + for (var i = 0; i < byteString.length; i++) { + view[i] = byteString.charCodeAt(i); + } + return buffer; + } + + function decodeDataUri(dataUriRegexResult, responseType) { + responseType = typeof responseType !== 'undefined' ? responseType : ''; + var mimeType = dataUriRegexResult[1]; + var isBase64 = !!dataUriRegexResult[2]; + var data = dataUriRegexResult[3]; + + switch (responseType) { + case '': + case 'text': + return decodeDataUriText(isBase64, data); + case 'ArrayBuffer': + return decodeDataUriArrayBuffer(isBase64, data); + case 'blob': + var buffer = decodeDataUriArrayBuffer(isBase64, data); + return new Blob([buffer], { + type : mimeType + }); + case 'document': + var parser = new DOMParser(); + return parser.parseFromString(decodeDataUriText(isBase64, data), mimeType); + case 'json': + return JSON.parse(decodeDataUriText(isBase64, data)); + default: + throw 'Unhandled responseType: ' + responseType; + } + } + + var dataUriRegexResult = dataUriRegex.exec(path); + if (dataUriRegexResult !== null) { + delegate.streamAvailable(path, decodeDataUri(dataUriRegexResult, type)); + return; + } + + var self = this; + + if (!type) { + delegate.handleError(THREE.GLTFLoaderUtils.INVALID_TYPE, null); + return; + } + + if (!path) { + delegate.handleError(THREE.GLTFLoaderUtils.INVALID_PATH); + return; + } + + var xhr = new XMLHttpRequest(); + xhr.open('GET', path, true); + xhr.responseType = (type === this.ARRAY_BUFFER) ? "arraybuffer" : "text"; //if this is not specified, 1 "big blob" scenes fails to load. - xhr.setRequestHeader("If-Modified-Since", "Sat, 01 Jan 1970 00:00:00 GMT"); - xhr.addEventListener( 'load', function ( event ) { - delegate.streamAvailable(path, xhr.response); - }, false ); - xhr.addEventListener( 'error', function ( event ) { - delegate.handleError(THREE.GLTFLoaderUtils.XMLHTTPREQUEST_STATUS_ERROR, xhr.status); - }, false ); - xhr.send(null); + xhr.setRequestHeader("If-Modified-Since", "Sat, 01 Jan 1970 00:00:00 GMT"); + xhr.onload = function(e) { + if ((xhr.status == 200) || (xhr.status == 206)) { + + delegate.streamAvailable(path, xhr.response); + + } else { + delegate.handleError(THREE.GLTFLoaderUtils.XMLHTTPREQUEST_STATUS_ERROR, this.status); + } + }; + xhr.send(null); } }, @@ -97,89 +156,109 @@ THREE.GLTFLoaderUtils = Object.create(Object, { _handleRequest: { value: function(request) { - var resourceStatus = this._resourcesStatus[request.id]; - if (resourceStatus) + var resourceStatus = this._resourcesStatus[request.id]; + if (resourceStatus) { - this._resourcesStatus[request.id] ++; - } + this._resourcesStatus[request.id]++; + } else - { - this._resourcesStatus[request.id] = 1; - } + { + this._resourcesStatus[request.id] = 1; + } - var streamStatus = this._streamsStatus[request.path]; - if (streamStatus && streamStatus.status === "loading" ) + var streamStatus = this._streamsStatus[request.uri]; + if (streamStatus && streamStatus.status === "loading" ) { - streamStatus.requests.push(request); - return; - } + streamStatus.requests.push(request); + return; + } - this._streamsStatus[request.path] = { status : "loading", requests : [ request ] }; + this._streamsStatus[request.uri] = { status : "loading", requests : [request] }; - var self = this; - var processResourceDelegate = {}; - - processResourceDelegate.streamAvailable = function(path, res_) { - var streamStatus = self._streamsStatus[path]; - var requests = streamStatus.requests; - requests.forEach( function(req_) { - var subArray = res_.slice(req_.range[0], req_.range[1]); - var convertedResource = req_.delegate.convert(subArray, req_.ctx); - self._storeResource(req_.id, convertedResource); - req_.delegate.resourceAvailable(convertedResource, req_.ctx); - -- self._resourcesStatus[req_.id]; - - }, this); + var self = this; + var processResourceDelegate = {}; + + processResourceDelegate.streamAvailable = function(path, res_) { + var streamStatus = self._streamsStatus[path]; + var requests = streamStatus.requests; + requests.forEach( function(req_) { + var subArray = res_.slice(req_.range[0], req_.range[1]); + var convertedResource = req_.delegate.convert(subArray, req_.ctx); + self._storeResource(req_.id, convertedResource); + req_.delegate.resourceAvailable(convertedResource, req_.ctx); + --self._resourcesStatus[req_.id]; + + }, this); - delete self._streamsStatus[path]; + delete self._streamsStatus[path]; - }; + }; - processResourceDelegate.handleError = function(errorCode, info) { - request.delegate.handleError(errorCode, info); - }; + processResourceDelegate.handleError = function(errorCode, info) { + request.delegate.handleError(errorCode, info); + } - this._loadStream(request.path, request.type, processResourceDelegate); + this._loadStream(request.uri, request.type, processResourceDelegate); } }, _elementSizeForGLType: { - value: function(glType) { - switch (glType) { - case WebGLRenderingContext.FLOAT : - return Float32Array.BYTES_PER_ELEMENT; - case WebGLRenderingContext.UNSIGNED_BYTE : - return Uint8Array.BYTES_PER_ELEMENT; - case WebGLRenderingContext.UNSIGNED_SHORT : - return Uint16Array.BYTES_PER_ELEMENT; - case WebGLRenderingContext.FLOAT_VEC2 : - return Float32Array.BYTES_PER_ELEMENT * 2; - case WebGLRenderingContext.FLOAT_VEC3 : - return Float32Array.BYTES_PER_ELEMENT * 3; - case WebGLRenderingContext.FLOAT_VEC4 : - return Float32Array.BYTES_PER_ELEMENT * 4; - case WebGLRenderingContext.FLOAT_MAT3 : - return Float32Array.BYTES_PER_ELEMENT * 9; - case WebGLRenderingContext.FLOAT_MAT4 : - return Float32Array.BYTES_PER_ELEMENT * 16; - default: - return null; - } + value: function(componentType, type) { + + var nElements = 0; + switch(type) { + case "SCALAR" : + nElements = 1; + break; + case "VEC2" : + nElements = 2; + break; + case "VEC3" : + nElements = 3; + break; + case "VEC4" : + nElements = 4; + break; + case "MAT2" : + nElements = 4; + break; + case "MAT3" : + nElements = 9; + break; + case "MAT4" : + nElements = 16; + break; + default : + debugger; + break; + } + + switch (componentType) { + case WebGLRenderingContext.FLOAT : + return Float32Array.BYTES_PER_ELEMENT * nElements; + case WebGLRenderingContext.UNSIGNED_BYTE : + return Uint8Array.BYTES_PER_ELEMENT * nElements; + case WebGLRenderingContext.UNSIGNED_SHORT : + return Uint16Array.BYTES_PER_ELEMENT * nElements; + default : + debugger; + return null; + } } }, _handleWrappedBufferViewResourceLoading: { value: function(wrappedBufferView, delegate, ctx) { - var bufferView = wrappedBufferView.bufferView; - var buffer = bufferView.buffer; - var byteOffset = wrappedBufferView.byteOffset + bufferView.description.byteOffset; - var range = [ byteOffset, (this._elementSizeForGLType(wrappedBufferView.type) * wrappedBufferView.count) + byteOffset ]; + var bufferView = wrappedBufferView.bufferView; + var buffer = bufferView.buffer; + var byteOffset = wrappedBufferView.byteOffset + bufferView.description.byteOffset; + var range = [byteOffset , (this._elementSizeForGLType(wrappedBufferView.componentType, wrappedBufferView.type) * wrappedBufferView.count) + byteOffset]; - this._handleRequest({ "id" : wrappedBufferView.id, + this._handleRequest({ "id" : wrappedBufferView.id, "range" : range, "type" : buffer.description.type, - "path" : buffer.description.path, + "uri" : buffer.description.uri, "delegate" : delegate, "ctx" : ctx }, null); } @@ -189,14 +268,14 @@ THREE.GLTFLoaderUtils = Object.create(Object, { value: function(wrappedBufferView, delegate, ctx) { - var savedBuffer = this._getResource(wrappedBufferView.id); - if (savedBuffer) { - return savedBuffer; - } else { - this._handleWrappedBufferViewResourceLoading(wrappedBufferView, delegate, ctx); - } + var savedBuffer = this._getResource(wrappedBufferView.id); + if (false) { // savedBuffer) { + return savedBuffer; + } else { + this._handleWrappedBufferViewResourceLoading(wrappedBufferView, delegate, ctx); + } - return null; + return null; } }, @@ -204,17 +283,17 @@ THREE.GLTFLoaderUtils = Object.create(Object, { value: function(request, delegate, ctx) { - request.delegate = delegate; - request.ctx = ctx; + request.delegate = delegate; + request.ctx = ctx; - this._handleRequest({ "id" : request.id, - "path" : request.path, - "range" : [ 0 ], + this._handleRequest({ "id" : request.id, + "uri" : request.uri, + "range" : [0], "type" : "text", "delegate" : delegate, "ctx" : ctx }, null); - return null; -} + return null; + } }, }); diff --git a/examples/js/loaders/gltf/glTFShaders.js b/examples/js/loaders/gltf/glTFShaders.js new file mode 100644 index 0000000000000000000000000000000000000000..e5a3c632bea04af9f8169d5562f1b056003092e1 --- /dev/null +++ b/examples/js/loaders/gltf/glTFShaders.js @@ -0,0 +1,145 @@ +/** + * @author Tony Parisi / http://www.tonyparisi.com/ + */ + +THREE.glTFShaders = ( function () { + + var shaders = []; + + return { + add : function(shader) { + shaders.push(shader); + }, + + remove: function(shader) { + + var i = shaders.indexOf(shader); + + if ( i !== -1 ) { + shaders.splice( i, 1 ); + } + }, + + removeAll: function(shader) { + + // probably want to clean up the shaders, too, but not for now + shaders = []; + }, + + bindShaderParameters: function(scene) { + for (i = 0; i < shaders.length; i++) + { + shaders[i].bindParameters(scene); + } + }, + + update : function(scene, camera) { + for (i = 0; i < shaders.length; i++) + { + shaders[i].update(scene, camera); + } + }, + }; +})(); + +// Construction/initialization +THREE.glTFShader = function(material, params, object, scene) { + this.material = material; + this.parameters = params.technique.parameters; + this.uniforms = params.technique.uniforms; + this.joints = params.joints; + this.object = object; + this.semantics = {}; + this.m4 = new THREE.Matrix4; +} + + +// bindParameters - connect the uniform values to their source parameters +THREE.glTFShader.prototype.bindParameters = function(scene) { + + function findObject(o, p) { + if (o.glTFID == param.node) { + p.sourceObject = o; + } + } + + for (var uniform in this.uniforms) { + var pname = this.uniforms[uniform]; + var param = this.parameters[pname]; + if (param.semantic) { + + var p = { + semantic : param.semantic, + uniform: this.material.uniforms[uniform] + }; + + if (param.node) { + scene.traverse(function(o) { findObject(o, p)}); + } + else { + p.sourceObject = this.object; + } + + this.semantics[pname] = p; + + } + } + +} + +// Update - update all the uniform values +THREE.glTFShader.prototype.update = function(scene, camera) { + + // update scene graph + + scene.updateMatrixWorld(); + + // update camera matrices and frustum + camera.updateMatrixWorld(); + camera.matrixWorldInverse.getInverse( camera.matrixWorld ); + + for (var sname in this.semantics) { + var semantic = this.semantics[sname]; + if (semantic) { + switch (semantic.semantic) { + case "MODELVIEW" : + var m4 = semantic.uniform.value; + m4.multiplyMatrices(camera.matrixWorldInverse, + semantic.sourceObject.matrixWorld); + break; + + case "MODELVIEWINVERSETRANSPOSE" : + var m3 = semantic.uniform.value; + this.m4.multiplyMatrices(camera.matrixWorldInverse, + semantic.sourceObject.matrixWorld); + m3.getNormalMatrix(this.m4); + break; + + case "PROJECTION" : + var m4 = semantic.uniform.value; + m4.copy(camera.projectionMatrix); + break; + + case "JOINTMATRIX" : + + var m4v = semantic.uniform.value; + for (var mi = 0; mi < m4v.length; mi++) { + // So it goes like this: + // SkinnedMesh world matrix is already baked into MODELVIEW; + // ransform joints to local space, + // then transform using joint's inverse + m4v[mi].getInverse(semantic.sourceObject.matrixWorld). + multiply(this.joints[mi].matrixWorld). + multiply(this.object.skeleton.boneInverses[mi]); + } + + //console.log("Joint:", semantic) + break; + + default : + throw new Error("Unhandled shader semantic" + semantic); + break; + } + } + } +} diff --git a/examples/js/loaders/gltf/gltfUtilities.js b/examples/js/loaders/gltf/gltfUtilities.js new file mode 100644 index 0000000000000000000000000000000000000000..f8db06647a74d482ef5c7535d175fc39c7779c10 --- /dev/null +++ b/examples/js/loaders/gltf/gltfUtilities.js @@ -0,0 +1,204 @@ +/** +gltfUtilities +@license +The MIT License (MIT) +Copyright (c) 2014 Analytical Graphics, Inc. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +*/ +(function(root, factory) { + "use strict"; + /*global define*/ + if (typeof define === 'function' && define.amd) { + // AMD. Register as an anonymous module. + define([], factory); + } else { + // Browser globals + root.gltfUtilities = factory(); + } +}(this, function() { + "use strict"; + + /** + * Given a URL, determine whether that URL is considered cross-origin to the current page. + */ + var isCrossOriginUrl = function(url) { + var location = window.location; + var a = document.createElement('a'); + + a.href = url; + + // host includes both hostname and port if the port is not standard + return location.protocol !== a.protocol || location.host !== a.host; + }; + + var isDataUriRegex = /^data:/; + + /** + * Asynchronously loads the given image URL. Attempts to load cross-origin images using CORS. + * + * @param {String} url The source of the image. + * @param {Function} success A function that will be called with an Image object + * once the image has loaded successfully. + * @param {Function} [error] A function that will be called if the request fails. + * + * @see Cross-Origin Resource Sharing + */ + var loadImage = function(url, success, error) { + var image = new Image(); + + image.onload = function() { + success(image); + }; + + if (typeof error !== 'undefined') { + image.onerror = error; + } + + var crossOrigin; + if (isDataUriRegex.test(url)) { + crossOrigin = false; + } else { + crossOrigin = isCrossOriginUrl(url); + } + + if (crossOrigin) { + image.crossOrigin = ''; + } + + image.src = url; + }; + + var dataUriRegex = /^data:(.*?)(;base64)?,(.*)$/; + + function decodeDataUriText(isBase64, data) { + var result = decodeURIComponent(data); + if (isBase64) { + return atob(result); + } + return result; + } + + function decodeDataUriArrayBuffer(isBase64, data) { + var byteString = decodeDataUriText(isBase64, data); + var buffer = new ArrayBuffer(byteString.length); + var view = new Uint8Array(buffer); + for (var i = 0; i < byteString.length; i++) { + view[i] = byteString.charCodeAt(i); + } + return buffer; + } + + function decodeDataUri(dataUriRegexResult, responseType) { + responseType = typeof responseType !== 'undefined' ? responseType : ''; + var mimeType = dataUriRegexResult[1]; + var isBase64 = !!dataUriRegexResult[2]; + var data = dataUriRegexResult[3]; + + switch (responseType) { + case '': + case 'text': + return decodeDataUriText(isBase64, data); + case 'arraybuffer': + return decodeDataUriArrayBuffer(isBase64, data); + case 'blob': + var buffer = decodeDataUriArrayBuffer(isBase64, data); + return new Blob([buffer], { + type : mimeType + }); + case 'document': + var parser = new DOMParser(); + return parser.parseFromString(decodeDataUriText(isBase64, data), mimeType); + case 'json': + return JSON.parse(decodeDataUriText(isBase64, data)); + default: + throw 'Unhandled responseType: ' + responseType; + } + } + + var loadWithXhr = function(url, responseType, success, error) { + var dataUriRegexResult = dataUriRegex.exec(url); + if (dataUriRegexResult !== null) { + success(decodeDataUri(dataUriRegexResult, responseType)); + return; + } + + var xhr = new XMLHttpRequest(); + xhr.open('GET', url, true); + + if (typeof responseType !== 'undefined') { + xhr.responseType = responseType; + } + + xhr.onload = function(e) { + if (xhr.status === 200) { + success(xhr.response); + } else { + error(xhr); + } + }; + + xhr.onerror = function(e) { + error(xhr); + }; + + xhr.send(); + }; + + /** + * Asynchronously loads the given URL as raw binary data. The data is loaded + * using XMLHttpRequest, which means that in order to make requests to another origin, + * the server must have Cross-Origin Resource Sharing (CORS) headers enabled. + * + * @param {String} url The URL of the binary data. + * @param {Function} success A function that will be called with an ArrayBuffer object + * once the data has loaded successfully. + * @param {Function} [error] A function that will be called with the XMLHttpRequest object + * if the request fails. + * + * @see XMLHttpRequest + * @see Cross-Origin Resource Sharing + */ + var loadArrayBuffer = function(url, success, error) { + loadWithXhr(url, 'arraybuffer', success, error); + }; + + /** + * Asynchronously loads the given URL as text. The data is loaded + * using XMLHttpRequest, which means that in order to make requests to another origin, + * the server must have Cross-Origin Resource Sharing (CORS) headers enabled. + * + * @param {String} url The URL to request. + * @param {Function} success A function that will be called with a String + * once the data has loaded successfully. + * @param {Function} [error] A function that will be called with the XMLHttpRequest object + * if the request fails. + * + * @see XMLHttpRequest + * @see Cross-Origin Resource Sharing + */ + var loadText = function(url, success, error) { + return loadWithXhr(url, undefined, success, error); + }; + + return { + loadImage : loadImage, + loadArrayBuffer : loadArrayBuffer, + loadText : loadText + }; +})); + + diff --git a/examples/models/gltf/CesiumMan/README.txt b/examples/models/gltf/CesiumMan/README.txt new file mode 100644 index 0000000000000000000000000000000000000000..a192b692851e782ceff2dbd4e3ab1ce3eadc05f3 --- /dev/null +++ b/examples/models/gltf/CesiumMan/README.txt @@ -0,0 +1 @@ +Donated by Cesium for glTF testing. Please follow the Cesium Trademark Terms and Conditions: https://github.com/AnalyticalGraphicsInc/cesium/wiki/CesiumTrademark.pdf \ No newline at end of file diff --git a/examples/models/gltf/CesiumMan/glTF-MaterialsCommon/Cesium_Man.bin b/examples/models/gltf/CesiumMan/glTF-MaterialsCommon/Cesium_Man.bin new file mode 100644 index 0000000000000000000000000000000000000000..0964d81c220b246acc05b81f9af6acae9e03707e Binary files /dev/null and b/examples/models/gltf/CesiumMan/glTF-MaterialsCommon/Cesium_Man.bin differ diff --git a/examples/models/gltf/CesiumMan/glTF-MaterialsCommon/Cesium_Man.gltf b/examples/models/gltf/CesiumMan/glTF-MaterialsCommon/Cesium_Man.gltf new file mode 100644 index 0000000000000000000000000000000000000000..b2933b8314d36bcdbf7ffba990a4395030003286 --- /dev/null +++ b/examples/models/gltf/CesiumMan/glTF-MaterialsCommon/Cesium_Man.gltf @@ -0,0 +1,2111 @@ +{ + "accessors": { + "IBM_Armature_Cesium_Man-skin": { + "bufferView": "bufferView_118", + "byteOffset": 0, + "componentType": 5126, + "count": 19, + "type": "MAT4" + }, + "accessor_112": { + "bufferView": "bufferView_120", + "byteOffset": 448512, + "byteStride": 16, + "componentType": 5126, + "count": 14016, + "max": [ + 1, + 0.98992, + 0.951076, + 0.874108 + ], + "min": [ + 0.0100802, + 0, + 0, + 0 + ], + "type": "VEC4" + }, + "accessor_115": { + "bufferView": "bufferView_120", + "byteOffset": 672768, + "byteStride": 16, + "componentType": 5126, + "count": 14016, + "max": [ + 18, + 18, + 18, + 18 + ], + "min": [ + 0, + 0, + 0, + 0 + ], + "type": "VEC4" + }, + "accessor_21": { + "bufferView": "bufferView_119", + "byteOffset": 0, + "byteStride": 0, + "componentType": 5123, + "count": 14016, + "type": "SCALAR" + }, + "accessor_23": { + "bufferView": "bufferView_120", + "byteOffset": 0, + "byteStride": 12, + "componentType": 5126, + "count": 14016, + "max": [ + 0.180954, + 0.569137, + 1.50655 + ], + "min": [ + -0.131, + -0.569137, + 0 + ], + "type": "VEC3" + }, + "accessor_25": { + "bufferView": "bufferView_120", + "byteOffset": 168192, + "byteStride": 12, + "componentType": 5126, + "count": 14016, + "max": [ + 1, + 0.999981, + 0.994445 + ], + "min": [ + -1, + -0.999981, + -1 + ], + "type": "VEC3" + }, + "accessor_27": { + "bufferView": "bufferView_120", + "byteOffset": 336384, + "byteStride": 8, + "componentType": 5126, + "count": 14016, + "max": [ + 0.990806, + 0.98803 + ], + "min": [ + 0.0140794, + 0.00844598 + ], + "type": "VEC2" + }, + "animAccessor_0": { + "bufferView": "bufferView_118", + "byteOffset": 1216, + "componentType": 5126, + "count": 49, + "type": "SCALAR" + }, + "animAccessor_1": { + "bufferView": "bufferView_118", + "byteOffset": 1412, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_10": { + "bufferView": "bufferView_118", + "byteOffset": 7292, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_11": { + "bufferView": "bufferView_118", + "byteOffset": 7880, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_12": { + "bufferView": "bufferView_118", + "byteOffset": 8468, + "componentType": 5126, + "count": 49, + "type": "VEC4" + }, + "animAccessor_13": { + "bufferView": "bufferView_118", + "byteOffset": 9252, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_14": { + "bufferView": "bufferView_118", + "byteOffset": 9840, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_15": { + "bufferView": "bufferView_118", + "byteOffset": 10428, + "componentType": 5126, + "count": 49, + "type": "VEC4" + }, + "animAccessor_16": { + "bufferView": "bufferView_118", + "byteOffset": 11212, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_17": { + "bufferView": "bufferView_118", + "byteOffset": 11800, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_18": { + "bufferView": "bufferView_118", + "byteOffset": 12388, + "componentType": 5126, + "count": 49, + "type": "VEC4" + }, + "animAccessor_19": { + "bufferView": "bufferView_118", + "byteOffset": 13172, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_2": { + "bufferView": "bufferView_118", + "byteOffset": 2000, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_20": { + "bufferView": "bufferView_118", + "byteOffset": 13760, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_21": { + "bufferView": "bufferView_118", + "byteOffset": 14348, + "componentType": 5126, + "count": 49, + "type": "VEC4" + }, + "animAccessor_22": { + "bufferView": "bufferView_118", + "byteOffset": 15132, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_23": { + "bufferView": "bufferView_118", + "byteOffset": 15720, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_24": { + "bufferView": "bufferView_118", + "byteOffset": 16308, + "componentType": 5126, + "count": 49, + "type": "VEC4" + }, + "animAccessor_25": { + "bufferView": "bufferView_118", + "byteOffset": 17092, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_26": { + "bufferView": "bufferView_118", + "byteOffset": 17680, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_27": { + "bufferView": "bufferView_118", + "byteOffset": 18268, + "componentType": 5126, + "count": 49, + "type": "VEC4" + }, + "animAccessor_28": { + "bufferView": "bufferView_118", + "byteOffset": 19052, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_29": { + "bufferView": "bufferView_118", + "byteOffset": 19640, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_3": { + "bufferView": "bufferView_118", + "byteOffset": 2588, + "componentType": 5126, + "count": 49, + "type": "VEC4" + }, + "animAccessor_30": { + "bufferView": "bufferView_118", + "byteOffset": 20228, + "componentType": 5126, + "count": 49, + "type": "VEC4" + }, + "animAccessor_31": { + "bufferView": "bufferView_118", + "byteOffset": 21012, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_32": { + "bufferView": "bufferView_118", + "byteOffset": 21600, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_33": { + "bufferView": "bufferView_118", + "byteOffset": 22188, + "componentType": 5126, + "count": 49, + "type": "VEC4" + }, + "animAccessor_34": { + "bufferView": "bufferView_118", + "byteOffset": 22972, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_35": { + "bufferView": "bufferView_118", + "byteOffset": 23560, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_36": { + "bufferView": "bufferView_118", + "byteOffset": 24148, + "componentType": 5126, + "count": 49, + "type": "VEC4" + }, + "animAccessor_37": { + "bufferView": "bufferView_118", + "byteOffset": 24932, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_38": { + "bufferView": "bufferView_118", + "byteOffset": 25520, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_39": { + "bufferView": "bufferView_118", + "byteOffset": 26108, + "componentType": 5126, + "count": 49, + "type": "VEC4" + }, + "animAccessor_4": { + "bufferView": "bufferView_118", + "byteOffset": 3372, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_40": { + "bufferView": "bufferView_118", + "byteOffset": 26892, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_41": { + "bufferView": "bufferView_118", + "byteOffset": 27480, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_42": { + "bufferView": "bufferView_118", + "byteOffset": 28068, + "componentType": 5126, + "count": 49, + "type": "VEC4" + }, + "animAccessor_43": { + "bufferView": "bufferView_118", + "byteOffset": 28852, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_44": { + "bufferView": "bufferView_118", + "byteOffset": 29440, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_45": { + "bufferView": "bufferView_118", + "byteOffset": 30028, + "componentType": 5126, + "count": 49, + "type": "VEC4" + }, + "animAccessor_46": { + "bufferView": "bufferView_118", + "byteOffset": 30812, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_47": { + "bufferView": "bufferView_118", + "byteOffset": 31400, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_48": { + "bufferView": "bufferView_118", + "byteOffset": 31988, + "componentType": 5126, + "count": 49, + "type": "VEC4" + }, + "animAccessor_49": { + "bufferView": "bufferView_118", + "byteOffset": 32772, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_5": { + "bufferView": "bufferView_118", + "byteOffset": 3960, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_50": { + "bufferView": "bufferView_118", + "byteOffset": 33360, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_51": { + "bufferView": "bufferView_118", + "byteOffset": 33948, + "componentType": 5126, + "count": 49, + "type": "VEC4" + }, + "animAccessor_52": { + "bufferView": "bufferView_118", + "byteOffset": 34732, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_53": { + "bufferView": "bufferView_118", + "byteOffset": 35320, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_54": { + "bufferView": "bufferView_118", + "byteOffset": 35908, + "componentType": 5126, + "count": 49, + "type": "VEC4" + }, + "animAccessor_55": { + "bufferView": "bufferView_118", + "byteOffset": 36692, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_56": { + "bufferView": "bufferView_118", + "byteOffset": 37280, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_57": { + "bufferView": "bufferView_118", + "byteOffset": 37868, + "componentType": 5126, + "count": 49, + "type": "VEC4" + }, + "animAccessor_6": { + "bufferView": "bufferView_118", + "byteOffset": 4548, + "componentType": 5126, + "count": 49, + "type": "VEC4" + }, + "animAccessor_7": { + "bufferView": "bufferView_118", + "byteOffset": 5332, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_8": { + "bufferView": "bufferView_118", + "byteOffset": 5920, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_9": { + "bufferView": "bufferView_118", + "byteOffset": 6508, + "componentType": 5126, + "count": 49, + "type": "VEC4" + } + }, + "animations": { + "animation_0": { + "channels": [ + { + "sampler": "animation_0_scale_sampler", + "target": { + "id": "Skeleton_torso_joint_1", + "path": "scale" + } + }, + { + "sampler": "animation_0_translation_sampler", + "target": { + "id": "Skeleton_torso_joint_1", + "path": "translation" + } + }, + { + "sampler": "animation_0_rotation_sampler", + "target": { + "id": "Skeleton_torso_joint_1", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_3", + "scale": "animAccessor_1", + "translation": "animAccessor_2" + }, + "samplers": { + "animation_0_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_0_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_0_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_1": { + "channels": [ + { + "sampler": "animation_1_scale_sampler", + "target": { + "id": "Skeleton_torso_joint_2", + "path": "scale" + } + }, + { + "sampler": "animation_1_translation_sampler", + "target": { + "id": "Skeleton_torso_joint_2", + "path": "translation" + } + }, + { + "sampler": "animation_1_rotation_sampler", + "target": { + "id": "Skeleton_torso_joint_2", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_6", + "scale": "animAccessor_4", + "translation": "animAccessor_5" + }, + "samplers": { + "animation_1_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_1_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_1_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_10": { + "channels": [ + { + "sampler": "animation_10_scale_sampler", + "target": { + "id": "Skeleton_arm_joint_R__3_", + "path": "scale" + } + }, + { + "sampler": "animation_10_translation_sampler", + "target": { + "id": "Skeleton_arm_joint_R__3_", + "path": "translation" + } + }, + { + "sampler": "animation_10_rotation_sampler", + "target": { + "id": "Skeleton_arm_joint_R__3_", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_9", + "scale": "animAccessor_7", + "translation": "animAccessor_8" + }, + "samplers": { + "animation_10_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_10_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_10_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_11": { + "channels": [ + { + "sampler": "animation_11_scale_sampler", + "target": { + "id": "leg_joint_L_1", + "path": "scale" + } + }, + { + "sampler": "animation_11_translation_sampler", + "target": { + "id": "leg_joint_L_1", + "path": "translation" + } + }, + { + "sampler": "animation_11_rotation_sampler", + "target": { + "id": "leg_joint_L_1", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_12", + "scale": "animAccessor_10", + "translation": "animAccessor_11" + }, + "samplers": { + "animation_11_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_11_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_11_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_12": { + "channels": [ + { + "sampler": "animation_12_scale_sampler", + "target": { + "id": "leg_joint_L_2", + "path": "scale" + } + }, + { + "sampler": "animation_12_translation_sampler", + "target": { + "id": "leg_joint_L_2", + "path": "translation" + } + }, + { + "sampler": "animation_12_rotation_sampler", + "target": { + "id": "leg_joint_L_2", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_15", + "scale": "animAccessor_13", + "translation": "animAccessor_14" + }, + "samplers": { + "animation_12_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_12_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_12_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_13": { + "channels": [ + { + "sampler": "animation_13_scale_sampler", + "target": { + "id": "leg_joint_L_3", + "path": "scale" + } + }, + { + "sampler": "animation_13_translation_sampler", + "target": { + "id": "leg_joint_L_3", + "path": "translation" + } + }, + { + "sampler": "animation_13_rotation_sampler", + "target": { + "id": "leg_joint_L_3", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_18", + "scale": "animAccessor_16", + "translation": "animAccessor_17" + }, + "samplers": { + "animation_13_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_13_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_13_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_14": { + "channels": [ + { + "sampler": "animation_14_scale_sampler", + "target": { + "id": "leg_joint_L_5", + "path": "scale" + } + }, + { + "sampler": "animation_14_translation_sampler", + "target": { + "id": "leg_joint_L_5", + "path": "translation" + } + }, + { + "sampler": "animation_14_rotation_sampler", + "target": { + "id": "leg_joint_L_5", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_21", + "scale": "animAccessor_19", + "translation": "animAccessor_20" + }, + "samplers": { + "animation_14_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_14_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_14_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_15": { + "channels": [ + { + "sampler": "animation_15_scale_sampler", + "target": { + "id": "leg_joint_R_1", + "path": "scale" + } + }, + { + "sampler": "animation_15_translation_sampler", + "target": { + "id": "leg_joint_R_1", + "path": "translation" + } + }, + { + "sampler": "animation_15_rotation_sampler", + "target": { + "id": "leg_joint_R_1", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_24", + "scale": "animAccessor_22", + "translation": "animAccessor_23" + }, + "samplers": { + "animation_15_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_15_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_15_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_16": { + "channels": [ + { + "sampler": "animation_16_scale_sampler", + "target": { + "id": "leg_joint_R_2", + "path": "scale" + } + }, + { + "sampler": "animation_16_translation_sampler", + "target": { + "id": "leg_joint_R_2", + "path": "translation" + } + }, + { + "sampler": "animation_16_rotation_sampler", + "target": { + "id": "leg_joint_R_2", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_27", + "scale": "animAccessor_25", + "translation": "animAccessor_26" + }, + "samplers": { + "animation_16_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_16_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_16_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_17": { + "channels": [ + { + "sampler": "animation_17_scale_sampler", + "target": { + "id": "leg_joint_R_3", + "path": "scale" + } + }, + { + "sampler": "animation_17_translation_sampler", + "target": { + "id": "leg_joint_R_3", + "path": "translation" + } + }, + { + "sampler": "animation_17_rotation_sampler", + "target": { + "id": "leg_joint_R_3", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_30", + "scale": "animAccessor_28", + "translation": "animAccessor_29" + }, + "samplers": { + "animation_17_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_17_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_17_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_18": { + "channels": [ + { + "sampler": "animation_18_scale_sampler", + "target": { + "id": "leg_joint_R_5", + "path": "scale" + } + }, + { + "sampler": "animation_18_translation_sampler", + "target": { + "id": "leg_joint_R_5", + "path": "translation" + } + }, + { + "sampler": "animation_18_rotation_sampler", + "target": { + "id": "leg_joint_R_5", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_33", + "scale": "animAccessor_31", + "translation": "animAccessor_32" + }, + "samplers": { + "animation_18_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_18_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_18_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_2": { + "channels": [ + { + "sampler": "animation_2_scale_sampler", + "target": { + "id": "torso_joint_3", + "path": "scale" + } + }, + { + "sampler": "animation_2_translation_sampler", + "target": { + "id": "torso_joint_3", + "path": "translation" + } + }, + { + "sampler": "animation_2_rotation_sampler", + "target": { + "id": "torso_joint_3", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_36", + "scale": "animAccessor_34", + "translation": "animAccessor_35" + }, + "samplers": { + "animation_2_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_2_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_2_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_3": { + "channels": [ + { + "sampler": "animation_3_scale_sampler", + "target": { + "id": "Skeleton_neck_joint_1", + "path": "scale" + } + }, + { + "sampler": "animation_3_translation_sampler", + "target": { + "id": "Skeleton_neck_joint_1", + "path": "translation" + } + }, + { + "sampler": "animation_3_rotation_sampler", + "target": { + "id": "Skeleton_neck_joint_1", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_39", + "scale": "animAccessor_37", + "translation": "animAccessor_38" + }, + "samplers": { + "animation_3_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_3_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_3_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_4": { + "channels": [ + { + "sampler": "animation_4_scale_sampler", + "target": { + "id": "Skeleton_neck_joint_2", + "path": "scale" + } + }, + { + "sampler": "animation_4_translation_sampler", + "target": { + "id": "Skeleton_neck_joint_2", + "path": "translation" + } + }, + { + "sampler": "animation_4_rotation_sampler", + "target": { + "id": "Skeleton_neck_joint_2", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_42", + "scale": "animAccessor_40", + "translation": "animAccessor_41" + }, + "samplers": { + "animation_4_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_4_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_4_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_5": { + "channels": [ + { + "sampler": "animation_5_scale_sampler", + "target": { + "id": "Skeleton_arm_joint_L__4_", + "path": "scale" + } + }, + { + "sampler": "animation_5_translation_sampler", + "target": { + "id": "Skeleton_arm_joint_L__4_", + "path": "translation" + } + }, + { + "sampler": "animation_5_rotation_sampler", + "target": { + "id": "Skeleton_arm_joint_L__4_", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_45", + "scale": "animAccessor_43", + "translation": "animAccessor_44" + }, + "samplers": { + "animation_5_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_5_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_5_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_6": { + "channels": [ + { + "sampler": "animation_6_scale_sampler", + "target": { + "id": "Skeleton_arm_joint_L__3_", + "path": "scale" + } + }, + { + "sampler": "animation_6_translation_sampler", + "target": { + "id": "Skeleton_arm_joint_L__3_", + "path": "translation" + } + }, + { + "sampler": "animation_6_rotation_sampler", + "target": { + "id": "Skeleton_arm_joint_L__3_", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_48", + "scale": "animAccessor_46", + "translation": "animAccessor_47" + }, + "samplers": { + "animation_6_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_6_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_6_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_7": { + "channels": [ + { + "sampler": "animation_7_scale_sampler", + "target": { + "id": "Skeleton_arm_joint_L__2_", + "path": "scale" + } + }, + { + "sampler": "animation_7_translation_sampler", + "target": { + "id": "Skeleton_arm_joint_L__2_", + "path": "translation" + } + }, + { + "sampler": "animation_7_rotation_sampler", + "target": { + "id": "Skeleton_arm_joint_L__2_", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_51", + "scale": "animAccessor_49", + "translation": "animAccessor_50" + }, + "samplers": { + "animation_7_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_7_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_7_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_8": { + "channels": [ + { + "sampler": "animation_8_scale_sampler", + "target": { + "id": "Skeleton_arm_joint_R", + "path": "scale" + } + }, + { + "sampler": "animation_8_translation_sampler", + "target": { + "id": "Skeleton_arm_joint_R", + "path": "translation" + } + }, + { + "sampler": "animation_8_rotation_sampler", + "target": { + "id": "Skeleton_arm_joint_R", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_54", + "scale": "animAccessor_52", + "translation": "animAccessor_53" + }, + "samplers": { + "animation_8_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_8_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_8_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_9": { + "channels": [ + { + "sampler": "animation_9_scale_sampler", + "target": { + "id": "Skeleton_arm_joint_R__2_", + "path": "scale" + } + }, + { + "sampler": "animation_9_translation_sampler", + "target": { + "id": "Skeleton_arm_joint_R__2_", + "path": "translation" + } + }, + { + "sampler": "animation_9_rotation_sampler", + "target": { + "id": "Skeleton_arm_joint_R__2_", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_57", + "scale": "animAccessor_55", + "translation": "animAccessor_56" + }, + "samplers": { + "animation_9_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_9_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_9_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + } + }, + "asset": { + "generator": "collada2gltf@cf6371beb0bdc18ba603378d5e40c966da53d385", + "premultipliedAlpha": true, + "profile": { + "api": "WebGL", + "version": "1.0.2" + }, + "version": "1.0" + }, + "bufferViews": { + "bufferView_118": { + "buffer": "Cesium_Man", + "byteLength": 38652, + "byteOffset": 0 + }, + "bufferView_119": { + "buffer": "Cesium_Man", + "byteLength": 28032, + "byteOffset": 38652, + "target": 34963 + }, + "bufferView_120": { + "buffer": "Cesium_Man", + "byteLength": 897024, + "byteOffset": 66684, + "target": 34962 + } + }, + "buffers": { + "Cesium_Man": { + "byteLength": 963708, + "type": "arraybuffer", + "uri": "Cesium_Man.bin" + } + }, + "extensionsUsed": [ + "KHR_materials_common" + ], + "images": { + "Cesium_Man_jpg": { + "name": "Cesium_Man_jpg", + "uri": "Cesium_Man.jpg" + } + }, + "materials": { + "Cesium_Man-effect": { + "extensions": { + "KHR_materials_common": { + "doubleSided": false, + "jointCount": 19, + "technique": "PHONG", + "transparent": false, + "values": { + "ambient": [ + 0, + 0, + 0, + 1 + ], + "diffuse": "texture_Cesium_Man_jpg", + "emission": [ + 0, + 0, + 0, + 1 + ], + "shininess": 256, + "specular": [ + 0.1, + 0.1, + 0.1, + 1 + ] + } + } + }, + "name": "Cesium_Man" + } + }, + "meshes": { + "Cesium_Man-mesh": { + "name": "Cesium_Man", + "primitives": [ + { + "attributes": { + "JOINT": "accessor_115", + "NORMAL": "accessor_25", + "POSITION": "accessor_23", + "TEXCOORD_0": "accessor_27", + "WEIGHT": "accessor_112" + }, + "indices": "accessor_21", + "material": "Cesium_Man-effect", + "mode": 4 + } + ] + } + }, + "nodes": { + "Armature": { + "children": [ + "Skeleton_torso_joint_1" + ], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ], + "name": "Armature" + }, + "Cesium_Man": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ], + "meshes": [ + "Cesium_Man-mesh" + ], + "name": "Cesium_Man", + "skeletons": [ + "Skeleton_torso_joint_1" + ], + "skin": "Armature_Cesium_Man-skin" + }, + "Skeleton_arm_joint_L__2_": { + "children": [], + "jointName": "Skeleton_arm_joint_L__2_", + "name": "Skeleton_arm_joint_L__2_", + "rotation": [ + -0.00611917, + 0.0423255, + 0.0787759, + 0.995975 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + 1.49012e-008, + 0.187791, + 5.96046e-008 + ] + }, + "Skeleton_arm_joint_L__3_": { + "children": [ + "Skeleton_arm_joint_L__2_" + ], + "jointName": "Skeleton_arm_joint_L__3_", + "name": "Skeleton_arm_joint_L__3_", + "rotation": [ + 0.0139609, + 0.129373, + 0.252206, + 0.958885 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + 1.16415e-010, + 0.242009, + 0 + ] + }, + "Skeleton_arm_joint_L__4_": { + "children": [ + "Skeleton_arm_joint_L__3_" + ], + "jointName": "Skeleton_arm_joint_L__4_", + "name": "Skeleton_arm_joint_L__4_", + "rotation": [ + 0.679733, + 0.689686, + -0.226972, + -0.103832 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + 0.0910136, + 1.41859e-005, + -5.80549e-005 + ] + }, + "Skeleton_arm_joint_R": { + "children": [ + "Skeleton_arm_joint_R__2_" + ], + "jointName": "Skeleton_arm_joint_R", + "name": "Skeleton_arm_joint_R", + "rotation": [ + -0.296443, + -0.0315103, + 0.652255, + 0.696916 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + -0.0909878, + 6.25998e-005, + -6.53267e-005 + ] + }, + "Skeleton_arm_joint_R__2_": { + "children": [ + "Skeleton_arm_joint_R__3_" + ], + "jointName": "Skeleton_arm_joint_R__2_", + "name": "Skeleton_arm_joint_R__2_", + "rotation": [ + -0.188793, + 0.915707, + -0.167809, + -0.312534 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + 0, + 0.242008, + -5.96046e-008 + ] + }, + "Skeleton_arm_joint_R__3_": { + "children": [], + "jointName": "Skeleton_arm_joint_R__3_", + "name": "Skeleton_arm_joint_R__3_", + "rotation": [ + 0.0586139, + -0.263777, + -0.0522685, + 0.961381 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + 0, + 0.187792, + 0 + ] + }, + "Skeleton_neck_joint_1": { + "children": [ + "Skeleton_neck_joint_2" + ], + "jointName": "Skeleton_neck_joint_1", + "name": "Skeleton_neck_joint_1", + "rotation": [ + 0.66063, + -8.34443e-005, + -7.10926e-005, + 0.750712 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + -8.84756e-009, + 5.96046e-008, + 0.0648366 + ] + }, + "Skeleton_neck_joint_2": { + "children": [], + "jointName": "Skeleton_neck_joint_2", + "name": "Skeleton_neck_joint_2", + "rotation": [ + 2.55261e-006, + 0.99969, + -0.0248797, + -4.32993e-007 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + 0, + 0.0520397, + 0 + ] + }, + "Skeleton_torso_joint_1": { + "children": [ + "Skeleton_torso_joint_2", + "leg_joint_L_1", + "leg_joint_R_1" + ], + "jointName": "Skeleton_torso_joint_1", + "name": "Skeleton_torso_joint_1", + "rotation": [ + 0.0267947, + 0.0267326, + 0.706561, + 0.706639 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + -3.35276e-008, + 0.00499989, + 0.679 + ] + }, + "Skeleton_torso_joint_2": { + "children": [ + "torso_joint_3" + ], + "jointName": "Skeleton_torso_joint_2", + "name": "Skeleton_torso_joint_2", + "rotation": [ + 0.657252, + 0.000179693, + 0.00010428, + 0.753671 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + -1.02445e-008, + 1.49012e-008, + 0.145417 + ] + }, + "leg_joint_L_1": { + "children": [ + "leg_joint_L_2" + ], + "jointName": "leg_joint_L_1", + "name": "leg_joint_L_1", + "rotation": [ + 0.24757, + -0.577568, + 0.747914, + -0.213889 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + 0.0680367, + -0.0285187, + -0.0629628 + ] + }, + "leg_joint_L_2": { + "children": [ + "leg_joint_L_3" + ], + "jointName": "leg_joint_L_2", + "name": "leg_joint_L_2", + "rotation": [ + -0.209028, + 0.32989, + 0.0555992, + 0.918906 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + 3.72529e-009, + 0.266113, + 1.49012e-008 + ] + }, + "leg_joint_L_3": { + "children": [ + "leg_joint_L_5" + ], + "jointName": "leg_joint_L_3", + "name": "leg_joint_L_3", + "rotation": [ + -0.84774, + 0.00425408, + 0.00949198, + 0.530311 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + -7.45058e-009, + 0.275824, + 5.58794e-009 + ] + }, + "leg_joint_L_5": { + "children": [], + "jointName": "leg_joint_L_5", + "name": "leg_joint_L_5", + "rotation": [ + 0.0265735, + -0.320144, + 0.944545, + 0.0680896 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + -0.00234652, + -0.0661733, + 0.0278568 + ] + }, + "leg_joint_R_1": { + "children": [ + "leg_joint_R_2" + ], + "jointName": "leg_joint_R_1", + "name": "leg_joint_R_1", + "rotation": [ + -0.066427, + -0.611501, + 0.785027, + 0.0733875 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + -0.068042, + -0.0285702, + -0.0629496 + ] + }, + "leg_joint_R_2": { + "children": [ + "leg_joint_R_3" + ], + "jointName": "leg_joint_R_2", + "name": "leg_joint_R_2", + "rotation": [ + -0.216291, + -0.124306, + -0.00157521, + 0.968382 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + 0, + 0.266111, + 0 + ] + }, + "leg_joint_R_3": { + "children": [ + "leg_joint_R_5" + ], + "jointName": "leg_joint_R_3", + "name": "leg_joint_R_3", + "rotation": [ + -0.847274, + 0.029564, + 0.020868, + 0.529922 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + 0, + 0.275825, + -1.11759e-008 + ] + }, + "leg_joint_R_5": { + "children": [], + "jointName": "leg_joint_R_5", + "name": "leg_joint_R_5", + "rotation": [ + -0.0372644, + -0.319313, + 0.946053, + -0.040415 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + -0.00145848, + -0.0661988, + 0.0278567 + ] + }, + "node_21": { + "children": [ + "Armature", + "Cesium_Man" + ], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 0, + -1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1 + ], + "name": "Y_UP_Transform" + }, + "torso_joint_3": { + "children": [ + "Skeleton_neck_joint_1", + "Skeleton_arm_joint_L__4_", + "Skeleton_arm_joint_R" + ], + "jointName": "torso_joint_3", + "name": "torso_joint_3", + "rotation": [ + -0.622604, + -1.67835e-005, + 3.1824e-006, + 0.782537 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + 4.65661e-010, + 0.250517, + 3.72529e-009 + ] + } + }, + "samplers": { + "sampler_0": { + "magFilter": 9729, + "minFilter": 9729, + "wrapS": 10497, + "wrapT": 10497 + } + }, + "scene": "defaultScene", + "scenes": { + "defaultScene": { + "nodes": [ + "node_21" + ] + } + }, + "skins": { + "Armature_Cesium_Man-skin": { + "bindShapeMatrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ], + "inverseBindMatrices": "IBM_Armature_Cesium_Man-skin", + "jointNames": [ + "Skeleton_torso_joint_1", + "Skeleton_torso_joint_2", + "torso_joint_3", + "Skeleton_neck_joint_1", + "Skeleton_neck_joint_2", + "Skeleton_arm_joint_L__4_", + "Skeleton_arm_joint_R", + "Skeleton_arm_joint_L__3_", + "Skeleton_arm_joint_R__2_", + "Skeleton_arm_joint_L__2_", + "Skeleton_arm_joint_R__3_", + "leg_joint_L_1", + "leg_joint_R_1", + "leg_joint_L_2", + "leg_joint_R_2", + "leg_joint_L_3", + "leg_joint_R_3", + "leg_joint_L_5", + "leg_joint_R_5" + ], + "name": "Armature" + } + }, + "textures": { + "texture_Cesium_Man_jpg": { + "format": 6408, + "internalFormat": 6408, + "sampler": "sampler_0", + "source": "Cesium_Man_jpg", + "target": 3553, + "type": 5121 + } + } +} \ No newline at end of file diff --git a/examples/models/gltf/CesiumMan/glTF-MaterialsCommon/Cesium_Man.jpg b/examples/models/gltf/CesiumMan/glTF-MaterialsCommon/Cesium_Man.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ab1b724455c05a48291fbb05cd7318bf8368085f Binary files /dev/null and b/examples/models/gltf/CesiumMan/glTF-MaterialsCommon/Cesium_Man.jpg differ diff --git a/examples/models/gltf/CesiumMan/glTF/Cesium_Man.bin b/examples/models/gltf/CesiumMan/glTF/Cesium_Man.bin new file mode 100644 index 0000000000000000000000000000000000000000..06596f099fbf88ac6ab13d767c8f5ff7c56426c2 Binary files /dev/null and b/examples/models/gltf/CesiumMan/glTF/Cesium_Man.bin differ diff --git a/examples/models/gltf/CesiumMan/glTF/Cesium_Man.gltf b/examples/models/gltf/CesiumMan/glTF/Cesium_Man.gltf new file mode 100644 index 0000000000000000000000000000000000000000..a3da25251e1f05da27b25b1100d8c5e0d0b2f288 --- /dev/null +++ b/examples/models/gltf/CesiumMan/glTF/Cesium_Man.gltf @@ -0,0 +1,2207 @@ +{ + "accessors": { + "IBM_Armature_Cesium_Man-skin": { + "bufferView": "bufferView_118", + "byteOffset": 0, + "componentType": 5126, + "count": 19, + "type": "MAT4" + }, + "accessor_112": { + "bufferView": "bufferView_120", + "byteOffset": 448512, + "byteStride": 16, + "componentType": 5126, + "count": 14016, + "max": [ + 1, + 0.9899199604988098, + 0.9510759711265564, + 0.8741080164909363 + ], + "min": [ + 0.01008019968867302, + 0, + 0, + 0 + ], + "type": "VEC4" + }, + "accessor_115": { + "bufferView": "bufferView_120", + "byteOffset": 672768, + "byteStride": 16, + "componentType": 5126, + "count": 14016, + "max": [ + 18, + 18, + 18, + 18 + ], + "min": [ + 0, + 0, + 0, + 0 + ], + "type": "VEC4" + }, + "accessor_21": { + "bufferView": "bufferView_119", + "byteOffset": 0, + "byteStride": 0, + "componentType": 5123, + "count": 14016, + "type": "SCALAR" + }, + "accessor_23": { + "bufferView": "bufferView_120", + "byteOffset": 0, + "byteStride": 12, + "componentType": 5126, + "count": 14016, + "max": [ + 0.1809539943933487, + 0.5691369771957397, + 1.5065499544143677 + ], + "min": [ + -0.13100001215934753, + -0.5691369771957397, + 0 + ], + "type": "VEC3" + }, + "accessor_25": { + "bufferView": "bufferView_120", + "byteOffset": 168192, + "byteStride": 12, + "componentType": 5126, + "count": 14016, + "max": [ + 1, + 0.9999809861183167, + 0.9944450259208679 + ], + "min": [ + -1, + -0.9999809861183167, + -1 + ], + "type": "VEC3" + }, + "accessor_27": { + "bufferView": "bufferView_120", + "byteOffset": 336384, + "byteStride": 8, + "componentType": 5126, + "count": 14016, + "max": [ + 0.990805983543396, + 0.9880298972129822 + ], + "min": [ + 0.014079400338232517, + 0.008445978164672852 + ], + "type": "VEC2" + }, + "animAccessor_0": { + "bufferView": "bufferView_118", + "byteOffset": 1216, + "componentType": 5126, + "count": 49, + "type": "SCALAR" + }, + "animAccessor_1": { + "bufferView": "bufferView_118", + "byteOffset": 1412, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_10": { + "bufferView": "bufferView_118", + "byteOffset": 7292, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_11": { + "bufferView": "bufferView_118", + "byteOffset": 7880, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_12": { + "bufferView": "bufferView_118", + "byteOffset": 8468, + "componentType": 5126, + "count": 49, + "type": "VEC4" + }, + "animAccessor_13": { + "bufferView": "bufferView_118", + "byteOffset": 9252, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_14": { + "bufferView": "bufferView_118", + "byteOffset": 9840, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_15": { + "bufferView": "bufferView_118", + "byteOffset": 10428, + "componentType": 5126, + "count": 49, + "type": "VEC4" + }, + "animAccessor_16": { + "bufferView": "bufferView_118", + "byteOffset": 11212, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_17": { + "bufferView": "bufferView_118", + "byteOffset": 11800, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_18": { + "bufferView": "bufferView_118", + "byteOffset": 12388, + "componentType": 5126, + "count": 49, + "type": "VEC4" + }, + "animAccessor_19": { + "bufferView": "bufferView_118", + "byteOffset": 13172, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_2": { + "bufferView": "bufferView_118", + "byteOffset": 2000, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_20": { + "bufferView": "bufferView_118", + "byteOffset": 13760, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_21": { + "bufferView": "bufferView_118", + "byteOffset": 14348, + "componentType": 5126, + "count": 49, + "type": "VEC4" + }, + "animAccessor_22": { + "bufferView": "bufferView_118", + "byteOffset": 15132, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_23": { + "bufferView": "bufferView_118", + "byteOffset": 15720, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_24": { + "bufferView": "bufferView_118", + "byteOffset": 16308, + "componentType": 5126, + "count": 49, + "type": "VEC4" + }, + "animAccessor_25": { + "bufferView": "bufferView_118", + "byteOffset": 17092, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_26": { + "bufferView": "bufferView_118", + "byteOffset": 17680, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_27": { + "bufferView": "bufferView_118", + "byteOffset": 18268, + "componentType": 5126, + "count": 49, + "type": "VEC4" + }, + "animAccessor_28": { + "bufferView": "bufferView_118", + "byteOffset": 19052, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_29": { + "bufferView": "bufferView_118", + "byteOffset": 19640, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_3": { + "bufferView": "bufferView_118", + "byteOffset": 2588, + "componentType": 5126, + "count": 49, + "type": "VEC4" + }, + "animAccessor_30": { + "bufferView": "bufferView_118", + "byteOffset": 20228, + "componentType": 5126, + "count": 49, + "type": "VEC4" + }, + "animAccessor_31": { + "bufferView": "bufferView_118", + "byteOffset": 21012, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_32": { + "bufferView": "bufferView_118", + "byteOffset": 21600, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_33": { + "bufferView": "bufferView_118", + "byteOffset": 22188, + "componentType": 5126, + "count": 49, + "type": "VEC4" + }, + "animAccessor_34": { + "bufferView": "bufferView_118", + "byteOffset": 22972, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_35": { + "bufferView": "bufferView_118", + "byteOffset": 23560, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_36": { + "bufferView": "bufferView_118", + "byteOffset": 24148, + "componentType": 5126, + "count": 49, + "type": "VEC4" + }, + "animAccessor_37": { + "bufferView": "bufferView_118", + "byteOffset": 24932, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_38": { + "bufferView": "bufferView_118", + "byteOffset": 25520, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_39": { + "bufferView": "bufferView_118", + "byteOffset": 26108, + "componentType": 5126, + "count": 49, + "type": "VEC4" + }, + "animAccessor_4": { + "bufferView": "bufferView_118", + "byteOffset": 3372, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_40": { + "bufferView": "bufferView_118", + "byteOffset": 26892, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_41": { + "bufferView": "bufferView_118", + "byteOffset": 27480, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_42": { + "bufferView": "bufferView_118", + "byteOffset": 28068, + "componentType": 5126, + "count": 49, + "type": "VEC4" + }, + "animAccessor_43": { + "bufferView": "bufferView_118", + "byteOffset": 28852, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_44": { + "bufferView": "bufferView_118", + "byteOffset": 29440, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_45": { + "bufferView": "bufferView_118", + "byteOffset": 30028, + "componentType": 5126, + "count": 49, + "type": "VEC4" + }, + "animAccessor_46": { + "bufferView": "bufferView_118", + "byteOffset": 30812, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_47": { + "bufferView": "bufferView_118", + "byteOffset": 31400, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_48": { + "bufferView": "bufferView_118", + "byteOffset": 31988, + "componentType": 5126, + "count": 49, + "type": "VEC4" + }, + "animAccessor_49": { + "bufferView": "bufferView_118", + "byteOffset": 32772, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_5": { + "bufferView": "bufferView_118", + "byteOffset": 3960, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_50": { + "bufferView": "bufferView_118", + "byteOffset": 33360, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_51": { + "bufferView": "bufferView_118", + "byteOffset": 33948, + "componentType": 5126, + "count": 49, + "type": "VEC4" + }, + "animAccessor_52": { + "bufferView": "bufferView_118", + "byteOffset": 34732, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_53": { + "bufferView": "bufferView_118", + "byteOffset": 35320, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_54": { + "bufferView": "bufferView_118", + "byteOffset": 35908, + "componentType": 5126, + "count": 49, + "type": "VEC4" + }, + "animAccessor_55": { + "bufferView": "bufferView_118", + "byteOffset": 36692, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_56": { + "bufferView": "bufferView_118", + "byteOffset": 37280, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_57": { + "bufferView": "bufferView_118", + "byteOffset": 37868, + "componentType": 5126, + "count": 49, + "type": "VEC4" + }, + "animAccessor_6": { + "bufferView": "bufferView_118", + "byteOffset": 4548, + "componentType": 5126, + "count": 49, + "type": "VEC4" + }, + "animAccessor_7": { + "bufferView": "bufferView_118", + "byteOffset": 5332, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_8": { + "bufferView": "bufferView_118", + "byteOffset": 5920, + "componentType": 5126, + "count": 49, + "type": "VEC3" + }, + "animAccessor_9": { + "bufferView": "bufferView_118", + "byteOffset": 6508, + "componentType": 5126, + "count": 49, + "type": "VEC4" + } + }, + "animations": { + "animation_0": { + "channels": [ + { + "sampler": "animation_0_scale_sampler", + "target": { + "id": "Skeleton_torso_joint_1", + "path": "scale" + } + }, + { + "sampler": "animation_0_translation_sampler", + "target": { + "id": "Skeleton_torso_joint_1", + "path": "translation" + } + }, + { + "sampler": "animation_0_rotation_sampler", + "target": { + "id": "Skeleton_torso_joint_1", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_3", + "scale": "animAccessor_1", + "translation": "animAccessor_2" + }, + "samplers": { + "animation_0_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_0_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_0_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_1": { + "channels": [ + { + "sampler": "animation_1_scale_sampler", + "target": { + "id": "Skeleton_torso_joint_2", + "path": "scale" + } + }, + { + "sampler": "animation_1_translation_sampler", + "target": { + "id": "Skeleton_torso_joint_2", + "path": "translation" + } + }, + { + "sampler": "animation_1_rotation_sampler", + "target": { + "id": "Skeleton_torso_joint_2", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_6", + "scale": "animAccessor_4", + "translation": "animAccessor_5" + }, + "samplers": { + "animation_1_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_1_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_1_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_10": { + "channels": [ + { + "sampler": "animation_10_scale_sampler", + "target": { + "id": "Skeleton_arm_joint_R__3_", + "path": "scale" + } + }, + { + "sampler": "animation_10_translation_sampler", + "target": { + "id": "Skeleton_arm_joint_R__3_", + "path": "translation" + } + }, + { + "sampler": "animation_10_rotation_sampler", + "target": { + "id": "Skeleton_arm_joint_R__3_", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_9", + "scale": "animAccessor_7", + "translation": "animAccessor_8" + }, + "samplers": { + "animation_10_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_10_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_10_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_11": { + "channels": [ + { + "sampler": "animation_11_scale_sampler", + "target": { + "id": "leg_joint_L_1", + "path": "scale" + } + }, + { + "sampler": "animation_11_translation_sampler", + "target": { + "id": "leg_joint_L_1", + "path": "translation" + } + }, + { + "sampler": "animation_11_rotation_sampler", + "target": { + "id": "leg_joint_L_1", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_12", + "scale": "animAccessor_10", + "translation": "animAccessor_11" + }, + "samplers": { + "animation_11_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_11_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_11_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_12": { + "channels": [ + { + "sampler": "animation_12_scale_sampler", + "target": { + "id": "leg_joint_L_2", + "path": "scale" + } + }, + { + "sampler": "animation_12_translation_sampler", + "target": { + "id": "leg_joint_L_2", + "path": "translation" + } + }, + { + "sampler": "animation_12_rotation_sampler", + "target": { + "id": "leg_joint_L_2", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_15", + "scale": "animAccessor_13", + "translation": "animAccessor_14" + }, + "samplers": { + "animation_12_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_12_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_12_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_13": { + "channels": [ + { + "sampler": "animation_13_scale_sampler", + "target": { + "id": "leg_joint_L_3", + "path": "scale" + } + }, + { + "sampler": "animation_13_translation_sampler", + "target": { + "id": "leg_joint_L_3", + "path": "translation" + } + }, + { + "sampler": "animation_13_rotation_sampler", + "target": { + "id": "leg_joint_L_3", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_18", + "scale": "animAccessor_16", + "translation": "animAccessor_17" + }, + "samplers": { + "animation_13_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_13_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_13_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_14": { + "channels": [ + { + "sampler": "animation_14_scale_sampler", + "target": { + "id": "leg_joint_L_5", + "path": "scale" + } + }, + { + "sampler": "animation_14_translation_sampler", + "target": { + "id": "leg_joint_L_5", + "path": "translation" + } + }, + { + "sampler": "animation_14_rotation_sampler", + "target": { + "id": "leg_joint_L_5", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_21", + "scale": "animAccessor_19", + "translation": "animAccessor_20" + }, + "samplers": { + "animation_14_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_14_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_14_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_15": { + "channels": [ + { + "sampler": "animation_15_scale_sampler", + "target": { + "id": "leg_joint_R_1", + "path": "scale" + } + }, + { + "sampler": "animation_15_translation_sampler", + "target": { + "id": "leg_joint_R_1", + "path": "translation" + } + }, + { + "sampler": "animation_15_rotation_sampler", + "target": { + "id": "leg_joint_R_1", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_24", + "scale": "animAccessor_22", + "translation": "animAccessor_23" + }, + "samplers": { + "animation_15_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_15_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_15_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_16": { + "channels": [ + { + "sampler": "animation_16_scale_sampler", + "target": { + "id": "leg_joint_R_2", + "path": "scale" + } + }, + { + "sampler": "animation_16_translation_sampler", + "target": { + "id": "leg_joint_R_2", + "path": "translation" + } + }, + { + "sampler": "animation_16_rotation_sampler", + "target": { + "id": "leg_joint_R_2", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_27", + "scale": "animAccessor_25", + "translation": "animAccessor_26" + }, + "samplers": { + "animation_16_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_16_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_16_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_17": { + "channels": [ + { + "sampler": "animation_17_scale_sampler", + "target": { + "id": "leg_joint_R_3", + "path": "scale" + } + }, + { + "sampler": "animation_17_translation_sampler", + "target": { + "id": "leg_joint_R_3", + "path": "translation" + } + }, + { + "sampler": "animation_17_rotation_sampler", + "target": { + "id": "leg_joint_R_3", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_30", + "scale": "animAccessor_28", + "translation": "animAccessor_29" + }, + "samplers": { + "animation_17_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_17_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_17_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_18": { + "channels": [ + { + "sampler": "animation_18_scale_sampler", + "target": { + "id": "leg_joint_R_5", + "path": "scale" + } + }, + { + "sampler": "animation_18_translation_sampler", + "target": { + "id": "leg_joint_R_5", + "path": "translation" + } + }, + { + "sampler": "animation_18_rotation_sampler", + "target": { + "id": "leg_joint_R_5", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_33", + "scale": "animAccessor_31", + "translation": "animAccessor_32" + }, + "samplers": { + "animation_18_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_18_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_18_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_2": { + "channels": [ + { + "sampler": "animation_2_scale_sampler", + "target": { + "id": "torso_joint_3", + "path": "scale" + } + }, + { + "sampler": "animation_2_translation_sampler", + "target": { + "id": "torso_joint_3", + "path": "translation" + } + }, + { + "sampler": "animation_2_rotation_sampler", + "target": { + "id": "torso_joint_3", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_36", + "scale": "animAccessor_34", + "translation": "animAccessor_35" + }, + "samplers": { + "animation_2_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_2_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_2_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_3": { + "channels": [ + { + "sampler": "animation_3_scale_sampler", + "target": { + "id": "Skeleton_neck_joint_1", + "path": "scale" + } + }, + { + "sampler": "animation_3_translation_sampler", + "target": { + "id": "Skeleton_neck_joint_1", + "path": "translation" + } + }, + { + "sampler": "animation_3_rotation_sampler", + "target": { + "id": "Skeleton_neck_joint_1", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_39", + "scale": "animAccessor_37", + "translation": "animAccessor_38" + }, + "samplers": { + "animation_3_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_3_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_3_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_4": { + "channels": [ + { + "sampler": "animation_4_scale_sampler", + "target": { + "id": "Skeleton_neck_joint_2", + "path": "scale" + } + }, + { + "sampler": "animation_4_translation_sampler", + "target": { + "id": "Skeleton_neck_joint_2", + "path": "translation" + } + }, + { + "sampler": "animation_4_rotation_sampler", + "target": { + "id": "Skeleton_neck_joint_2", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_42", + "scale": "animAccessor_40", + "translation": "animAccessor_41" + }, + "samplers": { + "animation_4_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_4_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_4_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_5": { + "channels": [ + { + "sampler": "animation_5_scale_sampler", + "target": { + "id": "Skeleton_arm_joint_L__4_", + "path": "scale" + } + }, + { + "sampler": "animation_5_translation_sampler", + "target": { + "id": "Skeleton_arm_joint_L__4_", + "path": "translation" + } + }, + { + "sampler": "animation_5_rotation_sampler", + "target": { + "id": "Skeleton_arm_joint_L__4_", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_45", + "scale": "animAccessor_43", + "translation": "animAccessor_44" + }, + "samplers": { + "animation_5_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_5_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_5_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_6": { + "channels": [ + { + "sampler": "animation_6_scale_sampler", + "target": { + "id": "Skeleton_arm_joint_L__3_", + "path": "scale" + } + }, + { + "sampler": "animation_6_translation_sampler", + "target": { + "id": "Skeleton_arm_joint_L__3_", + "path": "translation" + } + }, + { + "sampler": "animation_6_rotation_sampler", + "target": { + "id": "Skeleton_arm_joint_L__3_", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_48", + "scale": "animAccessor_46", + "translation": "animAccessor_47" + }, + "samplers": { + "animation_6_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_6_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_6_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_7": { + "channels": [ + { + "sampler": "animation_7_scale_sampler", + "target": { + "id": "Skeleton_arm_joint_L__2_", + "path": "scale" + } + }, + { + "sampler": "animation_7_translation_sampler", + "target": { + "id": "Skeleton_arm_joint_L__2_", + "path": "translation" + } + }, + { + "sampler": "animation_7_rotation_sampler", + "target": { + "id": "Skeleton_arm_joint_L__2_", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_51", + "scale": "animAccessor_49", + "translation": "animAccessor_50" + }, + "samplers": { + "animation_7_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_7_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_7_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_8": { + "channels": [ + { + "sampler": "animation_8_scale_sampler", + "target": { + "id": "Skeleton_arm_joint_R", + "path": "scale" + } + }, + { + "sampler": "animation_8_translation_sampler", + "target": { + "id": "Skeleton_arm_joint_R", + "path": "translation" + } + }, + { + "sampler": "animation_8_rotation_sampler", + "target": { + "id": "Skeleton_arm_joint_R", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_54", + "scale": "animAccessor_52", + "translation": "animAccessor_53" + }, + "samplers": { + "animation_8_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_8_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_8_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_9": { + "channels": [ + { + "sampler": "animation_9_scale_sampler", + "target": { + "id": "Skeleton_arm_joint_R__2_", + "path": "scale" + } + }, + { + "sampler": "animation_9_translation_sampler", + "target": { + "id": "Skeleton_arm_joint_R__2_", + "path": "translation" + } + }, + { + "sampler": "animation_9_rotation_sampler", + "target": { + "id": "Skeleton_arm_joint_R__2_", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_57", + "scale": "animAccessor_55", + "translation": "animAccessor_56" + }, + "samplers": { + "animation_9_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_9_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_9_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + } + }, + "asset": { + "generator": "collada2gltf@", + "premultipliedAlpha": true, + "profile": { + "api": "WebGL", + "version": "1.0.2" + }, + "version": "1.0" + }, + "bufferViews": { + "bufferView_118": { + "buffer": "Cesium_Man", + "byteLength": 38652, + "byteOffset": 0 + }, + "bufferView_119": { + "buffer": "Cesium_Man", + "byteLength": 28032, + "byteOffset": 38652, + "target": 34963 + }, + "bufferView_120": { + "buffer": "Cesium_Man", + "byteLength": 897024, + "byteOffset": 66684, + "target": 34962 + } + }, + "buffers": { + "Cesium_Man": { + "byteLength": 963708, + "type": "arraybuffer", + "uri": "Cesium_Man.bin" + } + }, + "images": { + "Cesium_Man_jpg": { + "name": "Cesium_Man_jpg", + "uri": "Cesium_Man.jpg" + } + }, + "materials": { + "Cesium_Man-effect": { + "name": "Cesium_Man", + "technique": "technique0", + "values": { + "ambient": [ + 0, + 0, + 0, + 1 + ], + "diffuse": "texture_Cesium_Man_jpg", + "emission": [ + 0, + 0, + 0, + 1 + ], + "shininess": 256, + "specular": [ + 0.10000000149011612, + 0.10000000149011612, + 0.10000000149011612, + 1 + ] + } + } + }, + "meshes": { + "Cesium_Man-mesh": { + "name": "Cesium_Man", + "primitives": [ + { + "attributes": { + "JOINT": "accessor_115", + "NORMAL": "accessor_25", + "POSITION": "accessor_23", + "TEXCOORD_0": "accessor_27", + "WEIGHT": "accessor_112" + }, + "indices": "accessor_21", + "material": "Cesium_Man-effect", + "mode": 4 + } + ] + } + }, + "nodes": { + "Armature": { + "children": [ + "Skeleton_torso_joint_1" + ], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ], + "name": "Armature" + }, + "Cesium_Man": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ], + "meshes": [ + "Cesium_Man-mesh" + ], + "name": "Cesium_Man", + "skeletons": [ + "Skeleton_torso_joint_1" + ], + "skin": "Armature_Cesium_Man-skin" + }, + "Skeleton_arm_joint_L__2_": { + "children": [], + "jointName": "Skeleton_arm_joint_L__2_", + "name": "Skeleton_arm_joint_L__2_", + "rotation": [ + -0.006119159981608391, + 0.04232554882764816, + 0.07877608388662338, + 0.995974600315094 + ], + "scale": [ + 1.000000238418579, + 1.000000238418579, + 0.9999998211860657 + ], + "translation": [ + 0.000000014901200273698123, + 0.18779200315475464, + 0.0000000596045985901128 + ] + }, + "Skeleton_arm_joint_L__3_": { + "children": [ + "Skeleton_arm_joint_L__2_" + ], + "jointName": "Skeleton_arm_joint_L__3_", + "name": "Skeleton_arm_joint_L__3_", + "rotation": [ + 0.013960931450128555, + 0.12937265634536743, + 0.2522056996822357, + 0.9588848352432251 + ], + "scale": [ + 1.0000001192092896, + 1.0000001192092896, + 1.0000003576278687 + ], + "translation": [ + 0.00000000011641500263781523, + 0.2420089989900589, + 0 + ] + }, + "Skeleton_arm_joint_L__4_": { + "children": [ + "Skeleton_arm_joint_L__3_" + ], + "jointName": "Skeleton_arm_joint_L__4_", + "name": "Skeleton_arm_joint_L__4_", + "rotation": [ + 0.6797326803207397, + 0.6896856427192688, + -0.22697189450263977, + -0.10383138060569763 + ], + "scale": [ + 1.0000005960464478, + 1, + 1.0000001192092896 + ], + "translation": [ + 0.091013602912426, + 0.000014185899999574758, + -0.000058054902183357626 + ] + }, + "Skeleton_arm_joint_R": { + "children": [ + "Skeleton_arm_joint_R__2_" + ], + "jointName": "Skeleton_arm_joint_R", + "name": "Skeleton_arm_joint_R", + "rotation": [ + -0.2964428663253784, + -0.03151031211018562, + 0.652255117893219, + 0.6969161033630371 + ], + "scale": [ + 1, + 0.9999998807907104, + 0.9999996423721313 + ], + "translation": [ + -0.09098780155181885, + 0.00006259980000322685, + -0.00006532669794978574 + ] + }, + "Skeleton_arm_joint_R__2_": { + "children": [ + "Skeleton_arm_joint_R__3_" + ], + "jointName": "Skeleton_arm_joint_R__2_", + "name": "Skeleton_arm_joint_R__2_", + "rotation": [ + -0.18879348039627075, + 0.9157071113586426, + -0.1678091138601303, + -0.3125341236591339 + ], + "scale": [ + 1.0000001192092896, + 0.9999996423721313, + 1.0000001192092896 + ], + "translation": [ + 0, + 0.2420080006122589, + -0.0000000596045985901128 + ] + }, + "Skeleton_arm_joint_R__3_": { + "children": [], + "jointName": "Skeleton_arm_joint_R__3_", + "name": "Skeleton_arm_joint_R__3_", + "rotation": [ + 0.05861387029290199, + -0.263776570558548, + -0.05226854607462883, + 0.9613814949989319 + ], + "scale": [ + 1.0000003576278687, + 1.0000001192092896, + 1.0000001192092896 + ], + "translation": [ + 0, + 0.18779200315475464, + 0 + ] + }, + "Skeleton_neck_joint_1": { + "children": [ + "Skeleton_neck_joint_2" + ], + "jointName": "Skeleton_neck_joint_1", + "name": "Skeleton_neck_joint_1", + "rotation": [ + 0.6606296300888062, + -0.00008344435627805069, + -0.0000710925814928487, + 0.750711977481842 + ], + "scale": [ + 1, + 0.9999998211860657, + 0.9999998807907104 + ], + "translation": [ + -0.000000008847560017954947, + 0.0000000596045985901128, + 0.06483659893274307 + ] + }, + "Skeleton_neck_joint_2": { + "children": [], + "jointName": "Skeleton_neck_joint_2", + "name": "Skeleton_neck_joint_2", + "rotation": [ + 0.000002552607611505664, + 0.9996904730796814, + -0.02487965300679207, + -0.00000043299277763253485 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + 0, + 0.052039701491594315, + 0 + ] + }, + "Skeleton_torso_joint_1": { + "children": [ + "Skeleton_torso_joint_2", + "leg_joint_L_1", + "leg_joint_R_1" + ], + "jointName": "Skeleton_torso_joint_1", + "name": "Skeleton_torso_joint_1", + "rotation": [ + 0.026794692501425743, + 0.026732537895441055, + 0.7065614461898804, + 0.706638753414154 + ], + "scale": [ + 1, + 1.0000001192092896, + 1.0000001192092896 + ], + "translation": [ + -0.00000003352759847530251, + 0.004999889992177486, + 0.6790000200271606 + ] + }, + "Skeleton_torso_joint_2": { + "children": [ + "torso_joint_3" + ], + "jointName": "Skeleton_torso_joint_2", + "name": "Skeleton_torso_joint_2", + "rotation": [ + 0.6572521924972534, + 0.00017969278269447386, + 0.00010428006498841569, + 0.7536706924438477 + ], + "scale": [ + 1.0000001192092896, + 0.9999995231628418, + 1.0000005960464478 + ], + "translation": [ + -0.00000001024449947095718, + 0.000000014901200273698123, + 0.1454170048236847 + ] + }, + "leg_joint_L_1": { + "children": [ + "leg_joint_L_2" + ], + "jointName": "leg_joint_L_1", + "name": "leg_joint_L_1", + "rotation": [ + 0.247569739818573, + -0.5775678753852844, + 0.7479144334793091, + -0.21388916671276093 + ], + "scale": [ + 0.9999995827674866, + 1.0000003576278687, + 1.000000238418579 + ], + "translation": [ + 0.06803669780492783, + -0.02851870097219944, + -0.06296280026435852 + ] + }, + "leg_joint_L_2": { + "children": [ + "leg_joint_L_3" + ], + "jointName": "leg_joint_L_2", + "name": "leg_joint_L_2", + "rotation": [ + -0.20902787148952484, + 0.32988977432250977, + 0.05559920147061348, + 0.9189063310623169 + ], + "scale": [ + 0.9999999403953552, + 0.9999998211860657, + 0.9999997615814209 + ], + "translation": [ + 0.0000000037252898543727042, + 0.2661130130290985, + 0.000000014901200273698123 + ] + }, + "leg_joint_L_3": { + "children": [ + "leg_joint_L_5" + ], + "jointName": "leg_joint_L_3", + "name": "leg_joint_L_3", + "rotation": [ + -0.847739577293396, + 0.004254061728715897, + 0.009491981007158756, + 0.5303107500076294 + ], + "scale": [ + 1.0000003576278687, + 1.0000001192092896, + 1.0000004768371582 + ], + "translation": [ + -0.0000000074505797087454084, + 0.27582401037216187, + 0.00000000558793988858497 + ] + }, + "leg_joint_L_5": { + "children": [], + "jointName": "leg_joint_L_5", + "name": "leg_joint_L_5", + "rotation": [ + 0.0265735425055027, + -0.32014429569244385, + 0.9445450305938721, + 0.06808965653181076 + ], + "scale": [ + 0.9999997019767761, + 1.000000238418579, + 0.9999999403953552 + ], + "translation": [ + -0.0023465200792998075, + -0.06617330014705658, + 0.027856800705194473 + ] + }, + "leg_joint_R_1": { + "children": [ + "leg_joint_R_2" + ], + "jointName": "leg_joint_R_1", + "name": "leg_joint_R_1", + "rotation": [ + -0.06642694771289825, + -0.6115013360977173, + 0.785027265548706, + 0.07338760793209076 + ], + "scale": [ + 0.9999995827674866, + 0.9999997615814209, + 1.000000238418579 + ], + "translation": [ + -0.06804200261831284, + -0.028570201247930527, + -0.06294959783554077 + ] + }, + "leg_joint_R_2": { + "children": [ + "leg_joint_R_3" + ], + "jointName": "leg_joint_R_2", + "name": "leg_joint_R_2", + "rotation": [ + -0.21629124879837036, + -0.1243065595626831, + -0.001575213740579784, + 0.9683818817138672 + ], + "scale": [ + 1.000000238418579, + 0.9999996423721313, + 1.0000001192092896 + ], + "translation": [ + 0, + 0.26611199975013733, + 0 + ] + }, + "leg_joint_R_3": { + "children": [ + "leg_joint_R_5" + ], + "jointName": "leg_joint_R_3", + "name": "leg_joint_R_3", + "rotation": [ + -0.847274124622345, + 0.02956405282020569, + 0.020867986604571342, + 0.5299217104911804 + ], + "scale": [ + 1, + 1, + 1.0000001192092896 + ], + "translation": [ + 0, + 0.27582499384880066, + -0.000000011175900205273592 + ] + }, + "leg_joint_R_5": { + "children": [], + "jointName": "leg_joint_R_5", + "name": "leg_joint_R_5", + "rotation": [ + -0.03726435825228691, + -0.3193131983280182, + 0.9460533857345581, + -0.04041508957743645 + ], + "scale": [ + 1, + 1.0000007152557373, + 1.000000238418579 + ], + "translation": [ + -0.0014584800228476524, + -0.06619880348443985, + 0.027856700122356415 + ] + }, + "node_21": { + "children": [ + "Armature", + "Cesium_Man" + ], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 0, + -1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1 + ], + "name": "Y_UP_Transform" + }, + "torso_joint_3": { + "children": [ + "Skeleton_neck_joint_1", + "Skeleton_arm_joint_L__4_", + "Skeleton_arm_joint_R" + ], + "jointName": "torso_joint_3", + "name": "torso_joint_3", + "rotation": [ + -0.6226037740707397, + -0.000016783453247626312, + 0.0000031824033612792846, + 0.7825372219085693 + ], + "scale": [ + 1, + 0.9999997019767761, + 0.9999997019767761 + ], + "translation": [ + 0.0000000004656610097519831, + 0.25051701068878174, + 0.0000000037252898543727042 + ] + } + }, + "programs": { + "program_0": { + "attributes": [ + "a_joint", + "a_normal", + "a_position", + "a_texcoord0", + "a_weight" + ], + "fragmentShader": "Cesium_Man0FS", + "vertexShader": "Cesium_Man0VS" + } + }, + "samplers": { + "sampler_0": { + "magFilter": 9729, + "minFilter": 9729, + "wrapS": 10497, + "wrapT": 10497 + } + }, + "scene": "defaultScene", + "scenes": { + "defaultScene": { + "nodes": [ + "node_21" + ] + } + }, + "shaders": { + "Cesium_Man0FS": { + "type": 35632, + "uri": "Cesium_Man0FS.glsl" + }, + "Cesium_Man0VS": { + "type": 35633, + "uri": "Cesium_Man0VS.glsl" + } + }, + "skins": { + "Armature_Cesium_Man-skin": { + "bindShapeMatrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ], + "inverseBindMatrices": "IBM_Armature_Cesium_Man-skin", + "jointNames": [ + "Skeleton_torso_joint_1", + "Skeleton_torso_joint_2", + "torso_joint_3", + "Skeleton_neck_joint_1", + "Skeleton_neck_joint_2", + "Skeleton_arm_joint_L__4_", + "Skeleton_arm_joint_R", + "Skeleton_arm_joint_L__3_", + "Skeleton_arm_joint_R__2_", + "Skeleton_arm_joint_L__2_", + "Skeleton_arm_joint_R__3_", + "leg_joint_L_1", + "leg_joint_R_1", + "leg_joint_L_2", + "leg_joint_R_2", + "leg_joint_L_3", + "leg_joint_R_3", + "leg_joint_L_5", + "leg_joint_R_5" + ], + "name": "Armature" + } + }, + "techniques": { + "technique0": { + "attributes": { + "a_joint": "joint", + "a_normal": "normal", + "a_position": "position", + "a_texcoord0": "texcoord0", + "a_weight": "weight" + }, + "parameters": { + "ambient": { + "type": 35666 + }, + "diffuse": { + "type": 35678 + }, + "emission": { + "type": 35666 + }, + "joint": { + "semantic": "JOINT", + "type": 35666 + }, + "jointMat": { + "count": 19, + "semantic": "JOINTMATRIX", + "type": 35676 + }, + "modelViewMatrix": { + "semantic": "MODELVIEW", + "type": 35676 + }, + "normal": { + "semantic": "NORMAL", + "type": 35665 + }, + "normalMatrix": { + "semantic": "MODELVIEWINVERSETRANSPOSE", + "type": 35675 + }, + "position": { + "semantic": "POSITION", + "type": 35665 + }, + "projectionMatrix": { + "semantic": "PROJECTION", + "type": 35676 + }, + "shininess": { + "type": 5126 + }, + "specular": { + "type": 35666 + }, + "texcoord0": { + "semantic": "TEXCOORD_0", + "type": 35664 + }, + "weight": { + "semantic": "WEIGHT", + "type": 35666 + } + }, + "program": "program_0", + "states": { + "enable": [ + 2929, + 2884 + ] + }, + "uniforms": { + "u_ambient": "ambient", + "u_diffuse": "diffuse", + "u_emission": "emission", + "u_jointMat": "jointMat", + "u_modelViewMatrix": "modelViewMatrix", + "u_normalMatrix": "normalMatrix", + "u_projectionMatrix": "projectionMatrix", + "u_shininess": "shininess", + "u_specular": "specular" + } + } + }, + "textures": { + "texture_Cesium_Man_jpg": { + "format": 6408, + "internalFormat": 6408, + "sampler": "sampler_0", + "source": "Cesium_Man_jpg", + "target": 3553, + "type": 5121 + } + } +} \ No newline at end of file diff --git a/examples/models/gltf/CesiumMan/glTF/Cesium_Man.jpg b/examples/models/gltf/CesiumMan/glTF/Cesium_Man.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ab1b724455c05a48291fbb05cd7318bf8368085f Binary files /dev/null and b/examples/models/gltf/CesiumMan/glTF/Cesium_Man.jpg differ diff --git a/examples/models/gltf/CesiumMan/glTF/Cesium_Man0FS.glsl b/examples/models/gltf/CesiumMan/glTF/Cesium_Man0FS.glsl new file mode 100644 index 0000000000000000000000000000000000000000..2f22e9bdb3eb1c5122901ac4182fbc802ee28100 --- /dev/null +++ b/examples/models/gltf/CesiumMan/glTF/Cesium_Man0FS.glsl @@ -0,0 +1,25 @@ +precision highp float; +varying vec3 v_normal; +uniform vec4 u_ambient; +varying vec2 v_texcoord0; +uniform sampler2D u_diffuse; +uniform vec4 u_emission; +uniform vec4 u_specular; +uniform float u_shininess; +void main(void) { +vec3 normal = normalize(v_normal); +vec4 color = vec4(0., 0., 0., 0.); +vec4 diffuse = vec4(0., 0., 0., 1.); +vec4 emission; +vec4 ambient; +vec4 specular; +ambient = u_ambient; +diffuse = texture2D(u_diffuse, v_texcoord0); +emission = u_emission; +specular = u_specular; +diffuse.xyz *= max(dot(normal,vec3(0.,0.,1.)), 0.); +color.xyz += diffuse.xyz; +color.xyz += emission.xyz; +color = vec4(color.rgb * diffuse.a, diffuse.a); +gl_FragColor = color; +} diff --git a/examples/models/gltf/CesiumMan/glTF/Cesium_Man0VS.glsl b/examples/models/gltf/CesiumMan/glTF/Cesium_Man0VS.glsl new file mode 100644 index 0000000000000000000000000000000000000000..446b9d6e885976134456f324d4bc1939edc8e041 --- /dev/null +++ b/examples/models/gltf/CesiumMan/glTF/Cesium_Man0VS.glsl @@ -0,0 +1,22 @@ +precision highp float; +attribute vec3 a_position; +attribute vec3 a_normal; +varying vec3 v_normal; +attribute vec4 a_joint; +attribute vec4 a_weight; +uniform mat4 u_jointMat[19]; +uniform mat3 u_normalMatrix; +uniform mat4 u_modelViewMatrix; +uniform mat4 u_projectionMatrix; +attribute vec2 a_texcoord0; +varying vec2 v_texcoord0; +void main(void) { +mat4 skinMat = a_weight.x * u_jointMat[int(a_joint.x)]; +skinMat += a_weight.y * u_jointMat[int(a_joint.y)]; +skinMat += a_weight.z * u_jointMat[int(a_joint.z)]; +skinMat += a_weight.w * u_jointMat[int(a_joint.w)]; +vec4 pos = u_modelViewMatrix * skinMat * vec4(a_position,1.0); +v_normal = u_normalMatrix * mat3(skinMat)* a_normal; +v_texcoord0 = a_texcoord0; +gl_Position = u_projectionMatrix * pos; +} diff --git a/examples/models/gltf/CesiumMilkTruck/README.txt b/examples/models/gltf/CesiumMilkTruck/README.txt new file mode 100644 index 0000000000000000000000000000000000000000..a192b692851e782ceff2dbd4e3ab1ce3eadc05f3 --- /dev/null +++ b/examples/models/gltf/CesiumMilkTruck/README.txt @@ -0,0 +1 @@ +Donated by Cesium for glTF testing. Please follow the Cesium Trademark Terms and Conditions: https://github.com/AnalyticalGraphicsInc/cesium/wiki/CesiumTrademark.pdf \ No newline at end of file diff --git a/examples/models/gltf/CesiumMilkTruck/glTF-MaterialsCommon/CesiumMilkTruck.bin b/examples/models/gltf/CesiumMilkTruck/glTF-MaterialsCommon/CesiumMilkTruck.bin new file mode 100644 index 0000000000000000000000000000000000000000..e718eec4d23991a52feb7464b15af0128f9dd41f Binary files /dev/null and b/examples/models/gltf/CesiumMilkTruck/glTF-MaterialsCommon/CesiumMilkTruck.bin differ diff --git a/examples/models/gltf/CesiumMilkTruck/glTF-MaterialsCommon/CesiumMilkTruck.gltf b/examples/models/gltf/CesiumMilkTruck/glTF-MaterialsCommon/CesiumMilkTruck.gltf new file mode 100644 index 0000000000000000000000000000000000000000..53c8587fd587c61e2cb5b95666b8e75336fe5c45 --- /dev/null +++ b/examples/models/gltf/CesiumMilkTruck/glTF-MaterialsCommon/CesiumMilkTruck.gltf @@ -0,0 +1,610 @@ +{ + "accessors": { + "accessor_100": { + "bufferView": "bufferView_105", + "byteOffset": 7032, + "byteStride": 12, + "componentType": 5126, + "count": 586, + "max": [ + 0.999039, + 0.999038, + 1 + ], + "min": [ + -0.999038, + -0.999038, + -1 + ], + "type": "VEC3" + }, + "accessor_102": { + "bufferView": "bufferView_105", + "byteOffset": 14064, + "byteStride": 8, + "componentType": 5126, + "count": 586, + "max": [ + 0.993657, + 0.989576 + ], + "min": [ + 0.605093, + 0.00905001 + ], + "type": "VEC2" + }, + "accessor_63": { + "bufferView": "bufferView_104", + "byteOffset": 4608, + "byteStride": 0, + "componentType": 5123, + "count": 5232, + "type": "SCALAR" + }, + "accessor_66": { + "bufferView": "bufferView_104", + "byteOffset": 15072, + "byteStride": 0, + "componentType": 5123, + "count": 168, + "type": "SCALAR" + }, + "accessor_69": { + "bufferView": "bufferView_104", + "byteOffset": 15408, + "byteStride": 0, + "componentType": 5123, + "count": 864, + "type": "SCALAR" + }, + "accessor_71": { + "bufferView": "bufferView_105", + "byteOffset": 18752, + "byteStride": 12, + "componentType": 5126, + "count": 2392, + "max": [ + 2.438, + 2.58437, + 1.396 + ], + "min": [ + -2.43091, + 0.2668, + -1.396 + ], + "type": "VEC3" + }, + "accessor_73": { + "bufferView": "bufferView_105", + "byteOffset": 47456, + "byteStride": 12, + "componentType": 5126, + "count": 2392, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": "VEC3" + }, + "accessor_75": { + "bufferView": "bufferView_105", + "byteOffset": 76160, + "byteStride": 8, + "componentType": 5126, + "count": 2392, + "max": [ + 0.896458, + 0.997245 + ], + "min": [ + 0.00295639, + 0.015672 + ], + "type": "VEC2" + }, + "accessor_96": { + "bufferView": "bufferView_104", + "byteOffset": 0, + "byteStride": 0, + "componentType": 5123, + "count": 2304, + "type": "SCALAR" + }, + "accessor_98": { + "bufferView": "bufferView_105", + "byteOffset": 0, + "byteStride": 12, + "componentType": 5126, + "count": 586, + "max": [ + 0.4278, + 0.4278, + 1.058 + ], + "min": [ + -0.4278, + -0.4278, + -1.058 + ], + "type": "VEC3" + }, + "animAccessor_0": { + "bufferView": "bufferView_103", + "byteOffset": 0, + "componentType": 5126, + "count": 31, + "type": "SCALAR" + }, + "animAccessor_1": { + "bufferView": "bufferView_103", + "byteOffset": 124, + "componentType": 5126, + "count": 31, + "type": "VEC4" + } + }, + "animations": { + "animation_0": { + "channels": [ + { + "sampler": "animation_0_rotation_sampler", + "target": { + "id": "Geometry-mesh001Node", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_1" + }, + "samplers": { + "animation_0_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + } + } + }, + "animation_1": { + "channels": [ + { + "sampler": "animation_1_rotation_sampler", + "target": { + "id": "meshInst962Node", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_1" + }, + "samplers": { + "animation_1_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + } + } + } + }, + "asset": { + "generator": "collada2gltf@cf6371beb0bdc18ba603378d5e40c966da53d385", + "premultipliedAlpha": true, + "profile": { + "api": "WebGL", + "version": "1.0.2" + }, + "version": "1.0" + }, + "bufferViews": { + "bufferView_103": { + "buffer": "CesiumMilkTruck", + "byteLength": 620, + "byteOffset": 0 + }, + "bufferView_104": { + "buffer": "CesiumMilkTruck", + "byteLength": 17136, + "byteOffset": 620, + "target": 34963 + }, + "bufferView_105": { + "buffer": "CesiumMilkTruck", + "byteLength": 95296, + "byteOffset": 17756, + "target": 34962 + } + }, + "buffers": { + "CesiumMilkTruck": { + "byteLength": 113052, + "type": "arraybuffer", + "uri": "CesiumMilkTruck.bin" + } + }, + "extensions": { + "KHR_materials_common": { + "lights": { + "Light-polyRender006": { + "ambient": { + "color": [ + 0, + 0, + 0 + ] + }, + "name": "Render", + "type": "ambient" + } + } + } + }, + "extensionsUsed": [ + "KHR_materials_common" + ], + "images": { + "Image0001": { + "name": "Image0001", + "uri": "CesiumMilkTruck.png" + } + }, + "materials": { + "Effect-glass": { + "extensions": { + "KHR_materials_common": { + "doubleSided": false, + "jointCount": 0, + "technique": "PHONG", + "transparent": false, + "values": { + "diffuse": [ + 0, + 0.0405063, + 0.0212407, + 1 + ], + "shininess": 256, + "specular": [ + 0.65, + 0.65, + 0.65, + 1 + ] + } + } + }, + "name": "glass" + }, + "Effect-truck": { + "extensions": { + "KHR_materials_common": { + "doubleSided": false, + "jointCount": 0, + "technique": "PHONG", + "transparent": false, + "values": { + "diffuse": "texture_Image0001", + "shininess": 256, + "specular": [ + 0.04, + 0.04, + 0.04, + 1 + ] + } + } + }, + "name": "truck" + }, + "Effect-wheels": { + "extensions": { + "KHR_materials_common": { + "doubleSided": false, + "jointCount": 0, + "technique": "PHONG", + "transparent": false, + "values": { + "diffuse": "texture_Image0001", + "shininess": 256, + "specular": [ + 0.04, + 0.04, + 0.04, + 1 + ] + } + } + }, + "name": "wheels" + }, + "Effect-window_trim": { + "extensions": { + "KHR_materials_common": { + "doubleSided": false, + "jointCount": 0, + "technique": "PHONG", + "transparent": false, + "values": { + "diffuse": [ + 0.064, + 0.064, + 0.064, + 1 + ], + "shininess": 256, + "specular": [ + 0.04, + 0.04, + 0.04, + 1 + ] + } + } + }, + "name": "window_trim" + } + }, + "meshes": { + "Geometry-mesh001": { + "name": "Wheels", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_100", + "POSITION": "accessor_98", + "TEXCOORD_0": "accessor_102" + }, + "indices": "accessor_96", + "material": "Effect-wheels", + "mode": 4 + } + ] + }, + "Geometry-mesh002": { + "name": "Cesium_Milk_Truck", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_73", + "POSITION": "accessor_71", + "TEXCOORD_0": "accessor_75" + }, + "indices": "accessor_63", + "material": "Effect-truck", + "mode": 4 + }, + { + "attributes": { + "NORMAL": "accessor_73", + "POSITION": "accessor_71", + "TEXCOORD_0": "accessor_75" + }, + "indices": "accessor_66", + "material": "Effect-glass", + "mode": 4 + }, + { + "attributes": { + "NORMAL": "accessor_73", + "POSITION": "accessor_71", + "TEXCOORD_0": "accessor_75" + }, + "indices": "accessor_69", + "material": "Effect-window_trim", + "mode": 4 + } + ] + } + }, + "nodes": { + "Geometry-mesh001Node": { + "children": [], + "meshes": [ + "Geometry-mesh001" + ], + "name": "Wheels", + "rotation": [ + 0, + 0, + -0.0884856, + 0.996077 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + 1.43267, + 0.427722, + -2.98023e-008 + ] + }, + "Geometry-mesh002Node": { + "children": [ + "Geometry-mesh001Node", + "meshInst962Node" + ], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ], + "meshes": [ + "Geometry-mesh002" + ], + "name": "Cesium_Milk_Truck" + }, + "groupLocator006Node": { + "children": [ + "txtrLocator003Node", + "txtrLocator013Node" + ], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ], + "name": "Texture_Group" + }, + "meshInst962Node": { + "children": [], + "meshes": [ + "Geometry-mesh001" + ], + "name": "Wheels__2_", + "rotation": [ + 0, + 0, + -0.0884856, + 0.996077 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + -1.35233, + 0.427722, + -2.98023e-008 + ] + }, + "polyRender006": { + "children": [], + "extensions": { + "KHR_materials_common": { + "light": "Light-polyRender006" + } + }, + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ], + "name": "Render" + }, + "txtrLocator003Node": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ], + "name": "Cesium_Milk_Truck__2___Image___Texture_" + }, + "txtrLocator013Node": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ], + "name": "Cesium_Milk_Truck__2___Image___2___Texture_" + } + }, + "samplers": { + "sampler_0": { + "magFilter": 9729, + "minFilter": 9987, + "wrapS": 10497, + "wrapT": 10497 + } + }, + "scene": "defaultScene", + "scenes": { + "defaultScene": { + "nodes": [ + "polyRender006", + "Geometry-mesh002Node", + "groupLocator006Node" + ] + } + }, + "skins": {}, + "textures": { + "texture_Image0001": { + "format": 6408, + "internalFormat": 6408, + "sampler": "sampler_0", + "source": "Image0001", + "target": 3553, + "type": 5121 + } + } +} \ No newline at end of file diff --git a/examples/models/gltf/CesiumMilkTruck/glTF-MaterialsCommon/CesiumMilkTruck.png b/examples/models/gltf/CesiumMilkTruck/glTF-MaterialsCommon/CesiumMilkTruck.png new file mode 100644 index 0000000000000000000000000000000000000000..ba7a47c7fdcde32fbfff2e1fa12299e09753ef69 Binary files /dev/null and b/examples/models/gltf/CesiumMilkTruck/glTF-MaterialsCommon/CesiumMilkTruck.png differ diff --git a/examples/models/gltf/CesiumMilkTruck/glTF/CesiumMilkTruck.bin b/examples/models/gltf/CesiumMilkTruck/glTF/CesiumMilkTruck.bin new file mode 100644 index 0000000000000000000000000000000000000000..e718eec4d23991a52feb7464b15af0128f9dd41f Binary files /dev/null and b/examples/models/gltf/CesiumMilkTruck/glTF/CesiumMilkTruck.bin differ diff --git a/examples/models/gltf/CesiumMilkTruck/glTF/CesiumMilkTruck.gltf b/examples/models/gltf/CesiumMilkTruck/glTF/CesiumMilkTruck.gltf new file mode 100644 index 0000000000000000000000000000000000000000..0d66c6fe3fda7a3bb86c91ce72cca4875d9e42cf --- /dev/null +++ b/examples/models/gltf/CesiumMilkTruck/glTF/CesiumMilkTruck.gltf @@ -0,0 +1,705 @@ +{ + "accessors": { + "accessor_100": { + "bufferView": "bufferView_105", + "byteOffset": 7032, + "byteStride": 12, + "componentType": 5126, + "count": 586, + "max": [ + 0.999039, + 0.999038, + 1 + ], + "min": [ + -0.999038, + -0.999038, + -1 + ], + "type": "VEC3" + }, + "accessor_102": { + "bufferView": "bufferView_105", + "byteOffset": 14064, + "byteStride": 8, + "componentType": 5126, + "count": 586, + "max": [ + 0.993657, + 0.989576 + ], + "min": [ + 0.605093, + 0.00905001 + ], + "type": "VEC2" + }, + "accessor_63": { + "bufferView": "bufferView_104", + "byteOffset": 4608, + "byteStride": 0, + "componentType": 5123, + "count": 5232, + "type": "SCALAR" + }, + "accessor_66": { + "bufferView": "bufferView_104", + "byteOffset": 15072, + "byteStride": 0, + "componentType": 5123, + "count": 168, + "type": "SCALAR" + }, + "accessor_69": { + "bufferView": "bufferView_104", + "byteOffset": 15408, + "byteStride": 0, + "componentType": 5123, + "count": 864, + "type": "SCALAR" + }, + "accessor_71": { + "bufferView": "bufferView_105", + "byteOffset": 18752, + "byteStride": 12, + "componentType": 5126, + "count": 2392, + "max": [ + 2.438, + 2.58437, + 1.396 + ], + "min": [ + -2.43091, + 0.2668, + -1.396 + ], + "type": "VEC3" + }, + "accessor_73": { + "bufferView": "bufferView_105", + "byteOffset": 47456, + "byteStride": 12, + "componentType": 5126, + "count": 2392, + "max": [ + 1, + 1, + 1 + ], + "min": [ + -1, + -1, + -1 + ], + "type": "VEC3" + }, + "accessor_75": { + "bufferView": "bufferView_105", + "byteOffset": 76160, + "byteStride": 8, + "componentType": 5126, + "count": 2392, + "max": [ + 0.896458, + 0.997245 + ], + "min": [ + 0.00295639, + 0.015672 + ], + "type": "VEC2" + }, + "accessor_96": { + "bufferView": "bufferView_104", + "byteOffset": 0, + "byteStride": 0, + "componentType": 5123, + "count": 2304, + "type": "SCALAR" + }, + "accessor_98": { + "bufferView": "bufferView_105", + "byteOffset": 0, + "byteStride": 12, + "componentType": 5126, + "count": 586, + "max": [ + 0.4278, + 0.4278, + 1.058 + ], + "min": [ + -0.4278, + -0.4278, + -1.058 + ], + "type": "VEC3" + }, + "animAccessor_0": { + "bufferView": "bufferView_103", + "byteOffset": 0, + "componentType": 5126, + "count": 31, + "type": "SCALAR" + }, + "animAccessor_1": { + "bufferView": "bufferView_103", + "byteOffset": 124, + "componentType": 5126, + "count": 31, + "type": "VEC4" + } + }, + "animations": { + "animation_0": { + "channels": [ + { + "sampler": "animation_0_rotation_sampler", + "target": { + "id": "Geometry-mesh001Node", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_1" + }, + "samplers": { + "animation_0_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + } + } + }, + "animation_1": { + "channels": [ + { + "sampler": "animation_1_rotation_sampler", + "target": { + "id": "meshInst962Node", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_1" + }, + "samplers": { + "animation_1_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + } + } + } + }, + "asset": { + "generator": "collada2gltf@ceec062e3d5793f2f249f53cbd843aee382ad40b", + "premultipliedAlpha": true, + "profile": { + "api": "WebGL", + "version": "1.0.2" + }, + "version": 1 + }, + "bufferViews": { + "bufferView_103": { + "buffer": "CesiumMilkTruck", + "byteLength": 620, + "byteOffset": 0 + }, + "bufferView_104": { + "buffer": "CesiumMilkTruck", + "byteLength": 17136, + "byteOffset": 620, + "target": 34963 + }, + "bufferView_105": { + "buffer": "CesiumMilkTruck", + "byteLength": 95296, + "byteOffset": 17756, + "target": 34962 + } + }, + "buffers": { + "CesiumMilkTruck": { + "byteLength": 113052, + "type": "arraybuffer", + "uri": "CesiumMilkTruck.bin" + } + }, + "images": { + "Image0001": { + "name": "Image0001", + "uri": "CesiumMilkTruck.png" + } + }, + "materials": { + "Effect-glass": { + "name": "glass", + "technique": "technique0", + "values": { + "diffuse": [ + 0, + 0.0405063, + 0.0212407, + 1 + ], + "shininess": 256, + "specular": [ + 0.65, + 0.65, + 0.65, + 1 + ] + } + }, + "Effect-truck": { + "name": "truck", + "technique": "technique1", + "values": { + "diffuse": "texture_Image0001", + "shininess": 256, + "specular": [ + 0.04, + 0.04, + 0.04, + 1 + ] + } + }, + "Effect-wheels": { + "name": "wheels", + "technique": "technique1", + "values": { + "diffuse": "texture_Image0001", + "shininess": 256, + "specular": [ + 0.04, + 0.04, + 0.04, + 1 + ] + } + }, + "Effect-window_trim": { + "name": "window_trim", + "technique": "technique0", + "values": { + "diffuse": [ + 0.064, + 0.064, + 0.064, + 1 + ], + "shininess": 256, + "specular": [ + 0.04, + 0.04, + 0.04, + 1 + ] + } + } + }, + "meshes": { + "Geometry-mesh001": { + "name": "Wheels", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_100", + "POSITION": "accessor_98", + "TEXCOORD_0": "accessor_102" + }, + "indices": "accessor_96", + "material": "Effect-wheels", + "mode": 4 + } + ] + }, + "Geometry-mesh002": { + "name": "Cesium_Milk_Truck", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_73", + "POSITION": "accessor_71", + "TEXCOORD_0": "accessor_75" + }, + "indices": "accessor_63", + "material": "Effect-truck", + "mode": 4 + }, + { + "attributes": { + "NORMAL": "accessor_73", + "POSITION": "accessor_71", + "TEXCOORD_0": "accessor_75" + }, + "indices": "accessor_66", + "material": "Effect-glass", + "mode": 4 + }, + { + "attributes": { + "NORMAL": "accessor_73", + "POSITION": "accessor_71", + "TEXCOORD_0": "accessor_75" + }, + "indices": "accessor_69", + "material": "Effect-window_trim", + "mode": 4 + } + ] + } + }, + "nodes": { + "Geometry-mesh001Node": { + "children": [], + "meshes": [ + "Geometry-mesh001" + ], + "name": "Wheels", + "rotation": [ + 0, + 0, + -0.0884856, + 0.996077 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + 1.43267, + 0.427722, + -2.98023e-008 + ] + }, + "Geometry-mesh002Node": { + "children": [ + "Geometry-mesh001Node", + "meshInst962Node" + ], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ], + "meshes": [ + "Geometry-mesh002" + ], + "name": "Cesium_Milk_Truck" + }, + "groupLocator006Node": { + "children": [ + "txtrLocator003Node", + "txtrLocator013Node" + ], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ], + "name": "Texture_Group" + }, + "meshInst962Node": { + "children": [], + "meshes": [ + "Geometry-mesh001" + ], + "name": "Wheels__2_", + "rotation": [ + 0, + 0, + -0.0884856, + 0.996077 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + -1.35233, + 0.427722, + -2.98023e-008 + ] + }, + "polyRender006": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ], + "name": "Render" + }, + "txtrLocator003Node": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ], + "name": "Cesium_Milk_Truck__2___Image___Texture_" + }, + "txtrLocator013Node": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ], + "name": "Cesium_Milk_Truck__2___Image___2___Texture_" + } + }, + "programs": { + "program_0": { + "attributes": [ + "a_normal", + "a_position" + ], + "fragmentShader": "CesiumMilkTruck0FS", + "vertexShader": "CesiumMilkTruck0VS" + }, + "program_1": { + "attributes": [ + "a_normal", + "a_position", + "a_texcoord0" + ], + "fragmentShader": "CesiumMilkTruck1FS", + "vertexShader": "CesiumMilkTruck1VS" + } + }, + "samplers": { + "sampler_0": { + "magFilter": 9729, + "minFilter": 9987, + "wrapS": 10497, + "wrapT": 10497 + } + }, + "scene": "defaultScene", + "scenes": { + "defaultScene": { + "nodes": [ + "polyRender006", + "Geometry-mesh002Node", + "groupLocator006Node" + ] + } + }, + "shaders": { + "CesiumMilkTruck0FS": { + "type": 35632, + "uri": "CesiumMilkTruck0FS.glsl" + }, + "CesiumMilkTruck0VS": { + "type": 35633, + "uri": "CesiumMilkTruck0VS.glsl" + }, + "CesiumMilkTruck1FS": { + "type": 35632, + "uri": "CesiumMilkTruck1FS.glsl" + }, + "CesiumMilkTruck1VS": { + "type": 35633, + "uri": "CesiumMilkTruck1VS.glsl" + } + }, + "skins": {}, + "techniques": { + "technique0": { + "attributes": { + "a_normal": "normal", + "a_position": "position" + }, + "parameters": { + "diffuse": { + "type": 35666 + }, + "modelViewMatrix": { + "semantic": "MODELVIEW", + "type": 35676 + }, + "normal": { + "semantic": "NORMAL", + "type": 35665 + }, + "normalMatrix": { + "semantic": "MODELVIEWINVERSETRANSPOSE", + "type": 35675 + }, + "position": { + "semantic": "POSITION", + "type": 35665 + }, + "projectionMatrix": { + "semantic": "PROJECTION", + "type": 35676 + }, + "shininess": { + "type": 5126 + }, + "specular": { + "type": 35666 + } + }, + "program": "program_0", + "states": { + "enable": [ + 2929, + 2884 + ] + }, + "uniforms": { + "u_diffuse": "diffuse", + "u_modelViewMatrix": "modelViewMatrix", + "u_normalMatrix": "normalMatrix", + "u_projectionMatrix": "projectionMatrix", + "u_shininess": "shininess", + "u_specular": "specular" + } + }, + "technique1": { + "attributes": { + "a_normal": "normal", + "a_position": "position", + "a_texcoord0": "texcoord0" + }, + "parameters": { + "diffuse": { + "type": 35678 + }, + "modelViewMatrix": { + "semantic": "MODELVIEW", + "type": 35676 + }, + "normal": { + "semantic": "NORMAL", + "type": 35665 + }, + "normalMatrix": { + "semantic": "MODELVIEWINVERSETRANSPOSE", + "type": 35675 + }, + "position": { + "semantic": "POSITION", + "type": 35665 + }, + "projectionMatrix": { + "semantic": "PROJECTION", + "type": 35676 + }, + "shininess": { + "type": 5126 + }, + "specular": { + "type": 35666 + }, + "texcoord0": { + "semantic": "TEXCOORD_0", + "type": 35664 + } + }, + "program": "program_1", + "states": { + "enable": [ + 2929, + 2884 + ] + }, + "uniforms": { + "u_diffuse": "diffuse", + "u_modelViewMatrix": "modelViewMatrix", + "u_normalMatrix": "normalMatrix", + "u_projectionMatrix": "projectionMatrix", + "u_shininess": "shininess", + "u_specular": "specular" + } + } + }, + "textures": { + "texture_Image0001": { + "format": 6408, + "internalFormat": 6408, + "sampler": "sampler_0", + "source": "Image0001", + "target": 3553, + "type": 5121 + } + } +} \ No newline at end of file diff --git a/examples/models/gltf/CesiumMilkTruck/glTF/CesiumMilkTruck.png b/examples/models/gltf/CesiumMilkTruck/glTF/CesiumMilkTruck.png new file mode 100644 index 0000000000000000000000000000000000000000..ba7a47c7fdcde32fbfff2e1fa12299e09753ef69 Binary files /dev/null and b/examples/models/gltf/CesiumMilkTruck/glTF/CesiumMilkTruck.png differ diff --git a/examples/models/gltf/CesiumMilkTruck/glTF/CesiumMilkTruck0FS.glsl b/examples/models/gltf/CesiumMilkTruck/glTF/CesiumMilkTruck0FS.glsl new file mode 100644 index 0000000000000000000000000000000000000000..6e928dc7006689ec314373ac3a85edbbb7aecd38 --- /dev/null +++ b/examples/models/gltf/CesiumMilkTruck/glTF/CesiumMilkTruck0FS.glsl @@ -0,0 +1,17 @@ +precision highp float; +varying vec3 v_normal; +uniform vec4 u_diffuse; +uniform vec4 u_specular; +uniform float u_shininess; +void main(void) { +vec3 normal = normalize(v_normal); +vec4 color = vec4(0., 0., 0., 0.); +vec4 diffuse = vec4(0., 0., 0., 1.); +vec4 specular; +diffuse = u_diffuse; +specular = u_specular; +diffuse.xyz *= max(dot(normal,vec3(0.,0.,1.)), 0.); +color.xyz += diffuse.xyz; +color = vec4(color.rgb * diffuse.a, diffuse.a); +gl_FragColor = color; +} diff --git a/examples/models/gltf/CesiumMilkTruck/glTF/CesiumMilkTruck0VS.glsl b/examples/models/gltf/CesiumMilkTruck/glTF/CesiumMilkTruck0VS.glsl new file mode 100644 index 0000000000000000000000000000000000000000..9e3592280a250273a293545b44f17de0936e9af2 --- /dev/null +++ b/examples/models/gltf/CesiumMilkTruck/glTF/CesiumMilkTruck0VS.glsl @@ -0,0 +1,12 @@ +precision highp float; +attribute vec3 a_position; +attribute vec3 a_normal; +varying vec3 v_normal; +uniform mat3 u_normalMatrix; +uniform mat4 u_modelViewMatrix; +uniform mat4 u_projectionMatrix; +void main(void) { +vec4 pos = u_modelViewMatrix * vec4(a_position,1.0); +v_normal = u_normalMatrix * a_normal; +gl_Position = u_projectionMatrix * pos; +} diff --git a/examples/models/gltf/CesiumMilkTruck/glTF/CesiumMilkTruck1FS.glsl b/examples/models/gltf/CesiumMilkTruck/glTF/CesiumMilkTruck1FS.glsl new file mode 100644 index 0000000000000000000000000000000000000000..782e1f41628c5a58eee2bf30af4e8b7888b204e1 --- /dev/null +++ b/examples/models/gltf/CesiumMilkTruck/glTF/CesiumMilkTruck1FS.glsl @@ -0,0 +1,18 @@ +precision highp float; +varying vec3 v_normal; +varying vec2 v_texcoord0; +uniform sampler2D u_diffuse; +uniform vec4 u_specular; +uniform float u_shininess; +void main(void) { +vec3 normal = normalize(v_normal); +vec4 color = vec4(0., 0., 0., 0.); +vec4 diffuse = vec4(0., 0., 0., 1.); +vec4 specular; +diffuse = texture2D(u_diffuse, v_texcoord0); +specular = u_specular; +diffuse.xyz *= max(dot(normal,vec3(0.,0.,1.)), 0.); +color.xyz += diffuse.xyz; +color = vec4(color.rgb * diffuse.a, diffuse.a); +gl_FragColor = color; +} diff --git a/examples/models/gltf/CesiumMilkTruck/glTF/CesiumMilkTruck1VS.glsl b/examples/models/gltf/CesiumMilkTruck/glTF/CesiumMilkTruck1VS.glsl new file mode 100644 index 0000000000000000000000000000000000000000..cacc9ed997a3b39176b3d0aa69287521895571f4 --- /dev/null +++ b/examples/models/gltf/CesiumMilkTruck/glTF/CesiumMilkTruck1VS.glsl @@ -0,0 +1,15 @@ +precision highp float; +attribute vec3 a_position; +attribute vec3 a_normal; +varying vec3 v_normal; +uniform mat3 u_normalMatrix; +uniform mat4 u_modelViewMatrix; +uniform mat4 u_projectionMatrix; +attribute vec2 a_texcoord0; +varying vec2 v_texcoord0; +void main(void) { +vec4 pos = u_modelViewMatrix * vec4(a_position,1.0); +v_normal = u_normalMatrix * a_normal; +v_texcoord0 = a_texcoord0; +gl_Position = u_projectionMatrix * pos; +} diff --git a/examples/models/gltf/duck/README.txt b/examples/models/gltf/duck/README.txt index 8187edd2fe44d831540e494fda5292f8b6c81728..50b9e0cb637c92a44d7cfd6fc2efe0aebfd965c2 100644 --- a/examples/models/gltf/duck/README.txt +++ b/examples/models/gltf/duck/README.txt @@ -1,13 +1,7 @@ ----UPDATED 2/21/2007 -Scaled down the duck to a more reasonable size, removed physics scene, removed extra "dummy" transforms and pivot points, added camera and light. ---- - -This model is a typical bathtub rubber duck. It uses a single texture. - -One version uses a polylist the other is triangles only. - -The model has been stripped of all tags and should be COLLADA 1.4.1 compliant. - -For additional information post messages on www.collada.org or mail collada@collada.org - -These models are Copyright 2006 Sony Computer Entertainment Inc. and are distributed under the terms of the SCEA Shared Source License, available at http://research.scea.com/scea_shared_source_license.html \ No newline at end of file +Copyright 2006 Sony Computer Entertainment Inc. + +Licensed under the SCEA Shared Source License, Version 1.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at: + +http://research.scea.com/scea_shared_source_license.html + +Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. \ No newline at end of file diff --git a/examples/models/gltf/duck/duck.bin b/examples/models/gltf/duck/duck.bin deleted file mode 100755 index 9ec1399c3934790ea9b5058dbbffef0516f677e6..0000000000000000000000000000000000000000 Binary files a/examples/models/gltf/duck/duck.bin and /dev/null differ diff --git a/examples/models/gltf/duck/duck.dae b/examples/models/gltf/duck/duck.dae deleted file mode 100755 index bbf9d752027922c188bb18aeb22bf9f138b29acc..0000000000000000000000000000000000000000 --- a/examples/models/gltf/duck/duck.dae +++ /dev/null @@ -1,198 +0,0 @@ - - - - - gcorson - Maya 8.0 | ColladaMaya v3.02 | FCollada v3.2 - Collada Maya Export Options: bakeTransforms=0;exportPolygonMeshes=1;bakeLighting=0;isSampling=0; -curveConstrainSampling=0;exportCameraAsLookat=0; -exportLights=1;exportCameras=1;exportJointsAndSkin=1; -exportAnimations=1;exportTriangles=1;exportInvisibleNodes=0; -exportNormals=1;exportTexCoords=1;exportVertexColors=1;exportTangents=0; -exportTexTangents=0;exportConstraints=1;exportPhysics=0;exportXRefs=1; -dereferenceXRefs=0;cameraXFov=0;cameraYFov=1 - -Copyright 2006 Sony Computer Entertainment Inc. -Licensed under the SCEA Shared Source License, Version 1.0 (the -"License"); you may not use this file except in compliance with the -License. You may obtain a copy of the License at: -http://research.scea.com/scea_shared_source_license.html -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. - - file:///C:/vs2005/sample_data/Complete_Packages/SCEA_Private/Maya_MoonLander/Moonlander/untitled - - 2006-08-23T22:29:59Z - 2007-02-21T22:52:44Z - - Y_UP - - - - - - - 37.8492 - 1.5 - 1 - 10000 - - - - - - - - - - 1 1 1 - - - - - - - duckCM.png - - - - - - - - - - - - - file2 - A8R8G8B8 - - - - - file2-surface - LINEAR_MIPMAP_LINEAR - LINEAR - - - - - - 0 0 0 1 - - - 0 0 0 1 - - - - - - 0 0 0 1 - - - 0.3 - - - 0 0 0 1 - - - 0.5 - - - 0 0 0 1 - - - 1 - - - 1 - - - - - - - - - - - 35.0226 89.3874 23.3732 19.5676 89.7173 22.4879 9.22909 91.5427 17.1037 4.33048 88.7008 4.57726 45.0571 89.4178 19.824 -30.5196 11.6272 25.1326 -15.6992 11.4278 34.2321 51.8411 17.7055 36.5602 65.7206 18.372 27.0862 56.0117 11.4345 22.6963 -23.2343 18.1488 41.0429 -40.9218 18.6322 29.6382 62.4487 11.3989 12.9806 60.2326 28.1944 39.5949 71.2984 29.0359 29.3335 -32.9737 29.6914 43.477 -48.95 28.9358 31.4102 73.8118 41.7425 29.8584 65.2513 41.3955 39.884 72.6597 55.003 29.2468 64.6263 55.4849 38.2648 66.5829 66.4165 27.9218 55.5179 67.734 35.7358 43.4971 75.6992 31.8699 56.934 75.0037 25.7495 14.7601 73.8701 35.1574 -12.1248 73.9991 28.9191 14.7016 78.8465 28.8886 -3.37962 78.0576 23.1953 -24.7824 78.2304 7.65121 4.94216 81.4267 15.8195 -54.7257 89.9761 8.84491 -53.6566 74.7375 26.9735 -44.1714 77.8938 26.1268 -64.7587 73.8997 7.15297 -61.5691 65.6958 25.2253 -42.9296 61.2502 39.4496 -64.9663 57.2673 21.7398 -48.9596 49.2561 39.8218 -58.3698 43.9468 28.036 -31.7993 70.8398 33.4366 -33.1153 82.3349 8.62471 48.2452 81.0789 22.327 34.1225 80.5718 26.6473 15.5527 81.3807 24.423 0.65596 81.0723 3.99376 15.1798 11.41 36.4164 17.2973 17.3674 43.2976 43.8649 67.7941 39.8677 55.9835 56.1625 42.7808 56.4187 41.7648 44.4371 46.9566 29.0085 44.2399 18.041 21.337 45.4158 -24.2634 29.7596 46.4694 -37.1346 44.6474 44.4312 -35.8668 57.8953 42.7333 -24.1626 66.8013 39.6298 -14.2645 43.4767 51.8892 10.1522 43.8267 53.9252 -10.3735 36.316 51.8336 -14.5047 52.2745 51.0455 9.35439 52.1796 53.5056 24.5685 36.9247 52.4691 11.2191 35.6243 52.5988 27.0248 44.5585 52.8835 25.4374 55.0852 52.0724 9.23132 59.258 51.2115 21.2751 61.6417 50.3945 -11.0645 57.3325 50.3033 -22.8339 53.8174 48.6047 -22.3883 43.3299 49.8488 -13.3437 34.4469 50.7719 -15.0193 59.7488 48.0109 12.3031 31.6369 51.4681 28.2 34.9703 51.4911 34.9314 44.1559 51.2583 33.7281 55.8993 50.0475 24.8495 63.37 48.6114 9.96162 62.8873 48.4038 6.73344 84.5266 2.83788 10.2211 84.9641 13.1445 19.05 85.0093 20.4734 35.2584 84.9759 22.0089 44.8651 85.199 18.7578 54.1484 90.1992 13.1393 25.84 89.3162 23.5593 14.5318 90.4728 20.5795 5.99276 89.5698 10.1098 59.1034 90.0324 3.37689 -23.9364 11.5353 30.6125 -11.459 10.0413 29.8243 -24.5326 10.1147 22.2069 -35.1528 11.6836 17.7191 61.5472 14.2726 25.2082 43.6854 11.43 30.0164 47.7677 14.1162 33.6212 -19.459 14.309 37.9267 -36.067 14.5054 27.6816 -32.9292 18.5574 36.7248 -46.1733 18.6604 20.5246 73.3418 18.3468 14.9194 68.8732 23.4107 28.4208 55.7803 22.4988 38.5465 -27.0171 23.4671 43.0366 -45.2302 23.6628 30.9246 -41.0731 29.3325 39.4763 79.4615 29.1894 16.0672 76.9844 23.4678 15.5749 72.8865 35.1223 29.8369 63.2406 34.5574 39.8307 81.8608 42.114 16.7292 80.9318 35.3877 16.409 66.0817 48.5555 39.2449 73.9987 48.5347 29.6857 80.1688 55.1853 16.948 81.5894 48.8387 16.9628 61.1927 62.0057 37.295 70.17 61.0152 28.6395 74.8647 66.3268 16.601 77.7874 61.0196 16.7611 61.7637 71.037 26.8557 67.1835 75.4493 16.6366 71.6321 71.1772 16.667 -7.40039 76.1581 26.3759 14.8335 76.3145 32.0471 -20.947 75.0059 21.3995 -9.30957 78.0917 17.6635 2.33308 81.2658 10.7014 -55.3055 81.4823 20.1865 -44.1025 82.8784 21.08 -48.3998 77.2606 26.9595 -63.8341 69.8359 17.705 -58.2579 70.6396 26.4175 -58.1459 60.4109 31.5845 -50.1918 68.7831 33.097 -53.5557 46.1592 34.9928 -63.069 52.729 24.0553 -63.6495 60.7883 23.3658 -54.4261 28.5392 21.6382 -12.4228 39.2454 51.9419 -52.1766 34.1006 30.9987 -39.3582 37.1753 42.8245 -63.2047 33.3562 7.77354 -14.9689 48.0973 51.5712 -13.2184 68.1588 38.5488 -20.841 71.9312 31.5875 -34.0814 73.6573 23.1685 39.0864 77.6536 29.4959 52.286 78.2905 24.2985 28.6752 75.0467 34.74 24.5284 79.4248 29.0977 58.2456 81.6454 14.9372 62.5867 78.8584 16.1198 -40.058 73.3058 29.0169 -62.4832 42.7738 19.6053 -66.2542 57.7677 16.0138 -46.3972 55.562 40.3341 46.1403 83.2928 20.059 52.8472 87.516 12.3304 24.3957 81.2413 26.4145 17.5457 83.2299 21.6568 35.0308 86.9496 21.9178 5.66061 83.0193 2.97282 39.2717 10.0042 25.9897 49.7414 9.99683 19.7068 14.6156 10.0124 31.7958 28.2119 11.4278 34.5791 55.179 10.0309 11.4214 16.1259 13.9798 40.2177 33.0793 17.7336 41.3765 18.9195 36.2041 52.5892 10.6044 39.6524 53.4314 18.2523 44.3116 53.7955 25.9535 39.9994 52.7745 9.73549 48.0914 53.8815 16.9236 53.6009 53.2898 26.8721 49.8693 52.6952 9.12603 55.8675 52.7181 15.9783 60.8706 50.8542 23.2428 59.2083 51.1997 15.2006 70.9348 38.4909 -38.0814 66.6122 37.6368 -31.4745 63.2943 41.295 -12.9337 55.4359 50.6592 -29.8093 42.9681 46.5354 -18.6612 31.1764 47.8255 -30.266 55.8423 44.7033 36.2897 31.2217 48.0605 46.511 42.7776 47.7899 45.6636 56.4673 46.2574 32.8524 66.1703 44.2955 12.3579 67.2602 43.2175 -19.149 38.1518 50.4005 -23.6628 48.8825 49.2194 21.1045 32.7401 51.4785 32.4268 38.9651 51.46 35.2465 50.0413 50.7771 17.9201 63.7837 48.4371 30.018 60.597 49.2453 -20.4236 57.6424 48.1257 -7.11345 60.5511 48.2081 -5.54756 57.4675 50.6459 -6.2067 51.4293 52.475 -5.95461 43.3855 53.166 -4.66971 35.7333 52.2177 -5.70251 32.445 51.1085 -8.3205 17.8723 43.3717 -2.69678 11.3425 36.4653 -27.2981 42.8866 48.0687 -27.8897 55.043 46.5161 -16.4436 32.2248 49.3054 -18.5848 62.3861 45.599 13.6265 28.0639 49.9986 41.3922 43.4352 49.4685 32.3868 32.7171 49.8711 40.4699 56.3449 48.0345 28.9733 65.0389 46.3945 11.0523 65.6624 45.6909 -37.9272 11.78 6.99728 -50.2675 18.389 7.36354 75.8256 18.3928 2.93945 64.2756 11.6576 2.65993 82.8128 29.1368 2.93945 85.8726 42.1384 2.93945 84.9147 55.2091 3.25752 79.936 66.2007 3.25752 72.9207 75.6569 3.11665 -13.2799 78.2816 6.78078 -42.4217 91.5301 9.02211 -66.2519 42.375 7.59116 -67.9758 58.5114 6.99802 8.76422 81.5601 20.2429 8.65004 83.1534 13.7124 6.16626 86.3527 3.3376 10.3479 87.4003 13.9949 7.91973 84.7475 8.18356 19.5238 87.0994 20.6484 13.8638 85.0248 17.2846 35.1961 83.043 23.5111 26.055 84.941 22.3278 44.4291 87.1742 18.6599 55.1672 83.7325 13.2216 53.3737 85.5572 12.3674 -18.7264 10.108 26.6814 -28.5504 10.1785 15.7995 -28.6467 14.412 33.9793 -40.9463 14.6426 19.2219 68.6182 14.2022 14.0757 -36.9819 23.7436 38.5844 48.5084 72.1529 33.9029 -14.7042 76.6096 19.7209 -49.515 83.8778 20.7678 -60.3339 76.3635 19.0618 -54.5522 64.8765 32.9243 -60.8158 55.9957 28.5728 -50.6442 23.4975 21.2438 -45.1383 35.1824 39.0803 -57.747 33.5446 21.51 -27.5531 73.6877 22.8942 26.6207 76.9559 31.9144 -39.393 77.9086 22.2647 -65.5928 51.6658 17.2594 -44.8336 71.3336 32.1213 -65.569 63.5509 16.5565 25.3055 83.1594 23.781 12.1192 83.2358 18.075 25.9631 10.0257 30.0393 30.5288 14.0969 38.2233 18.4628 39.992 53.2994 17.691 48.9863 53.8221 16.1429 57.6002 52.3171 32.2615 71.41 37.9727 51.4408 62.676 41.4618 57.6406 48.9151 43.8433 52.9177 35.0586 44.5773 36.217 23.1483 43.9056 -31.7681 36.6178 45.7769 -37.83 51.5724 43.6927 -25.9576 36.5644 47.2776 -31.2662 49.6491 45.6583 26.7542 27.5116 48.1161 23.2102 67.8126 43.5534 -9.81152 64.5785 42.5347 -5.73514 54.6841 51.8166 -6.34459 47.5345 53.0926 -5.18279 39.3551 52.8687 -13.0679 23.5531 45.6457 -5.21985 14.0791 40.2548 -0.679352 10.0168 31.8299 -28.752 49.271 47.2864 -23.8534 36.6519 48.7626 -24.6964 59.5316 45.8889 -7.15942 29.3978 49.7079 38.1551 37.5127 49.7814 23.9612 29.5453 49.9126 42.2701 49.9123 48.8776 35.8278 61.6884 47.1419 20.5055 66.243 45.9037 -8.95663 63.2617 45.5834 -31.1142 10.1703 6.38486 -44.1714 14.6552 7.27827 70.6407 14.3913 2.92833 79.9353 23.413 2.93945 84.5803 35.3544 2.93945 85.9631 48.8595 3.25752 82.8254 61.0226 3.25826 76.7546 71.3433 3.2553 -19.2017 77.8115 7.33611 -48.5489 92.2656 9.06511 -60.1596 84.4057 8.28143 -55.757 23.043 7.73055 -29.2013 79.6561 8.08569 -37.1064 88.1752 8.91461 -68.0046 51.5783 7.15372 -66.9147 65.618 7.07735 57.0756 10.1525 2.28551 6.64003 83.0734 8.64102 7.67061 86.759 8.63805 14.3983 87.2706 17.8748 26.21 86.9437 22.1654 62.3057 92.5874 2.9313 1.3848 69.2606 38.5873 1.56273 65.4519 43.0262 1.32251 64.1537 45.6605 4.95551 9.99831 32.3904 4.63076 11.3477 37.0599 4.48174 13.922 40.9628 4.08211 17.3859 43.9419 3.02928 21.4474 45.8963 3.07525 28.2293 49.9356 3.11009 31.6361 51.3265 3.03002 35.4574 52.4675 2.61333 39.4033 53.3009 2.11362 43.4389 53.8266 1.75772 47.519 53.7873 1.63762 51.3863 53.3032 1.70287 54.8295 52.4802 1.76736 58.0161 51.0099 1.52196 61.5001 48.3586 1.93642 72.8387 33.8763 3.64763 75.9142 30.548 5.31806 78.4269 26.9639 58.5778 87.5953 2.23361 59.1501 85.8263 2.11721 61.5583 84.2063 2.51758 64.9644 82.1214 2.892 69.0133 79.1475 3.00989 32.7991 89.7151 -30.4233 18.3501 89.4171 -27.9721 8.67525 89.5668 -20.9938 2.39314 90.3705 -9.85685 41.3633 90.1718 -28.7054 -31.106 11.4775 -32.9686 -16.1893 11.413 -41.8242 -37.8441 11.7199 -17.9362 51.1145 17.827 -43.7764 65.4167 18.372 -34.6672 55.5386 11.4663 -30.2365 -22.7101 18.3816 -48.1723 -41.2258 18.6322 -37.22 -49.9064 18.1281 -19.4546 62.0944 11.4196 -20.5393 59.314 28.4606 -46.5397 70.9277 29.0352 -36.8544 -33.1991 29.873 -50.7109 -49.3615 28.878 -39.0246 73.4812 41.7559 -37.3453 64.6226 41.5905 -46.5931 72.9066 55.0971 -37.0309 63.9264 55.2231 -45.5736 67.308 66.4328 -36.116 55.8026 66.7664 -44.1694 43.9561 74.6649 -39.815 57.8297 75.238 -34.1393 15.5401 73.1894 -42.5115 -12.2174 73.8819 -36.4385 15.3978 78.7998 -35.5147 -2.0421 78.412 -29.475 -24.7876 76.5792 -19.7267 -12.534 78.2897 -17.6678 4.34457 81.1227 -24.1642 -55.8163 87.2424 -22.0756 -43.7036 88.3494 -22.3158 -54.1303 74.7924 -34.6324 -44.4888 77.8752 -33.6648 -65.5053 72.5896 -18.5049 -61.9613 65.7536 -32.9553 -43.4634 60.448 -47.4894 -65.1954 57.0723 -29.5143 -59.2654 27.9119 -20.2361 -49.2087 49.1998 -47.3723 -58.9689 43.7199 -35.5858 -66.3446 42.1948 -19.4391 15.5861 70.0443 -46.0785 -33.1287 69.3852 -41.4713 -34.4892 80.0254 -21.5618 48.699 81.1865 -30.8689 34.2382 80.5703 -34.2498 16.5759 81.1153 -31.895 0.727875 81.1872 -12.4148 -68.018 58.2133 -17.8183 14.7802 11.3848 -44.0174 16.9221 17.4452 -50.8066 -13.0864 43.3447 -58.8481 10.4495 43.9097 -61.0858 -9.32663 36.6667 -59.0505 -14.22 51.903 -58.0496 9.45597 51.998 -60.0277 24.246 37.0634 -60.5519 11.3896 35.7436 -60.2776 26.5918 44.6467 -61.0071 25.4626 54.4929 -59.5273 9.00666 58.9948 -57.2808 21.3366 60.5555 -57.2059 -11.1972 57.2725 -56.9708 -22.2438 53.1256 -56.0203 -20.3457 43.0689 -57.3067 -12.1122 35.0371 -58.1689 -14.9222 59.3774 -55.2218 12.2904 31.7184 -59.1973 27.7581 35.2002 -59.4961 33.8971 44.4969 -59.5273 32.7486 55.5991 -57.9969 24.5692 62.5262 -55.8246 9.69026 62.3164 -55.2589 6.31009 84.6215 -9.59067 9.94086 84.9232 -20.0693 19.0219 85.0345 -27.4843 34.7653 85.0426 -29.4209 44.1941 85.119 -26.7866 50.8728 90.6708 -23.6459 25.0482 89.5646 -29.954 12.9607 89.423 -24.9078 5.25504 89.8204 -16.202 3.24726 88.5844 -2.72431 56.928 89.7848 -10.5352 -24.3405 11.4359 -38.3603 -12.0514 9.99387 -37.4698 -25.119 9.92937 -30.186 -35.4745 11.6324 -25.6774 -30.9667 10.1577 -16.9998 61 14.303 -32.6913 42.9826 11.5093 -37.4209 46.9722 14.2133 -40.7944 -19.5197 14.3549 -45.3897 -36.488 14.4595 -35.3605 -33.1887 18.5722 -44.2309 -44.1233 14.4447 -18.6976 -46.6619 18.3928 -28.2843 73.0378 18.3468 -22.5011 68.5692 23.4107 -36.0025 54.8395 22.7093 -45.7182 -26.8814 23.6917 -50.1401 -45.535 23.6628 -38.5063 -41.3718 29.3444 -46.7703 79.1575 29.1894 -23.6481 76.6804 23.4678 -23.1566 72.5633 35.1268 -37.3883 62.517 34.8109 -46.6606 81.5568 42.114 -24.311 80.6278 35.3877 -23.9899 65.2083 48.5511 -46.1149 73.84 48.5629 -37.3 80.6871 55.3477 -24.807 81.674 48.8988 -24.6283 60.7961 61.4452 -45.0316 70.7794 61.119 -36.7907 75.5475 66.5218 -24.6246 78.6126 61.265 -24.804 62.9885 71.049 -35.1951 66.8647 75.4648 -24.4251 71.4756 71.2009 -24.4489 -6.85692 76.1307 -33.2993 15.3904 76.124 -38.9186 -20.6749 74.9933 -28.8188 -18.659 77.1776 -18.9697 -8.319 78.3549 -24.2702 1.96458 81.2562 -18.3514 -55.843 81.314 -28.5504 -49.6254 89.3466 -22.4648 -44.4451 82.6048 -28.9686 -48.6808 77.2324 -34.5316 -64.3131 69.6573 -25.8984 -61.7107 81.899 -20.9783 -58.7835 70.7123 -34.1097 -58.4469 60.3879 -39.1736 -50.5077 68.7809 -40.6817 -54.183 45.9931 -42.2824 -63.8549 52.5711 -32.0063 -63.9335 60.729 -31.1655 -54.957 22.8131 -19.9766 -55.152 28.2115 -29.5499 -11.2032 39.4137 -59.029 -53.076 34.2815 -38.5249 -39.7533 37.3377 -50.1979 -63.1283 33.463 -20.1464 -14.2141 47.7244 -58.4915 -30.0695 77.3155 -20.5683 -21.5757 71.2928 -39.3886 -34.2579 73.9026 -30.84 39.2161 77.6454 -37.0836 52.7939 78.4766 -32.8685 29.7051 73.7336 -42.0511 25.218 79.3136 -35.8083 57.9394 81.7173 -23.2211 62.3879 78.9177 -24.2442 -40.3947 73.317 -36.5831 -38.6256 84.6334 -22.1512 -63.1328 42.5522 -27.8513 -68.0395 51.255 -18.387 -66.6864 57.5891 -24.6884 -46.719 55.3544 -48.0974 -67.0838 65.1042 -17.911 46.0958 83.2499 -28.6417 50.9529 87.3143 -20.6038 25.2513 81.0708 -33.3601 17.9216 83.2039 -29.0153 34.0372 87.1164 -29.0287 5.17719 83.0067 -10.4967 38.7965 10.0502 -33.6129 49.3922 10.0272 -27.3241 14.187 9.93604 -39.5629 27.7425 11.4278 -42.1534 55.0359 10.0176 -19.0023 15.6372 13.9546 -47.8631 32.7953 17.7996 -48.8099 18.8513 36.2745 -60.5645 10.861 39.7903 -60.8997 18.3879 44.3219 -61.3282 25.5709 40.1514 -60.9249 9.98461 48.0417 -60.7803 17.172 53.0256 -60.1664 26.7053 49.7018 -60.6231 9.02446 55.628 -58.8755 15.9709 59.969 -57.3289 23.2776 58.2326 -58.209 44.1377 66.4765 -47.442 32.9162 70.0487 -45.5996 -39.1943 64.8054 -45.7138 55.5401 55.5242 -49.7715 51.248 61.6595 -48.7462 56.0065 41.9561 -51.2803 57.0734 48.8091 -50.5693 46.5132 29.225 -51.505 52.5663 35.3329 -51.6029 17.5056 21.4015 -53.1414 35.7529 23.258 -51.4249 -24.8654 30.3579 -52.8774 -37.595 44.6801 -51.7631 -32.3879 37.056 -52.6379 -36.3175 56.5451 -50.6094 -38.0947 50.8613 -51.419 -25.0582 65.9138 -47.2878 -13.0315 55.2283 -57.5699 -29.5994 42.7331 -54.0504 -17.7196 32.1054 -55.3997 -31.0452 54.9518 -52.1567 14.4814 25.6447 -55.9766 35.6595 31.6265 -55.6473 45.0786 43.2372 -55.4835 44.2682 56.1306 -54.0718 32.613 65.3459 -51.8098 12.2638 66.6664 -50.3239 -16.8788 38.5536 -57.7812 -22.2779 48.1633 -56.692 20.9614 32.7638 -59.3975 31.7892 39.2914 -59.6303 34.2463 50.1711 -58.9927 17.7651 63.1379 -55.4049 29.3959 59.9275 -56.7944 -19.9928 57.0804 -55.4805 -7.23875 60.3598 -55.204 -5.65804 57.5512 -57.0761 -6.0065 51.3551 -59.049 -5.22208 43.4715 -59.8809 -3.96387 36.0409 -59.508 -5.15608 32.8988 -58.5686 -13.5854 23.9342 -52.6112 -9.06415 18.1577 -50.5723 -3.25877 11.387 -43.9714 -26.2193 42.6871 -55.6006 -28.5919 54.4558 -53.8865 -15.0875 33.3422 -56.7928 -18.825 61.9909 -52.8915 13.3618 27.7844 -57.7174 39.8055 43.952 -57.5439 31.8122 33.1212 -57.6826 38.9151 56.1492 -56.0878 28.5307 64.3375 -53.8731 10.8825 65.2576 -52.8604 -38.7872 11.7814 -10.3899 -51.3804 18.2081 -11.1306 75.9308 18.2734 -10.619 64.3713 11.5264 -10.1319 82.6956 29.1294 -10.748 85.6139 42.137 -11.5317 84.7924 55.3455 -12.4133 79.6343 66.3979 -12.9219 71.6684 75.6332 -12.7061 -25.2621 79.1542 -11.2952 -14.3624 78.3676 -10.5812 -55.4174 91.1379 -15.1558 -43.1913 92.0224 -14.9719 -65.5402 74.7902 -11.1558 -61.0434 28.0454 -11.3123 -32.6111 84.6875 -12.5304 -67.2833 42.4839 -10.9141 -68.8802 58.6841 -10.4374 0.543259 81.1205 -6.22162 9.52418 81.0708 -28.7966 8.37571 83.1824 -21.1125 5.53085 86.6678 -9.24443 6.35532 84.3783 -3.72153 9.91936 86.9399 -19.9543 7.46301 84.8157 -15.1358 19.1716 86.9829 -27.1848 13.7244 84.9789 -24.2465 35.0315 83.0667 -31.2656 26.1633 85.0641 -29.3275 42.8321 87.2394 -26.5835 54.4673 83.6613 -21.5529 52.1903 85.3592 -20.4029 -19.1772 9.97014 -34.5627 -29.0093 10.0524 -23.9684 -28.9966 14.3787 -41.6404 -41.4341 14.4313 -27.1351 68.2653 14.2141 -21.6559 -37.1724 23.751 -45.8917 49.1935 70.9503 -42.3484 -14.5648 76.6133 -27.0075 -49.8916 83.6109 -28.9872 -61.1227 76.1114 -27.2671 -55.0601 65.0337 -40.5186 -61.3029 55.8348 -36.2984 -51.2017 23.1727 -29.0783 -45.8464 35.4359 -46.3143 -58.6945 33.6906 -29.4149 -27.3062 73.8878 -30.3291 27.1279 76.7275 -38.8845 -39.6428 78.0687 -29.8339 -66.1326 51.3373 -25.8257 -45.1368 71.2869 -39.6934 -65.8464 63.4174 -25.0094 25.8474 83.1357 -30.877 12.1451 83.2039 -25.5855 25.4849 9.93826 -37.9992 30.078 14.1043 -45.7664 18.448 40.0625 -61.2347 17.9876 48.7616 -61.0605 16.2348 56.7727 -58.8674 -32.2767 62.0154 -49.2051 -13.9368 67.8282 -45.9206 -24.8684 37.0434 -54.8511 -31.525 48.8313 -53.174 26.4258 27.5071 -55.6637 23.2554 67.017 -50.8845 -10.1563 64.4547 -50.0444 -5.75739 54.7064 -58.2557 -5.8419 47.5145 -59.5984 -4.37907 39.5768 -59.8409 -5.9761 14.2111 -47.5917 -0.926239 9.96272 -39.5747 -28.5177 48.5533 -54.7769 -21.6936 37.4949 -56.2842 -25.4638 59.1765 -53.191 -6.8028 30.1029 -57.2111 37.0326 38.1125 -57.7227 23.7499 29.4563 -57.6722 40.6137 50.1599 -57.0286 34.858 61.1842 -54.92 20.4387 65.7863 -53.1414 -9.18353 63.1068 -52.8225 -31.7926 10.1666 -9.9777 -45.2866 14.5017 -10.8326 70.7816 14.2259 -10.5137 79.9368 23.3648 -10.642 84.3683 35.367 -11.0661 85.8037 48.9262 -12.0255 82.7112 61.2146 -12.6921 76.0168 71.4278 -13.3949 -20.2604 77.9924 -11.2248 -49.3845 92.9811 -15.3182 -60.8729 85.6046 -14.2238 -56.4851 22.8762 -11.2211 -64.3531 34.2467 -11.1677 -29.1309 81.0871 -11.445 -37.3177 89.3021 -14.5323 -69.0093 51.6317 -10.622 -67.6547 66.1837 -10.4878 5.71547 83.0356 -4.42811 57.0919 10.0917 -9.5929 6.03725 83.0742 -16.133 5.45968 86.1214 -3.26036 7.12048 86.8962 -15.0149 13.8867 86.9385 -24.0596 25.9809 87.0964 -28.959 -11.6043 122.781 8.68477 -11.2981 122.692 9.69681 -10.977 122.366 10.6888 -10.6656 121.82 11.586 -10.3765 121.078 12.3445 -10.1237 120.175 12.9302 -9.91827 119.156 13.3142 -9.77222 118.067 13.4803 -9.68768 116.96 13.4188 -9.67062 115.887 13.1341 -9.72327 114.899 12.6358 -9.85822 114.021 11.8907 -10.7227 112.914 8.71887 -11.1023 127.944 8.41562 -10.4921 127.767 10.4464 -9.85971 127.122 12.423 -9.24655 126.037 14.2114 -8.68082 124.561 15.7276 -8.18628 122.764 16.8946 -7.78964 120.733 17.6635 -7.49306 118.563 17.9719 -7.3344 116.363 17.8451 -7.30846 114.233 17.2735 -7.41818 112.273 16.2733 -7.69992 110.534 14.786 -8.2775 109.033 12.4727 -9.35776 108.08 8.5424 -9.95609 132.998 7.96262 -9.04932 132.737 10.981 -8.11142 131.781 13.9103 -7.20317 130.173 16.5602 -6.3661 127.988 18.8075 -5.64024 125.328 20.5468 -5.05821 122.318 21.6961 -4.64821 119.099 22.2025 -4.42282 115.824 22.0238 -4.39761 112.65 21.1845 -4.56294 109.746 19.6875 -4.97073 107.211 17.3891 -7.42485 103.383 8.21767 -8.20483 137.879 7.33685 -7.0141 137.537 11.2983 -5.78555 136.284 15.1374 -4.59557 134.176 18.611 -3.49826 131.313 21.5559 -2.54626 127.827 23.8351 -1.78407 123.883 25.3417 -1.24654 119.664 26.006 -0.958862 115.367 25.7954 -0.932175 111.202 24.7018 -1.15683 107.411 22.6977 -1.71957 104.094 19.6809 -4.90993 99.0215 7.7476 -5.87453 142.516 6.54797 -4.41762 142.098 11.3954 -2.91623 140.566 16.0879 -1.46082 137.989 20.3341 -0.119568 134.489 23.9337 1.04373 130.229 26.72 1.97571 125.407 28.5617 2.63261 120.249 29.3728 2.98405 114.998 29.1163 3.01297 109.897 27.8025 2.72233 105.248 25.381 2.00388 101.315 21.4907 -1.90344 95.1527 7.08847 -2.99854 146.84 5.6071 -1.29695 146.353 11.2694 0.45578 144.564 16.7478 2.15439 141.556 21.7035 3.72029 137.47 25.9059 5.07858 132.497 29.1585 6.16626 126.869 31.3079 6.93364 120.848 32.2555 7.3429 114.718 31.9552 7.37701 108.764 30.4219 7.02557 103.335 27.5927 6.15958 98.8146 22.9217 1.31064 91.5316 5.92221 0.38089 150.789 4.52833 2.30194 150.239 10.9231 4.28081 148.22 17.1066 6.19814 144.825 22.7007 7.96496 140.213 27.4444 9.49823 134.6 31.1152 10.7268 128.246 33.5419 11.592 121.45 34.611 12.0547 114.531 34.2722 12.0932 107.81 32.5417 11.6995 101.628 29.4492 10.7461 96.4739 24.1724 4.21408 154.305 3.32648 6.32714 153.7 10.3604 8.50323 151.481 17.1593 10.6111 147.749 23.3102 12.5537 142.677 28.5254 14.2397 136.505 32.5617 15.5905 129.519 35.2301 16.5418 122.048 36.4053 17.0504 114.439 36.0331 17.0919 107.05 34.1306 16.6589 100.258 30.74 15.7233 94.7279 25.791 8.4454 157.338 2.02082 10.7201 156.687 9.59079 13.0608 154.299 16.9057 15.3288 150.283 23.5229 17.4189 144.827 29.1348 19.2332 138.186 33.4774 20.6856 130.67 36.3481 21.7103 122.631 37.6123 22.2575 114.445 37.2119 22.3019 106.495 35.1648 21.8259 99.2209 31.4888 20.825 93.3985 26.5962 13.0133 159.842 0.628418 15.4163 159.154 8.62471 17.8875 156.633 16.3489 20.283 152.392 23.3369 22.4903 146.631 29.2623 24.4054 139.618 33.8481 25.9394 131.682 36.879 27.0211 123.193 38.2151 27.5987 114.549 37.7917 27.6461 106.153 35.6297 27.1561 98.4202 31.8069 26.2026 92.3353 26.7949 17.8512 161.781 -0.829224 20.3468 161.067 7.47549 22.9136 158.449 15.497 25.4011 154.045 22.7534 27.6929 148.063 28.9072 29.6814 140.78 33.6686 31.2747 132.539 36.8168 32.3972 123.724 38.2032 33.0378 114.732 37.7776 33.1394 106.004 35.5511 32.5863 97.9694 31.5919 31.965 91.3737 26.2299 28.0317 162.761 5.43213 30.6652 160.074 13.6627 33.218 155.556 21.1096 35.5698 149.416 27.4236 37.6109 141.943 32.3103 39.2458 133.487 35.5408 40.3779 124.44 36.8931 41.0778 115.182 36.3645 41.3685 106.251 34.3441 40.5714 98.0124 30.0964 39.483 90.8428 24.5869 25.47 163.494 -3.09354 33.2647 163.97 -5.38011 35.8181 163.241 3.11665 38.442 160.564 11.3176 40.9852 156.062 18.737 45.5605 150.164 24.1539 46.9596 143.512 28.5313 48.7731 136.143 30.9839 48.1273 125.112 34.1698 49.5294 116.289 34.2469 49.9179 107.113 32.426 48.6893 98.8206 27.8254 47.2243 91.628 22.178 38.4532 163.455 -6.88224 40.9503 162.742 1.42916 43.5171 160.123 9.45065 47.7967 155.173 17.3906 53.1913 129.392 30.4605 57.4434 120.187 30.353 57.7555 108.881 29.1971 56.501 100.349 24.8901 54.4406 93.4897 18.651 43.5401 162.322 -8.34137 45.9453 161.636 -0.335434 50.4154 158.124 9.95186 48.4521 160.589 -9.73451 50.7305 159.939 -2.15119 54.3182 157.614 6.23138 63.8033 119.565 25.3861 63.9101 110.06 24.7226 62.901 102.219 20.9027 60.7679 96.0876 14.7059 53.1171 158.28 -11.0416 55.2347 157.675 -3.99215 58.19 155.872 2.80748 67.2969 119.573 21.0355 67.7537 111.25 20.0049 67.3733 103.92 17.1459 65.043 98.1407 11.5222 57.4671 155.429 -12.245 59.394 154.879 -5.83163 62.1915 152.982 0.103493 69.6977 119.848 16.5973 70.8076 112.269 15.649 70.4413 106.039 12.8968 68.5447 100.725 8.19913 61.4382 152.077 -13.326 63.1457 151.59 -7.6422 65.78 149.427 -2.04368 72.9933 113.56 10.1899 72.6093 109.123 7.23009 71.4208 102.692 -5.93692 66.1158 146.314 -14.556 67.6306 145.656 -8.87371 68.937 144.641 -4.73136 71.1249 140.238 -3.87204 72.9303 135.432 -3.25369 73.955 129.872 0.956131 73.8222 124.051 6.88754 69.9913 140.169 -15.5436 71.876 138.749 -9.69077 -11.3759 117.634 8.77818 63.3644 132.244 19.7795 58.7861 144.777 19.4836 67.0122 129.764 16.8798 70.6155 138.855 5.83472 63.4756 148.383 9.49515 62.8195 133.184 17.464 65.3848 131.323 15.0306 58.8061 141.77 16.8434 60.1659 137.06 18.4575 67.3103 131.311 12.1873 59.8997 144.627 13.2097 68.6945 133.697 9.63008 62.6779 144.573 10.0134 68.5944 137.783 7.94185 66.1373 141.972 8.0323 63.5846 133.449 17.7798 66.1373 131.523 15.497 59.6002 142.393 17.3936 68.0977 131.472 12.4801 69.5345 133.885 9.64862 63.3399 145.241 10.1906 69.4233 138.273 7.76169 66.8358 142.631 7.99524 70.3049 128.194 12.73 72.5233 132.983 6.70811 70.8876 139.701 3.88477 57.3232 138.168 24.4749 62.3546 131.157 22.7541 67.3926 146.279 4.41341 62.6852 151.575 8.16354 58.5355 152.152 14.7897 56.0087 147.327 21.699 67.4163 128.203 18.5732 61.7689 138.738 16.9517 60.1192 142.066 15.9826 64.1066 135.62 16.4201 65.946 133.39 14.7222 67.2903 132.939 12.8657 68.2793 135.009 11.4955 67.7633 138.355 10.7993 65.6517 141.685 10.9157 62.861 143.967 11.7343 60.6115 144.197 13.6175 60.9733 137.35 18.8824 60.8999 145.33 13.6701 65.4233 132.097 14.9091 64.194 132.052 16.3667 63.0381 133.984 17.1452 60.5626 137.576 18.0038 59.2072 139.485 18.0623 59.179 141.815 16.5439 61.4122 134.887 18.1943 67.2154 132.019 12.4453 66.4087 131.047 13.613 59.0411 143.572 15.1678 60.1096 144.464 13.3409 68.5151 134.306 10.3248 68.0821 132.189 10.829 61.149 144.974 11.4258 62.7831 144.363 10.5976 68.2882 138.059 8.96576 68.9548 135.624 8.61655 64.3898 143.534 8.86493 66.015 141.892 9.0614 67.5801 139.948 7.72906 62.5229 143.343 13.2497 61.0674 143.946 13.8533 64.8184 141.126 13.1519 66.8854 138.187 12.9695 67.3889 133.651 13.1986 66.7994 134.635 14.1328 65.5909 137.242 14.9847 63.4504 140.109 15.2998 61.4471 142.587 14.915 69.5049 129.705 12.5735 72.1177 136.32 4.77299 71.5801 133.393 8.20432 59.2932 134.201 23.8217 59.9546 137.579 21.2023 65.0801 149.359 5.97188 67.3192 144.395 6.27661 56.9459 150.409 18.5398 60.5959 148.729 14.5628 56.1303 142.947 23.7928 65.2135 129.283 20.9902 68.9562 127.783 15.7988 69.2988 142.988 3.69571 60.547 152.61 11.1863 71.7477 130.025 9.56706 72.9533 131.626 4.33482 71.3592 125.34 12.6099 70.8958 140.288 0.80043 60.4142 128.485 25.3476 53.3566 137.368 28.099 60.1785 154.454 5.65604 66.8521 148.152 1.54631 50.4599 149.321 23.457 54.4777 155.19 14.0957 66.8083 125.61 19.6379 60.7657 140.445 16.6648 62.9418 137.1 16.8738 65.1157 134.361 15.6497 66.6044 132.832 13.8036 67.9094 133.728 12.0538 68.246 136.622 11.0736 66.8721 140.078 10.7355 64.2593 143.015 11.2634 61.6205 144.401 12.4393 60.0361 143.345 14.9402 62.2167 135.13 18.5205 60.0235 144.253 15.7061 59.9835 139.927 18.519 64.9258 132.28 16.7923 67.1776 131.236 14.0179 68.9044 132.335 10.9928 69.7696 135.952 8.50682 68.3794 140.573 7.55853 64.9874 144.212 8.9287 61.9957 145.611 11.7513 64.3364 132.866 16.125 59.6128 139.75 17.5893 61.7458 135.583 17.8214 66.3694 131.791 13.6738 59.3318 143.457 15.0788 67.9657 132.894 11.3154 61.3218 144.772 11.7684 68.6738 136.094 9.51442 64.4194 143.374 9.69681 67.3615 140.039 8.78485 61.7844 144.005 13.1407 63.6091 142.365 13.2305 65.9438 139.693 13.0347 67.4912 136.673 12.9257 66.9492 133.714 13.8169 66.3464 135.861 14.5969 64.5685 138.672 15.2167 62.3546 141.447 15.1878 60.8028 143.341 14.6881 70.7571 131.099 10.3129 71.4393 136.084 6.66586 61.5272 134.531 20.6551 65.2209 146.715 7.63861 59.5052 147.331 17.3142 58.8328 141.204 20.8056 65.3699 130.706 18.6303 68.3045 129.387 14.7556 69.1838 141.704 5.63008 61.9527 149.098 11.8158 72.6026 127.566 8.47568 72.3965 136.097 1.70497 56.5247 132.614 27.6949 63.6929 151.685 3.08774 52.022 153.009 18.9305 51.1249 144.226 26.8356 63.9865 126.508 22.5154 69.2202 125.238 16.535 69.0541 144.317 0.692924 57.2187 155.661 9.56113 67.741 135.282 12.8723 67.7907 134.283 12.7419 71.6609 136.111 -15.9358 72.3201 105.969 -15.2641 74.0417 117.157 -16.1597 75.2065 106.525 -16.2769 79.8634 107.308 -17.6552 91.3867 109.457 -21.1013 88.3001 106.164 -20.0804 79.2991 114.295 -17.6596 83.595 107.064 -18.7273 84.1132 113.461 -18.9875 85.3967 106.488 -19.2404 74.3568 135.883 -16.7173 78.9611 134.305 -18.0244 82.9529 133.126 -19.1618 84.9244 134.248 -19.7638 86.99 136.683 -20.4237 90.4947 139.433 -21.5114 93.7133 139.447 -22.4507 94.9967 133.968 -22.6969 95.4994 138.023 -22.9393 92.0955 130.536 -21.7701 88.3638 126.832 -20.5942 85.6599 124.96 -19.7608 81.4537 123.062 -18.4885 74.8654 115.813 -16.3999 75.0456 119.162 -16.437 77.3477 106.901 -16.9108 90.4702 107.067 -20.7351 76.8324 114.944 -16.9597 81.866 106.977 -18.232 81.8267 113.709 -18.3173 87.5994 113.172 -20.0641 72.8517 136.463 -16.4526 76.6211 135.168 -17.3616 81.0749 133.56 -18.6235 84.1259 133.478 -19.5125 85.7941 135.222 -20.0404 95.5972 136.005 -22.9201 93.7963 132.209 -22.3054 90.1255 128.604 -21.1495 87.0197 125.694 -20.1745 83.7714 124.169 -19.1907 77.8207 121.529 -17.3927 90.9181 111.196 -21.0087 72.5032 108.223 -2.09484 75.2258 128.38 -2.75545 73.0089 134.723 -11.6266 74.987 120.808 6.20024 75.9205 117.527 -9.42607 74.9633 116.553 -9.73895 78.1707 127.11 -4.45851 76.4373 109.876 3.38505 75.8359 108.157 -4.45555 81.7666 127.621 -5.91393 76.6804 114.045 7.19746 76.6345 120.205 6.07716 82.3917 119.936 3.28125 80.7256 108.785 -7.12913 83.5075 117.685 2.46864 82.9974 115.277 1.76725 92.4261 111.042 -14.8022 90.3783 110.634 -9.15768 95.4037 129.402 -7.5814 96.0984 136.789 -17.4832 82.3405 119.579 -9.26593 80.8413 115.369 -9.65369 85.2625 124.587 -1.81087 84.8272 129.21 -7.48057 85.7451 117.806 -3.52579 86.8232 121.414 -9.52765 85.9097 118.886 0.325172 87.199 131.776 -9.16064 88.7516 134.416 -11.1099 90.1003 121.341 -5.78863 94.2515 126.991 -9.62626 89.9564 123.624 -10.2795 92.7753 126.838 -11.8772 90.8128 122.536 -2.9371 84.8317 108.856 -9.63812 86.0135 114.746 -2.76731 86.5792 108.162 -11.0609 90.7371 125.097 -2.53673 73.043 106.875 -10.3143 75.0849 116.366 -9.04127 75.9716 116.037 -9.92357 74.6763 117.226 -13.3023 76.6107 127.495 -3.81347 75.8715 107.338 -10.9986 74.2945 131.787 -6.83849 77.6673 130.92 -7.97213 79.9509 127.383 -5.12654 76.4239 117.364 7.49699 79.6098 120.36 4.88643 79.5468 114.305 5.90663 78.3479 108.471 -5.80049 80.1169 108.117 -13.6233 81.3351 130.611 -9.06203 83.483 116.149 2.62879 83.0011 114.026 3.50368 91.761 108.672 -14.126 92.1266 109.889 -18.0081 93.8845 131.645 -7.45462 96.1799 134.037 -11.4887 81.9698 117.706 -6.57603 78.9833 118.659 -9.33636 78.2737 115.773 -9.7916 81.6235 116.026 -5.37269 79.8693 114.493 -14.8934 83.5372 128.01 -6.78511 83.5372 116.896 -3.09725 86.2686 119.313 -6.65833 84.7701 120.477 -9.37344 85.7155 117.814 -1.09836 82.8336 116.065 -0.2435 84.0376 118.31 1.24899 82.4806 122.05 -11.5955 87.1182 124.405 -12.0018 88.0999 133.229 -10.2009 92.2897 123.818 -7.20253 93.4241 126.82 -10.8934 91.5661 125.3 -11.0513 89.9394 122.25 -7.90022 90.4806 121.459 -4.05592 93.4426 125.358 -4.55564 95.0537 127.861 -8.4207 86.6067 133.598 -11.5288 88.5707 135.852 -12.9256 89.8207 126.465 -12.6372 92.9117 128.817 -13.9117 95.0404 130.344 -13.2941 82.9299 109.011 -8.36213 85.6702 113.376 -2.09262 83.9642 114.927 -0.734322 83.2265 115.122 -10.3417 85.751 115.129 -7.31301 84.1511 107.994 -14.6242 84.6693 113.83 -16.0203 88.6597 113.95 -5.64331 88.16 112.314 -5.20661 87.6284 114.616 -8.44739 91.1709 112.257 -10.1186 89.261 107.896 -12.7825 84.4929 131.425 -10.2884 88.4714 122.412 -9.79086 88.4424 120.148 -1.065 85.9995 121.323 0.560211 86.1099 130.434 -8.26055 87.8345 118.872 -4.42515 91.1968 133.419 -9.01013 88.8191 128.275 -4.56676 81.5976 122.873 0.828606 76.9644 122.205 2.94316 81.4612 110.902 -0.296883 85.7392 110.723 -3.63627 75.9894 134.176 -12.4407 80.1251 132.842 -13.5803 83.9442 132.485 -14.6398 85.946 134.022 -15.3694 88.0213 136.327 -16.4059 91.3103 138.582 -16.933 94.3976 138.399 -17.1755 95.3962 132.764 -17.8798 92.8436 130.018 -17.5358 89.2928 126.974 -16.3569 86.4413 124.91 -15.6051 82.4754 123.01 -14.5108 91.896 112.486 -14.9156 82.8751 115.658 -0.544518 86.2805 115.188 -4.50003 76.1644 116.572 -8.83145 75.4185 115.882 -13.8516 76.0488 119.438 -12.6624 75.6543 131.457 -7.41829 79.4986 117.656 6.72963 79.0322 110.008 1.65974 78.0128 107.635 -12.0211 79.5268 130.758 -8.47779 82.1877 117.111 4.66623 91.3177 107.267 -17.6789 94.3523 135.804 -11.3701 79.199 116.397 -7.74822 77.416 115.064 -14.3959 84.1318 118.571 -6.36101 83.3881 117.034 -0.32283 85.0712 123.225 -11.8706 91.807 124.332 -9.03386 92.9703 124.047 -5.59067 87.5542 134.782 -12.3095 91.394 127.808 -13.2948 94.0891 129.464 -13.8324 83.6906 111.07 -2.07482 83.6929 113.909 0.096817 83.6402 115.586 -6.22978 82.2292 108.145 -14.0185 82.2626 114.108 -15.3812 85.9475 107.439 -15.3597 88.2578 113.456 -17.1125 88.2163 114.084 -11.2463 88.9763 106.666 -16.7455 83.1168 130.614 -9.81607 88.5233 125.332 -12.2287 88.5596 122.718 -0.990116 88.1236 120.568 -7.14322 91.5424 136.545 -12.2591 90.1959 130.708 -6.46555 83.1835 123.375 -0.566017 79.5957 122.783 1.99635 74.3672 117.295 7.88031 87.5631 110.072 -6.37584 74.1744 134.769 -11.9588 77.8467 133.564 -12.9456 82.0565 132.388 -14.1586 85.1416 133.114 -14.9897 86.8728 135.108 -15.8513 96.088 134.721 -17.6366 94.3716 131.254 -17.9443 90.9752 128.478 -16.8885 87.8886 125.817 -15.9581 84.6456 124.017 -15.1551 78.798 121.528 -13.6567 91.6357 111.58 -17.9377 84.2971 115.519 -2.50114 83.7426 120.625 1.77541 88.5833 114.451 -6.97195 88.0828 118.976 -2.26166 92.4098 128.085 -4.46593 90.9233 113.198 -10.8133 95.8359 131.912 -12.44 88.8584 109.104 -9.27186 75.6269 121.857 3.65715 78.5266 120.452 -11.3783 85.7325 132.479 -10.7807 87.2109 126.227 -3.03349 82.3865 115.792 -3.39975 85.5323 114.683 -10.7629 88.5351 113.906 -14.361 85.1809 114.135 -13.5766 82.7372 114.618 -13.0324 80.3171 114.815 -12.4815 77.8096 115.265 -12.0804 75.7054 115.895 -11.7089 74.7512 116.96 -11.2522 75.744 118.732 -10.8711 69.843 141.836 -9.30819 67.9679 143.189 -15.0231 72.8213 119.941 10.9157 71.6506 104.986 0.684029 69.456 100.727 -14.47 73.995 114.29 6.9995 73.1142 110.85 3.56299 72.9748 136.288 -10.6843 71.3295 137.732 -15.8765 71.3963 104.177 -15.1099 74.1581 133.103 -5.27631 75.2109 128.825 -1.40012 75.073 122.123 6.21136 74.2901 118.616 8.83824 74.0083 114.133 7.99301 73.4597 110.347 4.91832 72.8198 106.93 -0.967873 82.4554 113.29 2.18171 79.572 111.521 3.2642 80.1607 112.304 4.14649 -10.1429 113.254 10.7089 72.7842 105.382 -7.25814 -5.83078 104.99 14.0223 -2.85619 101.143 15.3198 0.690811 97.9167 16.3207 4.67302 94.8688 16.9057 66.3361 95.2358 0.153168 -11.892 122.645 7.67271 -12.1529 122.274 6.67995 -12.3643 121.685 5.78059 -12.534 120.909 5.0184 -12.626 119.978 4.42898 -12.646 118.938 4.04047 -12.5956 117.84 3.87142 -12.4777 116.734 3.92851 -12.2953 115.674 4.20803 -12.0595 114.707 4.70033 -11.7659 113.862 5.43361 -11.6777 127.672 6.3856 -12.1989 126.934 4.40896 -12.6304 125.765 2.6199 -12.9514 124.219 1.10294 -13.1465 122.369 -0.071487 -13.2072 120.301 -0.848503 -13.1242 118.113 -1.18808 -12.8996 115.91 -1.07389 -12.5437 113.798 -0.511894 -12.0803 111.876 0.468269 -11.5131 110.201 1.90664 -10.7279 108.684 4.35558 -10.8109 132.596 4.94501 -11.5843 131.502 2.01563 -12.2226 129.769 -0.634972 -12.6979 127.479 -2.88298 -12.987 124.738 -4.62311 -13.0768 121.674 -5.77454 -12.9633 118.431 -6.28242 -12.6504 115.16 -6.12376 -12.1492 112.018 -5.30077 -11.4627 109.168 -3.83942 -10.636 106.694 -1.7434 -9.32736 137.352 3.37615 -10.3401 135.919 -0.462959 -11.1772 133.648 -3.93729 -11.8 130.646 -6.88298 -12.1796 127.054 -9.1636 -12.2968 123.039 -10.6717 -12.1477 118.789 -11.3375 -11.7385 114.502 -11.1299 -11.0883 110.379 -10.0578 -10.1881 106.649 -8.12857 -9.11383 103.415 -5.39493 -7.24765 141.871 1.70126 -8.48584 140.119 -2.99197 -9.509 137.344 -7.23812 -10.2704 133.674 -10.8392 -10.7339 129.283 -13.627 -10.8777 124.375 -15.4702 -10.6953 119.179 -16.2843 -10.1948 113.94 -16.03 -9.38 108.916 -14.6924 -8.24042 104.41 -12.2576 -6.81169 100.55 -8.6587 -4.60298 146.087 -0.054435 -6.04802 144.042 -5.53284 -7.24321 140.802 -10.4893 -8.13144 136.519 -14.6932 -8.67267 131.393 -17.9473 -8.84024 125.664 -20.0997 -8.62744 119.599 -21.0494 -8.04318 113.482 -20.7529 -7.08603 107.625 -19.1759 -5.77963 102.353 -16.3577 -4.12698 97.8226 -12.2769 -1.43115 149.939 -1.86574 -3.0623 147.631 -8.04924 -4.41095 143.974 -13.6441 -5.41411 139.139 -18.3892 -6.02504 133.353 -22.0622 -6.21411 126.886 -24.4919 -5.97388 120.04 -25.564 -5.31401 113.136 -25.2289 -4.25377 106.509 -23.4776 -2.81467 100.514 -20.3577 -0.857285 95.3878 -15.9247 2.22112 153.371 -3.70596 0.427597 150.832 -10.5049 -1.05525 146.812 -16.6565 -2.15849 141.496 -21.8739 -2.82948 135.134 -25.9124 -3.03783 128.024 -28.5838 -2.77313 120.497 -29.7627 -2.04877 112.906 -29.3942 -0.897324 105.606 -27.4954 0.658188 98.9955 -24.1115 2.66969 93.7269 -19.7623 6.30045 156.332 -5.54841 4.37052 153.602 -12.8633 2.77497 149.275 -19.4821 1.58868 143.556 -25.0954 0.866531 136.711 -29.4409 0.642624 129.061 -32.3147 0.926575 120.963 -33.5833 1.70657 112.796 -33.1866 2.9455 104.941 -31.144 4.64336 97.9398 -27.491 6.69341 92.8958 -23.465 10.7483 158.78 -7.36639 8.71009 155.896 -15.0906 7.02557 151.328 -22.08 5.77182 145.289 -28.0077 5.00963 138.061 -32.5957 4.77312 129.983 -35.6311 5.07339 121.431 -36.9701 5.89712 112.807 -36.5512 7.20499 104.513 -34.3944 9.05486 97.2925 -30.556 11.2406 92.5807 -26.9734 15.4979 160.678 -9.13321 13.3818 157.684 -17.1547 11.6321 152.94 -24.4125 10.3309 146.669 -30.5671 9.53901 139.163 -35.3323 9.29359 130.775 -38.4834 9.60574 121.895 -39.8743 10.4606 112.939 -39.4398 11.8189 104.326 -37.2 14.0588 96.9514 -33.3467 16.6434 92.4725 -29.9718 23.0545 162.362 -11.6177 20.8829 159.289 -19.8483 19.0871 154.421 -27.2967 17.7525 147.986 -33.6129 16.9392 140.284 -38.5019 16.6871 131.675 -41.736 17.0074 122.563 -43.1632 17.8853 113.373 -42.7169 19.2791 104.535 -40.4185 21.2106 97.0107 -36.2628 23.42 92.7149 -32.4103 30.8573 162.843 -13.8754 28.6938 159.781 -22.0763 26.9055 154.931 -29.4973 27.9242 148.749 -36.2635 26.8335 141.896 -40.4148 27.1308 134.403 -43.1558 24.8332 123.19 -45.306 25.7073 114.033 -44.8611 27.096 105.227 -42.5709 28.977 97.7766 -38.3173 31.01 93.1798 -33.7501 36.0984 162.352 -15.1936 33.9816 159.358 -23.2144 33.3826 154.015 -31.9877 31.2043 127.797 -45.1888 41.2721 161.261 -16.3458 39.5527 157.252 -27.2589 34.1114 118.081 -46.7154 35.274 106.958 -44.7195 36.8836 99.3018 -39.4702 38.9366 94.263 -33.7738 46.3034 159.583 -17.3163 44.8502 156.854 -26.2038 42.5748 117.521 -46.6924 42.9789 108.591 -45.2964 44.501 100.951 -40.6187 47.291 94.8665 -33.4268 51.1197 157.345 -18.0904 49.9772 155.213 -25.3275 48.2059 117.708 -45.7612 48.7168 109.961 -44.0908 50.3568 102.509 -40.027 53.4827 96.7468 -32.9174 55.6498 154.578 -18.6568 54.8409 152.392 -25.0769 52.7864 118.209 -43.2581 53.6228 111.351 -41.2941 55.2413 104.656 -38.0407 58.7364 99.47 -31.8202 59.8286 151.323 -19.0083 59.0656 148.888 -25.0487 58.6371 112.647 -37.2162 60.0213 108.358 -34.3455 66.7364 101.215 -23.2055 64.3461 145.393 -20.1264 63.2939 144.171 -24.2324 64.6093 139.563 -25.8976 66.0209 134.24 -27.224 64.8265 128.137 -31.0498 61.4092 121.344 -36.0211 68.4454 138.292 -21.5291 45.453 130.809 -41.5454 41.6524 143.401 -39.21 50.101 128.433 -40.9145 59.0129 137.957 -33.7931 50.9314 147.376 -33.4765 46.2433 131.854 -39.2708 49.7303 130.061 -38.4737 43.1271 140.511 -36.8678 43.4601 135.718 -38.774 52.9147 130.138 -37.0872 45.9668 143.509 -34.5197 55.443 132.636 -35.7653 50.0284 143.557 -33.3201 56.2208 136.784 -34.4582 54.0432 141.001 -33.4001 46.726 132.091 -39.9847 50.1181 130.245 -39.3182 43.4927 141.099 -37.7857 53.4219 130.291 -37.7879 56.1362 132.807 -36.2509 50.4828 144.208 -33.8546 57.0422 137.29 -34.817 54.643 141.653 -33.7723 55.0842 126.961 -39.0439 60.0643 131.807 -35.2485 60.3282 138.873 -32.42 37.8104 136.599 -42.3736 42.95 129.62 -43.6504 57.0126 145.449 -31.2322 50.941 150.632 -32.0693 43.8723 150.975 -35.442 38.0876 145.889 -39.6926 49.5108 126.802 -42.685 45.605 137.439 -38.4211 44.6923 140.828 -36.8618 47.893 134.316 -39.1277 50.3776 132.134 -38.6198 52.5225 131.75 -37.7278 54.0743 133.869 -37.1666 53.9713 137.248 -36.4482 52.0865 140.596 -35.554 49.2647 142.875 -34.8407 46.3531 143.052 -35.2278 43.9086 135.978 -39.5785 46.5533 144.179 -35.4761 49.8356 130.846 -38.4441 47.9983 130.76 -39.0142 46.6052 132.656 -39.1566 44.0339 136.249 -38.6168 42.8387 138.17 -38.0111 43.6017 140.564 -36.8188 44.6634 133.535 -39.1929 52.6931 130.851 -37.3023 51.3763 129.845 -37.8198 44.2029 142.382 -35.6615 46.0758 143.337 -34.7362 54.9106 133.214 -36.2776 54.299 131.078 -36.3859 47.9753 143.917 -33.7041 49.8059 143.321 -33.8591 55.4037 137.025 -35.1736 56.1837 134.599 -35.1328 52.1021 142.547 -33.2281 53.387 140.878 -34.1972 55.4482 138.973 -33.8331 48.1733 142.19 -35.9091 46.6141 142.785 -35.6607 50.1892 139.952 -36.9649 52.0658 136.997 -37.7961 52.4194 132.447 -38.0845 51.4089 133.398 -38.5931 49.903 135.983 -38.7555 47.893 138.861 -37.994 46.3798 141.377 -36.6995 54.5637 128.486 -38.5583 60.8235 135.305 -33.5811 58.5718 132.382 -36.0552 39.8159 132.627 -42.8845 41.7955 136.119 -41.0087 54.1663 148.483 -31.4153 55.9539 143.477 -32.6654 40.5373 149.092 -37.6693 45.7748 147.539 -36.2109 37.1201 141.421 -41.3319 46.3145 127.804 -43.6823 52.3171 126.477 -40.9857 59.1168 142.133 -31.5495 47.4993 151.562 -33.5084 58.2159 128.907 -37.3334 61.9319 130.28 -33.5996 55.9843 124.214 -39.8068 61.9357 139.512 -29.8517 40.0547 127.159 -44.8752 32.5262 135.693 -43.2641 50.1396 153.648 -28.7343 58.0699 147.457 -28.6001 32.4395 147.874 -38.275 40.7865 154.09 -32.8062 48.5485 123.891 -44.2502 44.8917 139.171 -37.7145 46.6541 135.791 -38.9245 49.1683 133.076 -38.9875 51.4356 131.609 -38.169 53.4767 132.569 -37.389 54.253 135.498 -36.8633 53.2321 138.983 -35.9892 50.709 141.926 -35.1558 47.8345 143.294 -34.7866 45.1675 142.152 -35.9951 45.1713 133.754 -39.9113 44.7331 143.025 -36.6728 43.2421 138.583 -38.8326 48.3979 130.967 -39.812 51.8085 130.009 -38.6079 54.898 131.214 -36.9842 56.9414 134.926 -35.5317 56.2052 139.595 -34.146 52.5633 143.214 -33.6329 48.5055 144.528 -34.4611 48.2504 131.567 -38.9341 43.4311 138.451 -37.8428 45.1446 134.246 -39.058 51.3088 130.573 -37.8872 44.498 142.267 -35.7379 53.9312 131.767 -36.7632 47.939 143.698 -34.0771 55.4586 135.033 -35.7586 51.6817 142.351 -33.9384 54.6942 139.021 -34.6087 47.6009 142.867 -35.4487 49.1112 141.201 -36.4341 51.2183 138.511 -37.4098 52.6196 135.479 -38.0192 51.7129 132.488 -38.381 50.7646 134.609 -38.7822 48.8984 137.414 -38.4633 47.013 140.215 -37.3683 45.949 142.148 -36.1946 56.8747 130.003 -37.3653 59.271 135.122 -34.8148 43.4222 133.063 -41.3875 53.4219 145.768 -32.7803 43.3933 146.037 -37.8806 41.0259 139.775 -40.1938 47.7811 129.312 -41.5937 52.3542 128.12 -39.7631 57.9468 140.752 -33.0391 48.3905 148.009 -34.6435 59.466 126.101 -36.8574 62.769 134.918 -31.1499 35.337 130.917 -44.7544 54.5184 150.949 -28.3414 36.1436 151.734 -35.4628 31.2473 142.63 -41.2578 44.4825 124.75 -45.068 52.223 123.767 -42.08 60.3461 143.735 -29.0309 45.5294 154.723 -30.4826 52.8762 134.088 -38.0496 52.9993 133.095 -37.9288 65.4323 107.528 -26.9171 67.9487 126.833 -28.5074 70.5081 134.319 -20.2732 62.6749 119.616 -35.7438 72.6589 117.278 -23.098 72.2444 116.442 -22.3254 71.3889 125.795 -28.3703 65.5901 109.029 -33.5959 69.3603 107.637 -26.6398 75.0515 126.757 -29.2103 63.5342 113.12 -36.9642 64.2148 119.206 -36.4696 70.5985 118.958 -37.1681 74.9121 108.319 -27.0453 71.9998 116.742 -36.9872 71.9612 114.391 -36.0381 88.8094 110.578 -26.9527 84.1169 110.131 -30.6072 87.2695 128.749 -35.4465 93.0867 136.547 -27.8016 77.576 118.913 -26.6205 76.2215 114.981 -25.3972 75.678 123.817 -34.645 78.3012 128.686 -29.8368 77.0845 117.097 -33.174 81.2906 120.822 -28.8656 75.1464 118.021 -36.546 81.172 131.293 -29.8079 83.4949 133.994 -29.1154 81.9364 120.685 -33.7567 87.4282 126.444 -33.002 84.2007 123.162 -29.9962 87.3956 126.405 -30.3062 80.9881 121.747 -36.5927 79.7217 108.446 -27.144 76.8458 113.737 -33.7746 81.9683 107.792 -26.8548 80.6767 124.289 -36.9998 70.1714 106.645 -20.1493 72.022 116.241 -22.9037 72.8888 115.884 -22.6383 73.3892 117.141 -19.0068 69.7533 125.895 -28.1175 72.9185 107.101 -21.1147 69.1965 130.484 -24.8144 72.6997 129.897 -25.4795 73.1742 126.294 -28.81 63.1531 116.358 -37.3542 67.3688 119.359 -37.0517 66.7935 113.286 -37.5877 72.197 107.977 -26.8719 77.8994 107.939 -21.2215 76.3201 129.88 -26.4826 71.9026 115.225 -37.0598 71.0463 113.066 -37.4483 87.9791 108.369 -27.0824 90.3568 109.787 -24.1197 85.8919 131.003 -34.834 89.9668 133.538 -32.7744 75.3807 117.261 -28.6335 74.2589 118.273 -24.8974 74.5081 115.555 -23.9173 74.7186 115.201 -29.2771 78.273 114.414 -20.2702 76.9377 127.337 -29.5447 74.9877 116.19 -32.3036 79.228 118.61 -30.8741 79.7455 119.59 -27.752 75.7618 117.015 -35.1966 72.8947 115.268 -34.2906 73.0867 117.445 -36.2917 78.8617 122.15 -25.111 82.7305 124.079 -27.0743 82.4725 132.777 -29.4795 84.5114 123.193 -33.8509 87.4141 126.338 -31.4821 85.952 124.849 -30.2847 82.9247 121.687 -31.9314 81.3232 120.724 -35.4257 84.0399 124.603 -36.7655 87.4445 127.25 -34.4856 81.9223 133.222 -27.574 84.3016 135.509 -27.551 85.3181 126.104 -28.0604 88.5803 128.469 -28.7521 90.0231 129.941 -30.4819 77.43 108.57 -27.2025 76.3149 112.625 -34.143 74.121 114.113 -34.4307 78.5236 114.752 -26.0741 79.2235 114.861 -29.7308 81.84 107.809 -22.5419 82.8432 113.477 -21.7471 80.6945 113.198 -32.7484 80.1006 111.667 -32.8137 81.4167 114.445 -29.7768 85.2891 111.653 -30.1957 85.1586 107.567 -26.8363 79.5016 131.024 -27.3879 82.7149 121.901 -29.5647 78.0128 119.311 -36.7914 75.0649 120.445 -36.8974 79.7863 129.926 -29.9221 79.3229 118.187 -33.5803 84.4402 132.877 -32.1553 80.111 127.576 -34.3959 71.2569 121.989 -34.7844 66.2834 120.958 -33.9154 71.8315 110.129 -33.2852 77.2358 110.04 -32.7655 73.4782 133.884 -21.131 77.6228 132.464 -22.2276 81.3655 132.277 -23.4746 83.426 133.82 -24.0033 85.7036 136.141 -24.3458 88.7308 138.375 -25.7679 91.4667 138.163 -27.2159 92.7583 132.552 -26.9171 90.4562 129.827 -25.7152 86.8669 126.78 -24.6669 84.0844 124.721 -23.6771 80.1888 122.834 -22.3988 88.4224 111.98 -26.642 73.0971 114.872 -34.0422 78.0365 114.257 -32.4652 72.6559 116.366 -23.6348 74.0565 115.738 -18.8756 74.3546 119.371 -20.3332 70.6786 130.252 -24.9797 66.3234 116.559 -38.424 68.7427 109.182 -33.5877 75.2695 107.415 -21.4172 74.5162 129.923 -26.0103 69.7229 116.044 -38.0771 89.5331 107.124 -23.792 88.3401 135.32 -31.9677 74.1388 115.95 -26.0645 75.9612 114.948 -19.4391 77.1416 118.114 -30.0044 73.3922 116.231 -34.5642 80.9955 123.121 -26.1556 85.0815 123.793 -32.0715 84.2148 123.344 -35.5836 83.1264 134.427 -27.4776 86.9811 127.454 -28.4118 89.522 129.098 -29.4795 74.6652 110.346 -32.9938 73.4634 113.087 -34.946 76.8228 114.888 -29.5521 79.8915 107.956 -22.0252 80.6122 114.073 -21.0487 83.7573 107.262 -22.8645 86.4999 113.195 -22.8837 83.3651 113.698 -27.6845 87.0649 106.513 -23.293 78.1729 130.027 -26.8719 84.0191 124.97 -27.6585 78.0395 121.874 -37.0279 80.9955 119.953 -31.531 86.4391 136.135 -29.7404 82.2626 130.071 -33.6418 73.3188 122.63 -34.5204 68.9993 121.598 -34.5597 61.1201 116.288 -36.4563 80.2549 109.485 -31.4116 71.6743 134.356 -20.764 75.3384 133.298 -21.6337 79.5527 132.054 -22.774 82.5547 132.906 -23.8513 84.4528 134.914 -24.1434 93.1861 134.488 -27.5777 91.9487 131.059 -26.2461 88.5515 128.283 -25.1888 85.4827 125.624 -24.1983 82.3397 123.833 -23.052 76.6708 121.456 -21.1288 89.869 111.457 -23.9848 75.2791 114.471 -33.131 72.5418 119.712 -36.6595 81.3907 113.876 -31.5584 78.3679 118.196 -35.5399 83.0864 127.336 -36.4037 85.4308 112.541 -29.518 90.2145 131.46 -31.6971 82.9166 108.627 -29.6277 64.7835 120.521 -33.7531 75.2428 120.861 -23.2937 80.7976 132.083 -27.6852 77.9572 125.484 -34.7339 74.1796 115.013 -31.4161 80.9021 114.638 -26.7177 85.1483 113.312 -25.263 82.0676 114.019 -24.0982 79.6802 114.358 -23.3746 77.3173 114.669 -22.6413 75.2124 115.161 -21.7041 73.588 115.837 -21.0027 72.7523 116.861 -20.956 73.4137 118.581 -21.8902 66.4762 141.604 -20.8641 58.3546 118.743 -38.2809 63.6573 103.164 -29.6181 61.2017 113.464 -35.2759 62.603 110.079 -31.8602 69.9438 135.891 -21.1621 68.2393 131.67 -26.2038 67.4378 127.136 -29.5202 62.8091 120.687 -35.9907 60.5767 117.653 -37.3935 60.7761 113.247 -36.1998 62.0921 109.556 -33.1525 65.2417 105.935 -28.1842 71.3073 112.394 -36.0092 68.3164 110.617 -35.2945 68.3445 111.331 -36.3747 -11.3552 113.133 6.63324 68.4684 104.805 -22.5375 -9.45044 104.401 1.95409 -7.56053 100.492 -0.627556 -5.0686 97.2087 -3.46945 -1.8849 93.9531 -6.38548 56.808 93.3547 -23.3279 61.9223 96.6682 -23.3508 59.4081 140.566 19.6623 60.4639 137.464 20.042 61.8763 134.831 19.5882 63.4845 132.857 18.7674 59.1931 143.585 18.4382 65.1653 131.503 17.6961 59.7648 145.792 16.5098 66.574 130.654 16.1776 60.7479 147.03 14.1165 67.7426 130.322 14.3856 61.9742 147.354 11.7839 68.7983 130.581 12.5261 63.4081 146.812 9.84286 69.823 131.736 10.6896 65.1046 145.464 8.28365 70.6207 133.636 8.99838 67.079 143.51 7.13741 70.6489 135.976 7.7083 68.7916 141.109 6.6273 70.0306 138.529 6.87865 46.0899 131.451 -40.7647 44.2964 133.408 -40.6498 42.8521 136.048 -40.2939 42.1344 139.179 -39.5132 48.0895 130.139 -40.7032 42.5725 142.25 -38.4974 50.1107 129.339 -40.116 44.0636 144.531 -37.2763 52.0814 129.065 -39.1855 46.164 145.859 -35.8431 53.992 129.384 -38.172 48.4484 146.268 -34.5523 55.8478 130.62 -37.1918 50.7075 145.792 -33.6656 57.2832 132.639 -36.2405 52.9926 144.492 -33.2066 58.0113 135.002 -35.2811 55.2984 142.565 -33.2185 57.9772 137.569 -34.3714 57.0771 140.172 -33.5929 1.38182 68.9774 -45.9569 1.47894 65.0285 -50.2728 1.09637 63.909 -52.87 4.59888 9.97681 -40.0908 4.56625 11.4122 -44.5415 4.27933 14.0176 -48.351 3.6239 17.5846 -51.2515 2.5518 21.6054 -53.3934 2.81797 25.9316 -56.0077 3.01964 28.3271 -57.5284 3.3214 31.8267 -58.9081 3.45486 35.6754 -59.9047 3.14198 39.6169 -60.4303 2.63558 43.6332 -60.5215 2.15143 47.625 -60.2798 1.8074 51.4352 -59.6459 1.64281 54.9177 -58.6553 1.54494 58.1214 -57.1999 1.24614 61.2169 -55.2299 2.20258 72.8765 -41.2252 4.0999 75.8378 -37.4454 6.18702 78.5203 -33.435 56.4936 87.4619 -10.08 57.7629 85.6098 -10.3506 59.9983 84.0135 -10.7406 63.4852 82.0057 -11.5406 67.5801 79.1089 -12.265 -10.1652 108.262 6.21582 -11.0734 112.965 7.57632 -0.481384 91.8178 -0.502998 -8.62003 103.705 4.73889 -6.45135 99.499 2.95057 -3.73181 95.6969 0.985786 -60.1092 28.2359 7.92776 -8.84988 108.395 10.4182 -10.438 113.006 9.67531 2.73864 92.5778 10.975 -6.7205 103.892 10.9765 -4.01207 99.6658 11.3213 -0.806137 95.8341 11.3643 64.3527 94.8043 -12.5052 60.0369 91.4033 -11.0824 -11.539 10.151 19.9241 -5.49863 10.1436 21.8177 -15.9268 10.1577 16.38 -19.33 10.1651 11.6357 -22.5381 10.1681 4.40154 32.719 10.1303 18.5309 40.266 10.1244 13.6679 14.2263 10.1377 23.0462 22.7994 10.1333 21.7028 2.70157 10.137 23.1159 44.4157 10.1281 7.56966 6.82094 10.137 23.6438 46.5807 10.1555 0.804138 -22.7316 10.1651 -8.79883 46.5392 10.1481 -8.35619 -6.5737 10.1422 -30.0845 -12.5993 10.151 -28.2717 -18.4966 10.1644 -25.6115 -21.6988 10.1659 -20.5282 -21.6462 10.1607 -14.2928 40.6619 10.1362 -21.951 32.9614 10.1496 -27.1618 22.9625 10.1599 -31.832 13.8408 10.1637 -33.647 2.11658 10.1488 -32.443 44.7679 10.1347 -15.5147 6.04318 10.1488 -32.526 12.5907 10.1733 -3.80531 59.1887 91.8044 8.95242 -37.1383 88.9529 -2.97714 -31.8022 10.0858 -1.97102 -25.1531 10.1622 -2.2068 -48.967 94.3801 -3.43312 -42.7435 92.7505 -3.24479 -45.2458 14.541 -1.9814 -38.8006 11.688 -1.94433 -51.5643 18.2037 -2.1067 -56.8395 22.9229 -2.04294 -61.3273 28.167 -2.00068 -64.683 34.1592 -1.92802 -67.7244 42.676 -1.88947 -69.2985 52.0358 -1.98363 -69.0782 59.0674 -1.98585 -68.0128 66.587 -1.96361 -66.3149 75.4782 -2.11857 -61.6254 86.6775 -2.9586 -55.4464 92.4777 -3.38715 -32.8632 83.5116 -1.95249 -29.1664 80.3716 -1.67964 -25.0219 78.6923 -1.82199 -19.731 77.9019 -1.94433 -13.8211 78.3245 -1.89985 0.599609 81.0967 -1.11393 5.68803 83.0274 -0.72765 6.50954 84.4391 -0.967133 5.72511 86.2104 -0.331726 3.73808 88.5303 1.10886 0.442429 91.5093 2.82008 -2.82133 95.1602 4.04714 -5.66766 99.1208 5.2742 -8.03503 103.465 6.34038 -9.79816 108.128 7.22415 -10.9333 112.931 8.02786 -26.7479 60.7542 43.6698 -20.1774 63.8423 42.5992 -8.42801 27.4619 48.2347 14.9477 25.7121 48.3904 3.09452 25.896 48.4757 42.6645 36.5214 48.0598 47.7344 49.638 47.1827 40.5551 62.2549 45.2372 -20.4769 63.1994 -50.3046 -27.628 60.1306 -51.1217 -8.33606 28.1588 -55.7549 41.6947 37.0493 -55.6696 46.1069 49.7648 -54.9594 39.661 61.5616 -52.9449 -28.2701 61.5994 42.6785 -21.096 64.5792 41.7131 -10.6093 65.5757 41.2676 1.58052 66.8139 41.2357 -20.6037 30.6107 47.064 -27.9498 36.4747 46.6355 -32.0076 43.3195 45.7562 -33.3289 50.1288 44.8568 -9.84192 26.1273 47.153 -32.1367 56.4888 43.8329 40.1118 30.266 46.5139 29.9349 25.9004 46.5236 16.4046 23.9305 47.0581 3.12344 24.0639 47.2805 46.8217 35.817 46.5762 50.7757 42.2756 46.3478 52.0569 49.3051 45.7651 50.1277 56.399 44.7582 45.0638 62.5551 43.5645 13.7088 68.7742 41.1082 26.4851 69.2584 41.2994 37.1171 66.9377 42.3456 1.53827 66.2289 -48.7276 -11.1349 65.489 -48.6957 -21.7418 64.0098 -49.2903 -29.2399 60.7943 -50.2557 -33.7448 49.2984 -52.3954 -32.2894 43.1438 -53.1362 -27.8334 36.8602 -53.862 -20.3917 31.2343 -54.2831 -10.0503 26.5855 -54.5085 -32.8298 55.3737 -51.4331 2.729 24.1781 -54.8289 15.8893 23.9164 -54.731 29.5034 26.0458 -54.0829 39.6795 30.5618 -53.8806 46.253 36.21 -53.7901 50.0128 42.5536 -53.5439 51.139 49.2547 -52.9597 49.321 55.8341 -52.0848 44.6241 61.6202 -51.0127 37.1431 65.7944 -49.8316 26.732 68.0261 -48.7847 13.6339 67.8667 -48.6371 - - - - - - - - - - -0.192109 -0.934569 0.299458 -0.06315 -0.993623 0.093407 -0.038767 -0.993005 0.111528 -0.11695 -0.921313 0.370816 -0.085264 -0.993927 0.06957 -0.25821 -0.942076 0.214058 -0.305238 -0.944237 0.123473 -0.103012 -0.993873 0.04007 -0.109849 -0.993698 0.02232 -0.319871 -0.945464 0.061492 0.322015 -0.653105 0.68539 0.238016 -0.809438 0.536805 0.39559 -0.829362 0.394547 0.547107 -0.665777 0.50736 0.149283 -0.925897 0.34703 0.227375 -0.943129 0.242504 -0.182106 -0.7902 0.585167 -0.310544 -0.820667 0.479654 -0.418246 -0.841388 0.342252 -0.407245 -0.671943 0.618582 -0.544891 -0.711903 0.443045 -0.234371 -0.618101 0.750347 -0.474249 -0.857348 0.200104 -0.472515 -0.875412 0.101901 -0.601129 -0.750567 0.274396 -0.593419 -0.791427 0.146617 0.282256 -0.953514 0.105559 0.497204 -0.845385 0.195227 0.680184 -0.678639 0.277127 0.475425 -0.378716 0.794069 0.394699 -0.508097 0.765539 0.651796 -0.507567 0.563506 0.728714 -0.35445 0.585953 -0.280085 -0.456993 0.844222 -0.472084 -0.52749 0.706322 -0.629949 -0.5896 0.505505 -0.525528 -0.402813 0.749375 -0.688269 -0.483465 0.540877 -0.345696 -0.333643 0.877027 0.797494 -0.502759 0.333521 0.868857 -0.332163 0.36709 0.779236 -0.208323 0.591094 0.556733 -0.232343 0.797537 0.611419 -0.086952 0.786515 0.805975 -0.07802 0.586786 0.901017 -0.198547 0.385677 0.912954 -0.073233 0.401437 0.587309 0.31693 0.74473 0.626298 0.112282 0.771455 0.807598 0.10215 0.580819 0.767563 0.296279 0.568389 0.905959 0.097128 0.412074 0.868972 0.273148 0.412646 0.369046 0.664292 0.650016 0.498279 0.502362 0.706648 0.692864 0.459155 0.555982 0.584348 0.597963 0.548615 0.813067 0.415121 0.408163 0.751114 0.515121 0.41289 0.19627 0.766932 0.610977 0.270011 0.7156 0.644213 0.477417 0.672112 0.565984 0.38089 0.730939 0.56626 0.665617 0.613839 0.424448 0.5601 0.712938 0.42191 -0.142237 0.892596 0.427833 -0.115435 0.801937 0.586149 -0.145778 0.823148 0.548795 -0.183731 0.901347 0.392196 -0.170598 0.892172 0.418242 -0.198923 0.94046 0.275618 -0.083913 0.784617 0.614276 -0.104776 0.836925 0.537195 -0.07128 0.762805 0.642687 -0.083732 0.95816 0.273711 -0.152017 0.963903 0.218593 -0.043758 0.995476 0.084341 0.11433 0.983142 0.142691 -0.188565 0.971095 0.146345 -0.153667 0.986837 0.050398 -0.277878 0.955105 0.102752 -0.278528 0.959779 0.035299 -0.266228 0.943946 0.195163 -0.494465 0.642119 0.585822 -0.123678 0.744163 0.656449 -0.094312 0.919596 0.381378 -0.521981 0.776809 0.352284 0.287464 0.72515 0.625717 0.35104 0.866307 0.355363 -0.085399 0.659129 0.747166 0.224013 0.689809 0.688464 -0.41145 0.564912 0.715251 -0.896437 0.304297 0.322186 -0.755967 0.475931 0.449448 -0.804069 0.52634 0.276477 -0.929837 0.307416 0.202235 -0.651421 0.428251 0.626301 -0.812838 0.261118 0.520685 -0.700828 0.14352 0.698743 -0.528973 0.340042 0.777534 -0.323564 0.505566 0.799819 -0.384671 0.217738 0.897005 -0.26768 0.410295 0.871783 -0.51729 -0.021456 0.855541 -0.703157 -0.1848 0.686599 -0.802326 -0.033833 0.595927 -0.877917 -0.14451 0.456484 -0.806047 -0.267053 0.528176 -0.89323 0.116397 0.434273 -0.92976 -0.00252 0.368157 -0.693473 -0.636086 0.338364 -0.705373 -0.68381 0.186692 -0.75587 -0.532488 0.380943 -0.796546 -0.566484 0.211211 -0.077417 -0.240522 0.967551 -0.089798 -0.134723 0.986806 -0.168487 -0.121841 0.978145 -0.138523 -0.221426 0.965289 -0.113525 -0.038943 0.992772 -0.195995 -0.017488 0.980449 -0.602195 -0.290799 0.743503 -0.742439 -0.374894 0.555193 -0.432918 -0.200289 0.878901 -0.818103 -0.413906 0.399236 -0.879805 -0.419705 0.22314 -0.8832 -0.285146 0.372357 -0.940384 -0.263381 0.215195 -0.205308 0.092751 0.974293 -0.12459 0.080228 0.988959 -0.122228 0.178941 0.976238 -0.196017 0.189929 0.962031 -0.04789 0.778827 0.625407 -0.065661 0.712179 0.698921 -0.086279 0.666075 0.740878 -0.054107 0.736647 0.674109 0.32735 0.918436 0.222077 0.038245 0.947019 0.318892 -0.067436 0.912058 0.404479 0.299059 0.868082 0.396229 0.020777 0.864061 0.502958 0.601008 0.74983 0.276665 0.10013 0.787789 0.607752 0.137884 0.80072 0.582954 0.293157 0.782715 0.549014 0.251535 0.793724 0.553834 0.033793 0.760625 0.648311 0.012829 0.792843 0.609291 -0.001462 0.805911 0.592035 0.470195 0.782277 0.408607 0.406592 0.824118 0.394351 -0.228092 0.919665 0.319673 -0.149194 0.877198 0.45636 0.221981 0.775644 0.590848 0.477153 0.718896 0.505483 0.642223 0.702693 0.306223 -0.941954 -0.151996 0.299365 -0.977272 -0.097629 0.18817 -0.969667 0.027366 0.242894 -0.984274 0.065087 0.16422 -0.081923 0.660823 0.746057 -0.143863 0.635643 0.75846 -0.950758 0.179022 0.253002 -0.969441 0.180582 0.166057 0.433741 0.791171 0.431182 0.286611 0.730746 0.619568 0.635928 0.49935 0.588427 0.410194 0.41588 0.811655 -0.030936 0.832088 0.553781 -0.063268 0.738092 0.671727 -0.236437 0.785277 0.572222 -0.098454 0.365739 0.925495 -0.356861 0.365039 0.859882 0.116456 0.704283 0.700303 0.160354 0.369389 0.915335 -0.380395 0.81813 0.431235 -0.491132 0.823545 0.283836 -0.59916 0.341103 0.724332 -0.798743 0.301719 0.520552 0.047573 -0.992573 0.111966 0.069354 -0.994739 0.075398 0.015592 -0.990695 0.135202 0.028503 -0.991144 0.129693 0.0864 -0.911356 0.402449 0.046371 -0.905885 0.420977 -0.018844 -0.991895 0.125654 -0.057065 -0.909815 0.411073 0.087743 -0.99576 0.027619 0.126144 -0.779499 0.613571 0.067151 -0.760559 0.645787 0.153713 -0.607983 0.778928 0.075394 -0.57677 0.81342 -0.085238 -0.760064 0.644234 -0.102578 -0.566247 0.817827 0.045094 -0.227711 0.972684 0.047131 -0.133922 0.98987 0.005657 -0.158915 0.987276 0.006376 -0.238835 0.971039 0.058631 -0.040878 0.997442 0.002975 -0.056704 0.998387 0.127635 -0.116289 0.98498 0.152279 -0.014755 0.988227 0.100619 -0.20516 0.973543 0.059288 0.068169 0.995911 -0.006745 0.055506 0.998436 0.05032 0.180626 0.982264 -0.021925 0.163036 0.986376 0.163736 0.099069 0.981517 0.156175 0.220652 0.962768 0.020684 0.317842 0.947918 -0.050294 0.316731 0.947181 -0.025411 0.533931 0.845146 -0.086911 0.5228 0.848014 0.127716 0.356862 0.925385 0.071441 0.516034 0.853584 -0.061054 0.766638 0.63917 0.078289 0.741306 0.666586 0.208508 0.671416 0.711144 0.313289 0.499706 0.807554 0.378689 0.310587 0.871855 0.400342 0.118619 0.908656 0.381543 -0.070384 0.921668 0.331083 -0.22771 0.915714 0.260306 -0.364971 0.893889 0.178111 -0.473128 0.862802 0.071351 -0.485088 0.87155 -0.127917 -0.411323 0.902469 -0.217134 -0.272275 0.9374 -0.28612 -0.114565 0.95132 -0.297833 0.014133 0.954513 -0.259212 0.153056 0.953616 -0.214461 0.319798 0.922895 -0.151901 0.528641 0.835144 -0.103669 0.295387 0.949736 -0.165776 0.313209 0.935104 -0.083675 0.492895 0.866056 -0.119834 0.470121 0.874429 -0.087588 0.774585 0.626376 -0.256922 -0.123444 0.958516 -0.282852 0.013185 0.959073 -0.378724 -0.276752 0.883163 -0.438423 -0.070607 0.895991 -0.437651 -0.063548 0.896897 -0.390678 -0.27619 0.878117 -0.251518 -0.431278 0.866451 -0.276371 -0.456203 0.845871 -0.19905 -0.303218 0.9319 -0.274611 0.135247 0.951996 -0.249887 0.293965 0.922573 -0.442099 0.099565 0.891423 -0.416837 0.295755 0.859521 -0.412837 0.32408 0.851198 -0.438351 0.113033 0.891668 0.156401 -0.497394 0.85331 0.061408 -0.535686 0.842181 0.119454 -0.452018 0.883974 0.032667 -0.468626 0.882793 0.050048 -0.559259 0.827481 0.150699 -0.524664 0.837865 0.208739 -0.361482 0.908713 0.238743 -0.413555 0.878621 0.232419 -0.391651 0.890276 -0.125806 -0.451337 0.883441 -0.128663 -0.465603 0.875591 -0.150994 -0.530967 0.833832 0.284031 -0.235212 0.929517 0.269401 -0.199777 0.942079 0.293517 -0.238502 0.925724 0.286186 -0.032306 0.957629 0.310905 -0.056264 0.948774 0.312743 -0.062252 0.947795 0.322676 0.120164 0.938851 0.286685 0.125421 0.94978 0.312932 0.123775 0.941676 0.279716 0.294166 0.913907 0.303905 0.313656 0.89959 0.309104 0.311381 0.898608 0.037576 0.808415 0.587412 0.169817 0.698638 0.69503 -0.000992 0.780213 0.625514 0.138259 0.681294 0.718834 0.161529 0.715447 0.679738 0.018778 0.826522 0.562592 -0.09996 0.801388 0.589733 -0.098648 0.85295 0.512587 -0.076807 0.814801 0.574631 0.262922 0.511395 0.818137 0.242579 0.49202 0.836105 0.262895 0.521513 0.811733 -0.185749 0.495789 0.848346 -0.322481 0.52883 0.785076 -0.160242 0.722224 0.672841 -0.146317 0.772841 0.617501 -0.312096 0.577251 0.754571 -0.076559 0.797941 0.597853 -0.071594 0.840171 0.537576 -0.107376 0.806238 0.581766 -0.112987 0.848782 0.51653 -0.287568 -0.01818 0.957588 -0.246849 -0.15606 0.956405 -0.173556 -0.290795 0.940913 -0.283237 0.22681 0.931844 -0.297529 0.100463 0.949412 0.014537 -0.330354 0.943745 0.072188 -0.329168 0.941508 0.150177 -0.268878 0.951394 -0.091484 -0.341365 0.935468 0.211928 -0.141481 0.96699 0.233591 -0.009434 0.972289 0.24083 0.120366 0.963075 0.233787 0.260424 0.936762 0.102888 0.613185 0.78321 -0.030399 0.694019 0.719314 -0.098708 0.675427 0.730791 0.204918 0.428836 0.879834 -0.132475 0.557408 0.819602 -0.232943 0.388015 0.89173 -0.075386 0.634728 0.769049 -0.09685 0.652599 0.751489 -0.092397 0.509504 0.855493 -0.081276 0.316551 0.945087 -0.068265 0.172012 0.982727 -0.054553 0.065325 0.996372 -0.043341 -0.055449 0.99752 -0.033383 -0.160096 0.986537 -0.028874 -0.24536 0.969002 -0.033304 -0.336054 0.941254 -0.042357 -0.467717 0.882863 -0.046567 -0.556118 0.829798 -0.037674 -0.519487 0.853647 -0.022566 -0.457423 0.888963 -0.012961 -0.556886 0.830488 -0.007732 -0.753873 0.656974 -0.003792 -0.90729 0.420489 -0.001149 -0.991208 0.132304 0.512335 -0.857386 0.049017 0.70555 -0.704425 0.077354 0.297092 -0.954566 0.023258 0.84286 -0.528889 0.09931 0.930258 -0.348816 0.113782 0.968103 -0.21837 0.122848 0.986591 -0.093131 0.134031 0.985676 0.081564 0.147617 0.95281 0.259757 0.157095 0.894834 0.417704 0.157465 0.844113 0.514896 0.149516 0.774064 0.618654 0.134508 0.673761 0.729252 0.119321 0.59429 0.795832 0.116061 0.5205 0.84585 0.116695 0.525074 0.841884 0.124616 0.765546 0.621669 0.16573 0.097097 -0.995263 0.004896 -0.565407 0.809464 0.158374 -0.611313 0.789337 0.056957 -0.920895 0.236324 0.310006 -0.979363 0.144989 0.140806 -0.738247 -0.362498 0.568846 -0.830423 -0.418752 0.367485 -0.844491 -0.498578 0.195588 -0.637358 -0.672695 0.37584 -0.668066 -0.709833 0.223216 -0.553902 -0.635855 0.537476 -0.346188 -0.291036 0.891881 -0.564224 -0.330618 0.756534 -0.436173 -0.617389 0.654663 -0.266348 -0.628612 0.730688 -0.097978 -0.251576 0.962865 -0.086895 -0.643915 0.760146 0.176816 -0.222898 0.958672 0.120695 -0.699248 0.704617 0.465192 -0.190422 0.864486 0.373032 -0.681742 0.629345 0.749171 -0.141411 0.647105 0.57208 -0.682024 0.455597 0.984143 0.023025 0.175875 0.738366 -0.656556 0.154109 -0.095635 0.76965 0.631263 -0.315057 -0.948903 0.017974 -0.110306 -0.993886 0.004918 -0.457702 -0.888528 0.032039 -0.589111 -0.807168 0.037792 0.510058 -0.858624 -0.051043 0.70623 -0.703125 -0.082786 0.294439 -0.955391 -0.023102 0.843862 -0.525198 -0.109834 0.928966 -0.346434 -0.130403 0.964683 -0.219414 -0.145751 0.981881 -0.104853 -0.157847 0.98501 0.058597 -0.162241 0.95819 0.238399 -0.158234 0.897823 0.414043 -0.149942 0.829346 0.538002 -0.150797 0.747675 0.644543 -0.159833 0.659153 0.734437 -0.161615 0.265044 0.963485 0.038059 0.039034 0.999086 0.017437 0.018622 0.997848 -0.062875 0.244836 0.962544 -0.116463 -0.130658 0.991351 0.012349 -0.138096 0.990164 -0.022449 -0.273293 0.96189 0.008822 -0.274255 0.961657 0.000421 -0.053579 0.998129 0.029453 -0.515915 0.855204 0.049583 0.344116 0.89883 -0.271457 -0.055876 0.956544 -0.286182 0.365283 0.930753 0.01632 -0.828131 0.557888 0.054409 -0.952772 0.299578 0.049783 -0.711727 -0.701459 0.037422 -0.905755 -0.418034 -0.069676 -0.8121 -0.578723 -0.074656 -0.818385 -0.573492 0.036778 -0.910268 -0.412077 0.040054 0.709552 0.701423 0.067393 0.515618 0.854187 0.067105 0.52626 0.835416 -0.158524 0.711562 0.67733 -0.186822 0.587221 0.793907 -0.157743 0.504751 0.849895 -0.151344 0.655685 0.754174 0.036026 0.627882 0.742251 -0.234154 -0.995755 -0.076042 0.051857 -0.966252 -0.253074 0.048064 -0.995208 0.084624 0.048994 -0.98245 0.180559 0.046801 0.500696 0.849415 -0.166726 0.699452 0.674292 -0.236847 -0.644888 0.764208 0.010314 -0.658085 0.75262 0.022063 -0.996997 0.052783 0.056672 -0.999004 0.031144 0.031952 0.095211 -0.995451 -0.003478 -0.828476 -0.551185 0.099113 -0.83354 -0.552229 0.015914 -0.680841 -0.722996 0.117184 -0.70438 -0.709823 0.000289 0.942473 0.130036 -0.307954 0.760792 -0.603232 -0.239387 -0.191598 -0.926128 -0.324926 -0.11404 -0.910397 -0.397707 -0.034523 -0.992382 -0.118262 -0.056307 -0.993628 -0.097639 -0.08229 -0.99447 -0.065257 -0.263919 -0.93806 -0.224478 -0.301453 -0.945273 -0.124839 -0.10268 -0.994176 -0.032728 -0.109842 -0.993816 -0.016268 -0.306215 -0.95011 -0.059356 0.319117 -0.647606 -0.691933 0.534285 -0.666968 -0.519319 0.385251 -0.83007 -0.403195 0.239592 -0.805165 -0.542499 0.228594 -0.939199 -0.256224 0.158278 -0.918607 -0.362089 -0.178484 -0.75672 -0.628902 -0.309497 -0.797477 -0.51792 -0.420841 -0.831771 -0.362009 -0.538657 -0.700909 -0.467519 -0.394197 -0.64598 -0.653696 -0.222745 -0.580396 -0.783278 -0.463953 -0.858375 -0.218951 -0.461429 -0.880375 -0.109649 -0.599801 -0.782405 -0.167575 -0.59309 -0.744341 -0.306921 0.280118 -0.952342 -0.120743 0.489162 -0.845976 -0.212238 0.674722 -0.67782 -0.292079 0.467443 -0.364911 -0.805194 0.712309 -0.345361 -0.611018 0.641575 -0.494023 -0.586791 0.39121 -0.489528 -0.779305 -0.257887 -0.431057 -0.864687 -0.450347 -0.520374 -0.725533 -0.610796 -0.588414 -0.529809 -0.665056 -0.488467 -0.56489 -0.505193 -0.408993 -0.759938 -0.312897 -0.314982 -0.896037 0.796286 -0.495922 -0.346396 0.865739 -0.328626 -0.377493 0.760432 -0.204661 -0.616326 0.545204 -0.224716 -0.807623 0.593644 -0.079984 -0.800743 0.783915 -0.086134 -0.614865 0.896384 -0.199742 -0.395726 0.906271 -0.095045 -0.411874 0.551478 0.253954 -0.794594 0.749758 0.226635 -0.62169 0.783116 0.056593 -0.619295 0.5969 0.085909 -0.797703 0.90526 0.04554 -0.42241 0.880719 0.218398 -0.420282 0.336343 0.599609 -0.726183 0.572035 0.582293 -0.577677 0.679985 0.408785 -0.6087 0.461982 0.425407 -0.778204 0.822759 0.398489 -0.405308 0.73865 0.550111 -0.389581 0.158279 0.713924 -0.6821 0.37644 0.723509 -0.578643 0.467127 0.676077 -0.569835 0.228363 0.685665 -0.691168 0.648361 0.657528 -0.383777 0.564637 0.73282 -0.379684 -0.132948 0.895471 -0.424801 -0.16783 0.911023 -0.376656 -0.12755 0.841928 -0.524298 -0.095044 0.810733 -0.577649 -0.191234 0.937857 -0.289574 -0.161097 0.88789 -0.430929 -0.099619 0.831047 -0.547207 -0.068866 0.782563 -0.618751 -0.042804 0.75673 -0.652324 -0.106611 0.95728 -0.268792 0.061832 0.967519 -0.24512 -0.090989 0.984179 -0.152028 -0.171442 0.958937 -0.225938 -0.170146 0.982001 -0.081999 -0.195635 0.967138 -0.16239 -0.282706 0.95847 -0.037576 -0.282545 0.952356 -0.114834 -0.262642 0.936921 -0.230646 -0.457702 0.605028 -0.651498 -0.494691 0.715297 -0.493589 -0.076223 0.822259 -0.563986 -0.087936 0.702019 -0.706709 0.319664 0.765998 -0.557729 0.294833 0.694844 -0.655946 0.224172 0.682804 -0.695361 -0.063717 0.649517 -0.757673 -0.387084 0.558006 -0.734027 -0.896043 0.261582 -0.358722 -0.944002 0.274393 -0.183216 -0.810194 0.488173 -0.324457 -0.742944 0.435424 -0.508371 -0.645648 0.412332 -0.642745 -0.811086 0.243382 -0.531887 -0.699157 0.136155 -0.701885 -0.530892 0.331786 -0.77979 -0.30426 0.511436 -0.803654 -0.248492 0.408629 -0.878222 -0.387347 0.198969 -0.900208 -0.511763 -0.033699 -0.858465 -0.688173 -0.178311 -0.703294 -0.790784 -0.260454 -0.553917 -0.872048 -0.112083 -0.476413 -0.794394 -0.013341 -0.607256 -0.920109 0.042291 -0.389372 -0.884532 0.127633 -0.44868 -0.676964 -0.636735 -0.369174 -0.702442 -0.678564 -0.214769 -0.78028 -0.57775 -0.239514 -0.733839 -0.540713 -0.41123 -0.092147 -0.181509 -0.979062 -0.144369 -0.166467 -0.975421 -0.159435 -0.079334 -0.984015 -0.094565 -0.065989 -0.993329 -0.168501 -0.000101 -0.985701 -0.104493 0.01153 -0.994459 -0.726284 -0.369697 -0.579514 -0.588438 -0.292192 -0.753899 -0.407291 -0.20071 -0.890971 -0.869486 -0.42871 -0.245363 -0.799739 -0.41079 -0.4378 -0.938755 -0.260153 -0.225963 -0.869609 -0.274794 -0.410206 -0.170534 0.079532 -0.982137 -0.161151 0.169743 -0.972223 -0.090409 0.181448 -0.979236 -0.10396 0.092065 -0.990311 -0.061474 0.779505 -0.623373 -0.054952 0.743789 -0.666152 -0.103099 0.66864 -0.736404 -0.089248 0.714186 -0.694242 0.313646 0.879357 -0.358269 0.027421 0.941997 -0.334499 -0.080622 0.891857 -0.445073 0.022338 0.831019 -0.555795 0.289168 0.850636 -0.43909 0.556005 0.699289 -0.449281 0.050624 0.773712 -0.631511 0.231632 0.808083 -0.541616 0.288863 0.771715 -0.566581 0.103245 0.744807 -0.659244 0.031939 0.724546 -0.688486 0.003268 0.749951 -0.661485 -0.026171 0.792703 -0.609046 0.482137 0.794981 -0.36817 0.398207 0.851469 -0.34122 -0.221077 0.901734 -0.371484 -0.143622 0.850839 -0.505417 0.234374 0.743588 -0.626216 0.46128 0.703836 -0.540218 0.562017 0.649813 -0.511741 -0.977474 -0.09123 -0.19032 -0.936551 -0.12725 -0.326619 -0.984003 0.070682 -0.163533 -0.961337 0.050417 -0.270718 -0.12138 0.620783 -0.774529 -0.05521 0.647511 -0.760053 -0.944461 0.162933 -0.285388 -0.972855 0.171501 -0.15537 0.237565 0.800499 -0.55024 0.395586 0.847721 -0.353385 0.35269 0.570432 -0.741766 0.568049 0.652016 -0.502191 -0.054488 0.806873 -0.588206 -0.221404 0.774347 -0.592762 -0.082141 0.728443 -0.680164 -0.34248 0.449493 -0.825023 -0.1184 0.432945 -0.893611 0.102358 0.477975 -0.872389 0.062161 0.735187 -0.675008 -0.351621 0.822971 -0.446186 -0.453177 0.839825 -0.298872 -0.753559 0.408132 -0.515341 -0.56556 0.457673 -0.686059 0.070662 -0.994095 -0.082354 0.053046 -0.991548 -0.1184 0.013209 -0.990078 -0.139895 0.042006 -0.899343 -0.435221 0.096965 -0.90473 -0.414802 0.032991 -0.99044 -0.133938 -0.056118 -0.897897 -0.436614 -0.016738 -0.990736 -0.134764 0.086464 -0.995644 -0.034877 0.061043 -0.750045 -0.658564 0.137198 -0.774505 -0.61751 0.069229 -0.578014 -0.813085 0.165722 -0.607498 -0.776841 -0.08926 -0.735213 -0.671934 -0.114239 -0.544747 -0.830783 0.019911 -0.230638 -0.972836 -0.030593 -0.214954 -0.976145 -0.045955 -0.097756 -0.994149 0.002659 -0.095509 -0.995425 -0.052141 0.011297 -0.998576 0.002127 0.01818 -0.999832 0.120697 0.01473 -0.99258 0.113372 -0.110702 -0.987366 0.096736 -0.223211 -0.969958 -0.055442 0.119889 -0.991238 -0.003618 0.136061 -0.990694 -0.057352 0.236947 -0.969828 -0.01353 0.263616 -0.964533 0.087309 0.294367 -0.951696 0.113304 0.153076 -0.981697 -0.061332 0.359879 -0.930981 -0.028754 0.371752 -0.927887 -0.069217 0.479884 -0.874597 -0.04309 0.485197 -0.873342 0.017067 0.479437 -0.87741 0.052641 0.398131 -0.915817 -0.034654 0.760876 -0.647972 0.07156 0.732098 -0.67743 0.191934 0.634425 -0.748777 0.303753 0.458556 -0.835141 0.384402 0.282027 -0.879031 0.419845 0.110042 -0.9009 0.406427 -0.062856 -0.911518 0.353955 -0.220425 -0.908916 0.281504 -0.354287 -0.89176 0.067511 -0.500136 -0.863311 0.193668 -0.469971 -0.861174 -0.14958 -0.414815 -0.897527 -0.228363 -0.298833 -0.926579 -0.288297 -0.161724 -0.943785 -0.298702 -0.022525 -0.954081 -0.190826 0.301532 -0.934165 -0.246409 0.126265 -0.960906 -0.15017 0.520238 -0.840715 -0.129702 0.309072 -0.942153 -0.066417 0.305119 -0.949995 -0.055085 0.462192 -0.885067 -0.090042 0.449004 -0.888981 -0.071733 0.766958 -0.637675 -0.283007 -0.028509 -0.958694 -0.281863 -0.191917 -0.940065 -0.351312 -0.084797 -0.932411 -0.309888 -0.241843 -0.919501 -0.329877 -0.256795 -0.908426 -0.371873 -0.083592 -0.924512 -0.244245 -0.370528 -0.896133 -0.261882 -0.399787 -0.878401 -0.239012 -0.350966 -0.905371 -0.228514 0.26963 -0.935457 -0.253264 0.114721 -0.960571 -0.387754 0.261515 -0.883887 -0.38213 0.068912 -0.921536 -0.395833 0.087229 -0.914171 -0.400411 0.295266 -0.867461 0.059717 -0.537384 -0.841221 0.170799 -0.490618 -0.854471 0.023673 -0.491984 -0.870282 0.138029 -0.482666 -0.864859 0.172547 -0.546798 -0.819292 0.048051 -0.585369 -0.809342 0.24535 -0.391127 -0.88703 0.271557 -0.425603 -0.863203 0.253362 -0.383231 -0.888224 -0.16392 -0.464478 -0.870282 -0.156074 -0.43633 -0.886147 -0.174103 -0.495914 -0.85074 0.311338 -0.234144 -0.921002 0.314452 -0.22765 -0.921573 0.331844 -0.253055 -0.908759 0.334948 -0.047443 -0.941041 0.358791 -0.06942 -0.930833 0.352034 -0.064094 -0.93379 0.370008 0.120956 -0.921121 0.325861 0.13785 -0.935314 0.365501 0.126808 -0.922133 0.293842 0.331419 -0.896559 0.345775 0.339247 -0.874843 0.349666 0.318511 -0.88107 0.181191 0.722006 -0.667741 0.050427 0.826013 -0.561391 0.124911 0.682336 -0.720288 -8.3e-005 0.771418 -0.636329 0.029371 0.862647 -0.504953 0.172441 0.753171 -0.634821 -0.088449 0.796983 -0.597491 -0.084759 0.878493 -0.470177 -0.056365 0.816918 -0.573992 0.28721 0.527283 -0.799677 0.229314 0.522426 -0.821271 0.28443 0.557632 -0.779838 -0.184783 0.47937 -0.857939 -0.159072 0.705689 -0.690434 -0.306838 0.513915 -0.801088 -0.313651 0.56677 -0.761837 -0.157757 0.765176 -0.624195 -0.073978 0.778021 -0.623867 -0.070331 0.835642 -0.544753 -0.087799 0.795672 -0.599331 -0.090591 0.859197 -0.503561 -0.232887 -0.144487 -0.961711 -0.244705 -0.029472 -0.96915 -0.189644 -0.261806 -0.946305 -0.251478 0.075314 -0.964928 -0.245154 0.195506 -0.949567 0.069738 -0.345456 -0.93584 -0.006898 -0.32309 -0.946343 0.169707 -0.300933 -0.938424 -0.116208 -0.315517 -0.941778 0.239122 -0.166926 -0.956533 0.255866 -0.011563 -0.966643 0.242809 0.152646 -0.957989 0.202267 0.315072 -0.927264 -0.032641 0.607102 -0.793953 0.060458 0.564272 -0.823372 -0.076278 0.598808 -0.797252 0.144831 0.45396 -0.879173 -0.202967 0.364176 -0.908945 -0.116061 0.523868 -0.843856 -0.061288 0.585836 -0.808109 -0.069247 0.590821 -0.803825 -0.06147 0.471147 -0.87991 -0.062087 0.339494 -0.938557 -0.069753 0.213116 -0.974534 -0.075711 0.106988 -0.991373 -0.074759 0.010224 -0.997149 -0.065915 -0.084862 -0.99421 -0.056359 -0.195476 -0.979088 -0.058264 -0.312594 -0.948098 -0.069962 -0.465689 -0.882179 -0.071195 -0.557949 -0.826815 -0.045754 -0.47841 -0.876944 -0.060646 -0.52652 -0.847997 -0.029989 -0.553187 -0.832517 -0.018388 -0.737572 -0.675018 -0.009087 -0.897441 -0.441041 -0.00158 -0.989993 -0.141109 -0.308322 -0.951065 -0.020322 -0.110713 -0.99381 -0.009215 -0.455221 -0.889796 -0.032191 -0.596471 -0.800898 -0.052761 -0.511407 0.823202 -0.246578 -0.952243 0.291325 -0.09145 -0.828387 0.538442 -0.154449 -0.712918 -0.697663 -0.070811 -0.964192 -0.256036 -0.069136 -0.99426 -0.077609 -0.073642 -0.993521 0.085088 -0.075342 -0.980403 0.180699 -0.07847 -0.618484 0.785248 -0.029371 -0.985065 0.143698 -0.094851 -0.540296 0.826158 -0.159823 -0.899944 0.302263 -0.314224 -0.858864 -0.489238 -0.15165 -0.711588 -0.680949 -0.173063 -0.767866 -0.270651 -0.580629 -0.848883 -0.383401 -0.36387 -0.671939 -0.656576 -0.342645 -0.602072 -0.614193 -0.510173 -0.382168 -0.137855 -0.913752 -0.607476 -0.181274 -0.773377 -0.492091 -0.563373 -0.66367 -0.327921 -0.53701 -0.777231 -0.13782 -0.132667 -0.981532 -0.138241 -0.548212 -0.824835 0.069946 -0.573914 -0.815923 0.11889 -0.117351 -0.985948 0.269629 -0.627654 -0.730309 0.418909 -0.085153 -0.904027 0.751138 0.018205 -0.659894 0.495888 -0.698066 -0.516526 -0.95931 0.034968 0.280182 -0.952229 0.032635 0.303636 -0.93144 0.167086 0.323268 -0.946666 0.171861 0.272557 -0.944846 0.025037 0.326557 -0.91551 0.150958 0.372899 -0.937578 0.012119 0.347564 -0.899986 0.12397 0.417919 -0.930687 -0.005661 0.365772 -0.885622 0.08696 0.456193 -0.924746 -0.02703 0.379623 -0.873384 0.042333 0.485189 -0.919713 -0.051956 0.389139 -0.863691 -0.010116 0.503919 -0.915891 -0.078133 0.39375 -0.857075 -0.064545 0.511132 -0.913924 -0.104134 0.392301 -0.854193 -0.116994 0.506623 -0.913686 -0.130204 0.385001 -0.854276 -0.170718 0.490986 -0.915221 -0.154787 0.372036 -0.856986 -0.224754 0.463745 -0.918574 -0.175545 0.354127 -0.862661 -0.271395 0.426803 -0.924357 -0.190998 0.330279 -0.874699 -0.302741 0.378484 -0.93489 -0.202027 0.291831 -0.900162 -0.32556 0.289342 -0.890596 -0.319641 0.323525 -0.930807 -0.199874 0.306022 -0.896 0.289458 0.336747 -0.918721 0.296141 0.261252 -0.872107 0.26593 0.410745 -0.848724 0.226438 0.477905 -0.827137 0.172709 0.534805 -0.80861 0.10747 0.578446 -0.794368 0.032855 0.606547 -0.785336 -0.046853 0.617294 -0.781515 -0.12666 0.610894 -0.781913 -0.208771 0.58739 -0.785856 -0.293485 0.544332 -0.793937 -0.361184 0.489091 -0.811021 -0.403504 0.423592 -0.835242 -0.430573 0.342022 -0.847345 0.403795 0.3449 -0.876998 0.412515 0.246384 -0.816114 0.373023 0.441375 -0.785473 0.321444 0.528872 -0.757102 0.251755 0.60284 -0.732492 0.167285 0.659903 -0.71285 0.071993 0.697612 -0.699448 -0.030237 0.714044 -0.693366 -0.135002 0.707826 -0.694705 -0.244186 0.676579 -0.700161 -0.36004 0.616559 -0.706167 -0.453566 0.543697 -0.723583 -0.510419 0.464651 -0.757493 -0.546167 0.357639 -0.786239 0.510828 0.347683 -0.822283 0.521471 0.227858 -0.748188 0.473296 0.464978 -0.710816 0.41044 0.571208 -0.676265 0.32557 0.66081 -0.646313 0.222825 0.729815 -0.622397 0.107069 0.775344 -0.605751 -0.016281 0.795488 -0.597541 -0.142104 0.789146 -0.599072 -0.273389 0.752576 -0.605625 -0.422009 0.67463 -0.607323 -0.542234 0.580639 -0.62045 -0.60942 0.493609 -0.663091 -0.648882 0.373178 -0.713977 0.609147 0.34522 -0.755821 0.6215 0.206088 -0.669772 0.565403 0.481378 -0.626414 0.492206 0.604433 -0.58635 0.393512 0.708055 -0.551603 0.274208 0.787746 -0.523909 0.140003 0.84019 -0.504656 -0.002861 0.863316 -0.494725 -0.148092 0.856339 -0.496885 -0.296649 0.81554 -0.511217 -0.470298 0.719359 -0.523448 -0.603062 0.601929 -0.54514 -0.6692 0.504969 -0.589688 -0.712391 0.380483 -0.632092 0.697412 0.337752 -0.679083 0.71125 0.181575 -0.582478 0.648166 0.490511 -0.533908 0.565768 0.62837 -0.489063 0.454778 0.744308 -0.450216 0.320826 0.833293 -0.419311 0.170384 0.891711 -0.397828 0.010371 0.917402 -0.386738 -0.152189 0.909545 -0.388906 -0.314579 0.865905 -0.416834 -0.497637 0.760662 -0.460989 -0.625959 0.629018 -0.542107 0.774681 0.32556 -0.593506 0.78981 0.15476 -0.487909 0.720672 0.492521 -0.434921 0.630341 0.64305 -0.3861 0.508756 0.769476 -0.343913 0.362223 0.866325 -0.310381 0.197869 0.929791 -0.287052 0.023243 0.957633 -0.274984 -0.154056 0.949026 -0.274153 -0.330443 0.903132 -0.301736 -0.514601 0.802584 -0.360883 -0.638403 0.679857 -0.445437 0.840329 0.308923 -0.50045 0.856542 0.126038 -0.387543 0.782319 0.487634 -0.331043 0.685354 0.648614 -0.279115 0.554987 0.783636 -0.234323 0.398047 0.886934 -0.198766 0.222238 0.954517 -0.174032 0.035606 0.984096 -0.161146 -0.153806 0.974872 -0.161623 -0.341915 0.925728 -0.183322 -0.527132 0.829774 -0.220903 -0.657095 0.720714 -0.343523 0.893833 0.288192 -0.401399 0.910874 0.095845 -0.282773 0.832684 0.476106 -0.223681 0.730476 0.645269 -0.169508 0.593188 0.787016 -0.122852 0.428085 0.895349 -0.085869 0.24334 0.966133 -0.060478 0.047525 0.997037 -0.048298 -0.151042 0.987347 -0.051169 -0.346801 0.936542 -0.071334 -0.536879 0.840638 -0.087789 -0.68823 0.720162 -0.21986 0.940431 0.259327 -0.28005 0.958152 0.059303 -0.156918 0.876718 0.454689 -0.095926 0.770248 0.630489 -0.040164 0.627316 0.777728 0.007734 0.455603 0.890149 0.046891 0.262808 0.963708 0.076503 0.059129 0.995315 0.087975 -0.141662 0.985998 0.082632 -0.346525 0.934394 0.066735 -0.543112 0.837004 0.044893 -0.70688 0.705907 -0.074449 0.972485 0.220751 -0.13589 0.990587 0.016451 -0.0105 0.907325 0.420298 0.052421 0.798072 0.600278 0.112271 0.651463 0.750327 0.17284 0.475296 0.862682 0.224622 0.286559 0.931359 0.237263 0.088989 0.967361 0.218281 -0.113 0.969322 0.208533 -0.342413 0.916116 0.208343 -0.548433 0.809824 0.177566 -0.726111 0.664254 0.072457 0.981536 0.17702 0.011184 0.999581 -0.026697 0.13045 0.91774 0.375149 0.17379 0.810665 0.559124 0.202259 0.677497 0.70717 0.281823 0.466274 0.838549 0.389486 0.279956 0.877454 0.38011 0.146887 0.913204 0.357385 -0.040932 0.93306 0.345941 -0.321259 0.881543 0.34413 -0.559385 0.754098 0.331752 -0.740685 0.584232 0.196145 0.971318 0.134422 0.140044 0.988072 -0.064045 0.22226 0.915547 0.335221 0.215212 0.826522 0.520139 0.485045 0.203691 0.850436 0.549186 0.085396 0.831326 0.51886 -0.274121 0.809717 0.494351 -0.559544 0.665228 0.486216 -0.716967 0.499552 0.288962 0.953069 0.090338 0.249176 0.963756 -0.09532 0.279421 0.910567 0.304618 0.388152 0.921065 0.031265 0.355698 0.926134 -0.125519 0.404067 0.903782 0.141097 0.68549 -0.217008 0.69499 0.702569 0.095581 0.705167 0.629523 -0.529053 0.569037 0.593718 -0.693079 0.408828 0.496683 0.867503 -0.027267 0.458279 0.875316 -0.154276 0.528047 0.848543 0.03378 0.806768 -0.152023 0.570977 0.808457 0.086821 0.582116 0.751952 -0.463847 0.468417 0.679141 -0.659907 0.321388 0.597185 0.799146 -0.068811 0.555473 0.811556 -0.181181 0.641605 0.76683 -0.017718 0.890943 -0.106367 0.441483 0.8665 0.068021 0.494522 0.874776 -0.373384 0.30879 0.812876 -0.546789 0.200637 0.713003 0.692155 -0.112017 0.675208 0.706006 -0.213658 0.760001 0.64795 -0.050575 0.881663 0.086627 0.463859 0.915057 -0.143088 0.377089 0.91943 -0.337729 0.201463 0.893271 -0.433495 0.118948 0.740476 -0.66906 0.063675 0.859379 -0.511092 0.015908 0.647012 -0.745143 -0.161672 0.622061 -0.770384 0.139818 0.519697 -0.840964 -0.150645 0.82048 0.555122 -0.136569 0.782459 0.574043 -0.241314 0.857424 0.511442 -0.057009 0.806681 0.536729 -0.247364 0.862468 0.496193 -0.099707 0.878972 0.473396 -0.057475 0.818208 0.516312 -0.252897 -0.95504 -0.087036 0.283414 0.458007 0.336509 0.822795 0.548647 0.436829 0.712858 0.498793 0.508214 0.702085 0.40895 0.438856 0.800103 0.458788 0.419381 0.783347 0.488579 0.295919 0.820806 0.338496 0.547557 0.765246 0.40128 0.540787 0.739273 0.447903 0.573978 0.685516 0.572577 0.090453 0.814846 0.659971 0.242585 0.711049 0.600793 0.356629 0.715446 0.507798 0.222804 0.832165 0.525407 0.175386 0.832579 0.592642 0.076696 0.801806 0.696495 -0.160757 0.699323 0.747071 -0.060562 0.66198 0.716368 0.089686 0.691935 0.643654 -0.044528 0.76402 0.679875 -0.004061 0.733317 0.751902 -0.071444 0.655392 0.836517 -0.293072 0.462977 0.828132 -0.230473 0.510959 0.762807 -0.199352 0.61513 0.753672 -0.259258 0.603957 0.803598 -0.130297 0.580735 0.857252 -0.175255 0.484153 0.916775 -0.199713 0.345889 0.913851 -0.163134 0.371839 0.958882 -0.051876 0.279022 0.954667 -0.015331 0.297282 0.878559 0.023718 0.477045 0.887732 -0.142315 0.437811 0.881622 0.374121 0.287709 0.786275 0.361357 0.501191 0.845764 0.203036 0.493417 0.938392 0.191581 0.287606 0.964699 0.141352 0.222208 0.919874 0.344658 0.187198 0.735833 0.601185 0.31165 0.66518 0.53777 0.518014 0.724119 0.464664 0.509645 0.811286 0.503396 0.297333 0.847399 0.503007 0.169996 0.757311 0.630422 0.170435 0.55095 0.766953 0.328993 0.550236 0.662384 0.508417 0.604139 0.603421 0.520479 0.650213 0.6874 0.32358 0.647232 0.739853 0.183595 0.52066 0.823219 0.226328 0.232539 0.84106 0.48841 0.333081 0.772484 0.540672 0.4542 0.75815 0.467879 0.390892 0.846896 0.360515 0.372475 0.869089 0.325495 0.285053 0.827495 0.483733 0.339781 0.673393 0.656575 0.238562 0.704887 0.668 0.320797 0.691569 0.647164 0.829927 0.324203 0.453996 0.78816 0.413058 0.456275 0.818961 0.437724 0.37108 0.868606 0.367447 0.332424 0.594766 0.761672 -0.257117 0.732865 0.586033 -0.345649 0.753901 0.533838 0.38295 0.862991 0.204761 0.461865 0.867214 0.193679 0.458725 0.940858 -0.000486 0.3388 0.908483 -0.022324 0.417326 0.966409 -0.169051 -0.193584 0.923393 -0.383468 0.01723 0.951149 0.102662 0.291162 0.867316 0.198019 0.456675 0.856872 0.261318 0.444391 0.920131 0.262219 0.290862 0.845974 0.375555 -0.378531 0.934245 0.115443 -0.337429 0.724297 0.540152 0.42852 0.705159 0.593618 0.387773 0.719293 0.595991 0.356949 0.405662 0.913937 -0.012545 0.486535 0.862055 -0.141935 0.71787 0.605721 0.343167 0.730039 0.584407 0.354276 0.725686 0.562032 0.396862 0.693853 0.591752 0.410363 0.217331 0.868422 0.445659 0.312452 0.932842 0.179389 0.629841 0.545507 0.552922 0.214362 0.527633 0.821981 0.173015 0.7023 0.690536 0.57713 0.459556 0.675077 0.602476 0.389152 0.696838 0.688167 0.493994 0.531411 0.689409 0.382203 0.615335 0.751692 0.33439 0.568456 0.797599 0.361585 0.482797 0.671211 0.364963 0.645196 0.411128 0.319273 0.853838 0.313319 0.402291 0.860228 0.718031 0.380064 0.58308 0.802641 0.402836 0.439876 0.786668 0.41629 0.455912 0.7261 0.396288 0.561903 0.493842 0.121551 0.861014 0.469657 0.240907 0.849345 0.710366 0.36318 0.602894 0.767343 0.380847 0.515888 0.773688 0.31236 0.551215 0.718919 0.257235 0.645744 0.615801 -0.251493 0.746687 0.530844 -0.044491 0.846301 0.775459 0.113009 0.621203 0.81328 0.246247 0.527199 0.846491 0.212923 0.487972 0.849483 0.012404 0.52747 0.842402 -0.47405 0.256193 0.735809 -0.426295 0.526173 0.762121 0.060604 0.644592 0.762121 0.060604 0.644592 0.670388 0.105094 0.734531 0.670388 0.105094 0.734531 0.53593 0.35712 0.765013 0.53593 0.35712 0.765013 0.519593 0.470857 0.712963 0.519593 0.470857 0.712963 0.592721 0.147272 0.791829 0.592721 0.147272 0.791829 0.539402 0.227876 0.810628 0.539402 0.227876 0.810628 0.838046 -0.041961 0.543984 0.838046 -0.041961 0.543984 0.805134 0.024108 0.592603 0.805134 0.024108 0.592603 0.458987 0.56981 0.681651 0.458987 0.56981 0.681651 0.36131 0.737053 0.571146 0.36131 0.737053 0.571146 0.930114 -0.106536 0.351481 0.930114 -0.106536 0.351481 0.880661 -0.11099 0.460561 0.880661 -0.11099 0.460561 0.320732 0.857422 0.402441 0.320732 0.857422 0.402441 0.44726 0.859353 0.247932 0.44726 0.859353 0.247932 0.95182 0.231775 0.200795 0.95182 0.231775 0.200795 0.964167 0.021103 0.264456 0.964167 0.021103 0.264456 0.579093 0.8006 0.153919 0.579093 0.8006 0.153919 0.697437 0.705567 0.12553 0.697437 0.705567 0.12553 0.814036 0.566095 0.129927 0.814036 0.566095 0.129927 0.890074 0.43096 0.148464 0.890074 0.43096 0.148464 0.029208 0.881474 -0.471328 0.029208 0.881474 -0.471328 0.096449 0.728365 -0.678368 0.096449 0.728365 -0.678368 0.4685 0.04873 -0.882118 0.4685 0.04873 -0.882118 0.638087 -0.253445 -0.727056 0.638087 -0.253445 -0.727056 0.178322 0.511529 -0.840559 0.178322 0.511529 -0.840559 0.316697 0.307225 -0.897394 0.316697 0.307225 -0.897394 -0.229597 0.97301 0.023188 -0.229597 0.97301 0.023188 -0.099111 0.961282 -0.257125 -0.099111 0.961282 -0.257125 0.690989 -0.552351 -0.466307 0.690989 -0.552351 -0.466307 0.614728 -0.774975 -0.146708 0.614728 -0.774975 -0.146708 -0.213285 0.674612 0.706689 -0.213285 0.674612 0.706689 -0.277125 0.880387 0.384865 -0.277125 0.880387 0.384865 0.522099 -0.831492 0.189823 0.522099 -0.831492 0.189823 0.41303 -0.701304 0.581016 0.41303 -0.701304 0.581016 0.016451 0.304495 0.952372 0.016451 0.304495 0.952372 -0.102423 0.482133 0.87009 -0.102423 0.482133 0.87009 0.321342 -0.449506 0.833477 0.321342 -0.449506 0.833477 0.240502 -0.251619 0.937468 0.240502 -0.251619 0.937468 0.177609 -0.048219 0.982919 0.177609 -0.048219 0.982919 0.113264 0.143803 0.983103 0.113264 0.143803 0.983103 0.856752 0.237426 0.457827 0.923385 0.210649 0.320917 0.807841 0.342573 0.479622 0.926355 0.306361 0.219111 0.893024 0.401372 0.203491 0.707489 0.350542 0.613661 0.690028 0.404138 0.600445 0.701459 0.296818 0.647962 0.79174 0.518629 0.322757 0.756722 0.567339 0.324806 0.829456 0.472735 0.297531 0.598529 0.538416 0.593188 0.611969 0.432342 0.662249 0.636119 0.597396 0.488334 0.661695 0.3349 0.670821 0.723255 0.374582 0.580165 0.790325 0.34767 0.504491 0.811959 0.371822 0.449969 0.863778 0.442517 0.24097 0.701135 0.600411 0.384599 0.932766 0.160597 0.322732 0.970845 0.170441 0.168552 0.883636 0.175716 0.433947 0.958137 0.275993 0.076165 0.918477 0.391142 0.058382 0.596042 0.268924 0.756581 0.631692 0.23949 0.737299 0.526233 0.296752 0.79688 0.713347 0.696389 0.078601 0.607873 0.785114 0.118686 0.815341 0.574919 0.068466 0.317442 0.747572 0.583409 0.328784 0.607429 0.72314 0.382484 0.824581 0.416859 0.421264 0.422347 0.802596 0.694449 0.183029 0.695875 0.790988 0.142639 0.594973 0.851498 0.154648 0.501034 0.88206 0.467139 0.061249 0.494106 0.834447 0.244044 0.898388 0.239427 0.368203 0.928433 0.290662 0.231361 0.927907 0.362185 0.088373 0.90613 0.422899 -0.009252 0.502343 -0.531378 -0.68212 0.481433 0.034979 -0.875785 0.821621 0.007587 -0.569984 0.601173 0.059321 -0.796914 0.288385 0.93379 -0.211824 0.988457 0.045901 -0.144378 0.606647 0.786641 -0.114787 0.631147 0.75431 -0.180748 0.972584 0.01879 -0.231792 0.50542 0.85821 -0.089584 0.979429 0.125423 -0.158074 0.681238 -0.704485 -0.199036 0.649817 -0.670326 -0.358331 0.486326 -0.865845 -0.117473 0.446328 -0.866561 -0.223303 0.749936 -0.639396 -0.169616 0.164446 0.814374 0.556554 0.230868 0.7458 0.624886 0.513037 0.656869 0.552553 0.434017 0.729299 0.528916 0.753221 0.48407 0.445347 0.753221 0.48407 0.445347 0.124146 -0.973254 0.193296 0.136691 -0.979344 0.149 0.136691 -0.979344 0.149 0.184839 -0.973906 0.131688 0.16227 -0.986484 -0.022769 0.212195 -0.968006 0.133929 0.212195 -0.968006 0.133929 0.404326 0.749489 0.524201 0.579587 0.654669 0.485269 0.579587 0.654669 0.485269 0.267339 0.835446 0.480167 0.245983 0.889628 0.38478 0.267339 0.835446 0.480167 0.316456 0.757992 0.570354 0.349573 0.870764 0.345787 0.299173 0.736411 0.60679 0.210334 0.763548 0.610536 0.173912 0.765408 0.619601 0.197207 0.7873 0.584182 0.208134 0.150701 0.966421 0.45413 0.145812 0.878922 0.34138 0.606573 0.718004 0.193961 0.656473 0.728987 0.702212 0.014831 0.711813 0.629702 0.408791 0.660579 0.464374 -0.299888 0.833321 0.195845 -0.470873 0.860188 0.247334 -0.957018 0.151467 0.40013 -0.846054 0.352263 0.156142 -0.842984 0.51478 0.487382 -0.796965 0.356799 0.24234 -0.955279 0.169453 0.220077 -0.968074 0.119991 0.144759 -0.978459 0.147185 0.183204 -0.982603 -0.03045 0.067622 -0.997704 0.003667 0.333609 0.885237 0.324131 0.26257 0.786829 0.558531 0.249027 0.818022 0.518484 0.310909 0.905688 0.288211 0.981618 -0.064667 0.179569 0.953472 -0.110057 0.280676 0.829047 -0.397145 0.393645 0.92859 0.156172 0.336647 0.777747 -0.421784 0.466056 0.769156 -0.579058 0.270354 0.995933 0.044395 0.078399 0.452986 -0.772336 0.445309 0.25562 -0.911562 0.322045 0.985612 -0.013881 -0.168452 0.7241 -0.689125 0.028032 0.669094 -0.721471 -0.178308 0.959852 -0.03757 -0.277979 0.142983 -0.970854 0.192352 0.080246 -0.996775 0.00032 0.399717 0.880195 0.255896 0.376418 0.74386 0.552252 0.932941 0.251988 0.257146 0.923519 0.376658 0.072404 0.341071 0.563945 0.752088 0.901143 0.06264 0.428972 0.473307 -0.704975 -0.528197 0.53861 0.034196 -0.841861 0.284747 -0.650038 -0.704536 0.28859 -0.717857 -0.633559 0.66476 -0.69131 -0.283167 0.687122 0.601648 -0.407288 0.19454 0.943367 -0.268726 0.142669 0.967481 -0.20887 0.158097 0.977372 -0.140534 0.267227 0.956959 -0.113221 0.206618 0.964826 -0.16254 0.111176 0.975912 -0.187714 0.29006 0.951394 -0.103509 0.197728 0.977642 -0.071559 0.133329 0.730763 0.669484 -0.021072 0.776457 0.629818 -0.048861 0.692427 0.719831 -0.267381 0.736738 0.621067 0.502201 -0.841758 -0.198082 0.347489 -0.823244 -0.44891 0.323269 -0.832159 -0.450565 0.365532 -0.909977 -0.195774 0.278989 -0.744812 -0.606152 0.310543 -0.724294 -0.615598 0.470573 -0.845704 0.251686 0.639991 -0.751749 0.159014 0.847528 -0.526779 -0.064814 0.931762 0.360605 -0.042234 0.731131 -0.37377 0.57074 0.545828 -0.440059 0.713036 0.28654 -0.807827 -0.515083 0.336227 -0.798398 -0.499512 0.390344 -0.778946 -0.490791 0.394888 -0.900382 -0.182694 0.453746 -0.877199 -0.156959 0.356802 -0.910855 -0.207449 -0.344161 0.695104 0.631176 -0.149439 0.640429 0.753338 -0.149043 0.665502 0.731364 -0.349826 0.693839 0.629452 -0.136209 0.702366 0.698663 -0.323407 0.705435 0.63069 0.682989 -0.682468 -0.260315 0.59895 -0.703991 -0.381648 0.629914 -0.656157 -0.415531 0.77097 -0.571238 -0.281588 0.426971 -0.693708 -0.580055 0.470882 -0.685627 -0.555145 0.547183 -0.735019 -0.400422 0.403878 -0.692278 -0.598025 0.639219 -0.729933 -0.242067 0.756317 -0.646196 0.102054 0.818345 -0.573567 0.036491 0.814869 -0.159464 0.557279 0.753505 -0.300809 0.584589 0.916322 -0.395282 -0.064085 -0.552229 0.717565 0.424433 -0.549898 0.723485 0.417351 -0.689114 0.695621 0.20306 -0.692124 0.693865 0.198787 -0.449937 0.772191 0.44864 -0.582332 0.776773 0.23982 0.4591 -0.736156 -0.497294 0.428557 -0.75507 -0.496193 0.470093 -0.756298 -0.455001 0.604445 -0.773438 -0.190894 0.573109 -0.784752 -0.236031 0.620477 -0.767507 -0.161065 -0.154659 0.830449 0.535196 -0.208047 0.933434 0.292262 0.839948 -0.488026 -0.237313 0.649751 -0.668884 -0.361136 0.686328 -0.685198 -0.243841 0.870409 -0.456272 -0.184943 0.113928 -0.971144 0.209524 0.420169 -0.778433 0.466369 0.36716 -0.763202 0.531711 -0.02591 -0.968892 0.246125 0.735247 0.502746 0.454597 0.760736 -0.231899 0.60622 0.709739 -0.164748 0.68493 0.677088 0.518341 0.522374 0.150157 0.985896 -0.073902 0.110758 0.979195 -0.170028 0.14924 0.977328 -0.150193 0.102024 0.980668 -0.166976 0.092901 0.976521 -0.194362 0.035026 -0.981694 0.187218 -0.094184 -0.972517 0.212932 -0.040179 -0.998571 0.035247 -0.134425 -0.988935 0.062742 0.104938 0.981244 -0.161707 0.151335 0.986059 -0.069173 0.069929 0.986197 -0.150086 0.095076 0.992657 -0.074781 -0.031932 -0.959846 0.278703 0.3959 -0.771292 0.498369 0.753955 -0.269659 0.599029 0.811465 0.345679 0.471202 0.245701 0.963498 -0.106314 0.226774 0.963215 -0.144187 -0.201856 -0.975954 0.082263 -0.144695 -0.963786 0.22401 0.238399 0.953876 -0.182445 0.263237 0.957272 -0.119739 0.137189 0.954008 0.266548 0.004047 0.860303 0.509766 -0.324412 0.82325 0.46585 -0.221133 0.946632 0.234497 0.552688 -0.819889 -0.14939 0.435697 -0.752668 -0.493618 0.365249 -0.701895 -0.611504 0.358271 0.298744 0.88453 0.369064 0.261778 0.891776 0.680582 -0.368671 0.633159 0.35026 0.27383 0.895732 -0.101362 0.652868 0.750659 -0.31403 0.712829 0.627104 0.528306 -0.819128 -0.223433 0.448996 -0.780542 -0.434921 0.341896 0.423686 0.838807 0.504935 0.340193 0.79329 0.181522 0.411952 0.892942 0.181522 0.411952 0.892942 0.465736 -0.606641 0.644264 -0.0363 0.939717 0.340021 0.06455 0.996125 -0.059741 -0.0363 0.939717 0.340021 0.286421 0.951044 -0.116095 0.288616 0.950349 -0.116354 0.275757 0.953921 -0.118292 0.150003 0.985457 -0.079833 -0.160278 0.98687 0.019962 -0.557805 0.804225 0.205125 -0.528811 0.837981 0.134713 -0.689987 0.699784 0.184985 -0.704052 0.684413 0.189445 -0.639015 0.750411 0.168948 -0.301208 0.951297 0.065638 0.321965 0.939617 -0.116016 0.978366 -0.179418 -0.103002 0.950511 -0.146462 -0.274005 0.864752 0.428163 -0.262451 0.86448 -0.440579 -0.242001 0.720676 -0.665351 -0.194768 0.631835 -0.756962 -0.166709 0.640249 -0.749264 -0.169365 0.627443 -0.760901 -0.165364 0.541996 -0.828837 -0.138816 0.434754 -0.894291 -0.105989 0.396475 -0.913174 -0.094449 0.3782 -0.921198 -0.091428 0.733887 0.635327 -0.240355 0.720343 0.687761 -0.089944 0.744559 0.62451 -0.235838 0.345736 0.9286 0.13479 0.993133 0.093733 0.070012 0.356159 0.925036 0.132136 0.187307 0.978163 -0.09007 0.502357 0.858922 0.099456 0.251333 0.962401 -0.103033 0.65335 -0.735934 0.17758 0.65112 0.755621 0.071276 0.96166 -0.25776 -0.093651 0.209729 0.846026 0.490157 0.369985 -0.806261 -0.461579 -0.486759 0.759504 0.431532 0.951681 0.185976 -0.24437 0.902737 0.332183 -0.273352 0.941165 0.315326 -0.121568 0.951681 0.185976 -0.24437 0.956675 0.290442 0.020395 0.999368 -0.03479 -0.007251 0.964422 0.229761 0.130768 0.952504 0.13236 0.274258 0.999368 -0.03479 -0.007251 0.940577 -0.003262 0.339566 0.985356 -0.047323 -0.163812 0.973149 -0.138935 0.183517 0.98634 -0.163979 0.015638 0.985356 -0.047323 -0.163812 0.800077 -0.569905 -0.187309 0.874318 -0.431977 -0.221278 0.945305 -0.32607 -0.008707 0.031586 -0.183913 0.982435 0.031586 -0.183913 0.982435 -0.030751 -0.950601 0.30889 -0.030751 -0.950601 0.30889 0.985137 -0.170059 0.024169 -0.138803 -0.672288 0.727161 -0.138803 -0.672288 0.727161 0.909257 -0.407951 -0.082632 0.909257 -0.407951 -0.082632 0.975975 0.172973 -0.132486 0.975975 0.172973 -0.132486 0.980139 0.18814 -0.062699 0.980139 0.18814 -0.062699 0.977763 -0.075286 0.195733 0.977763 -0.075286 0.195733 0.989301 -0.108793 0.097195 0.989301 -0.108793 0.097195 0.977445 0.124096 -0.170885 0.977445 0.124096 -0.170885 0.998153 0.056019 0.023506 0.998153 0.056019 0.023506 0.796335 -0.523715 0.302611 0.474101 -0.734714 0.485204 -0.961031 0.165053 0.221757 -0.966015 0.031778 0.256527 -0.974186 0.146597 0.171671 -0.972365 0.022683 0.232362 -0.984794 0.118521 0.127015 -0.97678 0.011602 0.213931 -0.992779 0.080892 0.088578 -0.980405 -0.006081 0.1969 -0.997692 0.034776 0.058321 -0.983084 -0.030932 0.180525 -0.999084 -0.01652 0.039467 -0.983546 -0.055798 0.171824 -0.996955 -0.071034 0.03217 -0.982323 -0.081459 0.168542 -0.991355 -0.12588 0.037019 -0.979425 -0.107879 0.170556 -0.982538 -0.178319 0.053122 -0.975168 -0.132497 0.177459 -0.97118 -0.224992 0.078667 -0.9699 -0.153567 0.188972 -0.957807 -0.263848 0.113978 -0.963903 -0.170188 0.204763 -0.939615 -0.29636 0.171153 -0.955655 -0.183417 0.230396 -0.916192 -0.318352 0.243403 -0.943673 -0.194814 0.26745 -0.940074 0.285894 0.18581 -0.959445 0.258862 0.111609 -0.975323 0.216319 0.04416 -0.986978 0.160325 -0.013014 -0.993968 0.093475 -0.057363 -0.996059 0.018754 -0.086686 -0.993227 -0.06055 -0.099163 -0.985628 -0.140582 -0.09367 -0.972899 -0.220345 -0.070116 -0.955697 -0.29262 -0.031897 -0.933885 -0.356815 0.023271 -0.904554 -0.412768 0.106793 -0.874187 -0.443341 0.198105 -0.904883 0.399162 0.14784 -0.930066 0.363832 0.051015 -0.950616 0.308169 -0.036885 -0.965592 0.235032 -0.111317 -0.974471 0.147814 -0.168987 -0.976979 0.05078 -0.207202 -0.973161 -0.05162 -0.224262 -0.963025 -0.155851 -0.219756 -0.94516 -0.263631 -0.192798 -0.918341 -0.367435 -0.147108 -0.884469 -0.46033 -0.076225 -0.846414 -0.531736 0.028979 -0.81683 -0.561478 0.132408 -0.856198 0.505244 0.107954 -0.886734 0.462178 -0.009715 -0.911564 0.394322 -0.116455 -0.92955 0.305236 -0.206801 -0.940103 0.199203 -0.276631 -0.942966 0.081326 -0.322801 -0.938215 -0.042948 -0.343377 -0.925514 -0.170798 -0.338011 -0.90304 -0.303133 -0.304351 -0.869126 -0.43109 -0.242446 -0.825613 -0.542663 -0.154533 -0.78679 -0.615366 -0.04782 -0.763783 -0.641746 0.069265 -0.795208 0.602633 0.06691 -0.830597 0.552504 -0.069627 -0.85928 0.473551 -0.193358 -0.879991 0.369951 -0.297914 -0.892055 0.246859 -0.378547 -0.895219 0.110198 -0.431786 -0.889617 -0.03377 -0.455457 -0.87547 -0.181874 -0.447743 -0.852671 -0.3311 -0.404135 -0.819795 -0.473097 -0.322669 -0.773161 -0.597383 -0.21297 -0.732323 -0.672114 -0.109388 -0.703802 -0.710148 0.018793 -0.723285 0.690084 0.025367 -0.762965 0.633675 -0.127835 -0.79508 0.544841 -0.266451 -0.818228 0.428382 -0.383395 -0.831653 0.290204 -0.47343 -0.835118 0.137002 -0.532737 -0.828804 -0.024239 -0.559013 -0.813771 -0.188224 -0.549862 -0.79107 -0.350428 -0.501406 -0.757687 -0.507139 -0.410755 -0.712161 -0.640658 -0.287028 -0.672656 -0.725938 0.143347 -0.641851 0.766661 -0.016075 -0.68527 0.704796 -0.183489 -0.720395 0.607414 -0.334782 -0.745674 0.479891 -0.46225 -0.760327 0.328783 -0.560182 -0.764125 0.161453 -0.624537 -0.757252 -0.014499 -0.652962 -0.740618 -0.191819 -0.643964 -0.713493 -0.368156 -0.596145 -0.67319 -0.539525 -0.505696 -0.633594 -0.66652 -0.392824 -0.552217 0.831757 -0.056883 -0.598779 0.765354 -0.236001 -0.636491 0.660838 -0.397708 -0.663675 0.524103 -0.533716 -0.679467 0.362301 -0.638015 -0.683616 0.18334 -0.706439 -0.676308 -0.004709 -0.736604 -0.658096 -0.193709 -0.72759 -0.624976 -0.385418 -0.678866 -0.57331 -0.567527 -0.590956 -0.539712 -0.669892 -0.509859 -0.455829 0.884817 -0.096532 -0.504906 0.814845 -0.284776 -0.544771 0.704701 -0.454557 -0.573584 0.560728 -0.597148 -0.59041 0.390539 -0.706325 -0.594941 0.202476 -0.777849 -0.58738 0.005005 -0.809296 -0.568315 -0.193377 -0.799765 -0.531724 -0.399254 -0.746904 -0.472063 -0.588647 -0.65624 -0.438252 -0.663694 -0.606173 -0.336649 0.931055 -0.140727 -0.387856 0.858178 -0.336301 -0.429627 0.743452 -0.512543 -0.459974 0.593597 -0.660353 -0.477869 0.416607 -0.773356 -0.482921 0.221168 -0.847273 -0.475295 0.016124 -0.879678 -0.455543 -0.189817 -0.869741 -0.417917 -0.406061 -0.812687 -0.353552 -0.60422 -0.714086 -0.307968 -0.666598 -0.678825 -0.193714 0.962913 -0.187815 -0.246267 0.8884 -0.387424 -0.288613 0.77069 -0.568101 -0.317008 0.616998 -0.720292 -0.324374 0.435579 -0.839674 -0.320365 0.248902 -0.91401 -0.326185 0.041175 -0.944409 -0.317893 -0.181748 -0.930544 -0.279515 -0.404386 -0.870829 -0.213288 -0.614544 -0.759503 -0.156721 -0.682515 -0.713871 -0.046463 0.971992 -0.230375 -0.103325 0.898972 -0.425645 -0.164362 0.783516 -0.59924 -0.218293 0.643744 -0.733446 -0.220032 0.426957 -0.877094 -0.163378 0.257767 -0.952294 -0.189104 0.091231 -0.97771 -0.196106 -0.137994 -0.970824 -0.15848 -0.395997 -0.904473 -0.068774 -0.626707 -0.776214 0.011498 -0.702817 -0.711278 0.080842 0.962059 -0.260588 -0.004368 0.897342 -0.441313 -0.108637 0.80053 -0.589364 -0.077282 0.160772 -0.983961 -0.047366 -0.005136 -0.998864 -0.055321 -0.376835 -0.924627 0.024205 -0.64051 -0.767568 0.122657 -0.746286 -0.654227 0.182989 0.944565 -0.272601 0.060296 0.892968 -0.446064 0.298773 0.913904 -0.274797 0.253313 0.891687 -0.375137 0.114854 -0.338324 -0.933994 0.102232 0.013353 -0.994671 0.151765 -0.614693 -0.774028 0.247572 -0.789545 -0.561539 0.422501 0.861523 -0.281553 0.416333 0.839555 -0.34902 0.37199 -0.274879 -0.886603 0.353485 0.017625 -0.935274 0.378321 -0.507369 -0.774242 0.386435 -0.730111 -0.563565 0.530382 0.793788 -0.297652 0.540498 0.759214 -0.362568 0.588887 -0.200332 -0.782994 0.56861 0.014756 -0.822475 0.582449 -0.344028 -0.736476 0.575726 -0.569224 -0.586961 0.65241 0.687716 -0.318445 0.658927 0.642592 -0.391012 0.527988 0.032741 -0.848621 0.572271 -0.222348 -0.789346 0.647447 -0.270239 -0.712589 0.71954 -0.352064 -0.598592 0.761452 -0.51329 -0.395884 0.588683 -0.724004 -0.359542 0.425419 -0.825843 -0.370137 0.75829 0.548346 -0.35258 0.752446 0.495489 -0.433954 0.762878 0.455469 -0.458873 0.774527 0.480972 -0.410821 -0.059483 0.299655 -0.952191 -0.090596 0.399221 -0.912368 0.036545 0.471124 -0.881309 0.07364 0.399264 -0.913874 -0.030114 0.266255 -0.963432 -0.038844 0.381241 -0.923659 -0.13284 0.509742 -0.85001 -0.066453 0.503298 -0.861554 0.001768 0.538105 -0.842876 0.050754 0.065758 -0.996544 -0.019181 0.193572 -0.980899 0.117727 0.320417 -0.939933 0.173089 0.209675 -0.962329 0.073986 0.047418 -0.996131 -0.002861 0.154045 -0.98806 0.22268 -0.189591 -0.956279 0.142047 -0.070696 -0.987332 0.235945 0.061061 -0.969846 0.284019 -0.085242 -0.955022 0.284187 -0.119522 -0.95129 0.18495 -0.046926 -0.981627 0.469944 -0.314762 -0.824668 0.324898 -0.286474 -0.901318 0.327435 -0.220891 -0.918691 0.436096 -0.251459 -0.864054 0.473624 -0.209127 -0.855538 0.371679 -0.174482 -0.911817 0.593781 -0.220328 -0.773873 0.64569 -0.038921 -0.762607 0.659388 -0.074842 -0.748068 0.577338 -0.188497 -0.794449 0.520053 -0.164818 -0.838081 0.486574 -0.003404 -0.873633 0.583694 0.350278 -0.732535 0.633952 0.167061 -0.755112 0.445809 0.172583 -0.878333 0.388775 0.329865 -0.860258 0.670839 0.324639 -0.666772 0.692093 0.11947 -0.711852 0.445222 0.577844 -0.684013 0.517686 0.479897 -0.708308 0.330597 0.433029 -0.838565 0.275479 0.50654 -0.817024 0.53871 0.612813 -0.578145 0.616696 0.484403 -0.620516 0.278003 0.744964 -0.606418 0.365453 0.664551 -0.651779 0.221829 0.57283 -0.789087 0.182217 0.632878 -0.752504 0.306851 0.80584 -0.506422 0.437533 0.722967 -0.534681 -0.077112 0.816166 -0.572649 0.125172 0.825515 -0.550324 0.121846 0.731498 -0.670868 -0.019603 0.743964 -0.667932 -0.030227 0.802231 -0.596248 0.128031 0.849287 -0.512171 -0.166759 0.672289 -0.721262 -0.074919 0.639876 -0.764817 -0.086363 0.65898 -0.747185 0.419268 0.406688 -0.811677 0.45283 0.31045 -0.835802 0.550354 0.354523 -0.755926 0.488995 0.426269 -0.761038 0.798505 0.589542 -0.121777 0.629664 0.764854 -0.136094 0.428097 0.516657 -0.741484 0.481992 0.162651 -0.860946 0.476625 0.173666 -0.861782 0.541781 -0.051837 -0.83892 0.610962 -0.026965 -0.7912 0.77405 -0.395398 -0.494477 0.920958 -0.172543 -0.349378 0.643893 0.078074 -0.761122 0.480736 0.233816 -0.845117 0.483133 0.167149 -0.859444 0.616661 0.240115 -0.749715 0.967736 0.117908 -0.222674 0.913198 0.379905 -0.147451 0.390578 0.591083 -0.705741 0.382839 0.535126 -0.753044 0.414139 0.577573 -0.70349 0.47634 0.860797 -0.179246 0.340392 0.907818 -0.24495 0.421549 0.584377 -0.693397 0.405414 0.540989 -0.736865 0.431518 0.576007 -0.694268 0.364935 0.56563 -0.739517 0.160295 0.921034 -0.354968 -0.063838 0.850342 -0.522343 0.231853 0.516573 -0.824255 -0.234963 0.674542 -0.699847 -0.263787 0.488611 -0.831671 0.143761 0.349005 -0.926028 0.121957 0.430188 -0.894463 0.244238 0.368175 -0.897104 0.286839 0.465666 -0.837185 0.431825 0.308888 -0.847417 0.349106 0.306214 -0.88564 0.242828 0.317447 -0.916658 -0.193183 0.358321 -0.913393 -0.108882 0.280328 -0.953709 0.308743 0.342271 -0.887428 0.400235 0.380025 -0.833902 0.437071 0.358464 -0.824907 0.306876 0.362809 -0.879885 -0.062544 0.201463 -0.977497 -0.04802 0.0781 -0.995788 0.266858 0.326827 -0.906626 0.350138 0.278047 -0.894479 0.354862 0.347322 -0.868009 0.255429 0.219947 -0.941477 -0.006971 -0.087812 -0.996113 0.120653 -0.291438 -0.94895 0.318338 0.07641 -0.944893 0.448609 0.180967 -0.875215 0.399034 0.212972 -0.89186 0.432397 -0.02109 -0.901437 0.342686 -0.457883 -0.820311 0.578434 -0.49519 -0.648229 0.296419 -0.000702 -0.955058 0.296419 -0.000702 -0.955058 0.172523 0.052896 -0.983584 0.172523 0.052896 -0.983584 0.039158 0.322577 -0.945733 0.039158 0.322577 -0.945733 0.047516 0.433082 -0.900101 0.047516 0.433082 -0.900101 0.073663 0.121903 -0.989805 0.073663 0.121903 -0.989805 0.020637 0.212144 -0.977021 0.020637 0.212144 -0.977021 0.424054 -0.091556 -0.900997 0.424054 -0.091556 -0.900997 0.357272 -0.03225 -0.933444 0.357272 -0.03225 -0.933444 0.012525 0.534209 -0.84526 0.012525 0.534209 -0.84526 -0.011494 0.7071 -0.707021 -0.011494 0.7071 -0.707021 0.597526 -0.131026 -0.791072 0.597526 -0.131026 -0.791072 0.505826 -0.146625 -0.850083 0.505826 -0.146625 -0.850083 0.043082 0.835064 -0.548463 0.043082 0.835064 -0.548463 0.232892 0.841802 -0.486962 0.232892 0.841802 -0.486962 0.692441 0.211038 -0.689919 0.692441 0.211038 -0.689919 0.670034 -0.002279 -0.742327 0.670034 -0.002279 -0.742327 0.395537 0.785831 -0.475416 0.395537 0.785831 -0.475416 0.511415 0.69064 -0.511342 0.511415 0.69064 -0.511342 0.608864 0.549501 -0.572131 0.608864 0.549501 -0.572131 0.665886 0.412472 -0.621662 0.665886 0.412472 -0.621662 0.267718 0.900516 0.342634 0.267718 0.900516 0.342634 0.434491 0.763425 0.477912 0.434491 0.763425 0.477912 0.869912 0.076138 0.487294 0.869912 0.076138 0.487294 0.932155 -0.229683 0.279881 0.932155 -0.229683 0.279881 0.602872 0.538559 0.588642 0.602872 0.538559 0.588642 0.752279 0.323048 0.574209 0.752279 0.323048 0.574209 -0.213672 0.974192 0.072768 -0.213672 0.974192 0.072768 0.039021 0.973056 0.227243 0.039021 0.973056 0.227243 0.840289 -0.540248 0.045233 0.840289 -0.540248 0.045233 0.606818 -0.775669 -0.17352 0.606818 -0.775669 -0.17352 -0.573632 0.648601 -0.500262 -0.573632 0.648601 -0.500262 -0.459052 0.865899 -0.198721 -0.459052 0.865899 -0.198721 0.348772 -0.845309 -0.404736 0.348772 -0.845309 -0.404736 0.044107 -0.731158 -0.680781 0.044107 -0.731158 -0.680781 -0.526631 0.262875 -0.808429 -0.526631 0.262875 -0.808429 -0.572583 0.444835 -0.688673 -0.572583 0.444835 -0.688673 -0.171813 -0.489749 -0.854767 -0.171813 -0.489749 -0.854767 -0.298216 -0.294897 -0.907801 -0.298216 -0.294897 -0.907801 -0.378075 -0.092709 -0.921121 -0.378075 -0.092709 -0.921121 -0.44719 0.096281 -0.889242 -0.44719 0.096281 -0.889242 0.612429 0.206829 -0.762989 0.464886 0.248405 -0.849809 0.407407 0.351958 -0.842701 0.648197 0.357749 -0.672202 0.671753 0.259933 -0.693674 0.260779 0.444292 -0.857088 0.266283 0.359019 -0.894538 0.239549 0.282383 -0.928911 0.456076 0.54318 -0.704947 0.484975 0.494828 -0.721072 0.523431 0.452679 -0.721874 0.154432 0.395601 -0.905345 0.17883 0.504716 -0.84456 0.266157 0.567731 -0.779001 0.193307 0.300033 -0.934138 0.427534 0.439385 -0.790035 0.307666 0.464115 -0.830626 0.465664 0.419078 -0.779442 0.586011 0.418412 -0.693919 0.376686 0.574397 -0.726757 0.72401 0.167928 -0.669036 0.615211 0.144276 -0.775048 0.538442 0.194451 -0.81992 0.755996 0.352652 -0.551458 0.765047 0.251817 -0.592698 0.104303 0.251884 -0.96212 0.084593 0.265317 -0.960443 0.005837 0.281933 -0.959416 0.438714 0.77153 -0.460728 0.549094 0.684577 -0.479427 0.639111 0.567102 -0.51955 -0.119349 0.571474 -0.811895 -0.055497 0.717664 -0.694175 0.087893 0.80095 -0.592244 -0.082255 0.383999 -0.919662 0.371981 0.25099 -0.893663 0.168173 0.254214 -0.952414 0.515832 0.244885 -0.820943 0.711746 0.448691 -0.540457 0.274747 0.816832 -0.507247 0.645705 0.281916 -0.70964 0.539281 0.220414 -0.812769 0.769022 0.394085 -0.503292 0.726749 0.338639 -0.597628 0.910687 0.132665 0.391214 0.999599 0.019627 0.020427 0.95412 0.024299 0.298438 0.445708 0.894704 -0.029136 0.965917 0.00636 -0.258774 0.63813 0.749781 -0.174984 0.564478 0.808758 -0.165152 0.955888 0.074409 -0.28415 0.833027 -0.550995 -0.049699 0.747769 -0.638876 -0.180774 0.496269 -0.862279 -0.100952 -0.207933 0.848115 -0.487303 0.067624 0.763984 -0.641681 0.12728 0.626188 -0.769213 -0.218784 0.728379 -0.649305 0.477035 0.407812 -0.778542 0.477035 0.407812 -0.778542 0.017333 -0.981177 -0.192329 0.100697 -0.980826 -0.166857 0.066985 -0.985016 -0.158922 0.066985 -0.985016 -0.158922 0.113176 -0.977596 -0.177477 0.113176 -0.977596 -0.177477 0.260639 0.584649 -0.768279 0.260639 0.584649 -0.768279 0.016554 0.67435 -0.738226 -0.106362 0.750404 -0.652366 -0.106362 0.750404 -0.652366 -0.052394 0.836039 -0.546163 0.073173 0.824552 -0.561034 -0.11046 0.686583 -0.718611 -0.155032 0.743111 -0.650962 -0.209657 0.806439 -0.552901 -0.277141 0.74834 -0.602644 -0.254322 0.755762 -0.603444 -0.358109 0.092557 -0.929081 -0.250923 0.673348 -0.695442 -0.112663 0.603179 -0.789609 -0.09202 0.089713 -0.991708 0.154625 0.382352 -0.910988 0.205405 -0.026468 -0.978319 -0.072607 -0.353019 -0.932795 -0.315135 -0.516218 -0.796372 0.137801 -0.96591 -0.219155 -0.147037 -0.862058 -0.485012 0.15353 -0.866566 -0.474859 0.229098 -0.817711 -0.528075 0.125194 -0.964684 -0.231758 0.055128 -0.985656 -0.159509 0.133227 -0.975043 -0.1776 0.08158 0.845691 -0.5274 0.078804 0.875247 -0.477213 -0.135909 0.78308 -0.606889 -0.14307 0.731129 -0.667069 0.652262 -0.134271 -0.746006 0.728452 -0.084587 -0.679855 0.489926 -0.423017 -0.762253 0.604152 0.140091 -0.784458 0.789901 0.036981 -0.612119 0.511155 -0.597093 -0.618224 0.41548 -0.442463 -0.794735 0.053874 -0.927755 -0.369281 0.152238 -0.796477 -0.58519 0.917433 -0.01634 -0.397554 0.60325 -0.699086 -0.383887 0.029478 -0.980033 -0.196639 0.188278 0.863211 -0.468421 0.734878 0.361526 -0.573806 0.645074 0.228829 -0.729052 0.011092 0.714503 -0.699544 0.528285 0.032629 -0.84844 -0.123905 0.526586 -0.841044 0.709036 -0.679127 0.189881 0.54884 -0.680148 0.485977 0.696633 -0.536154 0.476698 0.937025 0.142119 0.319041 0.883729 -0.390989 0.257199 0.771856 0.621298 -0.135006 0.80244 -0.582305 -0.130427 0.360455 0.931906 0.040288 0.246781 0.968966 0.014261 0.199409 0.979909 0.003657 0.20259 0.97835 0.042279 0.297397 0.954751 0.002279 0.296878 0.953346 -0.054732 -0.448272 0.750301 -0.485901 -0.299256 0.711329 -0.635969 -0.449932 0.662013 -0.599417 -0.604373 0.702658 -0.375506 0.543677 -0.837776 -0.05046 0.41825 -0.908309 0.006481 0.525642 -0.828016 0.195167 0.513327 -0.837473 0.187441 0.632445 -0.690176 0.351668 0.562937 -0.723503 0.399556 0.270888 -0.860723 -0.431018 0.466072 -0.760826 -0.451575 0.785817 -0.470274 -0.401664 0.806986 0.379916 -0.452147 0.311722 -0.406116 -0.859011 0.08011 -0.476468 -0.875534 0.492226 -0.783275 0.379728 0.564196 -0.75938 0.324076 0.615425 -0.747397 0.250297 0.467281 -0.880804 -0.076373 0.423525 -0.905139 -0.036738 0.388235 -0.921287 -0.022439 -0.638353 0.671458 -0.376365 -0.642083 0.670375 -0.371923 -0.527289 0.635121 -0.564436 -0.53912 0.609156 -0.581618 -0.499354 0.673213 -0.545371 -0.620665 0.681581 -0.387585 0.724403 -0.679107 -0.118553 0.808578 -0.568186 -0.152862 0.76273 -0.645516 0.039393 0.719046 -0.694329 0.029644 0.704086 -0.666952 0.243799 0.68063 -0.673335 0.288725 0.675478 -0.668555 0.311069 0.688796 -0.721756 0.068031 0.678689 -0.726051 -0.110594 0.590821 -0.659388 -0.464906 0.324614 -0.335183 -0.884465 0.389368 -0.193616 -0.900503 0.677507 -0.584788 -0.446103 0.811911 -0.403641 -0.421752 -0.702864 0.705439 -0.091315 -0.699069 0.693346 0.174852 -0.698884 0.694843 0.169571 -0.697074 0.711711 -0.08692 -0.629707 0.772938 0.077689 -0.630257 0.757744 -0.169115 0.665495 -0.718329 0.202779 0.637554 -0.7383 0.220087 0.650398 -0.741869 0.163133 0.619906 -0.781037 -0.075482 0.62189 -0.772088 -0.130895 0.619404 -0.767547 -0.164959 -0.428525 0.808484 -0.403384 -0.344282 0.922494 -0.174568 0.841854 -0.487833 -0.230867 0.838993 -0.458769 -0.292613 0.718357 -0.682624 -0.134116 0.750372 -0.66081 -0.016469 -0.004385 -0.980634 -0.195802 0.11327 -0.803082 -0.585003 0.033162 -0.790045 -0.612151 -0.142029 -0.978203 -0.151482 0.398848 0.500353 -0.768484 0.284867 0.522124 -0.803889 0.240759 -0.182234 -0.953324 0.326055 -0.256882 -0.90978 0.106126 0.992625 0.058596 0.101925 0.991712 -0.078227 0.185058 0.981762 0.043548 0.161241 0.98316 0.086007 0.203627 0.976108 0.075821 -0.181266 -0.979622 -0.086502 -0.058418 -0.989239 -0.134139 0.18691 0.981774 0.034418 0.16088 0.98655 0.028917 -0.164751 -0.970502 -0.176023 0.075477 -0.797038 -0.599194 0.41959 0.332341 -0.844685 0.322606 -0.288805 -0.901397 0.338129 0.937695 -0.079978 0.299596 0.953203 -0.040569 -0.230271 -0.970692 -0.068787 0.273756 0.960659 -0.046809 -0.093554 0.935084 -0.341855 -0.357811 0.927392 -0.109158 -0.580229 0.784645 -0.218327 -0.370232 0.823908 -0.429073 0.555442 -0.82035 -0.136052 0.648256 -0.730721 0.214037 0.665073 -0.670138 0.329534 -0.177345 0.255741 -0.950339 0.237945 -0.404121 -0.883215 -0.171659 0.218398 -0.960643 -0.191232 0.22974 -0.95428 -0.611039 0.688951 -0.389844 -0.497376 0.621066 -0.605717 0.578572 -0.812132 -0.075471 0.636769 -0.760919 0.124606 -0.168096 0.382717 -0.908445 -0.01579 0.29859 -0.954251 -0.354497 0.372019 -0.857866 -0.354497 0.372019 -0.857866 0.030753 -0.642052 -0.766044 -0.28865 0.899627 -0.327645 -0.28865 0.899627 -0.327645 -0.590748 0.801531 0.092551 0.882451 -0.187177 -0.431561 0.631213 0.690214 -0.3538 0.716773 0.651128 -0.249539 0.810085 0.079366 -0.580916 0.218435 0.918014 -0.330963 0.140919 0.983259 -0.115515 0.178425 0.905077 -0.386006 0.364259 0.817074 -0.446884 0.299785 0.939825 -0.163886 0.464631 -0.750462 -0.470027 0.536199 0.720631 -0.439525 0.864301 -0.265631 -0.427112 -0.127859 0.902899 -0.410396 0.648779 -0.746777 0.14632 -0.65206 0.746179 -0.134292 0.932257 0.179954 -0.313868 0.932257 0.179954 -0.313868 0.85443 0.301563 -0.423095 0.797829 0.26596 -0.541049 0.873116 -0.177098 -0.454207 0.873116 -0.177098 -0.454207 0.649289 0.072699 -0.757059 0.753442 0.191783 -0.628923 0.6043 -0.0704 -0.793641 0.921298 -0.001363 -0.388856 0.921298 -0.001363 -0.388856 0.805464 -0.09727 -0.584608 0.710857 -0.181827 -0.679427 0.859553 -0.250977 -0.445172 -0.504833 -0.252405 -0.825491 -0.504833 -0.252405 -0.825491 -0.176988 -0.95937 -0.219738 -0.176988 -0.95937 -0.219738 0.838581 -0.043777 -0.543014 -0.50884 -0.695521 -0.507279 -0.50884 -0.695521 -0.507279 0.843621 -0.371969 -0.387224 0.843621 -0.371969 -0.387224 0.897769 0.154532 -0.41247 0.897769 0.154532 -0.41247 0.883068 0.157461 -0.442037 0.883068 0.157461 -0.442037 0.71598 -0.20424 -0.667576 0.71598 -0.20424 -0.667576 0.84052 -0.139279 -0.523572 0.84052 -0.139279 -0.523572 0.889164 0.201883 -0.410647 0.889164 0.201883 -0.410647 0.844759 0.094819 -0.526679 0.844759 0.094819 -0.526679 0.516769 -0.546521 -0.658988 0.137687 -0.761356 -0.633545 -0.073521 0.769689 -0.634171 -0.902895 -0.325759 0.280467 -0.936415 -0.200727 0.287811 -0.858832 -0.448083 0.248252 -0.80054 -0.564124 0.202238 -0.740856 -0.649577 0.170825 -0.640499 -0.727822 0.245023 -0.852262 -0.443442 0.277505 -0.785146 -0.561254 0.261802 -0.709343 -0.657204 0.254784 0.578683 -0.759785 0.2964 -0.000115 -0.99999 -0.004589 -0.00051 -0.999977 -0.006811 -3.4e-005 -0.999995 -0.003095 -0.0006 -0.999998 -0.001658 0.001309 -0.999998 0.001288 -0.003465 -0.999976 -0.006061 -0.004195 -0.999979 -0.004981 -0.000633 -0.99997 -0.007748 -0.001948 -0.999974 -0.00693 -6e-006 -0.999971 -0.007673 -0.00264 -0.99998 -0.005704 -6.6e-005 -0.999967 -0.008151 -0.00142 -0.999996 -0.002481 0.003645 -0.999993 4.6e-005 -0.002686 -0.999991 0.003221 0.002724 -0.999944 0.010221 0.004946 -0.999932 0.010546 0.006765 -0.99992 0.010688 0.004595 -0.999966 0.006817 0.001146 -0.999997 0.002298 -0.004822 -0.999982 0.003527 -0.003588 -0.999964 0.00771 -0.00298 -0.999888 0.014663 -0.001243 -0.999863 0.016531 0.001848 -0.999933 0.011451 -0.004415 -0.999984 0.003674 0.001118 -0.999907 0.013595 0.001334 -0.999999 -0.000699 -0.00033 -1 -0.000292 - - - - - - - - - - 0.245158 0.423975 0.25011 0.468112 0.150442 0.543685 0.148569 0.498875 0.302841 0.416173 0.345064 0.636086 0.339502 0.673242 0.260986 0.672117 0.283208 0.642063 0.331126 0.714598 0.241009 0.71553 0.233372 0.762934 0.302959 0.373132 0.224027 0.289653 0.23558 0.359702 0.143764 0.429085 0.134156 0.320572 0.298228 0.319321 0.288073 0.263566 0.326898 0.757163 0.328393 0.797118 0.23841 0.805793 0.60087 0.640918 0.866606 0.398924 0.510699 0.676291 0.517366 0.634965 0.871384 0.397619 0.505796 0.719121 0.878048 0.397558 0.87416 0.398826 0.86606 0.397625 0.86057 0.399008 0.501279 0.762876 0.856321 0.39906 0.497144 0.804816 0.862375 0.397683 0.860024 0.397676 0.853776 0.399148 0.494669 0.842655 0.936097 0.40457 0.495808 0.877438 0.932361 0.401286 0.944998 0.401429 0.333511 0.830512 0.255441 0.838224 0.335539 0.859065 0.275714 0.857682 0.13703 0.645509 0.099669 0.709478 0.072436 0.710311 0.114209 0.64461 0.217381 0.600094 0.193334 0.589335 0.083907 0.774978 0.093256 0.834193 0.067488 0.842396 0.056643 0.778851 0.948825 0.405179 0.543475 0.557405 0.5578 0.533271 0.685834 0.551732 0.928618 0.398828 0.939922 0.398832 0.318062 0.571086 0.304302 0.551225 0.870712 0.401462 0.862287 0.401557 0.855482 0.401642 0.85836 0.405349 0.85103 0.405417 0.86725 0.404976 0.851008 0.401767 0.84805 0.401779 0.618068 0.949096 0.595914 0.442419 0.701364 0.36472 0.704143 0.312403 0.595493 0.387203 0.757075 0.288915 0.749567 0.262372 0.79867 0.019963 0.720188 0.090411 0.342229 0.232442 0.353643 0.285267 0.846214 0.405443 0.84246 0.405195 0.945825 0.3988 0.51556 0.94314 0.529717 0.959537 0.951482 0.401365 0.955814 0.405156 0.355112 0.336459 0.416748 0.23909 0.409212 0.301844 0.412385 0.174765 0.722678 0.141004 0.371257 0.129527 0.316583 0.183819 0.278107 0.146712 0.815355 0.094326 0.586596 0.164171 0.31201 0.090946 0.272238 0.213152 0.591566 0.221736 0.775513 0.183818 0.258385 0.177707 0.714664 0.225413 0.594393 0.311859 0.803506 0.201004 0.853165 0.100422 0.240207 0.064107 0.220228 0.127313 0.134162 0.116701 0.137886 0.045291 0.20962 0.176711 0.132836 0.176022 0.393776 0.367451 0.346805 0.380154 0.21424 0.228892 0.133514 0.241035 0.127886 0.880246 0.194162 0.909528 0.176891 0.924466 0.105635 0.892789 0.298575 0.918513 0.289302 0.932026 0.41004 0.927663 0.412647 0.940987 0.152917 0.714025 0.188039 0.660899 0.251002 0.622891 0.148083 0.821618 0.139091 0.770988 0.529124 0.59406 0.624566 0.605374 0.943792 0.414167 0.33386 0.602351 0.939709 0.408955 0.951716 0.40979 0.95394 0.414936 0.863781 0.409841 0.854643 0.410095 0.847079 0.410021 0.50373 0.914675 0.043999 0.560029 0.039161 0.51728 0.035514 0.442488 0.02836 0.327681 0.57657 0.399149 0.579657 0.45714 0.483058 0.467543 0.484696 0.402538 0.027211 0.11532 0.026409 0.041836 0.027231 0.176259 0.027041 0.244825 0.496033 0.232082 0.498386 0.171519 0.545104 0.178866 0.55478 0.242428 0.486973 0.320445 0.572701 0.32584 0.253473 0.42034 0.198325 0.471074 0.201641 0.514357 0.257191 0.464291 0.304409 0.414784 0.305266 0.371658 0.230885 0.286168 0.167912 0.306331 0.188981 0.401339 0.242536 0.354324 0.300813 0.31779 0.290984 0.262458 0.644363 0.422582 0.643061 0.366324 0.70337 0.314326 0.703499 0.366966 0.745969 0.26707 0.75382 0.293297 0.343946 0.231017 0.355397 0.284532 0.356783 0.335152 0.414764 0.29281 0.419941 0.236001 0.413771 0.173263 0.370421 0.125545 0.313385 0.086563 0.282902 0.142155 0.319456 0.18046 0.261679 0.175104 0.275739 0.211488 0.247515 0.05956 0.175872 0.043369 0.166908 0.113803 0.230266 0.122298 0.162066 0.173298 0.220575 0.173418 0.399643 0.347472 0.348371 0.378515 0.850892 0.415208 0.23283 0.882474 0.174218 0.860862 0.318561 0.890705 0.412205 0.900441 0.414872 0.864697 0.414169 0.832004 0.413463 0.796679 0.414763 0.757 0.418623 0.715141 0.424042 0.67374 0.797949 0.022112 0.816816 0.093012 0.720595 0.147032 0.715991 0.092651 0.636546 0.210325 0.627672 0.148444 0.772502 0.189202 0.711355 0.231084 0.641706 0.289174 0.223314 0.226619 0.162858 0.235961 0.139391 0.505963 0.140772 0.546375 0.105327 0.324975 0.131454 0.436403 0.855305 0.0942 0.800674 0.205793 0.103269 0.042003 0.100779 0.11305 0.099208 0.173793 0.099637 0.242841 0.428561 0.633258 0.429426 0.594048 0.429051 0.559095 0.429259 0.535162 0.35272 0.639241 0.294558 0.645659 0.274212 0.673847 0.348213 0.675519 0.253789 0.714174 0.339072 0.715472 0.241562 0.759109 0.241492 0.801977 0.330569 0.796358 0.332348 0.756954 0.843668 0.414845 0.519216 0.636196 0.513483 0.677706 0.858319 0.415536 0.509018 0.719971 0.595108 0.724198 0.959154 0.409842 0.961426 0.415077 0.955396 0.420505 0.503982 0.762367 0.946551 0.419988 0.498249 0.80295 0.581926 0.813498 0.948394 0.426244 0.956245 0.426562 0.493564 0.840197 0.962774 0.420748 0.49337 0.874734 0.5689 0.884732 0.963626 0.426902 0.947821 0.439136 0.254385 0.836095 0.333265 0.830744 0.334347 0.859927 0.274272 0.857068 0.111374 0.707428 0.160452 0.654158 0.126019 0.649524 0.074711 0.707898 0.232092 0.611555 0.203545 0.598866 0.085639 0.828171 0.086444 0.767612 0.053832 0.770468 0.05904 0.833261 0.5406 0.554531 0.653253 0.57169 0.949156 0.432796 0.552741 0.532581 0.956416 0.432776 0.955188 0.438695 0.321928 0.578317 0.3053 0.558373 0.963377 0.433055 0.962074 0.438861 0.939469 0.450342 0.944673 0.445101 0.952905 0.444195 0.949616 0.449137 0.959891 0.444199 0.95721 0.449055 0.928445 0.45763 0.933041 0.454385 0.647892 0.957038 0.945196 0.453364 0.513713 0.938992 0.528694 0.953445 0.940767 0.456994 0.954246 0.453493 0.191556 0.905473 0.119561 0.876603 0.09609 0.886393 0.173642 0.917872 0.296111 0.916924 0.285563 0.930752 0.407594 0.925155 0.699705 0.808301 0.767751 0.813767 0.770203 0.857847 0.710393 0.859091 0.67046 0.86001 0.652167 0.800156 0.732575 0.902022 0.706983 0.910753 0.776574 0.894725 0.709069 0.706824 0.772884 0.721001 0.769128 0.766819 0.69961 0.756109 0.650715 0.739559 0.665169 0.685443 0.747389 0.629544 0.781976 0.645207 0.777571 0.679447 0.726035 0.663915 0.69251 0.641696 0.7256 0.608173 0.800842 0.598447 0.800844 0.613722 0.782354 0.62203 0.77064 0.606739 0.761516 0.586356 0.801211 0.57812 0.833474 0.606525 0.843418 0.585771 0.884582 0.608278 0.861681 0.62927 0.826927 0.645008 0.821482 0.621769 0.901508 0.709495 0.841154 0.721344 0.835351 0.679466 0.88519 0.664947 0.920582 0.64464 0.946246 0.692573 0.905321 0.811872 0.840491 0.814502 0.842749 0.767471 0.908491 0.759591 0.957769 0.748636 0.953229 0.808266 0.87648 0.901039 0.832824 0.894364 0.83647 0.858222 0.893987 0.860506 0.934495 0.863509 0.904941 0.908789 0.811165 0.93926 0.808557 0.928096 0.833115 0.918674 0.850764 0.928355 0.866017 0.939324 0.815782 0.955298 0.781351 0.919619 0.767445 0.930389 0.756778 0.947206 0.874321 0.260529 0.87457 0.258357 0.870642 0.262514 0.870232 0.260129 0.875205 0.262091 0.87418 0.274349 0.878088 0.275377 0.879128 0.284194 0.875282 0.284248 0.876451 0.268146 0.87176 0.26763 0.879196 0.270887 0.875496 0.265391 0.893101 0.28442 0.892287 0.271326 0.879947 0.284131 0.862255 0.219399 0.877309 0.242158 0.869772 0.241647 0.855575 0.218438 0.862432 0.239621 0.84944 0.210845 0.867315 0.244511 0.849901 0.240235 0.863194 0.266321 0.876212 0.265675 0.880423 0.283451 0.866718 0.283089 0.870498 0.254293 0.863904 0.253791 0.870234 0.270504 0.864805 0.270607 0.879852 0.25405 0.878645 0.27023 0.884908 0.221559 0.894641 0.243235 0.885819 0.242521 0.87478 0.219802 0.853855 0.205189 0.868038 0.204565 0.870975 0.210424 0.856654 0.209577 0.882303 0.208527 0.885027 0.21281 0.869343 0.207181 0.855354 0.205901 0.879862 0.246326 0.872817 0.221463 0.859409 0.2185 0.885826 0.225344 0.891813 0.248223 0.886742 0.266822 0.897889 0.269881 0.890434 0.283337 0.902191 0.283202 0.887267 0.269985 0.888486 0.253806 0.897003 0.253871 0.897865 0.269734 0.890567 0.21382 0.890889 0.214313 0.887336 0.211472 0.940502 0.247339 0.935827 0.245027 0.948386 0.259727 0.952135 0.261243 0.929477 0.246937 0.935892 0.257903 0.955141 0.271935 0.951237 0.271687 0.951697 0.282445 0.956107 0.282705 0.939971 0.271031 0.941535 0.28252 0.963745 0.266939 0.955791 0.248173 0.96377 0.246708 0.971434 0.266214 0.948554 0.235961 0.955224 0.234835 0.896396 0.245174 0.886107 0.251776 0.887306 0.25714 0.901578 0.253513 0.893935 0.234459 0.893306 0.241625 0.88488 0.259333 0.895682 0.256287 0.898524 0.274248 0.887363 0.275119 0.885952 0.26722 0.897217 0.265981 0.888292 0.284017 0.899782 0.283788 0.893557 0.224473 0.903384 0.244263 0.904117 0.226402 0.909834 0.245212 0.898452 0.232315 0.90536 0.242289 0.914901 0.24109 0.908475 0.23147 0.912117 0.251402 0.92111 0.249824 0.905103 0.223634 0.894105 0.223477 0.891627 0.223783 0.892209 0.224715 0.894785 0.217728 0.904032 0.218825 0.905292 0.26092 0.916745 0.259188 0.925679 0.257542 0.919312 0.270264 0.927598 0.269904 0.909165 0.270372 0.922229 0.248254 0.923018 0.231732 0.931448 0.236491 0.927474 0.250713 0.939132 0.243721 0.931475 0.252998 0.941395 0.236759 0.941774 0.24318 0.951181 0.24757 0.953028 0.242625 0.943442 0.249961 0.949719 0.251412 0.932269 0.241398 0.935522 0.24909 0.930136 0.234395 0.929446 0.228394 0.942151 0.230847 0.942787 0.227016 0.929372 0.224433 0.954848 0.237908 0.922857 0.256527 0.927955 0.258098 0.929776 0.270263 0.925166 0.269641 0.93313 0.259066 0.935431 0.270899 0.938091 0.256867 0.945703 0.257403 0.953024 0.257866 0.948714 0.269472 0.957575 0.269677 0.940805 0.269454 0.944953 0.253898 0.950208 0.269278 0.961307 0.253711 0.957956 0.256418 0.964661 0.269455 0.96896 0.268209 0.902892 0.249987 0.897745 0.228849 0.908596 0.231834 0.912735 0.252197 0.897122 0.224227 0.89485 0.22181 0.90624 0.226903 0.908607 0.228742 0.903082 0.242361 0.906809 0.256103 0.917237 0.255133 0.919494 0.264606 0.908311 0.265315 0.907454 0.269025 0.916487 0.269043 0.911531 0.283044 0.919593 0.2829 0.909419 0.273405 0.911476 0.28336 0.920571 0.273041 0.922157 0.283218 0.922114 0.255039 0.920062 0.238863 0.921052 0.234472 0.923775 0.23538 0.929369 0.253983 0.934895 0.263753 0.927988 0.282737 0.92516 0.269608 0.937386 0.272947 0.938515 0.283177 0.906903 0.269654 0.905634 0.25451 0.912156 0.254648 0.915624 0.269303 0.934262 0.269581 0.931993 0.256855 0.928513 0.24901 0.928512 0.223212 0.917128 0.220406 0.916725 0.220767 0.9041 0.217973 0.914088 0.228391 0.916363 0.246441 0.918617 0.23227 0.923487 0.240784 0.938248 0.22777 0.892821 0.216321 0.844542 0.206031 0.874322 0.212263 0.870581 0.286403 0.864795 0.285932 0.877377 0.285736 0.887924 0.285532 0.898823 0.285311 0.908672 0.285115 0.917425 0.284957 0.921216 0.269224 0.922914 0.284906 0.926665 0.284912 0.930758 0.284928 0.936388 0.28496 0.952837 0.284936 0.967867 0.284724 0.971593 0.266723 0.976556 0.284338 0.976161 0.284497 0.973686 0.284223 0.968029 0.284169 0.960033 0.284154 0.950775 0.284138 0.942494 0.284121 0.936182 0.284123 0.929809 0.284158 0.920968 0.284223 0.910111 0.284292 0.952943 0.272204 0.950019 0.262148 0.953976 0.282879 0.900909 0.229617 0.889642 0.217102 0.912068 0.234085 0.913562 0.243735 0.925227 0.239763 0.92311 0.245509 0.916786 0.225007 0.940372 0.24984 0.963568 0.250138 0.888081 0.264217 0.918118 0.254988 0.844126 0.209259 0.844951 0.221286 0.886769 0.216308 0.872985 0.215718 0.879346 0.309871 0.875833 0.306046 0.875654 0.308144 0.879007 0.306407 0.876295 0.294136 0.878977 0.293033 0.879812 0.300399 0.876175 0.301094 0.880254 0.30345 0.882198 0.297454 0.893175 0.297687 0.865817 0.349629 0.859181 0.350621 0.872916 0.327332 0.880252 0.326495 0.865713 0.330422 0.852822 0.359205 0.869257 0.322943 0.877097 0.301439 0.864055 0.301093 0.852819 0.327816 0.866118 0.317194 0.872679 0.31623 0.865658 0.301152 0.871305 0.301562 0.879516 0.300927 0.881998 0.315802 0.888262 0.347411 0.878301 0.348969 0.888479 0.326114 0.897047 0.325511 0.857019 0.363938 0.860381 0.359999 0.874655 0.358691 0.872015 0.364197 0.888629 0.3558 0.886097 0.359632 0.872907 0.361011 0.858128 0.36229 0.881706 0.320824 0.862423 0.349295 0.875903 0.346079 0.888714 0.341972 0.893556 0.318638 0.898554 0.296744 0.887564 0.300041 0.888147 0.300674 0.898715 0.300283 0.89883 0.31539 0.89048 0.315686 0.894383 0.353795 0.894065 0.354129 0.890921 0.356254 0.942171 0.318343 0.9529 0.304272 0.949521 0.305533 0.937705 0.320863 0.937122 0.30759 0.931259 0.318903 0.955735 0.293528 0.951772 0.293299 0.940544 0.294181 0.964624 0.302435 0.972337 0.302695 0.965634 0.321964 0.957594 0.320997 0.957663 0.333351 0.950951 0.332759 0.897685 0.323309 0.904388 0.314564 0.887892 0.312338 0.888936 0.316243 0.699423 0.809253 0.710111 0.860044 0.769921 0.8588 0.767468 0.81472 0.651885 0.801109 0.669688 0.860514 0.732293 0.902975 0.706453 0.911484 0.776292 0.895678 0.708787 0.707777 0.699329 0.757062 0.768846 0.767772 0.772602 0.721954 0.664887 0.686395 0.650433 0.740512 0.747107 0.630497 0.725753 0.664868 0.777288 0.6804 0.781693 0.64616 0.725318 0.609127 0.692228 0.642648 0.80056 0.5994 0.770358 0.607692 0.782072 0.622983 0.800562 0.614675 0.800928 0.579073 0.761234 0.587309 0.833192 0.607478 0.861399 0.630223 0.8843 0.609231 0.843136 0.586725 0.8212 0.622722 0.826645 0.645961 0.901226 0.710448 0.884907 0.6659 0.835069 0.680418 0.840872 0.722297 0.945964 0.693526 0.920299 0.645594 0.905039 0.812825 0.908209 0.760544 0.842467 0.768423 0.840209 0.815454 0.952947 0.809219 0.957487 0.749588 0.876198 0.901993 0.893705 0.861459 0.836187 0.859175 0.832541 0.895317 0.904659 0.909742 0.934213 0.864462 0.810883 0.940213 0.850482 0.929308 0.832833 0.919627 0.808275 0.929049 0.815494 0.955807 0.865735 0.940277 0.767163 0.931342 0.781069 0.920572 0.878641 0.308129 0.757688 0.947696 0.89571 0.326063 0.896265 0.333541 0.887647 0.308911 0.896958 0.311973 0.898883 0.293285 0.897963 0.301935 0.887703 0.301029 0.887878 0.29293 0.905567 0.324686 0.896731 0.344468 0.906991 0.342485 0.911791 0.324251 0.900908 0.335596 0.911043 0.336295 0.917143 0.326675 0.907054 0.325968 0.923285 0.31808 0.915184 0.316034 0.908088 0.344187 0.897103 0.344536 0.894607 0.344154 0.895142 0.343144 0.898106 0.350443 0.90726 0.349181 0.907871 0.308374 0.918398 0.309598 0.927049 0.310818 0.928305 0.298442 0.920004 0.298182 0.909927 0.298243 0.924036 0.321254 0.929162 0.318872 0.933826 0.332572 0.925629 0.337191 0.941158 0.32555 0.933051 0.316658 0.943727 0.330971 0.955075 0.325269 0.952983 0.320359 0.943791 0.324629 0.951332 0.316568 0.945126 0.31796 0.937248 0.318798 0.934373 0.326359 0.932584 0.333273 0.932192 0.3393 0.932318 0.343421 0.945607 0.340893 0.944776 0.336887 0.957129 0.33006 0.924262 0.313255 0.925922 0.300164 0.930502 0.299579 0.929283 0.311724 0.936126 0.298969 0.93441 0.310774 0.939442 0.311396 0.947027 0.310849 0.954323 0.310334 0.958291 0.298597 0.94944 0.298819 0.941532 0.298832 0.946483 0.315703 0.950981 0.300512 0.962811 0.314479 0.969751 0.300159 0.965388 0.298807 0.959326 0.311738 0.904541 0.316598 0.900452 0.33816 0.911146 0.334819 0.914268 0.314088 0.900043 0.343367 0.910827 0.338483 0.909045 0.340214 0.897918 0.345703 0.907714 0.311836 0.905082 0.324826 0.918749 0.311513 0.909052 0.30192 0.920236 0.301846 0.91718 0.297035 0.908155 0.297332 0.909931 0.29344 0.92041 0.293444 0.923496 0.310879 0.922253 0.327378 0.925923 0.331262 0.923469 0.332076 0.930583 0.312153 0.934974 0.302503 0.925817 0.29614 0.93758 0.293425 0.907706 0.300101 0.916398 0.300537 0.913653 0.315103 0.907277 0.314776 0.934984 0.298714 0.933344 0.311407 0.930312 0.318902 0.931529 0.345055 0.919853 0.347075 0.920283 0.347817 0.907379 0.350402 0.918259 0.323025 0.916863 0.340467 0.921166 0.335346 0.925584 0.327014 0.941044 0.340685 0.896265 0.352186 0.847118 0.363087 0.877923 0.355511 0.921992 0.300554 0.972463 0.301867 0.950828 0.303658 0.953466 0.293583 0.892951 0.350759 0.90326 0.337983 0.915596 0.322974 0.91417 0.333036 0.927312 0.326701 0.92504 0.320904 0.919699 0.342662 0.941871 0.316003 0.965254 0.318221 0.889956 0.306147 0.919598 0.314755 0.845891 0.359181 0.847322 0.346695 0.890112 0.35133 0.87636 0.352039 0.950166 0.457401 0.877438 0.456074 0.890333 0.455013 0.891902 0.457826 0.881771 0.45805 0.893433 0.460126 0.885457 0.459788 0.90216 0.458193 0.902038 0.46051 0.902093 0.455956 0.869348 0.456995 0.875073 0.458463 0.870949 0.459563 0.865831 0.459946 0.88002 0.459819 0.876379 0.459992 0.890696 0.462723 0.889158 0.462546 0.893089 0.46287 0.842115 0.409869 0.837426 0.409453 0.838646 0.414482 0.833434 0.414204 0.847163 0.42056 0.840709 0.41957 0.839445 0.430603 0.83503 0.428579 0.852464 0.422383 0.843659 0.433436 0.835601 0.419062 0.830596 0.418889 0.831257 0.427506 0.827802 0.427141 0.876435 0.450731 0.866399 0.449489 0.869211 0.447456 0.878828 0.448367 0.861778 0.461251 0.86329 0.45579 0.869445 0.454182 0.919848 0.462088 0.9244 0.459418 0.936505 0.460001 0.932799 0.462552 0.914853 0.457033 0.912969 0.45878 0.983064 0.742705 0.970242 0.681277 0.978343 0.807461 0.961861 0.871181 0.925 0.920764 0.93957 0.629718 0.896636 0.591965 0.87816 0.953598 0.820182 0.969676 0.849136 0.56846 0.801508 0.561342 0.753635 0.961316 0.693916 0.922274 0.756457 0.570463 0.715065 0.59271 0.62759 0.729278 0.628526 0.797321 0.647916 0.672373 0.648988 0.865355 0.678001 0.627321 0.970524 0.680324 0.983346 0.741752 0.978626 0.806509 0.962143 0.870229 0.925282 0.919811 0.896919 0.591012 0.939853 0.628765 0.878442 0.952645 0.819304 0.969461 0.80179 0.560389 0.849419 0.567507 0.753465 0.960832 0.694447 0.921544 0.715348 0.591757 0.756739 0.569509 0.628808 0.796368 0.627873 0.728326 0.648199 0.671421 0.648584 0.866073 0.678283 0.626368 0.411737 0.936637 0.212659 0.665019 0.175067 0.711347 0.264355 0.628942 0.154113 0.763611 0.154483 0.81452 0.911051 0.461039 0.528987 0.594894 0.945951 0.460521 0.339791 0.607004 0.94197 0.46307 0.896594 0.462992 0.902819 0.462828 0.939147 0.46498 0.588358 0.917245 0.930869 0.464578 0.500784 0.908814 0.937502 0.466649 0.178893 0.855096 0.23388 0.878659 0.317203 0.888741 0.409219 0.897533 0.412456 0.865776 0.413517 0.832907 0.415303 0.797177 0.41903 0.758087 0.424284 0.717135 0.429773 0.675932 0.433166 0.635493 0.431719 0.596003 0.42845 0.560105 0.426262 0.535529 0.166927 0.932027 0.089131 0.90146 0.412839 0.954955 0.280654 0.94225 0.092604 0.643694 0.172265 0.583534 0.034269 0.783775 0.048602 0.713913 0.288973 0.53753 0.047197 0.849027 0.9297 0.466322 0.910929 0.462701 0.429574 0.516361 0.573602 0.514995 0.911763 0.464455 0.904647 0.46452 0.91245 0.466086 0.906026 0.466148 0.920833 0.464349 0.682918 0.980037 0.544365 0.975068 0.92089 0.466118 0.274953 0.94136 0.412382 0.948959 0.078614 0.893197 0.159929 0.926191 0.045546 0.712112 0.029763 0.775258 0.174568 0.589926 0.093871 0.647648 0.286715 0.542233 0.039682 0.837587 0.568016 0.514851 0.425296 0.517534 0.89967 0.464526 0.715649 0.536695 0.89649 0.46445 0.90127 0.466162 0.89793 0.466107 0.92457 0.397524 0.934172 0.397517 0.90196 0.397532 0.543555 0.96576 0.912366 0.397543 0.914428 0.398827 0.902477 0.39881 0.887934 0.397535 0.886084 0.398748 0.939158 0.397548 0.916553 0.401268 0.903345 0.401161 0.918892 0.404595 0.904419 0.40426 0.88377 0.401252 0.880927 0.404722 0.905294 0.428912 0.905488 0.424961 0.912357 0.424967 0.91334 0.429138 0.905906 0.421495 0.911087 0.422154 0.904076 0.437412 0.90478 0.43319 0.913199 0.433998 0.911884 0.43877 0.90321 0.444063 0.903361 0.441071 0.909872 0.442542 0.908067 0.444769 0.902496 0.453271 0.918142 0.453706 0.928783 0.450398 0.93573 0.445715 0.939896 0.439756 0.941415 0.433124 0.940295 0.426582 0.937084 0.420446 0.931618 0.414911 0.921769 0.409549 0.905101 0.407893 0.876573 0.40992 0.866307 0.415598 0.859425 0.421874 0.854503 0.429219 0.846009 0.439206 0.853866 0.435555 0.855666 0.44134 0.849189 0.44441 0.859693 0.44628 0.853635 0.449316 0.859396 0.453185 0.889827 0.45174 0.862926 0.421743 0.859205 0.428005 0.869662 0.416377 0.857993 0.434235 0.859086 0.440054 0.916008 0.412068 0.903601 0.410265 0.918257 0.418305 0.91053 0.415402 0.913091 0.413541 0.921836 0.416936 0.92534 0.416062 0.879532 0.412275 0.931494 0.42114 0.923547 0.422692 0.927682 0.421785 0.926515 0.428111 0.931209 0.427509 0.93512 0.42705 0.936295 0.433481 0.92732 0.434037 0.932331 0.433786 0.925669 0.439922 0.930432 0.440034 0.934525 0.439972 0.912845 0.451737 0.922595 0.449614 0.907361 0.448978 0.915126 0.447877 0.918684 0.448912 0.909842 0.450414 0.901128 0.451294 0.929882 0.445604 0.921412 0.444811 0.925747 0.445329 0.862632 0.44473 0.90791 0.418325 0.914417 0.420366 0.918293 0.424021 0.92059 0.42877 0.920879 0.434155 0.919487 0.439514 0.911345 0.446349 0.90499 0.446728 0.916084 0.443813 0.891421 0.410387 0.891335 0.407994 0.8923 0.404278 0.892667 0.401108 0.892803 0.398753 0.893101 0.397518 0.953337 0.401538 0.958091 0.405199 0.9475 0.399036 0.96186 0.409791 0.964499 0.415028 0.96612 0.420717 0.967305 0.426924 0.967388 0.433074 0.966427 0.438883 0.96451 0.444202 0.961861 0.44894 0.958944 0.453645 0.955428 0.457592 0.951844 0.460785 0.948132 0.463506 0.945008 0.465414 0.9428 0.466896 0.940897 0.39766 0.894646 0.464377 0.893748 0.464327 0.895819 0.465909 0.894732 0.465707 0.898046 0.468336 0.895591 0.467749 0.894211 0.467377 0.894053 0.470321 0.892528 0.469525 0.89702 0.472125 0.906461 0.46806 0.901761 0.468217 0.901883 0.471147 0.906501 0.470456 0.912592 0.467918 0.912253 0.470089 0.920682 0.467923 0.920674 0.470154 0.9293 0.468129 0.929876 0.470181 0.93702 0.468441 0.938213 0.470896 0.942275 0.468514 0.942757 0.470744 0.890006 0.4495 0.852976 0.399065 0.859393 0.397599 0.847065 0.401675 0.84127 0.405026 0.953466 0.401386 0.958188 0.405089 0.947588 0.398916 0.961862 0.409747 0.964391 0.415022 0.965926 0.420729 0.967068 0.426923 0.967242 0.433135 0.966314 0.439008 0.964406 0.444378 0.961584 0.44912 0.958267 0.453722 0.954279 0.457569 0.865611 0.460368 0.870463 0.459645 0.869977 0.459728 0.865391 0.460791 0.875883 0.460032 0.875386 0.460071 0.889107 0.462568 0.889055 0.46259 0.836433 0.409343 0.829542 0.419704 0.832578 0.41403 0.832317 0.414141 0.82924 0.419624 0.86181 0.461905 0.861843 0.46256 0.95053 0.46075 0.946775 0.4634 0.943577 0.465237 0.941527 0.466697 0.893773 0.464335 0.893798 0.464342 0.894526 0.465626 0.894385 0.465571 0.940912 0.397604 0.893807 0.467247 0.893563 0.467166 0.891985 0.469369 0.891535 0.469419 0.940364 0.468392 0.940762 0.470517 0.866236 0.398834 0.873711 0.398813 0.877506 0.397514 0.870971 0.397493 0.865522 0.397455 0.860032 0.398872 0.856026 0.399014 0.861954 0.397568 0.860159 0.397664 0.853853 0.399094 0.935431 0.404681 0.948546 0.405179 0.944496 0.401457 0.931632 0.401375 0.939488 0.398861 0.927974 0.398901 0.870657 0.401504 0.861966 0.401526 0.855096 0.4016 0.850751 0.405417 0.858121 0.405363 0.867731 0.405188 0.850561 0.401575 0.848094 0.401586 0.842791 0.404957 0.845766 0.405198 0.9455 0.398818 0.951158 0.401375 0.955535 0.405156 0.94295 0.41441 0.9536 0.414936 0.951437 0.40979 0.938847 0.409148 0.863906 0.410047 0.854469 0.410101 0.8468 0.410021 0.843291 0.414792 0.850618 0.415218 0.858112 0.415702 0.958875 0.409842 0.961147 0.415077 0.9551 0.420509 0.945887 0.42022 0.947818 0.426423 0.955942 0.426574 0.962495 0.420748 0.963347 0.426902 0.947179 0.438896 0.955415 0.438781 0.95627 0.432802 0.948355 0.432791 0.963455 0.433109 0.96255 0.43901 0.93973 0.449457 0.950281 0.449152 0.953464 0.44429 0.944309 0.444589 0.960647 0.444424 0.957836 0.449233 0.928866 0.456683 0.941589 0.457208 0.946319 0.453375 0.933669 0.453285 0.954103 0.453514 0.949874 0.457416 0.877353 0.455968 0.882269 0.458025 0.892317 0.457757 0.890577 0.455047 0.886684 0.460112 0.89423 0.460211 0.902677 0.460467 0.90267 0.458019 0.902808 0.455334 0.869597 0.456984 0.865825 0.458435 0.871446 0.458982 0.8752 0.458466 0.877063 0.46 0.880928 0.46006 0.889224 0.462652 0.890358 0.462714 0.892541 0.462593 0.841603 0.409572 0.838159 0.409243 0.834209 0.413908 0.837981 0.414182 0.839885 0.419736 0.846514 0.420792 0.834481 0.428371 0.838869 0.430451 0.84343 0.433385 0.852102 0.422532 0.830666 0.418987 0.834732 0.419195 0.827717 0.426976 0.830662 0.427303 0.875777 0.450429 0.878346 0.448288 0.868619 0.446935 0.865577 0.448677 0.860982 0.459109 0.863516 0.455972 0.868771 0.453598 0.919955 0.462087 0.933215 0.46265 0.936971 0.460171 0.92452 0.45941 0.915797 0.455832 0.913434 0.458571 0.911682 0.460937 0.945768 0.460575 0.941689 0.463136 0.897291 0.462545 0.903757 0.462585 0.930828 0.464538 0.938505 0.464915 0.929084 0.466249 0.936418 0.466469 0.911714 0.462545 0.904992 0.464496 0.91226 0.464434 0.906001 0.466171 0.912549 0.466198 0.920438 0.466178 0.920682 0.464371 0.899694 0.464496 0.896238 0.464476 0.897673 0.46607 0.901142 0.46612 0.933851 0.397545 0.924135 0.397565 0.901567 0.397461 0.902111 0.398787 0.913998 0.398826 0.911927 0.397463 0.885568 0.398789 0.887707 0.397486 0.939027 0.397536 0.902897 0.401138 0.916139 0.401275 0.904075 0.404332 0.918631 0.404656 0.883077 0.401373 0.880245 0.404983 0.905419 0.428922 0.912942 0.429219 0.912006 0.425106 0.905474 0.425025 0.910791 0.422281 0.905844 0.421559 0.904305 0.436885 0.911907 0.438227 0.913047 0.433844 0.905052 0.432984 0.903203 0.443238 0.908124 0.443775 0.909903 0.441649 0.903445 0.440313 0.90285 0.452456 0.918742 0.45246 0.929033 0.449192 0.935553 0.444785 0.939489 0.439171 0.940895 0.433027 0.939916 0.426757 0.936762 0.420698 0.931211 0.415109 0.90461 0.407951 0.921344 0.40965 0.876099 0.410269 0.865754 0.416146 0.858856 0.422274 0.85408 0.42925 0.845714 0.439016 0.8487 0.443676 0.855252 0.440105 0.853622 0.434905 0.852614 0.447663 0.858958 0.44511 0.858176 0.451853 0.889824 0.45148 0.858947 0.427844 0.863033 0.422095 0.869857 0.416948 0.858451 0.439034 0.857612 0.433475 0.903128 0.410252 0.915613 0.4122 0.910336 0.415321 0.91773 0.418674 0.921258 0.417307 0.91279 0.413538 0.924944 0.416332 0.879341 0.412694 0.930972 0.4215 0.922517 0.423241 0.926792 0.422268 0.92506 0.428584 0.929895 0.42793 0.93442 0.427304 0.935453 0.433435 0.925801 0.434263 0.930838 0.433902 0.924243 0.439743 0.929152 0.439726 0.933786 0.439455 0.922618 0.448568 0.913071 0.450609 0.91472 0.447235 0.9073 0.44856 0.909883 0.449686 0.918464 0.448158 0.90106 0.450464 0.929479 0.444749 0.920523 0.44435 0.924927 0.444695 0.861743 0.443993 0.907779 0.418347 0.914012 0.420577 0.917709 0.42432 0.919641 0.429082 0.919962 0.434273 0.918588 0.43924 0.904848 0.446138 0.911088 0.445577 0.915514 0.4432 0.890897 0.408138 0.891059 0.410492 0.89188 0.404459 0.892481 0.401195 0.892744 0.398811 0.892774 0.397499 0.852987 0.39915 0.859402 0.397672 0.847027 0.401638 0.84144 0.40503 0.836758 0.409301 0.826856 0.427241 0.893304 0.464316 0.894343 0.465793 0.894093 0.464377 0.895401 0.465971 0.893628 0.467665 0.890751 0.471053 0.897653 0.467915 0.895086 0.467874 0.893376 0.47055 0.896513 0.470318 0.906138 0.467954 0.901291 0.467913 0.900442 0.470186 0.905385 0.470181 0.912382 0.468058 0.911527 0.470316 0.918635 0.470453 0.91977 0.468076 0.926488 0.470872 0.927835 0.468189 0.935282 0.468257 0.935209 0.471328 0.877915 0.500707 0.878197 0.500625 0.878935 0.505269 0.878376 0.50543 0.87849 0.500327 0.879515 0.504678 0.878776 0.499827 0.880077 0.503685 0.879041 0.499148 0.880596 0.502336 0.879273 0.498323 0.88105 0.500691 0.879461 0.49739 0.881414 0.498833 0.879595 0.496393 0.881685 0.496848 0.879673 0.495381 0.881831 0.494834 0.879688 0.4944 0.881855 0.492886 0.879641 0.493495 0.881754 0.491093 0.879517 0.492692 0.881496 0.489502 0.879256 0.49199 0.880966 0.488128 0.878724 0.491679 0.879976 0.487255 0.880441 0.487544 0.878985 0.491764 0.880259 0.509816 0.879427 0.510054 0.881118 0.508941 0.881951 0.507469 0.882719 0.50547 0.883385 0.503037 0.883918 0.500283 0.884295 0.497337 0.884501 0.494341 0.884524 0.491438 0.884373 0.488781 0.883999 0.486461 0.88321 0.484429 0.882394 0.483424 0.882124 0.514208 0.881033 0.51452 0.883251 0.513061 0.884343 0.511133 0.885349 0.508513 0.886222 0.505324 0.886921 0.501715 0.887414 0.497854 0.887677 0.493924 0.887702 0.490113 0.887496 0.486645 0.88698 0.48361 0.885938 0.48091 0.884878 0.479558 0.884506 0.51838 0.88317 0.518762 0.885883 0.516979 0.887217 0.514621 0.888447 0.511419 0.889514 0.507521 0.890369 0.503109 0.890971 0.49839 0.891293 0.493586 0.89132 0.488919 0.891054 0.484665 0.890395 0.481066 0.88919 0.477958 0.887817 0.476052 0.887367 0.522273 0.885807 0.522719 0.888975 0.520637 0.890533 0.517885 0.891968 0.514147 0.893214 0.509596 0.894212 0.504446 0.894915 0.498938 0.895291 0.493329 0.895322 0.487882 0.895 0.482915 0.894205 0.478779 0.892842 0.475169 0.891068 0.473073 0.890668 0.525829 0.888906 0.526332 0.892483 0.523982 0.894241 0.520876 0.895861 0.516656 0.897267 0.51152 0.898394 0.505707 0.899187 0.499489 0.899612 0.493158 0.899646 0.487009 0.899286 0.481354 0.898411 0.476638 0.894359 0.528996 0.892421 0.529549 0.896354 0.526965 0.898288 0.52355 0.900069 0.518911 0.901615 0.513263 0.902854 0.506872 0.903726 0.500036 0.904193 0.493075 0.904231 0.486314 0.903834 0.4801 0.902975 0.47504 0.898388 0.531728 0.896302 0.532323 0.900534 0.529543 0.902614 0.525869 0.904531 0.520877 0.906194 0.514801 0.907527 0.507925 0.908466 0.50057 0.908967 0.493081 0.909009 0.485806 0.908572 0.479151 0.907654 0.473824 0.902694 0.533986 0.900491 0.534614 0.90496 0.531679 0.907157 0.527799 0.909181 0.522528 0.910937 0.516111 0.912345 0.50885 0.913336 0.501084 0.913866 0.493175 0.913909 0.485494 0.91346 0.478418 0.912585 0.472851 0.907215 0.535736 0.904927 0.536388 0.909569 0.53334 0.91185 0.529311 0.913952 0.523838 0.915776 0.517175 0.917237 0.509635 0.918266 0.50157 0.918854 0.493342 0.918947 0.485357 0.91844 0.478006 0.91787 0.471971 0.914263 0.537286 0.911914 0.537955 0.916678 0.534827 0.919019 0.530693 0.921175 0.525076 0.923047 0.518239 0.924546 0.510502 0.925585 0.502224 0.926227 0.493754 0.926493 0.485583 0.925762 0.478045 0.924764 0.471485 0.921403 0.537724 0.919062 0.538392 0.92381 0.535275 0.926142 0.531156 0.930338 0.525761 0.93162 0.519674 0.933283 0.512932 0.932692 0.502839 0.933977 0.494768 0.934333 0.486371 0.933206 0.478784 0.931863 0.472204 0.92611 0.537268 0.92382 0.53792 0.928464 0.534872 0.932388 0.530343 0.937335 0.506755 0.941235 0.498334 0.941521 0.487989 0.940371 0.480184 0.938481 0.473907 0.930691 0.536256 0.928485 0.536884 0.934789 0.533043 0.935078 0.534703 0.932989 0.535298 0.938368 0.532576 0.947164 0.489068 0.947066 0.497764 0.946239 0.481893 0.944283 0.476284 0.939209 0.532632 0.937267 0.533185 0.941919 0.530982 0.950689 0.490156 0.950271 0.497772 0.95034 0.48345 0.948203 0.478162 0.943023 0.530074 0.941256 0.530577 0.945589 0.528338 0.95349 0.491089 0.952472 0.498024 0.953154 0.485389 0.951415 0.480527 0.946464 0.527065 0.944898 0.52751 0.948879 0.525086 0.955336 0.498108 0.955494 0.49227 0.955142 0.488211 0.954263 0.484425 0.949389 0.475505 0.954052 0.482326 0.94757 0.475109 0.945693 0.473082 0.943613 0.471998 0.950577 0.521636 0.949187 0.522238 0.951775 0.520708 0.950886 0.519379 0.952605 0.518141 0.95447 0.515316 0.952742 0.516616 0.878125 0.495997 0.943537 0.514246 0.944979 0.511457 0.945299 0.511731 0.944004 0.514141 0.946866 0.510467 0.945612 0.512005 0.946775 0.509925 0.944125 0.524447 0.943125 0.523168 0.943363 0.52176 0.944265 0.522893 0.943213 0.51865 0.9436 0.520352 0.942839 0.519741 0.942465 0.520831 0.942508 0.517563 0.943036 0.516979 0.944472 0.514036 0.943564 0.516394 0.946664 0.509365 0.948503 0.507957 0.948316 0.508687 0.949207 0.508705 0.948096 0.509397 0.949608 0.50791 0.950009 0.507096 0.951195 0.506751 0.950679 0.507606 0.951005 0.508659 0.950161 0.508443 0.951647 0.507843 0.952323 0.510866 0.951744 0.509448 0.952587 0.5089 0.953318 0.510638 0.952296 0.507042 0.953444 0.508317 0.954198 0.510416 0.954069 0.512878 0.953344 0.512779 0.95222 0.51488 0.952538 0.512757 0.952777 0.515115 0.953314 0.515413 0.952001 0.51802 0.951641 0.517475 0.949848 0.518868 0.951263 0.516984 0.950071 0.519673 0.950291 0.520481 0.948367 0.522605 0.94826 0.52146 0.946642 0.521256 0.948152 0.520315 0.946704 0.522693 0.946766 0.524131 0.94537 0.524785 0.945389 0.52319 0.944404 0.521338 0.945409 0.521595 0.948517 0.508521 0.947425 0.509189 0.946164 0.510225 0.943731 0.513771 0.942852 0.515989 0.942484 0.51808 0.944874 0.511783 0.950283 0.508511 0.949456 0.508269 0.942699 0.51973 0.943487 0.520694 0.951552 0.510694 0.95099 0.509314 0.944633 0.521012 0.946034 0.520645 0.951461 0.514432 0.951791 0.512457 0.947604 0.519694 0.949207 0.518265 0.95053 0.516413 0.954352 0.507334 0.955064 0.51004 0.953029 0.50566 0.954691 0.513093 0.953563 0.516187 0.942931 0.511155 0.945738 0.50837 0.941124 0.514785 0.948237 0.525023 0.946042 0.527051 0.950358 0.522206 0.940778 0.525984 0.939919 0.523165 0.942236 0.527579 0.940031 0.519157 0.94836 0.506655 0.95038 0.505668 0.951792 0.505283 0.952106 0.519194 0.94408 0.527997 0.955136 0.505085 0.955458 0.508799 0.953996 0.503048 0.954947 0.51289 0.953571 0.516724 0.940392 0.509704 0.943959 0.505926 0.937487 0.514053 0.946965 0.527152 0.943743 0.529685 0.949863 0.52392 0.936263 0.528363 0.934831 0.524989 0.938515 0.530358 0.93544 0.520327 0.947235 0.504116 0.949823 0.503295 0.952034 0.502955 0.951882 0.52041 0.941028 0.53079 0.956255 0.501869 0.956376 0.507194 0.955436 0.512282 0.95378 0.516679 0.954272 0.512902 0.953969 0.514386 0.955477 0.513065 0.955509 0.511632 0.956562 0.510151 0.957541 0.50583 0.957528 0.506237 0.957401 0.500104 0.957323 0.498901 0.956684 0.496896 0.956413 0.492938 0.956425 0.492794 0.955922 0.48933 0.955605 0.489791 0.952251 0.480529 0.95403 0.483685 0.955302 0.484788 0.955335 0.486204 0.955539 0.486154 0.954877 0.485325 0.956687 0.508947 0.956754 0.495687 0.955045 0.487387 0.877848 0.505182 0.877652 0.500582 0.87737 0.504506 0.877412 0.500243 0.876974 0.503437 0.877218 0.499703 0.87668 0.502023 0.877063 0.498994 0.876501 0.50033 0.876979 0.498142 0.876446 0.498438 0.87696 0.497191 0.876522 0.496436 0.877006 0.496186 0.876728 0.49442 0.877115 0.495174 0.877054 0.492488 0.877281 0.494204 0.877479 0.49073 0.877498 0.49332 0.877999 0.489197 0.877767 0.492546 0.878719 0.487808 0.878144 0.491879 0.879235 0.487423 0.878402 0.491725 0.878643 0.509686 0.877934 0.508686 0.877348 0.507101 0.876912 0.505005 0.876647 0.502497 0.876565 0.499694 0.876669 0.496727 0.876956 0.493734 0.877416 0.490859 0.878045 0.488251 0.878803 0.485988 0.879891 0.48389 0.880652 0.483253 0.880004 0.514038 0.879075 0.512727 0.878307 0.510649 0.877736 0.507903 0.877388 0.504616 0.87728 0.500942 0.877417 0.497054 0.877793 0.493132 0.878389 0.48936 0.879214 0.485947 0.880199 0.482989 0.881623 0.480314 0.882641 0.479405 0.881911 0.518172 0.880775 0.516569 0.879836 0.51403 0.879138 0.510673 0.878713 0.506655 0.878582 0.502165 0.878749 0.497412 0.879208 0.492618 0.879955 0.488021 0.881001 0.483899 0.88231 0.480367 0.883909 0.47731 0.885135 0.475926 0.884336 0.52203 0.883011 0.520159 0.881915 0.517195 0.8811 0.513276 0.880604 0.508586 0.88045 0.503344 0.880646 0.497795 0.881181 0.492199 0.882059 0.48684 0.883257 0.482017 0.884772 0.477872 0.886828 0.474331 0.888116 0.472377 0.887245 0.525554 0.885749 0.523442 0.884512 0.520096 0.883592 0.515673 0.883032 0.510379 0.882858 0.504462 0.883079 0.498199 0.883683 0.491882 0.884656 0.485819 0.885976 0.480334 0.887771 0.475644 0.888962 0.472096 0.890594 0.528694 0.888949 0.526372 0.887589 0.522693 0.886578 0.51783 0.885962 0.512009 0.885771 0.505504 0.886014 0.498617 0.886678 0.491672 0.887734 0.484992 0.889161 0.478945 0.891005 0.474124 0.894335 0.531403 0.892565 0.528905 0.891102 0.524947 0.890014 0.519714 0.889351 0.513452 0.889146 0.506453 0.889407 0.499043 0.890122 0.491571 0.891258 0.484384 0.892815 0.477978 0.894695 0.473363 0.898413 0.533643 0.896544 0.531004 0.894999 0.526825 0.89385 0.5213 0.893151 0.514687 0.892934 0.507295 0.893209 0.499472 0.893965 0.491581 0.895164 0.483992 0.89686 0.477387 0.898865 0.473076 0.902769 0.53538 0.900829 0.53264 0.899224 0.5283 0.898031 0.522562 0.897305 0.515695 0.897079 0.50802 0.897366 0.499895 0.89815 0.491701 0.899396 0.483821 0.901449 0.477074 0.903819 0.472976 0.909699 0.53692 0.907707 0.534109 0.906061 0.529655 0.904836 0.523767 0.904091 0.516721 0.90386 0.508844 0.904153 0.500507 0.904958 0.492099 0.906237 0.484012 0.908008 0.477129 0.910034 0.473198 0.916854 0.53736 0.91487 0.534559 0.91323 0.530122 0.914164 0.524465 0.913164 0.518196 0.913437 0.51134 0.91133 0.50108 0.912131 0.492703 0.913405 0.484646 0.91513 0.47783 0.916994 0.473623 0.92166 0.536911 0.919719 0.534172 0.91917 0.529284 0.917172 0.505296 0.919838 0.496406 0.920904 0.486229 0.92238 0.479225 0.924263 0.474614 0.926405 0.535913 0.924828 0.532245 0.931019 0.534378 0.929686 0.53188 0.92797 0.487724 0.927599 0.495894 0.929366 0.480734 0.931925 0.475167 0.935435 0.53233 0.934387 0.530379 0.933232 0.488977 0.932764 0.496065 0.934736 0.482159 0.937602 0.476887 0.93959 0.529799 0.938848 0.527798 0.937731 0.490249 0.936964 0.496523 0.939215 0.484123 0.942421 0.479379 0.943421 0.526821 0.942722 0.524593 0.94207 0.497013 0.942329 0.491435 0.943599 0.487511 0.946933 0.482758 0.949756 0.480976 0.945342 0.476815 0.940652 0.473783 0.947564 0.521395 0.9466 0.520277 0.951324 0.514898 0.949518 0.517928 0.928377 0.510114 0.926885 0.51291 0.927854 0.512845 0.929178 0.51043 0.92998 0.510746 0.931406 0.509225 0.930823 0.508639 0.92835 0.521984 0.930534 0.523359 0.930891 0.521821 0.928964 0.520607 0.929579 0.519229 0.928441 0.517467 0.927597 0.51852 0.926179 0.516255 0.926753 0.519573 0.927195 0.51571 0.928211 0.515165 0.928823 0.512781 0.932374 0.506682 0.930239 0.508053 0.932657 0.507439 0.93294 0.508196 0.934517 0.507536 0.93451 0.506707 0.936567 0.505592 0.934502 0.505878 0.936317 0.506456 0.936067 0.50732 0.937546 0.507578 0.93807 0.506748 0.938901 0.508422 0.940036 0.50988 0.941088 0.509726 0.939772 0.507879 0.940713 0.507314 0.938594 0.505926 0.942911 0.511998 0.942269 0.509491 0.941755 0.511888 0.940774 0.511818 0.940867 0.513981 0.941724 0.514237 0.941696 0.517149 0.942674 0.514592 0.940898 0.516619 0.940099 0.51609 0.938667 0.517973 0.939267 0.518807 0.937547 0.521739 0.939868 0.519641 0.937153 0.52057 0.936759 0.519402 0.934851 0.520311 0.935057 0.52176 0.932933 0.523788 0.935263 0.523209 0.932985 0.522196 0.933038 0.520604 0.931248 0.520284 0.932573 0.508007 0.934161 0.507367 0.930964 0.509008 0.927841 0.514787 0.928411 0.512543 0.928106 0.516928 0.929515 0.510546 0.935671 0.507169 0.937081 0.507438 0.929093 0.51864 0.93071 0.519671 0.938351 0.508298 0.9394 0.509723 0.932552 0.520045 0.934434 0.519715 0.940079 0.511519 0.940113 0.513519 0.936336 0.518792 0.938116 0.517377 0.939405 0.515521 0.943638 0.508965 0.941943 0.506311 0.939071 0.504531 0.94388 0.51543 0.944335 0.512165 0.927944 0.506963 0.925069 0.509715 0.923231 0.513349 0.935271 0.526189 0.938229 0.524222 0.940839 0.521447 0.923484 0.521848 0.925731 0.524779 0.928789 0.526502 0.922597 0.517761 0.93396 0.504385 0.931029 0.505302 0.936534 0.504088 0.942769 0.518413 0.932116 0.527039 0.945351 0.507568 0.943089 0.503744 0.939896 0.502018 0.945354 0.516015 0.946118 0.511811 0.925289 0.504712 0.920962 0.50815 0.918385 0.51252 0.934537 0.528948 0.938552 0.526478 0.941809 0.523283 0.918305 0.523665 0.921702 0.527196 0.925959 0.529352 0.917212 0.518867 0.933078 0.501722 0.929349 0.502508 0.936447 0.501609 0.943896 0.519878 0.930309 0.529931 0.948005 0.505607 0.944871 0.499392 0.947806 0.516062 0.9491 0.511191 0.953215 0.511264 0.952698 0.512701 0.951135 0.50884 0.950868 0.504414 0.946032 0.497811 0.946155 0.49879 0.9504 0.504692 0.944108 0.496015 0.944681 0.492183 0.945966 0.489086 0.945497 0.488606 0.944291 0.491984 0.951345 0.48426 0.948386 0.485293 0.952907 0.485943 0.952013 0.507755 0.944606 0.494766 0.94856 0.486751 0.889967 0.448966 0.879572 0.4873 0.878531 0.491695 0.881189 0.483034 0.883359 0.479059 0.88597 0.475436 0.826451 0.427416 0.889758 0.472115 0.881748 0.482959 0.884054 0.478968 0.886811 0.475429 0.942835 0.472365 0.877975 0.397658 0.883515 0.397651 0.873951 0.397664 0.870831 0.397671 0.867889 0.397674 0.918562 0.397639 0.925482 0.397634 0.901603 0.397646 0.909465 0.397642 0.891034 0.397645 0.929288 0.397637 0.894812 0.397645 0.931273 0.397662 0.86549 0.397668 0.931235 0.397655 0.882529 0.39765 0.877003 0.397658 0.871595 0.397671 0.868659 0.397671 0.868707 0.397667 0.925845 0.397644 0.918784 0.397657 0.909614 0.397666 0.901249 0.39767 0.890498 0.397656 0.92961 0.397643 0.894099 0.397656 0.867711 0.397671 0.900103 0.397679 0.595916 0.679782 0.593633 0.724091 0.587548 0.772055 0.579229 0.819401 0.570764 0.860428 0.56898 0.893979 0.055194 0.327681 0.056512 0.244825 0.056323 0.176259 0.056343 0.11532 0.057144 0.041836 0.468306 0.320445 0.459246 0.232082 0.470583 0.402538 0.456894 0.171519 0.044392 0.51728 0.04804 0.442488 0.039555 0.560029 0.472222 0.467543 0.655545 0.572596 0.685594 0.967391 0.590033 0.92387 0.595756 0.680499 0.590769 0.76975 0.682275 0.551691 0.647404 0.965201 0.571758 0.851938 0.600135 0.64164 0.623018 0.605621 0.617347 0.944413 0.720327 0.535205 - - - - - - - - - - - - - - -

89 0 23 243 1 26 6 3 29 6 3 29 243 1 26 90 2 28 243 1 26 89 0 23 91 4 30 91 4 30 89 0 23 5 5 31 92 6 33 244 7 35 5 5 31 5 5 31 244 7 35 91 4 30 244 7 35 92 6 33 299 8 36 299 8 36 92 6 33 218 9 37 95 11 41 93 12 42 7 10 39 7 10 39 93 12 42 8 13 57 93 12 42 95 11 41 9 15 62 9 15 62 95 11 41 94 14 61 245 17 66 89 0 23 96 16 65 96 16 65 89 0 23 6 3 29 89 0 23 245 17 66 5 5 31 5 5 31 245 17 66 97 18 67 245 17 66 98 19 68 97 18 67 97 18 67 98 19 68 11 20 69 98 19 68 245 17 66 10 21 70 10 21 70 245 17 66 96 16 65 246 22 71 92 6 33 97 18 67 97 18 67 92 6 33 5 5 31 92 6 33 246 22 71 218 9 37 218 9 37 246 22 71 300 23 72 246 22 71 99 24 84 300 23 72 300 23 72 99 24 84 219 25 85 99 24 84 246 22 71 11 20 69 11 20 69 246 22 71 97 18 67 247 27 89 93 12 42 12 26 86 12 26 86 93 12 42 9 15 62 93 12 42 247 27 89 8 13 57 8 13 57 247 27 89 100 28 90 102 30 137 101 31 138 13 29 135 13 29 135 101 31 138 14 32 139 101 31 138 102 30 137 8 13 57 8 13 57 102 30 137 7 10 39 248 34 141 98 19 68 103 33 140 103 33 140 98 19 68 10 21 70 98 19 68 248 34 141 11 20 69 11 20 69 248 34 141 104 35 142 248 34 141 105 36 200 104 35 142 104 35 142 105 36 200 16 37 246 105 36 200 248 34 141 15 38 249 15 38 249 248 34 141 103 33 140 107 39 252 101 31 138 100 28 90 100 28 90 101 31 138 8 13 57 101 31 138 107 39 252 14 32 139 14 32 139 107 39 252 106 40 253 108 41 254 109 42 256 14 32 139 14 32 139 109 42 256 13 29 135 109 42 256 108 41 254 18 43 259 18 43 259 108 41 254 17 44 260 111 45 262 108 41 254 106 40 253 106 40 253 108 41 254 14 32 139 108 41 254 111 45 262 17 44 260 17 44 260 111 45 262 110 46 265 20 47 266 112 48 283 19 50 286 19 50 286 112 48 283 113 49 285 113 49 285 112 48 283 17 44 260 17 44 260 112 48 283 18 43 259 115 51 289 113 49 285 110 46 265 110 46 265 113 49 285 17 44 260 115 51 289 114 52 290 113 49 285 113 49 285 114 52 290 19 50 286 22 53 291 116 54 292 21 56 294 21 56 294 116 54 292 117 55 293 116 54 292 20 47 266 117 55 293 117 55 293 20 47 266 19 50 286 114 52 290 119 57 295 19 50 286 19 50 286 119 57 295 117 55 293 119 57 295 118 58 296 117 55 293 117 55 293 118 58 296 21 56 294 23 59 297 249 60 298 24 62 303 24 62 303 249 60 298 120 61 300 249 60 298 22 53 291 120 61 300 120 61 300 22 53 291 21 56 294 118 58 296 122 63 304 21 56 294 21 56 294 122 63 304 120 61 300 122 63 304 121 64 884 120 61 300 120 61 300 121 64 884 24 62 303 26 65 885 339 66 886 123 68 888 123 68 888 339 66 886 340 67 887 123 68 888 340 67 887 28 70 890 28 70 890 340 67 887 341 69 889 340 67 887 124 71 891 341 69 889 341 69 889 124 71 891 27 72 892 124 71 891 340 67 887 25 73 893 25 73 893 340 67 887 339 66 886 250 75 895 307 76 896 125 74 894 125 74 894 307 76 896 29 77 897 307 76 896 250 75 895 227 79 899 227 79 899 250 75 895 126 78 898 250 75 895 123 68 888 126 78 898 126 78 898 123 68 888 28 70 890 123 68 888 250 75 895 26 65 885 26 65 885 250 75 895 125 74 894 126 78 898 127 80 900 227 79 899 227 79 899 127 80 900 45 81 901 126 78 898 28 70 890 127 80 900 127 80 900 28 70 890 30 82 902 128 83 0 251 84 1 31 86 3 31 86 3 251 84 1 308 85 2 308 85 74 251 84 75 228 88 77 228 88 77 251 84 75 129 87 76 251 84 75 130 89 78 129 87 76 129 87 76 130 89 78 33 90 79 251 84 1 128 83 0 130 89 4 130 89 4 128 83 0 32 91 12 131 92 13 252 93 14 34 95 16 34 95 16 252 93 14 309 94 15 252 93 14 128 83 0 309 94 15 309 94 15 128 83 0 31 86 3 128 83 0 252 93 14 32 91 12 32 91 12 252 93 14 132 96 17 252 93 14 131 92 13 132 96 17 132 96 17 131 92 13 35 97 18 133 98 82 253 99 83 35 97 18 35 97 18 253 99 83 132 96 17 253 99 83 134 100 91 132 96 17 132 96 17 134 100 91 32 91 12 134 100 91 253 99 83 36 102 93 36 102 93 253 99 83 156 101 92 253 99 83 133 98 82 156 101 92 156 101 92 133 98 82 38 103 94 135 104 96 254 105 97 39 107 101 39 107 101 254 105 97 136 106 98 136 106 98 254 105 97 37 109 105 37 109 105 254 105 97 137 108 102 254 105 97 133 98 82 137 108 102 137 108 102 133 98 82 35 97 18 254 105 97 135 104 96 133 98 82 133 98 82 135 104 96 38 103 94 255 110 903 99 24 84 104 35 142 104 35 142 99 24 84 11 20 69 99 24 84 255 110 903 219 25 85 219 25 85 255 110 903 310 111 904 255 110 903 138 112 905 310 111 904 310 111 904 138 112 905 1978 113 906 138 112 905 255 110 903 16 37 246 16 37 246 255 110 903 104 35 142 204 114 5 285 115 6 59 117 8 59 117 8 285 115 6 139 116 7 285 115 6 203 118 9 139 116 7 139 116 7 203 118 9 57 119 10 105 36 200 256 120 907 16 37 246 16 37 246 256 120 907 140 121 908 256 120 907 135 104 909 140 121 908 140 121 908 135 104 909 39 107 910 135 104 909 256 120 907 38 103 912 38 103 912 256 120 907 141 122 911 256 120 907 105 36 200 141 122 911 141 122 911 105 36 200 15 38 249 138 112 905 257 123 913 1978 113 906 1978 113 906 257 123 913 142 124 914 257 123 913 154 125 915 142 124 914 142 124 914 154 125 915 229 126 916 154 125 915 257 123 913 39 107 910 39 107 910 257 123 913 140 121 908 257 123 913 138 112 905 140 121 908 140 121 908 138 112 905 16 37 246 284 128 19 202 129 20 143 127 11 143 127 11 202 129 20 60 130 21 203 118 9 284 128 19 57 119 10 57 119 10 284 128 19 143 127 11 56 132 918 2065 133 919 144 131 917 144 131 917 2065 133 919 2066 134 920 311 135 921 258 136 922 29 77 897 29 77 897 258 136 922 125 74 894 258 136 922 145 137 923 125 74 894 125 74 894 145 137 923 26 65 885 145 137 80 258 136 81 40 139 99 40 139 99 258 136 81 146 138 95 258 136 81 311 135 100 146 138 95 146 138 95 311 135 100 41 140 103 43 141 924 147 142 925 42 144 927 42 144 927 147 142 925 148 143 926 147 142 925 23 59 297 148 143 926 148 143 926 23 59 297 24 62 303 149 145 928 259 146 929 25 73 893 25 73 893 259 146 929 124 71 891 259 146 929 150 147 976 124 71 891 124 71 891 150 147 976 27 72 892 150 147 976 259 146 929 43 141 924 43 141 924 259 146 929 147 142 925 259 146 929 149 145 928 147 142 925 147 142 925 149 145 928 23 59 297 121 64 884 152 148 978 24 62 303 24 62 303 152 148 978 148 143 926 152 148 978 151 149 980 148 143 926 148 143 926 151 149 980 42 144 927 231 150 981 30 82 902 341 69 889 341 69 889 30 82 902 28 70 890 341 69 889 27 72 892 231 150 981 231 150 981 27 72 892 44 151 982 153 152 104 260 153 106 33 90 79 33 90 79 260 153 106 129 87 76 260 153 106 312 154 107 129 87 76 129 87 76 312 154 107 228 88 77 312 154 107 260 153 106 41 140 103 41 140 103 260 153 106 146 138 95 260 153 106 153 152 104 146 138 95 146 138 95 153 152 104 40 139 99 154 125 110 261 155 111 229 126 113 229 126 113 261 155 111 313 156 112 261 155 111 155 157 114 313 156 112 313 156 112 155 157 114 230 158 115 155 157 114 261 155 111 37 109 105 37 109 105 261 155 111 136 106 98 261 155 111 154 125 110 136 106 98 136 106 98 154 125 110 39 107 101 262 159 108 181 160 109 153 152 104 153 152 104 181 160 109 40 139 99 181 160 116 262 159 117 36 102 93 36 102 93 262 159 117 134 100 91 262 159 117 130 89 4 134 100 91 134 100 91 130 89 4 32 91 12 130 89 78 262 159 108 33 90 79 33 90 79 262 159 108 153 152 104 137 108 102 263 161 118 37 109 105 37 109 105 263 161 118 155 157 114 155 157 114 263 161 118 230 158 115 230 158 115 263 161 118 314 162 119 263 161 118 131 92 13 314 162 119 314 162 119 131 92 13 34 95 16 131 92 13 263 161 118 35 97 18 35 97 18 263 161 118 137 108 102 151 149 980 241 163 983 42 144 927 42 144 927 241 163 983 157 164 985 241 163 983 242 165 987 157 164 985 157 164 985 242 165 987 83 166 1012 264 168 1016 160 169 1017 159 167 1013 159 167 1013 160 169 1017 44 151 982 160 169 1017 264 168 1016 81 171 1019 81 171 1019 264 168 1016 239 170 1018 264 168 1016 238 172 1020 239 170 1018 239 170 1018 238 172 1020 82 173 1023 238 172 1020 264 168 1016 43 141 924 43 141 924 264 168 1016 159 167 1013 82 173 1023 238 172 1020 83 166 1012 83 166 1012 238 172 1020 157 164 985 157 164 985 238 172 1020 42 144 927 42 144 927 238 172 1020 43 141 924 160 169 1017 265 174 1036 44 151 982 44 151 982 265 174 1036 231 150 981 265 174 1036 232 175 1038 231 150 981 231 150 981 232 175 1038 30 82 902 232 175 1038 265 174 1036 80 177 1040 80 177 1040 265 174 1036 237 176 1039 265 174 1036 160 169 1017 237 176 1039 237 176 1039 160 169 1017 81 171 1019 163 178 1041 164 179 1042 94 14 61 94 14 61 164 179 1042 9 15 62 165 180 1043 266 181 1045 46 183 1047 46 183 1047 266 181 1045 166 182 1046 266 181 1045 163 178 1041 166 182 1046 166 182 1046 163 178 1041 94 14 61 288 184 1048 207 185 1049 90 2 28 90 2 28 207 185 1049 6 3 29 164 179 1042 167 186 1050 9 15 62 9 15 62 167 186 1050 12 26 86 267 187 1051 168 188 1052 166 182 1046 166 182 1046 168 188 1052 46 183 1047 168 188 1052 267 187 1051 47 190 1054 47 190 1054 267 187 1051 169 189 1053 267 187 1051 95 11 41 169 189 1053 169 189 1053 95 11 41 7 10 39 95 11 41 267 187 1051 94 14 61 94 14 61 267 187 1051 166 182 1046 207 185 1049 287 191 1055 6 3 29 6 3 29 287 191 1055 96 16 65 287 191 1055 206 192 1056 96 16 65 96 16 65 206 192 1056 10 21 70 170 193 22 268 194 2246 63 196 25 63 196 25 268 194 2246 171 195 24 268 194 2246 172 197 2247 171 195 24 171 195 24 172 197 2247 58 198 27 268 194 1058 173 199 1059 172 197 1057 172 197 1057 173 199 1059 64 200 1060 173 199 1059 268 194 1058 62 201 1062 62 201 1062 268 194 1058 170 193 1061 172 197 2247 269 202 2248 58 198 27 58 198 27 269 202 2248 174 203 32 174 203 32 269 202 2248 61 205 34 61 205 34 269 202 2248 175 204 2249 175 204 1063 269 202 1064 65 207 1066 65 207 1066 269 202 1064 176 206 1065 269 202 1064 172 197 1057 176 206 1065 176 206 1065 172 197 1057 64 200 1060 270 208 2250 177 209 38 175 204 2249 175 204 2249 177 209 38 61 205 34 177 209 38 270 208 2250 66 211 40 66 211 40 270 208 2250 178 210 2251 178 210 1067 270 208 1068 67 213 1070 67 213 1070 270 208 1068 179 212 1069 270 208 1068 175 204 1063 179 212 1069 179 212 1069 175 204 1063 65 207 1066 271 215 1072 149 145 928 180 214 1071 180 214 1071 149 145 928 25 73 893 149 145 928 271 215 1072 23 59 297 23 59 297 271 215 1072 249 60 298 271 215 1072 48 216 1073 249 60 298 249 60 298 48 216 1073 22 53 291 150 147 976 159 167 1013 27 72 892 27 72 892 159 167 1013 44 151 982 159 167 1013 150 147 976 43 141 924 48 216 1073 272 217 1074 22 53 291 22 53 291 272 217 1074 116 54 292 272 217 1074 49 218 1075 116 54 292 116 54 292 49 218 1075 20 47 266 49 218 1075 273 219 1076 20 47 266 20 47 266 273 219 1076 112 48 283 112 48 283 273 219 1076 18 43 259 18 43 259 273 219 1076 50 220 1077 274 221 1078 109 42 256 50 220 1077 50 220 1077 109 42 256 18 43 259 109 42 256 274 221 1078 13 29 135 13 29 135 274 221 1078 51 222 1079 275 223 1080 52 224 1081 169 189 1053 169 189 1053 52 224 1081 47 190 1054 275 223 1080 102 30 137 51 222 1079 51 222 1079 102 30 137 13 29 135 102 30 137 275 223 1080 7 10 39 7 10 39 275 223 1080 169 189 1053 206 192 1056 286 225 1082 10 21 70 10 21 70 286 225 1082 103 33 140 286 225 1082 53 226 1083 103 33 140 103 33 140 53 226 1083 15 38 249 53 226 1083 276 227 1084 15 38 249 15 38 249 276 227 1084 141 122 911 276 227 1084 54 228 1085 141 122 911 141 122 911 54 228 1085 38 103 912 277 229 1087 55 230 1088 156 101 1086 156 101 1086 55 230 1088 36 102 1089 54 228 1085 277 229 1087 38 103 912 38 103 912 277 229 1087 156 101 1086 182 231 1090 181 160 1091 55 230 1088 55 230 1088 181 160 1091 36 102 1089 181 160 1091 182 231 1090 40 139 1092 40 139 1092 182 231 1090 56 132 918 283 232 43 183 233 44 202 129 20 202 129 20 183 233 44 60 130 21 201 234 45 68 235 46 283 232 43 283 232 43 68 235 46 183 233 44 144 131 917 145 137 923 56 132 918 56 132 918 145 137 923 40 139 1092 321 236 1093 339 66 886 144 131 917 339 66 886 26 65 885 144 131 917 144 131 917 26 65 885 145 137 923 2069 237 1094 2070 238 1095 276 227 1084 276 227 1084 2070 238 1095 54 228 1085 290 239 47 208 240 48 278 242 50 278 242 50 208 240 48 184 241 49 210 243 51 290 239 47 185 244 52 185 244 52 290 239 47 278 242 50 2068 245 1096 2069 237 1094 53 226 1083 53 226 1083 2069 237 1094 276 227 1084 2071 246 1097 2073 247 1098 277 229 1087 277 229 1087 2073 247 1098 55 230 1088 289 248 53 209 249 54 279 251 56 279 251 56 209 249 54 186 250 55 208 240 48 289 248 53 184 241 49 184 241 49 289 248 53 279 251 56 2070 238 1095 2071 246 1097 54 228 1085 54 228 1085 2071 246 1097 277 229 1087 275 223 1080 2075 252 1099 52 224 1081 52 224 1081 2075 252 1099 2076 253 1100 212 255 58 2053 256 59 294 254 2265 294 254 2265 2053 256 59 280 257 60 294 254 1102 280 257 1103 214 258 1101 214 258 1101 280 257 1103 187 259 1104 2075 252 1099 275 223 1080 2074 260 1105 2074 260 1105 275 223 1080 51 222 1079 2072 261 1106 2068 245 1096 286 225 1082 286 225 1082 2068 245 1096 53 226 1083 292 262 63 210 243 51 2052 263 64 2052 263 64 210 243 51 185 244 52 274 221 1078 2078 264 1107 51 222 1079 51 222 1079 2078 264 1107 2074 260 1105 214 258 1101 187 259 1104 293 265 1108 293 265 1108 187 259 1104 2055 266 1109 293 265 1108 2055 266 1109 213 267 1110 213 267 1110 2055 266 1109 188 268 1111 2078 264 1107 274 221 1078 2079 269 1112 2079 269 1112 274 221 1078 50 220 1077 273 219 1076 2080 270 1113 50 220 1077 50 220 1077 2080 270 1113 2079 269 1112 213 267 1110 188 268 1111 295 271 1114 295 271 1114 188 268 1111 2056 272 1115 215 273 1116 295 271 1114 189 274 1117 189 274 1117 295 271 1114 2056 272 1115 2081 275 1118 2080 270 1113 49 218 1075 49 218 1075 2080 270 1113 273 219 1076 2084 276 1119 2085 277 1120 271 215 1072 271 215 1072 2085 277 1120 48 216 1073 297 278 1121 216 279 1122 281 281 1124 281 281 1124 216 279 1122 190 280 1123 217 282 87 297 278 73 191 283 88 191 283 88 297 278 73 281 281 2271 2083 284 1125 2084 276 1119 180 214 1071 180 214 1071 2084 276 1119 271 215 1072 2082 285 1126 2081 275 1118 272 217 1074 272 217 1074 2081 275 1118 49 218 1075 296 286 1127 215 273 1116 2057 287 1128 2057 287 1128 215 273 1116 189 274 1117 216 279 1122 296 286 1127 190 280 1123 190 280 1123 296 286 1127 2057 287 1128 2085 277 1120 2082 285 1126 48 216 1073 48 216 1073 2082 285 1126 272 217 1074 182 231 1090 2064 288 1129 56 132 918 56 132 918 2064 288 1129 2065 133 919 211 290 121 2051 291 122 291 289 120 291 289 120 2051 291 122 2050 292 123 291 289 120 2050 292 123 209 249 54 209 249 54 2050 292 123 186 250 55 2064 288 1129 182 231 1090 2073 247 1098 2073 247 1098 182 231 1090 55 230 1088 298 293 124 282 294 125 211 290 121 211 290 121 282 294 125 2051 291 122 323 295 126 322 296 127 298 293 124 298 293 124 322 296 127 282 294 125 70 297 128 192 298 129 57 119 10 57 119 10 192 298 129 139 116 7 59 117 8 139 116 7 71 299 130 71 299 130 139 116 7 192 298 129 69 300 131 193 301 132 60 130 21 60 130 21 193 301 132 143 127 11 57 119 10 143 127 11 70 297 128 70 297 128 143 127 11 193 301 132 194 303 134 170 193 22 73 302 133 73 302 133 170 193 22 63 196 25 170 193 1061 194 303 1130 62 201 1062 62 201 1062 194 303 1130 74 304 1131 71 299 130 205 305 136 59 117 8 59 117 8 205 305 136 204 114 5 62 201 1062 74 304 1131 173 199 1059 173 199 1059 74 304 1131 195 306 1132 173 199 1059 195 306 1132 64 200 1060 64 200 1060 195 306 1132 75 307 1133 64 200 1060 75 307 1133 176 206 1065 176 206 1065 75 307 1133 196 308 1134 65 207 1066 176 206 1065 76 309 1135 76 309 1135 176 206 1065 196 308 1134 77 310 1136 197 311 1137 67 213 1070 67 213 1070 197 311 1137 178 210 1067 66 211 40 178 210 2251 78 312 143 78 312 143 178 210 2251 197 311 2267 76 309 1135 198 313 1138 65 207 1066 65 207 1066 198 313 1138 179 212 1069 67 213 1070 179 212 1069 77 310 1136 77 310 1136 179 212 1069 198 313 1138 199 315 202 183 233 44 72 314 201 72 314 201 183 233 44 68 235 46 69 300 131 60 130 21 199 315 202 199 315 202 60 130 21 183 233 44 72 314 201 68 235 46 200 316 203 200 316 203 68 235 46 201 234 45 200 316 203 201 234 45 338 317 204 338 317 204 201 234 45 337 318 205 337 318 205 66 211 40 338 317 204 338 317 204 66 211 40 78 312 143 283 232 43 336 319 206 201 234 45 201 234 45 336 319 206 337 318 205 177 209 38 336 319 206 61 205 34 61 205 34 336 319 206 335 320 207 334 321 208 335 320 207 284 128 19 284 128 19 335 320 207 202 129 20 334 321 208 333 322 209 174 203 32 174 203 32 333 322 209 58 198 27 332 323 210 333 322 209 285 115 6 285 115 6 333 322 209 203 118 9 332 323 210 331 324 232 171 195 24 171 195 24 331 324 232 63 196 25 331 324 232 204 114 5 330 325 233 330 325 233 204 114 5 205 305 136 331 324 232 330 325 233 63 196 25 63 196 25 330 325 233 73 302 133 329 326 234 292 262 63 2054 327 235 2054 327 235 292 262 63 2052 263 64 2077 328 1139 328 329 1140 2076 253 1100 2076 253 1100 328 329 1140 52 224 1081 328 329 1140 327 330 1141 52 224 1081 52 224 1081 327 330 1141 47 190 1054 326 331 1142 327 330 1141 287 191 1055 287 191 1055 327 330 1141 206 192 1056 168 188 1052 326 331 1142 46 183 1047 46 183 1047 326 331 1142 325 332 1143 324 333 1144 325 332 1143 288 184 1048 288 184 1048 325 332 1143 207 185 1049 289 248 53 208 240 48 193 301 132 193 301 132 208 240 48 70 297 128 209 249 54 289 248 53 69 300 131 69 300 131 289 248 53 193 301 132 210 243 51 292 262 63 71 299 130 71 299 130 292 262 63 205 305 136 208 240 48 290 239 47 70 297 128 70 297 128 290 239 47 192 298 129 290 239 47 210 243 51 192 298 129 192 298 129 210 243 51 71 299 130 199 315 202 291 289 120 69 300 131 69 300 131 291 289 120 209 249 54 291 289 120 199 315 202 211 290 121 211 290 121 199 315 202 72 314 201 292 262 63 329 326 234 205 305 136 205 305 136 329 326 234 330 325 233 2053 256 59 212 255 58 2054 327 235 2054 327 235 212 255 58 329 326 234 195 306 1132 293 265 1108 75 307 1133 75 307 1133 293 265 1108 213 267 1110 293 265 1108 195 306 1132 214 258 1101 214 258 1101 195 306 1132 74 304 1131 294 254 2265 194 303 134 212 255 58 212 255 58 194 303 134 73 302 133 194 303 1130 294 254 1102 74 304 1131 74 304 1131 294 254 1102 214 258 1101 295 271 1114 196 308 1134 213 267 1110 213 267 1110 196 308 1134 75 307 1133 295 271 1114 215 273 1116 196 308 1134 196 308 1134 215 273 1116 76 309 1135 215 273 1116 296 286 1127 76 309 1135 76 309 1135 296 286 1127 198 313 1138 296 286 1127 216 279 1122 198 313 1138 198 313 1138 216 279 1122 77 310 1136 323 295 126 217 282 87 322 296 127 322 296 127 217 282 87 191 283 88 217 282 87 323 295 126 78 312 143 78 312 143 323 295 126 338 317 204 216 279 1122 297 278 1121 77 310 1136 77 310 1136 297 278 1121 197 311 1137 297 278 73 217 282 87 197 311 2267 197 311 2267 217 282 87 78 312 143 200 316 203 298 293 124 72 314 201 72 314 201 298 293 124 211 290 121 247 27 89 301 334 1145 100 28 90 100 28 90 301 334 1145 220 335 1146 301 334 1145 247 27 89 221 336 1147 221 336 1147 247 27 89 12 26 86 107 39 252 302 337 1148 106 40 253 106 40 253 302 337 1148 222 338 1149 302 337 1148 107 39 252 220 335 1146 220 335 1146 107 39 252 100 28 90 111 45 262 303 339 1150 110 46 265 110 46 265 303 339 1150 223 340 1151 303 339 1150 111 45 262 222 338 1149 222 338 1149 111 45 262 106 40 253 304 341 1152 224 342 1153 115 51 289 115 51 289 224 342 1153 114 52 290 223 340 1151 304 341 1152 110 46 265 110 46 265 304 341 1152 115 51 289 305 343 1154 225 344 1155 119 57 295 119 57 295 225 344 1155 118 58 296 224 342 1153 305 343 1154 114 52 290 114 52 290 305 343 1154 119 57 295 306 345 1156 226 346 1157 122 63 304 122 63 304 226 346 1157 121 64 884 225 344 1155 306 345 1156 118 58 296 118 58 296 306 345 1156 122 63 304 346 347 1158 345 348 1159 152 148 978 152 148 978 345 348 1159 151 149 980 152 148 978 121 64 884 346 347 1158 346 347 1158 121 64 884 226 346 1157 344 349 1160 343 350 1161 241 163 983 241 163 983 343 350 1161 242 165 987 241 163 983 151 149 980 344 349 1160 344 349 1160 151 149 980 345 348 1159 167 186 1050 315 351 1162 12 26 86 12 26 86 315 351 1162 221 336 1147 316 352 1163 127 80 900 232 175 1038 232 175 1038 127 80 900 30 82 902 127 80 900 316 352 1163 45 81 901 45 81 901 316 352 1163 162 353 1164 316 352 1163 235 354 1165 162 353 1164 162 353 1164 235 354 1165 79 355 1166 316 352 1163 232 175 1038 235 354 1165 235 354 1165 232 175 1038 80 177 1040 234 356 1167 317 357 1168 80 177 1040 80 177 1040 317 357 1168 235 354 1165 317 357 1168 233 358 1169 235 354 1165 235 354 1165 233 358 1169 79 355 1166 233 358 1169 317 357 1168 3 360 1171 3 360 1171 317 357 1168 87 359 1170 317 357 1168 234 356 1167 87 359 1170 87 359 1170 234 356 1167 2 361 1172 236 362 1173 318 363 1174 81 171 1019 81 171 1019 318 363 1174 237 176 1039 318 363 1174 234 356 1167 237 176 1039 237 176 1039 234 356 1167 80 177 1040 234 356 1167 318 363 1174 2 361 1172 2 361 1172 318 363 1174 86 364 1175 318 363 1174 236 362 1173 86 364 1175 86 364 1175 236 362 1173 1 365 1176 319 366 1177 236 362 1173 239 170 1018 239 170 1018 236 362 1173 81 171 1019 236 362 1173 319 366 1177 1 365 1176 1 365 1176 319 366 1177 85 367 1178 85 367 1178 319 366 1177 0 369 1180 0 369 1180 319 366 1177 161 368 1179 319 366 1177 239 170 1018 161 368 1179 161 368 1179 239 170 1018 82 173 1023 0 369 1180 161 368 1179 4 371 1182 4 371 1182 161 368 1179 240 370 1181 161 368 1179 82 173 1023 240 370 1181 240 370 1181 82 173 1023 83 166 1012 242 165 987 158 372 1183 83 166 1012 83 166 1012 158 372 1183 240 370 1181 240 370 1181 158 372 1183 4 371 1182 4 371 1182 158 372 1183 84 373 1184 343 350 1161 342 374 1185 242 165 987 242 165 987 342 374 1185 158 372 1183 342 374 1185 88 375 1186 158 372 1183 158 372 1183 88 375 1186 84 373 1184 144 131 917 2066 134 920 321 236 1093 321 236 1093 2066 134 920 2067 376 1187 321 236 1093 180 214 1071 339 66 886 339 66 886 180 214 1071 25 73 893 2067 376 1187 2083 284 1125 321 236 1093 321 236 1093 2083 284 1125 180 214 1071 325 332 1143 324 333 1144 46 183 1047 46 183 1047 324 333 1144 165 180 1043 325 332 1143 326 331 1142 207 185 1049 207 185 1049 326 331 1142 287 191 1055 47 190 1054 327 330 1141 168 188 1052 168 188 1052 327 330 1141 326 331 1142 327 330 1141 328 329 1140 206 192 1056 206 192 1056 328 329 1140 286 225 1082 286 225 1082 328 329 1140 2072 261 1106 2072 261 1106 328 329 1140 2077 328 1139 330 325 233 329 326 234 73 302 133 73 302 133 329 326 234 212 255 58 331 324 232 332 323 210 204 114 5 204 114 5 332 323 210 285 115 6 333 322 209 332 323 210 58 198 27 58 198 27 332 323 210 171 195 24 333 322 209 334 321 208 203 118 9 203 118 9 334 321 208 284 128 19 61 205 34 335 320 207 174 203 32 174 203 32 335 320 207 334 321 208 202 129 20 335 320 207 283 232 43 283 232 43 335 320 207 336 319 206 66 211 40 337 318 205 177 209 38 177 209 38 337 318 205 336 319 206 338 317 204 323 295 126 200 316 203 200 316 203 323 295 126 298 293 124 299 8 36 218 9 37 2017 378 1189 2017 378 1189 218 9 37 2022 377 1188 218 9 37 300 23 72 2022 377 1188 2022 377 1188 300 23 72 2021 379 1190 300 23 72 219 25 85 2021 379 1190 2021 379 1190 219 25 85 2023 380 1191 301 334 1145 674 381 1192 220 335 1146 220 335 1146 674 381 1192 592 382 1193 221 336 1147 593 383 1194 301 334 1145 301 334 1145 593 383 1194 674 381 1192 302 337 1148 675 384 1195 222 338 1149 222 338 1149 675 384 1195 594 385 1196 302 337 1148 220 335 1146 675 384 1195 675 384 1195 220 335 1146 592 382 1193 303 339 1150 676 386 1197 223 340 1151 223 340 1151 676 386 1197 595 387 1198 222 338 1149 594 385 1196 303 339 1150 303 339 1150 594 385 1196 676 386 1197 304 341 1152 677 388 1199 224 342 1153 224 342 1153 677 388 1199 596 389 1200 223 340 1151 595 387 1198 304 341 1152 304 341 1152 595 387 1198 677 388 1199 305 343 1154 678 390 1201 225 344 1155 225 344 1155 678 390 1201 597 391 1202 224 342 1153 596 389 1200 305 343 1154 305 343 1154 596 389 1200 678 390 1201 226 346 1157 306 345 1156 598 393 1204 598 393 1204 306 345 1156 679 392 1203 225 344 1155 597 391 1202 306 345 1156 306 345 1156 597 391 1202 679 392 1203 2037 395 1206 680 396 1207 2036 394 1205 2036 394 1205 680 396 1207 599 397 1208 2038 398 1209 600 399 1210 2037 395 1206 2037 395 1206 600 399 1210 680 396 1207 2039 400 1211 608 401 1212 2038 398 1209 2038 398 1209 608 401 1212 600 399 1210 31 86 3 308 85 2 2033 403 2261 2033 403 2261 308 85 2 2019 402 144 681 405 149 2019 402 2264 602 404 148 602 404 148 2019 402 2264 2020 406 2259 34 95 16 309 94 15 2031 408 2252 2031 408 2252 309 94 15 2032 407 2262 309 94 15 31 86 3 2032 407 2262 2032 407 2262 31 86 3 2033 403 2261 219 25 85 310 111 904 2023 380 1191 2023 380 1191 310 111 904 2024 409 1213 604 411 1215 2025 412 1216 684 410 1214 684 410 1214 2025 412 1216 2026 413 1217 2035 415 2260 685 416 158 2034 414 2258 2034 414 2258 685 416 158 605 417 159 2036 394 1205 599 397 1208 2035 415 1218 2035 415 1218 599 397 1208 685 416 1219 346 347 1158 1971 418 1220 345 348 1159 345 348 1159 1971 418 1220 1970 419 1221 226 346 1157 598 393 1204 346 347 1158 346 347 1158 598 393 1204 1971 418 1220 2016 420 2257 686 421 161 2020 406 2259 2020 406 2259 686 421 161 602 404 148 2034 414 2258 605 417 159 2016 420 2257 2016 420 2257 605 417 159 686 421 161 229 126 113 313 156 112 2027 423 2256 2027 423 2256 313 156 112 2028 422 2255 313 156 112 230 158 115 2028 422 2255 2028 422 2255 230 158 115 2029 424 2254 230 158 115 314 162 119 2029 424 2254 2029 424 2254 314 162 119 2030 425 2253 314 162 119 34 95 16 2030 425 2253 2030 425 2253 34 95 16 2031 408 2252 344 349 1160 1969 426 1222 343 350 1161 343 350 1161 1969 426 1222 1968 427 1223 345 348 1159 1970 419 1221 344 349 1160 344 349 1160 1970 419 1221 1969 426 1222 2040 428 1224 689 429 1225 2039 400 1211 2039 400 1211 689 429 1225 608 401 1212 2041 430 1226 612 431 1227 2040 428 1224 2040 428 1224 612 431 1227 689 429 1225 315 351 1162 690 432 1228 221 336 1147 221 336 1147 690 432 1228 593 383 1194 2042 433 1229 692 434 1230 2041 430 1226 2041 430 1226 692 434 1230 612 431 1227 2043 435 1231 434 436 1232 2042 433 1229 2042 433 1229 434 436 1232 692 434 1230 88 375 1186 342 374 1185 435 438 1234 435 438 1234 342 374 1185 1967 437 1233 342 374 1185 343 350 1161 1967 437 1233 1967 437 1233 343 350 1161 1968 427 1223 436 439 1235 353 440 1236 622 442 1238 622 442 1238 353 440 1236 437 441 1237 352 444 1240 436 439 1235 438 443 1239 438 443 1239 436 439 1235 622 442 1238 439 445 1241 352 444 1240 623 446 1242 623 446 1242 352 444 1240 438 443 1239 354 448 1244 439 445 1241 440 447 1243 440 447 1243 439 445 1241 623 446 1242 356 450 1246 441 451 1247 355 449 1245 355 449 1245 441 451 1247 443 452 1248 441 451 1247 357 453 1249 443 452 1248 443 452 1248 357 453 1249 442 454 1250 353 440 1236 436 439 1235 444 455 1251 444 455 1251 436 439 1235 624 456 1252 436 439 1235 352 444 1240 624 456 1252 624 456 1252 352 444 1240 445 457 1253 359 458 1254 446 459 1255 445 457 1253 445 457 1253 446 459 1255 624 456 1252 446 459 1255 358 460 1256 624 456 1252 624 456 1252 358 460 1256 444 455 1251 352 444 1240 439 445 1241 445 457 1253 445 457 1253 439 445 1241 625 461 1257 439 445 1241 354 448 1244 625 461 1257 625 461 1257 354 448 1244 447 462 1258 360 463 1259 448 464 1260 447 462 1258 447 462 1258 448 464 1260 625 461 1257 448 464 1260 359 458 1254 625 461 1257 625 461 1257 359 458 1254 445 457 1253 357 453 1249 441 451 1247 361 465 1261 361 465 1261 441 451 1247 626 466 1262 441 451 1247 356 450 1246 626 466 1262 626 466 1262 356 450 1246 449 467 1263 363 469 1265 450 470 1266 362 468 1264 362 468 1264 450 470 1266 451 471 1267 450 470 1266 356 450 1246 451 471 1267 451 471 1267 356 450 1246 355 449 1245 358 460 1256 446 459 1255 452 472 1268 452 472 1268 446 459 1255 627 473 1269 446 459 1255 359 458 1254 627 473 1269 627 473 1269 359 458 1254 453 474 1270 365 475 1271 454 476 1272 453 474 1270 453 474 1270 454 476 1272 627 473 1269 454 476 1272 364 477 1273 627 473 1269 627 473 1269 364 477 1273 452 472 1268 356 450 1246 450 470 1266 449 467 1263 449 467 1263 450 470 1266 456 478 1274 450 470 1266 363 469 1265 456 478 1274 456 478 1274 363 469 1265 455 479 1275 457 480 1276 363 469 1265 458 481 1277 458 481 1277 363 469 1265 362 468 1264 366 483 1279 457 480 1276 367 482 1278 367 482 1278 457 480 1276 458 481 1277 363 469 1265 457 480 1276 455 479 1275 455 479 1275 457 480 1276 460 484 1280 457 480 1276 366 483 1279 460 484 1280 460 484 1280 366 483 1279 459 485 1281 369 486 1282 368 487 1283 461 489 1285 461 489 1285 368 487 1283 462 488 1284 462 488 1284 366 483 1279 461 489 1285 461 489 1285 366 483 1279 367 482 1278 366 483 1279 462 488 1284 459 485 1281 459 485 1281 462 488 1284 464 490 1286 368 487 1283 463 491 1287 462 488 1284 462 488 1284 463 491 1287 464 490 1286 371 492 1288 370 493 1289 465 495 1291 465 495 1291 370 493 1289 466 494 1290 368 487 1283 369 486 1282 466 494 1290 466 494 1290 369 486 1282 465 495 1291 463 491 1287 368 487 1283 468 496 1292 468 496 1292 368 487 1283 466 494 1290 370 493 1289 467 497 1293 466 494 1290 466 494 1290 467 497 1293 468 496 1292 372 498 1294 373 499 1295 628 501 1297 628 501 1297 373 499 1295 469 500 1296 370 493 1289 371 492 1288 469 500 1296 469 500 1296 371 492 1288 628 501 1297 467 497 1293 370 493 1289 471 502 1298 471 502 1298 370 493 1289 469 500 1296 373 499 1295 470 503 1299 469 500 1296 469 500 1296 470 503 1299 471 502 1298 375 504 1300 472 505 1301 1964 507 1303 1964 507 1303 472 505 1301 1965 506 1302 472 505 1301 377 508 1304 1965 506 1302 1965 506 1302 377 508 1304 1966 509 1305 376 510 1306 473 511 1307 1966 509 1305 1966 509 1305 473 511 1307 1965 506 1302 473 511 1307 374 512 1308 1965 506 1302 1965 506 1302 374 512 1308 1964 507 1303 378 514 1310 475 515 1311 474 513 1309 474 513 1309 475 515 1311 629 516 1312 475 515 1311 379 517 1313 629 516 1312 629 516 1312 379 517 1313 476 518 1314 377 508 1304 472 505 1301 476 518 1314 476 518 1314 472 505 1301 629 516 1312 472 505 1301 375 504 1300 629 516 1312 629 516 1312 375 504 1300 474 513 1309 476 518 1314 379 517 1313 477 520 1316 477 520 1316 379 517 1313 399 519 1315 476 518 1314 477 520 1316 377 508 1304 377 508 1304 477 520 1316 380 521 1317 478 522 162 381 523 163 630 525 165 630 525 165 381 523 163 479 524 164 479 524 174 382 526 175 630 525 177 630 525 177 382 526 175 480 527 176 384 528 178 481 529 179 480 527 176 480 527 176 481 529 179 630 525 177 383 530 167 478 522 162 481 529 166 481 529 166 478 522 162 630 525 165 482 531 168 385 532 169 631 534 171 631 534 171 385 532 169 483 533 170 381 523 163 478 522 162 483 533 170 483 533 170 478 522 162 631 534 171 478 522 162 383 530 167 631 534 171 631 534 171 383 530 167 484 535 172 386 536 173 482 531 168 484 535 172 484 535 172 482 531 168 631 534 171 485 537 180 386 536 173 632 538 181 632 538 181 386 536 173 484 535 172 383 530 167 486 539 182 484 535 172 484 535 172 486 539 182 632 538 181 486 539 182 387 540 183 632 538 181 632 538 181 387 540 183 511 541 184 390 542 185 485 537 180 511 541 184 511 541 184 485 537 180 632 538 181 487 543 186 391 544 187 633 546 189 633 546 189 391 544 187 488 545 188 488 545 188 388 547 190 633 546 189 633 546 189 388 547 190 489 548 191 386 536 173 485 537 180 489 548 191 489 548 191 485 537 180 633 546 189 390 542 185 487 543 186 485 537 180 485 537 180 487 543 186 633 546 189 359 458 1254 448 464 1260 453 474 1270 453 474 1270 448 464 1260 634 549 1318 448 464 1260 360 463 1259 634 549 1318 634 549 1318 360 463 1259 490 550 1319 389 551 1320 491 552 1321 490 550 1319 490 550 1319 491 552 1321 634 549 1318 491 552 1321 365 475 1271 634 549 1318 634 549 1318 365 475 1271 453 474 1270 575 553 236 405 554 237 659 556 239 659 556 239 405 554 237 492 555 238 403 557 240 574 558 241 492 555 238 492 555 238 574 558 241 659 556 239 454 476 1272 365 475 1271 635 560 1323 635 560 1323 365 475 1271 493 559 1322 391 544 1324 487 543 1325 493 559 1322 493 559 1322 487 543 1325 635 560 1323 487 543 1325 390 542 1326 635 560 1323 635 560 1323 390 542 1326 494 561 1327 364 477 1273 454 476 1272 494 561 1327 494 561 1327 454 476 1272 635 560 1323 491 552 1321 389 551 1320 636 563 1329 636 563 1329 389 551 1320 495 562 1328 392 564 1330 508 565 1331 495 562 1328 495 562 1328 508 565 1331 636 563 1329 508 565 1331 391 544 1324 636 563 1329 636 563 1329 391 544 1324 493 559 1322 365 475 1271 491 552 1321 493 559 1322 493 559 1322 491 552 1321 636 563 1329 406 567 243 573 568 244 496 566 242 496 566 242 573 568 244 658 569 245 574 558 241 403 557 240 658 569 245 658 569 245 403 557 240 496 566 242 2087 571 1333 2088 572 1334 651 570 1332 651 570 1332 2088 572 1334 552 573 1335 497 574 1336 378 514 1310 637 575 1337 637 575 1337 378 514 1310 474 513 1309 375 504 1300 498 576 1338 474 513 1309 474 513 1309 498 576 1338 637 575 1337 498 576 211 394 577 212 637 575 214 637 575 214 394 577 212 499 578 213 395 579 215 497 574 216 499 578 213 499 578 213 497 574 216 637 575 214 397 580 1339 396 581 1340 500 583 1342 500 583 1342 396 581 1340 501 582 1341 373 499 1295 372 498 1294 501 582 1341 501 582 1341 372 498 1294 500 583 1342 502 584 1343 374 512 1308 638 585 1344 638 585 1344 374 512 1308 473 511 1307 376 510 1306 503 586 1345 473 511 1307 473 511 1307 503 586 1345 638 585 1344 503 586 1345 397 580 1339 638 585 1344 638 585 1344 397 580 1339 500 583 1342 372 498 1294 502 584 1343 500 583 1342 500 583 1342 502 584 1343 638 585 1344 470 503 1299 373 499 1295 505 587 1346 505 587 1346 373 499 1295 501 582 1341 396 581 1340 504 588 1347 501 582 1341 501 582 1341 504 588 1347 505 587 1346 609 589 1348 1966 509 1305 380 521 1317 380 521 1317 1966 509 1305 377 508 1304 398 590 1349 376 510 1306 609 589 1348 609 589 1348 376 510 1306 1966 509 1305 506 591 217 384 528 178 639 592 218 639 592 218 384 528 178 480 527 176 382 526 175 507 593 219 480 527 176 480 527 176 507 593 219 639 592 218 507 593 219 395 579 215 639 592 218 639 592 218 395 579 215 499 578 213 394 577 212 506 591 217 499 578 213 499 578 213 506 591 217 639 592 218 508 565 192 392 564 193 640 595 195 640 595 195 392 564 193 509 594 194 400 596 196 510 597 197 509 594 194 509 594 194 510 597 197 640 595 195 510 597 197 388 547 190 640 595 195 640 595 195 388 547 190 488 545 188 391 544 187 508 565 192 488 545 188 488 545 188 508 565 192 640 595 195 506 591 217 394 577 212 641 599 227 641 599 227 394 577 212 538 598 226 387 540 183 486 539 182 538 598 198 538 598 198 486 539 182 641 599 199 383 530 167 481 529 166 486 539 182 486 539 182 481 529 166 641 599 199 481 529 179 384 528 178 641 599 227 641 599 227 384 528 178 506 591 217 388 547 190 510 597 197 489 548 191 489 548 191 510 597 197 642 600 220 510 597 197 400 596 196 642 600 220 642 600 220 400 596 196 512 601 221 385 532 169 482 531 168 512 601 221 512 601 221 482 531 168 642 600 220 482 531 168 386 536 173 642 600 220 642 600 220 386 536 173 489 548 191 504 588 1347 396 581 1340 620 603 1351 620 603 1351 396 581 1340 513 602 1350 429 604 1352 621 605 1353 513 602 1350 513 602 1350 621 605 1353 620 603 1351 398 590 1349 516 607 1355 515 606 1354 515 606 1354 516 607 1355 643 608 1356 516 607 1355 427 609 1357 643 608 1356 643 608 1356 427 609 1357 618 610 1358 618 610 1358 428 611 1359 643 608 1356 643 608 1356 428 611 1359 617 612 1360 617 612 1360 397 580 1339 643 608 1356 643 608 1356 397 580 1339 515 606 1354 428 611 1359 429 604 1352 617 612 1360 617 612 1360 429 604 1352 513 602 1350 396 581 1340 397 580 1339 513 602 1350 513 602 1350 397 580 1339 617 612 1360 516 607 1355 398 590 1349 644 613 1361 644 613 1361 398 590 1349 609 589 1348 380 521 1317 610 614 1362 609 589 1348 609 589 1348 610 614 1362 644 613 1361 610 614 1362 426 615 1363 644 613 1361 644 613 1361 426 615 1363 616 616 1364 427 609 1357 516 607 1355 616 616 1364 616 616 1364 516 607 1355 644 613 1361 357 453 1249 520 617 1365 442 454 1250 442 454 1250 520 617 1365 519 618 1366 521 619 1367 401 620 1368 645 622 1370 645 622 1370 401 620 1368 522 621 1369 442 454 1250 519 618 1366 522 621 1369 522 621 1369 519 618 1366 645 622 1370 353 440 1236 579 623 1371 437 441 1237 437 441 1237 579 623 1371 661 624 1372 520 617 1365 357 453 1249 523 625 1373 523 625 1373 357 453 1249 361 465 1261 401 620 1368 524 626 1374 522 621 1369 522 621 1369 524 626 1374 646 627 1375 524 626 1374 402 628 1376 646 627 1375 646 627 1375 402 628 1376 525 629 1377 355 449 1245 443 452 1248 525 629 1377 525 629 1377 443 452 1248 646 627 1375 443 452 1248 442 454 1250 646 627 1375 646 627 1375 442 454 1250 522 621 1369 579 623 1371 353 440 1236 660 630 1378 660 630 1378 353 440 1236 444 455 1251 358 460 1256 578 631 1379 444 455 1251 444 455 1251 578 631 1379 660 630 1378 526 632 2273 409 633 247 647 635 2268 647 635 2268 409 633 247 527 634 248 404 636 250 528 637 251 527 634 248 527 634 248 528 637 251 647 635 2268 410 638 1381 529 639 1382 528 637 1380 528 637 1380 529 639 1382 647 635 1383 529 639 1382 408 640 1384 647 635 1383 647 635 1383 408 640 1384 526 632 1385 528 637 251 404 636 250 648 642 2269 648 642 2269 404 636 250 530 641 255 407 643 257 531 644 258 530 641 255 530 641 255 531 644 258 648 642 2269 531 644 1386 411 645 1387 648 642 1389 648 642 1389 411 645 1387 532 646 1388 532 646 1388 410 638 1381 648 642 1389 648 642 1389 410 638 1381 528 637 1380 531 644 258 407 643 257 649 648 2272 649 648 2272 407 643 257 533 647 261 533 647 261 412 649 263 649 648 2272 649 648 2272 412 649 263 534 650 264 534 650 1390 413 651 1391 649 648 1393 649 648 1393 413 651 1391 535 652 1392 411 645 1387 531 644 1386 535 652 1392 535 652 1392 531 644 1386 649 648 1393 374 512 1308 502 584 1343 393 653 1394 393 653 1394 502 584 1343 537 654 1395 502 584 1343 372 498 1294 537 654 1395 537 654 1395 372 498 1294 628 501 1297 371 492 1288 536 655 1396 628 501 1297 628 501 1297 536 655 1396 537 654 1395 376 510 1306 398 590 1349 503 586 1345 503 586 1345 398 590 1349 515 606 1354 515 606 1354 397 580 1339 503 586 1345 536 655 1396 371 492 1288 540 656 1397 540 656 1397 371 492 1288 465 495 1291 369 486 1282 539 657 1398 465 495 1291 465 495 1291 539 657 1398 540 656 1397 539 657 1398 369 486 1282 542 658 1399 542 658 1399 369 486 1282 461 489 1285 461 489 1285 367 482 1278 542 658 1399 542 658 1399 367 482 1278 541 659 1400 367 482 1278 458 481 1277 541 659 1400 541 659 1400 458 481 1277 544 660 1401 458 481 1277 362 468 1264 544 660 1401 544 660 1401 362 468 1264 543 661 1402 402 628 1376 545 662 1403 525 629 1377 525 629 1377 545 662 1403 546 663 1404 362 468 1264 451 471 1267 543 661 1402 543 661 1402 451 471 1267 546 663 1404 451 471 1267 355 449 1245 546 663 1404 546 663 1404 355 449 1245 525 629 1377 578 631 1379 358 460 1256 577 664 1405 577 664 1405 358 460 1256 452 472 1268 364 477 1273 547 665 1406 452 472 1268 452 472 1268 547 665 1406 577 664 1405 547 665 1406 364 477 1273 549 666 1407 549 666 1407 364 477 1273 494 561 1327 390 542 1326 548 667 1408 494 561 1327 494 561 1327 548 667 1408 549 666 1407 387 540 1410 550 668 1411 511 541 1409 511 541 1409 550 668 1411 551 669 1412 548 667 1408 390 542 1326 551 669 1412 551 669 1412 390 542 1326 511 541 1409 387 540 1410 538 598 1413 550 668 1411 550 668 1411 538 598 1413 650 670 1414 538 598 1413 394 577 1415 650 670 1414 650 670 1414 394 577 1415 552 573 1335 406 567 243 553 671 267 573 568 244 573 568 244 553 671 267 657 672 268 572 673 269 657 672 268 414 674 270 414 674 270 657 672 268 553 671 267 394 577 1415 498 576 1338 552 573 1335 552 573 1335 498 576 1338 651 570 1332 1945 675 1416 651 570 1332 1964 507 1303 651 570 1332 498 576 1338 1964 507 1303 498 576 1338 375 504 1300 1964 507 1303 548 667 1408 2091 676 1417 549 666 1407 549 666 1407 2091 676 1417 2092 677 1418 663 679 272 652 680 273 580 678 271 580 678 271 652 680 273 554 681 274 582 682 275 555 683 276 663 679 272 663 679 272 555 683 276 652 680 273 2093 684 1419 547 665 1406 2092 677 1418 2092 677 1418 547 665 1406 549 666 1407 550 668 1411 2095 685 1420 551 669 1412 551 669 1412 2095 685 1420 2090 686 1421 662 688 278 653 689 279 581 687 277 581 687 277 653 689 279 556 690 280 580 678 271 554 681 274 662 688 278 662 688 278 554 681 274 653 689 279 2091 676 1417 548 667 1408 2090 686 1421 2090 686 1421 548 667 1408 551 669 1412 546 663 1404 545 662 1403 2098 692 1423 2098 692 1423 545 662 1403 2097 691 1422 584 693 281 667 694 282 557 696 284 557 696 284 667 694 282 654 695 2270 667 694 1424 586 697 1425 654 695 1427 654 695 1427 586 697 1425 558 698 1426 543 661 1402 546 663 1404 2099 699 1428 2099 699 1428 546 663 1404 2098 692 1423 547 665 1406 2093 684 1419 577 664 1405 577 664 1405 2093 684 1419 2094 700 1429 665 701 287 2060 702 288 582 682 275 582 682 275 2060 702 288 555 683 276 544 660 1401 543 661 1402 2100 703 1430 2100 703 1430 543 661 1402 2099 699 1428 586 697 1425 666 704 1431 558 698 1426 558 698 1426 666 704 1431 2061 705 1432 666 704 1431 585 706 1433 2061 705 1432 2061 705 1432 585 706 1433 559 707 1434 541 659 1400 544 660 1401 2101 708 1435 2101 708 1435 544 660 1401 2100 703 1430 542 658 1399 541 659 1400 2102 709 1436 2102 709 1436 541 659 1400 2101 708 1435 585 706 1433 668 710 1437 559 707 1434 559 707 1434 668 710 1437 2062 711 1438 587 712 1439 560 713 1440 668 710 1437 668 710 1437 560 713 1440 2062 711 1438 2103 714 1441 539 657 1398 2102 709 1436 2102 709 1436 539 657 1398 542 658 1399 536 655 1396 2105 715 1442 537 654 1395 537 654 1395 2105 715 1442 2106 716 1443 670 718 1445 655 719 1446 588 717 1444 588 717 1444 655 719 1446 561 720 1447 589 721 301 562 722 302 670 718 2275 670 718 2275 562 722 302 655 719 299 2107 723 1448 393 653 1394 2106 716 1443 2106 716 1443 393 653 1394 537 654 1395 539 657 1398 2103 714 1441 540 656 1397 540 656 1397 2103 714 1441 2104 724 1449 669 725 1450 2063 726 1451 587 712 1439 587 712 1439 2063 726 1451 560 713 1440 588 717 1444 561 720 1447 669 725 1450 669 725 1450 561 720 1447 2063 726 1451 2105 715 1442 536 655 1396 2104 724 1449 2104 724 1449 536 655 1396 540 656 1397 650 670 1414 552 573 1335 2089 727 1452 2089 727 1452 552 573 1335 2088 572 1334 583 728 305 664 729 306 2058 731 308 2058 731 308 664 729 306 2059 730 307 664 729 306 581 687 277 2059 730 307 2059 730 307 581 687 277 556 690 280 550 668 1411 650 670 1414 2095 685 1420 2095 685 1420 650 670 1414 2089 727 1452 671 732 309 583 728 305 656 733 310 656 733 310 583 728 305 2058 731 308 1947 734 311 671 732 309 1946 735 970 1946 735 970 671 732 309 656 733 310 416 737 972 403 557 240 563 736 971 563 736 971 403 557 240 492 555 238 563 736 971 492 555 238 417 738 973 417 738 973 492 555 238 405 554 237 415 740 975 406 567 243 564 739 974 564 739 974 406 567 243 496 566 242 564 739 974 496 566 242 416 737 972 416 737 972 496 566 242 403 557 240 565 741 2274 419 742 977 526 632 2273 526 632 2273 419 742 977 409 633 247 526 632 1385 408 640 1384 565 741 1453 565 741 1453 408 640 1384 420 743 1454 417 738 973 405 554 237 576 744 979 576 744 979 405 554 237 575 553 236 566 745 1455 420 743 1454 529 639 1382 529 639 1382 420 743 1454 408 640 1384 529 639 1382 410 638 1381 566 745 1455 566 745 1455 410 638 1381 421 746 1456 567 747 1457 421 746 1456 532 646 1388 532 646 1388 421 746 1456 410 638 1381 567 747 1457 532 646 1388 422 748 1458 422 748 1458 532 646 1388 411 645 1387 423 750 1460 413 651 1391 568 749 1459 568 749 1459 413 651 1391 534 650 1390 568 749 984 534 650 264 424 751 986 424 751 986 534 650 264 412 649 263 422 748 1458 411 645 1387 569 752 1461 569 752 1461 411 645 1387 535 652 1392 569 752 1461 535 652 1392 423 750 1460 423 750 1460 535 652 1392 413 651 1391 570 753 988 418 754 989 553 671 267 553 671 267 418 754 989 414 674 270 553 671 267 406 567 243 570 753 988 570 753 988 406 567 243 415 740 975 418 754 989 571 755 990 414 674 270 414 674 270 571 755 990 572 673 269 571 755 990 1963 756 991 572 673 269 572 673 269 1963 756 991 1962 757 992 424 751 986 412 649 263 1963 756 991 1963 756 991 412 649 263 1962 757 992 657 672 268 572 673 269 1961 758 993 1961 758 993 572 673 269 1962 757 992 407 643 257 1960 759 994 533 647 261 533 647 261 1960 759 994 1961 758 993 573 568 244 1960 759 994 658 569 245 658 569 245 1960 759 994 1959 760 995 404 636 250 1958 761 996 530 641 255 530 641 255 1958 761 996 1959 760 995 574 558 241 1958 761 996 659 556 239 659 556 239 1958 761 996 1957 762 997 409 633 247 1956 763 998 527 634 248 527 634 248 1956 763 998 1957 762 997 576 744 979 575 553 236 1955 764 999 1955 764 999 575 553 236 1956 763 998 419 742 977 1955 764 999 409 633 247 409 633 247 1955 764 999 1956 763 998 2060 702 288 665 701 287 1953 766 1001 1953 766 1001 665 701 287 1954 765 1000 545 662 1403 1952 767 1462 2097 691 1422 2097 691 1422 1952 767 1462 2096 768 1463 402 628 1376 1951 769 1464 545 662 1403 545 662 1403 1951 769 1464 1952 767 1462 578 631 1379 1951 769 1464 660 630 1378 660 630 1378 1951 769 1464 1950 770 1465 524 626 1374 401 620 1368 1950 770 1465 1950 770 1465 401 620 1368 1949 771 1466 579 623 1371 1949 771 1466 661 624 1372 661 624 1372 1949 771 1466 1948 772 1467 416 737 972 580 678 271 564 739 974 564 739 974 580 678 271 662 688 278 581 687 277 415 740 975 662 688 278 662 688 278 415 740 975 564 739 974 582 682 275 417 738 973 665 701 287 665 701 287 417 738 973 576 744 979 580 678 271 416 737 972 663 679 272 663 679 272 416 737 972 563 736 971 417 738 973 582 682 275 563 736 971 563 736 971 582 682 275 663 679 272 570 753 988 415 740 975 664 729 306 664 729 306 415 740 975 581 687 277 418 754 989 570 753 988 583 728 305 583 728 305 570 753 988 664 729 306 665 701 287 576 744 979 1954 765 1000 1954 765 1000 576 744 979 1955 764 999 1954 765 1000 584 693 281 1953 766 1001 1953 766 1001 584 693 281 557 696 284 566 745 1455 421 746 1456 666 704 1431 666 704 1431 421 746 1456 585 706 1433 420 743 1454 566 745 1455 586 697 1425 586 697 1425 566 745 1455 666 704 1431 419 742 977 565 741 2274 584 693 281 584 693 281 565 741 2274 667 694 282 565 741 1453 420 743 1454 667 694 1424 667 694 1424 420 743 1454 586 697 1425 421 746 1456 567 747 1457 585 706 1433 585 706 1433 567 747 1457 668 710 1437 422 748 1458 587 712 1439 567 747 1457 567 747 1457 587 712 1439 668 710 1437 587 712 1439 422 748 1458 669 725 1450 669 725 1450 422 748 1458 569 752 1461 423 750 1460 588 717 1444 569 752 1461 569 752 1461 588 717 1444 669 725 1450 1947 734 311 1946 735 970 589 721 301 589 721 301 1946 735 970 562 722 302 589 721 301 424 751 986 1947 734 311 1947 734 311 424 751 986 1963 756 991 588 717 1444 423 750 1460 670 718 1445 670 718 1445 423 750 1460 568 749 1459 424 751 986 589 721 301 568 749 984 568 749 984 589 721 301 670 718 2275 571 755 990 418 754 989 671 732 309 671 732 309 418 754 989 583 728 305 590 773 1468 354 448 1244 672 774 1469 672 774 1469 354 448 1244 440 447 1243 354 448 1244 590 773 1468 447 462 1258 447 462 1258 590 773 1468 673 775 1470 591 776 1471 360 463 1259 673 775 1470 673 775 1470 360 463 1259 447 462 1258 626 466 1262 449 467 1263 674 381 1192 674 381 1192 449 467 1263 592 382 1193 361 465 1261 626 466 1262 593 383 1194 593 383 1194 626 466 1262 674 381 1192 456 478 1274 455 479 1275 675 384 1195 675 384 1195 455 479 1275 594 385 1196 449 467 1263 456 478 1274 592 382 1193 592 382 1193 456 478 1274 675 384 1195 459 485 1281 595 387 1198 460 484 1280 460 484 1280 595 387 1198 676 386 1197 455 479 1275 460 484 1280 594 385 1196 594 385 1196 460 484 1280 676 386 1197 463 491 1287 596 389 1200 464 490 1286 464 490 1286 596 389 1200 677 388 1199 595 387 1198 459 485 1281 677 388 1199 677 388 1199 459 485 1281 464 490 1286 467 497 1293 597 391 1202 468 496 1292 468 496 1292 597 391 1202 678 390 1201 596 389 1200 463 491 1287 678 390 1201 678 390 1201 463 491 1287 468 496 1292 470 503 1299 598 393 1204 471 502 1298 471 502 1298 598 393 1204 679 392 1203 597 391 1202 467 497 1293 679 392 1203 679 392 1203 467 497 1293 471 502 1298 475 515 1311 378 514 1310 680 396 1207 680 396 1207 378 514 1310 599 397 1208 379 517 1313 475 515 1311 600 399 1210 600 399 1210 475 515 1311 680 396 1207 379 517 1313 600 399 1210 399 519 1315 399 519 1315 600 399 1210 608 401 1212 381 523 163 601 777 222 479 524 164 479 524 164 601 777 222 681 405 223 602 404 148 382 526 175 681 405 149 681 405 149 382 526 175 479 524 174 385 532 169 603 778 224 483 533 170 483 533 170 603 778 224 682 779 225 601 777 222 381 523 163 682 779 225 682 779 225 381 523 163 483 533 170 360 463 1259 591 776 1471 490 550 1319 490 550 1319 591 776 1471 683 780 1472 604 411 1215 389 551 1320 683 780 1472 683 780 1472 389 551 1320 490 550 1319 389 551 1320 604 411 1215 495 562 1328 495 562 1328 604 411 1215 684 410 1214 606 781 1473 392 564 1330 684 410 1214 684 410 1214 392 564 1330 495 562 1328 395 579 215 605 417 159 497 574 216 497 574 216 605 417 159 685 416 158 599 397 1208 378 514 1310 685 416 1219 685 416 1219 378 514 1310 497 574 1336 504 588 1347 1970 419 1221 505 587 1346 505 587 1346 1970 419 1221 1971 418 1220 505 587 1346 1971 418 1220 470 503 1299 470 503 1299 1971 418 1220 598 393 1204 507 593 219 382 526 175 686 421 161 686 421 161 382 526 175 602 404 148 395 579 215 507 593 219 605 417 159 605 417 159 507 593 219 686 421 161 392 564 193 606 781 228 509 594 194 509 594 194 606 781 228 687 782 229 607 783 230 400 596 196 687 782 229 687 782 229 400 596 196 509 594 194 400 596 196 607 783 230 512 601 221 512 601 221 607 783 230 688 784 231 603 778 224 385 532 169 688 784 231 688 784 231 385 532 169 512 601 221 621 605 1353 1968 427 1223 620 603 1351 620 603 1351 1968 427 1223 1969 426 1222 620 603 1351 1969 426 1222 504 588 1347 504 588 1347 1969 426 1222 1970 419 1221 399 519 1315 608 401 1212 518 785 1474 518 785 1474 608 401 1212 689 429 1225 612 431 1227 425 786 1475 689 429 1225 689 429 1225 425 786 1475 518 785 1474 523 625 1373 361 465 1261 690 432 1228 690 432 1228 361 465 1261 593 383 1194 380 521 1317 477 520 1316 610 614 1362 610 614 1362 477 520 1316 691 787 1476 477 520 1316 399 519 1315 691 787 1476 691 787 1476 399 519 1315 518 785 1474 425 786 1475 614 788 1477 518 785 1474 518 785 1474 614 788 1477 691 787 1476 614 788 1477 426 615 1363 691 787 1476 691 787 1476 426 615 1363 610 614 1362 425 786 1475 612 431 1227 611 789 1478 611 789 1478 612 431 1227 692 434 1230 350 790 1479 611 789 1478 434 436 1232 434 436 1232 611 789 1478 692 434 1230 426 615 1363 614 788 1477 613 791 1480 613 791 1480 614 788 1477 693 792 1481 614 788 1477 425 786 1475 693 792 1481 693 792 1481 425 786 1475 611 789 1478 350 790 1479 433 793 1482 611 789 1478 611 789 1478 433 793 1482 693 792 1481 349 794 1483 613 791 1480 433 793 1482 433 793 1482 613 791 1480 693 792 1481 615 795 1484 427 609 1357 694 796 1485 694 796 1485 427 609 1357 616 616 1364 616 616 1364 426 615 1363 694 796 1485 694 796 1485 426 615 1363 613 791 1480 349 794 1483 432 797 1486 613 791 1480 613 791 1480 432 797 1486 694 796 1485 432 797 1486 348 798 1487 694 796 1485 694 796 1485 348 798 1487 615 795 1484 618 610 1358 427 609 1357 695 799 1488 695 799 1488 427 609 1357 615 795 1484 348 798 1487 431 800 1489 615 795 1484 615 795 1484 431 800 1489 695 799 1488 431 800 1489 347 801 1490 695 799 1488 695 799 1488 347 801 1490 517 802 1491 428 611 1359 618 610 1358 517 802 1491 517 802 1491 618 610 1358 695 799 1488 347 801 1490 351 803 1492 517 802 1491 517 802 1491 351 803 1492 619 804 1493 429 604 1352 428 611 1359 619 804 1493 619 804 1493 428 611 1359 517 802 1491 621 605 1353 429 604 1352 514 805 1494 514 805 1494 429 604 1352 619 804 1493 351 803 1492 430 806 1495 619 804 1493 619 804 1493 430 806 1495 514 805 1494 1968 427 1223 621 605 1353 1967 437 1233 1967 437 1233 621 605 1353 514 805 1494 430 806 1495 435 438 1234 514 805 1494 514 805 1494 435 438 1234 1967 437 1233 697 808 1497 710 809 1498 696 807 1496 696 807 1496 710 809 1498 709 810 1499 698 811 1500 711 812 1501 697 808 1497 697 808 1497 711 812 1501 710 809 1498 699 813 1502 712 814 1503 698 811 1500 698 811 1500 712 814 1503 711 812 1501 700 815 1504 713 816 1505 699 813 1502 699 813 1502 713 816 1505 712 814 1503 701 817 1506 714 818 1507 700 815 1504 700 815 1504 714 818 1507 713 816 1505 702 819 1508 715 820 1509 701 817 1506 701 817 1506 715 820 1509 714 818 1507 703 821 1510 716 822 1511 702 819 1508 702 819 1508 716 822 1511 715 820 1509 704 823 1512 717 824 1513 703 821 1510 703 821 1510 717 824 1513 716 822 1511 704 823 1512 705 825 1514 717 824 1513 717 824 1513 705 825 1514 718 826 1515 705 825 1514 706 827 1516 718 826 1515 718 826 1515 706 827 1516 719 828 1517 707 829 1518 720 830 1519 706 827 1516 706 827 1516 720 830 1519 719 828 1517 1331 831 1520 721 832 1521 707 829 1518 707 829 1518 721 832 1521 720 830 1519 708 833 1522 722 834 1523 1980 836 1525 1980 836 1525 722 834 1523 1979 835 1524 710 809 1498 724 837 1526 709 810 1499 709 810 1499 724 837 1526 723 838 1527 711 812 1501 725 839 1528 710 809 1498 710 809 1498 725 839 1528 724 837 1526 712 814 1503 726 840 1529 711 812 1501 711 812 1501 726 840 1529 725 839 1528 713 816 1505 727 841 1530 712 814 1503 712 814 1503 727 841 1530 726 840 1529 714 818 1507 728 842 1531 713 816 1505 713 816 1505 728 842 1531 727 841 1530 715 820 1509 729 843 1532 714 818 1507 714 818 1507 729 843 1532 728 842 1531 716 822 1511 730 844 1533 715 820 1509 715 820 1509 730 844 1533 729 843 1532 717 824 1513 731 845 1534 716 822 1511 716 822 1511 731 845 1534 730 844 1533 717 824 1513 718 826 1515 731 845 1534 731 845 1534 718 826 1515 732 846 1535 718 826 1515 719 828 1517 732 846 1535 732 846 1535 719 828 1517 733 847 1536 720 830 1519 734 848 1537 719 828 1517 719 828 1517 734 848 1537 733 847 1536 1333 849 1538 721 832 1521 1982 850 1539 1982 850 1539 721 832 1521 1979 835 1524 724 837 1526 737 851 1540 723 838 1527 723 838 1527 737 851 1540 736 852 1541 725 839 1528 738 853 1542 724 837 1526 724 837 1526 738 853 1542 737 851 1540 726 840 1529 739 854 1543 725 839 1528 725 839 1528 739 854 1543 738 853 1542 727 841 1530 740 855 1544 726 840 1529 726 840 1529 740 855 1544 739 854 1543 728 842 1531 741 856 1545 727 841 1530 727 841 1530 741 856 1545 740 855 1544 729 843 1532 742 857 1546 728 842 1531 728 842 1531 742 857 1546 741 856 1545 730 844 1533 743 858 1547 729 843 1532 729 843 1532 743 858 1547 742 857 1546 731 845 1534 744 859 1548 730 844 1533 730 844 1533 744 859 1548 743 858 1547 731 845 1534 732 846 1535 744 859 1548 744 859 1548 732 846 1535 745 860 1549 733 847 1536 746 861 1550 732 846 1535 732 846 1535 746 861 1550 745 860 1549 734 848 1537 747 862 1551 733 847 1536 733 847 1536 747 862 1551 746 861 1550 1334 863 1552 1333 849 1538 1983 864 1553 1983 864 1553 1333 849 1538 1982 850 1539 736 852 1541 737 851 1540 749 866 1555 749 866 1555 737 851 1540 750 865 1554 738 853 1542 751 867 1556 737 851 1540 737 851 1540 751 867 1556 750 865 1554 739 854 1543 752 868 1557 738 853 1542 738 853 1542 752 868 1557 751 867 1556 740 855 1544 753 869 1558 739 854 1543 739 854 1543 753 869 1558 752 868 1557 741 856 1545 754 870 1559 740 855 1544 740 855 1544 754 870 1559 753 869 1558 742 857 1546 755 871 1560 741 856 1545 741 856 1545 755 871 1560 754 870 1559 743 858 1547 756 872 1561 742 857 1546 742 857 1546 756 872 1561 755 871 1560 744 859 1548 757 873 1562 743 858 1547 743 858 1547 757 873 1562 756 872 1561 744 859 1548 745 860 1549 757 873 1562 757 873 1562 745 860 1549 758 874 1563 746 861 1550 759 875 1564 745 860 1549 745 860 1549 759 875 1564 758 874 1563 747 862 1551 760 876 1565 746 861 1550 746 861 1550 760 876 1565 759 875 1564 1335 877 1566 1334 863 1552 1984 878 1567 1984 878 1567 1334 863 1552 1983 864 1553 749 866 1555 750 865 1554 762 880 1569 762 880 1569 750 865 1554 763 879 1568 751 867 1556 764 881 1570 750 865 1554 750 865 1554 764 881 1570 763 879 1568 752 868 1557 765 882 1571 751 867 1556 751 867 1556 765 882 1571 764 881 1570 753 869 1558 766 883 1572 752 868 1557 752 868 1557 766 883 1572 765 882 1571 754 870 1559 767 884 1573 753 869 1558 753 869 1558 767 884 1573 766 883 1572 755 871 1560 768 885 1574 754 870 1559 754 870 1559 768 885 1574 767 884 1573 756 872 1561 769 886 1575 755 871 1560 755 871 1560 769 886 1575 768 885 1574 757 873 1562 770 887 1576 756 872 1561 756 872 1561 770 887 1576 769 886 1575 757 873 1562 758 874 1563 770 887 1576 770 887 1576 758 874 1563 771 888 1577 759 875 1564 772 889 1578 758 874 1563 758 874 1563 772 889 1578 771 888 1577 760 876 1565 773 890 1579 759 875 1564 759 875 1564 773 890 1579 772 889 1578 1336 891 1580 1335 877 1566 1981 892 1581 1981 892 1581 1335 877 1566 1984 878 1567 762 880 1569 763 879 1568 775 894 1583 775 894 1583 763 879 1568 776 893 1582 764 881 1570 777 895 1584 763 879 1568 763 879 1568 777 895 1584 776 893 1582 765 882 1571 778 896 1585 764 881 1570 764 881 1570 778 896 1585 777 895 1584 766 883 1572 779 897 1586 765 882 1571 765 882 1571 779 897 1586 778 896 1585 767 884 1573 780 898 1587 766 883 1572 766 883 1572 780 898 1587 779 897 1586 768 885 1574 781 899 1588 767 884 1573 767 884 1573 781 899 1588 780 898 1587 769 886 1575 782 900 1589 768 885 1574 768 885 1574 782 900 1589 781 899 1588 770 887 1576 783 901 1590 769 886 1575 769 886 1575 783 901 1590 782 900 1589 770 887 1576 771 888 1577 783 901 1590 783 901 1590 771 888 1577 784 902 1591 771 888 1577 772 889 1578 784 902 1591 784 902 1591 772 889 1578 785 903 1592 773 890 1579 786 904 1593 772 889 1578 772 889 1578 786 904 1593 785 903 1592 2 361 1172 1336 891 1580 87 359 1170 87 359 1170 1336 891 1580 1981 892 1581 775 894 1583 776 893 1582 787 906 1595 787 906 1595 776 893 1582 788 905 1594 777 895 1584 789 907 1596 776 893 1582 776 893 1582 789 907 1596 788 905 1594 778 896 1585 790 908 1597 777 895 1584 777 895 1584 790 908 1597 789 907 1596 779 897 1586 791 909 1598 778 896 1585 778 896 1585 791 909 1598 790 908 1597 780 898 1587 792 910 1599 779 897 1586 779 897 1586 792 910 1599 791 909 1598 781 899 1588 793 911 1600 780 898 1587 780 898 1587 793 911 1600 792 910 1599 782 900 1589 794 912 1601 781 899 1588 781 899 1588 794 912 1601 793 911 1600 783 901 1590 795 913 1602 782 900 1589 782 900 1589 795 913 1602 794 912 1601 783 901 1590 784 902 1591 795 913 1602 795 913 1602 784 902 1591 796 914 1603 784 902 1591 785 903 1592 796 914 1603 796 914 1603 785 903 1592 797 915 1604 786 904 1593 798 916 1605 785 903 1592 785 903 1592 798 916 1605 797 915 1604 787 906 1595 788 905 1594 799 918 1607 799 918 1607 788 905 1594 800 917 1606 789 907 1596 801 919 1608 788 905 1594 788 905 1594 801 919 1608 800 917 1606 790 908 1597 802 920 1609 789 907 1596 789 907 1596 802 920 1609 801 919 1608 791 909 1598 803 921 1610 790 908 1597 790 908 1597 803 921 1610 802 920 1609 792 910 1599 804 922 1611 791 909 1598 791 909 1598 804 922 1611 803 921 1610 793 911 1600 805 923 1612 792 910 1599 792 910 1599 805 923 1612 804 922 1611 794 912 1601 806 924 1613 793 911 1600 793 911 1600 806 924 1613 805 923 1612 795 913 1602 807 925 1614 794 912 1601 794 912 1601 807 925 1614 806 924 1613 795 913 1602 796 914 1603 807 925 1614 807 925 1614 796 914 1603 808 926 1615 796 914 1603 797 915 1604 808 926 1615 808 926 1615 797 915 1604 809 927 1616 798 916 1605 810 928 1617 797 915 1604 797 915 1604 810 928 1617 809 927 1616 799 918 1607 800 917 1606 811 930 1619 811 930 1619 800 917 1606 812 929 1618 801 919 1608 813 931 1620 800 917 1606 800 917 1606 813 931 1620 812 929 1618 802 920 1609 814 932 1621 801 919 1608 801 919 1608 814 932 1621 813 931 1620 803 921 1610 815 933 1622 802 920 1609 802 920 1609 815 933 1622 814 932 1621 804 922 1611 816 934 1623 803 921 1610 803 921 1610 816 934 1623 815 933 1622 805 923 1612 817 935 1624 804 922 1611 804 922 1611 817 935 1624 816 934 1623 806 924 1613 818 936 1625 805 923 1612 805 923 1612 818 936 1625 817 935 1624 807 925 1614 819 937 1626 806 924 1613 806 924 1613 819 937 1626 818 936 1625 807 925 1614 808 926 1615 819 937 1626 819 937 1626 808 926 1615 820 938 1627 808 926 1615 809 927 1616 820 938 1627 820 938 1627 809 927 1616 821 939 1628 810 928 1617 822 940 1629 809 927 1616 809 927 1616 822 940 1629 821 939 1628 811 930 1619 812 929 1618 823 942 1631 823 942 1631 812 929 1618 824 941 1630 813 931 1620 825 943 1632 812 929 1618 812 929 1618 825 943 1632 824 941 1630 814 932 1621 826 944 1633 813 931 1620 813 931 1620 826 944 1633 825 943 1632 815 933 1622 827 945 1634 814 932 1621 814 932 1621 827 945 1634 826 944 1633 816 934 1623 828 946 1635 815 933 1622 815 933 1622 828 946 1635 827 945 1634 817 935 1624 829 947 1636 816 934 1623 816 934 1623 829 947 1636 828 946 1635 818 936 1625 830 948 1637 817 935 1624 817 935 1624 830 948 1637 829 947 1636 818 936 1625 819 937 1626 830 948 1637 830 948 1637 819 937 1626 831 949 1638 819 937 1626 820 938 1627 831 949 1638 831 949 1638 820 938 1627 832 950 1639 820 938 1627 821 939 1628 832 950 1639 832 950 1639 821 939 1628 833 951 1640 821 939 1628 822 940 1629 833 951 1640 833 951 1640 822 940 1629 834 952 1641 823 942 1631 824 941 1630 846 954 1643 846 954 1643 824 941 1630 835 953 1642 825 943 1632 836 955 1644 824 941 1630 824 941 1630 836 955 1644 835 953 1642 826 944 1633 837 956 1645 825 943 1632 825 943 1632 837 956 1645 836 955 1644 827 945 1634 838 957 1646 826 944 1633 826 944 1633 838 957 1646 837 956 1645 828 946 1635 839 958 1647 827 945 1634 827 945 1634 839 958 1647 838 957 1646 829 947 1636 840 959 1648 828 946 1635 828 946 1635 840 959 1648 839 958 1647 830 948 1637 841 960 1649 829 947 1636 829 947 1636 841 960 1649 840 959 1648 830 948 1637 831 949 1638 841 960 1649 841 960 1649 831 949 1638 842 961 1650 831 949 1638 832 950 1639 842 961 1650 842 961 1650 832 950 1639 843 962 1651 833 951 1640 844 963 1652 832 950 1639 832 950 1639 844 963 1652 843 962 1651 833 951 1640 834 952 1641 844 963 1652 844 963 1652 834 952 1641 845 964 1653 846 954 1643 835 953 1642 847 966 1655 847 966 1655 835 953 1642 848 965 1654 835 953 1642 836 955 1644 848 965 1654 848 965 1654 836 955 1644 849 967 1656 836 955 1644 837 956 1645 849 967 1656 849 967 1656 837 956 1645 850 968 1657 837 956 1645 838 957 1646 850 968 1657 850 968 1657 838 957 1646 851 969 1658 839 958 1647 852 970 1659 838 957 1646 838 957 1646 852 970 1659 851 969 1658 840 959 1648 853 971 1660 839 958 1647 839 958 1647 853 971 1660 852 970 1659 841 960 1649 854 972 1661 840 959 1648 840 959 1648 854 972 1661 853 971 1660 841 960 1649 842 961 1650 854 972 1661 854 972 1661 842 961 1650 855 973 1662 843 962 1651 856 974 1663 842 961 1650 842 961 1650 856 974 1663 855 973 1662 844 963 1652 857 975 1664 843 962 1651 843 962 1651 857 975 1664 856 974 1663 845 964 1653 858 976 1665 844 963 1652 844 963 1652 858 976 1665 857 975 1664 847 966 1655 848 965 1654 859 978 1667 859 978 1667 848 965 1654 860 977 1666 848 965 1654 849 967 1656 860 977 1666 860 977 1666 849 967 1656 861 979 1668 849 967 1656 850 968 1657 861 979 1668 861 979 1668 850 968 1657 862 980 1669 853 971 1660 854 972 1661 863 981 1670 855 973 1662 864 982 1671 854 972 1661 854 972 1661 864 982 1671 863 981 1670 856 974 1663 865 983 1672 855 973 1662 855 973 1662 865 983 1672 864 982 1671 857 975 1664 866 984 1673 856 974 1663 856 974 1663 866 984 1673 865 983 1672 858 976 1665 867 985 1674 857 975 1664 857 975 1664 867 985 1674 866 984 1673 859 978 1667 860 977 1666 868 987 1676 868 987 1676 860 977 1666 869 986 1675 860 977 1666 861 979 1668 869 986 1675 869 986 1675 861 979 1668 870 988 1677 868 987 1676 869 986 1675 871 990 1679 871 990 1679 869 986 1675 872 989 1678 870 988 1677 873 991 1680 869 986 1675 869 986 1675 873 991 1680 872 989 1678 875 992 1681 874 993 1682 865 983 1672 865 983 1672 874 993 1682 864 982 1671 866 984 1673 876 994 1683 865 983 1672 865 983 1672 876 994 1683 875 992 1681 867 985 1674 877 995 1684 866 984 1673 866 984 1673 877 995 1684 876 994 1683 871 990 1679 872 989 1678 878 997 1686 878 997 1686 872 989 1678 879 996 1685 873 991 1680 880 998 1687 872 989 1678 872 989 1678 880 998 1687 879 996 1685 881 1000 1689 874 993 1682 882 999 1688 882 999 1688 874 993 1682 875 992 1681 875 992 1681 876 994 1683 882 999 1688 882 999 1688 876 994 1683 883 1001 1690 877 995 1684 884 1002 1691 876 994 1683 876 994 1683 884 1002 1691 883 1001 1690 878 997 1686 879 996 1685 885 1004 1693 885 1004 1693 879 996 1685 886 1003 1692 879 996 1685 880 998 1687 886 1003 1692 886 1003 1692 880 998 1687 887 1005 1694 889 1006 1695 888 1007 1696 882 999 1688 882 999 1688 888 1007 1696 881 1000 1689 882 999 1688 883 1001 1690 889 1006 1695 889 1006 1695 883 1001 1690 890 1008 1697 884 1002 1691 891 1009 1698 883 1001 1690 883 1001 1690 891 1009 1698 890 1008 1697 885 1004 1693 886 1003 1692 892 1011 1700 892 1011 1700 886 1003 1692 893 1010 1699 886 1003 1692 887 1005 1694 893 1010 1699 893 1010 1699 887 1005 1694 894 1012 1701 888 1007 1696 889 1006 1695 1313 1013 1702 1313 1013 1702 889 1006 1695 895 1014 1703 889 1006 1695 890 1008 1697 895 1014 1703 895 1014 1703 890 1008 1697 896 1015 1704 890 1008 1697 891 1009 1698 896 1015 1704 896 1015 1704 891 1009 1698 1314 1016 1705 891 1009 1698 1337 1017 1706 1314 1016 1705 1314 1016 1705 1337 1017 1706 897 1018 1707 1985 1019 1708 1337 1017 1706 1986 1021 1710 1986 1021 1710 1337 1017 1706 320 1020 1709 892 1011 1700 893 1010 1699 898 1023 1712 898 1023 1712 893 1010 1699 899 1022 1711 893 1010 1699 894 1012 1701 899 1022 1711 899 1022 1711 894 1012 1701 900 1024 1713 1312 1025 1714 1311 1026 1715 905 1028 1717 905 1028 1717 1311 1026 1715 906 1027 1716 697 808 1497 696 807 1496 907 1029 1718 698 811 1500 697 808 1497 907 1029 1718 699 813 1502 698 811 1500 907 1029 1718 700 815 1504 699 813 1502 907 1029 1718 701 817 1506 700 815 1504 907 1029 1718 702 819 1508 701 817 1506 907 1029 1718 703 821 1510 702 819 1508 907 1029 1718 704 823 1512 703 821 1510 907 1029 1718 705 825 1514 704 823 1512 907 1029 1718 706 827 1516 705 825 1514 907 1029 1718 707 829 1518 706 827 1516 907 1029 1718 707 829 1518 907 1029 1718 1331 831 1520 708 833 1522 1980 836 1525 907 1029 1718 941 1030 312 980 1031 313 1007 1033 315 1007 1033 315 980 1031 313 1044 1032 314 1007 1033 315 1028 1034 316 941 1030 312 941 1030 312 1028 1034 316 956 1035 317 942 1036 318 958 1037 319 1007 1033 315 1007 1033 315 958 1037 319 1028 1034 316 1007 1033 315 1044 1032 314 942 1036 318 942 1036 318 1044 1032 314 981 1038 320 943 1039 321 979 1040 322 1008 1042 324 1008 1042 324 979 1040 322 1043 1041 323 1008 1042 324 1029 1043 325 943 1039 321 943 1039 321 1029 1043 325 955 1044 326 941 1030 312 956 1035 317 1008 1042 324 1008 1042 324 956 1035 317 1029 1043 325 1008 1042 324 1043 1041 323 941 1030 312 941 1030 312 1043 1041 323 980 1031 313 944 1045 327 978 1046 328 1009 1048 330 1009 1048 330 978 1046 328 1042 1047 329 1009 1048 330 1027 1049 331 944 1045 327 944 1045 327 1027 1049 331 953 1050 332 943 1039 321 955 1044 326 1009 1048 330 1009 1048 330 955 1044 326 1027 1049 331 1009 1048 330 1042 1047 329 943 1039 321 943 1039 321 1042 1047 329 979 1040 322 977 1052 334 1041 1053 335 945 1051 333 945 1051 333 1041 1053 335 1010 1054 336 1010 1054 336 1030 1055 337 945 1051 333 945 1051 333 1030 1055 337 960 1056 338 944 1045 327 953 1050 332 1010 1054 336 1010 1054 336 953 1050 332 1030 1055 337 1010 1054 336 1041 1053 335 944 1045 327 944 1045 327 1041 1053 335 978 1046 328 1032 1058 340 964 1059 341 1011 1057 339 1011 1057 339 964 1059 341 946 1060 342 960 1056 338 1032 1058 340 945 1051 333 945 1051 333 1032 1058 340 1011 1057 339 1011 1057 339 946 1060 342 1067 1062 344 1067 1062 344 946 1060 342 1066 1061 343 976 1064 346 1040 1065 347 947 1063 345 947 1063 345 1040 1065 347 1012 1066 348 1034 1067 349 968 1068 350 1012 1066 348 1012 1066 348 968 1068 350 947 1063 345 964 1059 341 1034 1067 349 946 1060 342 946 1060 342 1034 1067 349 1012 1066 348 1040 1065 347 1066 1061 343 1012 1066 348 1012 1066 348 1066 1061 343 946 1060 342 975 1070 352 1039 1071 353 948 1069 351 948 1069 351 1039 1071 353 1013 1072 354 1036 1073 355 971 1074 356 1013 1072 354 1013 1072 354 971 1074 356 948 1069 351 968 1068 350 1036 1073 355 947 1063 345 947 1063 345 1036 1073 355 1013 1072 354 1039 1071 353 976 1064 346 1013 1072 354 1013 1072 354 976 1064 346 947 1063 345 973 1076 358 1038 1077 359 949 1075 357 949 1075 357 1038 1077 359 1014 1078 360 1035 1079 361 967 1080 362 1014 1078 360 1014 1078 360 967 1080 362 949 1075 357 971 1074 356 1035 1079 361 948 1069 351 948 1069 351 1035 1079 361 1014 1078 360 1038 1077 359 975 1070 352 1014 1078 360 1014 1078 360 975 1070 352 948 1069 351 974 1082 364 1037 1083 365 950 1081 363 950 1081 363 1037 1083 365 1015 1084 366 1033 1085 367 963 1086 368 1015 1084 366 1015 1084 366 963 1086 368 950 1081 363 967 1080 362 1033 1085 367 949 1075 357 949 1075 357 1033 1085 367 1015 1084 366 1037 1083 365 973 1076 358 1015 1084 366 1015 1084 366 973 1076 358 949 1075 357 942 1036 318 981 1038 320 1016 1088 370 1016 1088 370 981 1038 320 1045 1087 369 1016 1088 370 1031 1089 371 942 1036 318 942 1036 318 1031 1089 371 958 1037 319 950 1081 363 963 1086 368 1016 1088 370 1016 1088 370 963 1086 368 1031 1089 371 1016 1088 370 1045 1087 369 950 1081 363 950 1081 363 1045 1087 369 974 1082 364 1038 1077 359 973 1076 358 1044 1032 314 1044 1032 314 973 1076 358 981 1038 320 986 1090 1719 1048 1091 1720 1906 1093 1722 1906 1093 1722 1048 1091 1720 1907 1092 1721 923 1094 1723 1017 1095 1724 1908 1096 1725 1908 1096 1725 1017 1095 1724 1907 1092 1721 990 1097 1726 1050 1098 1727 1913 1100 1729 1913 1100 1729 1050 1098 1727 1911 1099 1728 925 1101 1730 1018 1102 1731 1909 1103 1732 1909 1103 1732 1018 1102 1731 1911 1099 1728 909 1104 1733 1051 1105 1734 1909 1103 1732 1909 1103 1732 1051 1105 1734 1905 1106 1735 951 1107 1736 1019 1108 1737 1906 1093 1722 1906 1093 1722 1019 1108 1737 1905 1106 1735 1052 1110 1739 1910 1111 1740 908 1109 1738 908 1109 1738 1910 1111 1740 1908 1096 1725 924 1112 1741 1020 1113 1742 1912 1114 1743 1912 1114 1743 1020 1113 1742 1910 1111 1740 910 1115 1744 1053 1116 1745 1912 1114 1743 1912 1114 1743 1053 1116 1745 1914 1117 1746 1021 1119 1748 1914 1117 1746 926 1118 1747 926 1118 1747 1914 1117 1746 1916 1120 1749 1022 1122 1751 1918 1123 1752 927 1121 1750 927 1121 1750 1918 1123 1752 1920 1124 1753 1046 1126 1755 1918 1123 1752 982 1125 1754 982 1125 1754 1918 1123 1752 1916 1120 1749 1047 1128 1757 1922 1129 1758 984 1127 1756 984 1127 1756 1922 1129 1758 1920 1124 1753 1023 1131 1760 1922 1129 1758 929 1130 1759 929 1130 1759 1922 1129 1758 1924 1132 1761 1054 1134 1763 1923 1135 1764 911 1133 1762 911 1133 1762 1923 1135 1764 1924 1132 1761 1024 1137 1766 1923 1135 1764 930 1136 1765 930 1136 1765 1923 1135 1764 1921 1138 1767 1049 1140 1769 1919 1141 1770 988 1139 1768 988 1139 1768 1919 1141 1770 1921 1138 1767 1025 1143 1772 1919 1141 1770 928 1142 1771 928 1142 1771 1919 1141 1770 1917 1144 1773 1055 1146 1775 1915 1147 1776 912 1145 1774 912 1145 1774 1915 1147 1776 1917 1144 1773 1026 1149 1778 1915 1147 1776 952 1148 1777 952 1148 1777 1915 1147 1776 1913 1100 1729 1027 1049 331 954 1150 969 953 1050 332 953 1050 332 954 1150 969 914 1151 963 954 1152 969 1027 1049 331 913 1153 967 913 1153 967 1027 1049 331 955 1044 326 1028 1034 316 957 1154 968 956 1035 317 956 1035 317 957 1154 968 916 1155 965 957 1156 968 1028 1034 316 915 1157 962 915 1157 962 1028 1034 316 958 1037 319 1029 1043 325 959 1158 966 955 1044 326 955 1044 326 959 1158 966 913 1159 967 959 1160 966 1029 1043 325 916 1161 965 916 1161 965 1029 1043 325 956 1035 317 1030 1055 337 961 1162 964 960 1056 338 960 1056 338 961 1162 964 917 1163 959 961 1164 964 1030 1055 337 914 1165 963 914 1165 963 1030 1055 337 953 1050 332 1031 1089 371 962 1166 961 958 1037 319 958 1037 319 962 1166 961 915 1167 962 962 1168 961 1031 1089 371 918 1169 958 918 1169 958 1031 1089 371 963 1086 368 964 1059 341 1032 1058 340 919 1171 955 919 1171 955 1032 1058 340 965 1170 960 1032 1058 340 960 1056 338 965 1172 960 965 1172 960 960 1056 338 917 1173 959 963 1086 368 1033 1085 367 918 1175 958 918 1175 958 1033 1085 367 966 1174 957 1033 1085 367 967 1080 362 966 1176 957 966 1176 957 967 1080 362 920 1177 954 968 1068 350 1034 1067 349 921 1179 950 921 1179 950 1034 1067 349 969 1178 956 1034 1067 349 964 1059 341 969 1180 956 969 1180 956 964 1059 341 919 1181 955 967 1080 362 1035 1079 361 920 1183 954 920 1183 954 1035 1079 361 970 1182 953 1035 1079 361 971 1074 356 970 1184 953 970 1184 953 971 1074 356 922 1185 952 971 1074 356 1036 1073 355 922 1187 952 922 1187 952 1036 1073 355 972 1186 951 1036 1073 355 968 1068 350 972 1188 951 972 1188 951 968 1068 350 921 1189 950 954 1191 1780 1020 1113 1742 914 1190 1779 914 1190 1779 1020 1113 1742 924 1112 1741 1020 1113 1742 954 1192 1780 923 1094 1723 923 1094 1723 954 1192 1780 913 1193 1781 957 1195 1783 1019 1108 1737 916 1194 1782 916 1194 1782 1019 1108 1737 951 1107 1736 925 1101 1730 1019 1108 1737 915 1197 1784 915 1197 1784 1019 1108 1737 957 1196 1783 923 1094 1723 913 1198 1781 1017 1095 1724 1017 1095 1724 913 1198 1781 959 1199 1785 916 1200 1782 951 1107 1736 959 1201 1785 959 1201 1785 951 1107 1736 1017 1095 1724 961 1203 1787 1021 1119 1748 917 1202 1786 917 1202 1786 1021 1119 1748 926 1118 1747 914 1204 1779 924 1112 1741 961 1205 1787 961 1205 1787 924 1112 1741 1021 1119 1748 915 1206 1784 962 1207 1788 925 1101 1730 925 1101 1730 962 1207 1788 1018 1102 1731 952 1148 1777 1018 1102 1731 918 1209 1789 918 1209 1789 1018 1102 1731 962 1208 1788 965 1211 1791 1022 1122 1751 919 1210 1790 919 1210 1790 1022 1122 1751 927 1121 1750 917 1212 1786 926 1118 1747 965 1213 1791 965 1213 1791 926 1118 1747 1022 1122 1751 918 1214 1789 966 1215 1792 952 1148 1777 952 1148 1777 966 1215 1792 1026 1149 1778 928 1142 1771 1026 1149 1778 920 1217 1793 920 1217 1793 1026 1149 1778 966 1216 1792 969 1219 1795 1023 1131 1760 921 1218 1794 921 1218 1794 1023 1131 1760 929 1130 1759 919 1220 1790 927 1121 1750 969 1221 1795 969 1221 1795 927 1121 1750 1023 1131 1760 920 1222 1793 970 1223 1796 928 1142 1771 928 1142 1771 970 1223 1796 1025 1143 1772 930 1136 1765 1025 1143 1772 922 1225 1797 922 1225 1797 1025 1143 1772 970 1224 1796 930 1136 1765 922 1226 1797 1024 1137 1766 1024 1137 1766 922 1226 1797 972 1227 1798 921 1228 1794 929 1130 1759 972 1229 1798 972 1229 1798 929 1130 1759 1024 1137 1766 1046 1126 1755 996 1230 1799 984 1127 1756 984 1127 1756 996 1230 1799 932 1231 1800 1046 1126 1755 982 1125 1754 996 1230 1799 996 1230 1799 982 1125 1754 931 1232 1801 1047 1128 1757 983 1233 1802 911 1133 1762 911 1133 1762 983 1233 1802 933 1234 1803 983 1233 1802 1047 1128 1757 932 1231 1800 932 1231 1800 1047 1128 1757 984 1127 1756 908 1109 1738 1048 1091 1720 935 1236 1805 935 1236 1805 1048 1091 1720 985 1235 1804 1048 1091 1720 986 1090 1719 985 1235 1804 985 1235 1804 986 1090 1719 934 1237 1806 1049 1140 1769 987 1238 1807 912 1145 1774 912 1145 1774 987 1238 1807 937 1239 1808 987 1238 1807 1049 1140 1769 936 1240 1809 936 1240 1809 1049 1140 1769 988 1139 1768 909 1104 1733 1050 1098 1727 939 1242 1811 939 1242 1811 1050 1098 1727 989 1241 1810 989 1241 1810 1050 1098 1727 938 1243 1812 938 1243 1812 1050 1098 1727 990 1097 1726 986 1090 1719 1051 1105 1734 934 1237 1806 934 1237 1806 1051 1105 1734 991 1244 1813 1051 1105 1734 909 1104 1733 991 1244 1813 991 1244 1813 909 1104 1733 939 1242 1811 910 1115 1744 1052 1110 1739 940 1246 1815 940 1246 1815 1052 1110 1739 992 1245 1814 1052 1110 1739 908 1109 1738 992 1245 1814 992 1245 1814 908 1109 1738 935 1236 1805 982 1125 1754 1053 1116 1745 931 1232 1801 931 1232 1801 1053 1116 1745 993 1247 1816 1053 1116 1745 910 1115 1744 993 1247 1816 993 1247 1816 910 1115 1744 940 1246 1815 1054 1134 1763 994 1248 1817 988 1139 1768 988 1139 1768 994 1248 1817 936 1240 1809 994 1248 1817 1054 1134 1763 933 1234 1803 933 1234 1803 1054 1134 1763 911 1133 1762 1055 1146 1775 995 1249 1818 990 1097 1726 990 1097 1726 995 1249 1818 938 1243 1812 995 1249 1818 1055 1146 1775 937 1239 1808 937 1239 1808 1055 1146 1775 912 1145 1774 1056 1250 1819 997 1251 1820 996 1230 1799 996 1230 1799 997 1251 1820 932 1231 1800 998 1252 1821 1056 1250 1819 931 1232 1801 931 1232 1801 1056 1250 1819 996 1230 1799 983 1233 1802 1057 1253 1822 933 1234 1803 933 1234 1803 1057 1253 1822 999 1254 1823 1057 1253 1822 983 1233 1802 997 1251 1820 997 1251 1820 983 1233 1802 932 1231 1800 1058 1255 1824 1000 1256 1825 985 1235 1804 985 1235 1804 1000 1256 1825 935 1236 1805 1001 1257 1826 1058 1255 1824 934 1237 1806 934 1237 1806 1058 1255 1824 985 1235 1804 987 1238 1807 1059 1258 1827 937 1239 1808 937 1239 1808 1059 1258 1827 1002 1259 1828 1059 1258 1827 987 1238 1807 1003 1260 1829 1003 1260 1829 987 1238 1807 936 1240 1809 989 1241 1810 1060 1261 1830 939 1242 1811 939 1242 1811 1060 1261 1830 1004 1262 1831 1060 1261 1830 989 1241 1810 1005 1263 1832 1005 1263 1832 989 1241 1810 938 1243 1812 1061 1264 1833 1001 1257 1826 991 1244 1813 991 1244 1813 1001 1257 1826 934 1237 1806 1004 1262 1831 1061 1264 1833 939 1242 1811 939 1242 1811 1061 1264 1833 991 1244 1813 1062 1265 1834 1006 1266 1835 992 1245 1814 992 1245 1814 1006 1266 1835 940 1246 1815 1000 1256 1825 1062 1265 1834 935 1236 1805 935 1236 1805 1062 1265 1834 992 1245 1814 1063 1267 1836 998 1252 1821 993 1247 1816 993 1247 1816 998 1252 1821 931 1232 1801 1006 1266 1835 1063 1267 1836 940 1246 1815 940 1246 1815 1063 1267 1836 993 1247 1816 994 1248 1817 1064 1268 1837 936 1240 1809 936 1240 1809 1064 1268 1837 1003 1260 1829 1064 1268 1837 994 1248 1817 999 1254 1823 999 1254 1823 994 1248 1817 933 1234 1803 995 1249 1818 1065 1269 1838 938 1243 1812 938 1243 1812 1065 1269 1838 1005 1263 1832 1065 1269 1838 995 1249 1818 1002 1259 1828 1002 1259 1828 995 1249 1818 937 1239 1808 1037 1083 365 974 1082 364 973 1076 358 973 1076 358 974 1082 364 981 1038 320 974 1082 364 1045 1087 369 981 1038 320 980 1031 313 1043 1041 323 975 1070 352 975 1070 352 1043 1041 323 1039 1071 353 1044 1032 314 980 1031 313 1038 1077 359 1038 1077 359 980 1031 313 975 1070 352 1043 1041 323 979 1040 322 1039 1071 353 1039 1071 353 979 1040 322 976 1064 346 1041 1053 335 977 1052 334 978 1046 328 1066 1061 343 978 1046 328 1067 1062 344 978 1046 328 977 1052 334 1067 1062 344 1042 1047 329 1040 1065 347 979 1040 322 979 1040 322 1040 1065 347 976 1064 346 1067 1062 344 977 1052 334 1011 1057 339 1011 1057 339 977 1052 334 945 1051 333 978 1046 328 1066 1061 343 1042 1047 329 1042 1047 329 1066 1061 343 1040 1065 347 997 1251 1820 1056 1250 1819 903 1271 1840 903 1271 1840 1056 1250 1819 904 1270 1839 1056 1250 1819 998 1252 1821 904 1270 1839 904 1270 1839 998 1252 1821 1313 1013 1702 1057 1253 1822 902 1272 1841 999 1254 1823 999 1254 1823 902 1272 1841 901 1273 1842 1058 1255 1824 863 981 1670 1000 1256 1825 1000 1256 1825 863 981 1670 864 982 1671 1058 1255 1824 1001 1257 1826 863 981 1670 863 981 1670 1001 1257 1826 853 971 1660 1059 1258 1827 887 1005 1694 1002 1259 1828 1002 1259 1828 887 1005 1694 880 998 1687 1003 1260 1829 894 1012 1701 1059 1258 1827 1059 1258 1827 894 1012 1701 887 1005 1694 1004 1262 1831 1060 1261 1830 851 969 1658 851 969 1658 1060 1261 1830 862 980 1669 1060 1261 1830 1005 1263 1832 862 980 1669 862 980 1669 1005 1263 1832 870 988 1677 1061 1264 1833 852 970 1659 1001 1257 1826 1001 1257 1826 852 970 1659 853 971 1660 1061 1264 1833 1004 1262 1831 852 970 1659 852 970 1659 1004 1262 1831 851 969 1658 1006 1266 1835 1062 1265 1834 881 1000 1689 881 1000 1689 1062 1265 1834 874 993 1682 1062 1265 1834 1000 1256 1825 874 993 1682 874 993 1682 1000 1256 1825 864 982 1671 1063 1267 1836 1006 1266 1835 888 1007 1696 888 1007 1696 1006 1266 1835 881 1000 1689 1003 1260 1829 1064 1268 1837 894 1012 1701 894 1012 1701 1064 1268 1837 900 1024 1713 999 1254 1823 901 1273 1842 1064 1268 1837 1064 1268 1837 901 1273 1842 900 1024 1713 1005 1263 1832 1065 1269 1838 870 988 1677 870 988 1677 1065 1269 1838 873 991 1680 1065 1269 1838 1002 1259 1828 873 991 1680 873 991 1680 1002 1259 1828 880 998 1687 997 1251 1820 903 1271 1840 1057 1253 1822 1057 1253 1822 903 1271 1840 902 1272 1841 870 988 1677 861 979 1668 862 980 1669 862 980 1669 850 968 1657 851 969 1658 1063 1267 1836 888 1007 1696 998 1252 1821 998 1252 1821 888 1007 1696 1313 1013 1702 1116 1274 372 1237 1275 373 1117 1276 374 1237 1275 373 1152 1278 376 1151 1277 375 1151 1277 375 1152 1278 376 1117 1276 374 1153 1279 377 1238 1280 378 1070 1282 380 1070 1282 380 1238 1280 378 1092 1281 379 1238 1280 378 1153 1279 377 1308 1283 381 1308 1283 381 1153 1279 377 1309 1284 382 1239 1285 383 1310 1286 384 1153 1279 377 1153 1279 377 1310 1286 384 1309 1284 382 1110 1287 385 1287 1288 386 1093 1289 387 1093 1289 387 1287 1288 386 1239 1285 383 1239 1285 383 1153 1279 377 1093 1289 387 1093 1289 387 1153 1279 377 1070 1282 380 1118 1291 389 1154 1292 390 1219 1290 388 1219 1290 388 1154 1292 390 1297 1293 391 1115 1295 393 1297 1293 391 1113 1294 392 1113 1294 392 1297 1293 391 1154 1292 390 1112 1297 395 1150 1298 396 1120 1296 394 1120 1296 394 1150 1298 396 1155 1299 397 1071 1300 398 1155 1299 397 1069 1302 399 1069 1302 399 1155 1299 397 1150 1301 396 1154 1292 390 1240 1303 400 1113 1305 392 1113 1305 392 1240 1303 400 1156 1304 401 1240 1303 400 1277 1307 402 1156 1306 401 1156 1306 401 1277 1307 402 1114 1308 403 1277 1307 402 1240 1303 400 1222 1310 405 1222 1310 405 1240 1303 400 1157 1309 404 1240 1303 400 1154 1292 390 1157 1309 404 1157 1309 404 1154 1292 390 1118 1291 389 1121 1312 407 1158 1313 408 1218 1311 406 1218 1311 406 1158 1313 408 1274 1314 409 1219 1290 388 1274 1314 409 1118 1291 389 1118 1291 389 1274 1314 409 1158 1313 408 1159 1315 410 1241 1316 411 1123 1318 413 1123 1318 413 1241 1316 411 1160 1317 412 1241 1316 411 1245 1319 414 1160 1317 412 1160 1317 412 1245 1319 414 1124 1320 415 1245 1319 414 1241 1316 411 1161 1321 416 1161 1321 416 1241 1316 411 1122 1322 417 1122 1322 417 1241 1316 411 1159 1315 410 1162 1323 418 1242 1324 419 1120 1296 394 1120 1296 394 1242 1324 419 1119 1325 420 1242 1324 419 1162 1323 418 1220 1326 421 1220 1326 421 1162 1323 418 1125 1327 422 1162 1323 418 1243 1328 423 1125 1327 422 1125 1327 422 1243 1328 423 1163 1329 424 1243 1328 423 1094 1330 425 1163 1329 424 1163 1329 424 1094 1330 425 1072 1331 426 1094 1330 425 1243 1328 423 1071 1300 398 1071 1300 398 1243 1328 423 1155 1299 397 1243 1328 423 1162 1323 418 1155 1299 397 1155 1299 397 1162 1323 418 1120 1296 394 1278 1332 427 1244 1333 428 1223 1335 430 1223 1335 430 1244 1333 428 1164 1334 429 1164 1334 429 1244 1333 428 1121 1312 407 1121 1312 407 1244 1333 428 1158 1313 408 1244 1333 428 1157 1309 404 1158 1313 408 1158 1313 408 1157 1309 404 1118 1291 389 1244 1333 428 1278 1332 427 1157 1309 404 1157 1309 404 1278 1332 427 1222 1310 405 1124 1320 415 1245 1319 414 1126 1337 432 1126 1337 432 1245 1319 414 1165 1336 431 1165 1336 431 1245 1319 414 1166 1338 433 1129 1340 435 1167 1341 436 1208 1339 434 1208 1339 434 1167 1341 436 1128 1342 437 1167 1341 436 1129 1340 435 1209 1344 439 1209 1344 439 1129 1340 435 1296 1343 438 1168 1345 440 1246 1346 441 1073 1348 443 1073 1348 443 1246 1346 441 1095 1347 442 1095 1347 442 1246 1346 441 1074 1350 445 1074 1350 445 1246 1346 441 1266 1349 444 1246 1346 441 1167 1341 436 1266 1349 444 1266 1349 444 1167 1341 436 1209 1344 439 1246 1346 441 1168 1345 440 1167 1341 436 1167 1341 436 1168 1345 440 1128 1342 437 1228 1351 446 1247 1352 447 1131 1354 449 1131 1354 449 1247 1352 447 1170 1353 448 1247 1352 447 1169 1355 450 1170 1353 448 1170 1353 448 1169 1355 450 1130 1356 451 1248 1358 453 1172 1359 454 1171 1357 452 1171 1357 452 1172 1359 454 1132 1360 455 1248 1358 453 1237 1275 373 1172 1359 454 1172 1359 454 1237 1275 373 1116 1274 372 1301 1361 456 1174 1362 457 1171 1357 452 1171 1357 452 1174 1362 457 1248 1358 453 1248 1358 453 1173 1363 458 1237 1275 373 1237 1275 373 1173 1363 458 1152 1278 376 1173 1363 458 1248 1358 453 1133 1364 459 1133 1364 459 1248 1358 453 1174 1362 457 1175 1365 460 1249 1366 461 1306 1368 463 1306 1368 463 1249 1366 461 1307 1367 462 1249 1366 461 1238 1280 378 1307 1367 462 1307 1367 462 1238 1280 378 1308 1283 381 1238 1280 378 1249 1366 461 1092 1281 379 1092 1281 379 1249 1366 461 1096 1369 464 1249 1366 461 1175 1365 460 1096 1369 464 1096 1369 464 1175 1365 460 1075 1370 465 1218 1311 406 1273 1371 466 1121 1312 407 1121 1312 407 1273 1371 466 1176 1372 467 1135 1374 469 1176 1372 467 1134 1373 468 1134 1373 468 1176 1372 467 1273 1371 466 1177 1375 470 1250 1376 471 1136 1378 473 1136 1378 473 1250 1376 471 1178 1377 472 1250 1376 471 1179 1379 474 1178 1377 472 1178 1377 472 1179 1379 474 1137 1380 475 1179 1379 474 1250 1376 471 1132 1360 455 1132 1360 455 1250 1376 471 1171 1357 452 1251 1382 477 1177 1375 470 1180 1381 476 1180 1381 476 1177 1375 470 1136 1378 473 1174 1362 457 1301 1361 456 1235 1384 479 1181 1383 478 1235 1384 479 1301 1361 456 1181 1383 478 1251 1382 477 1126 1337 432 1126 1337 432 1251 1382 477 1182 1385 480 1251 1382 477 1180 1381 476 1182 1385 480 1182 1385 480 1180 1381 476 1138 1386 481 1252 1388 483 1179 1379 474 1183 1387 482 1183 1387 482 1179 1379 474 1132 1360 455 1179 1379 474 1252 1388 483 1137 1380 475 1137 1380 475 1252 1388 483 1184 1389 484 1252 1388 483 1286 1390 485 1184 1389 484 1184 1389 484 1286 1390 485 1232 1391 486 1286 1390 485 1252 1388 483 1233 1392 487 1233 1392 487 1252 1388 483 1183 1387 482 1217 1394 489 1272 1395 490 1139 1393 488 1139 1393 488 1272 1395 490 1185 1396 491 1140 1398 493 1185 1396 491 1216 1397 492 1216 1397 492 1185 1396 491 1272 1395 490 1186 1399 494 1253 1400 495 1142 1402 497 1142 1402 497 1253 1400 495 1187 1401 496 1253 1400 495 1188 1403 498 1187 1401 496 1187 1401 496 1188 1403 498 1144 1404 499 1188 1403 498 1253 1400 495 1143 1406 501 1143 1406 501 1253 1400 495 1189 1405 500 1253 1400 495 1186 1399 494 1189 1405 500 1189 1405 500 1186 1399 494 1141 1407 502 1190 1408 503 1254 1409 504 1145 1411 506 1145 1411 506 1254 1409 504 1191 1410 505 1254 1409 504 1192 1412 507 1191 1410 505 1191 1410 505 1192 1412 507 1130 1356 451 1254 1409 504 1186 1399 494 1192 1412 507 1192 1412 507 1186 1399 494 1142 1402 497 1186 1399 494 1254 1409 504 1141 1407 502 1141 1407 502 1254 1409 504 1190 1408 503 1193 1413 508 1255 1414 509 1225 1416 511 1225 1416 511 1255 1414 509 1281 1415 510 1255 1414 509 1194 1417 512 1281 1415 510 1281 1415 510 1194 1417 512 1226 1418 513 1194 1417 512 1255 1414 509 1140 1398 493 1140 1398 493 1255 1414 509 1185 1396 491 1255 1414 509 1193 1413 508 1185 1396 491 1185 1396 491 1193 1413 508 1139 1393 488 1256 1420 515 1188 1403 498 1195 1419 514 1195 1419 514 1188 1403 498 1143 1406 501 1188 1403 498 1256 1420 515 1144 1404 499 1144 1404 499 1256 1420 515 1196 1421 516 1256 1420 515 1284 1422 517 1196 1421 516 1196 1421 516 1284 1422 517 1230 1423 518 1284 1422 517 1256 1420 515 1231 1424 519 1231 1424 519 1256 1420 515 1195 1419 514 1216 1397 492 1271 1425 520 1140 1398 493 1140 1398 493 1271 1425 520 1194 1417 512 1227 1426 521 1226 1418 513 1271 1425 520 1271 1425 520 1226 1418 513 1194 1417 512 1257 1428 523 1283 1429 524 1197 1427 522 1197 1427 522 1283 1429 524 1229 1430 525 1283 1429 524 1257 1428 523 1230 1423 518 1230 1423 518 1257 1428 523 1196 1421 516 1196 1421 516 1257 1428 523 1144 1404 499 1144 1404 499 1257 1428 523 1187 1401 496 1257 1428 523 1197 1427 522 1187 1401 496 1187 1401 496 1197 1427 522 1142 1402 497 1198 1431 526 1258 1432 527 1125 1327 422 1125 1327 422 1258 1432 527 1220 1326 421 1258 1432 527 1198 1431 526 1221 1433 528 1221 1433 528 1198 1431 526 1146 1434 529 1259 1436 531 1199 1437 532 1200 1435 530 1200 1435 530 1199 1437 532 1147 1438 533 1174 1362 457 1260 1439 534 1133 1364 459 1133 1364 459 1260 1439 534 1201 1440 535 1304 1442 537 1305 1443 538 1302 1441 536 1302 1441 536 1305 1443 538 1201 1440 535 1198 1431 526 1261 1444 539 1146 1434 529 1146 1434 529 1261 1444 539 1203 1445 540 1261 1444 539 1097 1446 541 1203 1445 540 1203 1445 540 1097 1446 541 1076 1447 542 1097 1446 541 1261 1444 539 1072 1331 426 1072 1331 426 1261 1444 539 1163 1329 424 1261 1444 539 1198 1431 526 1163 1329 424 1163 1329 424 1198 1431 526 1125 1327 422 1262 1448 543 1175 1365 460 1305 1443 538 1305 1443 538 1175 1365 460 1306 1368 463 1175 1365 460 1262 1448 543 1075 1370 465 1075 1370 465 1262 1448 543 1098 1449 544 1262 1448 543 1204 1450 545 1098 1449 544 1098 1449 544 1204 1450 545 1077 1451 546 1204 1450 545 1262 1448 543 1304 1442 537 1304 1442 537 1262 1448 543 1305 1443 538 1148 1452 547 1276 1453 548 1146 1434 529 1146 1434 529 1276 1453 548 1221 1433 528 1199 1437 532 1206 1454 549 1147 1438 533 1147 1438 533 1206 1454 549 1205 1455 550 1303 1457 552 1304 1442 537 1265 1456 551 1265 1456 551 1304 1442 537 1302 1441 536 1078 1458 553 1263 1459 554 1076 1447 542 1076 1447 542 1263 1459 554 1203 1445 540 1263 1459 554 1148 1452 547 1203 1445 540 1203 1445 540 1148 1452 547 1146 1434 529 1204 1450 545 1264 1460 555 1077 1451 546 1077 1451 546 1264 1460 555 1099 1461 556 1264 1460 555 1204 1450 545 1303 1457 552 1303 1457 552 1204 1450 545 1304 1442 537 1206 1454 549 1129 1340 435 1205 1455 550 1205 1455 550 1129 1340 435 1208 1339 434 1074 1350 445 1266 1349 444 1078 1458 553 1078 1458 553 1266 1349 444 1263 1459 554 1266 1349 444 1209 1344 439 1263 1459 554 1263 1459 554 1209 1344 439 1148 1452 547 1267 1463 558 1210 1464 559 1279 1462 557 1279 1462 557 1210 1464 559 1224 1465 560 1210 1464 559 1267 1463 558 1135 1374 469 1135 1374 469 1267 1463 558 1176 1372 467 1267 1463 558 1164 1334 429 1176 1372 467 1176 1372 467 1164 1334 429 1121 1312 407 1164 1334 429 1267 1463 558 1223 1335 430 1223 1335 430 1267 1463 558 1279 1462 557 1285 1466 561 1268 1467 562 1232 1391 486 1232 1391 486 1268 1467 562 1184 1389 484 1268 1467 562 1211 1468 563 1184 1389 484 1184 1389 484 1211 1468 563 1137 1380 475 1211 1468 563 1268 1467 562 1143 1406 501 1143 1406 501 1268 1467 562 1195 1419 514 1268 1467 562 1285 1466 561 1195 1419 514 1195 1419 514 1285 1466 561 1231 1424 519 1149 1469 564 1269 1470 565 1145 1411 506 1145 1411 506 1269 1470 565 1212 1471 566 1269 1470 565 1213 1472 567 1212 1471 566 1212 1471 566 1213 1472 567 1138 1386 481 1134 1373 468 1300 1473 568 1135 1374 469 1135 1374 469 1300 1473 568 1214 1474 569 1139 1393 488 1214 1474 569 1217 1394 489 1217 1394 489 1214 1474 569 1300 1473 568 1215 1475 570 1270 1476 571 1141 1407 502 1141 1407 502 1270 1476 571 1189 1405 500 1270 1476 571 1211 1468 563 1189 1405 500 1189 1405 500 1211 1468 563 1143 1406 501 1211 1468 563 1270 1476 571 1137 1380 475 1137 1380 475 1270 1476 571 1178 1377 472 1270 1476 571 1215 1475 570 1178 1377 472 1178 1377 472 1215 1475 570 1136 1378 473 1227 1426 521 1271 1425 520 1228 1351 446 1228 1351 446 1271 1425 520 1247 1352 447 1271 1425 520 1216 1397 492 1247 1352 447 1247 1352 447 1216 1397 492 1169 1355 450 1216 1397 492 1272 1395 490 1169 1355 450 1169 1355 450 1272 1395 490 1293 1477 572 1272 1395 490 1217 1394 489 1293 1477 572 1293 1477 572 1217 1394 489 1149 1469 564 1134 1373 468 1273 1371 466 1213 1472 567 1213 1472 567 1273 1371 466 1290 1478 573 1273 1371 466 1218 1311 406 1290 1478 573 1290 1478 573 1218 1311 406 1124 1320 415 1218 1311 406 1274 1314 409 1124 1320 415 1124 1320 415 1274 1314 409 1160 1317 412 1274 1314 409 1219 1290 388 1160 1317 412 1160 1317 412 1219 1290 388 1123 1318 413 1275 1480 574 1159 1315 410 1115 1479 393 1115 1479 393 1159 1315 410 1123 1318 413 1330 1481 575 1161 1321 416 1122 1322 417 1259 1436 531 1258 1432 527 1199 1437 532 1199 1437 532 1258 1432 527 1221 1433 528 1276 1453 548 1206 1454 549 1221 1433 528 1221 1433 528 1206 1454 549 1199 1437 532 1296 1343 438 1129 1340 435 1276 1453 548 1276 1453 548 1129 1340 435 1206 1454 549 1114 1482 403 1277 1307 402 1068 1484 577 1068 1484 577 1277 1307 402 1100 1483 576 1100 1483 576 1277 1307 402 1079 1485 578 1079 1485 578 1277 1307 402 1222 1310 405 1278 1332 427 1101 1486 579 1222 1310 405 1222 1310 405 1101 1486 579 1079 1485 578 1101 1486 579 1278 1332 427 1080 1487 580 1080 1487 580 1278 1332 427 1223 1335 430 1279 1462 557 1102 1488 581 1223 1335 430 1223 1335 430 1102 1488 581 1080 1487 580 1279 1462 557 1224 1465 560 1102 1488 581 1102 1488 581 1224 1465 560 1081 1489 582 1224 1465 560 1280 1490 583 1081 1489 582 1081 1489 582 1280 1490 583 1103 1491 584 1280 1490 583 1225 1416 511 1103 1491 584 1103 1491 584 1225 1416 511 1082 1492 585 1225 1416 511 1281 1415 510 1082 1492 585 1082 1492 585 1281 1415 510 1104 1493 586 1281 1415 510 1226 1418 513 1104 1493 586 1104 1493 586 1226 1418 513 1083 1494 587 1226 1418 513 1227 1426 521 1083 1494 587 1083 1494 587 1227 1426 521 1084 1495 588 1227 1426 521 1228 1351 446 1084 1495 588 1084 1495 588 1228 1351 446 1085 1496 589 1282 1497 590 1105 1498 591 1131 1354 449 1131 1354 449 1105 1498 591 1087 1499 592 1105 1498 591 1282 1497 590 1086 1500 593 1086 1500 593 1282 1497 590 1229 1430 525 1106 1501 594 1283 1429 524 1088 1502 595 1088 1502 595 1283 1429 524 1230 1423 518 1283 1429 524 1106 1501 594 1229 1430 525 1229 1430 525 1106 1501 594 1086 1500 593 1284 1422 517 1107 1503 596 1230 1423 518 1230 1423 518 1107 1503 596 1088 1502 595 1107 1503 596 1284 1422 517 1089 1504 597 1089 1504 597 1284 1422 517 1231 1424 519 1108 1505 598 1285 1466 561 1090 1506 599 1090 1506 599 1285 1466 561 1232 1391 486 1285 1466 561 1108 1505 598 1231 1424 519 1231 1424 519 1108 1505 598 1089 1504 597 1286 1390 485 1109 1507 600 1232 1391 486 1232 1391 486 1109 1507 600 1090 1506 599 1109 1507 600 1286 1390 485 1091 1508 601 1091 1508 601 1286 1390 485 1233 1392 487 1287 1288 386 1110 1287 385 1233 1392 487 1233 1392 487 1110 1287 385 1091 1508 601 1168 1345 440 1288 1509 602 1128 1342 437 1128 1342 437 1288 1509 602 1234 1510 603 1288 1509 602 1264 1460 555 1234 1510 603 1234 1510 603 1264 1460 555 1303 1457 552 1264 1460 555 1288 1509 602 1099 1461 556 1099 1461 556 1288 1509 602 1111 1511 604 1288 1509 602 1168 1345 440 1111 1511 604 1111 1511 604 1168 1345 440 1073 1348 443 1085 1496 589 1228 1351 446 1087 1499 592 1087 1499 592 1228 1351 446 1131 1354 449 1289 1512 605 1235 1384 479 1200 1435 530 1200 1435 530 1235 1384 479 1127 1513 606 1235 1384 479 1289 1512 605 1174 1362 457 1174 1362 457 1289 1512 605 1260 1439 534 1289 1512 605 1236 1514 607 1260 1439 534 1260 1439 534 1236 1514 607 1202 1515 608 1236 1514 607 1289 1512 605 1147 1438 533 1147 1438 533 1289 1512 605 1200 1435 530 1213 1472 567 1290 1478 573 1138 1386 481 1138 1386 481 1290 1478 573 1182 1385 480 1182 1385 480 1290 1478 573 1126 1337 432 1126 1337 432 1290 1478 573 1124 1320 415 1291 1516 609 1236 1514 607 1205 1455 550 1205 1455 550 1236 1514 607 1147 1438 533 1236 1514 607 1291 1516 609 1202 1515 608 1202 1515 608 1291 1516 609 1207 1517 610 1215 1475 570 1292 1518 611 1136 1378 473 1136 1378 473 1292 1518 611 1180 1381 476 1180 1381 476 1292 1518 611 1138 1386 481 1138 1386 481 1292 1518 611 1212 1471 566 1292 1518 611 1190 1408 503 1212 1471 566 1212 1471 566 1190 1408 503 1145 1411 506 1292 1518 611 1215 1475 570 1190 1408 503 1190 1408 503 1215 1475 570 1141 1407 502 1294 1519 612 1291 1516 609 1208 1339 434 1208 1339 434 1291 1516 609 1205 1455 550 1291 1516 609 1294 1519 612 1207 1517 610 1207 1517 610 1294 1519 612 1265 1456 551 1169 1355 450 1293 1477 572 1130 1356 451 1130 1356 451 1293 1477 572 1191 1410 505 1293 1477 572 1149 1469 564 1191 1410 505 1191 1410 505 1149 1469 564 1145 1411 506 1234 1510 603 1294 1519 612 1128 1342 437 1128 1342 437 1294 1519 612 1208 1339 434 1282 1497 590 1295 1520 613 1229 1430 525 1229 1430 525 1295 1520 613 1197 1427 522 1295 1520 613 1192 1412 507 1197 1427 522 1197 1427 522 1192 1412 507 1142 1402 497 1192 1412 507 1295 1520 613 1130 1356 451 1130 1356 451 1295 1520 613 1170 1353 448 1295 1520 613 1282 1497 590 1170 1353 448 1170 1353 448 1282 1497 590 1131 1354 449 1209 1344 439 1296 1343 438 1148 1452 547 1148 1452 547 1296 1343 438 1276 1453 548 1219 1290 388 1297 1293 391 1123 1318 413 1123 1318 413 1297 1293 391 1115 1521 393 1126 1337 432 1165 1336 431 1181 1383 478 1165 1336 431 1127 1513 606 1181 1383 478 1235 1384 479 1181 1383 478 1127 1513 606 1298 1522 614 1287 1288 386 1183 1387 482 1183 1387 482 1287 1288 386 1233 1392 487 1287 1288 386 1298 1522 614 1239 1285 383 1239 1285 383 1298 1522 614 1310 1286 384 1172 1359 454 1298 1522 614 1132 1360 455 1132 1360 455 1298 1522 614 1183 1387 482 1210 1464 559 1299 1523 615 1224 1465 560 1224 1465 560 1299 1523 615 1280 1490 583 1299 1523 615 1193 1413 508 1280 1490 583 1280 1490 583 1193 1413 508 1225 1416 511 1193 1413 508 1299 1523 615 1139 1393 488 1139 1393 488 1299 1523 615 1214 1474 569 1299 1523 615 1210 1464 559 1214 1474 569 1214 1474 569 1210 1464 559 1135 1374 469 1217 1394 489 1300 1473 568 1149 1469 564 1149 1469 564 1300 1473 568 1269 1470 565 1300 1473 568 1134 1373 468 1269 1470 565 1269 1470 565 1134 1373 468 1213 1472 567 1301 1361 456 1177 1375 470 1181 1383 478 1181 1383 478 1177 1375 470 1251 1382 477 1250 1376 471 1177 1375 470 1171 1357 452 1171 1357 452 1177 1375 470 1301 1361 456 1202 1515 608 1207 1517 610 1302 1441 536 1302 1441 536 1207 1517 610 1265 1456 551 1260 1439 534 1202 1515 608 1201 1440 535 1201 1440 535 1202 1515 608 1302 1441 536 1265 1456 551 1294 1519 612 1303 1457 552 1303 1457 552 1294 1519 612 1234 1510 603 1305 1443 538 1306 1368 463 1201 1440 535 1201 1440 535 1306 1368 463 1133 1364 459 1307 1367 462 1173 1363 458 1306 1368 463 1306 1368 463 1173 1363 458 1133 1364 459 1173 1363 458 1307 1367 462 1152 1278 376 1152 1278 376 1307 1367 462 1308 1283 381 1308 1283 381 1309 1284 382 1152 1278 376 1152 1278 376 1309 1284 382 1117 1276 374 1310 1286 384 1116 1274 372 1309 1284 382 1309 1284 382 1116 1274 372 1117 1276 374 1298 1522 614 1172 1359 454 1310 1286 384 1310 1286 384 1172 1359 454 1116 1274 372 1319 1525 1844 1318 1526 1845 1068 1524 1843 1068 1524 1843 1318 1526 1845 1114 1527 1846 1321 1528 1847 1318 1526 1845 902 1272 1841 902 1272 1841 1318 1526 1845 906 1027 1716 902 1272 1841 906 1027 1716 901 1273 1842 901 1273 1842 906 1027 1716 1311 1026 1715 899 1022 1711 900 1024 1713 1311 1026 1715 1311 1026 1715 900 1024 1713 901 1273 1842 898 1023 1712 899 1022 1711 1312 1025 1714 1312 1025 1714 899 1022 1711 1311 1026 1715 1322 1530 1849 1323 1531 1850 1113 1529 1848 1113 1529 1848 1323 1531 1850 1115 1532 1851 1324 1533 1852 1323 1531 1850 1313 1013 1702 1313 1013 1702 1323 1531 1850 904 1270 1839 1325 1535 1854 1326 1536 1855 1316 1534 1853 1316 1534 1853 1326 1536 1855 1317 1537 1856 1320 1539 1858 1332 1540 1859 1315 1538 1857 1315 1538 1857 1332 1540 1859 897 1018 1707 1322 1530 1849 1321 1528 1847 903 1271 1840 903 1271 1840 1321 1528 1847 902 1272 1841 1325 1535 1854 1324 1533 1852 895 1014 1703 895 1014 1703 1324 1533 1852 1313 1013 1702 1275 1541 574 1316 1542 616 1159 1315 410 1159 1315 410 1316 1542 616 1122 1322 417 1120 1296 394 1119 1325 420 1112 1544 395 1112 1544 395 1119 1325 420 1317 1543 617 1327 1545 1860 1326 1536 1855 1314 1016 1705 1314 1016 1705 1326 1536 1855 896 1015 1704 1119 1325 420 1122 1322 417 1317 1546 617 1317 1546 617 1122 1322 417 1316 1547 616 1318 1526 1845 1319 1525 1844 906 1027 1716 906 1027 1716 1319 1525 1844 905 1028 1717 1332 1540 1859 1320 1539 1858 1150 1548 1861 1150 1548 1861 1320 1539 1858 1069 1549 1862 1114 1550 1846 1318 1526 1845 1156 1551 1863 1156 1551 1863 1318 1526 1845 1321 1528 1847 1156 1552 1863 1321 1528 1847 1113 1553 1848 1113 1553 1848 1321 1528 1847 1322 1530 1849 904 1270 1839 1323 1531 1850 903 1271 1840 903 1271 1840 1323 1531 1850 1322 1530 1849 1323 1531 1850 1324 1533 1852 1115 1554 1851 1115 1554 1851 1324 1533 1852 1275 1555 1864 1324 1533 1852 1325 1535 1854 1275 1556 1864 1275 1556 1864 1325 1535 1854 1316 1557 1853 1326 1536 1855 1325 1535 1854 896 1015 1704 896 1015 1704 1325 1535 1854 895 1014 1703 1326 1536 1855 1327 1545 1860 1317 1558 1856 1317 1558 1856 1327 1545 1860 1112 1559 1865 1327 1545 1860 1332 1540 1859 1112 1560 1865 1112 1560 1865 1332 1540 1859 1150 1561 1861 1328 1562 618 1259 1436 531 1127 1513 606 1127 1513 606 1259 1436 531 1200 1435 530 1258 1432 527 1259 1436 531 1220 1326 421 1220 1326 421 1259 1436 531 1328 1562 618 1242 1324 419 1220 1326 421 1329 1563 619 1329 1563 619 1220 1326 421 1328 1562 618 1328 1562 618 1127 1513 606 1166 1338 433 1166 1338 433 1127 1513 606 1165 1336 431 1329 1563 619 1328 1562 618 1330 1481 575 1330 1481 575 1328 1562 618 1166 1338 433 1329 1563 619 1330 1481 575 1119 1325 420 1119 1325 420 1330 1481 575 1122 1322 417 1119 1325 420 1242 1324 419 1329 1563 619 1330 1481 575 1166 1338 433 1161 1321 416 1161 1321 416 1166 1338 433 1245 1319 414 1314 1016 1705 897 1018 1707 1327 1545 1860 1327 1545 1860 897 1018 1707 1332 1540 1859 721 832 1521 1333 849 1538 720 830 1519 720 830 1519 1333 849 1538 734 848 1537 1333 849 1538 1334 863 1552 734 848 1537 734 848 1537 1334 863 1552 747 862 1551 1334 863 1552 1335 877 1566 747 862 1551 747 862 1551 1335 877 1566 760 876 1565 1335 877 1566 1336 891 1580 760 876 1565 760 876 1565 1336 891 1580 773 890 1579 773 890 1579 1336 891 1580 786 904 1593 786 904 1593 1336 891 1580 2 361 1172 2 361 1172 86 364 1175 786 904 1593 786 904 1593 86 364 1175 798 916 1605 884 1002 1691 320 1020 1709 891 1009 1698 891 1009 1698 320 1020 1709 1337 1017 1706 709 810 1499 1349 1564 1866 696 807 1496 696 807 1496 1349 1564 1866 1338 1565 1867 1349 1564 1866 1350 1566 1868 1338 1565 1867 1338 1565 1867 1350 1566 1868 1339 1567 1869 1350 1566 1868 1351 1568 1870 1339 1567 1869 1339 1567 1869 1351 1568 1870 1340 1569 1871 1351 1568 1870 1352 1570 1872 1340 1569 1871 1340 1569 1871 1352 1570 1872 1341 1571 1873 1352 1570 1872 1353 1572 1874 1341 1571 1873 1341 1571 1873 1353 1572 1874 1342 1573 1875 1353 1572 1874 1354 1574 1876 1342 1573 1875 1342 1573 1875 1354 1574 1876 1343 1575 1877 1354 1574 1876 1355 1576 1878 1343 1575 1877 1343 1575 1877 1355 1576 1878 1344 1577 1879 1355 1576 1878 1356 1578 1880 1344 1577 1879 1344 1577 1879 1356 1578 1880 1345 1579 1881 1345 1579 1881 1356 1578 1880 1346 1581 1883 1346 1581 1883 1356 1578 1880 1357 1580 1882 1346 1581 1883 1357 1580 1882 1347 1583 1885 1347 1583 1885 1357 1580 1882 1358 1582 1884 1358 1582 1884 1359 1584 1886 1347 1583 1885 1347 1583 1885 1359 1584 1886 1348 1585 1887 1359 1584 1886 1360 1586 1888 1348 1585 1887 1348 1585 1887 1360 1586 1888 1897 1587 1889 1360 1586 1888 1972 1588 1890 1897 1587 1889 1897 1587 1889 1972 1588 1890 1973 1589 1891 723 838 1527 1361 1590 1892 709 810 1499 709 810 1499 1361 1590 1892 1349 1564 1866 1361 1590 1892 1362 1591 1893 1349 1564 1866 1349 1564 1866 1362 1591 1893 1350 1566 1868 1362 1591 1893 1363 1592 1894 1350 1566 1868 1350 1566 1868 1363 1592 1894 1351 1568 1870 1363 1592 1894 1364 1593 1895 1351 1568 1870 1351 1568 1870 1364 1593 1895 1352 1570 1872 1364 1593 1895 1365 1594 1896 1352 1570 1872 1352 1570 1872 1365 1594 1896 1353 1572 1874 1365 1594 1896 1366 1595 1897 1353 1572 1874 1353 1572 1874 1366 1595 1897 1354 1574 1876 1366 1595 1897 1367 1596 1898 1354 1574 1876 1354 1574 1876 1367 1596 1898 1355 1576 1878 1367 1596 1898 1368 1597 1899 1355 1576 1878 1355 1576 1878 1368 1597 1899 1356 1578 1880 1356 1578 1880 1368 1597 1899 1357 1580 1882 1357 1580 1882 1368 1597 1899 1369 1598 1900 1357 1580 1882 1369 1598 1900 1358 1582 1884 1358 1582 1884 1369 1598 1900 1370 1599 1901 1370 1599 1901 1371 1600 1902 1358 1582 1884 1358 1582 1884 1371 1600 1902 1359 1584 1886 1899 1601 1903 1975 1602 1904 1360 1586 1888 1360 1586 1888 1975 1602 1904 1972 1588 1890 736 852 1541 1372 1603 1905 723 838 1527 723 838 1527 1372 1603 1905 1361 1590 1892 1372 1603 1905 1373 1604 1906 1361 1590 1892 1361 1590 1892 1373 1604 1906 1362 1591 1893 1373 1604 1906 1374 1605 1907 1362 1591 1893 1362 1591 1893 1374 1605 1907 1363 1592 1894 1374 1605 1907 1375 1606 1908 1363 1592 1894 1363 1592 1894 1375 1606 1908 1364 1593 1895 1375 1606 1908 1376 1607 1909 1364 1593 1895 1364 1593 1895 1376 1607 1909 1365 1594 1896 1376 1607 1909 1377 1608 1910 1365 1594 1896 1365 1594 1896 1377 1608 1910 1366 1595 1897 1377 1608 1910 1378 1609 1911 1366 1595 1897 1366 1595 1897 1378 1609 1911 1367 1596 1898 1378 1609 1911 1379 1610 1912 1367 1596 1898 1367 1596 1898 1379 1610 1912 1368 1597 1899 1368 1597 1899 1379 1610 1912 1369 1598 1900 1369 1598 1900 1379 1610 1912 1380 1611 1913 1369 1598 1900 1380 1611 1913 1370 1599 1901 1370 1599 1901 1380 1611 1913 1381 1612 1914 1370 1599 1901 1381 1612 1914 1371 1600 1902 1371 1600 1902 1381 1612 1914 1382 1613 1915 1900 1614 1916 1976 1615 1917 1899 1601 1903 1899 1601 1903 1976 1615 1917 1975 1602 1904 736 852 1541 749 866 1555 1372 1603 1905 1372 1603 1905 749 866 1555 1383 1616 1918 1383 1616 1918 1384 1617 1919 1372 1603 1905 1372 1603 1905 1384 1617 1919 1373 1604 1906 1384 1617 1919 1385 1618 1920 1373 1604 1906 1373 1604 1906 1385 1618 1920 1374 1605 1907 1385 1618 1920 1386 1619 1921 1374 1605 1907 1374 1605 1907 1386 1619 1921 1375 1606 1908 1386 1619 1921 1387 1620 1922 1375 1606 1908 1375 1606 1908 1387 1620 1922 1376 1607 1909 1387 1620 1922 1388 1621 1923 1376 1607 1909 1376 1607 1909 1388 1621 1923 1377 1608 1910 1388 1621 1923 1389 1622 1924 1377 1608 1910 1377 1608 1910 1389 1622 1924 1378 1609 1911 1389 1622 1924 1390 1623 1925 1378 1609 1911 1378 1609 1911 1390 1623 1925 1379 1610 1912 1379 1610 1912 1390 1623 1925 1380 1611 1913 1380 1611 1913 1390 1623 1925 1391 1624 1926 1391 1624 1926 1392 1625 1927 1380 1611 1913 1380 1611 1913 1392 1625 1927 1381 1612 1914 1381 1612 1914 1392 1625 1927 1382 1613 1915 1382 1613 1915 1392 1625 1927 1393 1626 1928 1901 1627 1929 1977 1628 1930 1900 1614 1916 1900 1614 1916 1977 1628 1930 1976 1615 1917 749 866 1555 762 880 1569 1383 1616 1918 1383 1616 1918 762 880 1569 1394 1629 1931 1394 1629 1931 1395 1630 1932 1383 1616 1918 1383 1616 1918 1395 1630 1932 1384 1617 1919 1395 1630 1932 1396 1631 1933 1384 1617 1919 1384 1617 1919 1396 1631 1933 1385 1618 1920 1396 1631 1933 1397 1632 1934 1385 1618 1920 1385 1618 1920 1397 1632 1934 1386 1619 1921 1397 1632 1934 1398 1633 1935 1386 1619 1921 1386 1619 1921 1398 1633 1935 1387 1620 1922 1398 1633 1935 1399 1634 1936 1387 1620 1922 1387 1620 1922 1399 1634 1936 1388 1621 1923 1399 1634 1936 1400 1635 1937 1388 1621 1923 1388 1621 1923 1400 1635 1937 1389 1622 1924 1400 1635 1937 1401 1636 1938 1389 1622 1924 1389 1622 1924 1401 1636 1938 1390 1623 1925 1390 1623 1925 1401 1636 1938 1391 1624 1926 1391 1624 1926 1401 1636 1938 1402 1637 1939 1402 1637 1939 1403 1638 1940 1391 1624 1926 1391 1624 1926 1403 1638 1940 1392 1625 1927 1403 1638 1940 1404 1639 1941 1392 1625 1927 1392 1625 1927 1404 1639 1941 1393 1626 1928 1902 1640 1942 1974 1641 1943 1901 1627 1929 1901 1627 1929 1974 1641 1943 1977 1628 1930 762 880 1569 775 894 1583 1394 1629 1931 1394 1629 1931 775 894 1583 1405 1642 1944 1405 1642 1944 1406 1643 1945 1394 1629 1931 1394 1629 1931 1406 1643 1945 1395 1630 1932 1406 1643 1945 1407 1644 1946 1395 1630 1932 1395 1630 1932 1407 1644 1946 1396 1631 1933 1407 1644 1946 1408 1645 1947 1396 1631 1933 1396 1631 1933 1408 1645 1947 1397 1632 1934 1408 1645 1947 1409 1646 1948 1397 1632 1934 1397 1632 1934 1409 1646 1948 1398 1633 1935 1409 1646 1948 1410 1647 1949 1398 1633 1935 1398 1633 1935 1410 1647 1949 1399 1634 1936 1410 1647 1949 1411 1648 1950 1399 1634 1936 1399 1634 1936 1411 1648 1950 1400 1635 1937 1411 1648 1950 1412 1649 1951 1400 1635 1937 1400 1635 1937 1412 1649 1951 1401 1636 1938 1401 1636 1938 1412 1649 1951 1402 1637 1939 1402 1637 1939 1412 1649 1951 1413 1650 1952 1413 1650 1952 1414 1651 1953 1402 1637 1939 1402 1637 1939 1414 1651 1953 1403 1638 1940 1414 1651 1953 1415 1652 1954 1403 1638 1940 1403 1638 1940 1415 1652 1954 1404 1639 1941 2044 1653 1955 1974 1641 1943 2043 435 1231 2043 435 1231 1974 1641 1943 434 436 1232 775 894 1583 787 906 1595 1405 1642 1944 1405 1642 1944 787 906 1595 1416 1654 1956 1416 1654 1956 1417 1655 1957 1405 1642 1944 1405 1642 1944 1417 1655 1957 1406 1643 1945 1417 1655 1957 1418 1656 1958 1406 1643 1945 1406 1643 1945 1418 1656 1958 1407 1644 1946 1418 1656 1958 1419 1657 1959 1407 1644 1946 1407 1644 1946 1419 1657 1959 1408 1645 1947 1419 1657 1959 1420 1658 1960 1408 1645 1947 1408 1645 1947 1420 1658 1960 1409 1646 1948 1420 1658 1960 1421 1659 1961 1409 1646 1948 1409 1646 1948 1421 1659 1961 1410 1647 1949 1421 1659 1961 1422 1660 1962 1410 1647 1949 1410 1647 1949 1422 1660 1962 1411 1648 1950 1422 1660 1962 1423 1661 1963 1411 1648 1950 1411 1648 1950 1423 1661 1963 1412 1649 1951 1412 1649 1951 1423 1661 1963 1413 1650 1952 1413 1650 1952 1423 1661 1963 1424 1662 1964 1413 1650 1952 1424 1662 1964 1414 1651 1953 1414 1651 1953 1424 1662 1964 1425 1663 1965 1425 1663 1965 1426 1664 1966 1414 1651 1953 1414 1651 1953 1426 1664 1966 1415 1652 1954 787 906 1595 799 918 1607 1416 1654 1956 1416 1654 1956 799 918 1607 1427 1665 1967 1427 1665 1967 1428 1666 1968 1416 1654 1956 1416 1654 1956 1428 1666 1968 1417 1655 1957 1428 1666 1968 1429 1667 1969 1417 1655 1957 1417 1655 1957 1429 1667 1969 1418 1656 1958 1429 1667 1969 1430 1668 1970 1418 1656 1958 1418 1656 1958 1430 1668 1970 1419 1657 1959 1430 1668 1970 1431 1669 1971 1419 1657 1959 1419 1657 1959 1431 1669 1971 1420 1658 1960 1431 1669 1971 1432 1670 1972 1420 1658 1960 1420 1658 1960 1432 1670 1972 1421 1659 1961 1432 1670 1972 1433 1671 1973 1421 1659 1961 1421 1659 1961 1433 1671 1973 1422 1660 1962 1433 1671 1973 1434 1672 1974 1422 1660 1962 1422 1660 1962 1434 1672 1974 1423 1661 1963 1423 1661 1963 1434 1672 1974 1424 1662 1964 1424 1662 1964 1434 1672 1974 1435 1673 1975 1435 1673 1975 1436 1674 1976 1424 1662 1964 1424 1662 1964 1436 1674 1976 1425 1663 1965 1436 1674 1976 1437 1675 1977 1425 1663 1965 1425 1663 1965 1437 1675 1977 1426 1664 1966 799 918 1607 811 930 1619 1427 1665 1967 1427 1665 1967 811 930 1619 1438 1676 1978 1438 1676 1978 1439 1677 1979 1427 1665 1967 1427 1665 1967 1439 1677 1979 1428 1666 1968 1439 1677 1979 1440 1678 1980 1428 1666 1968 1428 1666 1968 1440 1678 1980 1429 1667 1969 1440 1678 1980 1441 1679 1981 1429 1667 1969 1429 1667 1969 1441 1679 1981 1430 1668 1970 1441 1679 1981 1442 1680 1982 1430 1668 1970 1430 1668 1970 1442 1680 1982 1431 1669 1971 1442 1680 1982 1443 1681 1983 1431 1669 1971 1431 1669 1971 1443 1681 1983 1432 1670 1972 1443 1681 1983 1444 1682 1984 1432 1670 1972 1432 1670 1972 1444 1682 1984 1433 1671 1973 1444 1682 1984 1445 1683 1985 1433 1671 1973 1433 1671 1973 1445 1683 1985 1434 1672 1974 1434 1672 1974 1445 1683 1985 1435 1673 1975 1435 1673 1975 1445 1683 1985 1446 1684 1986 1446 1684 1986 1447 1685 1987 1435 1673 1975 1435 1673 1975 1447 1685 1987 1436 1674 1976 1447 1685 1987 1448 1686 1988 1436 1674 1976 1436 1674 1976 1448 1686 1988 1437 1675 1977 811 930 1619 823 942 1631 1438 1676 1978 1438 1676 1978 823 942 1631 1449 1687 1989 1449 1687 1989 1450 1688 1990 1438 1676 1978 1438 1676 1978 1450 1688 1990 1439 1677 1979 1450 1688 1990 1451 1689 1991 1439 1677 1979 1439 1677 1979 1451 1689 1991 1440 1678 1980 1451 1689 1991 1452 1690 1992 1440 1678 1980 1440 1678 1980 1452 1690 1992 1441 1679 1981 1452 1690 1992 1453 1691 1993 1441 1679 1981 1441 1679 1981 1453 1691 1993 1442 1680 1982 1453 1691 1993 1454 1692 1994 1442 1680 1982 1442 1680 1982 1454 1692 1994 1443 1681 1983 1454 1692 1994 1455 1693 1995 1443 1681 1983 1443 1681 1983 1455 1693 1995 1444 1682 1984 1455 1693 1995 1456 1694 1996 1444 1682 1984 1444 1682 1984 1456 1694 1996 1445 1683 1985 1445 1683 1985 1456 1694 1996 1446 1684 1986 1446 1684 1986 1456 1694 1996 1457 1695 1997 1446 1684 1986 1457 1695 1997 1447 1685 1987 1447 1685 1987 1457 1695 1997 1458 1696 1998 1447 1685 1987 1458 1696 1998 1448 1686 1988 1448 1686 1988 1458 1696 1998 1459 1697 1999 823 942 1631 846 954 1643 1449 1687 1989 1449 1687 1989 846 954 1643 1460 1698 2000 1460 1698 2000 1461 1699 2001 1449 1687 1989 1449 1687 1989 1461 1699 2001 1450 1688 1990 1461 1699 2001 1462 1700 2002 1450 1688 1990 1450 1688 1990 1462 1700 2002 1451 1689 1991 1462 1700 2002 1463 1701 2003 1451 1689 1991 1451 1689 1991 1463 1701 2003 1452 1690 1992 1463 1701 2003 1464 1702 2004 1452 1690 1992 1452 1690 1992 1464 1702 2004 1453 1691 1993 1464 1702 2004 1465 1703 2005 1453 1691 1993 1453 1691 1993 1465 1703 2005 1454 1692 1994 1465 1703 2005 1466 1704 2006 1454 1692 1994 1454 1692 1994 1466 1704 2006 1455 1693 1995 1455 1693 1995 1466 1704 2006 1456 1694 1996 1456 1694 1996 1466 1704 2006 1467 1705 2007 1456 1694 1996 1467 1705 2007 1457 1695 1997 1457 1695 1997 1467 1705 2007 1468 1706 2008 1457 1695 1997 1468 1706 2008 1458 1696 1998 1458 1696 1998 1468 1706 2008 1469 1707 2009 1458 1696 1998 1469 1707 2009 1459 1697 1999 1459 1697 1999 1469 1707 2009 1470 1708 2010 846 954 1643 847 966 1655 1460 1698 2000 1460 1698 2000 847 966 1655 1471 1709 2011 1460 1698 2000 1471 1709 2011 1461 1699 2001 1461 1699 2001 1471 1709 2011 1472 1710 2012 1461 1699 2001 1472 1710 2012 1462 1700 2002 1462 1700 2002 1472 1710 2012 1473 1711 2013 1462 1700 2002 1473 1711 2013 1463 1701 2003 1463 1701 2003 1473 1711 2013 1474 1712 2014 1474 1712 2014 1475 1713 2015 1463 1701 2003 1463 1701 2003 1475 1713 2015 1464 1702 2004 1475 1713 2015 1476 1714 2016 1464 1702 2004 1464 1702 2004 1476 1714 2016 1465 1703 2005 1476 1714 2016 1477 1715 2017 1465 1703 2005 1465 1703 2005 1477 1715 2017 1466 1704 2006 1466 1704 2006 1477 1715 2017 1467 1705 2007 1467 1705 2007 1477 1715 2017 1478 1716 2018 1467 1705 2007 1478 1716 2018 1468 1706 2008 1468 1706 2008 1478 1716 2018 1479 1717 2019 1468 1706 2008 1479 1717 2019 1469 1707 2009 1469 1707 2009 1479 1717 2019 1480 1718 2020 1469 1707 2009 1480 1718 2020 1470 1708 2010 1470 1708 2010 1480 1718 2020 1481 1719 2021 847 966 1655 859 978 1667 1471 1709 2011 1471 1709 2011 859 978 1667 1482 1720 2022 1471 1709 2011 1482 1720 2022 1472 1710 2012 1472 1710 2012 1482 1720 2022 1483 1721 2023 1472 1710 2012 1483 1721 2023 1473 1711 2013 1473 1711 2013 1483 1721 2023 1484 1722 2024 1476 1714 2016 1485 1723 2025 1477 1715 2017 1485 1723 2025 1488 1724 2026 1477 1715 2017 1477 1715 2017 1488 1724 2026 1478 1716 2018 1488 1724 2026 1489 1725 2027 1478 1716 2018 1478 1716 2018 1489 1725 2027 1479 1717 2019 1489 1725 2027 1490 1726 2028 1479 1717 2019 1479 1717 2019 1490 1726 2028 1480 1718 2020 1480 1718 2020 1490 1726 2028 1481 1719 2021 1481 1719 2021 1490 1726 2028 1491 1727 2029 859 978 1667 868 987 1676 1482 1720 2022 1482 1720 2022 868 987 1676 1486 1728 2030 1482 1720 2022 1486 1728 2030 1483 1721 2023 1483 1721 2023 1486 1728 2030 1487 1729 2031 868 987 1676 871 990 1679 1486 1728 2030 1486 1728 2030 871 990 1679 1492 1730 2032 1492 1730 2032 1493 1731 2033 1486 1728 2030 1486 1728 2030 1493 1731 2033 1487 1729 2031 1495 1732 2034 1489 1725 2027 1494 1733 2035 1494 1733 2035 1489 1725 2027 1488 1724 2026 1495 1732 2034 1496 1734 2036 1489 1725 2027 1489 1725 2027 1496 1734 2036 1490 1726 2028 1490 1726 2028 1496 1734 2036 1491 1727 2029 1491 1727 2029 1496 1734 2036 1497 1735 2037 871 990 1679 878 997 1686 1492 1730 2032 1492 1730 2032 878 997 1686 1498 1736 2038 1498 1736 2038 1499 1737 2039 1492 1730 2032 1492 1730 2032 1499 1737 2039 1493 1731 2033 1495 1732 2034 1494 1733 2035 1501 1738 2040 1501 1738 2040 1494 1733 2035 1500 1739 2041 1495 1732 2034 1501 1738 2040 1496 1734 2036 1496 1734 2036 1501 1738 2040 1502 1740 2042 1496 1734 2036 1502 1740 2042 1497 1735 2037 1497 1735 2037 1502 1740 2042 1503 1741 2043 878 997 1686 885 1004 1693 1498 1736 2038 1498 1736 2038 885 1004 1693 1504 1742 2044 1498 1736 2038 1504 1742 2044 1499 1737 2039 1499 1737 2039 1504 1742 2044 1505 1743 2045 1507 1744 2046 1501 1738 2040 1506 1745 2047 1506 1745 2047 1501 1738 2040 1500 1739 2041 1501 1738 2040 1507 1744 2046 1502 1740 2042 1502 1740 2042 1507 1744 2046 1508 1746 2048 1502 1740 2042 1508 1746 2048 1503 1741 2043 1503 1741 2043 1508 1746 2048 1509 1747 2049 885 1004 1693 892 1011 1700 1504 1742 2044 1504 1742 2044 892 1011 1700 1510 1748 2050 1504 1742 2044 1510 1748 2050 1505 1743 2045 1505 1743 2045 1510 1748 2050 1511 1749 2051 1512 1751 2053 1507 1744 2046 1882 1750 2052 1882 1750 2052 1507 1744 2046 1506 1745 2047 1507 1744 2046 1512 1751 2053 1508 1746 2048 1508 1746 2048 1512 1751 2053 1513 1752 2054 1508 1746 2048 1513 1752 2054 1509 1747 2049 1509 1747 2049 1513 1752 2054 1883 1753 2055 1509 1747 2049 1883 1753 2055 1904 1755 2057 1904 1755 2057 1883 1753 2055 1514 1754 2056 1904 1755 2057 1985 1019 1708 1903 1756 2058 1903 1756 2058 1985 1019 1708 1986 1021 1710 892 1011 1700 898 1023 1712 1510 1748 2050 1510 1748 2050 898 1023 1712 1515 1757 2059 1510 1748 2050 1515 1757 2059 1511 1749 2051 1511 1749 2051 1515 1757 2059 1516 1758 2060 1312 1025 1714 905 1028 1717 1881 1760 2062 1881 1760 2062 905 1028 1717 1521 1759 2061 1338 1565 1867 907 1029 1718 696 807 1496 1339 1567 1869 907 1029 1718 1338 1565 1867 1340 1569 1871 907 1029 1718 1339 1567 1869 1341 1571 1873 907 1029 1718 1340 1569 1871 1342 1573 1875 907 1029 1718 1341 1571 1873 1343 1575 1877 907 1029 1718 1342 1573 1875 1344 1577 1879 907 1029 1718 1343 1575 1877 1345 1579 1881 907 1029 1718 1344 1577 1879 1346 1581 1883 907 1029 1718 1345 1579 1881 1347 1583 1885 907 1029 1718 1346 1581 1883 1348 1585 1887 907 1029 1718 1347 1583 1885 1348 1585 1887 1897 1587 1889 907 1029 1718 1973 1589 1891 907 1029 1718 1897 1587 1889 1555 1761 692 1621 1762 693 1594 1764 695 1594 1764 695 1621 1762 693 1658 1763 694 1621 1762 693 1555 1761 692 1642 1766 697 1642 1766 697 1555 1761 692 1570 1765 696 1556 1767 698 1621 1762 693 1572 1768 699 1572 1768 699 1621 1762 693 1642 1766 697 1621 1762 693 1556 1767 698 1658 1763 694 1658 1763 694 1556 1767 698 1595 1769 700 1557 1770 701 1622 1771 702 1593 1773 704 1593 1773 704 1622 1771 702 1657 1772 703 1622 1771 702 1557 1770 701 1643 1775 706 1643 1775 706 1557 1770 701 1569 1774 705 1555 1761 692 1622 1771 702 1570 1765 696 1570 1765 696 1622 1771 702 1643 1775 706 1622 1771 702 1555 1761 692 1657 1772 703 1657 1772 703 1555 1761 692 1594 1764 695 1558 1776 707 1623 1777 708 1592 1779 710 1592 1779 710 1623 1777 708 1656 1778 709 1623 1777 708 1558 1776 707 1641 1781 712 1641 1781 712 1558 1776 707 1567 1780 711 1557 1770 701 1623 1777 708 1569 1774 705 1569 1774 705 1623 1777 708 1641 1781 712 1623 1777 708 1557 1770 701 1656 1778 709 1656 1778 709 1557 1770 701 1593 1773 704 1624 1783 714 1655 1784 715 1559 1782 713 1559 1782 713 1655 1784 715 1591 1785 716 1624 1783 714 1559 1782 713 1644 1787 718 1644 1787 718 1559 1782 713 1574 1786 717 1558 1776 707 1624 1783 714 1567 1780 711 1567 1780 711 1624 1783 714 1644 1787 718 1624 1783 714 1558 1776 707 1655 1784 715 1655 1784 715 1558 1776 707 1592 1779 710 1560 1789 720 1578 1790 721 1625 1788 719 1625 1788 719 1578 1790 721 1646 1791 722 1625 1788 719 1646 1791 722 1559 1782 713 1559 1782 713 1646 1791 722 1574 1786 717 1625 1788 719 1681 1792 723 1560 1789 720 1560 1789 720 1681 1792 723 1680 1793 724 1626 1795 726 1654 1796 727 1561 1794 725 1561 1794 725 1654 1796 727 1590 1797 728 1561 1794 725 1582 1798 729 1626 1795 726 1626 1795 726 1582 1798 729 1648 1799 730 1626 1795 726 1648 1799 730 1560 1789 720 1560 1789 720 1648 1799 730 1578 1790 721 1560 1789 720 1680 1793 724 1626 1795 726 1626 1795 726 1680 1793 724 1654 1796 727 1627 1801 732 1653 1802 733 1562 1800 731 1562 1800 731 1653 1802 733 1589 1803 734 1562 1800 731 1585 1804 735 1627 1801 732 1627 1801 732 1585 1804 735 1650 1805 736 1627 1801 732 1650 1805 736 1561 1794 725 1561 1794 725 1650 1805 736 1582 1798 729 1561 1794 725 1590 1797 728 1627 1801 732 1627 1801 732 1590 1797 728 1653 1802 733 1628 1807 738 1652 1808 739 1563 1806 737 1563 1806 737 1652 1808 739 1587 1809 740 1563 1806 737 1581 1810 741 1628 1807 738 1628 1807 738 1581 1810 741 1649 1811 742 1628 1807 738 1649 1811 742 1562 1800 731 1562 1800 731 1649 1811 742 1585 1804 735 1562 1800 731 1589 1803 734 1628 1807 738 1628 1807 738 1589 1803 734 1652 1808 739 1629 1813 744 1651 1814 745 1564 1812 743 1564 1812 743 1651 1814 745 1588 1815 746 1564 1812 743 1577 1816 747 1629 1813 744 1629 1813 744 1577 1816 747 1647 1817 748 1629 1813 744 1647 1817 748 1563 1806 737 1563 1806 737 1647 1817 748 1581 1810 741 1563 1806 737 1587 1809 740 1629 1813 744 1629 1813 744 1587 1809 740 1651 1814 745 1556 1767 698 1630 1818 749 1595 1769 700 1595 1769 700 1630 1818 749 1659 1819 750 1630 1818 749 1556 1767 698 1645 1820 752 1645 1820 752 1556 1767 698 1572 1768 699 1564 1812 743 1630 1818 749 1577 1816 747 1577 1816 747 1630 1818 749 1645 1820 752 1630 1818 749 1564 1812 743 1659 1819 750 1659 1819 750 1564 1812 743 1588 1815 746 1595 1769 700 1587 1809 740 1658 1763 694 1658 1763 694 1587 1809 740 1652 1808 739 1600 1822 2064 1927 1823 2065 1662 1821 2063 1662 1821 2063 1927 1823 2065 1926 1824 2066 1537 1826 2068 1925 1827 2069 1631 1825 2067 1631 1825 2067 1925 1827 2069 1926 1824 2066 1604 1829 2071 1934 1830 2072 1664 1828 2070 1664 1828 2070 1934 1830 2072 1932 1831 2073 1539 1833 2075 1930 1834 2076 1632 1832 2074 1632 1832 2074 1930 1834 2076 1932 1831 2073 1523 1836 2078 1930 1834 2076 1665 1835 2077 1665 1835 2077 1930 1834 2076 1928 1837 2079 1565 1839 2081 1927 1823 2065 1633 1838 2080 1633 1838 2080 1927 1823 2065 1928 1837 2079 1666 1840 2082 1522 1841 2083 1929 1842 2084 1929 1842 2084 1522 1841 2083 1925 1827 2069 1538 1844 2086 1931 1845 2087 1634 1843 2085 1634 1843 2085 1931 1845 2087 1929 1842 2084 1524 1847 2089 1931 1845 2087 1667 1846 2088 1667 1846 2088 1931 1845 2087 1933 1848 2090 1635 1849 2091 1540 1850 2092 1933 1848 2090 1933 1848 2090 1540 1850 2092 1935 1851 2093 1636 1852 2094 1541 1853 2095 1937 1855 2097 1937 1855 2097 1541 1853 2095 1939 1854 2096 1660 1856 2098 1596 1857 2099 1937 1855 2097 1937 1855 2097 1596 1857 2099 1935 1851 2093 1661 1858 2100 1598 1859 2101 1941 1860 2102 1941 1860 2102 1598 1859 2101 1939 1854 2096 1637 1861 2103 1543 1862 2104 1941 1860 2102 1941 1860 2102 1543 1862 2104 1943 1863 2105 1668 1864 2106 1525 1865 2107 1944 1866 2108 1944 1866 2108 1525 1865 2107 1943 1863 2105 1638 1867 2109 1544 1868 2110 1944 1866 2108 1944 1866 2108 1544 1868 2110 1942 1869 2111 1663 1870 2112 1602 1871 2113 1940 1872 2114 1940 1872 2114 1602 1871 2113 1942 1869 2111 1639 1873 2115 1542 1874 2116 1940 1872 2114 1940 1872 2114 1542 1874 2116 1938 1875 2117 1669 1876 2118 1526 1877 2119 1936 1878 2120 1936 1878 2120 1526 1877 2119 1938 1875 2117 1640 1879 2121 1566 1880 2122 1936 1878 2120 1936 1878 2120 1566 1880 2122 1934 1830 2072 1528 1881 944 1568 1882 949 1567 1780 711 1567 1780 711 1568 1882 949 1641 1781 712 1568 1883 949 1527 1884 947 1641 1781 712 1641 1781 712 1527 1884 947 1569 1774 705 1530 1885 946 1571 1886 948 1570 1765 696 1570 1765 696 1571 1886 948 1642 1766 697 1571 1887 948 1529 1888 942 1642 1766 697 1642 1766 697 1529 1888 942 1572 1768 699 1527 1889 947 1573 1890 945 1569 1774 705 1569 1774 705 1573 1890 945 1643 1775 706 1573 1891 945 1530 1892 946 1643 1775 706 1643 1775 706 1530 1892 946 1570 1765 696 1531 1893 940 1575 1894 943 1574 1786 717 1574 1786 717 1575 1894 943 1644 1787 718 1575 1895 943 1528 1896 944 1644 1787 718 1644 1787 718 1528 1896 944 1567 1780 711 1529 1897 942 1576 1898 941 1572 1768 699 1572 1768 699 1576 1898 941 1645 1820 752 1576 1899 941 1532 1900 938 1645 1820 752 1645 1820 752 1532 1900 938 1577 1816 747 1578 1790 721 1533 1901 936 1646 1791 722 1646 1791 722 1533 1901 936 1579 1902 939 1531 1904 940 1574 1786 717 1579 1903 939 1579 1903 939 1574 1786 717 1646 1791 722 1577 1816 747 1532 1905 938 1647 1817 748 1647 1817 748 1532 1905 938 1580 1906 937 1534 1908 934 1581 1810 741 1580 1907 937 1580 1907 937 1581 1810 741 1647 1817 748 1582 1798 729 1535 1909 931 1648 1799 730 1648 1799 730 1535 1909 931 1583 1910 935 1533 1912 936 1578 1790 721 1583 1911 935 1583 1911 935 1578 1790 721 1648 1799 730 1581 1810 741 1534 1913 934 1649 1811 742 1649 1811 742 1534 1913 934 1584 1914 933 1536 1916 932 1585 1804 735 1584 1915 933 1584 1915 933 1585 1804 735 1649 1811 742 1585 1804 735 1536 1917 932 1650 1805 736 1650 1805 736 1536 1917 932 1586 1918 930 1535 1920 931 1582 1798 729 1586 1919 930 1586 1919 930 1582 1798 729 1650 1805 736 1568 1921 2123 1528 1922 2124 1634 1843 2085 1634 1843 2085 1528 1922 2124 1538 1844 2086 1634 1843 2085 1537 1826 2068 1568 1923 2123 1568 1923 2123 1537 1826 2068 1527 1924 2125 1571 1925 2126 1530 1926 2127 1633 1838 2080 1633 1838 2080 1530 1926 2127 1565 1839 2081 1571 1927 2126 1633 1838 2080 1529 1928 2128 1529 1928 2128 1633 1838 2080 1539 1833 2075 1573 1929 2129 1527 1930 2125 1631 1825 2067 1631 1825 2067 1527 1930 2125 1537 1826 2068 1631 1825 2067 1565 1839 2081 1573 1931 2129 1573 1931 2129 1565 1839 2081 1530 1932 2127 1575 1933 2130 1531 1934 2131 1635 1849 2091 1635 1849 2091 1531 1934 2131 1540 1850 2092 1635 1849 2091 1538 1844 2086 1575 1935 2130 1575 1935 2130 1538 1844 2086 1528 1936 2124 1529 1938 2128 1539 1833 2075 1576 1937 2132 1576 1937 2132 1539 1833 2075 1632 1832 2074 1576 1939 2132 1632 1832 2074 1532 1940 2133 1532 1940 2133 1632 1832 2074 1566 1880 2122 1579 1941 2134 1533 1942 2135 1636 1852 2094 1636 1852 2094 1533 1942 2135 1541 1853 2095 1636 1852 2094 1540 1850 2092 1579 1943 2134 1579 1943 2134 1540 1850 2092 1531 1944 2131 1532 1946 2133 1566 1880 2122 1580 1945 2136 1580 1945 2136 1566 1880 2122 1640 1879 2121 1580 1947 2136 1640 1879 2121 1534 1948 2137 1534 1948 2137 1640 1879 2121 1542 1874 2116 1583 1949 2138 1535 1950 2139 1637 1861 2103 1637 1861 2103 1535 1950 2139 1543 1862 2104 1637 1861 2103 1541 1853 2095 1583 1951 2138 1583 1951 2138 1541 1853 2095 1533 1952 2135 1534 1954 2137 1542 1874 2116 1584 1953 2140 1584 1953 2140 1542 1874 2116 1639 1873 2115 1584 1955 2140 1639 1873 2115 1536 1956 2141 1536 1956 2141 1639 1873 2115 1544 1868 2110 1586 1957 2142 1536 1958 2141 1638 1867 2109 1638 1867 2109 1536 1958 2141 1544 1868 2110 1638 1867 2109 1543 1862 2104 1586 1959 2142 1586 1959 2142 1543 1862 2104 1535 1960 2139 1546 1961 2143 1610 1962 2144 1598 1859 2101 1598 1859 2101 1610 1962 2144 1660 1856 2098 1545 1963 2145 1596 1857 2099 1610 1962 2144 1610 1962 2144 1596 1857 2099 1660 1856 2098 1547 1964 2146 1597 1965 2147 1525 1865 2107 1525 1865 2107 1597 1965 2147 1661 1858 2100 1597 1965 2147 1546 1961 2143 1661 1858 2100 1661 1858 2100 1546 1961 2143 1598 1859 2101 1522 1841 2083 1549 1966 2148 1662 1821 2063 1662 1821 2063 1549 1966 2148 1599 1967 2149 1548 1968 2150 1600 1822 2064 1599 1967 2149 1599 1967 2149 1600 1822 2064 1662 1821 2063 1551 1969 2151 1601 1970 2152 1526 1877 2119 1526 1877 2119 1601 1970 2152 1663 1870 2112 1601 1970 2152 1550 1971 2153 1663 1870 2112 1663 1870 2112 1550 1971 2153 1602 1871 2113 1523 1836 2078 1553 1972 2154 1664 1828 2070 1664 1828 2070 1553 1972 2154 1603 1973 2155 1603 1973 2155 1552 1974 2156 1664 1828 2070 1664 1828 2070 1552 1974 2156 1604 1829 2071 1600 1822 2064 1548 1968 2150 1665 1835 2077 1665 1835 2077 1548 1968 2150 1605 1975 2157 1553 1972 2154 1523 1836 2078 1605 1975 2157 1605 1975 2157 1523 1836 2078 1665 1835 2077 1524 1847 2089 1554 1976 2158 1666 1840 2082 1666 1840 2082 1554 1976 2158 1606 1977 2159 1549 1966 2148 1522 1841 2083 1606 1977 2159 1606 1977 2159 1522 1841 2083 1666 1840 2082 1596 1857 2099 1545 1963 2145 1667 1846 2088 1667 1846 2088 1545 1963 2145 1607 1978 2160 1554 1976 2158 1524 1847 2089 1607 1978 2160 1607 1978 2160 1524 1847 2089 1667 1846 2088 1550 1971 2153 1608 1979 2161 1602 1871 2113 1602 1871 2113 1608 1979 2161 1668 1864 2106 1608 1979 2161 1547 1964 2146 1668 1864 2106 1668 1864 2106 1547 1964 2146 1525 1865 2107 1552 1974 2156 1609 1980 2162 1604 1829 2071 1604 1829 2071 1609 1980 2162 1669 1876 2118 1609 1980 2162 1551 1969 2151 1669 1876 2118 1669 1876 2118 1551 1969 2151 1526 1877 2119 1546 1961 2143 1611 1981 2163 1610 1962 2144 1610 1962 2144 1611 1981 2163 1670 1982 2164 1612 1983 2165 1545 1963 2145 1670 1982 2164 1670 1982 2164 1545 1963 2145 1610 1962 2144 1597 1965 2147 1547 1964 2146 1671 1985 2167 1671 1985 2167 1547 1964 2146 1613 1984 2166 1546 1961 2143 1597 1965 2147 1611 1981 2163 1611 1981 2163 1597 1965 2147 1671 1985 2167 1549 1966 2148 1614 1986 2168 1599 1967 2149 1599 1967 2149 1614 1986 2168 1672 1987 2169 1615 1988 2170 1548 1968 2150 1672 1987 2169 1672 1987 2169 1548 1968 2150 1599 1967 2149 1601 1970 2152 1551 1969 2151 1673 1990 2172 1673 1990 2172 1551 1969 2151 1616 1989 2171 1550 1971 2153 1601 1970 2152 1617 1991 2173 1617 1991 2173 1601 1970 2152 1673 1990 2172 1603 1973 2155 1553 1972 2154 1674 1993 2175 1674 1993 2175 1553 1972 2154 1618 1992 2174 1552 1974 2156 1603 1973 2155 1619 1994 2176 1619 1994 2176 1603 1973 2155 1674 1993 2175 1548 1968 2150 1615 1988 2170 1605 1975 2157 1605 1975 2157 1615 1988 2170 1675 1995 2177 1618 1992 2174 1553 1972 2154 1675 1995 2177 1675 1995 2177 1553 1972 2154 1605 1975 2157 1554 1976 2158 1620 1996 2178 1606 1977 2159 1606 1977 2159 1620 1996 2178 1676 1997 2179 1614 1986 2168 1549 1966 2148 1676 1997 2179 1676 1997 2179 1549 1966 2148 1606 1977 2159 1545 1963 2145 1612 1983 2165 1607 1978 2160 1607 1978 2160 1612 1983 2165 1677 1998 2180 1620 1996 2178 1554 1976 2158 1677 1998 2180 1677 1998 2180 1554 1976 2158 1607 1978 2160 1608 1979 2161 1550 1971 2153 1678 1999 2181 1678 1999 2181 1550 1971 2153 1617 1991 2173 1547 1964 2146 1608 1979 2161 1613 1984 2166 1613 1984 2166 1608 1979 2161 1678 1999 2181 1609 1980 2162 1552 1974 2156 1679 2000 2182 1679 2000 2182 1552 1974 2156 1619 1994 2176 1551 1969 2151 1609 1980 2162 1616 1989 2171 1616 1989 2171 1609 1980 2162 1679 2000 2182 1651 1814 745 1587 1809 740 1588 1815 746 1587 1809 740 1595 1769 700 1588 1815 746 1595 1769 700 1659 1819 750 1588 1815 746 1594 1764 695 1589 1803 734 1657 1772 703 1657 1772 703 1589 1803 734 1653 1802 733 1658 1763 694 1652 1808 739 1594 1764 695 1594 1764 695 1652 1808 739 1589 1803 734 1657 1772 703 1653 1802 733 1593 1773 704 1593 1773 704 1653 1802 733 1590 1797 728 1655 1784 715 1592 1779 710 1591 1785 716 1680 1793 724 1681 1792 723 1592 1779 710 1592 1779 710 1681 1792 723 1591 1785 716 1590 1797 728 1654 1796 727 1593 1773 704 1593 1773 704 1654 1796 727 1656 1778 709 1559 1782 713 1591 1785 716 1625 1788 719 1625 1788 719 1591 1785 716 1681 1792 723 1592 1779 710 1656 1778 709 1680 1793 724 1680 1793 724 1656 1778 709 1654 1796 727 1611 1981 2163 1519 2001 2183 1670 1982 2164 1670 1982 2164 1519 2001 2183 1520 2002 2184 1670 1982 2164 1520 2002 2184 1612 1983 2165 1612 1983 2165 1520 2002 2184 1882 1750 2052 1517 2003 2185 1518 2004 2186 1613 1984 2166 1613 1984 2166 1518 2004 2186 1671 1985 2167 1488 1724 2026 1485 1723 2025 1614 1986 2168 1614 1986 2168 1485 1723 2025 1672 1987 2169 1672 1987 2169 1485 1723 2025 1615 1988 2170 1615 1988 2170 1485 1723 2025 1476 1714 2016 1499 1737 2039 1505 1743 2045 1616 1989 2171 1616 1989 2171 1505 1743 2045 1673 1990 2172 1505 1743 2045 1511 1749 2051 1673 1990 2172 1673 1990 2172 1511 1749 2051 1617 1991 2173 1618 1992 2174 1474 1712 2014 1674 1993 2175 1674 1993 2175 1474 1712 2014 1484 1722 2024 1674 1993 2175 1484 1722 2024 1619 1994 2176 1619 1994 2176 1484 1722 2024 1487 1729 2031 1476 1714 2016 1475 1713 2015 1615 1988 2170 1615 1988 2170 1475 1713 2015 1675 1995 2177 1675 1995 2177 1475 1713 2015 1618 1992 2174 1618 1992 2174 1475 1713 2015 1474 1712 2014 1620 1996 2178 1500 1739 2041 1676 1997 2179 1676 1997 2179 1500 1739 2041 1494 1733 2035 1676 1997 2179 1494 1733 2035 1614 1986 2168 1614 1986 2168 1494 1733 2035 1488 1724 2026 1677 1998 2180 1506 1745 2047 1620 1996 2178 1620 1996 2178 1506 1745 2047 1500 1739 2041 1617 1991 2173 1511 1749 2051 1678 1999 2181 1678 1999 2181 1511 1749 2051 1516 1758 2060 1516 1758 2060 1517 2003 2185 1678 1999 2181 1678 1999 2181 1517 2003 2185 1613 1984 2166 1619 1994 2176 1487 1729 2031 1679 2000 2182 1679 2000 2182 1487 1729 2031 1493 1731 2033 1679 2000 2182 1493 1731 2033 1616 1989 2171 1616 1989 2171 1493 1731 2033 1499 1737 2039 1518 2004 2186 1519 2001 2183 1671 1985 2167 1671 1985 2167 1519 2001 2183 1611 1981 2163 1487 1729 2031 1484 1722 2024 1483 1721 2023 1484 1722 2024 1474 1712 2014 1473 1711 2013 1677 1998 2180 1612 1983 2165 1506 1745 2047 1506 1745 2047 1612 1983 2165 1882 1750 2052 1807 2005 620 1687 2006 621 1721 2007 622 1687 2006 621 1722 2008 623 1721 2007 622 1721 2007 622 1722 2008 623 1807 2005 620 1723 2009 624 1070 1282 380 1808 2010 625 1808 2010 625 1070 1282 380 1092 1281 379 1879 2012 627 1723 2009 624 1878 2011 626 1878 2011 626 1723 2009 624 1808 2010 625 1723 2009 624 1879 2012 627 1809 2014 629 1809 2014 629 1879 2012 627 1880 2013 628 1093 1289 387 1809 2014 629 1110 1287 385 1110 1287 385 1809 2014 629 1857 2015 630 1070 1282 380 1723 2009 624 1093 1289 387 1093 1289 387 1723 2009 624 1809 2014 629 1867 2017 632 1724 2018 633 1789 2016 631 1789 2016 631 1724 2018 633 1688 2019 634 1724 2018 633 1867 2017 632 1683 2020 635 1683 2020 635 1867 2017 632 1685 2021 636 1725 2023 638 1720 2024 639 1690 2022 637 1690 2022 637 1720 2024 639 1682 2025 640 1071 1300 398 1069 2026 399 1725 2023 638 1725 2023 638 1069 2026 399 1720 2027 639 1724 2018 633 1683 2028 635 1810 2030 642 1810 2030 642 1683 2028 635 1726 2029 641 1684 2032 643 1847 2033 644 1726 2031 641 1726 2031 641 1847 2033 644 1810 2030 642 1847 2033 644 1792 2034 645 1810 2030 642 1810 2030 642 1792 2034 645 1727 2035 646 1688 2019 634 1724 2018 633 1727 2035 646 1727 2035 646 1724 2018 633 1810 2030 642 1844 2037 648 1728 2038 649 1788 2036 647 1788 2036 647 1728 2038 649 1691 2039 650 1789 2016 631 1688 2019 634 1844 2037 648 1844 2037 648 1688 2019 634 1728 2038 649 1729 2040 651 1693 2041 652 1811 2043 654 1811 2043 654 1693 2041 652 1730 2042 653 1694 2044 655 1815 2045 656 1730 2042 653 1730 2042 653 1815 2045 656 1811 2043 654 1815 2045 656 1731 2046 657 1811 2043 654 1731 2046 657 1692 2047 658 1811 2043 654 1811 2043 654 1692 2047 658 1729 2040 651 1732 2048 659 1690 2022 637 1812 2050 661 1812 2050 661 1690 2022 637 1689 2049 660 1695 2052 663 1732 2048 659 1790 2051 662 1790 2051 662 1732 2048 659 1812 2050 661 1732 2048 659 1695 2052 663 1813 2054 665 1813 2054 665 1695 2052 663 1733 2053 664 1072 1331 426 1094 1330 425 1733 2053 664 1733 2053 664 1094 1330 425 1813 2054 665 1094 1330 425 1071 1300 398 1813 2054 665 1813 2054 665 1071 1300 398 1725 2023 638 1690 2022 637 1732 2048 659 1725 2023 638 1725 2023 638 1732 2048 659 1813 2054 665 1848 2055 666 1793 2056 667 1814 2058 669 1814 2058 669 1793 2056 667 1734 2057 668 1734 2057 668 1691 2039 650 1814 2058 669 1814 2058 669 1691 2039 650 1728 2038 649 1688 2019 634 1727 2035 646 1728 2038 649 1728 2038 649 1727 2035 646 1814 2058 669 1792 2034 645 1848 2055 666 1727 2035 646 1727 2035 646 1848 2055 666 1814 2058 669 1694 2044 655 1696 2059 670 1815 2045 656 1815 2045 656 1696 2059 670 1735 2060 671 1735 2060 671 1736 2061 672 1815 2045 656 1698 2063 674 1737 2064 675 1778 2062 673 1778 2062 673 1737 2064 675 1699 2065 676 1737 2064 675 1779 2066 677 1699 2065 676 1699 2065 676 1779 2066 677 1866 2067 678 1738 2068 679 1073 1348 443 1816 2069 680 1816 2069 680 1073 1348 443 1095 1347 442 1095 1347 442 1074 1350 445 1816 2069 680 1816 2069 680 1074 1350 445 1836 2070 681 1779 2066 677 1737 2064 675 1836 2070 681 1836 2070 681 1737 2064 675 1816 2069 680 1698 2063 674 1738 2068 679 1737 2064 675 1737 2064 675 1738 2068 679 1816 2069 680 1798 2071 682 1701 2072 683 1817 2074 685 1817 2074 685 1701 2072 683 1740 2073 684 1700 2075 686 1739 2076 687 1740 2073 684 1740 2073 684 1739 2076 687 1817 2074 685 1702 2078 689 1742 2079 690 1741 2077 688 1741 2077 688 1742 2079 690 1818 2080 691 1686 2081 751 1807 2005 620 1742 2079 690 1742 2079 690 1807 2005 620 1818 2080 691 1818 2080 691 1744 2082 753 1741 2077 688 1741 2077 688 1744 2082 753 1871 2083 754 1722 2008 623 1743 2084 755 1807 2005 620 1807 2005 620 1743 2084 755 1818 2080 691 1743 2084 755 1703 2085 756 1818 2080 691 1818 2080 691 1703 2085 756 1744 2082 753 1876 2087 758 1877 2088 759 1745 2086 757 1745 2086 757 1877 2088 759 1819 2089 760 1877 2088 759 1878 2011 626 1819 2089 760 1819 2089 760 1878 2011 626 1808 2010 625 1808 2010 625 1092 1281 379 1819 2089 760 1819 2089 760 1092 1281 379 1096 1369 464 1075 1370 465 1745 2086 757 1096 1369 464 1096 1369 464 1745 2086 757 1819 2089 760 1788 2036 647 1691 2039 650 1843 2091 762 1843 2091 762 1691 2039 650 1746 2090 761 1843 2091 762 1746 2090 761 1704 2092 763 1704 2092 763 1746 2090 761 1705 2093 764 1747 2094 765 1706 2095 766 1820 2097 768 1820 2097 768 1706 2095 766 1748 2096 767 1707 2098 769 1749 2099 770 1748 2096 767 1748 2096 767 1749 2099 770 1820 2097 768 1749 2099 770 1702 2078 689 1820 2097 768 1820 2097 768 1702 2078 689 1741 2077 688 1706 2095 766 1747 2094 765 1750 2100 771 1750 2100 771 1747 2094 765 1821 2101 772 1744 2082 753 1805 2103 774 1871 2083 754 1751 2102 773 1871 2083 754 1805 2103 774 1751 2102 773 1696 2059 670 1821 2101 772 1821 2101 772 1696 2059 670 1752 2104 775 1708 2105 776 1750 2100 771 1752 2104 775 1752 2104 775 1750 2100 771 1821 2101 772 1702 2078 689 1749 2099 770 1753 2106 777 1753 2106 777 1749 2099 770 1822 2107 778 1749 2099 770 1707 2098 769 1822 2107 778 1822 2107 778 1707 2098 769 1754 2108 779 1802 2109 780 1856 2110 781 1754 2108 779 1754 2108 779 1856 2110 781 1822 2107 778 1856 2110 781 1803 2111 782 1822 2107 778 1822 2107 778 1803 2111 782 1753 2106 777 1755 2113 784 1842 2114 785 1709 2112 783 1709 2112 783 1842 2114 785 1787 2115 786 1842 2114 785 1755 2113 784 1786 2116 787 1786 2116 787 1755 2113 784 1710 2117 788 1756 2118 789 1712 2119 790 1823 2121 792 1823 2121 792 1712 2119 790 1757 2120 791 1714 2122 793 1758 2123 794 1757 2120 791 1757 2120 791 1758 2123 794 1823 2121 792 1758 2123 794 1713 2124 795 1823 2121 792 1823 2121 792 1713 2124 795 1759 2125 796 1711 2126 797 1756 2118 789 1759 2125 796 1759 2125 796 1756 2118 789 1823 2121 792 1760 2127 798 1715 2128 799 1824 2130 801 1824 2130 801 1715 2128 799 1761 2129 800 1700 2075 686 1762 2131 802 1761 2129 800 1761 2129 800 1762 2131 802 1824 2130 801 1712 2119 790 1756 2118 789 1762 2131 802 1762 2131 802 1756 2118 789 1824 2130 801 1756 2118 789 1711 2126 797 1824 2130 801 1824 2130 801 1711 2126 797 1760 2127 798 1763 2132 803 1795 2133 804 1825 2135 806 1825 2135 806 1795 2133 804 1851 2134 805 1796 2136 807 1764 2137 808 1851 2134 805 1851 2134 805 1764 2137 808 1825 2135 806 1764 2137 808 1710 2117 788 1825 2135 806 1825 2135 806 1710 2117 788 1755 2113 784 1709 2112 783 1763 2132 803 1755 2113 784 1755 2113 784 1763 2132 803 1825 2135 806 1713 2124 795 1758 2123 794 1765 2138 809 1765 2138 809 1758 2123 794 1826 2139 810 1758 2123 794 1714 2122 793 1826 2139 810 1826 2139 810 1714 2122 793 1766 2140 811 1800 2141 812 1854 2142 813 1766 2140 811 1766 2140 811 1854 2142 813 1826 2139 810 1854 2142 813 1801 2143 814 1826 2139 810 1826 2139 810 1801 2143 814 1765 2138 809 1786 2116 787 1710 2117 788 1841 2144 815 1841 2144 815 1710 2117 788 1764 2137 808 1797 2145 816 1841 2144 815 1796 2136 807 1796 2136 807 1841 2144 815 1764 2137 808 1799 2147 818 1853 2148 819 1767 2146 817 1767 2146 817 1853 2148 819 1827 2149 820 1853 2148 819 1800 2141 812 1827 2149 820 1827 2149 820 1800 2141 812 1766 2140 811 1766 2140 811 1714 2122 793 1827 2149 820 1827 2149 820 1714 2122 793 1757 2120 791 1712 2119 790 1767 2146 817 1757 2120 791 1757 2120 791 1767 2146 817 1827 2149 820 1768 2150 821 1695 2052 663 1828 2151 822 1828 2151 822 1695 2052 663 1790 2051 662 1716 2153 824 1768 2150 821 1791 2152 823 1791 2152 823 1768 2150 821 1828 2151 822 1717 2155 826 1769 2156 827 1770 2154 825 1770 2154 825 1769 2156 827 1829 2157 828 1744 2082 753 1703 2085 756 1830 2159 830 1830 2159 830 1703 2085 756 1771 2158 829 1771 2158 829 1875 2161 832 1872 2160 831 1872 2160 831 1875 2161 832 1874 2162 833 1768 2150 821 1716 2153 824 1831 2164 835 1831 2164 835 1716 2153 824 1773 2163 834 1076 1447 542 1097 1446 541 1773 2163 834 1773 2163 834 1097 1446 541 1831 2164 835 1097 1446 541 1072 1331 426 1831 2164 835 1831 2164 835 1072 1331 426 1733 2053 664 1695 2052 663 1768 2150 821 1733 2053 664 1733 2053 664 1768 2150 821 1831 2164 835 1876 2087 758 1745 2086 757 1875 2161 832 1875 2161 832 1745 2086 757 1832 2165 836 1745 2086 757 1075 1370 465 1832 2165 836 1832 2165 836 1075 1370 465 1098 1449 544 1077 1451 546 1774 2166 837 1098 1449 544 1098 1449 544 1774 2166 837 1832 2165 836 1774 2166 837 1874 2162 833 1832 2165 836 1832 2165 836 1874 2162 833 1875 2161 832 1718 2167 838 1716 2153 824 1846 2168 839 1846 2168 839 1716 2153 824 1791 2152 823 1769 2156 827 1717 2155 826 1776 2170 841 1776 2170 841 1717 2155 826 1775 2169 840 1872 2160 831 1874 2162 833 1835 2171 842 1835 2171 842 1874 2162 833 1873 2172 843 1078 1458 553 1076 1447 542 1833 2173 844 1833 2173 844 1076 1447 542 1773 2163 834 1716 2153 824 1718 2167 838 1773 2163 834 1773 2163 834 1718 2167 838 1833 2173 844 1774 2166 837 1077 1451 546 1834 2174 845 1834 2174 845 1077 1451 546 1099 1461 556 1874 2162 833 1774 2166 837 1873 2172 843 1873 2172 843 1774 2166 837 1834 2174 845 1776 2170 841 1775 2169 840 1699 2065 676 1699 2065 676 1775 2169 840 1778 2062 673 1074 1350 445 1078 1458 553 1836 2070 681 1836 2070 681 1078 1458 553 1833 2173 844 1718 2167 838 1779 2066 677 1833 2173 844 1833 2173 844 1779 2066 677 1836 2070 681 1794 2176 847 1780 2177 848 1849 2175 846 1849 2175 846 1780 2177 848 1837 2178 849 1780 2177 848 1705 2093 764 1837 2178 849 1837 2178 849 1705 2093 764 1746 2090 761 1691 2039 650 1734 2057 668 1746 2090 761 1746 2090 761 1734 2057 668 1837 2178 849 1734 2057 668 1793 2056 667 1837 2178 849 1837 2178 849 1793 2056 667 1849 2175 846 1855 2179 850 1802 2109 780 1838 2180 851 1838 2180 851 1802 2109 780 1754 2108 779 1707 2098 769 1781 2181 852 1754 2108 779 1754 2108 779 1781 2181 852 1838 2180 851 1781 2181 852 1713 2124 795 1838 2180 851 1838 2180 851 1713 2124 795 1765 2138 809 1801 2143 814 1855 2179 850 1765 2138 809 1765 2138 809 1855 2179 850 1838 2180 851 1719 2182 853 1715 2128 799 1839 2184 855 1839 2184 855 1715 2128 799 1782 2183 854 1708 2105 776 1783 2185 856 1782 2183 854 1782 2183 854 1783 2185 856 1839 2184 855 1704 2092 763 1705 2093 764 1870 2187 858 1870 2187 858 1705 2093 764 1784 2186 857 1709 2112 783 1787 2115 786 1784 2186 857 1784 2186 857 1787 2115 786 1870 2187 858 1785 2188 859 1711 2126 797 1840 2189 860 1840 2189 860 1711 2126 797 1759 2125 796 1713 2124 795 1781 2181 852 1759 2125 796 1759 2125 796 1781 2181 852 1840 2189 860 1781 2181 852 1707 2098 769 1840 2189 860 1840 2189 860 1707 2098 769 1748 2096 767 1706 2095 766 1785 2188 859 1748 2096 767 1748 2096 767 1785 2188 859 1840 2189 860 1797 2145 816 1798 2071 682 1841 2144 815 1841 2144 815 1798 2071 682 1817 2074 685 1739 2076 687 1786 2116 787 1817 2074 685 1817 2074 685 1786 2116 787 1841 2144 815 1786 2116 787 1739 2076 687 1842 2114 785 1842 2114 785 1739 2076 687 1863 2190 861 1719 2182 853 1787 2115 786 1863 2190 861 1863 2190 861 1787 2115 786 1842 2114 785 1704 2092 763 1783 2185 856 1843 2091 762 1843 2091 762 1783 2185 856 1860 2191 862 1694 2044 655 1788 2036 647 1860 2191 862 1860 2191 862 1788 2036 647 1843 2091 762 1788 2036 647 1694 2044 655 1844 2037 648 1844 2037 648 1694 2044 655 1730 2042 653 1693 2041 652 1789 2016 631 1730 2042 653 1730 2042 653 1789 2016 631 1844 2037 648 1693 2041 652 1729 2040 651 1685 2192 636 1685 2192 636 1729 2040 651 1845 2193 863 1896 2194 864 1692 2047 658 1731 2046 657 1829 2157 828 1769 2156 827 1828 2151 822 1828 2151 822 1769 2156 827 1791 2152 823 1769 2156 827 1776 2170 841 1791 2152 823 1791 2152 823 1776 2170 841 1846 2168 839 1776 2170 841 1699 2065 676 1846 2168 839 1846 2168 839 1699 2065 676 1866 2067 678 1068 2196 577 1100 1483 576 1684 2195 643 1684 2195 643 1100 1483 576 1847 2033 644 1100 1483 576 1079 1485 578 1847 2033 644 1847 2033 644 1079 1485 578 1792 2034 645 1079 1485 578 1101 1486 579 1792 2034 645 1792 2034 645 1101 1486 579 1848 2055 666 1101 1486 579 1080 1487 580 1848 2055 666 1848 2055 666 1080 1487 580 1793 2056 667 1080 1487 580 1102 1488 581 1793 2056 667 1793 2056 667 1102 1488 581 1849 2175 846 1081 1489 582 1794 2176 847 1102 1488 581 1102 1488 581 1794 2176 847 1849 2175 846 1794 2176 847 1081 1489 582 1850 2197 865 1850 2197 865 1081 1489 582 1103 1491 584 1082 1492 585 1795 2133 804 1103 1491 584 1103 1491 584 1795 2133 804 1850 2197 865 1795 2133 804 1082 1492 585 1851 2134 805 1851 2134 805 1082 1492 585 1104 1493 586 1083 1494 587 1796 2136 807 1104 1493 586 1104 1493 586 1796 2136 807 1851 2134 805 1084 1495 588 1797 2145 816 1083 1494 587 1083 1494 587 1797 2145 816 1796 2136 807 1085 1496 589 1798 2071 682 1084 1495 588 1084 1495 588 1798 2071 682 1797 2145 816 1087 1499 592 1105 1498 591 1701 2072 683 1701 2072 683 1105 1498 591 1852 2198 866 1105 1498 591 1086 1500 593 1852 2198 866 1852 2198 866 1086 1500 593 1799 2147 818 1106 1501 594 1088 1502 595 1853 2148 819 1853 2148 819 1088 1502 595 1800 2141 812 1086 1500 593 1106 1501 594 1799 2147 818 1799 2147 818 1106 1501 594 1853 2148 819 1088 1502 595 1107 1503 596 1800 2141 812 1800 2141 812 1107 1503 596 1854 2142 813 1107 1503 596 1089 1504 597 1854 2142 813 1854 2142 813 1089 1504 597 1801 2143 814 1108 1505 598 1090 1506 599 1855 2179 850 1855 2179 850 1090 1506 599 1802 2109 780 1089 1504 597 1108 1505 598 1801 2143 814 1801 2143 814 1108 1505 598 1855 2179 850 1090 1506 599 1109 1507 600 1802 2109 780 1802 2109 780 1109 1507 600 1856 2110 781 1109 1507 600 1091 1508 601 1856 2110 781 1856 2110 781 1091 1508 601 1803 2111 782 1091 1508 601 1110 1287 385 1803 2111 782 1803 2111 782 1110 1287 385 1857 2015 630 1738 2068 679 1698 2063 674 1858 2200 868 1858 2200 868 1698 2063 674 1804 2199 867 1873 2172 843 1834 2174 845 1804 2199 867 1804 2199 867 1834 2174 845 1858 2200 868 1834 2174 845 1099 1461 556 1858 2200 868 1858 2200 868 1099 1461 556 1111 1511 604 1073 1348 443 1738 2068 679 1111 1511 604 1111 1511 604 1738 2068 679 1858 2200 868 1085 1496 589 1087 1499 592 1798 2071 682 1798 2071 682 1087 1499 592 1701 2072 683 1697 2201 869 1805 2103 774 1770 2154 825 1770 2154 825 1805 2103 774 1859 2202 870 1805 2103 774 1744 2082 753 1859 2202 870 1859 2202 870 1744 2082 753 1830 2159 830 1772 2203 871 1806 2204 872 1830 2159 830 1830 2159 830 1806 2204 872 1859 2202 870 1806 2204 872 1717 2155 826 1859 2202 870 1859 2202 870 1717 2155 826 1770 2154 825 1783 2185 856 1708 2105 776 1860 2191 862 1860 2191 862 1708 2105 776 1752 2104 775 1694 2044 655 1860 2191 862 1696 2059 670 1696 2059 670 1860 2191 862 1752 2104 775 1717 2155 826 1806 2204 872 1775 2169 840 1775 2169 840 1806 2204 872 1861 2205 873 1806 2204 872 1772 2203 871 1861 2205 873 1861 2205 873 1772 2203 871 1777 2206 874 1785 2188 859 1706 2095 766 1862 2207 875 1862 2207 875 1706 2095 766 1750 2100 771 1750 2100 771 1708 2105 776 1862 2207 875 1862 2207 875 1708 2105 776 1782 2183 854 1715 2128 799 1760 2127 798 1782 2183 854 1782 2183 854 1760 2127 798 1862 2207 875 1711 2126 797 1785 2188 859 1760 2127 798 1760 2127 798 1785 2188 859 1862 2207 875 1775 2169 840 1861 2205 873 1778 2062 673 1778 2062 673 1861 2205 873 1864 2208 876 1777 2206 874 1835 2171 842 1861 2205 873 1861 2205 873 1835 2171 842 1864 2208 876 1739 2076 687 1700 2075 686 1863 2190 861 1863 2190 861 1700 2075 686 1761 2129 800 1715 2128 799 1719 2182 853 1761 2129 800 1761 2129 800 1719 2182 853 1863 2190 861 1804 2199 867 1698 2063 674 1864 2208 876 1864 2208 876 1698 2063 674 1778 2062 673 1852 2198 866 1799 2147 818 1865 2209 877 1865 2209 877 1799 2147 818 1767 2146 817 1712 2119 790 1762 2131 802 1767 2146 817 1767 2146 817 1762 2131 802 1865 2209 877 1762 2131 802 1700 2075 686 1865 2209 877 1865 2209 877 1700 2075 686 1740 2073 684 1701 2072 683 1852 2198 866 1740 2073 684 1740 2073 684 1852 2198 866 1865 2209 877 1779 2066 677 1718 2167 838 1866 2067 678 1866 2067 678 1718 2167 838 1846 2168 839 1789 2016 631 1693 2041 652 1867 2017 632 1867 2017 632 1693 2041 652 1685 2210 636 1696 2059 670 1751 2102 773 1735 2060 671 1735 2060 671 1751 2102 773 1697 2201 869 1805 2103 774 1697 2201 869 1751 2102 773 1803 2111 782 1857 2015 630 1753 2106 777 1753 2106 777 1857 2015 630 1868 2211 878 1857 2015 630 1809 2014 629 1868 2211 878 1809 2014 629 1880 2013 628 1868 2211 878 1742 2079 690 1702 2078 689 1868 2211 878 1868 2211 878 1702 2078 689 1753 2106 777 1780 2177 848 1794 2176 847 1869 2212 879 1869 2212 879 1794 2176 847 1850 2197 865 1795 2133 804 1763 2132 803 1850 2197 865 1850 2197 865 1763 2132 803 1869 2212 879 1763 2132 803 1709 2112 783 1869 2212 879 1869 2212 879 1709 2112 783 1784 2186 857 1705 2093 764 1780 2177 848 1784 2186 857 1784 2186 857 1780 2177 848 1869 2212 879 1787 2115 786 1719 2182 853 1870 2187 858 1870 2187 858 1719 2182 853 1839 2184 855 1783 2185 856 1704 2092 763 1839 2184 855 1839 2184 855 1704 2092 763 1870 2187 858 1871 2083 754 1751 2102 773 1747 2094 765 1747 2094 765 1751 2102 773 1821 2101 772 1871 2083 754 1747 2094 765 1741 2077 688 1741 2077 688 1747 2094 765 1820 2097 768 1772 2203 871 1872 2160 831 1777 2206 874 1777 2206 874 1872 2160 831 1835 2171 842 1872 2160 831 1772 2203 871 1771 2158 829 1771 2158 829 1772 2203 871 1830 2159 830 1835 2171 842 1873 2172 843 1864 2208 876 1864 2208 876 1873 2172 843 1804 2199 867 1703 2085 756 1876 2087 758 1771 2158 829 1771 2158 829 1876 2087 758 1875 2161 832 1877 2088 759 1876 2087 758 1743 2084 755 1743 2084 755 1876 2087 758 1703 2085 756 1743 2084 755 1722 2008 623 1877 2088 759 1877 2088 759 1722 2008 623 1878 2011 626 1687 2006 621 1879 2012 627 1722 2008 623 1722 2008 623 1879 2012 627 1878 2011 626 1880 2013 628 1879 2012 627 1686 2081 751 1686 2081 751 1879 2012 627 1687 2006 621 1868 2211 878 1880 2013 628 1742 2079 690 1742 2079 690 1880 2013 628 1686 2081 751 1684 2214 2187 1886 2215 2188 1068 2213 1843 1068 2213 1843 1886 2215 2188 1319 1525 1844 1521 1759 2061 1886 2215 2188 1518 2004 2186 1518 2004 2186 1886 2215 2188 1887 2216 2189 1518 2004 2186 1517 2003 2185 1521 1759 2061 1521 1759 2061 1517 2003 2185 1881 1760 2062 1517 2003 2185 1516 1758 2060 1881 1760 2062 1881 1760 2062 1516 1758 2060 1515 1757 2059 898 1023 1712 1312 1025 1714 1515 1757 2059 1515 1757 2059 1312 1025 1714 1881 1760 2062 1683 2217 2190 1685 2218 2191 1888 2220 2193 1888 2220 2193 1685 2218 2191 1889 2219 2192 1882 1750 2052 1520 2002 2184 1890 2221 2194 1890 2221 2194 1520 2002 2184 1889 2219 2192 1885 2223 2196 1892 2224 2197 1884 2222 2195 1884 2222 2195 1892 2224 2197 1891 2225 2198 1514 1754 2056 1898 2226 2199 1315 1538 1857 1315 1538 1857 1898 2226 2199 1320 1539 1858 1518 2004 2186 1887 2216 2189 1519 2001 2183 1519 2001 2183 1887 2216 2189 1888 2220 2193 1882 1750 2052 1890 2221 2194 1512 1751 2053 1512 1751 2053 1890 2221 2194 1891 2225 2198 1729 2040 651 1692 2047 658 1845 2228 863 1845 2228 863 1692 2047 658 1884 2227 880 1690 2022 637 1682 2229 640 1689 2049 660 1689 2049 660 1682 2229 640 1885 2230 881 1513 1752 2054 1892 2224 2197 1883 1753 2055 1883 1753 2055 1892 2224 2197 1893 2231 2200 1884 2233 880 1692 2047 658 1885 2232 881 1885 2232 881 1692 2047 658 1689 2049 660 905 1028 1717 1319 1525 1844 1521 1759 2061 1521 1759 2061 1319 1525 1844 1886 2215 2188 1069 2235 1862 1320 1539 1858 1720 2234 2201 1720 2234 2201 1320 1539 1858 1898 2226 2199 1684 2236 2187 1726 2237 2202 1886 2215 2188 1886 2215 2188 1726 2237 2202 1887 2216 2189 1726 2238 2202 1683 2239 2190 1887 2216 2189 1887 2216 2189 1683 2239 2190 1888 2220 2193 1520 2002 2184 1519 2001 2183 1889 2219 2192 1889 2219 2192 1519 2001 2183 1888 2220 2193 1845 2241 2203 1890 2221 2194 1685 2240 2191 1685 2240 2191 1890 2221 2194 1889 2219 2192 1884 2243 2195 1891 2225 2198 1845 2242 2203 1845 2242 2203 1891 2225 2198 1890 2221 2194 1512 1751 2053 1891 2225 2198 1513 1752 2054 1513 1752 2054 1891 2225 2198 1892 2224 2197 1682 2245 2204 1893 2231 2200 1885 2244 2196 1885 2244 2196 1893 2231 2200 1892 2224 2197 1720 2247 2201 1898 2226 2199 1682 2246 2204 1682 2246 2204 1898 2226 2199 1893 2231 2200 1894 2248 882 1697 2201 869 1829 2157 828 1829 2157 828 1697 2201 869 1770 2154 825 1894 2248 882 1829 2157 828 1790 2051 662 1790 2051 662 1829 2157 828 1828 2151 822 1894 2248 882 1790 2051 662 1895 2249 883 1895 2249 883 1790 2051 662 1812 2050 661 1735 2060 671 1697 2201 869 1736 2061 672 1736 2061 672 1697 2201 869 1894 2248 882 1736 2061 672 1894 2248 882 1896 2194 864 1896 2194 864 1894 2248 882 1895 2249 883 1692 2047 658 1896 2194 864 1689 2049 660 1689 2049 660 1896 2194 864 1895 2249 883 1689 2049 660 1895 2249 883 1812 2050 661 1815 2045 656 1736 2061 672 1731 2046 657 1731 2046 657 1736 2061 672 1896 2194 864 1883 1753 2055 1893 2231 2200 1514 1754 2056 1514 1754 2056 1893 2231 2200 1898 2226 2199 1371 1600 1902 1899 1601 1903 1359 1584 1886 1359 1584 1886 1899 1601 1903 1360 1586 1888 1382 1613 1915 1900 1614 1916 1371 1600 1902 1371 1600 1902 1900 1614 1916 1899 1601 1903 1393 1626 1928 1901 1627 1929 1382 1613 1915 1382 1613 1915 1901 1627 1929 1900 1614 1916 1404 1639 1941 1902 1640 1942 1393 1626 1928 1393 1626 1928 1902 1640 1942 1901 1627 1929 1404 1639 1941 1415 1652 1954 1902 1640 1942 1902 1640 1942 1415 1652 1954 350 790 1479 1426 1664 1966 433 793 1482 1415 1652 1954 1415 1652 1954 433 793 1482 350 790 1479 1497 1735 2037 1903 1756 2058 430 806 1495 1503 1741 2043 1509 1747 2049 1903 1756 2058 1903 1756 2058 1509 1747 2049 1904 1755 2057 1051 1105 1734 986 1090 1719 1905 1106 1735 1905 1106 1735 986 1090 1719 1906 1093 1722 1048 1091 1720 908 1109 1738 1907 1092 1721 1907 1092 1721 908 1109 1738 1908 1096 1725 1017 1095 1724 951 1107 1736 1907 1092 1721 1907 1092 1721 951 1107 1736 1906 1093 1722 1019 1108 1737 925 1101 1730 1905 1106 1735 1905 1106 1735 925 1101 1730 1909 1103 1732 1020 1113 1742 923 1094 1723 1910 1111 1740 1910 1111 1740 923 1094 1723 1908 1096 1725 1050 1098 1727 909 1104 1733 1911 1099 1728 1911 1099 1728 909 1104 1733 1909 1103 1732 1052 1110 1739 910 1115 1744 1910 1111 1740 1910 1111 1740 910 1115 1744 1912 1114 1743 1018 1102 1731 952 1148 1777 1911 1099 1728 1911 1099 1728 952 1148 1777 1913 1100 1729 1021 1119 1748 924 1112 1741 1914 1117 1746 1914 1117 1746 924 1112 1741 1912 1114 1743 990 1097 1726 1913 1100 1729 1055 1146 1775 1055 1146 1775 1913 1100 1729 1915 1147 1776 982 1125 1754 1916 1120 1749 1053 1116 1745 1053 1116 1745 1916 1120 1749 1914 1117 1746 928 1142 1771 1917 1144 1773 1026 1149 1778 1026 1149 1778 1917 1144 1773 1915 1147 1776 926 1118 1747 1916 1120 1749 1022 1122 1751 1022 1122 1751 1916 1120 1749 1918 1123 1752 912 1145 1774 1917 1144 1773 1049 1140 1769 1049 1140 1769 1917 1144 1773 1919 1141 1770 984 1127 1756 1920 1124 1753 1046 1126 1755 1046 1126 1755 1920 1124 1753 1918 1123 1752 930 1136 1765 1921 1138 1767 1025 1143 1772 1025 1143 1772 1921 1138 1767 1919 1141 1770 927 1121 1750 1920 1124 1753 1023 1131 1760 1023 1131 1760 1920 1124 1753 1922 1129 1758 988 1139 1768 1921 1138 1767 1054 1134 1763 1054 1134 1763 1921 1138 1767 1923 1135 1764 911 1133 1762 1924 1132 1761 1047 1128 1757 1047 1128 1757 1924 1132 1761 1922 1129 1758 929 1130 1759 1924 1132 1761 1024 1137 1766 1024 1137 1766 1924 1132 1761 1923 1135 1764 1662 1821 2063 1926 1824 2066 1522 1841 2083 1522 1841 2083 1926 1824 2066 1925 1827 2069 1665 1835 2077 1928 1837 2079 1600 1822 2064 1600 1822 2064 1928 1837 2079 1927 1823 2065 1631 1825 2067 1926 1824 2066 1565 1839 2081 1565 1839 2081 1926 1824 2066 1927 1823 2065 1634 1843 2085 1929 1842 2084 1537 1826 2068 1537 1826 2068 1929 1842 2084 1925 1827 2069 1633 1838 2080 1928 1837 2079 1539 1833 2075 1539 1833 2075 1928 1837 2079 1930 1834 2076 1666 1840 2082 1929 1842 2084 1524 1847 2089 1524 1847 2089 1929 1842 2084 1931 1845 2087 1664 1828 2070 1932 1831 2073 1523 1836 2078 1523 1836 2078 1932 1831 2073 1930 1834 2076 1635 1849 2091 1933 1848 2090 1538 1844 2086 1538 1844 2086 1933 1848 2090 1931 1845 2087 1632 1832 2074 1932 1831 2073 1566 1880 2122 1566 1880 2122 1932 1831 2073 1934 1830 2072 1596 1857 2099 1667 1846 2088 1935 1851 2093 1935 1851 2093 1667 1846 2088 1933 1848 2090 1604 1829 2071 1669 1876 2118 1934 1830 2072 1934 1830 2072 1669 1876 2118 1936 1878 2120 1540 1850 2092 1636 1852 2094 1935 1851 2093 1935 1851 2093 1636 1852 2094 1937 1855 2097 1542 1874 2116 1640 1879 2121 1938 1875 2117 1938 1875 2117 1640 1879 2121 1936 1878 2120 1598 1859 2101 1660 1856 2098 1939 1854 2096 1939 1854 2096 1660 1856 2098 1937 1855 2097 1526 1877 2119 1663 1870 2112 1938 1875 2117 1938 1875 2117 1663 1870 2112 1940 1872 2114 1541 1853 2095 1637 1861 2103 1939 1854 2096 1939 1854 2096 1637 1861 2103 1941 1860 2102 1544 1868 2110 1639 1873 2115 1942 1869 2111 1942 1869 2111 1639 1873 2115 1940 1872 2114 1525 1865 2107 1661 1858 2100 1943 1863 2105 1943 1863 2105 1661 1858 2100 1941 1860 2102 1602 1871 2113 1668 1864 2106 1942 1869 2111 1942 1869 2111 1668 1864 2106 1944 1866 2108 1543 1862 2104 1638 1867 2109 1943 1863 2105 1943 1863 2105 1638 1867 2109 1944 1866 2108 651 570 1332 1945 675 1416 2087 571 1333 2087 571 1333 1945 675 1416 2086 2250 2205 374 512 1308 393 653 1394 1964 507 1303 1964 507 1303 393 653 1394 1945 675 1416 2086 2250 2205 1945 675 1416 2107 723 1448 2107 723 1448 1945 675 1416 393 653 1394 401 620 1368 521 619 1367 1949 771 1466 1949 771 1466 521 619 1367 1948 772 1467 660 630 1378 1950 770 1465 579 623 1371 579 623 1371 1950 770 1465 1949 771 1466 402 628 1376 524 626 1374 1951 769 1464 1951 769 1464 524 626 1374 1950 770 1465 577 664 1405 1952 767 1462 578 631 1379 578 631 1379 1952 767 1462 1951 769 1464 577 664 1405 2094 700 1429 1952 767 1462 1952 767 1462 2094 700 1429 2096 768 1463 584 693 281 1954 765 1000 419 742 977 419 742 977 1954 765 1000 1955 764 999 659 556 239 1957 762 997 575 553 236 575 553 236 1957 762 997 1956 763 998 527 634 248 1957 762 997 404 636 250 404 636 250 1957 762 997 1958 761 996 658 569 245 1959 760 995 574 558 241 574 558 241 1959 760 995 1958 761 996 530 641 255 1959 760 995 407 643 257 407 643 257 1959 760 995 1960 759 994 573 568 244 657 672 268 1960 759 994 1960 759 994 657 672 268 1961 758 993 412 649 263 533 647 261 1962 757 992 1962 757 992 533 647 261 1961 758 993 671 732 309 1947 734 311 571 755 990 571 755 990 1947 734 311 1963 756 991 1470 1708 2010 1481 1719 2021 431 800 1489 431 800 1489 1481 1719 2021 347 801 1490 1459 1697 1999 1470 1708 2010 348 798 1487 348 798 1487 1470 1708 2010 431 800 1489 1448 1686 1988 1459 1697 1999 432 797 1486 432 797 1486 1459 1697 1999 348 798 1487 1437 1675 1977 1448 1686 1988 349 794 1483 349 794 1483 1448 1686 1988 432 797 1486 351 803 1492 347 801 1490 1491 1727 2029 1491 1727 2029 347 801 1490 1481 1719 2021 430 806 1495 351 803 1492 1497 1735 2037 1497 1735 2037 351 803 1492 1491 1727 2029 430 806 1495 1903 1756 2058 435 438 1234 435 438 1234 1903 1756 2058 1986 1021 1710 435 438 1234 1986 1021 1710 88 375 1186 88 375 1186 1986 1021 1710 320 1020 1709 433 793 1482 1426 1664 1966 349 794 1483 349 794 1483 1426 1664 1966 1437 1675 1977 2049 2252 2207 1973 1589 1891 2048 2251 2206 2048 2251 2206 1973 1589 1891 1972 1588 1890 350 790 1479 434 436 1232 1902 1640 1942 1902 1640 1942 434 436 1232 1974 1641 1943 2047 2253 2208 2048 2251 2206 1975 1602 1904 1975 1602 1904 2048 2251 2206 1972 1588 1890 2046 2254 2209 2047 2253 2208 1976 1615 1917 1976 1615 1917 2047 2253 2208 1975 1602 1904 2046 2254 2209 1976 1615 1917 2045 2255 2210 2045 2255 2210 1976 1615 1917 1977 1628 1930 2044 1653 1955 2045 2255 2210 1974 1641 1943 1974 1641 1943 2045 2255 2210 1977 1628 1930 684 410 1214 2026 413 1217 606 781 1473 606 781 1473 2026 413 1217 2027 423 2211 310 111 904 1978 113 906 2024 409 1213 2024 409 1213 1978 113 906 2025 412 1216 858 976 1665 4 371 1182 867 985 1674 867 985 1674 4 371 1182 84 373 1184 858 976 1665 845 964 1653 4 371 1182 4 371 1182 845 964 1653 0 369 1180 721 832 1521 1331 831 1520 1979 835 1524 1979 835 1524 1331 831 1520 1980 836 1525 3 360 1171 87 359 1170 774 2256 2212 774 2256 2212 87 359 1170 1981 892 1581 735 2257 2213 1982 850 1539 722 834 1523 722 834 1523 1982 850 1539 1979 835 1524 748 2258 2214 1983 864 1553 735 2257 2213 735 2257 2213 1983 864 1553 1982 850 1539 761 2259 2215 1984 878 1567 748 2258 2214 748 2258 2214 1984 878 1567 1983 864 1553 774 2256 2212 1981 892 1581 761 2259 2215 761 2259 2215 1981 892 1581 1984 878 1567 810 928 1617 798 916 1605 1 365 1176 1 365 1176 798 916 1605 86 364 1175 1 365 1176 85 367 1178 810 928 1617 810 928 1617 85 367 1178 822 940 1629 822 940 1629 85 367 1178 834 952 1641 834 952 1641 85 367 1178 0 369 1180 845 964 1653 834 952 1641 0 369 1180 88 375 1186 320 1020 1709 2015 2260 2216 2015 2260 2216 84 373 1184 88 375 1186 1514 1754 2056 1315 1538 1857 1904 1755 2057 1904 1755 2057 1315 1538 1857 1985 1019 1708 1337 1017 1706 1985 1019 1708 897 1018 1707 897 1018 1707 1985 1019 1708 1315 1538 1857 243 1 26 1987 2261 2217 90 2 28 90 2 28 1987 2261 2217 1988 2262 2218 91 4 30 1989 2263 2219 243 1 26 243 1 26 1989 2263 2219 1987 2261 2217 244 7 35 1990 2264 2220 91 4 30 91 4 30 1990 2264 2220 1989 2263 2219 299 8 36 1991 2265 2221 244 7 35 244 7 35 1991 2265 2221 1990 2264 2220 164 179 1042 163 178 1041 1993 2267 2223 1993 2267 2223 163 178 1041 1992 2266 2222 266 181 1045 165 180 1043 1995 2269 2225 1995 2269 2225 165 180 1043 1994 2268 2224 163 178 1041 266 181 1045 1992 2266 2222 1992 2266 2222 266 181 1045 1995 2269 2225 90 2 28 1988 2262 2218 288 184 1048 288 184 1048 1988 2262 2218 1996 2270 2226 167 186 1050 164 179 1042 1997 2271 2227 1997 2271 2227 164 179 1042 1993 2267 2223 288 184 1048 1996 2270 2226 324 333 1144 324 333 1144 1996 2270 2226 1998 2272 2228 315 351 1162 167 186 1050 1999 2273 2229 1999 2273 2229 167 186 1050 1997 2271 2227 324 333 1144 1998 2272 2228 165 180 1043 165 180 1043 1998 2272 2228 1994 2268 2224 1991 2265 2221 299 8 36 2018 2274 2230 2018 2274 2230 299 8 36 2017 378 1189 315 351 1162 1999 2273 2229 690 432 1228 690 432 1228 1999 2273 2229 2001 2275 2231 622 442 1238 437 441 1237 2003 2277 2233 2003 2277 2233 437 441 1237 2002 2276 2232 438 443 1239 622 442 1238 2004 2278 2234 2004 2278 2234 622 442 1238 2003 2277 2233 623 446 1242 438 443 1239 2005 2279 2235 2005 2279 2235 438 443 1239 2004 2278 2234 623 446 1242 2005 2279 2235 440 447 1243 440 447 1243 2005 2279 2235 2006 2280 2236 520 617 1365 2007 2281 2237 519 618 1366 519 618 1366 2007 2281 2237 2008 2282 2238 645 622 1370 2009 2283 2239 521 619 1367 521 619 1367 2009 2283 2239 2010 2284 2240 519 618 1366 2008 2282 2238 645 622 1370 645 622 1370 2008 2282 2238 2009 2283 2239 437 441 1237 661 624 1372 2002 2276 2232 2002 2276 2232 661 624 1372 2011 2285 2241 523 625 1373 2012 2286 2242 520 617 1365 520 617 1365 2012 2286 2242 2007 2281 2237 661 624 1372 1948 772 1467 2011 2285 2241 2011 2285 2241 1948 772 1467 2013 2287 2243 440 447 1243 2006 2280 2236 672 774 1469 672 774 1469 2006 2280 2236 2000 2288 2244 690 432 1228 2001 2275 2231 523 625 1373 523 625 1373 2001 2275 2231 2012 2286 2242 1948 772 1467 521 619 1367 2013 2287 2243 2013 2287 2243 521 619 1367 2010 2284 2240 1988 2262 2218 1987 2261 2217 2014 2289 2245 1987 2261 2217 1989 2263 2219 2014 2289 2245 1989 2263 2219 1990 2264 2220 2014 2289 2245 1990 2264 2220 1991 2265 2221 2014 2289 2245 1993 2267 2223 1992 2266 2222 2014 2289 2245 1995 2269 2225 1994 2268 2224 2014 2289 2245 1992 2266 2222 1995 2269 2225 2014 2289 2245 1996 2270 2226 1988 2262 2218 2014 2289 2245 1997 2271 2227 1993 2267 2223 2014 2289 2245 1998 2272 2228 1996 2270 2226 2014 2289 2245 1999 2273 2229 1997 2271 2227 2014 2289 2245 1994 2268 2224 1998 2272 2228 2014 2289 2245 1991 2265 2221 2018 2274 2230 2014 2289 2245 2018 2274 2230 2000 2288 2244 2014 2289 2245 2001 2275 2231 1999 2273 2229 2014 2289 2245 2003 2277 2233 2002 2276 2232 2014 2289 2245 2004 2278 2234 2003 2277 2233 2014 2289 2245 2005 2279 2235 2004 2278 2234 2014 2289 2245 2006 2280 2236 2005 2279 2235 2014 2289 2245 2008 2282 2238 2007 2281 2237 2014 2289 2245 2010 2284 2240 2009 2283 2239 2014 2289 2245 2009 2283 2239 2008 2282 2238 2014 2289 2245 2002 2276 2232 2011 2285 2241 2014 2289 2245 2007 2281 2237 2012 2286 2242 2014 2289 2245 2011 2285 2241 2013 2287 2243 2014 2289 2245 2000 2288 2244 2006 2280 2236 2014 2289 2245 2012 2286 2242 2001 2275 2231 2014 2289 2245 2013 2287 2243 2010 2284 2240 2014 2289 2245 320 1020 1709 884 1002 1691 2015 2260 2216 2015 2260 2216 884 1002 1691 877 995 1684 867 985 1674 84 373 1184 877 995 1684 877 995 1684 84 373 1184 2015 2260 2216 1497 1735 2037 1503 1741 2043 1903 1756 2058 2000 2288 2244 2018 2274 2230 672 774 1469 672 774 1469 2018 2274 2230 2017 378 1189 228 88 77 2020 406 151 308 85 74 308 85 74 2020 406 151 2019 402 150 673 775 1470 590 773 1468 2021 379 1190 2021 379 1190 590 773 1468 2022 377 1188 590 773 1468 672 774 1469 2022 377 1188 2022 377 1188 672 774 1469 2017 378 1189 591 776 1471 673 775 1470 2023 380 1191 2023 380 1191 673 775 1470 2021 379 1190 591 776 1471 2023 380 1191 683 780 1472 683 780 1472 2023 380 1191 2024 409 1213 683 780 1472 2024 409 1213 604 411 1215 604 411 1215 2024 409 1213 2025 412 1216 1978 113 906 142 124 914 2025 412 1216 2025 412 1216 142 124 914 2026 413 1217 142 124 914 229 126 916 2026 413 1217 2026 413 1217 229 126 916 2027 423 2211 606 781 228 2027 423 153 687 782 229 687 782 229 2027 423 153 2028 422 152 687 782 229 2028 422 152 607 783 230 607 783 230 2028 422 152 2029 424 154 607 783 230 2029 424 154 688 784 231 688 784 231 2029 424 154 2030 425 155 688 784 231 2030 425 155 603 778 224 603 778 224 2030 425 155 2031 408 147 682 779 225 603 778 224 2032 407 146 2032 407 146 603 778 224 2031 408 147 601 777 222 682 779 225 2033 403 145 2033 403 145 682 779 225 2032 407 146 601 777 222 2033 403 145 681 405 223 681 405 223 2033 403 145 2019 402 2263 2020 406 151 228 88 77 2016 420 160 2016 420 160 228 88 77 312 154 107 41 140 103 2034 414 156 312 154 107 312 154 107 2034 414 156 2016 420 160 311 135 100 2035 415 157 41 140 103 41 140 103 2035 415 157 2034 414 156 311 135 921 29 77 897 2035 415 1218 2035 415 1218 29 77 897 2036 394 1205 307 76 896 2037 395 1206 29 77 897 29 77 897 2037 395 1206 2036 394 1205 227 79 899 2038 398 1209 307 76 896 307 76 896 2038 398 1209 2037 395 1206 227 79 899 45 81 901 2038 398 1209 2038 398 1209 45 81 901 2039 400 1211 45 81 901 162 353 1164 2039 400 1211 2039 400 1211 162 353 1164 2040 428 1224 162 353 1164 79 355 1166 2040 428 1224 2040 428 1224 79 355 1166 2041 430 1226 233 358 1169 2042 433 1229 79 355 1166 79 355 1166 2042 433 1229 2041 430 1226 3 360 1171 2043 435 1231 233 358 1169 233 358 1169 2043 435 1231 2042 433 1229 774 2256 2212 2044 1653 1955 3 360 1171 3 360 1171 2044 1653 1955 2043 435 1231 761 2259 2215 2045 2255 2210 774 2256 2212 774 2256 2212 2045 2255 2210 2044 1653 1955 761 2259 2215 748 2258 2214 2045 2255 2210 2045 2255 2210 748 2258 2214 2046 2254 2209 748 2258 2214 735 2257 2213 2046 2254 2209 2046 2254 2209 735 2257 2213 2047 2253 2208 735 2257 2213 722 834 1523 2047 2253 2208 2047 2253 2208 722 834 1523 2048 2251 2206 722 834 1523 708 833 1522 2048 2251 2206 2048 2251 2206 708 833 1522 2049 2252 2207 907 1029 1718 2049 2252 2207 708 833 1522 1973 1589 1891 2049 2252 2207 907 1029 1718 907 1029 1718 1980 836 1525 1331 831 1520 2051 291 122 2065 133 1002 2050 292 123 2050 292 123 2065 133 1002 2064 288 1003 322 296 127 2067 376 1004 282 294 125 282 294 125 2067 376 1004 2066 134 1005 282 294 125 2066 134 1005 2051 291 122 2051 291 122 2066 134 1005 2065 133 1002 185 244 52 278 242 50 2068 245 1007 2068 245 1007 278 242 50 2069 237 1006 184 241 49 279 251 56 2070 238 1009 2070 238 1009 279 251 56 2071 246 1008 278 242 50 184 241 49 2069 237 1006 2069 237 1006 184 241 49 2070 238 1009 2052 263 64 185 244 52 2072 261 1010 2072 261 1010 185 244 52 2068 245 1007 2050 292 123 2064 288 1003 186 250 55 186 250 55 2064 288 1003 2073 247 1011 279 251 56 186 250 55 2071 246 1008 2071 246 1008 186 250 55 2073 247 1011 280 257 1103 2075 252 1099 187 259 1104 187 259 1104 2075 252 1099 2074 260 1105 2054 327 235 2077 328 1014 2053 256 59 2053 256 59 2077 328 1014 2076 253 1015 2053 256 59 2076 253 1015 280 257 60 280 257 60 2076 253 1015 2075 252 2276 187 259 1104 2074 260 1105 2055 266 1109 2055 266 1109 2074 260 1105 2078 264 1107 2054 327 235 2052 263 64 2077 328 1014 2077 328 1014 2052 263 64 2072 261 1010 2055 266 1109 2078 264 1107 188 268 1111 188 268 1111 2078 264 1107 2079 269 1112 188 268 1111 2079 269 1112 2056 272 1115 2056 272 1115 2079 269 1112 2080 270 1113 189 274 1117 2056 272 1115 2081 275 1118 2081 275 1118 2056 272 1115 2080 270 1113 2057 287 1128 189 274 1117 2082 285 1126 2082 285 1126 189 274 1117 2081 275 1118 191 283 88 281 281 2271 2083 284 1022 2083 284 1022 281 281 2271 2084 276 1021 190 280 1123 2057 287 1128 2085 277 1120 2085 277 1120 2057 287 1128 2082 285 1126 281 281 1124 190 280 1123 2084 276 1119 2084 276 1119 190 280 1123 2085 277 1120 322 296 127 191 283 88 2067 376 1004 2067 376 1004 191 283 88 2083 284 1022 1946 735 970 656 733 310 2086 2250 1025 2086 2250 1025 656 733 310 2087 571 1024 2058 731 308 2059 730 307 2088 572 1027 2088 572 1027 2059 730 307 2089 727 1026 656 733 310 2058 731 308 2087 571 1024 2087 571 1024 2058 731 308 2088 572 1027 554 681 274 2091 676 1028 653 689 279 653 689 279 2091 676 1028 2090 686 1029 555 683 276 2093 684 1030 652 680 273 652 680 273 2093 684 1030 2092 677 1031 652 680 273 2092 677 1031 554 681 274 554 681 274 2092 677 1031 2091 676 1028 2060 702 288 2094 700 1032 555 683 276 555 683 276 2094 700 1032 2093 684 1030 2059 730 307 556 690 280 2089 727 1026 2089 727 1026 556 690 280 2095 685 1033 653 689 279 2090 686 1029 556 690 280 556 690 280 2090 686 1029 2095 685 1033 1953 766 1001 557 696 284 2096 768 1035 2096 768 1035 557 696 284 2097 691 1034 654 695 1427 558 698 1426 2098 692 1423 2098 692 1423 558 698 1426 2099 699 1428 557 696 284 654 695 2270 2097 691 1034 2097 691 1034 654 695 2270 2098 692 1037 558 698 1426 2061 705 1432 2099 699 1428 2099 699 1428 2061 705 1432 2100 703 1430 1953 766 1001 2096 768 1035 2060 702 288 2060 702 288 2096 768 1035 2094 700 1032 2061 705 1432 559 707 1434 2100 703 1430 2100 703 1430 559 707 1434 2101 708 1435 559 707 1434 2062 711 1438 2101 708 1435 2101 708 1435 2062 711 1438 2102 709 1436 560 713 1440 2103 714 1441 2062 711 1438 2062 711 1438 2103 714 1441 2102 709 1436 2063 726 1451 2104 724 1449 560 713 1440 560 713 1440 2104 724 1449 2103 714 1441 561 720 1447 2105 715 1442 2063 726 1451 2063 726 1451 2105 715 1442 2104 724 1449 562 722 302 2107 723 1044 655 719 299 655 719 299 2107 723 1044 2106 716 2266 655 719 1446 2106 716 1443 561 720 1447 561 720 1447 2106 716 1443 2105 715 1442 1946 735 970 2086 2250 1025 562 722 302 562 722 302 2086 2250 1025 2107 723 1044 1686 2081 751 1687 2006 621 1807 2005 620 1117 1276 374 1237 1275 373 1151 1277 375

-
-
-
-
- - - - 0 0 1 0 - 0 1 0 0 - 1 0 0 0 - - - - - - - - - - - - 400.113 463.264 -431.078 - 0 0 1 0 - 0 1 0 -223.2 - 1 0 0 -38.4 - - - - 148.654 183.672 -292.179 - 0 0 1 -12.8709 - 0 1 0 -191.679 - 1 0 0 -45.6358 - - - - - - - -
diff --git a/examples/models/gltf/duck/glTF-MaterialsCommon/duck.bin b/examples/models/gltf/duck/glTF-MaterialsCommon/duck.bin new file mode 100644 index 0000000000000000000000000000000000000000..c5fa1b8fe9684387e0150cd1a3fd50e90d3a4c72 Binary files /dev/null and b/examples/models/gltf/duck/glTF-MaterialsCommon/duck.bin differ diff --git a/examples/models/gltf/duck/glTF-MaterialsCommon/duck.gltf b/examples/models/gltf/duck/glTF-MaterialsCommon/duck.gltf new file mode 100644 index 0000000000000000000000000000000000000000..ba8d60735c27b1253206bd62506beb771d4f3dcb --- /dev/null +++ b/examples/models/gltf/duck/glTF-MaterialsCommon/duck.gltf @@ -0,0 +1,291 @@ +{ + "accessors": { + "accessor_21": { + "bufferView": "bufferView_29", + "byteOffset": 0, + "byteStride": 0, + "componentType": 5123, + "count": 12636, + "type": "SCALAR" + }, + "accessor_23": { + "bufferView": "bufferView_30", + "byteOffset": 0, + "byteStride": 12, + "componentType": 5126, + "count": 2399, + "max": [ + 0.961799, + 1.6397, + 0.539252 + ], + "min": [ + -0.692985, + 0.0992937, + -0.613282 + ], + "type": "VEC3" + }, + "accessor_25": { + "bufferView": "bufferView_30", + "byteOffset": 28788, + "byteStride": 12, + "componentType": 5126, + "count": 2399, + "max": [ + 0.999599, + 0.999581, + 0.998436 + ], + "min": [ + -0.999084, + -1, + -0.999832 + ], + "type": "VEC3" + }, + "accessor_27": { + "bufferView": "bufferView_30", + "byteOffset": 57576, + "byteStride": 8, + "componentType": 5126, + "count": 2399, + "max": [ + 0.983346, + 0.980037 + ], + "min": [ + 0.026409, + 0.019963 + ], + "type": "VEC2" + } + }, + "animations": {}, + "asset": { + "generator": "collada2gltf@cf6371beb0bdc18ba603378d5e40c966da53d385", + "premultipliedAlpha": true, + "profile": { + "api": "WebGL", + "version": "1.0.2" + }, + "version": "1.0" + }, + "bufferViews": { + "bufferView_29": { + "buffer": "duck", + "byteLength": 25272, + "byteOffset": 0, + "target": 34963 + }, + "bufferView_30": { + "buffer": "duck", + "byteLength": 76768, + "byteOffset": 25272, + "target": 34962 + } + }, + "buffers": { + "duck": { + "byteLength": 102040, + "type": "arraybuffer", + "uri": "duck.bin" + } + }, + "cameras": { + "cameraShape1": { + "name": "cameraShape1", + "perspective": { + "aspect_ratio": 1.5, + "yfov": 0.660593, + "zfar": 100, + "znear": 0.01 + }, + "type": "perspective" + } + }, + "extensions": { + "KHR_materials_common": { + "lights": { + "directionalLightShape1-lib": { + "directional": { + "color": [ + 1, + 1, + 1 + ] + }, + "name": "directionalLightShape1", + "type": "directional" + } + } + } + }, + "extensionsUsed": [ + "KHR_materials_common" + ], + "images": { + "file2": { + "name": "file2", + "uri": "duckCM.png" + } + }, + "materials": { + "blinn3-fx": { + "extensions": { + "KHR_materials_common": { + "doubleSided": false, + "jointCount": 0, + "technique": "BLINN", + "transparent": false, + "values": { + "ambient": [ + 0, + 0, + 0, + 1 + ], + "diffuse": "texture_file2", + "emission": [ + 0, + 0, + 0, + 1 + ], + "shininess": 38.4, + "specular": [ + 0, + 0, + 0, + 1 + ] + } + } + }, + "name": "blinn3" + } + }, + "meshes": { + "LOD3spShape-lib": { + "name": "LOD3spShape", + "primitives": [ + { + "attributes": { + "NORMAL": "accessor_25", + "POSITION": "accessor_23", + "TEXCOORD_0": "accessor_27" + }, + "indices": "accessor_21", + "material": "blinn3-fx", + "mode": 4 + } + ] + } + }, + "nodes": { + "LOD3sp": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ], + "meshes": [ + "LOD3spShape-lib" + ], + "name": "LOD3sp" + }, + "camera1": { + "camera": "cameraShape1", + "children": [], + "matrix": [ + -0.728969, + 0, + -0.684547, + 0, + -0.425205, + 0.783693, + 0.452797, + 0, + 0.536475, + 0.621148, + -0.571288, + 0, + 4.00113, + 4.63264, + -4.31078, + 1 + ], + "name": "camera1" + }, + "directionalLight1": { + "children": [], + "extensions": { + "KHR_materials_common": { + "light": "directionalLightShape1-lib" + } + }, + "matrix": [ + -0.954692, + 0.218143, + -0.202429, + 0, + 0.014672, + 0.713885, + 0.700109, + 0, + 0.297235, + 0.665418, + -0.684741, + 0, + 1.48654, + 1.83672, + -2.92179, + 1 + ], + "name": "directionalLight1" + } + }, + "samplers": { + "sampler_0": { + "magFilter": 9729, + "minFilter": 9987, + "wrapS": 10497, + "wrapT": 10497 + } + }, + "scene": "defaultScene", + "scenes": { + "defaultScene": { + "nodes": [ + "LOD3sp", + "camera1", + "directionalLight1" + ] + } + }, + "skins": {}, + "textures": { + "texture_file2": { + "format": 6408, + "internalFormat": 6408, + "sampler": "sampler_0", + "source": "file2", + "target": 3553, + "type": 5121 + } + } +} \ No newline at end of file diff --git a/examples/models/gltf/duck/duckCM.png b/examples/models/gltf/duck/glTF-MaterialsCommon/duckCM.png old mode 100755 new mode 100644 similarity index 100% rename from examples/models/gltf/duck/duckCM.png rename to examples/models/gltf/duck/glTF-MaterialsCommon/duckCM.png diff --git a/examples/models/gltf/duck/glTF/duck.bin b/examples/models/gltf/duck/glTF/duck.bin new file mode 100644 index 0000000000000000000000000000000000000000..c5fa1b8fe9684387e0150cd1a3fd50e90d3a4c72 Binary files /dev/null and b/examples/models/gltf/duck/glTF/duck.bin differ diff --git a/examples/models/gltf/duck/duck.json b/examples/models/gltf/duck/glTF/duck.gltf old mode 100755 new mode 100644 similarity index 53% rename from examples/models/gltf/duck/duck.json rename to examples/models/gltf/duck/glTF/duck.gltf index 6aa4f609fa7e725cd2a59b7be5ad596636819883..575a995c1f9121dd4dfbaf53c1b5d3ea85e2018f --- a/examples/models/gltf/duck/duck.json +++ b/examples/models/gltf/duck/glTF/duck.gltf @@ -1,26 +1,36 @@ { "accessors": { - "attribute_23": { + "accessor_21": { "bufferView": "bufferView_29", "byteOffset": 0, + "byteStride": 0, + "componentType": 5123, + "count": 12636, + "type": "SCALAR" + }, + "accessor_23": { + "bufferView": "bufferView_30", + "byteOffset": 0, "byteStride": 12, + "componentType": 5126, "count": 2399, "max": [ - 96.1799, - 163.97, - 53.9252 + 0.961799, + 1.6397, + 0.539252 ], "min": [ - -69.2985, - 9.92937, - -61.3282 + -0.692985, + 0.0992937, + -0.613282 ], - "type": 35665 + "type": "VEC3" }, - "attribute_25": { - "bufferView": "bufferView_29", + "accessor_25": { + "bufferView": "bufferView_30", "byteOffset": 28788, "byteStride": 12, + "componentType": 5126, "count": 2399, "max": [ 0.999599, @@ -32,12 +42,13 @@ -1, -0.999832 ], - "type": 35665 + "type": "VEC3" }, - "attribute_27": { - "bufferView": "bufferView_29", + "accessor_27": { + "bufferView": "bufferView_30", "byteOffset": 57576, "byteStride": 8, + "componentType": 5126, "count": 2399, "max": [ 0.983346, @@ -47,101 +58,84 @@ 0.026409, 0.019963 ], - "type": 35664 - }, - "indices_21": { - "bufferView": "bufferView_30", - "byteOffset": 0, - "count": 12636, - "type": 5123 + "type": "VEC2" } }, "animations": {}, "asset": { - "generator": "collada2gltf@75061f683116dc0ffdad48f33c226e933132e98c" + "generator": "collada2gltf@ceec062e3d5793f2f249f53cbd843aee382ad40b", + "premultipliedAlpha": true, + "profile": { + "api": "WebGL", + "version": "1.0.2" + }, + "version": 1 }, "bufferViews": { "bufferView_29": { - "buffer": "duck", - "byteLength": 76768, - "byteOffset": 0, - "target": 34962 - }, - "bufferView_30": { "buffer": "duck", "byteLength": 25272, - "byteOffset": 76768, + "byteOffset": 0, "target": 34963 }, - "bufferView_31": { + "bufferView_30": { "buffer": "duck", - "byteLength": 0, - "byteOffset": 102040 + "byteLength": 76768, + "byteOffset": 25272, + "target": 34962 } }, "buffers": { "duck": { "byteLength": 102040, - "path": "duck.bin", - "type": "arraybuffer" + "type": "arraybuffer", + "uri": "duck.bin" } }, "cameras": { - "camera_0": { + "cameraShape1": { + "name": "cameraShape1", "perspective": { "aspect_ratio": 1.5, - "yfov": 37.8492, - "zfar": 10000, - "znear": 1 + "yfov": 0.660593, + "zfar": 100, + "znear": 0.01 }, "type": "perspective" } }, "images": { - "image_0": { - "path": "duckCM.png" - } - }, - "lights": { - "directionalLightShape1-lib": { - "directional": { - "color": [ - 1, - 1, - 1 - ] - }, - "type": "directional" + "file2": { + "name": "file2", + "uri": "duckCM.png" } }, "materials": { "blinn3-fx": { - "instanceTechnique": { - "technique": "technique1", - "values": { - "ambient": [ - 0, - 0, - 0, - 1 - ], - "diffuse": "texture_image_0", - "emission": [ - 0, - 0, - 0, - 1 - ], - "shininess": 38.4, - "specular": [ - 0, - 0, - 0, - 1 - ] - } - }, - "name": "blinn3" + "name": "blinn3", + "technique": "technique0", + "values": { + "ambient": [ + 0, + 0, + 0, + 1 + ], + "diffuse": "texture_file2", + "emission": [ + 0, + 0, + 0, + 1 + ], + "shininess": 38.4, + "specular": [ + 0, + 0, + 0, + 1 + ] + } } }, "meshes": { @@ -150,13 +144,13 @@ "primitives": [ { "attributes": { - "NORMAL": "attribute_25", - "POSITION": "attribute_23", - "TEXCOORD_0": "attribute_27" + "NORMAL": "accessor_25", + "POSITION": "accessor_23", + "TEXCOORD_0": "accessor_27" }, - "indices": "indices_21", + "indices": "accessor_21", "material": "blinn3-fx", - "primitive": 4 + "mode": 4 } ] } @@ -188,7 +182,7 @@ "name": "LOD3sp" }, "camera1": { - "camera": "camera_0", + "camera": "cameraShape1", "children": [], "matrix": [ -0.728969, @@ -203,22 +197,21 @@ 0.621148, -0.571288, 0, - 400.113, - 463.264, - -431.078, + 4.00113, + 4.63264, + -4.31078, 1 ], "name": "camera1" }, "directionalLight1": { "children": [], - "light": "directionalLightShape1-lib", "matrix": [ -0.954692, 0.218143, - -0.202428, + -0.202429, 0, - 0.0146721, + 0.014672, 0.713885, 0.700109, 0, @@ -226,15 +219,14 @@ 0.665418, -0.684741, 0, - 148.654, - 183.672, - -292.179, + 1.48654, + 1.83672, + -2.92179, 1 ], "name": "directionalLight1" } }, - "profile": "WebGL 1.0.2", "programs": { "program_0": { "attributes": [ @@ -266,15 +258,22 @@ }, "shaders": { "duck0FS": { - "path": "duck0FS.glsl" + "type": 35632, + "uri": "duck0FS.glsl" }, "duck0VS": { - "path": "duck0VS.glsl" + "type": 35633, + "uri": "duck0VS.glsl" } }, "skins": {}, "techniques": { - "technique1": { + "technique0": { + "attributes": { + "a_normal": "normal", + "a_position": "position", + "a_texcoord0": "texcoord0" + }, "parameters": { "ambient": { "type": 35666 @@ -294,7 +293,8 @@ ] }, "light0Transform": { - "source": "directionalLight1", + "node": "directionalLight1", + "semantic": "MODELVIEW", "type": 35676 }, "modelViewMatrix": { @@ -328,70 +328,35 @@ "type": 35664 } }, - "pass": "defaultPass", - "passes": { - "defaultPass": { - "details": { - "commonProfile": { - "extras": { - "doubleSided": false - }, - "lightingModel": "Blinn", - "parameters": [ - "ambient", - "diffuse", - "emission", - "light0Color", - "light0Transform", - "modelViewMatrix", - "normalMatrix", - "projectionMatrix", - "shininess", - "specular" - ], - "texcoordBindings": { - "diffuse": "TEXCOORD_0" - } - }, - "type": "COLLADA-1.4.1/commonProfile" - }, - "instanceProgram": { - "attributes": { - "a_normal": "normal", - "a_position": "position", - "a_texcoord0": "texcoord0" - }, - "program": "program_0", - "uniforms": { - "u_ambient": "ambient", - "u_diffuse": "diffuse", - "u_emission": "emission", - "u_light0Color": "light0Color", - "u_light0Transform": "light0Transform", - "u_modelViewMatrix": "modelViewMatrix", - "u_normalMatrix": "normalMatrix", - "u_projectionMatrix": "projectionMatrix", - "u_shininess": "shininess", - "u_specular": "specular" - } - }, - "states": { - "blendEnable": 0, - "cullFaceEnable": 1, - "depthMask": 1, - "depthTestEnable": 1 - } - } + "program": "program_0", + "states": { + "enable": [ + 2929, + 2884 + ] + }, + "uniforms": { + "u_ambient": "ambient", + "u_diffuse": "diffuse", + "u_emission": "emission", + "u_light0Color": "light0Color", + "u_light0Transform": "light0Transform", + "u_modelViewMatrix": "modelViewMatrix", + "u_normalMatrix": "normalMatrix", + "u_projectionMatrix": "projectionMatrix", + "u_shininess": "shininess", + "u_specular": "specular" } } }, "textures": { - "texture_image_0": { + "texture_file2": { "format": 6408, "internalFormat": 6408, "sampler": "sampler_0", - "source": "image_0", - "target": 3553 + "source": "file2", + "target": 3553, + "type": 5121 } } } \ No newline at end of file diff --git a/examples/models/gltf/duck/duck0FS.glsl b/examples/models/gltf/duck/glTF/duck0FS.glsl similarity index 75% rename from examples/models/gltf/duck/duck0FS.glsl rename to examples/models/gltf/duck/glTF/duck0FS.glsl index ff2174248c2cfdf0c7746eed7c5a04dd0a33b652..1a883e6cca2a4025f7e076d0806a31c6aa69cd14 100644 --- a/examples/models/gltf/duck/duck0FS.glsl +++ b/examples/models/gltf/duck/glTF/duck0FS.glsl @@ -1,13 +1,14 @@ precision highp float; varying vec3 v_normal; -uniform vec3 u_light0Color; -varying vec3 v_light0Direction; -uniform float u_shininess; uniform vec4 u_ambient; varying vec2 v_texcoord0; uniform sampler2D u_diffuse; uniform vec4 u_emission; uniform vec4 u_specular; +uniform float u_shininess; +varying vec3 v_light0Direction; +varying vec3 v_position; +uniform vec3 u_light0Color; void main(void) { vec3 normal = normalize(v_normal); vec4 color = vec4(0., 0., 0., 0.); @@ -16,21 +17,21 @@ vec3 diffuseLight = vec3(0., 0., 0.); vec4 emission; vec4 ambient; vec4 specular; +ambient = u_ambient; +diffuse = texture2D(u_diffuse, v_texcoord0); +emission = u_emission; +specular = u_specular; vec3 specularLight = vec3(0., 0., 0.); { -float diffuseIntensity; -float specularIntensity; +float specularIntensity = 0.; +float attenuation = 1.0; vec3 l = normalize(v_light0Direction); -vec3 h = normalize(l+vec3(0.,0.,1.)); -diffuseIntensity = max(dot(normal,l), 0.); -specularIntensity = pow(max(0.0,dot(normal,h)),u_shininess); +vec3 viewDir = -normalize(v_position); +vec3 h = normalize(l+viewDir); +specularIntensity = max(0., pow(max(dot(normal,h), 0.) , u_shininess)) * attenuation; specularLight += u_light0Color * specularIntensity; -diffuseLight += u_light0Color * diffuseIntensity; +diffuseLight += u_light0Color * max(dot(normal,l), 0.) * attenuation; } -ambient = u_ambient; -diffuse = texture2D(u_diffuse, v_texcoord0); -emission = u_emission; -specular = u_specular; specular.xyz *= specularLight; color.xyz += specular.xyz; diffuse.xyz *= diffuseLight; diff --git a/examples/models/gltf/duck/duck0VS.glsl b/examples/models/gltf/duck/glTF/duck0VS.glsl similarity index 75% rename from examples/models/gltf/duck/duck0VS.glsl rename to examples/models/gltf/duck/glTF/duck0VS.glsl index 841843f23cfdabf9dc6d507886bc24a8167e5c20..defe48108fdbc9717e2a16743cc331b220582cfe 100644 --- a/examples/models/gltf/duck/duck0VS.glsl +++ b/examples/models/gltf/duck/glTF/duck0VS.glsl @@ -5,14 +5,16 @@ varying vec3 v_normal; uniform mat3 u_normalMatrix; uniform mat4 u_modelViewMatrix; uniform mat4 u_projectionMatrix; -uniform mat4 u_light0Transform; -varying vec3 v_light0Direction; attribute vec2 a_texcoord0; varying vec2 v_texcoord0; +varying vec3 v_light0Direction; +varying vec3 v_position; +uniform mat4 u_light0Transform; void main(void) { vec4 pos = u_modelViewMatrix * vec4(a_position,1.0); -v_normal = normalize(u_normalMatrix * a_normal); -v_light0Direction = normalize(mat3(u_light0Transform) * vec3(0.,0.,1.)); +v_normal = u_normalMatrix * a_normal; v_texcoord0 = a_texcoord0; +v_position = pos.xyz; +v_light0Direction = mat3(u_light0Transform) * vec3(0.,0.,1.); gl_Position = u_projectionMatrix * pos; } diff --git a/examples/models/gltf/duck/glTF/duckCM.png b/examples/models/gltf/duck/glTF/duckCM.png new file mode 100644 index 0000000000000000000000000000000000000000..62d9200baee32f84118cfd55e04e4a4dda9cc699 Binary files /dev/null and b/examples/models/gltf/duck/glTF/duckCM.png differ diff --git a/examples/models/gltf/monster/glTF-MaterialsCommon/monster.bin b/examples/models/gltf/monster/glTF-MaterialsCommon/monster.bin new file mode 100644 index 0000000000000000000000000000000000000000..f7b7182ab1aa66d0f68c3241765273f96b352783 Binary files /dev/null and b/examples/models/gltf/monster/glTF-MaterialsCommon/monster.bin differ diff --git a/examples/models/gltf/monster/glTF-MaterialsCommon/monster.gltf b/examples/models/gltf/monster/glTF-MaterialsCommon/monster.gltf new file mode 100644 index 0000000000000000000000000000000000000000..66935ec042b1224d5d790db60dd474c42c717836 --- /dev/null +++ b/examples/models/gltf/monster/glTF-MaterialsCommon/monster.gltf @@ -0,0 +1,3319 @@ +{ + "accessors": { + "IBM_Armature_monster-skin": { + "bufferView": "bufferView_170", + "byteOffset": 0, + "componentType": 5126, + "count": 32, + "type": "MAT4" + }, + "accessor_164": { + "bufferView": "bufferView_172", + "byteOffset": 84864, + "byteStride": 16, + "componentType": 5126, + "count": 2652, + "max": [ + 1, + 0.999998, + 0.999738, + 0.992702 + ], + "min": [ + 2e-006, + 0, + 0, + 0 + ], + "type": "VEC4" + }, + "accessor_167": { + "bufferView": "bufferView_172", + "byteOffset": 127296, + "byteStride": 16, + "componentType": 5126, + "count": 2652, + "max": [ + 30, + 30, + 29, + 24 + ], + "min": [ + 0, + 0, + 0, + 0 + ], + "type": "VEC4" + }, + "accessor_21": { + "bufferView": "bufferView_171", + "byteOffset": 0, + "byteStride": 0, + "componentType": 5123, + "count": 2652, + "type": "SCALAR" + }, + "accessor_23": { + "bufferView": "bufferView_172", + "byteOffset": 0, + "byteStride": 12, + "componentType": 5126, + "count": 2652, + "max": [ + 7.3131, + 25.4149, + 33.4361 + ], + "min": [ + -15.4507, + -33.2212, + -1.28042 + ], + "type": "VEC3" + }, + "accessor_25": { + "bufferView": "bufferView_172", + "byteOffset": 31824, + "byteStride": 12, + "componentType": 5126, + "count": 2652, + "max": [ + 0.998876, + 0.999882, + 0.999816 + ], + "min": [ + -0.998876, + -0.998031, + -0.999827 + ], + "type": "VEC3" + }, + "accessor_27": { + "bufferView": "bufferView_172", + "byteOffset": 63648, + "byteStride": 8, + "componentType": 5126, + "count": 2652, + "max": [ + 1.00961, + 0.991641 + ], + "min": [ + 0.00508594, + -0.07435 + ], + "type": "VEC2" + }, + "animAccessor_0": { + "bufferView": "bufferView_170", + "byteOffset": 2048, + "componentType": 5126, + "count": 101, + "type": "SCALAR" + }, + "animAccessor_1": { + "bufferView": "bufferView_170", + "byteOffset": 2452, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_10": { + "bufferView": "bufferView_170", + "byteOffset": 14572, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_11": { + "bufferView": "bufferView_170", + "byteOffset": 15784, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_12": { + "bufferView": "bufferView_170", + "byteOffset": 16996, + "componentType": 5126, + "count": 101, + "type": "VEC4" + }, + "animAccessor_13": { + "bufferView": "bufferView_170", + "byteOffset": 18612, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_14": { + "bufferView": "bufferView_170", + "byteOffset": 19824, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_15": { + "bufferView": "bufferView_170", + "byteOffset": 21036, + "componentType": 5126, + "count": 101, + "type": "VEC4" + }, + "animAccessor_16": { + "bufferView": "bufferView_170", + "byteOffset": 22652, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_17": { + "bufferView": "bufferView_170", + "byteOffset": 23864, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_18": { + "bufferView": "bufferView_170", + "byteOffset": 25076, + "componentType": 5126, + "count": 101, + "type": "VEC4" + }, + "animAccessor_19": { + "bufferView": "bufferView_170", + "byteOffset": 26692, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_2": { + "bufferView": "bufferView_170", + "byteOffset": 3664, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_20": { + "bufferView": "bufferView_170", + "byteOffset": 27904, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_21": { + "bufferView": "bufferView_170", + "byteOffset": 29116, + "componentType": 5126, + "count": 101, + "type": "VEC4" + }, + "animAccessor_22": { + "bufferView": "bufferView_170", + "byteOffset": 30732, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_23": { + "bufferView": "bufferView_170", + "byteOffset": 31944, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_24": { + "bufferView": "bufferView_170", + "byteOffset": 33156, + "componentType": 5126, + "count": 101, + "type": "VEC4" + }, + "animAccessor_25": { + "bufferView": "bufferView_170", + "byteOffset": 34772, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_26": { + "bufferView": "bufferView_170", + "byteOffset": 35984, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_27": { + "bufferView": "bufferView_170", + "byteOffset": 37196, + "componentType": 5126, + "count": 101, + "type": "VEC4" + }, + "animAccessor_28": { + "bufferView": "bufferView_170", + "byteOffset": 38812, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_29": { + "bufferView": "bufferView_170", + "byteOffset": 40024, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_3": { + "bufferView": "bufferView_170", + "byteOffset": 4876, + "componentType": 5126, + "count": 101, + "type": "VEC4" + }, + "animAccessor_30": { + "bufferView": "bufferView_170", + "byteOffset": 41236, + "componentType": 5126, + "count": 101, + "type": "VEC4" + }, + "animAccessor_31": { + "bufferView": "bufferView_170", + "byteOffset": 42852, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_32": { + "bufferView": "bufferView_170", + "byteOffset": 44064, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_33": { + "bufferView": "bufferView_170", + "byteOffset": 45276, + "componentType": 5126, + "count": 101, + "type": "VEC4" + }, + "animAccessor_34": { + "bufferView": "bufferView_170", + "byteOffset": 46892, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_35": { + "bufferView": "bufferView_170", + "byteOffset": 48104, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_36": { + "bufferView": "bufferView_170", + "byteOffset": 49316, + "componentType": 5126, + "count": 101, + "type": "VEC4" + }, + "animAccessor_37": { + "bufferView": "bufferView_170", + "byteOffset": 50932, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_38": { + "bufferView": "bufferView_170", + "byteOffset": 52144, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_39": { + "bufferView": "bufferView_170", + "byteOffset": 53356, + "componentType": 5126, + "count": 101, + "type": "VEC4" + }, + "animAccessor_4": { + "bufferView": "bufferView_170", + "byteOffset": 6492, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_40": { + "bufferView": "bufferView_170", + "byteOffset": 54972, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_41": { + "bufferView": "bufferView_170", + "byteOffset": 56184, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_42": { + "bufferView": "bufferView_170", + "byteOffset": 57396, + "componentType": 5126, + "count": 101, + "type": "VEC4" + }, + "animAccessor_43": { + "bufferView": "bufferView_170", + "byteOffset": 59012, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_44": { + "bufferView": "bufferView_170", + "byteOffset": 60224, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_45": { + "bufferView": "bufferView_170", + "byteOffset": 61436, + "componentType": 5126, + "count": 101, + "type": "VEC4" + }, + "animAccessor_46": { + "bufferView": "bufferView_170", + "byteOffset": 63052, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_47": { + "bufferView": "bufferView_170", + "byteOffset": 64264, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_48": { + "bufferView": "bufferView_170", + "byteOffset": 65476, + "componentType": 5126, + "count": 101, + "type": "VEC4" + }, + "animAccessor_49": { + "bufferView": "bufferView_170", + "byteOffset": 67092, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_5": { + "bufferView": "bufferView_170", + "byteOffset": 7704, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_50": { + "bufferView": "bufferView_170", + "byteOffset": 68304, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_51": { + "bufferView": "bufferView_170", + "byteOffset": 69516, + "componentType": 5126, + "count": 101, + "type": "VEC4" + }, + "animAccessor_52": { + "bufferView": "bufferView_170", + "byteOffset": 71132, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_53": { + "bufferView": "bufferView_170", + "byteOffset": 72344, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_54": { + "bufferView": "bufferView_170", + "byteOffset": 73556, + "componentType": 5126, + "count": 101, + "type": "VEC4" + }, + "animAccessor_55": { + "bufferView": "bufferView_170", + "byteOffset": 75172, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_56": { + "bufferView": "bufferView_170", + "byteOffset": 76384, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_57": { + "bufferView": "bufferView_170", + "byteOffset": 77596, + "componentType": 5126, + "count": 101, + "type": "VEC4" + }, + "animAccessor_58": { + "bufferView": "bufferView_170", + "byteOffset": 79212, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_59": { + "bufferView": "bufferView_170", + "byteOffset": 80424, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_6": { + "bufferView": "bufferView_170", + "byteOffset": 8916, + "componentType": 5126, + "count": 101, + "type": "VEC4" + }, + "animAccessor_60": { + "bufferView": "bufferView_170", + "byteOffset": 81636, + "componentType": 5126, + "count": 101, + "type": "VEC4" + }, + "animAccessor_61": { + "bufferView": "bufferView_170", + "byteOffset": 83252, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_62": { + "bufferView": "bufferView_170", + "byteOffset": 84464, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_63": { + "bufferView": "bufferView_170", + "byteOffset": 85676, + "componentType": 5126, + "count": 101, + "type": "VEC4" + }, + "animAccessor_64": { + "bufferView": "bufferView_170", + "byteOffset": 87292, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_65": { + "bufferView": "bufferView_170", + "byteOffset": 88504, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_66": { + "bufferView": "bufferView_170", + "byteOffset": 89716, + "componentType": 5126, + "count": 101, + "type": "VEC4" + }, + "animAccessor_67": { + "bufferView": "bufferView_170", + "byteOffset": 91332, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_68": { + "bufferView": "bufferView_170", + "byteOffset": 92544, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_69": { + "bufferView": "bufferView_170", + "byteOffset": 93756, + "componentType": 5126, + "count": 101, + "type": "VEC4" + }, + "animAccessor_7": { + "bufferView": "bufferView_170", + "byteOffset": 10532, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_70": { + "bufferView": "bufferView_170", + "byteOffset": 95372, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_71": { + "bufferView": "bufferView_170", + "byteOffset": 96584, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_72": { + "bufferView": "bufferView_170", + "byteOffset": 97796, + "componentType": 5126, + "count": 101, + "type": "VEC4" + }, + "animAccessor_73": { + "bufferView": "bufferView_170", + "byteOffset": 99412, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_74": { + "bufferView": "bufferView_170", + "byteOffset": 100624, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_75": { + "bufferView": "bufferView_170", + "byteOffset": 101836, + "componentType": 5126, + "count": 101, + "type": "VEC4" + }, + "animAccessor_76": { + "bufferView": "bufferView_170", + "byteOffset": 103452, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_77": { + "bufferView": "bufferView_170", + "byteOffset": 104664, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_78": { + "bufferView": "bufferView_170", + "byteOffset": 105876, + "componentType": 5126, + "count": 101, + "type": "VEC4" + }, + "animAccessor_79": { + "bufferView": "bufferView_170", + "byteOffset": 107492, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_8": { + "bufferView": "bufferView_170", + "byteOffset": 11744, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_80": { + "bufferView": "bufferView_170", + "byteOffset": 108704, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_81": { + "bufferView": "bufferView_170", + "byteOffset": 109916, + "componentType": 5126, + "count": 101, + "type": "VEC4" + }, + "animAccessor_82": { + "bufferView": "bufferView_170", + "byteOffset": 111532, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_83": { + "bufferView": "bufferView_170", + "byteOffset": 112744, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_84": { + "bufferView": "bufferView_170", + "byteOffset": 113956, + "componentType": 5126, + "count": 101, + "type": "VEC4" + }, + "animAccessor_85": { + "bufferView": "bufferView_170", + "byteOffset": 115572, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_86": { + "bufferView": "bufferView_170", + "byteOffset": 116784, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_87": { + "bufferView": "bufferView_170", + "byteOffset": 117996, + "componentType": 5126, + "count": 101, + "type": "VEC4" + }, + "animAccessor_88": { + "bufferView": "bufferView_170", + "byteOffset": 119612, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_89": { + "bufferView": "bufferView_170", + "byteOffset": 120824, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_9": { + "bufferView": "bufferView_170", + "byteOffset": 12956, + "componentType": 5126, + "count": 101, + "type": "VEC4" + }, + "animAccessor_90": { + "bufferView": "bufferView_170", + "byteOffset": 122036, + "componentType": 5126, + "count": 101, + "type": "VEC4" + }, + "animAccessor_91": { + "bufferView": "bufferView_170", + "byteOffset": 123652, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_92": { + "bufferView": "bufferView_170", + "byteOffset": 124864, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_93": { + "bufferView": "bufferView_170", + "byteOffset": 126076, + "componentType": 5126, + "count": 101, + "type": "VEC4" + }, + "animAccessor_94": { + "bufferView": "bufferView_170", + "byteOffset": 127692, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_95": { + "bufferView": "bufferView_170", + "byteOffset": 128904, + "componentType": 5126, + "count": 101, + "type": "VEC3" + }, + "animAccessor_96": { + "bufferView": "bufferView_170", + "byteOffset": 130116, + "componentType": 5126, + "count": 101, + "type": "VEC4" + } + }, + "animations": { + "animation_0": { + "channels": [ + { + "sampler": "animation_0_scale_sampler", + "target": { + "id": "Bip01_Pelvis", + "path": "scale" + } + }, + { + "sampler": "animation_0_translation_sampler", + "target": { + "id": "Bip01_Pelvis", + "path": "translation" + } + }, + { + "sampler": "animation_0_rotation_sampler", + "target": { + "id": "Bip01_Pelvis", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_3", + "scale": "animAccessor_1", + "translation": "animAccessor_2" + }, + "samplers": { + "animation_0_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_0_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_0_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_1": { + "channels": [ + { + "sampler": "animation_1_scale_sampler", + "target": { + "id": "Bip01_Spine", + "path": "scale" + } + }, + { + "sampler": "animation_1_translation_sampler", + "target": { + "id": "Bip01_Spine", + "path": "translation" + } + }, + { + "sampler": "animation_1_rotation_sampler", + "target": { + "id": "Bip01_Spine", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_6", + "scale": "animAccessor_4", + "translation": "animAccessor_5" + }, + "samplers": { + "animation_1_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_1_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_1_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_10": { + "channels": [ + { + "sampler": "animation_10_scale_sampler", + "target": { + "id": "Bip01_L_Finger0", + "path": "scale" + } + }, + { + "sampler": "animation_10_translation_sampler", + "target": { + "id": "Bip01_L_Finger0", + "path": "translation" + } + }, + { + "sampler": "animation_10_rotation_sampler", + "target": { + "id": "Bip01_L_Finger0", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_9", + "scale": "animAccessor_7", + "translation": "animAccessor_8" + }, + "samplers": { + "animation_10_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_10_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_10_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_11": { + "channels": [ + { + "sampler": "animation_11_scale_sampler", + "target": { + "id": "Bip01_L_Finger0Nub", + "path": "scale" + } + }, + { + "sampler": "animation_11_translation_sampler", + "target": { + "id": "Bip01_L_Finger0Nub", + "path": "translation" + } + }, + { + "sampler": "animation_11_rotation_sampler", + "target": { + "id": "Bip01_L_Finger0Nub", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_12", + "scale": "animAccessor_10", + "translation": "animAccessor_11" + }, + "samplers": { + "animation_11_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_11_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_11_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_12": { + "channels": [ + { + "sampler": "animation_12_scale_sampler", + "target": { + "id": "Bip01_R_Clavicle", + "path": "scale" + } + }, + { + "sampler": "animation_12_translation_sampler", + "target": { + "id": "Bip01_R_Clavicle", + "path": "translation" + } + }, + { + "sampler": "animation_12_rotation_sampler", + "target": { + "id": "Bip01_R_Clavicle", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_15", + "scale": "animAccessor_13", + "translation": "animAccessor_14" + }, + "samplers": { + "animation_12_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_12_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_12_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_13": { + "channels": [ + { + "sampler": "animation_13_scale_sampler", + "target": { + "id": "Bip01_R_UpperArm", + "path": "scale" + } + }, + { + "sampler": "animation_13_translation_sampler", + "target": { + "id": "Bip01_R_UpperArm", + "path": "translation" + } + }, + { + "sampler": "animation_13_rotation_sampler", + "target": { + "id": "Bip01_R_UpperArm", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_18", + "scale": "animAccessor_16", + "translation": "animAccessor_17" + }, + "samplers": { + "animation_13_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_13_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_13_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_14": { + "channels": [ + { + "sampler": "animation_14_scale_sampler", + "target": { + "id": "Bip01_R_Forearm", + "path": "scale" + } + }, + { + "sampler": "animation_14_translation_sampler", + "target": { + "id": "Bip01_R_Forearm", + "path": "translation" + } + }, + { + "sampler": "animation_14_rotation_sampler", + "target": { + "id": "Bip01_R_Forearm", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_21", + "scale": "animAccessor_19", + "translation": "animAccessor_20" + }, + "samplers": { + "animation_14_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_14_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_14_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_15": { + "channels": [ + { + "sampler": "animation_15_scale_sampler", + "target": { + "id": "Bip01_R_Hand", + "path": "scale" + } + }, + { + "sampler": "animation_15_translation_sampler", + "target": { + "id": "Bip01_R_Hand", + "path": "translation" + } + }, + { + "sampler": "animation_15_rotation_sampler", + "target": { + "id": "Bip01_R_Hand", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_24", + "scale": "animAccessor_22", + "translation": "animAccessor_23" + }, + "samplers": { + "animation_15_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_15_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_15_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_16": { + "channels": [ + { + "sampler": "animation_16_scale_sampler", + "target": { + "id": "Bip01_R_Finger0", + "path": "scale" + } + }, + { + "sampler": "animation_16_translation_sampler", + "target": { + "id": "Bip01_R_Finger0", + "path": "translation" + } + }, + { + "sampler": "animation_16_rotation_sampler", + "target": { + "id": "Bip01_R_Finger0", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_27", + "scale": "animAccessor_25", + "translation": "animAccessor_26" + }, + "samplers": { + "animation_16_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_16_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_16_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_17": { + "channels": [ + { + "sampler": "animation_17_scale_sampler", + "target": { + "id": "Bip01_R_Finger0Nub", + "path": "scale" + } + }, + { + "sampler": "animation_17_translation_sampler", + "target": { + "id": "Bip01_R_Finger0Nub", + "path": "translation" + } + }, + { + "sampler": "animation_17_rotation_sampler", + "target": { + "id": "Bip01_R_Finger0Nub", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_30", + "scale": "animAccessor_28", + "translation": "animAccessor_29" + }, + "samplers": { + "animation_17_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_17_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_17_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_18": { + "channels": [ + { + "sampler": "animation_18_scale_sampler", + "target": { + "id": "Bip01_R_Thigh", + "path": "scale" + } + }, + { + "sampler": "animation_18_translation_sampler", + "target": { + "id": "Bip01_R_Thigh", + "path": "translation" + } + }, + { + "sampler": "animation_18_rotation_sampler", + "target": { + "id": "Bip01_R_Thigh", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_33", + "scale": "animAccessor_31", + "translation": "animAccessor_32" + }, + "samplers": { + "animation_18_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_18_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_18_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_19": { + "channels": [ + { + "sampler": "animation_19_scale_sampler", + "target": { + "id": "Bip01_R_Calf", + "path": "scale" + } + }, + { + "sampler": "animation_19_translation_sampler", + "target": { + "id": "Bip01_R_Calf", + "path": "translation" + } + }, + { + "sampler": "animation_19_rotation_sampler", + "target": { + "id": "Bip01_R_Calf", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_36", + "scale": "animAccessor_34", + "translation": "animAccessor_35" + }, + "samplers": { + "animation_19_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_19_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_19_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_2": { + "channels": [ + { + "sampler": "animation_2_scale_sampler", + "target": { + "id": "Bip01_Spine1", + "path": "scale" + } + }, + { + "sampler": "animation_2_translation_sampler", + "target": { + "id": "Bip01_Spine1", + "path": "translation" + } + }, + { + "sampler": "animation_2_rotation_sampler", + "target": { + "id": "Bip01_Spine1", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_39", + "scale": "animAccessor_37", + "translation": "animAccessor_38" + }, + "samplers": { + "animation_2_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_2_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_2_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_20": { + "channels": [ + { + "sampler": "animation_20_scale_sampler", + "target": { + "id": "Bip01_R_Foot", + "path": "scale" + } + }, + { + "sampler": "animation_20_translation_sampler", + "target": { + "id": "Bip01_R_Foot", + "path": "translation" + } + }, + { + "sampler": "animation_20_rotation_sampler", + "target": { + "id": "Bip01_R_Foot", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_42", + "scale": "animAccessor_40", + "translation": "animAccessor_41" + }, + "samplers": { + "animation_20_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_20_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_20_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_21": { + "channels": [ + { + "sampler": "animation_21_scale_sampler", + "target": { + "id": "Bip01_R_Toe0", + "path": "scale" + } + }, + { + "sampler": "animation_21_translation_sampler", + "target": { + "id": "Bip01_R_Toe0", + "path": "translation" + } + }, + { + "sampler": "animation_21_rotation_sampler", + "target": { + "id": "Bip01_R_Toe0", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_45", + "scale": "animAccessor_43", + "translation": "animAccessor_44" + }, + "samplers": { + "animation_21_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_21_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_21_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_22": { + "channels": [ + { + "sampler": "animation_22_scale_sampler", + "target": { + "id": "Bip01_R_Toe0Nub", + "path": "scale" + } + }, + { + "sampler": "animation_22_translation_sampler", + "target": { + "id": "Bip01_R_Toe0Nub", + "path": "translation" + } + }, + { + "sampler": "animation_22_rotation_sampler", + "target": { + "id": "Bip01_R_Toe0Nub", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_48", + "scale": "animAccessor_46", + "translation": "animAccessor_47" + }, + "samplers": { + "animation_22_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_22_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_22_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_23": { + "channels": [ + { + "sampler": "animation_23_scale_sampler", + "target": { + "id": "Bip01_L_Thigh", + "path": "scale" + } + }, + { + "sampler": "animation_23_translation_sampler", + "target": { + "id": "Bip01_L_Thigh", + "path": "translation" + } + }, + { + "sampler": "animation_23_rotation_sampler", + "target": { + "id": "Bip01_L_Thigh", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_51", + "scale": "animAccessor_49", + "translation": "animAccessor_50" + }, + "samplers": { + "animation_23_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_23_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_23_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_24": { + "channels": [ + { + "sampler": "animation_24_scale_sampler", + "target": { + "id": "Bip01_L_Calf", + "path": "scale" + } + }, + { + "sampler": "animation_24_translation_sampler", + "target": { + "id": "Bip01_L_Calf", + "path": "translation" + } + }, + { + "sampler": "animation_24_rotation_sampler", + "target": { + "id": "Bip01_L_Calf", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_54", + "scale": "animAccessor_52", + "translation": "animAccessor_53" + }, + "samplers": { + "animation_24_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_24_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_24_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_25": { + "channels": [ + { + "sampler": "animation_25_scale_sampler", + "target": { + "id": "Bip01_L_Foot", + "path": "scale" + } + }, + { + "sampler": "animation_25_translation_sampler", + "target": { + "id": "Bip01_L_Foot", + "path": "translation" + } + }, + { + "sampler": "animation_25_rotation_sampler", + "target": { + "id": "Bip01_L_Foot", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_57", + "scale": "animAccessor_55", + "translation": "animAccessor_56" + }, + "samplers": { + "animation_25_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_25_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_25_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_26": { + "channels": [ + { + "sampler": "animation_26_scale_sampler", + "target": { + "id": "Bip01_L_Toe0", + "path": "scale" + } + }, + { + "sampler": "animation_26_translation_sampler", + "target": { + "id": "Bip01_L_Toe0", + "path": "translation" + } + }, + { + "sampler": "animation_26_rotation_sampler", + "target": { + "id": "Bip01_L_Toe0", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_60", + "scale": "animAccessor_58", + "translation": "animAccessor_59" + }, + "samplers": { + "animation_26_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_26_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_26_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_27": { + "channels": [ + { + "sampler": "animation_27_scale_sampler", + "target": { + "id": "Bip01_L_Toe0Nub", + "path": "scale" + } + }, + { + "sampler": "animation_27_translation_sampler", + "target": { + "id": "Bip01_L_Toe0Nub", + "path": "translation" + } + }, + { + "sampler": "animation_27_rotation_sampler", + "target": { + "id": "Bip01_L_Toe0Nub", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_63", + "scale": "animAccessor_61", + "translation": "animAccessor_62" + }, + "samplers": { + "animation_27_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_27_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_27_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_28": { + "channels": [ + { + "sampler": "animation_28_scale_sampler", + "target": { + "id": "Bip01_Tail", + "path": "scale" + } + }, + { + "sampler": "animation_28_translation_sampler", + "target": { + "id": "Bip01_Tail", + "path": "translation" + } + }, + { + "sampler": "animation_28_rotation_sampler", + "target": { + "id": "Bip01_Tail", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_66", + "scale": "animAccessor_64", + "translation": "animAccessor_65" + }, + "samplers": { + "animation_28_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_28_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_28_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_29": { + "channels": [ + { + "sampler": "animation_29_scale_sampler", + "target": { + "id": "Bip01_Tail1", + "path": "scale" + } + }, + { + "sampler": "animation_29_translation_sampler", + "target": { + "id": "Bip01_Tail1", + "path": "translation" + } + }, + { + "sampler": "animation_29_rotation_sampler", + "target": { + "id": "Bip01_Tail1", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_69", + "scale": "animAccessor_67", + "translation": "animAccessor_68" + }, + "samplers": { + "animation_29_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_29_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_29_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_3": { + "channels": [ + { + "sampler": "animation_3_scale_sampler", + "target": { + "id": "Bip01_Neck", + "path": "scale" + } + }, + { + "sampler": "animation_3_translation_sampler", + "target": { + "id": "Bip01_Neck", + "path": "translation" + } + }, + { + "sampler": "animation_3_rotation_sampler", + "target": { + "id": "Bip01_Neck", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_72", + "scale": "animAccessor_70", + "translation": "animAccessor_71" + }, + "samplers": { + "animation_3_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_3_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_3_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_30": { + "channels": [ + { + "sampler": "animation_30_scale_sampler", + "target": { + "id": "Bip01_Tail2", + "path": "scale" + } + }, + { + "sampler": "animation_30_translation_sampler", + "target": { + "id": "Bip01_Tail2", + "path": "translation" + } + }, + { + "sampler": "animation_30_rotation_sampler", + "target": { + "id": "Bip01_Tail2", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_75", + "scale": "animAccessor_73", + "translation": "animAccessor_74" + }, + "samplers": { + "animation_30_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_30_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_30_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_31": { + "channels": [ + { + "sampler": "animation_31_scale_sampler", + "target": { + "id": "Bip01_TailNub", + "path": "scale" + } + }, + { + "sampler": "animation_31_translation_sampler", + "target": { + "id": "Bip01_TailNub", + "path": "translation" + } + }, + { + "sampler": "animation_31_rotation_sampler", + "target": { + "id": "Bip01_TailNub", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_78", + "scale": "animAccessor_76", + "translation": "animAccessor_77" + }, + "samplers": { + "animation_31_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_31_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_31_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_4": { + "channels": [ + { + "sampler": "animation_4_scale_sampler", + "target": { + "id": "Bip01_Head", + "path": "scale" + } + }, + { + "sampler": "animation_4_translation_sampler", + "target": { + "id": "Bip01_Head", + "path": "translation" + } + }, + { + "sampler": "animation_4_rotation_sampler", + "target": { + "id": "Bip01_Head", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_81", + "scale": "animAccessor_79", + "translation": "animAccessor_80" + }, + "samplers": { + "animation_4_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_4_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_4_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_5": { + "channels": [ + { + "sampler": "animation_5_scale_sampler", + "target": { + "id": "Bip01_HeadNub", + "path": "scale" + } + }, + { + "sampler": "animation_5_translation_sampler", + "target": { + "id": "Bip01_HeadNub", + "path": "translation" + } + }, + { + "sampler": "animation_5_rotation_sampler", + "target": { + "id": "Bip01_HeadNub", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_84", + "scale": "animAccessor_82", + "translation": "animAccessor_83" + }, + "samplers": { + "animation_5_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_5_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_5_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_6": { + "channels": [ + { + "sampler": "animation_6_scale_sampler", + "target": { + "id": "Bip01_L_Clavicle", + "path": "scale" + } + }, + { + "sampler": "animation_6_translation_sampler", + "target": { + "id": "Bip01_L_Clavicle", + "path": "translation" + } + }, + { + "sampler": "animation_6_rotation_sampler", + "target": { + "id": "Bip01_L_Clavicle", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_87", + "scale": "animAccessor_85", + "translation": "animAccessor_86" + }, + "samplers": { + "animation_6_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_6_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_6_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_7": { + "channels": [ + { + "sampler": "animation_7_scale_sampler", + "target": { + "id": "Bip01_L_UpperArm", + "path": "scale" + } + }, + { + "sampler": "animation_7_translation_sampler", + "target": { + "id": "Bip01_L_UpperArm", + "path": "translation" + } + }, + { + "sampler": "animation_7_rotation_sampler", + "target": { + "id": "Bip01_L_UpperArm", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_90", + "scale": "animAccessor_88", + "translation": "animAccessor_89" + }, + "samplers": { + "animation_7_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_7_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_7_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_8": { + "channels": [ + { + "sampler": "animation_8_scale_sampler", + "target": { + "id": "Bip01_L_Forearm", + "path": "scale" + } + }, + { + "sampler": "animation_8_translation_sampler", + "target": { + "id": "Bip01_L_Forearm", + "path": "translation" + } + }, + { + "sampler": "animation_8_rotation_sampler", + "target": { + "id": "Bip01_L_Forearm", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_93", + "scale": "animAccessor_91", + "translation": "animAccessor_92" + }, + "samplers": { + "animation_8_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_8_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_8_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, + "animation_9": { + "channels": [ + { + "sampler": "animation_9_scale_sampler", + "target": { + "id": "Bip01_L_Hand", + "path": "scale" + } + }, + { + "sampler": "animation_9_translation_sampler", + "target": { + "id": "Bip01_L_Hand", + "path": "translation" + } + }, + { + "sampler": "animation_9_rotation_sampler", + "target": { + "id": "Bip01_L_Hand", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_96", + "scale": "animAccessor_94", + "translation": "animAccessor_95" + }, + "samplers": { + "animation_9_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_9_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_9_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + } + }, + "asset": { + "generator": "collada2gltf@cf6371beb0bdc18ba603378d5e40c966da53d385", + "premultipliedAlpha": true, + "profile": { + "api": "WebGL", + "version": "1.0.2" + }, + "version": "1.0" + }, + "bufferViews": { + "bufferView_170": { + "buffer": "monster", + "byteLength": 131732, + "byteOffset": 0 + }, + "bufferView_171": { + "buffer": "monster", + "byteLength": 5304, + "byteOffset": 131732, + "target": 34963 + }, + "bufferView_172": { + "buffer": "monster", + "byteLength": 169728, + "byteOffset": 137036, + "target": 34962 + } + }, + "buffers": { + "monster": { + "byteLength": 306764, + "type": "arraybuffer", + "uri": "monster.bin" + } + }, + "extensionsUsed": [ + "KHR_materials_common" + ], + "images": { + "monster_jpg": { + "name": "monster_jpg", + "uri": "monster.jpg" + } + }, + "materials": { + "monster-effect": { + "extensions": { + "KHR_materials_common": { + "doubleSided": false, + "jointCount": 32, + "technique": "BLINN", + "transparent": false, + "values": { + "ambient": [ + 0, + 0, + 0, + 1 + ], + "diffuse": "texture_monster_jpg", + "emission": [ + 0, + 0, + 0, + 1 + ], + "shininess": 50, + "specular": [ + 0.1, + 0.1, + 0.1, + 1 + ] + } + } + }, + "name": "monster" + } + }, + "meshes": { + "monster-mesh": { + "name": "monster", + "primitives": [ + { + "attributes": { + "JOINT": "accessor_167", + "NORMAL": "accessor_25", + "POSITION": "accessor_23", + "TEXCOORD_0": "accessor_27", + "WEIGHT": "accessor_164" + }, + "indices": "accessor_21", + "material": "monster-effect", + "mode": 4 + } + ] + } + }, + "nodes": { + "Armature": { + "children": [ + "Bip01_Pelvis" + ], + "matrix": [ + 0.0254, + 0, + 0, + 0, + 0, + 0.0254, + 0, + 0, + 0, + 0, + 0.0254, + 0, + 0, + 0, + 11.7322, + 1 + ], + "name": "Armature" + }, + "Bip01_Head": { + "children": [ + "Bip01_HeadNub" + ], + "jointName": "Bip01_Head", + "name": "Bip01_Head", + "rotation": [ + -0.00926739, + -0.00278277, + -0.388481, + 0.921406 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + 181.732, + -0.000854492, + 0.00259566 + ] + }, + "Bip01_HeadNub": { + "children": [], + "jointName": "Bip01_HeadNub", + "name": "Bip01_HeadNub", + "rotation": [ + 1.02991e-005, + 1.84067e-005, + 0.707087, + 0.707127 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + -3.05176e-005, + 345.14, + 0 + ] + }, + "Bip01_L_Calf": { + "children": [ + "Bip01_L_Foot" + ], + "jointName": "Bip01_L_Calf", + "name": "Bip01_L_Calf", + "rotation": [ + 0.894764, + -0.0988358, + 0.361927, + -0.242152 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + 1.52588e-005, + 547.819, + 3.05176e-005 + ] + }, + "Bip01_L_Clavicle": { + "children": [ + "Bip01_L_UpperArm" + ], + "jointName": "Bip01_L_Clavicle", + "name": "Bip01_L_Clavicle", + "rotation": [ + 0.62698, + 0.337123, + 0.203765, + 0.672104 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + 0.000488281, + 0.1427, + 43.1695 + ] + }, + "Bip01_L_Finger0": { + "children": [ + "Bip01_L_Finger0Nub" + ], + "jointName": "Bip01_L_Finger0", + "name": "Bip01_L_Finger0", + "rotation": [ + -0.061911, + -0.618466, + -0.322036, + 0.714115 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + -2.28882e-005, + 186.694, + 7.62939e-006 + ] + }, + "Bip01_L_Finger0Nub": { + "children": [], + "jointName": "Bip01_L_Finger0Nub", + "name": "Bip01_L_Finger0Nub", + "rotation": [ + 0.187101, + 0.187088, + 0.681926, + 0.681885 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + 0, + 167.762, + -6.10352e-005 + ] + }, + "Bip01_L_Foot": { + "children": [ + "Bip01_L_Toe0" + ], + "jointName": "Bip01_L_Foot", + "name": "Bip01_L_Foot", + "rotation": [ + 0.66556, + -0.434361, + 0.240113, + 0.55741 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + -6.10352e-005, + 532.748, + 3.8147e-005 + ] + }, + "Bip01_L_Forearm": { + "children": [ + "Bip01_L_Hand" + ], + "jointName": "Bip01_L_Forearm", + "name": "Bip01_L_Forearm", + "rotation": [ + -0.270987, + -0.0801902, + -0.259695, + 0.923414 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + -6.10352e-005, + 370.017, + -6.10352e-005 + ] + }, + "Bip01_L_Hand": { + "children": [ + "Bip01_L_Finger0" + ], + "jointName": "Bip01_L_Hand", + "name": "Bip01_L_Hand", + "rotation": [ + 0.31595, + 0.346073, + -0.361486, + 0.806063 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + 6.10352e-005, + 370.017, + 0 + ] + }, + "Bip01_L_Thigh": { + "children": [ + "Bip01_L_Calf" + ], + "jointName": "Bip01_L_Thigh", + "name": "Bip01_L_Thigh", + "rotation": [ + 0.587041, + 0.402576, + -0.378225, + 0.591829 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + -101.904, + 96.8195, + 158.143 + ] + }, + "Bip01_L_Toe0": { + "children": [ + "Bip01_L_Toe0Nub" + ], + "jointName": "Bip01_L_Toe0", + "name": "Bip01_L_Toe0", + "rotation": [ + 0.255933, + -0.362018, + -0.321951, + 0.836534 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + -1.52588e-005, + 286.181, + -5.34058e-005 + ] + }, + "Bip01_L_Toe0Nub": { + "children": [], + "jointName": "Bip01_L_Toe0Nub", + "name": "Bip01_L_Toe0Nub", + "rotation": [ + 0.700993, + -0.700989, + 0.0927956, + -0.0927984 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + 0, + 166.968, + 1.14441e-005 + ] + }, + "Bip01_L_UpperArm": { + "children": [ + "Bip01_L_Forearm" + ], + "jointName": "Bip01_L_UpperArm", + "name": "Bip01_L_UpperArm", + "rotation": [ + -0.583202, + 0.181926, + 0.209862, + 0.763371 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + 0, + 175.071, + -6.10352e-005 + ] + }, + "Bip01_Neck": { + "children": [ + "Bip01_Head", + "Bip01_L_Clavicle", + "Bip01_R_Clavicle" + ], + "jointName": "Bip01_Neck", + "name": "Bip01_Neck", + "rotation": [ + 4.57449e-006, + 1.00403e-005, + -0.352997, + 0.935624 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + 402.552, + -0.104385, + -0.00284648 + ] + }, + "Bip01_Pelvis": { + "children": [ + "Bip01_Spine" + ], + "jointName": "Bip01_Pelvis", + "name": "Bip01_Pelvis", + "rotation": [ + 0.611681, + 0.354728, + 0.611703, + 0.354731 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + -1.16286, + 99.4341, + -44.1331 + ] + }, + "Bip01_R_Calf": { + "children": [ + "Bip01_R_Foot" + ], + "jointName": "Bip01_R_Calf", + "name": "Bip01_R_Calf", + "rotation": [ + 0.894763, + -0.0988353, + -0.361931, + 0.242152 + ], + "scale": [ + 1, + 1, + 0.999999 + ], + "translation": [ + -1.52588e-005, + 547.819, + 3.8147e-006 + ] + }, + "Bip01_R_Clavicle": { + "children": [ + "Bip01_R_UpperArm" + ], + "jointName": "Bip01_R_Clavicle", + "name": "Bip01_R_Clavicle", + "rotation": [ + -0.629516, + -0.328596, + 0.195815, + 0.676306 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + 0.00396728, + 0.145904, + -43.1688 + ] + }, + "Bip01_R_Finger0": { + "children": [ + "Bip01_R_Finger0Nub" + ], + "jointName": "Bip01_R_Finger0", + "name": "Bip01_R_Finger0", + "rotation": [ + 0.0619069, + 0.618458, + -0.322038, + 0.714121 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + 5.34058e-005, + 186.693, + 3.05176e-005 + ] + }, + "Bip01_R_Finger0Nub": { + "children": [], + "jointName": "Bip01_R_Finger0Nub", + "name": "Bip01_R_Finger0Nub", + "rotation": [ + 0.18708, + -0.187099, + -0.681888, + 0.681927 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + 0, + 167.76, + 0 + ] + }, + "Bip01_R_Foot": { + "children": [ + "Bip01_R_Toe0" + ], + "jointName": "Bip01_R_Foot", + "name": "Bip01_R_Foot", + "rotation": [ + -0.66556, + 0.434365, + 0.240111, + 0.557408 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + 0, + 532.747, + 0 + ] + }, + "Bip01_R_Forearm": { + "children": [ + "Bip01_R_Hand" + ], + "jointName": "Bip01_R_Forearm", + "name": "Bip01_R_Forearm", + "rotation": [ + 0.270988, + 0.0801905, + -0.259694, + 0.923414 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + 0, + 370.017, + 0 + ] + }, + "Bip01_R_Hand": { + "children": [ + "Bip01_R_Finger0" + ], + "jointName": "Bip01_R_Hand", + "name": "Bip01_R_Hand", + "rotation": [ + -0.315953, + -0.346079, + -0.361482, + 0.80606 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + 6.10352e-005, + 370.017, + 0 + ] + }, + "Bip01_R_Thigh": { + "children": [ + "Bip01_R_Calf" + ], + "jointName": "Bip01_R_Thigh", + "name": "Bip01_R_Thigh", + "rotation": [ + -0.597369, + -0.393833, + -0.364985, + 0.595678 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + -107.676, + 94.9768, + -155.407 + ] + }, + "Bip01_R_Toe0": { + "children": [ + "Bip01_R_Toe0Nub" + ], + "jointName": "Bip01_R_Toe0", + "name": "Bip01_R_Toe0", + "rotation": [ + -0.255932, + 0.362015, + -0.321953, + 0.836535 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + 1.52588e-005, + 286.181, + -2.28882e-005 + ] + }, + "Bip01_R_Toe0Nub": { + "children": [], + "jointName": "Bip01_R_Toe0Nub", + "name": "Bip01_R_Toe0Nub", + "rotation": [ + 0.700988, + 0.700994, + -0.092793, + -0.0928082 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + -6.10352e-005, + 166.969, + 3.8147e-006 + ] + }, + "Bip01_R_UpperArm": { + "children": [ + "Bip01_R_Forearm" + ], + "jointName": "Bip01_R_UpperArm", + "name": "Bip01_R_UpperArm", + "rotation": [ + 0.573423, + -0.182268, + 0.232267, + 0.76421 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + -0.000305176, + 175.072, + 7.62939e-005 + ] + }, + "Bip01_Spine": { + "children": [ + "Bip01_Spine1", + "Bip01_R_Thigh", + "Bip01_L_Thigh", + "Bip01_Tail" + ], + "jointName": "Bip01_Spine", + "name": "Bip01_Spine", + "rotation": [ + 0.00959927, + -0.00103765, + 0.915123, + 0.403059 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + 0, + 142.054, + 0 + ] + }, + "Bip01_Spine1": { + "children": [ + "Bip01_Neck" + ], + "jointName": "Bip01_Spine1", + "name": "Bip01_Spine1", + "rotation": [ + 0.00439627, + 0.00253657, + 0.050762, + 0.998698 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + 399.195, + -0.319542, + -0.00304908 + ] + }, + "Bip01_Tail": { + "children": [ + "Bip01_Tail1" + ], + "jointName": "Bip01_Tail", + "name": "Bip01_Tail", + "rotation": [ + 0.00378802, + 0.00888481, + 0.653293, + 0.757043 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + -229.277, + 51.5717, + 3.92008 + ] + }, + "Bip01_Tail1": { + "children": [ + "Bip01_Tail2" + ], + "jointName": "Bip01_Tail1", + "name": "Bip01_Tail1", + "rotation": [ + 5.95769e-007, + 2.20509e-007, + 0.125891, + 0.992044 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + -7.62939e-006, + 275.134, + 2.38419e-007 + ] + }, + "Bip01_Tail2": { + "children": [ + "Bip01_TailNub" + ], + "jointName": "Bip01_Tail2", + "name": "Bip01_Tail2", + "rotation": [ + -8.79674e-007, + -6.96714e-007, + 0.113491, + 0.993539 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + -2.28882e-005, + 339.089, + 0 + ] + }, + "Bip01_TailNub": { + "children": [], + "jointName": "Bip01_TailNub", + "name": "Bip01_TailNub", + "rotation": [ + 0.00039859, + 1, + 3.39635e-007, + 3.30486e-006 + ], + "scale": [ + 1, + 1, + 1 + ], + "translation": [ + 1.52588e-005, + 374.19, + 0 + ] + }, + "monster": { + "children": [], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1 + ], + "meshes": [ + "monster-mesh" + ], + "name": "monster", + "skeletons": [ + "Bip01_Pelvis" + ], + "skin": "Armature_monster-skin" + }, + "node_34": { + "children": [ + "Armature", + "monster" + ], + "matrix": [ + 1, + 0, + 0, + 0, + 0, + 0, + -1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1 + ], + "name": "Y_UP_Transform" + } + }, + "samplers": { + "sampler_0": { + "magFilter": 9729, + "minFilter": 9729, + "wrapS": 10497, + "wrapT": 10497 + } + }, + "scene": "defaultScene", + "scenes": { + "defaultScene": { + "nodes": [ + "node_34" + ] + } + }, + "skins": { + "Armature_monster-skin": { + "bindShapeMatrix": [ + 1, + -9.68933e-008, + -2.42233e-008, + 0, + 4.84467e-008, + 1, + -2.93385e-016, + 0, + 4.84467e-008, + -2.05369e-015, + 1, + 0, + 4.15673, + 3.03859, + -9.53674e-007, + 1 + ], + "inverseBindMatrices": "IBM_Armature_monster-skin", + "jointNames": [ + "Bip01_Pelvis", + "Bip01_Spine", + "Bip01_Spine1", + "Bip01_Neck", + "Bip01_Head", + "Bip01_HeadNub", + "Bip01_L_Clavicle", + "Bip01_L_UpperArm", + "Bip01_L_Forearm", + "Bip01_L_Hand", + "Bip01_L_Finger0", + "Bip01_L_Finger0Nub", + "Bip01_R_Clavicle", + "Bip01_R_UpperArm", + "Bip01_R_Forearm", + "Bip01_R_Hand", + "Bip01_R_Finger0", + "Bip01_R_Finger0Nub", + "Bip01_L_Thigh", + "Bip01_L_Calf", + "Bip01_L_Foot", + "Bip01_L_Toe0", + "Bip01_L_Toe0Nub", + "Bip01_R_Thigh", + "Bip01_R_Calf", + "Bip01_R_Foot", + "Bip01_R_Toe0", + "Bip01_R_Toe0Nub", + "Bip01_Tail", + "Bip01_Tail1", + "Bip01_Tail2", + "Bip01_TailNub" + ], + "name": "Armature" + } + }, + "textures": { + "texture_monster_jpg": { + "format": 6408, + "internalFormat": 6408, + "sampler": "sampler_0", + "source": "monster_jpg", + "target": 3553, + "type": 5121 + } + } +} \ No newline at end of file diff --git a/examples/models/gltf/monster/monster.jpg b/examples/models/gltf/monster/glTF-MaterialsCommon/monster.jpg similarity index 100% rename from examples/models/gltf/monster/monster.jpg rename to examples/models/gltf/monster/glTF-MaterialsCommon/monster.jpg diff --git a/examples/models/gltf/monster/glTF/monster.bin b/examples/models/gltf/monster/glTF/monster.bin new file mode 100644 index 0000000000000000000000000000000000000000..bdf50c7e6ad3cfda9fd03fe0d5741a50004d3f84 Binary files /dev/null and b/examples/models/gltf/monster/glTF/monster.bin differ diff --git a/examples/models/gltf/monster/monster.json b/examples/models/gltf/monster/glTF/monster.gltf similarity index 55% rename from examples/models/gltf/monster/monster.json rename to examples/models/gltf/monster/glTF/monster.gltf index fb7867b9722c4d30f9babc098695587238fc1e65..74cc89c3e21212e8c0a04a3714d5fe64092bcf7c 100644 --- a/examples/models/gltf/monster/monster.json +++ b/examples/models/gltf/monster/glTF/monster.gltf @@ -1,898 +1,863 @@ { "accessors": { - "accessor_10": { - "bufferView": "bufferView_185", - "byteOffset": 3112, - "count": 101, - "type": 5126 - }, - "accessor_100": { - "bufferView": "bufferView_185", - "byteOffset": 110576, - "count": 101, - "type": 35665 - }, - "accessor_101": { - "bufferView": "bufferView_185", - "byteOffset": 111788, - "count": 101, - "type": 35666 - }, - "accessor_102": { - "bufferView": "bufferView_185", - "byteOffset": 12808, - "count": 101, - "type": 5126 - }, - "accessor_103": { - "bufferView": "bufferView_185", - "byteOffset": 113404, - "count": 101, - "type": 35665 - }, - "accessor_104": { - "bufferView": "bufferView_185", - "byteOffset": 114616, - "count": 101, - "type": 35665 - }, - "accessor_105": { - "bufferView": "bufferView_185", - "byteOffset": 115828, - "count": 101, - "type": 35666 - }, - "accessor_106": { - "bufferView": "bufferView_185", - "byteOffset": 13212, - "count": 101, - "type": 5126 - }, - "accessor_107": { - "bufferView": "bufferView_185", - "byteOffset": 117444, - "count": 101, - "type": 35665 - }, - "accessor_108": { - "bufferView": "bufferView_185", - "byteOffset": 118656, - "count": 101, - "type": 35665 - }, - "accessor_109": { - "bufferView": "bufferView_185", - "byteOffset": 119868, - "count": 101, - "type": 35666 - }, - "accessor_11": { - "bufferView": "bufferView_185", - "byteOffset": 20484, - "count": 101, - "type": 35665 - }, - "accessor_110": { - "bufferView": "bufferView_185", - "byteOffset": 13616, - "count": 101, - "type": 5126 - }, - "accessor_111": { - "bufferView": "bufferView_185", - "byteOffset": 121484, - "count": 101, - "type": 35665 - }, - "accessor_112": { - "bufferView": "bufferView_185", - "byteOffset": 122696, - "count": 101, - "type": 35665 - }, - "accessor_113": { - "bufferView": "bufferView_185", - "byteOffset": 123908, - "count": 101, - "type": 35666 - }, - "accessor_114": { - "bufferView": "bufferView_185", - "byteOffset": 14020, - "count": 101, - "type": 5126 - }, - "accessor_115": { - "bufferView": "bufferView_185", - "byteOffset": 125524, - "count": 101, - "type": 35665 - }, - "accessor_116": { - "bufferView": "bufferView_185", - "byteOffset": 126736, - "count": 101, - "type": 35665 - }, - "accessor_117": { - "bufferView": "bufferView_185", - "byteOffset": 127948, - "count": 101, - "type": 35666 - }, - "accessor_118": { - "bufferView": "bufferView_185", - "byteOffset": 14424, - "count": 101, - "type": 5126 - }, - "accessor_119": { - "bufferView": "bufferView_185", - "byteOffset": 129564, - "count": 101, - "type": 35665 - }, - "accessor_12": { - "bufferView": "bufferView_185", - "byteOffset": 21696, - "count": 101, - "type": 35665 - }, - "accessor_120": { - "bufferView": "bufferView_185", - "byteOffset": 130776, - "count": 101, - "type": 35665 - }, - "accessor_121": { - "bufferView": "bufferView_185", - "byteOffset": 131988, - "count": 101, - "type": 35666 - }, - "accessor_122": { - "bufferView": "bufferView_185", - "byteOffset": 14828, - "count": 101, - "type": 5126 + "IBM_Armature_monster-skin": { + "bufferView": "bufferView_170", + "byteOffset": 0, + "componentType": 5126, + "count": 32, + "type": "MAT4" }, - "accessor_123": { - "bufferView": "bufferView_185", - "byteOffset": 133604, - "count": 101, - "type": 35665 + "accessor_164": { + "bufferView": "bufferView_172", + "byteOffset": 84864, + "byteStride": 16, + "componentType": 5126, + "count": 2652, + "max": [ + 1, + 0.9999979734420776, + 0.9997379779815674, + 0.9927020072937012 + ], + "min": [ + 0.0000019999999949504854, + 0, + 0, + 0 + ], + "type": "VEC4" }, - "accessor_124": { - "bufferView": "bufferView_185", - "byteOffset": 134816, - "count": 101, - "type": 35665 + "accessor_167": { + "bufferView": "bufferView_172", + "byteOffset": 127296, + "byteStride": 16, + "componentType": 5126, + "count": 2652, + "max": [ + 30, + 30, + 29, + 24 + ], + "min": [ + 0, + 0, + 0, + 0 + ], + "type": "VEC4" }, - "accessor_125": { - "bufferView": "bufferView_185", - "byteOffset": 136028, - "count": 101, - "type": 35666 + "accessor_21": { + "bufferView": "bufferView_171", + "byteOffset": 0, + "byteStride": 0, + "componentType": 5123, + "count": 2652, + "type": "SCALAR" }, - "accessor_126": { - "bufferView": "bufferView_185", - "byteOffset": 15232, - "count": 101, - "type": 5126 + "accessor_23": { + "bufferView": "bufferView_172", + "byteOffset": 0, + "byteStride": 12, + "componentType": 5126, + "count": 2652, + "max": [ + 7.3130998611450195, + 25.414899826049805, + 33.436100006103516 + ], + "min": [ + -15.450699806213379, + -33.22119903564453, + -1.280419945716858 + ], + "type": "VEC3" }, - "accessor_127": { - "bufferView": "bufferView_185", - "byteOffset": 137644, - "count": 101, - "type": 35665 + "accessor_25": { + "bufferView": "bufferView_172", + "byteOffset": 31824, + "byteStride": 12, + "componentType": 5126, + "count": 2652, + "max": [ + 0.9988759756088257, + 0.9998819828033447, + 0.9998160004615784 + ], + "min": [ + -0.9988759756088257, + -0.9980310201644897, + -0.999826967716217 + ], + "type": "VEC3" }, - "accessor_128": { - "bufferView": "bufferView_185", - "byteOffset": 138856, - "count": 101, - "type": 35665 + "accessor_27": { + "bufferView": "bufferView_172", + "byteOffset": 63648, + "byteStride": 8, + "componentType": 5126, + "count": 2652, + "max": [ + 1.0096099376678467, + 0.9916410446166992 + ], + "min": [ + 0.005085940007120371, + -0.07434999942779541 + ], + "type": "VEC2" }, - "accessor_129": { - "bufferView": "bufferView_185", - "byteOffset": 140068, + "animAccessor_0": { + "bufferView": "bufferView_170", + "byteOffset": 2048, + "componentType": 5126, "count": 101, - "type": 35666 + "type": "SCALAR" }, - "accessor_13": { - "bufferView": "bufferView_185", - "byteOffset": 22908, + "animAccessor_1": { + "bufferView": "bufferView_170", + "byteOffset": 2452, + "componentType": 5126, "count": 101, - "type": 35666 + "type": "VEC3" }, - "accessor_130": { - "bufferView": "bufferView_185", - "byteOffset": 15636, + "animAccessor_10": { + "bufferView": "bufferView_170", + "byteOffset": 14572, + "componentType": 5126, "count": 101, - "type": 5126 + "type": "VEC3" }, - "accessor_131": { - "bufferView": "bufferView_185", - "byteOffset": 141684, + "animAccessor_11": { + "bufferView": "bufferView_170", + "byteOffset": 15784, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC3" }, - "accessor_132": { - "bufferView": "bufferView_185", - "byteOffset": 142896, + "animAccessor_12": { + "bufferView": "bufferView_170", + "byteOffset": 16996, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC4" }, - "accessor_133": { - "bufferView": "bufferView_185", - "byteOffset": 144108, + "animAccessor_13": { + "bufferView": "bufferView_170", + "byteOffset": 18612, + "componentType": 5126, "count": 101, - "type": 35666 + "type": "VEC3" }, - "accessor_14": { - "bufferView": "bufferView_185", - "byteOffset": 3516, + "animAccessor_14": { + "bufferView": "bufferView_170", + "byteOffset": 19824, + "componentType": 5126, "count": 101, - "type": 5126 + "type": "VEC3" }, - "accessor_15": { - "bufferView": "bufferView_185", - "byteOffset": 24524, + "animAccessor_15": { + "bufferView": "bufferView_170", + "byteOffset": 21036, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC4" }, - "accessor_16": { - "bufferView": "bufferView_185", - "byteOffset": 25736, + "animAccessor_16": { + "bufferView": "bufferView_170", + "byteOffset": 22652, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC3" }, - "accessor_17": { - "bufferView": "bufferView_185", - "byteOffset": 26948, + "animAccessor_17": { + "bufferView": "bufferView_170", + "byteOffset": 23864, + "componentType": 5126, "count": 101, - "type": 35666 + "type": "VEC3" }, - "accessor_18": { - "bufferView": "bufferView_185", - "byteOffset": 3920, + "animAccessor_18": { + "bufferView": "bufferView_170", + "byteOffset": 25076, + "componentType": 5126, "count": 101, - "type": 5126 + "type": "VEC4" }, - "accessor_19": { - "bufferView": "bufferView_185", - "byteOffset": 28564, + "animAccessor_19": { + "bufferView": "bufferView_170", + "byteOffset": 26692, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC3" }, - "accessor_20": { - "bufferView": "bufferView_185", - "byteOffset": 29776, + "animAccessor_2": { + "bufferView": "bufferView_170", + "byteOffset": 3664, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC3" }, - "accessor_21": { - "bufferView": "bufferView_185", - "byteOffset": 30988, + "animAccessor_20": { + "bufferView": "bufferView_170", + "byteOffset": 27904, + "componentType": 5126, "count": 101, - "type": 35666 + "type": "VEC3" }, - "accessor_22": { - "bufferView": "bufferView_185", - "byteOffset": 4324, + "animAccessor_21": { + "bufferView": "bufferView_170", + "byteOffset": 29116, + "componentType": 5126, "count": 101, - "type": 5126 + "type": "VEC4" }, - "accessor_23": { - "bufferView": "bufferView_185", - "byteOffset": 32604, + "animAccessor_22": { + "bufferView": "bufferView_170", + "byteOffset": 30732, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC3" }, - "accessor_24": { - "bufferView": "bufferView_185", - "byteOffset": 33816, + "animAccessor_23": { + "bufferView": "bufferView_170", + "byteOffset": 31944, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC3" }, - "accessor_25": { - "bufferView": "bufferView_185", - "byteOffset": 35028, + "animAccessor_24": { + "bufferView": "bufferView_170", + "byteOffset": 33156, + "componentType": 5126, "count": 101, - "type": 35666 + "type": "VEC4" }, - "accessor_26": { - "bufferView": "bufferView_185", - "byteOffset": 4728, + "animAccessor_25": { + "bufferView": "bufferView_170", + "byteOffset": 34772, + "componentType": 5126, "count": 101, - "type": 5126 + "type": "VEC3" }, - "accessor_27": { - "bufferView": "bufferView_185", - "byteOffset": 36644, + "animAccessor_26": { + "bufferView": "bufferView_170", + "byteOffset": 35984, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC3" }, - "accessor_28": { - "bufferView": "bufferView_185", - "byteOffset": 37856, + "animAccessor_27": { + "bufferView": "bufferView_170", + "byteOffset": 37196, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC4" }, - "accessor_29": { - "bufferView": "bufferView_185", - "byteOffset": 39068, + "animAccessor_28": { + "bufferView": "bufferView_170", + "byteOffset": 38812, + "componentType": 5126, "count": 101, - "type": 35666 + "type": "VEC3" }, - "accessor_30": { - "bufferView": "bufferView_185", - "byteOffset": 5132, + "animAccessor_29": { + "bufferView": "bufferView_170", + "byteOffset": 40024, + "componentType": 5126, "count": 101, - "type": 5126 + "type": "VEC3" }, - "accessor_31": { - "bufferView": "bufferView_185", - "byteOffset": 40684, + "animAccessor_3": { + "bufferView": "bufferView_170", + "byteOffset": 4876, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC4" }, - "accessor_32": { - "bufferView": "bufferView_185", - "byteOffset": 41896, + "animAccessor_30": { + "bufferView": "bufferView_170", + "byteOffset": 41236, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC4" }, - "accessor_33": { - "bufferView": "bufferView_185", - "byteOffset": 43108, + "animAccessor_31": { + "bufferView": "bufferView_170", + "byteOffset": 42852, + "componentType": 5126, "count": 101, - "type": 35666 + "type": "VEC3" }, - "accessor_34": { - "bufferView": "bufferView_185", - "byteOffset": 5536, + "animAccessor_32": { + "bufferView": "bufferView_170", + "byteOffset": 44064, + "componentType": 5126, "count": 101, - "type": 5126 + "type": "VEC3" }, - "accessor_35": { - "bufferView": "bufferView_185", - "byteOffset": 44724, + "animAccessor_33": { + "bufferView": "bufferView_170", + "byteOffset": 45276, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC4" }, - "accessor_36": { - "bufferView": "bufferView_185", - "byteOffset": 45936, + "animAccessor_34": { + "bufferView": "bufferView_170", + "byteOffset": 46892, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC3" }, - "accessor_37": { - "bufferView": "bufferView_185", - "byteOffset": 47148, + "animAccessor_35": { + "bufferView": "bufferView_170", + "byteOffset": 48104, + "componentType": 5126, "count": 101, - "type": 35666 + "type": "VEC3" }, - "accessor_38": { - "bufferView": "bufferView_185", - "byteOffset": 5940, + "animAccessor_36": { + "bufferView": "bufferView_170", + "byteOffset": 49316, + "componentType": 5126, "count": 101, - "type": 5126 + "type": "VEC4" }, - "accessor_39": { - "bufferView": "bufferView_185", - "byteOffset": 48764, + "animAccessor_37": { + "bufferView": "bufferView_170", + "byteOffset": 50932, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC3" }, - "accessor_40": { - "bufferView": "bufferView_185", - "byteOffset": 49976, + "animAccessor_38": { + "bufferView": "bufferView_170", + "byteOffset": 52144, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC3" }, - "accessor_41": { - "bufferView": "bufferView_185", - "byteOffset": 51188, + "animAccessor_39": { + "bufferView": "bufferView_170", + "byteOffset": 53356, + "componentType": 5126, "count": 101, - "type": 35666 + "type": "VEC4" }, - "accessor_42": { - "bufferView": "bufferView_185", - "byteOffset": 6344, + "animAccessor_4": { + "bufferView": "bufferView_170", + "byteOffset": 6492, + "componentType": 5126, "count": 101, - "type": 5126 + "type": "VEC3" }, - "accessor_43": { - "bufferView": "bufferView_185", - "byteOffset": 52804, + "animAccessor_40": { + "bufferView": "bufferView_170", + "byteOffset": 54972, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC3" }, - "accessor_44": { - "bufferView": "bufferView_185", - "byteOffset": 54016, + "animAccessor_41": { + "bufferView": "bufferView_170", + "byteOffset": 56184, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC3" }, - "accessor_45": { - "bufferView": "bufferView_185", - "byteOffset": 55228, + "animAccessor_42": { + "bufferView": "bufferView_170", + "byteOffset": 57396, + "componentType": 5126, "count": 101, - "type": 35666 + "type": "VEC4" }, - "accessor_46": { - "bufferView": "bufferView_185", - "byteOffset": 6748, + "animAccessor_43": { + "bufferView": "bufferView_170", + "byteOffset": 59012, + "componentType": 5126, "count": 101, - "type": 5126 + "type": "VEC3" }, - "accessor_47": { - "bufferView": "bufferView_185", - "byteOffset": 56844, + "animAccessor_44": { + "bufferView": "bufferView_170", + "byteOffset": 60224, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC3" }, - "accessor_48": { - "bufferView": "bufferView_185", - "byteOffset": 58056, + "animAccessor_45": { + "bufferView": "bufferView_170", + "byteOffset": 61436, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC4" }, - "accessor_49": { - "bufferView": "bufferView_185", - "byteOffset": 59268, + "animAccessor_46": { + "bufferView": "bufferView_170", + "byteOffset": 63052, + "componentType": 5126, "count": 101, - "type": 35666 + "type": "VEC3" }, - "accessor_50": { - "bufferView": "bufferView_185", - "byteOffset": 7152, + "animAccessor_47": { + "bufferView": "bufferView_170", + "byteOffset": 64264, + "componentType": 5126, "count": 101, - "type": 5126 + "type": "VEC3" }, - "accessor_51": { - "bufferView": "bufferView_185", - "byteOffset": 60884, + "animAccessor_48": { + "bufferView": "bufferView_170", + "byteOffset": 65476, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC4" }, - "accessor_52": { - "bufferView": "bufferView_185", - "byteOffset": 62096, + "animAccessor_49": { + "bufferView": "bufferView_170", + "byteOffset": 67092, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC3" }, - "accessor_53": { - "bufferView": "bufferView_185", - "byteOffset": 63308, + "animAccessor_5": { + "bufferView": "bufferView_170", + "byteOffset": 7704, + "componentType": 5126, "count": 101, - "type": 35666 + "type": "VEC3" }, - "accessor_54": { - "bufferView": "bufferView_185", - "byteOffset": 7556, + "animAccessor_50": { + "bufferView": "bufferView_170", + "byteOffset": 68304, + "componentType": 5126, "count": 101, - "type": 5126 + "type": "VEC3" }, - "accessor_55": { - "bufferView": "bufferView_185", - "byteOffset": 64924, + "animAccessor_51": { + "bufferView": "bufferView_170", + "byteOffset": 69516, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC4" }, - "accessor_56": { - "bufferView": "bufferView_185", - "byteOffset": 66136, + "animAccessor_52": { + "bufferView": "bufferView_170", + "byteOffset": 71132, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC3" }, - "accessor_57": { - "bufferView": "bufferView_185", - "byteOffset": 67348, + "animAccessor_53": { + "bufferView": "bufferView_170", + "byteOffset": 72344, + "componentType": 5126, "count": 101, - "type": 35666 + "type": "VEC3" }, - "accessor_58": { - "bufferView": "bufferView_185", - "byteOffset": 7960, + "animAccessor_54": { + "bufferView": "bufferView_170", + "byteOffset": 73556, + "componentType": 5126, "count": 101, - "type": 5126 + "type": "VEC4" }, - "accessor_59": { - "bufferView": "bufferView_185", - "byteOffset": 68964, + "animAccessor_55": { + "bufferView": "bufferView_170", + "byteOffset": 75172, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC3" }, - "accessor_6": { - "bufferView": "bufferView_185", - "byteOffset": 2708, + "animAccessor_56": { + "bufferView": "bufferView_170", + "byteOffset": 76384, + "componentType": 5126, "count": 101, - "type": 5126 + "type": "VEC3" }, - "accessor_60": { - "bufferView": "bufferView_185", - "byteOffset": 70176, + "animAccessor_57": { + "bufferView": "bufferView_170", + "byteOffset": 77596, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC4" }, - "accessor_61": { - "bufferView": "bufferView_185", - "byteOffset": 71388, + "animAccessor_58": { + "bufferView": "bufferView_170", + "byteOffset": 79212, + "componentType": 5126, "count": 101, - "type": 35666 + "type": "VEC3" }, - "accessor_62": { - "bufferView": "bufferView_185", - "byteOffset": 8364, + "animAccessor_59": { + "bufferView": "bufferView_170", + "byteOffset": 80424, + "componentType": 5126, "count": 101, - "type": 5126 + "type": "VEC3" }, - "accessor_63": { - "bufferView": "bufferView_185", - "byteOffset": 73004, + "animAccessor_6": { + "bufferView": "bufferView_170", + "byteOffset": 8916, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC4" }, - "accessor_64": { - "bufferView": "bufferView_185", - "byteOffset": 74216, + "animAccessor_60": { + "bufferView": "bufferView_170", + "byteOffset": 81636, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC4" }, - "accessor_65": { - "bufferView": "bufferView_185", - "byteOffset": 75428, + "animAccessor_61": { + "bufferView": "bufferView_170", + "byteOffset": 83252, + "componentType": 5126, "count": 101, - "type": 35666 + "type": "VEC3" }, - "accessor_66": { - "bufferView": "bufferView_185", - "byteOffset": 8768, + "animAccessor_62": { + "bufferView": "bufferView_170", + "byteOffset": 84464, + "componentType": 5126, "count": 101, - "type": 5126 + "type": "VEC3" }, - "accessor_67": { - "bufferView": "bufferView_185", - "byteOffset": 77044, + "animAccessor_63": { + "bufferView": "bufferView_170", + "byteOffset": 85676, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC4" }, - "accessor_68": { - "bufferView": "bufferView_185", - "byteOffset": 78256, + "animAccessor_64": { + "bufferView": "bufferView_170", + "byteOffset": 87292, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC3" }, - "accessor_69": { - "bufferView": "bufferView_185", - "byteOffset": 79468, + "animAccessor_65": { + "bufferView": "bufferView_170", + "byteOffset": 88504, + "componentType": 5126, "count": 101, - "type": 35666 + "type": "VEC3" }, - "accessor_7": { - "bufferView": "bufferView_185", - "byteOffset": 16444, + "animAccessor_66": { + "bufferView": "bufferView_170", + "byteOffset": 89716, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC4" }, - "accessor_70": { - "bufferView": "bufferView_185", - "byteOffset": 9576, + "animAccessor_67": { + "bufferView": "bufferView_170", + "byteOffset": 91332, + "componentType": 5126, "count": 101, - "type": 5126 + "type": "VEC3" }, - "accessor_71": { - "bufferView": "bufferView_185", - "byteOffset": 81084, + "animAccessor_68": { + "bufferView": "bufferView_170", + "byteOffset": 92544, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC3" }, - "accessor_72": { - "bufferView": "bufferView_185", - "byteOffset": 82296, + "animAccessor_69": { + "bufferView": "bufferView_170", + "byteOffset": 93756, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC4" }, - "accessor_73": { - "bufferView": "bufferView_185", - "byteOffset": 83508, + "animAccessor_7": { + "bufferView": "bufferView_170", + "byteOffset": 10532, + "componentType": 5126, "count": 101, - "type": 35666 + "type": "VEC3" }, - "accessor_74": { - "bufferView": "bufferView_185", - "byteOffset": 9980, + "animAccessor_70": { + "bufferView": "bufferView_170", + "byteOffset": 95372, + "componentType": 5126, "count": 101, - "type": 5126 + "type": "VEC3" }, - "accessor_75": { - "bufferView": "bufferView_185", - "byteOffset": 85124, + "animAccessor_71": { + "bufferView": "bufferView_170", + "byteOffset": 96584, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC3" }, - "accessor_76": { - "bufferView": "bufferView_185", - "byteOffset": 86336, + "animAccessor_72": { + "bufferView": "bufferView_170", + "byteOffset": 97796, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC4" }, - "accessor_77": { - "bufferView": "bufferView_185", - "byteOffset": 87548, + "animAccessor_73": { + "bufferView": "bufferView_170", + "byteOffset": 99412, + "componentType": 5126, "count": 101, - "type": 35666 + "type": "VEC3" }, - "accessor_78": { - "bufferView": "bufferView_185", - "byteOffset": 10384, + "animAccessor_74": { + "bufferView": "bufferView_170", + "byteOffset": 100624, + "componentType": 5126, "count": 101, - "type": 5126 + "type": "VEC3" }, - "accessor_79": { - "bufferView": "bufferView_185", - "byteOffset": 89164, + "animAccessor_75": { + "bufferView": "bufferView_170", + "byteOffset": 101836, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC4" }, - "accessor_8": { - "bufferView": "bufferView_185", - "byteOffset": 17656, + "animAccessor_76": { + "bufferView": "bufferView_170", + "byteOffset": 103452, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC3" }, - "accessor_80": { - "bufferView": "bufferView_185", - "byteOffset": 90376, + "animAccessor_77": { + "bufferView": "bufferView_170", + "byteOffset": 104664, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC3" }, - "accessor_81": { - "bufferView": "bufferView_185", - "byteOffset": 91588, + "animAccessor_78": { + "bufferView": "bufferView_170", + "byteOffset": 105876, + "componentType": 5126, "count": 101, - "type": 35666 + "type": "VEC4" }, - "accessor_82": { - "bufferView": "bufferView_185", - "byteOffset": 10788, + "animAccessor_79": { + "bufferView": "bufferView_170", + "byteOffset": 107492, + "componentType": 5126, "count": 101, - "type": 5126 + "type": "VEC3" }, - "accessor_83": { - "bufferView": "bufferView_185", - "byteOffset": 93204, + "animAccessor_8": { + "bufferView": "bufferView_170", + "byteOffset": 11744, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC3" }, - "accessor_84": { - "bufferView": "bufferView_185", - "byteOffset": 94416, + "animAccessor_80": { + "bufferView": "bufferView_170", + "byteOffset": 108704, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC3" }, - "accessor_85": { - "bufferView": "bufferView_185", - "byteOffset": 95628, + "animAccessor_81": { + "bufferView": "bufferView_170", + "byteOffset": 109916, + "componentType": 5126, "count": 101, - "type": 35666 + "type": "VEC4" }, - "accessor_86": { - "bufferView": "bufferView_185", - "byteOffset": 11192, + "animAccessor_82": { + "bufferView": "bufferView_170", + "byteOffset": 111532, + "componentType": 5126, "count": 101, - "type": 5126 + "type": "VEC3" }, - "accessor_87": { - "bufferView": "bufferView_185", - "byteOffset": 97244, + "animAccessor_83": { + "bufferView": "bufferView_170", + "byteOffset": 112744, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC4" }, - "accessor_88": { - "bufferView": "bufferView_185", - "byteOffset": 98456, + "animAccessor_84": { + "bufferView": "bufferView_170", + "byteOffset": 114360, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC3" }, - "accessor_89": { - "bufferView": "bufferView_185", - "byteOffset": 99668, + "animAccessor_85": { + "bufferView": "bufferView_170", + "byteOffset": 115572, + "componentType": 5126, "count": 101, - "type": 35666 + "type": "VEC3" }, - "accessor_9": { - "bufferView": "bufferView_185", - "byteOffset": 18868, + "animAccessor_86": { + "bufferView": "bufferView_170", + "byteOffset": 116784, + "componentType": 5126, "count": 101, - "type": 35666 + "type": "VEC4" }, - "accessor_90": { - "bufferView": "bufferView_185", - "byteOffset": 11596, + "animAccessor_87": { + "bufferView": "bufferView_170", + "byteOffset": 118400, + "componentType": 5126, "count": 101, - "type": 5126 + "type": "VEC3" }, - "accessor_91": { - "bufferView": "bufferView_185", - "byteOffset": 101284, + "animAccessor_88": { + "bufferView": "bufferView_170", + "byteOffset": 119612, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC3" }, - "accessor_92": { - "bufferView": "bufferView_185", - "byteOffset": 102496, + "animAccessor_89": { + "bufferView": "bufferView_170", + "byteOffset": 120824, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC4" }, - "accessor_93": { - "bufferView": "bufferView_185", - "byteOffset": 103708, + "animAccessor_9": { + "bufferView": "bufferView_170", + "byteOffset": 12956, + "componentType": 5126, "count": 101, - "type": 35666 + "type": "VEC4" }, - "accessor_94": { - "bufferView": "bufferView_185", - "byteOffset": 12000, + "animAccessor_90": { + "bufferView": "bufferView_170", + "byteOffset": 122440, + "componentType": 5126, "count": 101, - "type": 5126 + "type": "VEC3" }, - "accessor_95": { - "bufferView": "bufferView_185", - "byteOffset": 105324, + "animAccessor_91": { + "bufferView": "bufferView_170", + "byteOffset": 123652, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC3" }, - "accessor_96": { - "bufferView": "bufferView_185", - "byteOffset": 106536, + "animAccessor_92": { + "bufferView": "bufferView_170", + "byteOffset": 124864, + "componentType": 5126, "count": 101, - "type": 35665 + "type": "VEC4" }, - "accessor_97": { - "bufferView": "bufferView_185", - "byteOffset": 107748, + "animAccessor_93": { + "bufferView": "bufferView_170", + "byteOffset": 126480, + "componentType": 5126, "count": 101, - "type": 35666 + "type": "VEC3" }, - "accessor_98": { - "bufferView": "bufferView_185", - "byteOffset": 12404, + "animAccessor_94": { + "bufferView": "bufferView_170", + "byteOffset": 127692, + "componentType": 5126, "count": 101, - "type": 5126 + "type": "VEC3" }, - "accessor_99": { - "bufferView": "bufferView_185", - "byteOffset": 109364, + "animAccessor_95": { + "bufferView": "bufferView_170", + "byteOffset": 128904, + "componentType": 5126, "count": 101, - "type": 35665 - }, - "attribute_163": { - "bufferView": "bufferView_183", - "byteOffset": 0, - "byteStride": 12, - "count": 818, - "max": [ - 1154.32, - 892.627, - 584.533 - ], - "min": [ - -1746.98, - -913.328, - -504.127 - ], - "type": 35665 - }, - "attribute_165": { - "bufferView": "bufferView_183", - "byteOffset": 9816, - "byteStride": 12, - "count": 818, - "max": [ - 0.997713, - 0.999992, - 0.998876 - ], - "min": [ - -0.976716, - -1, - -0.998876 - ], - "type": 35665 - }, - "attribute_167": { - "bufferView": "bufferView_183", - "byteOffset": 19632, - "byteStride": 8, - "count": 818, - "max": [ - 1.00961, - 0.991641 - ], - "min": [ - 0.005086, - -0.07435 - ], - "type": 35664 - }, - "attribute_176": { - "bufferView": "bufferView_183", - "byteOffset": 26176, - "byteStride": 16, - "count": 818, - "max": [ - 1, - 0.5, - 0.333333, - 0.297741 - ], - "min": [ - 0.202008, - 0, - 0, - 0 - ], - "type": 35666 - }, - "attribute_179": { - "bufferView": "bufferView_183", - "byteOffset": 39264, - "byteStride": 16, - "count": 818, - "max": [ - 34, - 34, - 28, - 33 - ], - "min": [ - 0, - 0, - 0, - 0 - ], - "type": 35666 - }, - "indices_161": { - "bufferView": "bufferView_184", - "byteOffset": 0, - "count": 2652, - "type": 5123 + "type": "VEC4" } }, "animations": { + "animation_0": { + "channels": [ + { + "sampler": "animation_0_scale_sampler", + "target": { + "id": "Bip01_Pelvis", + "path": "scale" + } + }, + { + "sampler": "animation_0_translation_sampler", + "target": { + "id": "Bip01_Pelvis", + "path": "translation" + } + }, + { + "sampler": "animation_0_rotation_sampler", + "target": { + "id": "Bip01_Pelvis", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_3", + "scale": "animAccessor_1", + "translation": "animAccessor_2" + }, + "samplers": { + "animation_0_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_0_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_0_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, "animation_1": { "channels": [ { "sampler": "animation_1_scale_sampler", "target": { - "id": "Bip01_Spine-node", + "id": "Bip01_Spine", "path": "scale" } }, { "sampler": "animation_1_translation_sampler", "target": { - "id": "Bip01_Spine-node", + "id": "Bip01_Spine", "path": "translation" } }, { "sampler": "animation_1_rotation_sampler", "target": { - "id": "Bip01_Spine-node", + "id": "Bip01_Spine", "path": "rotation" } } ], - "count": 101, "parameters": { - "TIME": "accessor_6", - "rotation": "accessor_9", - "scale": "accessor_7", - "translation": "accessor_8" + "TIME": "animAccessor_0", + "rotation": "animAccessor_6", + "scale": "animAccessor_4", + "translation": "animAccessor_5" }, "samplers": { "animation_1_rotation_sampler": { @@ -917,31 +882,30 @@ { "sampler": "animation_10_scale_sampler", "target": { - "id": "Bip01_L_Finger0Nub-node", + "id": "Bip01_L_Finger0", "path": "scale" } }, { "sampler": "animation_10_translation_sampler", "target": { - "id": "Bip01_L_Finger0Nub-node", + "id": "Bip01_L_Finger0", "path": "translation" } }, { "sampler": "animation_10_rotation_sampler", "target": { - "id": "Bip01_L_Finger0Nub-node", + "id": "Bip01_L_Finger0", "path": "rotation" } } ], - "count": 101, "parameters": { - "TIME": "accessor_42", - "rotation": "accessor_45", - "scale": "accessor_43", - "translation": "accessor_44" + "TIME": "animAccessor_0", + "rotation": "animAccessor_9", + "scale": "animAccessor_7", + "translation": "animAccessor_8" }, "samplers": { "animation_10_rotation_sampler": { @@ -966,31 +930,30 @@ { "sampler": "animation_11_scale_sampler", "target": { - "id": "Bip01_HeadNub-node", + "id": "Bip01_L_Finger0Nub", "path": "scale" } }, { "sampler": "animation_11_translation_sampler", "target": { - "id": "Bip01_HeadNub-node", + "id": "Bip01_L_Finger0Nub", "path": "translation" } }, { "sampler": "animation_11_rotation_sampler", "target": { - "id": "Bip01_HeadNub-node", + "id": "Bip01_L_Finger0Nub", "path": "rotation" } } ], - "count": 101, "parameters": { - "TIME": "accessor_46", - "rotation": "accessor_49", - "scale": "accessor_47", - "translation": "accessor_48" + "TIME": "animAccessor_0", + "rotation": "animAccessor_12", + "scale": "animAccessor_10", + "translation": "animAccessor_11" }, "samplers": { "animation_11_rotation_sampler": { @@ -1015,31 +978,30 @@ { "sampler": "animation_12_scale_sampler", "target": { - "id": "Bip01_R_Thigh-node", + "id": "Bip01_R_Clavicle", "path": "scale" } }, { "sampler": "animation_12_translation_sampler", "target": { - "id": "Bip01_R_Thigh-node", + "id": "Bip01_R_Clavicle", "path": "translation" } }, { "sampler": "animation_12_rotation_sampler", "target": { - "id": "Bip01_R_Thigh-node", + "id": "Bip01_R_Clavicle", "path": "rotation" } } ], - "count": 101, "parameters": { - "TIME": "accessor_50", - "rotation": "accessor_53", - "scale": "accessor_51", - "translation": "accessor_52" + "TIME": "animAccessor_0", + "rotation": "animAccessor_15", + "scale": "animAccessor_13", + "translation": "animAccessor_14" }, "samplers": { "animation_12_rotation_sampler": { @@ -1064,31 +1026,30 @@ { "sampler": "animation_13_scale_sampler", "target": { - "id": "Bip01_R_Calf-node", + "id": "Bip01_R_UpperArm", "path": "scale" } }, { "sampler": "animation_13_translation_sampler", "target": { - "id": "Bip01_R_Calf-node", + "id": "Bip01_R_UpperArm", "path": "translation" } }, { "sampler": "animation_13_rotation_sampler", "target": { - "id": "Bip01_R_Calf-node", + "id": "Bip01_R_UpperArm", "path": "rotation" } } ], - "count": 101, "parameters": { - "TIME": "accessor_54", - "rotation": "accessor_57", - "scale": "accessor_55", - "translation": "accessor_56" + "TIME": "animAccessor_0", + "rotation": "animAccessor_18", + "scale": "animAccessor_16", + "translation": "animAccessor_17" }, "samplers": { "animation_13_rotation_sampler": { @@ -1113,31 +1074,30 @@ { "sampler": "animation_14_scale_sampler", "target": { - "id": "Bip01_R_Foot-node", + "id": "Bip01_R_Forearm", "path": "scale" } }, { "sampler": "animation_14_translation_sampler", "target": { - "id": "Bip01_R_Foot-node", + "id": "Bip01_R_Forearm", "path": "translation" } }, { "sampler": "animation_14_rotation_sampler", "target": { - "id": "Bip01_R_Foot-node", + "id": "Bip01_R_Forearm", "path": "rotation" } } ], - "count": 101, "parameters": { - "TIME": "accessor_58", - "rotation": "accessor_61", - "scale": "accessor_59", - "translation": "accessor_60" + "TIME": "animAccessor_0", + "rotation": "animAccessor_21", + "scale": "animAccessor_19", + "translation": "animAccessor_20" }, "samplers": { "animation_14_rotation_sampler": { @@ -1162,31 +1122,30 @@ { "sampler": "animation_15_scale_sampler", "target": { - "id": "Bip01_R_Toe0-node", + "id": "Bip01_R_Hand", "path": "scale" } }, { "sampler": "animation_15_translation_sampler", "target": { - "id": "Bip01_R_Toe0-node", + "id": "Bip01_R_Hand", "path": "translation" } }, { "sampler": "animation_15_rotation_sampler", "target": { - "id": "Bip01_R_Toe0-node", + "id": "Bip01_R_Hand", "path": "rotation" } } ], - "count": 101, "parameters": { - "TIME": "accessor_62", - "rotation": "accessor_65", - "scale": "accessor_63", - "translation": "accessor_64" + "TIME": "animAccessor_0", + "rotation": "animAccessor_24", + "scale": "animAccessor_22", + "translation": "animAccessor_23" }, "samplers": { "animation_15_rotation_sampler": { @@ -1211,31 +1170,30 @@ { "sampler": "animation_16_scale_sampler", "target": { - "id": "Bone01-node", + "id": "Bip01_R_Finger0", "path": "scale" } }, { "sampler": "animation_16_translation_sampler", "target": { - "id": "Bone01-node", + "id": "Bip01_R_Finger0", "path": "translation" } }, { "sampler": "animation_16_rotation_sampler", "target": { - "id": "Bone01-node", + "id": "Bip01_R_Finger0", "path": "rotation" } } ], - "count": 101, "parameters": { - "TIME": "accessor_66", - "rotation": "accessor_69", - "scale": "accessor_67", - "translation": "accessor_68" + "TIME": "animAccessor_0", + "rotation": "animAccessor_27", + "scale": "animAccessor_25", + "translation": "animAccessor_26" }, "samplers": { "animation_16_rotation_sampler": { @@ -1255,36 +1213,83 @@ } } }, + "animation_17": { + "channels": [ + { + "sampler": "animation_17_scale_sampler", + "target": { + "id": "Bip01_R_Finger0Nub", + "path": "scale" + } + }, + { + "sampler": "animation_17_translation_sampler", + "target": { + "id": "Bip01_R_Finger0Nub", + "path": "translation" + } + }, + { + "sampler": "animation_17_rotation_sampler", + "target": { + "id": "Bip01_R_Finger0Nub", + "path": "rotation" + } + } + ], + "parameters": { + "TIME": "animAccessor_0", + "rotation": "animAccessor_30", + "scale": "animAccessor_28", + "translation": "animAccessor_29" + }, + "samplers": { + "animation_17_rotation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "rotation" + }, + "animation_17_scale_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "scale" + }, + "animation_17_translation_sampler": { + "input": "TIME", + "interpolation": "LINEAR", + "output": "translation" + } + } + }, "animation_18": { "channels": [ { "sampler": "animation_18_scale_sampler", "target": { - "id": "Bip01_R_Clavicle-node", + "id": "Bip01_R_Thigh", "path": "scale" } }, { "sampler": "animation_18_translation_sampler", "target": { - "id": "Bip01_R_Clavicle-node", + "id": "Bip01_R_Thigh", "path": "translation" } }, { "sampler": "animation_18_rotation_sampler", "target": { - "id": "Bip01_R_Clavicle-node", + "id": "Bip01_R_Thigh", "path": "rotation" } } ], - "count": 101, "parameters": { - "TIME": "accessor_70", - "rotation": "accessor_73", - "scale": "accessor_71", - "translation": "accessor_72" + "TIME": "animAccessor_0", + "rotation": "animAccessor_33", + "scale": "animAccessor_31", + "translation": "animAccessor_32" }, "samplers": { "animation_18_rotation_sampler": { @@ -1309,31 +1314,30 @@ { "sampler": "animation_19_scale_sampler", "target": { - "id": "Bone03-node", + "id": "Bip01_R_Calf", "path": "scale" } }, { "sampler": "animation_19_translation_sampler", "target": { - "id": "Bone03-node", + "id": "Bip01_R_Calf", "path": "translation" } }, { "sampler": "animation_19_rotation_sampler", "target": { - "id": "Bone03-node", + "id": "Bip01_R_Calf", "path": "rotation" } } ], - "count": 101, "parameters": { - "TIME": "accessor_74", - "rotation": "accessor_77", - "scale": "accessor_75", - "translation": "accessor_76" + "TIME": "animAccessor_0", + "rotation": "animAccessor_36", + "scale": "animAccessor_34", + "translation": "animAccessor_35" }, "samplers": { "animation_19_rotation_sampler": { @@ -1358,31 +1362,30 @@ { "sampler": "animation_2_scale_sampler", "target": { - "id": "Bip01_Spine1-node", + "id": "Bip01_Spine1", "path": "scale" } }, { "sampler": "animation_2_translation_sampler", "target": { - "id": "Bip01_Spine1-node", + "id": "Bip01_Spine1", "path": "translation" } }, { "sampler": "animation_2_rotation_sampler", "target": { - "id": "Bip01_Spine1-node", + "id": "Bip01_Spine1", "path": "rotation" } } ], - "count": 101, "parameters": { - "TIME": "accessor_10", - "rotation": "accessor_13", - "scale": "accessor_11", - "translation": "accessor_12" + "TIME": "animAccessor_0", + "rotation": "animAccessor_39", + "scale": "animAccessor_37", + "translation": "animAccessor_38" }, "samplers": { "animation_2_rotation_sampler": { @@ -1407,31 +1410,30 @@ { "sampler": "animation_20_scale_sampler", "target": { - "id": "Bone04-node", + "id": "Bip01_R_Foot", "path": "scale" } }, { "sampler": "animation_20_translation_sampler", "target": { - "id": "Bone04-node", + "id": "Bip01_R_Foot", "path": "translation" } }, { "sampler": "animation_20_rotation_sampler", "target": { - "id": "Bone04-node", + "id": "Bip01_R_Foot", "path": "rotation" } } ], - "count": 101, "parameters": { - "TIME": "accessor_78", - "rotation": "accessor_81", - "scale": "accessor_79", - "translation": "accessor_80" + "TIME": "animAccessor_0", + "rotation": "animAccessor_42", + "scale": "animAccessor_40", + "translation": "animAccessor_41" }, "samplers": { "animation_20_rotation_sampler": { @@ -1456,31 +1458,30 @@ { "sampler": "animation_21_scale_sampler", "target": { - "id": "Bip01_R_UpperArm-node", + "id": "Bip01_R_Toe0", "path": "scale" } }, { "sampler": "animation_21_translation_sampler", "target": { - "id": "Bip01_R_UpperArm-node", + "id": "Bip01_R_Toe0", "path": "translation" } }, { "sampler": "animation_21_rotation_sampler", "target": { - "id": "Bip01_R_UpperArm-node", + "id": "Bip01_R_Toe0", "path": "rotation" } } ], - "count": 101, "parameters": { - "TIME": "accessor_82", - "rotation": "accessor_85", - "scale": "accessor_83", - "translation": "accessor_84" + "TIME": "animAccessor_0", + "rotation": "animAccessor_45", + "scale": "animAccessor_43", + "translation": "animAccessor_44" }, "samplers": { "animation_21_rotation_sampler": { @@ -1505,31 +1506,30 @@ { "sampler": "animation_22_scale_sampler", "target": { - "id": "Bip01_R_Forearm-node", + "id": "Bip01_R_Toe0Nub", "path": "scale" } }, { "sampler": "animation_22_translation_sampler", "target": { - "id": "Bip01_R_Forearm-node", + "id": "Bip01_R_Toe0Nub", "path": "translation" } }, { "sampler": "animation_22_rotation_sampler", "target": { - "id": "Bip01_R_Forearm-node", + "id": "Bip01_R_Toe0Nub", "path": "rotation" } } ], - "count": 101, "parameters": { - "TIME": "accessor_86", - "rotation": "accessor_89", - "scale": "accessor_87", - "translation": "accessor_88" + "TIME": "animAccessor_0", + "rotation": "animAccessor_48", + "scale": "animAccessor_46", + "translation": "animAccessor_47" }, "samplers": { "animation_22_rotation_sampler": { @@ -1554,31 +1554,30 @@ { "sampler": "animation_23_scale_sampler", "target": { - "id": "Bip01_R_Hand-node", + "id": "Bip01_L_Thigh", "path": "scale" } }, { "sampler": "animation_23_translation_sampler", "target": { - "id": "Bip01_R_Hand-node", + "id": "Bip01_L_Thigh", "path": "translation" } }, { "sampler": "animation_23_rotation_sampler", "target": { - "id": "Bip01_R_Hand-node", + "id": "Bip01_L_Thigh", "path": "rotation" } } ], - "count": 101, "parameters": { - "TIME": "accessor_90", - "rotation": "accessor_93", - "scale": "accessor_91", - "translation": "accessor_92" + "TIME": "animAccessor_0", + "rotation": "animAccessor_51", + "scale": "animAccessor_49", + "translation": "animAccessor_50" }, "samplers": { "animation_23_rotation_sampler": { @@ -1603,31 +1602,30 @@ { "sampler": "animation_24_scale_sampler", "target": { - "id": "Bip01_R_Finger0-node", + "id": "Bip01_L_Calf", "path": "scale" } }, { "sampler": "animation_24_translation_sampler", "target": { - "id": "Bip01_R_Finger0-node", + "id": "Bip01_L_Calf", "path": "translation" } }, { "sampler": "animation_24_rotation_sampler", "target": { - "id": "Bip01_R_Finger0-node", + "id": "Bip01_L_Calf", "path": "rotation" } } ], - "count": 101, "parameters": { - "TIME": "accessor_94", - "rotation": "accessor_97", - "scale": "accessor_95", - "translation": "accessor_96" + "TIME": "animAccessor_0", + "rotation": "animAccessor_54", + "scale": "animAccessor_52", + "translation": "animAccessor_53" }, "samplers": { "animation_24_rotation_sampler": { @@ -1652,31 +1650,30 @@ { "sampler": "animation_25_scale_sampler", "target": { - "id": "Bip01_R_Finger0Nub-node", + "id": "Bip01_L_Foot", "path": "scale" } }, { "sampler": "animation_25_translation_sampler", "target": { - "id": "Bip01_R_Finger0Nub-node", + "id": "Bip01_L_Foot", "path": "translation" } }, { "sampler": "animation_25_rotation_sampler", "target": { - "id": "Bip01_R_Finger0Nub-node", + "id": "Bip01_L_Foot", "path": "rotation" } } ], - "count": 101, "parameters": { - "TIME": "accessor_98", - "rotation": "accessor_101", - "scale": "accessor_99", - "translation": "accessor_100" + "TIME": "animAccessor_0", + "rotation": "animAccessor_57", + "scale": "animAccessor_55", + "translation": "animAccessor_56" }, "samplers": { "animation_25_rotation_sampler": { @@ -1701,31 +1698,30 @@ { "sampler": "animation_26_scale_sampler", "target": { - "id": "Bip01_L_Thigh-node", + "id": "Bip01_L_Toe0", "path": "scale" } }, { "sampler": "animation_26_translation_sampler", "target": { - "id": "Bip01_L_Thigh-node", + "id": "Bip01_L_Toe0", "path": "translation" } }, { "sampler": "animation_26_rotation_sampler", "target": { - "id": "Bip01_L_Thigh-node", + "id": "Bip01_L_Toe0", "path": "rotation" } } ], - "count": 101, "parameters": { - "TIME": "accessor_102", - "rotation": "accessor_105", - "scale": "accessor_103", - "translation": "accessor_104" + "TIME": "animAccessor_0", + "rotation": "animAccessor_60", + "scale": "animAccessor_58", + "translation": "animAccessor_59" }, "samplers": { "animation_26_rotation_sampler": { @@ -1750,31 +1746,30 @@ { "sampler": "animation_27_scale_sampler", "target": { - "id": "Bip01_L_Calf-node", + "id": "Bip01_L_Toe0Nub", "path": "scale" } }, { "sampler": "animation_27_translation_sampler", "target": { - "id": "Bip01_L_Calf-node", + "id": "Bip01_L_Toe0Nub", "path": "translation" } }, { "sampler": "animation_27_rotation_sampler", "target": { - "id": "Bip01_L_Calf-node", + "id": "Bip01_L_Toe0Nub", "path": "rotation" } } ], - "count": 101, "parameters": { - "TIME": "accessor_106", - "rotation": "accessor_109", - "scale": "accessor_107", - "translation": "accessor_108" + "TIME": "animAccessor_0", + "rotation": "animAccessor_63", + "scale": "animAccessor_61", + "translation": "animAccessor_62" }, "samplers": { "animation_27_rotation_sampler": { @@ -1799,31 +1794,30 @@ { "sampler": "animation_28_scale_sampler", "target": { - "id": "Bip01_L_Foot-node", + "id": "Bip01_Tail", "path": "scale" } }, { "sampler": "animation_28_translation_sampler", "target": { - "id": "Bip01_L_Foot-node", + "id": "Bip01_Tail", "path": "translation" } }, { "sampler": "animation_28_rotation_sampler", "target": { - "id": "Bip01_L_Foot-node", + "id": "Bip01_Tail", "path": "rotation" } } ], - "count": 101, "parameters": { - "TIME": "accessor_110", - "rotation": "accessor_113", - "scale": "accessor_111", - "translation": "accessor_112" + "TIME": "animAccessor_0", + "rotation": "animAccessor_66", + "scale": "animAccessor_64", + "translation": "animAccessor_65" }, "samplers": { "animation_28_rotation_sampler": { @@ -1848,31 +1842,30 @@ { "sampler": "animation_29_scale_sampler", "target": { - "id": "Bip01_L_Toe0-node", + "id": "Bip01_Tail1", "path": "scale" } }, { "sampler": "animation_29_translation_sampler", "target": { - "id": "Bip01_L_Toe0-node", + "id": "Bip01_Tail1", "path": "translation" } }, { "sampler": "animation_29_rotation_sampler", "target": { - "id": "Bip01_L_Toe0-node", + "id": "Bip01_Tail1", "path": "rotation" } } ], - "count": 101, "parameters": { - "TIME": "accessor_114", - "rotation": "accessor_117", - "scale": "accessor_115", - "translation": "accessor_116" + "TIME": "animAccessor_0", + "rotation": "animAccessor_69", + "scale": "animAccessor_67", + "translation": "animAccessor_68" }, "samplers": { "animation_29_rotation_sampler": { @@ -1897,31 +1890,30 @@ { "sampler": "animation_3_scale_sampler", "target": { - "id": "Bip01_Neck-node", + "id": "Bip01_Neck", "path": "scale" } }, { "sampler": "animation_3_translation_sampler", "target": { - "id": "Bip01_Neck-node", + "id": "Bip01_Neck", "path": "translation" } }, { "sampler": "animation_3_rotation_sampler", "target": { - "id": "Bip01_Neck-node", + "id": "Bip01_Neck", "path": "rotation" } } ], - "count": 101, "parameters": { - "TIME": "accessor_14", - "rotation": "accessor_17", - "scale": "accessor_15", - "translation": "accessor_16" + "TIME": "animAccessor_0", + "rotation": "animAccessor_72", + "scale": "animAccessor_70", + "translation": "animAccessor_71" }, "samplers": { "animation_3_rotation_sampler": { @@ -1946,31 +1938,30 @@ { "sampler": "animation_30_scale_sampler", "target": { - "id": "Bip01_Tail-node", + "id": "Bip01_Tail2", "path": "scale" } }, { "sampler": "animation_30_translation_sampler", "target": { - "id": "Bip01_Tail-node", + "id": "Bip01_Tail2", "path": "translation" } }, { "sampler": "animation_30_rotation_sampler", "target": { - "id": "Bip01_Tail-node", + "id": "Bip01_Tail2", "path": "rotation" } } ], - "count": 101, "parameters": { - "TIME": "accessor_118", - "rotation": "accessor_121", - "scale": "accessor_119", - "translation": "accessor_120" + "TIME": "animAccessor_0", + "rotation": "animAccessor_75", + "scale": "animAccessor_73", + "translation": "animAccessor_74" }, "samplers": { "animation_30_rotation_sampler": { @@ -1995,31 +1986,30 @@ { "sampler": "animation_31_scale_sampler", "target": { - "id": "Bip01_Tail1-node", + "id": "Bip01_TailNub", "path": "scale" } }, { "sampler": "animation_31_translation_sampler", "target": { - "id": "Bip01_Tail1-node", + "id": "Bip01_TailNub", "path": "translation" } }, { "sampler": "animation_31_rotation_sampler", "target": { - "id": "Bip01_Tail1-node", + "id": "Bip01_TailNub", "path": "rotation" } } ], - "count": 101, "parameters": { - "TIME": "accessor_122", - "rotation": "accessor_125", - "scale": "accessor_123", - "translation": "accessor_124" + "TIME": "animAccessor_0", + "rotation": "animAccessor_78", + "scale": "animAccessor_76", + "translation": "animAccessor_77" }, "samplers": { "animation_31_rotation_sampler": { @@ -2039,186 +2029,86 @@ } } }, - "animation_32": { + "animation_4": { "channels": [ { - "sampler": "animation_32_scale_sampler", + "sampler": "animation_4_scale_sampler", "target": { - "id": "Bip01_Tail2-node", + "id": "Bip01_Head", "path": "scale" } }, { - "sampler": "animation_32_translation_sampler", + "sampler": "animation_4_translation_sampler", "target": { - "id": "Bip01_Tail2-node", + "id": "Bip01_Head", "path": "translation" } }, { - "sampler": "animation_32_rotation_sampler", + "sampler": "animation_4_rotation_sampler", "target": { - "id": "Bip01_Tail2-node", + "id": "Bip01_Head", "path": "rotation" } } ], - "count": 101, "parameters": { - "TIME": "accessor_126", - "rotation": "accessor_129", - "scale": "accessor_127", - "translation": "accessor_128" + "TIME": "animAccessor_0", + "rotation": "animAccessor_81", + "scale": "animAccessor_79", + "translation": "animAccessor_80" }, "samplers": { - "animation_32_rotation_sampler": { + "animation_4_rotation_sampler": { "input": "TIME", "interpolation": "LINEAR", "output": "rotation" }, - "animation_32_scale_sampler": { + "animation_4_scale_sampler": { "input": "TIME", "interpolation": "LINEAR", "output": "scale" }, - "animation_32_translation_sampler": { + "animation_4_translation_sampler": { "input": "TIME", "interpolation": "LINEAR", "output": "translation" } } }, - "animation_33": { + "animation_5": { "channels": [ { - "sampler": "animation_33_scale_sampler", + "sampler": "animation_5_scale_sampler", "target": { - "id": "Bip01_TailNub-node", + "id": "Bip01_HeadNub", "path": "scale" } }, { - "sampler": "animation_33_translation_sampler", + "sampler": "animation_5_translation_sampler", "target": { - "id": "Bip01_TailNub-node", + "id": "Bip01_HeadNub", "path": "translation" } }, { - "sampler": "animation_33_rotation_sampler", + "sampler": "animation_5_rotation_sampler", "target": { - "id": "Bip01_TailNub-node", + "id": "Bip01_HeadNub", "path": "rotation" } } ], - "count": 101, "parameters": { - "TIME": "accessor_130", - "rotation": "accessor_133", - "scale": "accessor_131", - "translation": "accessor_132" + "TIME": "animAccessor_0", + "rotation": "animAccessor_83", + "scale": "animAccessor_61", + "translation": "animAccessor_82" }, "samplers": { - "animation_33_rotation_sampler": { - "input": "TIME", - "interpolation": "LINEAR", - "output": "rotation" - }, - "animation_33_scale_sampler": { - "input": "TIME", - "interpolation": "LINEAR", - "output": "scale" - }, - "animation_33_translation_sampler": { - "input": "TIME", - "interpolation": "LINEAR", - "output": "translation" - } - } - }, - "animation_4": { - "channels": [ - { - "sampler": "animation_4_scale_sampler", - "target": { - "id": "Bip01_Head-node", - "path": "scale" - } - }, - { - "sampler": "animation_4_translation_sampler", - "target": { - "id": "Bip01_Head-node", - "path": "translation" - } - }, - { - "sampler": "animation_4_rotation_sampler", - "target": { - "id": "Bip01_Head-node", - "path": "rotation" - } - } - ], - "count": 101, - "parameters": { - "TIME": "accessor_18", - "rotation": "accessor_21", - "scale": "accessor_19", - "translation": "accessor_20" - }, - "samplers": { - "animation_4_rotation_sampler": { - "input": "TIME", - "interpolation": "LINEAR", - "output": "rotation" - }, - "animation_4_scale_sampler": { - "input": "TIME", - "interpolation": "LINEAR", - "output": "scale" - }, - "animation_4_translation_sampler": { - "input": "TIME", - "interpolation": "LINEAR", - "output": "translation" - } - } - }, - "animation_5": { - "channels": [ - { - "sampler": "animation_5_scale_sampler", - "target": { - "id": "Bip01_L_Clavicle-node", - "path": "scale" - } - }, - { - "sampler": "animation_5_translation_sampler", - "target": { - "id": "Bip01_L_Clavicle-node", - "path": "translation" - } - }, - { - "sampler": "animation_5_rotation_sampler", - "target": { - "id": "Bip01_L_Clavicle-node", - "path": "rotation" - } - } - ], - "count": 101, - "parameters": { - "TIME": "accessor_22", - "rotation": "accessor_25", - "scale": "accessor_23", - "translation": "accessor_24" - }, - "samplers": { - "animation_5_rotation_sampler": { + "animation_5_rotation_sampler": { "input": "TIME", "interpolation": "LINEAR", "output": "rotation" @@ -2240,31 +2130,30 @@ { "sampler": "animation_6_scale_sampler", "target": { - "id": "Bip01_L_UpperArm-node", + "id": "Bip01_L_Clavicle", "path": "scale" } }, { "sampler": "animation_6_translation_sampler", "target": { - "id": "Bip01_L_UpperArm-node", + "id": "Bip01_L_Clavicle", "path": "translation" } }, { "sampler": "animation_6_rotation_sampler", "target": { - "id": "Bip01_L_UpperArm-node", + "id": "Bip01_L_Clavicle", "path": "rotation" } } ], - "count": 101, "parameters": { - "TIME": "accessor_26", - "rotation": "accessor_29", - "scale": "accessor_27", - "translation": "accessor_28" + "TIME": "animAccessor_0", + "rotation": "animAccessor_86", + "scale": "animAccessor_84", + "translation": "animAccessor_85" }, "samplers": { "animation_6_rotation_sampler": { @@ -2289,31 +2178,30 @@ { "sampler": "animation_7_scale_sampler", "target": { - "id": "Bip01_L_Forearm-node", + "id": "Bip01_L_UpperArm", "path": "scale" } }, { "sampler": "animation_7_translation_sampler", "target": { - "id": "Bip01_L_Forearm-node", + "id": "Bip01_L_UpperArm", "path": "translation" } }, { "sampler": "animation_7_rotation_sampler", "target": { - "id": "Bip01_L_Forearm-node", + "id": "Bip01_L_UpperArm", "path": "rotation" } } ], - "count": 101, "parameters": { - "TIME": "accessor_30", - "rotation": "accessor_33", - "scale": "accessor_31", - "translation": "accessor_32" + "TIME": "animAccessor_0", + "rotation": "animAccessor_89", + "scale": "animAccessor_87", + "translation": "animAccessor_88" }, "samplers": { "animation_7_rotation_sampler": { @@ -2338,31 +2226,30 @@ { "sampler": "animation_8_scale_sampler", "target": { - "id": "Bip01_L_Hand-node", + "id": "Bip01_L_Forearm", "path": "scale" } }, { "sampler": "animation_8_translation_sampler", "target": { - "id": "Bip01_L_Hand-node", + "id": "Bip01_L_Forearm", "path": "translation" } }, { "sampler": "animation_8_rotation_sampler", "target": { - "id": "Bip01_L_Hand-node", + "id": "Bip01_L_Forearm", "path": "rotation" } } ], - "count": 101, "parameters": { - "TIME": "accessor_34", - "rotation": "accessor_37", - "scale": "accessor_35", - "translation": "accessor_36" + "TIME": "animAccessor_0", + "rotation": "animAccessor_92", + "scale": "animAccessor_90", + "translation": "animAccessor_91" }, "samplers": { "animation_8_rotation_sampler": { @@ -2387,31 +2274,30 @@ { "sampler": "animation_9_scale_sampler", "target": { - "id": "Bip01_L_Finger0-node", + "id": "Bip01_L_Hand", "path": "scale" } }, { "sampler": "animation_9_translation_sampler", "target": { - "id": "Bip01_L_Finger0-node", + "id": "Bip01_L_Hand", "path": "translation" } }, { "sampler": "animation_9_rotation_sampler", "target": { - "id": "Bip01_L_Finger0-node", + "id": "Bip01_L_Hand", "path": "rotation" } } ], - "count": 101, "parameters": { - "TIME": "accessor_38", - "rotation": "accessor_41", - "scale": "accessor_39", - "translation": "accessor_40" + "TIME": "animAccessor_0", + "rotation": "animAccessor_95", + "scale": "animAccessor_93", + "translation": "animAccessor_94" }, "samplers": { "animation_9_rotation_sampler": { @@ -2433,115 +2319,150 @@ } }, "asset": { - "generator": "collada2gltf@fb6d6e65e66c3b0013c75a8d1e63650f4309bf77" + "generator": "collada2gltf@", + "premultipliedAlpha": true, + "profile": { + "api": "WebGL", + "version": "1.0.2" + }, + "version": "1.0" }, "bufferViews": { - "bufferView_183": { + "bufferView_170": { "buffer": "monster", - "byteLength": 52352, - "byteOffset": 0, - "target": 34962 + "byteLength": 130520, + "byteOffset": 0 }, - "bufferView_184": { + "bufferView_171": { "buffer": "monster", "byteLength": 5304, - "byteOffset": 52352, + "byteOffset": 130520, "target": 34963 }, - "bufferView_185": { + "bufferView_172": { "buffer": "monster", - "byteLength": 145724, - "byteOffset": 57656 + "byteLength": 169728, + "byteOffset": 135824, + "target": 34962 } }, "buffers": { "monster": { - "byteLength": 203380, - "path": "monster.bin", - "type": "arraybuffer" + "byteLength": 305552, + "type": "arraybuffer", + "uri": "monster.bin" } }, "images": { - "image_0": { - "path": "monster.jpg" + "monster_jpg": { + "name": "monster_jpg", + "uri": "monster.jpg" } }, "materials": { - "monster-fx": { - "instanceTechnique": { - "technique": "technique1", - "values": { - "ambient": [ - 0.588235, - 0.588235, - 0.588235, - 1 - ], - "diffuse": "texture_image_0", - "shininess": 20, - "specular": [ - 0.1, - 0.1, - 0.1, - 1 - ] - } - }, - "name": "monster" + "monster-effect": { + "name": "monster", + "technique": "technique0", + "values": { + "ambient": [ + 0, + 0, + 0, + 1 + ], + "diffuse": "texture_monster_jpg", + "emission": [ + 0, + 0, + 0, + 1 + ], + "shininess": 50, + "specular": [ + 0.10000000149011612, + 0.10000000149011612, + 0.10000000149011612, + 1 + ] + } } }, "meshes": { - "monster-mesh-skin": { + "monster-mesh": { "name": "monster", "primitives": [ { "attributes": { - "JOINT": "attribute_179", - "NORMAL": "attribute_165", - "POSITION": "attribute_163", - "TEXCOORD_0": "attribute_167", - "WEIGHT": "attribute_176" + "JOINT": "accessor_167", + "NORMAL": "accessor_25", + "POSITION": "accessor_23", + "TEXCOORD_0": "accessor_27", + "WEIGHT": "accessor_164" }, - "indices": "indices_161", - "material": "monster-fx", - "primitive": 4 + "indices": "accessor_21", + "material": "monster-effect", + "mode": 4 } ] } }, "nodes": { - "Bip01_Head-node": { + "Armature": { "children": [ - "Bip01_HeadNub-node" + "Bip01_Pelvis" ], - "jointId": "Bone5", + "matrix": [ + 0.02539999969303608, + 0, + 0, + 0, + 0, + 0.02539999969303608, + 0, + 0, + 0, + 0, + 0.02539999969303608, + 0, + 0, + 0, + 11.732199668884277, + 1 + ], + "name": "Armature" + }, + "Bip01_Head": { + "children": [ + "Bip01_HeadNub" + ], + "jointName": "Bip01_Head", "name": "Bip01_Head", "rotation": [ - 0.888952, - 0.414921, - 0.19392, - 0.0773304 + -0.009267386980354786, + -0.0027827757876366377, + -0.38848116993904114, + 0.9214058518409729 ], "scale": [ - 1, - 1, - 1 + 0.9999997615814209, + 0.9999998211860657, + 1.000000238418579 ], "translation": [ - 181.732, - -8e-05, - -2e-06 + 181.7320098876953, + -0.0008544919546693563, + 0.0025956600438803434 ] }, - "Bip01_HeadNub-node": { + "Bip01_HeadNub": { "children": [], - "jointId": "Bone6", + "jointName": "Bip01_HeadNub", "name": "Bip01_HeadNub", "rotation": [ - 1, - 0, - 0, - 0 + 0.000010299071618646849, + 0.00001840667027863674, + 0.7070867419242859, + 0.707126796245575 ], "scale": [ 1, @@ -2549,808 +2470,738 @@ 1 ], "translation": [ - 345.132, - 1.7e-05, - -7e-06 + -0.00003051759995287284, + 345.1399841308594, + 0 ] }, - "Bip01_L_Calf-node": { + "Bip01_L_Calf": { "children": [ - "Bip01_L_Foot-node" + "Bip01_L_Foot" ], - "jointId": "Bone24", + "jointName": "Bip01_L_Calf", "name": "Bip01_L_Calf", "rotation": [ - 0, - 0, - -1, - 1.19016 + 0.8947640061378479, + -0.09883574396371841, + 0.3619273602962494, + -0.24215176701545715 ], "scale": [ - 1, - 1, - 1 + 1.0000001192092896, + 0.9999998807907104, + 1.0000008344650269 ], "translation": [ - 547.819, - -5e-06, - -1.2e-05 + 0.00001525879997643642, + 547.819030761719, + 0.00003051759995287284 ] }, - "Bip01_L_Clavicle-node": { + "Bip01_L_Clavicle": { "children": [ - "Bip01_L_UpperArm-node" + "Bip01_L_UpperArm" ], - "jointId": "Bone7", + "jointName": "Bip01_L_Clavicle", "name": "Bip01_L_Clavicle", "rotation": [ - 0.821819, - 0.385425, - 0.419597, - 3.13687 + 0.6269799470901489, + 0.3371226489543915, + 0.20376507937908173, + 0.6721043586730957 ], "scale": [ - 1, - 1, - 1 + 0.9999999403953552, + 0.9999992847442627, + 1.000000238418579 ], "translation": [ - 7.49618, - 0.138573, - 42.5129 + 0.0004882809880655259, + 0.14270000159740448, + 43.169498443603516 ] }, - "Bip01_L_Finger0-node": { + "Bip01_L_Finger0": { "children": [ - "Bip01_L_Finger0Nub-node" + "Bip01_L_Finger0Nub" ], - "jointId": "Bone11", + "jointName": "Bip01_L_Finger0", "name": "Bip01_L_Finger0", "rotation": [ - 0.205207, - 0.494818, - -0.84442, - 0.520016 + -0.0619109682738781, + -0.6184658408164978, + -0.3220357596874237, + 0.7141148447990417 ], "scale": [ - 1, - 1, - 1 + 0.9999995231628418, + 1.0000001192092896, + 0.9999997019767761 ], "translation": [ - 186.693, - -2.3e-05, - -9e-06 + -0.000022888199964654632, + 186.6940155029297, + 0.000007629389983776491 ] }, - "Bip01_L_Finger0Nub-node": { + "Bip01_L_Finger0Nub": { "children": [], - "jointId": "Bone12", + "jointName": "Bip01_L_Finger0Nub", "name": "Bip01_L_Finger0Nub", "rotation": [ - 1, - 0, - 0, - 0 + 0.18710121512413025, + 0.18708835542201996, + 0.6819262504577637, + 0.6818854212760925 ], "scale": [ 1, - 1, - 1 + 0.9999998211860657, + 0.9999998211860657 ], "translation": [ - 167.761, - 1.9e-05, - 1.3e-05 + 0, + 167.7620086669922, + -0.00006103519990574569 ] }, - "Bip01_L_Foot-node": { + "Bip01_L_Foot": { "children": [ - "Bip01_L_Toe0-node" + "Bip01_L_Toe0" ], - "jointId": "Bone25", + "jointName": "Bip01_L_Foot", "name": "Bip01_L_Foot", "rotation": [ - 0.0131495, - -0.264758, - 0.964225, - 1.13836 + 0.6655604839324951, + -0.4343610405921936, + 0.2401133030653, + 0.5574094653129578 ], "scale": [ 1, - 1, - 1 + 1.0000001192092896, + 0.9999997019767761 ], "translation": [ - 532.748, - 5.1e-05, - -8e-06 + -0.00006103519990574569, + 532.748046875, + 0.00003814699812210165 ] }, - "Bip01_L_Forearm-node": { + "Bip01_L_Forearm": { "children": [ - "Bip01_L_Hand-node" + "Bip01_L_Hand" ], - "jointId": "Bone9", + "jointName": "Bip01_L_Forearm", "name": "Bip01_L_Forearm", "rotation": [ - 0, - 0, - -1, - 1.07887 + -0.27098697423934937, + -0.08019017428159714, + -0.25969499349594116, + 0.9234143495559692 ], "scale": [ - 1, - 0.999999, - 1 + 0.9999997019767761, + 0.9999995827674866, + 1.0000001192092896 ], "translation": [ - 370.017, - 2e-05, - 0 + -0.00006103519990574569, + 370.01702880859375, + -0.00006103519990574569 ] }, - "Bip01_L_Hand-node": { + "Bip01_L_Hand": { "children": [ - "Bip01_L_Finger0-node" + "Bip01_L_Finger0" ], - "jointId": "Bone10", + "jointName": "Bip01_L_Hand", "name": "Bip01_L_Hand", "rotation": [ - -0.468739, - 0.0882598, - 0.878916, - 0.630255 + 0.31595033407211304, + 0.3460729420185089, + -0.3614858090877533, + 0.8060625791549683 ], "scale": [ - 1, - 1, - 1 + 1.0000001192092896, + 1.0000001192092896, + 0.9999998807907104 ], "translation": [ - 370.018, - -5.8e-05, - -4e-06 + 0.00006103519990574569, + 370.01702880859375, + 0 ] }, - "Bip01_L_Thigh-node": { + "Bip01_L_Thigh": { "children": [ - "Bip01_L_Calf-node" + "Bip01_L_Calf" ], - "jointId": "Bone23", + "jointName": "Bip01_L_Thigh", "name": "Bip01_L_Thigh", "rotation": [ - 0.84539, - 0.505798, - 0.171709, - 3.10411 + 0.5870407819747925, + 0.40257617831230164, + -0.3782249391078949, + 0.5918288826942444 ], "scale": [ + 1.0000007152557373, 1, - 0.999999, - 1 + 0.9999998807907104 ], "translation": [ - -115.92, - 125.412, - 124.981 + -101.90400695800781, + 96.81949615478516, + 158.14300537109375 ] }, - "Bip01_L_Toe0-node": { + "Bip01_L_Toe0": { "children": [ - "Bip01_L_Toe0Nub-node" + "Bip01_L_Toe0Nub" ], - "jointId": "Bone26", + "jointName": "Bip01_L_Toe0", "name": "Bip01_L_Toe0", "rotation": [ - 0, - 0, - 1, - 1.5708 + 0.2559328079223633, + -0.36201807856559753, + -0.32195085287094116, + 0.8365339040756226 ], "scale": [ + 0.9999996423721313, 1, - 1, - 1 + 1.0000007152557373 ], "translation": [ - 214.572, - 189.363, - 3e-05 + -0.00001525879997643642, + 286.1809997558594, + -0.00005340580173651688 ] }, - "Bip01_L_Toe0Nub-node": { + "Bip01_L_Toe0Nub": { "children": [], - "jointId": "Bone27", - "matrix": [ + "jointName": "Bip01_L_Toe0Nub", + "name": "Bip01_L_Toe0Nub", + "rotation": [ + 0.7009931802749634, + -0.7009893655776978, + 0.09279544651508331, + -0.09279819577932358 + ], + "scale": [ 1, - 0, - 0, - 0, - 0, 1, - 0, - 0, - 0, - 0, - -1, - 0, - 166.968, - 0, - 8e-06, 1 ], - "name": "Bip01_L_Toe0Nub" + "translation": [ + 0, + 166.96800231933594, + 0.000011444099982327316 + ] }, - "Bip01_L_UpperArm-node": { + "Bip01_L_UpperArm": { "children": [ - "Bip01_L_Forearm-node" + "Bip01_L_Forearm" ], - "jointId": "Bone8", + "jointName": "Bip01_L_UpperArm", "name": "Bip01_L_UpperArm", "rotation": [ - 0.977167, - -0.155223, - 0.14509, - 3.72504 + -0.5832023024559021, + 0.18192636966705322, + 0.20986215770244598, + 0.7633712887763977 ], "scale": [ + 0.9999998211860657, 1, - 1, - 1 + 1.0000003576278687 ], "translation": [ - 175.071, - 7.1e-05, - 7e-06 + 0, + 175.071014404297, + -0.00006103519990574569 ] }, - "Bip01_Neck-node": { + "Bip01_Neck": { "children": [ - "Bip01_Head-node", - "Bip01_L_Clavicle-node", - "Bip01_R_Clavicle-node" + "Bip01_Head", + "Bip01_L_Clavicle", + "Bip01_R_Clavicle" ], - "jointId": "Bone4", + "jointName": "Bip01_Neck", "name": "Bip01_Neck", "rotation": [ - -0.0848005, - -0.239893, - -0.967088, - 0.699229 + 0.000004574490503728157, + 0.000010040302186098415, + -0.35299697518348694, + 0.9356244802474976 ], "scale": [ - 1, - 1, + 0.9999996423721313, + 0.9999996423721313, 1 ], "translation": [ - 402.56, - -0.112731, - -1.7e-05 + 402.5520324707031, + -0.10438500344753265, + -0.002846479881554842 ] }, - "Bip01_Pelvis-node": { + "Bip01_Pelvis": { "children": [ - "Bip01_Spine-node" + "Bip01_Spine" ], - "jointId": "Bone1", + "jointName": "Bip01_Pelvis", "name": "Bip01_Pelvis", "rotation": [ - -0.959472, - -0.199266, - -0.199266, - 1.61216 + 0.6116809844970703, + 0.35472750663757324, + 0.6117032766342163, + 0.3547307550907135 ], "scale": [ - 1, - 1, + 0.9999999403953552, + 0.9999999403953552, 1 ], "translation": [ - 524.412, - -3.8e-05, - 898.736 + -1.1628599166870117, + 99.43409729003906, + -44.13309860229492 ] }, - "Bip01_R_Calf-node": { + "Bip01_R_Calf": { "children": [ - "Bip01_R_Foot-node" + "Bip01_R_Foot" ], - "jointId": "Bone29", + "jointName": "Bip01_R_Calf", "name": "Bip01_R_Calf", "rotation": [ - 0, - 0, - -1, - 1.52677 + 0.8947625756263733, + -0.0988352969288826, + -0.3619307577610016, + 0.24215206503868103 ], "scale": [ - 1, - 1, - 1 + 1.0000005960464478, + 0.9999998807907104, + 0.999998927116394 ], "translation": [ - 547.819, - 3.7e-05, - -1.5e-05 + -0.00001525879997643642, + 547.819030761719, + 0.000003814699994109105 ] }, - "Bip01_R_Clavicle-node": { + "Bip01_R_Clavicle": { "children": [ - "Bip01_R_UpperArm-node" + "Bip01_R_UpperArm" ], - "jointId": "Bone13", + "jointName": "Bip01_R_Clavicle", "name": "Bip01_R_Clavicle", "rotation": [ - -0.404858, - -0.236589, - 0.883241, - 3.63415 + -0.629516065120697, + -0.3285965025424957, + 0.19581550359725952, + 0.6763062477111816 ], "scale": [ - 1, - 1, - 1 + 1.0000003576278687, + 1.0000001192092896, + 0.9999996423721313 ], "translation": [ - -7.49618, - 0.150702, - -42.5129 + 0.003967289812862873, + 0.14590400457382202, + -43.168800354003906 ] }, - "Bip01_R_Finger0-node": { + "Bip01_R_Finger0": { "children": [ - "Bip01_R_Finger0Nub-node" + "Bip01_R_Finger0Nub" ], - "jointId": "Bone17", + "jointName": "Bip01_R_Finger0", "name": "Bip01_R_Finger0", "rotation": [ - -0.100383, - -0.36566, - -0.925319, - 0.743378 + 0.06190689280629158, + 0.6184580326080322, + -0.3220381438732147, + 0.7141208648681641 ], "scale": [ + 1.0000007152557373, 1, - 1, - 1 + 0.9999999403953552 ], "translation": [ - 186.693, - 5.6e-05, - 3e-06 + 0.00005340580173651688, + 186.69300842285156, + 0.00003051759995287284 ] }, - "Bip01_R_Finger0Nub-node": { + "Bip01_R_Finger0Nub": { "children": [], - "jointId": "Bone18", + "jointName": "Bip01_R_Finger0Nub", "name": "Bip01_R_Finger0Nub", "rotation": [ - -0, - -0, - 1, - 3.14159 + 0.1870800256729126, + -0.18709905445575714, + -0.6818876266479492, + 0.6819269061088562 ], "scale": [ - -1, - -1, - -1 + 1, + 1.0000001192092896, + 1.0000001192092896 ], "translation": [ - 167.761, - -5e-06, - -4.4e-05 + 0, + 167.75999450683594, + 0 ] }, - "Bip01_R_Foot-node": { + "Bip01_R_Foot": { "children": [ - "Bip01_R_Toe0-node" + "Bip01_R_Toe0" ], - "jointId": "Bone30", + "jointName": "Bip01_R_Foot", "name": "Bip01_R_Foot", "rotation": [ - 0.725694, - 0.362838, - 0.584565, - 0.354579 + -0.6655600070953369, + 0.4343647360801697, + 0.24011120200157166, + 0.5574080348014832 ], "scale": [ - 1, - 1, - 1 + 1.0000004768371582, + 0.9999994039535522, + 1.0000003576278687 ], "translation": [ - 532.748, - 4.1e-05, - -2e-06 + 0, + 532.747009277344, + 0 ] }, - "Bip01_R_Forearm-node": { + "Bip01_R_Forearm": { "children": [ - "Bip01_R_Hand-node" + "Bip01_R_Hand" ], - "jointId": "Bone15", + "jointName": "Bip01_R_Forearm", "name": "Bip01_R_Forearm", "rotation": [ - 0, - 0, - -1, - 1.45794 + 0.2709878087043762, + 0.08019044995307922, + -0.25969409942626953, + 0.9234143495559692 ], "scale": [ 1, - 1, - 1 + 0.9999999403953552, + 0.9999998211860657 ], "translation": [ - 370.017, - 2.9e-05, - 3e-06 + 0, + 370.01702880859375, + 0 ] }, - "Bip01_R_Hand-node": { + "Bip01_R_Hand": { "children": [ - "Bip01_R_Finger0-node" + "Bip01_R_Finger0" ], - "jointId": "Bone16", + "jointName": "Bip01_R_Hand", "name": "Bip01_R_Hand", "rotation": [ - 0.983491, - -0.166018, - -0.0719935, - 0.544696 + -0.31595364212989807, + -0.3460785448551178, + -0.3614823818206787, + 0.8060604333877563 ], "scale": [ - 1, - 1, + 1.0000001192092896, + 1.0000003576278687, 1 ], "translation": [ - 370.017, - -2e-06, - 6.4e-05 + 0.00006103519990574569, + 370.01702880859375, + 0 ] }, - "Bip01_R_Thigh-node": { + "Bip01_R_Thigh": { "children": [ - "Bip01_R_Calf-node" + "Bip01_R_Calf" ], - "jointId": "Bone28", + "jointName": "Bip01_R_Thigh", "name": "Bip01_R_Thigh", "rotation": [ - 0.99724, - -0.00466794, - -0.0741011, - 3.2334 + -0.5973690748214722, + -0.39383262395858765, + -0.3649849593639374, + 0.5956777930259705 ], "scale": [ - 1, - 1, + 0.9999995231628418, + 1.000000238418579, 1 ], "translation": [ - -64.1862, - 86.8699, - -181.92 + -107.6760025024414, + 94.97679901123047, + -155.407012939453 ] }, - "Bip01_R_Toe0-node": { + "Bip01_R_Toe0": { "children": [ - "Bip01_R_Toe0Nub-node" + "Bip01_R_Toe0Nub" ], - "jointId": "Bone31", + "jointName": "Bip01_R_Toe0", "name": "Bip01_R_Toe0", "rotation": [ - 0.0298918, - 0.0389551, - 0.998794, - 1.47183 + -0.25593170523643494, + 0.3620147407054901, + -0.321953147649765, + 0.8365347981452942 ], "scale": [ 1, - 1, - 1 + 0.9999997615814209, + 1.0000003576278687 ], "translation": [ - 214.572, - 189.364, - -0 + 0.00001525879997643642, + 286.1809997558594, + -0.000022888199964654632 ] }, - "Bip01_R_Toe0Nub-node": { + "Bip01_R_Toe0Nub": { "children": [], - "jointId": "Bone32", + "jointName": "Bip01_R_Toe0Nub", "name": "Bip01_R_Toe0Nub", "rotation": [ - 1, - 0, - 0, - 0 + 0.7009877562522888, + 0.7009937763214111, + -0.09279316663742065, + -0.09280811995267868 ], "scale": [ 1, - 1, - 1 + 0.9999999403953552, + 0.9999996423721313 ], "translation": [ - 166.968, - 4e-06, - -3.3e-05 + -0.00006103519990574569, + 166.96900939941406, + 0.000003814699994109105 ] }, - "Bip01_R_UpperArm-node": { + "Bip01_R_UpperArm": { "children": [ - "Bip01_R_Forearm-node" + "Bip01_R_Forearm" ], - "jointId": "Bone14", + "jointName": "Bip01_R_UpperArm", "name": "Bip01_R_UpperArm", "rotation": [ - 0.747885, - -0.309236, - -0.587401, - 1.24893 + 0.5734227299690247, + -0.18226781487464905, + 0.23226699233055115, + 0.7642099857330322 ], "scale": [ - 1, - 1, - 1 + 0.9999998807907104, + 1.000000238418579, + 0.9999995231628418 ], "translation": [ - 175.071, - -0.000136, - 1.5e-05 + -0.0003051759849768132, + 175.071014404297, + 0.00007629390165675431 ] }, - "Bip01_Spine-node": { + "Bip01_Spine": { "children": [ - "Bip01_Spine1-node", - "Bip01_R_Thigh-node", - "Bip01_L_Thigh-node", - "Bip01_Tail-node" + "Bip01_Spine1", + "Bip01_R_Thigh", + "Bip01_L_Thigh", + "Bip01_Tail" ], - "jointId": "Bone2", + "jointName": "Bip01_Spine", "name": "Bip01_Spine", "rotation": [ - 0.0503303, - 0.236422, - 0.970346, - 0.884125 + 0.009599284268915653, + -0.0010376517893746495, + 0.9151230454444885, + 0.4030590057373047 ], "scale": [ - 1, - 1, - 1 + 0.9999993443489075, + 1.0000001192092896, + 1.0000004768371582 ], "translation": [ - 142.077, - -0.208117, - -0.038858 + 0, + 142.0540008544922, + 0 ] }, - "Bip01_Spine1-node": { + "Bip01_Spine1": { "children": [ - "Bip01_Neck-node", - "Bone01-node", - "Bone03-node" + "Bip01_Neck" ], - "jointId": "Bone3", + "jointName": "Bip01_Spine1", "name": "Bip01_Spine1", "rotation": [ - 0.339141, - 0.634452, - 0.694589, - 0.318861 + 0.004396272823214531, + 0.002536571817472577, + 0.050762079656124115, + 0.9986978769302368 ], "scale": [ - 1, - 1, - 1 + 1.0000004768371582, + 1.000000238418579, + 1.0000004768371582 ], "translation": [ - 399.228, - -0.310882, - -0.041171 + 399.19500732421875, + -0.3195419907569885, + -0.003049080027267337 ] }, - "Bip01_Tail-node": { + "Bip01_Tail": { "children": [ - "Bip01_Tail1-node" + "Bip01_Tail1" ], - "jointId": "Bone33", + "jointName": "Bip01_Tail", "name": "Bip01_Tail", "rotation": [ - -0.0332696, - 0.042712, - 0.998533, - 2.87002 + 0.003788009285926819, + 0.008884821087, + 0.653293251991272, + 0.7570433616638184 ], "scale": [ 1, - 1, - 1 + 0.9999997019767761, + 1.0000005960464478 ], "translation": [ - -217.547, - 76.1463, - -46.1944 + -229.277008056641, + 51.57169723510742, + 3.9200799465179443 ] }, - "Bip01_Tail1-node": { + "Bip01_Tail1": { "children": [ - "Bip01_Tail2-node" + "Bip01_Tail2" ], - "jointId": "Bone34", + "jointName": "Bip01_Tail1", "name": "Bip01_Tail1", "rotation": [ - 0.0281731, - -0.223504, - 0.974296, - 0.258944 + 0.0000005957685971225146, + 0.00000022050942050100275, + 0.1258912980556488, + 0.9920440316200256 ], "scale": [ - 1, - 1, + 1.0000001192092896, + 1.0000003576278687, 1 ], "translation": [ - 275.134, - -0.261342, - 0 + -0.000007629389983776491, + 275.1340026855469, + 0.00000023841900542720396 ] }, - "Bip01_Tail2-node": { + "Bip01_Tail2": { "children": [ - "Bip01_TailNub-node" + "Bip01_TailNub" ], - "jointId": "Bone35", + "jointName": "Bip01_Tail2", "name": "Bip01_Tail2", "rotation": [ - 0, - -0, - 1, - 0.226614 + -0.0000008796733936833334, + -0.0000006967138688196428, + 0.11349072307348251, + 0.993539035320282 ], "scale": [ - 1, - 1, + 1.0000003576278687, + 1.0000003576278687, 1 ], "translation": [ - 339.089, - -0.290226, - -7e-06 + -0.000022888199964654632, + 339.0890197753906, + 0 ] }, - "Bip01_TailNub-node": { + "Bip01_TailNub": { "children": [], - "jointId": "Bone36", + "jointName": "Bip01_TailNub", "name": "Bip01_TailNub", "rotation": [ - 0.707388, - 0.706825, - 7.06825e-07, - 3.14159 + 0.0003985896473750472, + 0.9999999403953552, + 0.0000003396343686290493, + 0.0000033048602290364215 ], "scale": [ - 1, - 1, + 1.0000003576278687, + 1.0000003576278687, 1 ], "translation": [ - 374.193, - -3.8e-05, - -3e-06 - ] - }, - "Bone01-node": { - "children": [ - "Bone02-node" - ], - "jointId": "Bone21", - "name": "Bone01", - "rotation": [ - 0.998254, - -0.012858, - -0.0576427, - 3.00283 - ], - "scale": [ - 0.993689, - 1.09369, - 9.75437 - ], - "translation": [ - 179.053, - 1051.53, - -104.193 + 0.00001525879997643642, + 374.19000244140625, + 0 ] }, - "Bone02-node": { + "monster": { "children": [], - "jointId": "Bone22", - "name": "Bone02", - "rotation": [ + "matrix": [ 1, 0, 0, - 0 - ], - "scale": [ + 0, + 0, 1, + 0, + 0, + 0, + 0, 1, + 0, + 0, + 0, + 0, 1 ], - "translation": [ - 17.8219, - 1.4e-05, - -2e-06 - ] - }, - "Bone03-node": { - "children": [ - "Bone04-node" - ], - "jointId": "Bone19", - "name": "Bone03", - "rotation": [ - 0.998968, - -0.0442843, - 0.0101098, - 3.11183 + "meshes": [ + "monster-mesh" ], - "scale": [ - 0.657025, - 0.613551, - 7.3972 + "name": "monster", + "skeletons": [ + "Bip01_Pelvis" ], - "translation": [ - 164.819, - 1034.98, - -108.759 - ] + "skin": "Armature_monster-skin" }, - "Bone04-node": { - "children": [], - "jointId": "Bone20", - "name": "Bone04", - "rotation": [ - 1, - 0, - 0, - 0 - ], - "scale": [ - 1, - 1, - 1 + "node_34": { + "children": [ + "Armature", + "monster" ], - "translation": [ - 17.8219, - 7e-06, - -2e-06 - ] - }, - "monster-node": { - "children": [], - "instanceSkin": { - "skeletons": [ - "Bip01_Pelvis-node" - ], - "skin": "monster-mesh-skin-skin", - "sources": [ - "monster-mesh-skin" - ] - }, "matrix": [ 1, 0, 0, 0, 0, - 1, - 0, 0, + -1, 0, 0, 1, @@ -3358,12 +3209,12 @@ 0, 0, 0, + 0, 1 ], - "name": "monster" + "name": "Y_UP_Transform" } }, - "profile": "WebGL 1.0.2", "programs": { "program_0": { "attributes": [ @@ -3389,87 +3240,87 @@ "scenes": { "defaultScene": { "nodes": [ - "Bip01_Pelvis-node", - "monster-node" + "node_34" ] } }, "shaders": { "monster0FS": { - "path": "monster0FS.glsl" + "type": 35632, + "uri": "monster0FS.glsl" }, "monster0VS": { - "path": "monster0VS.glsl" + "type": 35633, + "uri": "monster0VS.glsl" } }, "skins": { - "monster-mesh-skin-skin": { + "Armature_monster-skin": { "bindShapeMatrix": [ + 1, + -0.00000009689329516504586, + -0.000000024223298922265712, 0, - -0.804999, - 0.172274, - 0, - 0, - 0.172274, - 0.804999, - 0, - -0.823226, - 0, + 0.00000004844670087322811, + 1, + -0.0000000000000002933850019954591, 0, + 0.00000004844670087322811, + -0.0000000000000020536900376496485, + 1, 0, - -127.093, - -393.418, - 597.2, + 4.156729698181152, + 3.0385899543762207, + -0.0000009536739753457368, 1 ], - "inverseBindMatrices": { - "bufferView": "bufferView_185", - "byteOffset": 0, - "count": 36, - "type": 35676 - }, - "joints": [ - "Bone1", - "Bone2", - "Bone3", - "Bone4", - "Bone5", - "Bone6", - "Bone7", - "Bone8", - "Bone9", - "Bone10", - "Bone11", - "Bone12", - "Bone13", - "Bone14", - "Bone15", - "Bone16", - "Bone17", - "Bone18", - "Bone19", - "Bone20", - "Bone21", - "Bone22", - "Bone23", - "Bone24", - "Bone25", - "Bone26", - "Bone27", - "Bone28", - "Bone29", - "Bone30", - "Bone31", - "Bone32", - "Bone33", - "Bone34", - "Bone35", - "Bone36" - ] + "inverseBindMatrices": "IBM_Armature_monster-skin", + "jointNames": [ + "Bip01_Pelvis", + "Bip01_Spine", + "Bip01_Spine1", + "Bip01_Neck", + "Bip01_Head", + "Bip01_HeadNub", + "Bip01_L_Clavicle", + "Bip01_L_UpperArm", + "Bip01_L_Forearm", + "Bip01_L_Hand", + "Bip01_L_Finger0", + "Bip01_L_Finger0Nub", + "Bip01_R_Clavicle", + "Bip01_R_UpperArm", + "Bip01_R_Forearm", + "Bip01_R_Hand", + "Bip01_R_Finger0", + "Bip01_R_Finger0Nub", + "Bip01_L_Thigh", + "Bip01_L_Calf", + "Bip01_L_Foot", + "Bip01_L_Toe0", + "Bip01_L_Toe0Nub", + "Bip01_R_Thigh", + "Bip01_R_Calf", + "Bip01_R_Foot", + "Bip01_R_Toe0", + "Bip01_R_Toe0Nub", + "Bip01_Tail", + "Bip01_Tail1", + "Bip01_Tail2", + "Bip01_TailNub" + ], + "name": "Armature" } }, "techniques": { - "technique1": { + "technique0": { + "attributes": { + "a_joint": "joint", + "a_normal": "normal", + "a_position": "position", + "a_texcoord0": "texcoord0", + "a_weight": "weight" + }, "parameters": { "ambient": { "type": 35666 @@ -3477,12 +3328,16 @@ "diffuse": { "type": 35678 }, + "emission": { + "type": 35666 + }, "joint": { "semantic": "JOINT", "type": 35666 }, "jointMat": { - "semantic": "JOINT_MATRIX", + "count": 32, + "semantic": "JOINTMATRIX", "type": 35676 }, "modelViewMatrix": { @@ -3520,68 +3375,34 @@ "type": 35666 } }, - "pass": "defaultPass", - "passes": { - "defaultPass": { - "details": { - "commonProfile": { - "extras": { - "doubleSided": false - }, - "lightingModel": "Blinn", - "parameters": [ - "ambient", - "diffuse", - "jointMat", - "modelViewMatrix", - "normalMatrix", - "projectionMatrix", - "shininess", - "specular" - ], - "texcoordBindings": { - "diffuse": "TEXCOORD_0" - } - }, - "type": "COLLADA-1.4.1/commonProfile" - }, - "instanceProgram": { - "attributes": { - "a_joint": "joint", - "a_normal": "normal", - "a_position": "position", - "a_texcoord0": "texcoord0", - "a_weight": "weight" - }, - "program": "program_0", - "uniforms": { - "u_ambient": "ambient", - "u_diffuse": "diffuse", - "u_jointMat": "jointMat", - "u_modelViewMatrix": "modelViewMatrix", - "u_normalMatrix": "normalMatrix", - "u_projectionMatrix": "projectionMatrix", - "u_shininess": "shininess", - "u_specular": "specular" - } - }, - "states": { - "blendEnable": 0, - "cullFaceEnable": 1, - "depthMask": 1, - "depthTestEnable": 1 - } - } + "program": "program_0", + "states": { + "enable": [ + 2929, + 2884 + ] + }, + "uniforms": { + "u_ambient": "ambient", + "u_diffuse": "diffuse", + "u_emission": "emission", + "u_jointMat": "jointMat", + "u_modelViewMatrix": "modelViewMatrix", + "u_normalMatrix": "normalMatrix", + "u_projectionMatrix": "projectionMatrix", + "u_shininess": "shininess", + "u_specular": "specular" } } }, "textures": { - "texture_image_0": { + "texture_monster_jpg": { "format": 6408, "internalFormat": 6408, "sampler": "sampler_0", - "source": "image_0", - "target": 3553 + "source": "monster_jpg", + "target": 3553, + "type": 5121 } } } \ No newline at end of file diff --git a/examples/models/gltf/monster/glTF/monster.jpg b/examples/models/gltf/monster/glTF/monster.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4f62a7047feafefed3a5ab821cc3ef0d64d5724f Binary files /dev/null and b/examples/models/gltf/monster/glTF/monster.jpg differ diff --git a/examples/models/gltf/monster/monster0FS.glsl b/examples/models/gltf/monster/glTF/monster0FS.glsl similarity index 86% rename from examples/models/gltf/monster/monster0FS.glsl rename to examples/models/gltf/monster/glTF/monster0FS.glsl index b2e545430c032b5c3a748299c23e624c7d4c8e2f..2f22e9bdb3eb1c5122901ac4182fbc802ee28100 100644 --- a/examples/models/gltf/monster/monster0FS.glsl +++ b/examples/models/gltf/monster/glTF/monster0FS.glsl @@ -1,23 +1,25 @@ precision highp float; varying vec3 v_normal; -varying vec4 v_joint; -varying vec4 v_weight; -uniform float u_shininess; uniform vec4 u_ambient; varying vec2 v_texcoord0; uniform sampler2D u_diffuse; +uniform vec4 u_emission; uniform vec4 u_specular; +uniform float u_shininess; void main(void) { vec3 normal = normalize(v_normal); vec4 color = vec4(0., 0., 0., 0.); vec4 diffuse = vec4(0., 0., 0., 1.); +vec4 emission; vec4 ambient; vec4 specular; ambient = u_ambient; diffuse = texture2D(u_diffuse, v_texcoord0); +emission = u_emission; specular = u_specular; diffuse.xyz *= max(dot(normal,vec3(0.,0.,1.)), 0.); color.xyz += diffuse.xyz; +color.xyz += emission.xyz; color = vec4(color.rgb * diffuse.a, diffuse.a); gl_FragColor = color; } diff --git a/examples/models/gltf/monster/monster0VS.glsl b/examples/models/gltf/monster/glTF/monster0VS.glsl similarity index 82% rename from examples/models/gltf/monster/monster0VS.glsl rename to examples/models/gltf/monster/glTF/monster0VS.glsl index 35c23d76b8236e61ac81d1cd54c5fa8342e77038..5de27ea095ab7d0eace23c66991c537301d3b4e4 100644 --- a/examples/models/gltf/monster/monster0VS.glsl +++ b/examples/models/gltf/monster/glTF/monster0VS.glsl @@ -3,10 +3,8 @@ attribute vec3 a_position; attribute vec3 a_normal; varying vec3 v_normal; attribute vec4 a_joint; -varying vec4 v_joint; attribute vec4 a_weight; -varying vec4 v_weight; -uniform mat4 u_jointMat[60]; +uniform mat4 u_jointMat[32]; uniform mat3 u_normalMatrix; uniform mat4 u_modelViewMatrix; uniform mat4 u_projectionMatrix; @@ -18,7 +16,7 @@ skinMat += a_weight.y * u_jointMat[int(a_joint.y)]; skinMat += a_weight.z * u_jointMat[int(a_joint.z)]; skinMat += a_weight.w * u_jointMat[int(a_joint.w)]; vec4 pos = u_modelViewMatrix * skinMat * vec4(a_position,1.0); -v_normal = normalize(u_normalMatrix * mat3(skinMat)* a_normal); +v_normal = u_normalMatrix * mat3(skinMat)* a_normal; v_texcoord0 = a_texcoord0; gl_Position = u_projectionMatrix * pos; } diff --git a/examples/models/gltf/monster/monster.bin b/examples/models/gltf/monster/monster.bin deleted file mode 100644 index 9a8cf3b0828a3d91587a5b1dfe9ed14fcc9411bc..0000000000000000000000000000000000000000 Binary files a/examples/models/gltf/monster/monster.bin and /dev/null differ diff --git a/examples/models/gltf/monster/monster.dae b/examples/models/gltf/monster/monster.dae deleted file mode 100644 index a7b0eff04275a7a88d4b08166530d34d6c5d1057..0000000000000000000000000000000000000000 --- a/examples/models/gltf/monster/monster.dae +++ /dev/null @@ -1,1924 +0,0 @@ - - - - - Tim - 3dsMax 8 - Feeling ColladaMax v3.04E. - ColladaMax Export Options: ExportNormals=1;ExportEPolyAsTriangles=1;ExportXRefs=1;ExportSelected=0;ExportTangents=0;ExportAnimations=1;SampleAnim=1;ExportAnimClip=1;BakeMatrices=1;ExportRelativePaths=1;AnimStart=0;AnimEnd=3.33333; - - 2007-12-05T22:27:58Z - 2007-12-05T22:28:00Z - - Z_UP - - - - - 0 0.033333 0.066666 0.1 0.133333 0.166667 0.2 0.233333 0.266667 0.3 0.333333 0.366667 0.4 0.433333 0.466667 0.5 0.533333 0.566667 0.6 0.633333 0.666667 0.7 0.733333 0.766667 0.8 0.833333 0.866667 0.9 0.933333 0.966667 1 1.03333 1.06667 1.1 1.13333 1.16667 1.2 1.23333 1.26667 1.3 1.33333 1.36667 1.4 1.43333 1.46667 1.5 1.53333 1.56667 1.6 1.63333 1.66667 1.7 1.73333 1.76667 1.8 1.83333 1.86667 1.9 1.93333 1.96667 2 2.03333 2.06667 2.1 2.13333 2.16667 2.2 2.23333 2.26667 2.3 2.33333 2.36667 2.4 2.43333 2.46667 2.5 2.53333 2.56667 2.6 2.63333 2.66667 2.7 2.73333 2.76667 2.8 2.83333 2.86667 2.9 2.93333 2.96667 3 3.03333 3.06667 3.1 3.13333 3.16667 3.2 3.23333 3.26667 3.3 3.33333 - - - - - - - CONSTANT - CONSTANT - - - - 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 524.412 - - - - - - - - LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR - - - - - - - - - - - - - - - - 0 0.033333 0.066666 0.1 0.133333 0.166667 0.2 0.233333 0.266667 0.3 0.333333 0.366667 0.4 0.433333 0.466667 0.5 0.533333 0.566667 0.6 0.633333 0.666667 0.7 0.733333 0.766667 0.8 0.833333 0.866667 0.9 0.933333 0.966667 1 1.03333 1.06667 1.1 1.13333 1.16667 1.2 1.23333 1.26667 1.3 1.33333 1.36667 1.4 1.43333 1.46667 1.5 1.53333 1.56667 1.6 1.63333 1.66667 1.7 1.73333 1.76667 1.8 1.83333 1.86667 1.9 1.93333 1.96667 2 2.03333 2.06667 2.1 2.13333 2.16667 2.2 2.23333 2.26667 2.3 2.33333 2.36667 2.4 2.43333 2.46667 2.5 2.53333 2.56667 2.6 2.63333 2.66667 2.7 2.73333 2.76667 2.8 2.83333 2.86667 2.9 2.93333 2.96667 3 3.03333 3.06667 3.1 3.13333 3.16667 3.2 3.23333 3.26667 3.3 3.33333 - - - - - - - CONSTANT - CONSTANT - - - - 0.634893 -0.746072 0.200716 142.077 0.754783 0.654426 0.045049 -0.208117 -0.164963 0.122896 0.978613 -0.038858 0 0 0 1 0.656578 -0.735841 0.165663 142.074 0.742122 0.66948 0.032417 -0.212967 -0.134763 0.101657 0.985649 -0.032083 0 0 0 1 0.678956 -0.722669 0.129492 142.07 0.72686 0.686492 0.020085 -0.218372 -0.10341 0.080485 0.991377 -0.025354 0 0 0 1 0.700457 -0.707696 0.092341 142.065 0.710159 0.703991 0.008407 -0.22395 -0.070957 0.059687 0.995692 -0.018779 0 0 0 1 0.719307 -0.692503 0.055107 142.06 0.693643 0.720316 -0.002208 -0.229009 -0.038165 0.039812 0.998479 -0.012442 0 0 0 1 0.733723 -0.679171 0.019447 142.056 0.679418 0.733663 -0.011399 -0.233311 -0.006525 0.021576 0.999746 -0.006653 0 0 0 1 0.742772 -0.669391 -0.014317 142.053 0.669129 0.742894 -0.019363 -0.236128 0.023597 0.004802 0.99971 -0.001338 0 0 0 1 0.745243 -0.665264 -0.045129 142.051 0.664827 0.746535 -0.026246 -0.237349 0.051151 -0.010442 0.998636 0.003494 0 0 0 1 0.739872 -0.668541 -0.075111 142.052 0.668221 0.743229 -0.033032 -0.236398 0.077908 -0.025751 0.996628 0.008385 0 0 0 1 0.727293 -0.677968 -0.10679 142.055 0.678092 0.733846 -0.040754 -0.23335 0.105998 -0.042772 0.993446 0.013779 0 0 0 1 0.709351 -0.691197 -0.138087 142.06 0.692104 0.720117 -0.049232 -0.228875 0.133467 -0.060647 0.989195 0.019444 0 0 0 1 0.688661 -0.705719 -0.166454 142.064 0.70765 0.70419 -0.057854 -0.223847 0.158044 -0.077948 0.984351 0.02496 0 0 0 1 0.667464 -0.71984 -0.190585 142.069 0.722898 0.68779 -0.066058 -0.218803 0.178634 -0.093681 0.979446 0.029921 0 0 0 1 0.648694 -0.731889 -0.208649 142.072 0.735967 0.673083 -0.07287 -0.214113 0.193771 -0.106288 0.975273 0.033917 0 0 0 1 0.635736 -0.740263 -0.218748 142.075 0.745006 0.662589 -0.077088 -0.210734 0.202005 -0.113962 0.972732 0.036378 0 0 0 1 0.631353 -0.743775 -0.219526 142.076 0.748633 0.658414 -0.077714 -0.209357 0.202341 -0.115279 0.972506 0.036811 0 0 0 1 0.639455 -0.740611 -0.206382 142.075 0.74476 0.663342 -0.072869 -0.21107 0.19087 -0.107108 0.975754 0.034226 0 0 0 1 0.658127 -0.7313 -0.17908 142.072 0.734108 0.676098 -0.063069 -0.214937 0.167198 -0.089957 0.981811 0.028779 0 0 0 1 0.682279 -0.717324 -0.141212 142.068 0.718677 0.693508 -0.050505 -0.220506 0.13416 -0.067028 0.98869 0.021456 0 0 0 1 0.706958 -0.700596 -0.096834 142.063 0.700836 0.712349 -0.037254 -0.226509 0.09508 -0.041527 0.994603 0.013375 0 0 0 1 0.727548 -0.684132 -0.051355 142.057 0.683876 0.729164 -0.025159 -0.231855 0.054658 -0.016815 0.998364 0.005511 0 0 0 1 0.741377 -0.671034 -0.008532 142.053 0.670889 0.741408 -0.014916 -0.235773 0.016334 0.005335 0.999852 -0.001495 0 0 0 1 0.745878 -0.665581 0.025876 142.051 0.665926 0.745984 -0.007204 -0.237276 -0.014507 0.022606 0.999639 -0.007 0 0 0 1 0.741021 -0.669153 0.055878 142.053 0.670216 0.742166 -0.000369 -0.235941 -0.041224 0.037724 0.998438 -0.011771 0 0 0 1 0.728982 -0.678904 0.08761 142.056 0.681026 0.732222 0.007446 -0.232832 -0.069205 0.054237 0.996127 -0.017047 0 0 0 1 0.711567 -0.692471 0.11898 142.06 0.695955 0.717906 0.016051 -0.228272 -0.096531 0.071384 0.992767 -0.022474 0 0 0 1 0.69135 -0.707318 0.147433 142.065 0.712322 0.701414 0.024821 -0.223069 -0.120968 0.08786 0.988761 -0.027716 0 0 0 1 0.670426 -0.721817 0.171783 142.069 0.728349 0.6844 0.033225 -0.217625 -0.141551 0.102843 0.984574 -0.032467 0 0 0 1 0.65207 -0.734019 0.189789 142.073 0.741832 0.669385 0.040118 -0.212923 -0.15649 0.114631 0.981005 -0.036199 0 0 0 1 0.63927 -0.742536 0.199935 142.076 0.751145 0.658641 0.044415 -0.20942 -0.164666 0.121787 0.978802 -0.038464 0 0 0 1 0.634893 -0.746072 0.200716 142.077 0.754783 0.654426 0.045049 -0.208117 -0.164963 0.122896 0.978613 -0.038818 0 0 0 1 0.642774 -0.742753 0.187513 142.076 0.750525 0.659624 0.040102 -0.209793 -0.153475 0.114957 0.981443 -0.036314 0 0 0 1 0.660989 -0.733117 0.160104 142.073 0.739081 0.672943 0.030114 -0.214031 -0.129818 0.098425 0.986641 -0.031063 0 0 0 1 0.684506 -0.718707 0.122114 142.068 0.722545 0.691107 0.017339 -0.219705 -0.096855 0.076365 0.992365 -0.024055 0 0 0 1 0.708432 -0.701496 0.077634 142.063 0.703398 0.710786 0.003912 -0.226003 -0.057926 0.051836 0.996974 -0.016251 0 0 0 1 0.728245 -0.684565 0.032095 142.057 0.685088 0.728413 -0.008287 -0.231614 -0.017705 0.028024 0.99945 -0.0087 0 0 0 1 0.741286 -0.671107 -0.010503 142.053 0.670885 0.74133 -0.018506 -0.235761 0.020206 0.00667 0.999774 -0.001929 0 0 0 1 0.745243 -0.665263 -0.045141 142.051 0.664827 0.746536 -0.026249 -0.237381 0.051162 -0.010448 0.998636 0.003496 0 0 0 1 0.739872 -0.668541 -0.075111 142.052 0.668221 0.743229 -0.033032 -0.236423 0.077908 -0.025751 0.996628 0.008385 0 0 0 1 0.727198 -0.678039 -0.106987 142.055 0.678167 0.733774 -0.040805 -0.23327 0.106172 -0.042882 0.993423 0.013814 0 0 0 1 0.709351 -0.691197 -0.138087 142.06 0.692103 0.720118 -0.049232 -0.228943 0.133467 -0.060647 0.989195 0.019444 0 0 0 1 0.688661 -0.705719 -0.166454 142.064 0.70765 0.70419 -0.057854 -0.223988 0.158044 -0.077948 0.984351 0.024921 0 0 0 1 0.667339 -0.719921 -0.190717 142.069 0.722986 0.687693 -0.066105 -0.218667 0.178746 -0.09377 0.979417 0.029988 0 0 0 1 0.648695 -0.731889 -0.208648 142.073 0.735967 0.673083 -0.07287 -0.214089 0.193771 -0.106288 0.975272 0.033957 0 0 0 1 0.635736 -0.740263 -0.218748 142.075 0.745006 0.662589 -0.077088 -0.210759 0.202005 -0.113962 0.972732 0.036378 0 0 0 1 0.631353 -0.743775 -0.219526 142.076 0.748633 0.658414 -0.077714 -0.209386 0.202341 -0.115279 0.972507 0.036771 0 0 0 1 0.639455 -0.740611 -0.206382 142.075 0.74476 0.663342 -0.072869 -0.21107 0.19087 -0.107108 0.975754 0.034187 0 0 0 1 0.658127 -0.7313 -0.17908 142.072 0.734108 0.676098 -0.063069 -0.214999 0.167198 -0.089957 0.981811 0.028779 0 0 0 1 0.682279 -0.717324 -0.141212 142.068 0.718677 0.693508 -0.050505 -0.220562 0.13416 -0.067028 0.98869 0.021496 0 0 0 1 0.706958 -0.700596 -0.096834 142.063 0.700836 0.712349 -0.037254 -0.226509 0.09508 -0.041527 0.994603 0.013375 0 0 0 1 0.727548 -0.684132 -0.051355 142.057 0.683876 0.729164 -0.025159 -0.231855 0.054658 -0.016815 0.998364 0.005511 0 0 0 1 0.741321 -0.671093 -0.008773 142.053 0.670946 0.741355 -0.01497 -0.235749 0.016551 0.005211 0.999849 -0.001456 0 0 0 1 0.745878 -0.665581 0.025877 142.051 0.665926 0.745984 -0.007204 -0.237245 -0.014508 0.022606 0.999639 -0.007 0 0 0 1 0.741021 -0.669153 0.055878 142.053 0.670216 0.742166 -0.000369 -0.235997 -0.041224 0.037724 0.998438 -0.011771 0 0 0 1 0.72889 -0.678977 0.087807 142.056 0.681107 0.732146 0.007496 -0.232876 -0.069377 0.054342 0.996109 -0.01708 0 0 0 1 0.711568 -0.692471 0.118979 142.06 0.695955 0.717906 0.016051 -0.22824 -0.096531 0.071383 0.992767 -0.022474 0 0 0 1 0.69135 -0.707318 0.147433 142.065 0.712322 0.701414 0.024821 -0.223125 -0.120968 0.08786 0.988761 -0.027716 0 0 0 1 0.670426 -0.721817 0.171783 142.069 0.728349 0.6844 0.033225 -0.217606 -0.141551 0.102843 0.984574 -0.032467 0 0 0 1 0.65207 -0.734019 0.189789 142.073 0.741832 0.669385 0.040118 -0.212899 -0.15649 0.114631 0.981005 -0.0362 0 0 0 1 0.63927 -0.742536 0.199935 142.076 0.751145 0.658641 0.044415 -0.209408 -0.164666 0.121787 0.978802 -0.038503 0 0 0 1 0.634893 -0.746072 0.200716 142.077 0.754783 0.654426 0.045049 -0.208117 -0.164963 0.122896 0.978613 -0.038818 0 0 0 1 0.642691 -0.742792 0.18764 142.076 0.750573 0.659566 0.040151 -0.209719 -0.153585 0.115033 0.981417 -0.036338 0 0 0 1 0.660989 -0.733117 0.160104 142.073 0.739081 0.672943 0.030114 -0.214031 -0.129818 0.098425 0.986641 -0.031063 0 0 0 1 0.684655 -0.718609 0.121856 142.068 0.722434 0.691224 0.017256 -0.219791 -0.09663 0.076219 0.992398 -0.024008 0 0 0 1 0.708431 -0.701496 0.077635 142.063 0.703398 0.710785 0.003912 -0.226059 -0.057927 0.051837 0.996974 -0.016251 0 0 0 1 0.728245 -0.684565 0.032095 142.057 0.685088 0.728413 -0.008287 -0.231614 -0.017705 0.028024 0.99945 -0.0087 0 0 0 1 0.741286 -0.671107 -0.010503 142.053 0.670885 0.74133 -0.018506 -0.235705 0.020206 0.00667 0.999774 -0.001929 0 0 0 1 0.745243 -0.665263 -0.045141 142.051 0.664827 0.746536 -0.026249 -0.237381 0.051162 -0.010448 0.998636 0.003496 0 0 0 1 0.739872 -0.668541 -0.075111 142.052 0.668221 0.743229 -0.033032 -0.236423 0.077908 -0.025751 0.996628 0.008385 0 0 0 1 0.727198 -0.678039 -0.106987 142.055 0.678167 0.733774 -0.040805 -0.23327 0.106172 -0.042882 0.993423 0.013814 0 0 0 1 0.709351 -0.691197 -0.138087 142.06 0.692103 0.720118 -0.049232 -0.228943 0.133467 -0.060647 0.989195 0.019444 0 0 0 1 0.688661 -0.705719 -0.166454 142.064 0.70765 0.70419 -0.057854 -0.223988 0.158044 -0.077948 0.984351 0.024921 0 0 0 1 0.667464 -0.71984 -0.190585 142.069 0.722898 0.68779 -0.066058 -0.218747 0.178634 -0.093681 0.979446 0.02996 0 0 0 1 0.648694 -0.731889 -0.208649 142.073 0.735967 0.673083 -0.07287 -0.214089 0.193771 -0.106288 0.975272 0.033957 0 0 0 1 0.635736 -0.740263 -0.218748 142.075 0.745006 0.662589 -0.077088 -0.210759 0.202005 -0.113962 0.972732 0.036378 0 0 0 1 0.631353 -0.743775 -0.219526 142.076 0.748633 0.658414 -0.077714 -0.209386 0.202341 -0.115279 0.972507 0.036771 0 0 0 1 0.63937 -0.740649 -0.206508 142.075 0.744804 0.663287 -0.072917 -0.210878 0.19098 -0.107187 0.975724 0.034252 0 0 0 1 0.658127 -0.7313 -0.17908 142.072 0.734108 0.676098 -0.063069 -0.214999 0.167198 -0.089957 0.981811 0.028779 0 0 0 1 0.682432 -0.717229 -0.140955 142.068 0.718573 0.693621 -0.050423 -0.220581 0.133935 -0.066876 0.988731 0.021408 0 0 0 1 0.706957 -0.700596 -0.096835 142.063 0.700836 0.712349 -0.037254 -0.226497 0.095081 -0.041528 0.994603 0.013375 0 0 0 1 0.727548 -0.684132 -0.051355 142.057 0.683876 0.729164 -0.025159 -0.231855 0.054658 -0.016815 0.998364 0.005511 0 0 0 1 0.741321 -0.671093 -0.008773 142.053 0.670946 0.741355 -0.01497 -0.235749 0.016551 0.005211 0.999849 -0.001456 0 0 0 1 0.74588 -0.665586 0.025674 142.051 0.665927 0.745982 -0.007249 -0.237245 -0.014327 0.022505 0.999644 -0.006968 0 0 0 1 0.741021 -0.669153 0.055878 142.053 0.670216 0.742166 -0.000369 -0.235997 -0.041224 0.037724 0.998438 -0.011771 0 0 0 1 0.72889 -0.678977 0.087807 142.056 0.681107 0.732146 0.007496 -0.232876 -0.069377 0.054342 0.996109 -0.01708 0 0 0 1 0.711568 -0.692471 0.118979 142.06 0.695955 0.717906 0.016051 -0.22824 -0.096531 0.071383 0.992767 -0.022474 0 0 0 1 0.69135 -0.707318 0.147433 142.065 0.712322 0.701414 0.024821 -0.223125 -0.120968 0.08786 0.988761 -0.027716 0 0 0 1 0.670549 -0.721734 0.171651 142.069 0.728257 0.6845 0.033177 -0.21763 -0.14144 0.102759 0.984599 -0.03244 0 0 0 1 0.65207 -0.734019 0.189789 142.073 0.741832 0.669384 0.040118 -0.212899 -0.156491 0.114631 0.981004 -0.036199 0 0 0 1 0.63927 -0.742536 0.199935 142.076 0.751145 0.658641 0.044415 -0.209408 -0.164666 0.121787 0.978802 -0.038464 0 0 0 1 0.634893 -0.746072 0.200716 142.077 0.754783 0.654426 0.045049 -0.208117 -0.164963 0.122896 0.978613 -0.038818 0 0 0 1 0.642691 -0.742792 0.18764 142.076 0.750573 0.659566 0.040151 -0.209831 -0.153585 0.115033 0.981417 -0.036338 0 0 0 1 0.660989 -0.733117 0.160104 142.073 0.739081 0.672943 0.030114 -0.214055 -0.129818 0.098425 0.986641 -0.031063 0 0 0 1 0.684655 -0.718609 0.121856 142.068 0.722434 0.691224 0.017256 -0.219791 -0.09663 0.076219 0.992398 -0.024008 0 0 0 1 0.708431 -0.701496 0.077635 142.063 0.703398 0.710785 0.003912 -0.226059 -0.057927 0.051837 0.996974 -0.016251 0 0 0 1 0.728245 -0.684565 0.032095 142.057 0.685088 0.728413 -0.008287 -0.231614 -0.017705 0.028024 0.99945 -0.0087 0 0 0 1 0.741286 -0.671107 -0.010503 142.053 0.670885 0.74133 -0.018506 -0.235705 0.020206 0.00667 0.999774 -0.001929 0 0 0 1 0.74525 -0.665269 -0.044939 142.051 0.664833 0.746532 -0.026204 -0.237381 0.050982 -0.010347 0.998646 0.003464 0 0 0 1 0.739872 -0.668541 -0.075111 142.052 0.668221 0.743229 -0.033032 -0.236423 0.077908 -0.025751 0.996628 0.008385 0 0 0 1 0.727198 -0.678039 -0.106987 142.055 0.678167 0.733774 -0.040805 -0.23327 0.106172 -0.042882 0.993423 0.013814 0 0 0 1 0.709351 -0.691197 -0.138087 142.06 0.692103 0.720118 -0.049232 -0.228943 0.133467 -0.060647 0.989195 0.019444 0 0 0 1 - - - - - - - - LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR - - - - - - - - - - - - - - - - 0 0.033333 0.066666 0.1 0.133333 0.166667 0.2 0.233333 0.266667 0.3 0.333333 0.366667 0.4 0.433333 0.466667 0.5 0.533333 0.566667 0.6 0.633333 0.666667 0.7 0.733333 0.766667 0.8 0.833333 0.866667 0.9 0.933333 0.966667 1 1.03333 1.06667 1.1 1.13333 1.16667 1.2 1.23333 1.26667 1.3 1.33333 1.36667 1.4 1.43333 1.46667 1.5 1.53333 1.56667 1.6 1.63333 1.66667 1.7 1.73333 1.76667 1.8 1.83333 1.86667 1.9 1.93333 1.96667 2 2.03333 2.06667 2.1 2.13333 2.16667 2.2 2.23333 2.26667 2.3 2.33333 2.36667 2.4 2.43333 2.46667 2.5 2.53333 2.56667 2.6 2.63333 2.66667 2.7 2.73333 2.76667 2.8 2.83333 2.86667 2.9 2.93333 2.96667 3 3.03333 3.06667 3.1 3.13333 3.16667 3.2 3.23333 3.26667 3.3 3.33333 - - - - - - - CONSTANT - CONSTANT - - - - 0.955391 -0.206897 0.210765 399.228 0.228589 0.969883 -0.084102 -0.310882 -0.187017 0.128529 0.973912 -0.041171 0 0 0 1 0.965973 -0.190211 0.175255 399.223 0.205482 0.975905 -0.073387 -0.312763 -0.157073 0.106902 0.981784 -0.034244 0 0 0 1 0.975593 -0.169997 0.138993 399.216 0.17987 0.981749 -0.061766 -0.31485 -0.125956 0.085259 0.988365 -0.027321 0 0 0 1 0.983676 -0.148038 0.102302 399.21 0.153624 0.986912 -0.049034 -0.316422 -0.093704 0.06395 0.993544 -0.020505 0 0 0 1 0.989749 -0.12658 0.06614 399.202 0.129106 0.990999 -0.035398 -0.317631 -0.061064 0.043574 0.997182 -0.013939 0 0 0 1 0.993596 -0.10835 0.032056 399.197 0.109068 0.993801 -0.021553 -0.318778 -0.029522 0.024911 0.999254 -0.00799 0 0 0 1 0.99544 -0.09539 0.000194 399.192 0.095388 0.995409 -0.007851 -0.319175 0.000555 0.007834 0.999969 -0.002518 0 0 0 1 0.995505 -0.090261 -0.028676 399.191 0.090438 0.99589 0.004962 -0.319232 0.02811 -0.007534 0.999577 0.002389 0 0 0 1 0.993832 -0.095217 -0.056844 399.193 0.09634 0.995197 0.017363 -0.318988 0.054918 -0.022732 0.998232 0.007281 0 0 0 1 0.990256 -0.10877 -0.08696 399.197 0.111738 0.993284 0.03002 -0.31841 0.083111 -0.039444 0.995759 0.012645 0 0 0 1 0.984822 -0.127982 -0.117244 399.203 0.133656 0.990144 0.041846 -0.317515 0.110734 -0.056881 0.992221 0.01823 0 0 0 1 0.978027 -0.149529 -0.145274 399.21 0.158445 0.986008 0.05181 -0.316117 0.135494 -0.073689 0.988034 0.023578 0 0 0 1 0.970555 -0.170998 -0.169654 399.217 0.183298 0.98125 0.059589 -0.314707 0.156283 -0.088932 0.9837 0.028471 0 0 0 1 0.963609 -0.189722 -0.188315 399.223 0.204962 0.976618 0.064873 -0.313193 0.171604 -0.101111 0.979964 0.032378 0 0 0 1 0.958772 -0.202873 -0.198997 399.227 0.219931 0.973177 0.067501 -0.312097 0.179965 -0.108483 0.977673 0.034717 0 0 0 1 0.957418 -0.20821 -0.199999 399.229 0.225455 0.971915 0.06746 -0.311519 0.180336 -0.109679 0.977471 0.035121 0 0 0 1 0.961353 -0.202545 -0.186482 399.227 0.217529 0.973985 0.063524 -0.312288 0.168764 -0.101634 0.980402 0.032528 0 0 0 1 0.969461 -0.187076 -0.158579 399.222 0.197873 0.978675 0.05514 -0.313723 0.144882 -0.084835 0.985805 0.027163 0 0 0 1 0.978909 -0.164955 -0.120524 399.215 0.171123 0.984325 0.042684 -0.31564 0.111594 -0.062409 0.991792 0.019998 0 0 0 1 0.987205 -0.139712 -0.076853 399.207 0.142128 0.989483 0.026904 -0.317216 0.072286 -0.037483 0.996679 0.012001 0 0 0 1 0.992711 -0.115905 -0.033035 399.199 0.116276 0.993171 0.009543 -0.318509 0.031704 -0.013315 0.999409 0.00425 0 0 0 1 0.995199 -0.097582 0.007491 399.193 0.097638 0.995192 -0.007723 -0.319094 -0.006701 0.008417 0.999943 -0.002714 0 0 0 1 0.995142 -0.090075 0.039714 399.191 0.090996 0.995608 -0.022011 -0.319168 -0.037557 0.025519 0.998969 -0.008182 0 0 0 1 0.993175 -0.094866 0.067854 399.192 0.097358 0.994655 -0.03438 -0.318922 -0.06423 0.040751 0.997103 -0.013069 0 0 0 1 0.989289 -0.108235 0.09794 399.197 0.113233 0.992457 -0.04699 -0.318164 -0.092115 0.057577 0.994082 -0.018463 0 0 0 1 0.983553 -0.127254 0.128181 399.203 0.135618 0.989018 -0.05875 -0.317146 -0.119298 0.075168 0.99001 -0.024092 0 0 0 1 0.976487 -0.148615 0.156162 399.21 0.160825 0.984593 -0.06864 -0.315735 -0.143555 0.092141 0.985344 -0.029526 0 0 0 1 0.968742 -0.170039 0.180626 399.216 0.186176 0.979543 -0.076381 -0.314112 -0.163944 0.107623 0.980581 -0.034523 0 0 0 1 0.961677 -0.188504 0.199109 399.222 0.20795 0.974734 -0.081559 -0.312503 -0.178704 0.119838 0.976577 -0.038408 0 0 0 1 0.956748 -0.201573 0.209765 399.227 0.22306 0.971166 -0.084146 -0.311316 -0.186755 0.127297 0.974124 -0.040785 0 0 0 1 0.955391 -0.206897 0.210765 399.228 0.228589 0.969883 -0.084102 -0.310877 -0.187017 0.128529 0.973912 -0.04118 0 0 0 1 0.959453 -0.201321 0.197282 399.226 0.220467 0.97209 -0.080218 -0.311703 -0.175627 0.12046 0.977059 -0.038605 0 0 0 1 0.967822 -0.186037 0.169441 399.222 0.200407 0.977069 -0.07193 -0.313277 -0.152174 0.103572 0.982912 -0.033186 0 0 0 1 0.977635 -0.164164 0.131456 399.215 0.173094 0.983101 -0.059582 -0.315182 -0.119453 0.081003 0.98953 -0.025941 0 0 0 1 0.986361 -0.139196 0.087843 399.207 0.143433 0.988686 -0.043891 -0.316995 -0.08074 0.055893 0.995167 -0.017905 0 0 0 1 0.992311 -0.115658 0.044061 399.199 0.116894 0.992789 -0.026584 -0.318304 -0.040668 0.03153 0.998675 -0.010117 0 0 0 1 0.995213 -0.097655 0.00377 399.193 0.097687 0.995172 -0.009433 -0.31911 -0.002831 0.009756 0.999948 -0.00311 0 0 0 1 0.995505 -0.090261 -0.028687 399.191 0.090438 0.99589 0.004967 -0.319313 0.028121 -0.00754 0.999576 0.00239 0 0 0 1 0.993832 -0.095217 -0.056844 399.193 0.09634 0.995197 0.017363 -0.319129 0.054918 -0.022732 0.998232 0.007284 0 0 0 1 0.990228 -0.108872 -0.087149 399.197 0.111855 0.993268 0.030097 -0.318609 0.083286 -0.039551 0.99574 0.01267 0 0 0 1 0.984822 -0.127982 -0.117244 399.203 0.133656 0.990143 0.041845 -0.317517 0.110733 -0.05688 0.992221 0.018212 0 0 0 1 0.978027 -0.149529 -0.145274 399.21 0.158445 0.986008 0.05181 -0.316148 0.135494 -0.073689 0.988034 0.023584 0 0 0 1 0.970509 -0.171123 -0.169789 399.217 0.183443 0.98122 0.05963 -0.314618 0.156396 -0.089017 0.983674 0.028521 0 0 0 1 0.96361 -0.189722 -0.188315 399.223 0.204962 0.976618 0.064873 -0.313081 0.171604 -0.101111 0.979964 0.032382 0 0 0 1 0.958771 -0.202873 -0.198997 399.227 0.219931 0.973177 0.067501 -0.312043 0.179965 -0.108483 0.977673 0.03471 0 0 0 1 0.957418 -0.20821 -0.199999 399.229 0.225455 0.971915 0.06746 -0.311548 0.180336 -0.109679 0.977471 0.03511 0 0 0 1 0.961353 -0.202545 -0.186482 399.227 0.217529 0.973985 0.063524 -0.312228 0.168764 -0.101634 0.980402 0.03253 0 0 0 1 0.969461 -0.187076 -0.158579 399.222 0.197873 0.978675 0.05514 -0.313723 0.144882 -0.084835 0.985805 0.027163 0 0 0 1 0.978909 -0.164955 -0.120524 399.215 0.171123 0.984325 0.042684 -0.315657 0.111594 -0.062409 0.991792 0.019995 0 0 0 1 0.987205 -0.139712 -0.076853 399.207 0.142128 0.989483 0.026904 -0.317215 0.072286 -0.037483 0.996679 0.011997 0 0 0 1 0.992711 -0.115905 -0.033035 399.199 0.116276 0.993171 0.009543 -0.318509 0.031704 -0.013315 0.999409 0.00425 0 0 0 1 0.995193 -0.097664 0.007265 399.193 0.097718 0.995185 -0.007622 -0.318998 -0.006485 0.008296 0.999945 -0.002676 0 0 0 1 0.995142 -0.090075 0.039714 399.191 0.090996 0.995608 -0.022011 -0.31912 -0.037558 0.025519 0.998969 -0.008181 0 0 0 1 0.993175 -0.094866 0.067854 399.192 0.097358 0.994655 -0.03438 -0.3188 -0.06423 0.040751 0.997103 -0.013075 0 0 0 1 0.989259 -0.108336 0.098128 399.197 0.113353 0.99244 -0.047066 -0.318201 -0.092287 0.057684 0.99406 -0.018493 0 0 0 1 0.983553 -0.127254 0.12818 399.203 0.135618 0.989018 -0.05875 -0.317132 -0.119297 0.075167 0.99001 -0.024082 0 0 0 1 0.976487 -0.148614 0.156162 399.21 0.160825 0.984593 -0.06864 -0.315693 -0.143555 0.092141 0.985343 -0.029518 0 0 0 1 0.968742 -0.170039 0.180626 399.216 0.186176 0.979543 -0.076381 -0.314056 -0.163944 0.107623 0.980581 -0.034507 0 0 0 1 0.961677 -0.188504 0.199109 399.222 0.20795 0.974734 -0.081559 -0.312417 -0.178704 0.119838 0.976577 -0.038397 0 0 0 1 0.956748 -0.201573 0.209765 399.227 0.22306 0.971166 -0.084146 -0.311563 -0.186755 0.127297 0.974124 -0.040786 0 0 0 1 0.955391 -0.206897 0.210765 399.228 0.228589 0.969883 -0.084102 -0.310877 -0.187017 0.128529 0.973912 -0.04118 0 0 0 1 0.959413 -0.201385 0.197412 399.227 0.220555 0.972067 -0.080255 -0.311637 -0.175736 0.120538 0.97703 -0.038619 0 0 0 1 0.967822 -0.186037 0.169441 399.222 0.200407 0.977069 -0.07193 -0.313277 -0.152174 0.103572 0.982912 -0.033186 0 0 0 1 0.977694 -0.164018 0.131201 399.215 0.172916 0.983138 -0.059495 -0.315219 -0.11923 0.080853 0.989569 -0.0259 0 0 0 1 0.986361 -0.139197 0.087844 399.207 0.143434 0.988686 -0.043891 -0.316945 -0.080741 0.055893 0.995167 -0.017907 0 0 0 1 0.992311 -0.115658 0.044061 399.199 0.116894 0.992789 -0.026584 -0.318304 -0.040668 0.03153 0.998675 -0.010117 0 0 0 1 0.995213 -0.097655 0.003769 399.193 0.097687 0.995172 -0.009433 -0.318995 -0.002831 0.009756 0.999948 -0.00311 0 0 0 1 0.995505 -0.090261 -0.028687 399.191 0.090438 0.99589 0.004967 -0.319313 0.028121 -0.00754 0.999576 0.00239 0 0 0 1 0.993832 -0.095217 -0.056844 399.193 0.09634 0.995197 0.017363 -0.319129 0.054918 -0.022732 0.998232 0.007284 0 0 0 1 0.990228 -0.108872 -0.087149 399.197 0.111855 0.993268 0.030097 -0.318609 0.083286 -0.039551 0.99574 0.01267 0 0 0 1 0.984822 -0.127982 -0.117244 399.203 0.133656 0.990144 0.041845 -0.317517 0.110733 -0.05688 0.992221 0.018212 0 0 0 1 0.978027 -0.149529 -0.145274 399.21 0.158445 0.986008 0.05181 -0.316148 0.135494 -0.073689 0.988034 0.023584 0 0 0 1 0.970555 -0.170998 -0.169654 399.217 0.183298 0.98125 0.05959 -0.314634 0.156283 -0.088932 0.9837 0.028506 0 0 0 1 0.96361 -0.189722 -0.188315 399.223 0.204962 0.976618 0.064874 -0.31312 0.171604 -0.101111 0.979964 0.032388 0 0 0 1 0.958771 -0.202873 -0.198997 399.227 0.219931 0.973177 0.067501 -0.312043 0.179965 -0.108483 0.977673 0.03471 0 0 0 1 0.957418 -0.20821 -0.199999 399.229 0.225455 0.971915 0.06746 -0.311548 0.180336 -0.109679 0.977471 0.03511 0 0 0 1 0.961314 -0.20261 -0.186612 399.227 0.217615 0.973963 0.063561 -0.312402 0.168875 -0.101712 0.980375 0.032612 0 0 0 1 0.969461 -0.187076 -0.158579 399.222 0.197873 0.978675 0.05514 -0.313723 0.144882 -0.084835 0.985805 0.027163 0 0 0 1 0.978965 -0.164808 -0.120268 399.215 0.170949 0.984359 0.042596 -0.315573 0.111367 -0.062261 0.991827 0.019957 0 0 0 1 0.987205 -0.139712 -0.076854 399.207 0.142129 0.989482 0.026905 -0.317325 0.072287 -0.037483 0.996679 0.012 0 0 0 1 0.992711 -0.115905 -0.033035 399.199 0.116276 0.993171 0.009543 -0.318509 0.031704 -0.013315 0.999409 0.00425 0 0 0 1 0.995193 -0.097664 0.007265 399.193 0.097718 0.995185 -0.007622 -0.318998 -0.006485 0.008296 0.999945 -0.002677 0 0 0 1 0.995149 -0.090084 0.039526 399.191 0.090997 0.99561 -0.021927 -0.319096 -0.037378 0.025417 0.998978 -0.00815 0 0 0 1 0.993175 -0.094866 0.067854 399.192 0.097358 0.994655 -0.03438 -0.3188 -0.06423 0.040751 0.997103 -0.013075 0 0 0 1 0.989259 -0.108336 0.098128 399.197 0.113353 0.99244 -0.047066 -0.318201 -0.092287 0.057684 0.99406 -0.018496 0 0 0 1 0.983553 -0.127254 0.12818 399.203 0.135617 0.989018 -0.05875 -0.317074 -0.119297 0.075167 0.99001 -0.02408 0 0 0 1 0.976487 -0.148615 0.156162 399.21 0.160825 0.984593 -0.06864 -0.315693 -0.143555 0.092141 0.985343 -0.029518 0 0 0 1 0.968789 -0.169915 0.180492 399.216 0.186029 0.979574 -0.076342 -0.313991 -0.163834 0.107536 0.980609 -0.034497 0 0 0 1 0.961677 -0.188504 0.19911 399.222 0.20795 0.974733 -0.081559 -0.312503 -0.178705 0.119839 0.976577 -0.038371 0 0 0 1 0.956748 -0.201573 0.209765 399.227 0.22306 0.971166 -0.084146 -0.311557 -0.186755 0.127297 0.974124 -0.040787 0 0 0 1 0.955391 -0.206897 0.210765 399.228 0.228589 0.969883 -0.084102 -0.310877 -0.187017 0.128529 0.973912 -0.04118 0 0 0 1 0.959413 -0.201385 0.197412 399.227 0.220555 0.972067 -0.080255 -0.311624 -0.175736 0.120538 0.97703 -0.038607 0 0 0 1 0.967822 -0.186037 0.169441 399.222 0.200407 0.977069 -0.07193 -0.313172 -0.152174 0.103572 0.982912 -0.033185 0 0 0 1 0.977694 -0.164018 0.1312 399.215 0.172916 0.983138 -0.059495 -0.315219 -0.11923 0.080854 0.989569 -0.0259 0 0 0 1 0.986361 -0.139197 0.087844 399.207 0.143434 0.988686 -0.043891 -0.317002 -0.080741 0.055893 0.995167 -0.017904 0 0 0 1 0.992311 -0.115658 0.044061 399.199 0.116894 0.992789 -0.026584 -0.318304 -0.040668 0.03153 0.998675 -0.010117 0 0 0 1 0.995213 -0.097655 0.003769 399.193 0.097687 0.995172 -0.009433 -0.318995 -0.002831 0.009756 0.999948 -0.003149 0 0 0 1 0.99551 -0.090265 -0.028498 399.191 0.090439 0.99589 0.004882 -0.319236 0.02794 -0.007438 0.999582 0.002363 0 0 0 1 0.993832 -0.095217 -0.056844 399.193 0.09634 0.995197 0.017363 -0.319129 0.054918 -0.022732 0.998232 0.007284 0 0 0 1 0.990228 -0.108873 -0.087149 399.197 0.111855 0.993268 0.030097 -0.318609 0.083286 -0.039551 0.99574 0.01267 0 0 0 1 0.984822 -0.127982 -0.117244 399.203 0.133656 0.990144 0.041845 -0.317474 0.110733 -0.05688 0.992221 0.018219 0 0 0 1 - - - - - - - - LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR - - - - - - - - - - - - - - - - 0 0.033333 0.066666 0.1 0.133333 0.166667 0.2 0.233333 0.266667 0.3 0.333333 0.366667 0.4 0.433333 0.466667 0.5 0.533333 0.566667 0.6 0.633333 0.666667 0.7 0.733333 0.766667 0.8 0.833333 0.866667 0.9 0.933333 0.966667 1 1.03333 1.06667 1.1 1.13333 1.16667 1.2 1.23333 1.26667 1.3 1.33333 1.36667 1.4 1.43333 1.46667 1.5 1.53333 1.56667 1.6 1.63333 1.66667 1.7 1.73333 1.76667 1.8 1.83333 1.86667 1.9 1.93333 1.96667 2 2.03333 2.06667 2.1 2.13333 2.16667 2.2 2.23333 2.26667 2.3 2.33333 2.36667 2.4 2.43333 2.46667 2.5 2.53333 2.56667 2.6 2.63333 2.66667 2.7 2.73333 2.76667 2.8 2.83333 2.86667 2.9 2.93333 2.96667 3 3.03333 3.06667 3.1 3.13333 3.16667 3.2 3.23333 3.26667 3.3 3.33333 - - - - - - - CONSTANT - CONSTANT - - - - 0.767026 0.627219 -0.135158 402.56 -0.617671 0.778843 0.109021 -0.112731 0.173646 -0.000139 0.984808 -0.000017 0 0 0 1 0.814578 0.574055 -0.083215 402.568 -0.568606 0.818602 0.081099 -0.118439 0.114676 -0.018744 0.993226 0.002709 0 0 0 1 0.859844 0.509933 -0.025247 402.577 -0.508093 0.859499 0.05571 -0.124322 0.050108 -0.035074 0.998128 0.005056 0 0 0 1 0.897521 0.439485 0.036187 402.587 -0.440631 0.897031 0.034363 -0.129759 -0.017359 -0.046787 0.998754 0.006786 0 0 0 1 0.924007 0.369887 0.096931 402.597 -0.373189 0.927584 0.017818 -0.134152 -0.08332 -0.052638 0.995132 0.00764 0 0 0 1 0.938426 0.31046 0.151561 402.606 -0.314903 0.949107 0.005627 -0.137372 -0.1421 -0.053007 0.988432 0.007674 0 0 0 1 0.942991 0.268267 0.196978 402.612 -0.272777 0.962067 -0.004387 -0.139239 -0.190683 -0.049593 0.980398 0.007164 0 0 0 1 0.94034 0.251605 0.229033 402.614 -0.255112 0.966801 -0.014665 -0.14001 -0.225119 -0.044638 0.973309 0.00649 0 0 0 1 0.932307 0.266 0.245046 402.612 -0.267624 0.963137 -0.027287 -0.139461 -0.243271 -0.04014 0.969127 0.005827 0 0 0 1 0.919069 0.306568 0.247644 402.606 -0.30577 0.951149 -0.042676 -0.137682 -0.248629 -0.036499 0.967911 0.005301 0 0 0 1 0.899625 0.365227 0.23934 402.598 -0.361871 0.930329 -0.059468 -0.134683 -0.244384 -0.03311 0.969113 0.004794 0 0 0 1 0.873653 0.43224 0.223379 402.588 -0.426559 0.901287 -0.075688 -0.130503 -0.234045 -0.029159 0.971789 0.004239 0 0 0 1 0.841542 0.500605 0.20298 402.578 -0.49297 0.865342 -0.090352 -0.125312 -0.220879 -0.024027 0.975005 0.003444 0 0 0 1 0.806187 0.562989 0.181951 402.569 -0.553792 0.826273 -0.102902 -0.119544 -0.208274 -0.017803 0.977909 0.002576 0 0 0 1 0.773243 0.612332 0.164758 402.562 -0.601831 0.790519 -0.113489 -0.114389 -0.199737 -0.011403 0.979783 0.001642 0 0 0 1 0.767026 0.627218 0.135161 402.56 -0.61767 0.778844 -0.109022 -0.112702 -0.17365 0.000137 0.984807 0.000015 0 0 0 1 0.809441 0.580886 0.085891 402.567 -0.575159 0.813785 -0.083345 -0.117729 -0.118312 0.018062 0.992813 -0.002604 0 0 0 1 0.852442 0.521905 0.03095 402.575 -0.519693 0.852321 -0.058885 -0.123389 -0.057112 0.034112 0.997785 -0.004959 0 0 0 1 0.890265 0.454589 -0.027883 402.585 -0.455376 0.889515 -0.037363 -0.128798 0.007817 0.045961 0.998913 -0.006656 0 0 0 1 0.91853 0.3856 -0.087267 402.595 -0.388607 0.921188 -0.019918 -0.133247 0.072709 0.052208 0.995986 -0.007557 0 0 0 1 0.935291 0.323932 -0.142471 402.604 -0.328165 0.944597 -0.006625 -0.136611 0.132432 0.05295 0.989777 -0.007676 0 0 0 1 0.941868 0.276263 -0.191215 402.611 -0.280659 0.959798 0.004255 -0.138975 0.184703 0.049658 0.981539 -0.007201 0 0 0 1 0.940332 0.251604 -0.229067 402.614 -0.255111 0.9668 0.014674 -0.139836 0.225154 0.044638 0.9733 -0.006451 0 0 0 1 0.931038 0.265303 -0.250566 402.612 -0.266817 0.963324 0.028556 -0.139524 0.248953 0.040268 0.967678 -0.00583 0 0 0 1 0.913547 0.316573 -0.255369 402.605 -0.315257 0.947832 0.047209 -0.137207 0.256991 0.037379 0.965691 -0.005442 0 0 0 1 0.887974 0.387481 -0.24771 402.595 -0.38315 0.921215 0.067521 -0.133496 0.254358 0.034952 0.966478 -0.005055 0 0 0 1 0.857341 0.458908 -0.233174 402.584 -0.451929 0.887915 0.085836 -0.128642 0.24643 0.031787 0.968639 -0.004591 0 0 0 1 0.828003 0.516655 -0.217897 402.576 -0.507536 0.855754 0.100452 -0.123813 0.238365 0.027415 0.970789 -0.004007 0 0 0 1 0.796289 0.570948 -0.199856 402.568 -0.560114 0.82069 0.112873 -0.118768 0.228465 0.022061 0.973302 -0.003197 0 0 0 1 0.766737 0.618458 -0.172118 402.561 -0.607131 0.785701 0.118604 -0.113645 0.208585 0.01356 0.97791 -0.001971 0 0 0 1 0.767026 0.627219 -0.135158 402.56 -0.617671 0.778843 0.109021 -0.112709 0.173646 -0.000139 0.984808 0.000021 0 0 0 1 0.80073 0.592597 -0.087519 402.565 -0.586506 0.805296 0.086648 -0.116642 0.121827 -0.018051 0.992387 0.002612 0 0 0 1 0.843228 0.536661 -0.030995 402.573 -0.534264 0.843042 0.061988 -0.121964 0.059396 -0.035711 0.997595 0.005179 0 0 0 1 0.884274 0.465914 0.031376 402.583 -0.46687 0.883471 0.038874 -0.127835 -0.009608 -0.049024 0.998751 0.007093 0 0 0 1 0.916036 0.389785 0.094586 402.594 -0.393207 0.919233 0.019955 -0.133072 -0.079168 -0.055472 0.995316 0.008021 0 0 0 1 0.93478 0.321136 0.151847 402.604 -0.325781 0.945426 0.006075 -0.136915 -0.141609 -0.055147 0.988385 0.007988 0 0 0 1 0.941902 0.270917 0.198556 402.611 -0.27552 0.961284 -0.004607 -0.13914 -0.192117 -0.050366 0.980079 0.007284 0 0 0 1 0.940342 0.251606 0.229027 402.614 -0.255113 0.9668 -0.014666 -0.140024 -0.225113 -0.044636 0.97331 0.006447 0 0 0 1 0.931534 0.269018 0.244691 402.612 -0.270581 0.962294 -0.027868 -0.139266 -0.242962 -0.040247 0.9692 0.005838 0 0 0 1 0.915235 0.314938 0.251314 402.605 -0.313799 0.948389 -0.045694 -0.137313 -0.252734 -0.03704 0.966826 0.005342 0 0 0 1 0.891693 0.378265 0.248596 402.596 -0.374143 0.925052 -0.065545 -0.133846 -0.254759 -0.034563 0.966387 0.005016 0 0 0 1 0.861838 0.448332 0.237135 402.586 -0.441421 0.893303 -0.084604 -0.129249 -0.249765 -0.031761 0.967786 0.004633 0 0 0 1 0.827987 0.516694 0.217865 402.576 -0.507577 0.855731 -0.10045 -0.123901 -0.238335 -0.027412 0.970796 0.003998 0 0 0 1 0.796084 0.573601 0.192953 402.568 -0.563238 0.818873 -0.1105 -0.118498 -0.221387 -0.020711 0.974966 0.00304 0 0 0 1 0.773243 0.612332 0.164758 402.562 -0.601831 0.790519 -0.113489 -0.11448 -0.199737 -0.011403 0.979783 0.00163 0 0 0 1 0.767026 0.627218 0.135161 402.56 -0.61767 0.778844 -0.109022 -0.112796 -0.17365 0.000137 0.984807 -0.000015 0 0 0 1 0.782715 0.614319 0.099847 402.562 -0.60701 0.788931 -0.09554 -0.113981 -0.137465 0.014173 0.990405 -0.002063 0 0 0 1 0.814092 0.578105 0.055218 402.567 -0.573987 0.815439 -0.07482 -0.118048 -0.08828 0.029216 0.995667 -0.004174 0 0 0 1 0.852358 0.522954 0.00237 402.575 -0.522173 0.851315 -0.05098 -0.123169 -0.028678 0.042215 0.998697 -0.006087 0 0 0 1 0.889031 0.454362 -0.056372 402.585 -0.456312 0.889383 -0.02791 -0.128654 0.037456 0.050536 0.99802 -0.00732 0 0 0 1 0.917194 0.380993 -0.116621 402.596 -0.384552 0.923061 -0.008829 -0.133562 0.104284 0.052945 0.993137 -0.007681 0 0 0 1 0.934325 0.310164 -0.175601 402.606 -0.314156 0.949357 0.005312 -0.137518 0.168355 0.050203 0.984447 -0.007283 0 0 0 1 0.940325 0.251603 -0.229097 402.614 -0.25511 0.9668 0.014684 -0.140012 0.225185 0.044636 0.973293 -0.006444 0 0 0 1 0.931534 0.269019 -0.24469 402.612 -0.270582 0.962293 0.027868 -0.139377 0.242961 0.040248 0.969201 -0.005825 0 0 0 1 0.91462 0.328055 -0.236326 402.603 -0.327105 0.943945 0.044382 -0.136632 0.237639 0.036709 0.97066 -0.005316 0 0 0 1 0.889314 0.396164 -0.22842 402.593 -0.392513 0.917571 0.063225 -0.132922 0.234639 0.03343 0.971507 -0.004815 0 0 0 1 0.857752 0.465222 -0.218699 402.583 -0.458924 0.884684 0.081994 -0.12804 0.231625 0.030036 0.972341 -0.004368 0 0 0 1 0.823287 0.5292 -0.205296 402.574 -0.520594 0.848105 0.098487 -0.122696 0.226232 0.025792 0.973732 -0.003741 0 0 0 1 0.792278 0.580676 -0.187379 402.567 -0.570537 0.813892 0.109852 -0.117868 0.216295 0.019874 0.976125 -0.002893 0 0 0 1 0.771377 0.614791 -0.164345 402.562 -0.604251 0.788607 0.113929 -0.114116 0.199646 0.011424 0.979802 -0.001673 0 0 0 1 0.767026 0.627219 -0.135158 402.56 -0.617671 0.778843 0.109021 -0.112662 0.173646 -0.000139 0.984808 0.00002 0 0 0 1 0.785933 0.610749 -0.096412 402.562 -0.603688 0.79167 0.093912 -0.114632 0.133683 -0.015606 0.990901 0.002261 0 0 0 1 0.822658 0.566588 -0.047035 402.569 -0.562959 0.823355 0.071864 -0.119062 0.079444 -0.03264 0.996305 0.004718 0 0 0 1 0.86504 0.501592 0.010486 402.578 -0.501478 0.863844 0.04789 -0.124996 0.014962 -0.046685 0.998797 0.006735 0 0 0 1 0.902012 0.425729 0.071621 402.589 -0.428384 0.903214 0.02629 -0.130615 -0.053496 -0.054395 0.997086 0.007863 0 0 0 1 0.927265 0.350523 0.13158 402.6 -0.354715 0.93493 0.009119 -0.135328 -0.119821 -0.05513 0.991264 0.007986 0 0 0 1 0.939442 0.287929 0.185864 402.609 -0.292322 0.956312 -0.003927 -0.138484 -0.178875 -0.050642 0.982568 0.007322 0 0 0 1 0.940327 0.251602 0.229092 402.614 -0.255108 0.966801 -0.014684 -0.140015 -0.225181 -0.044635 0.973294 0.006485 0 0 0 1 0.930995 0.263167 0.252966 402.613 -0.264676 0.963911 -0.028689 -0.139507 -0.251387 -0.040244 0.96705 0.005838 0 0 0 1 0.912331 0.318109 0.257796 402.605 -0.316656 0.947309 -0.048307 -0.13716 -0.25958 -0.03756 0.964991 0.005435 0 0 0 1 0.886969 0.388413 0.249845 402.595 -0.383951 0.920813 -0.068453 -0.133224 -0.256647 -0.035212 0.965864 0.005128 0 0 0 1 0.861838 0.448332 0.237135 402.586 -0.441421 0.893303 -0.084604 -0.129249 -0.249765 -0.031761 0.967786 0.004633 0 0 0 1 0.833026 0.506696 0.222098 402.577 -0.497594 0.861683 -0.099516 -0.124699 -0.241803 -0.027615 0.969932 0.00403 0 0 0 1 0.796498 0.570574 0.200092 402.568 -0.559733 0.820949 -0.112878 -0.11876 -0.22867 -0.02209 0.973253 0.003213 0 0 0 1 0.768315 0.616759 0.171172 402.561 -0.605569 0.787041 -0.117698 -0.113856 -0.207311 -0.013226 0.978186 0.001938 0 0 0 1 0.767026 0.627218 0.135161 402.56 -0.61767 0.778844 -0.109022 -0.112796 -0.17365 0.000137 0.984807 -0.000015 0 0 0 1 0.796105 0.598533 0.089309 402.564 -0.592202 0.800904 -0.088599 -0.115862 -0.124557 0.017645 0.992056 -0.002577 0 0 0 1 0.837828 0.544924 0.033211 402.572 -0.542313 0.837724 -0.064149 -0.121222 -0.062778 0.035735 0.997388 -0.00516 0 0 0 1 0.88015 0.47378 -0.029476 402.582 -0.474648 0.879247 -0.040436 -0.127253 0.006759 0.049581 0.998747 -0.007191 0 0 0 1 0.913436 0.396269 -0.092774 402.593 -0.399686 0.916413 -0.02093 -0.132623 0.076725 0.056199 0.995467 -0.008147 0 0 0 1 0.933669 0.324838 -0.150806 402.604 -0.329521 0.944126 -0.006468 -0.136596 0.140279 0.055733 0.988542 -0.008078 0 0 0 1 0.941645 0.272042 -0.198237 402.611 -0.276668 0.960955 0.004526 -0.139155 0.191728 0.050584 0.980144 -0.007322 0 0 0 1 0.940377 0.251606 -0.228881 402.614 -0.255123 0.966798 0.014595 -0.140044 0.224954 0.044668 0.973345 -0.006453 0 0 0 1 0.931534 0.269019 -0.24469 402.612 -0.270582 0.962293 0.027868 -0.139377 0.242961 0.040248 0.969201 -0.005825 0 0 0 1 0.915235 0.314939 -0.251312 402.605 -0.3138 0.948389 0.045695 -0.137298 0.252733 0.03704 0.966827 -0.005379 0 0 0 1 0.891693 0.378266 -0.248594 402.596 -0.374144 0.925051 0.065546 -0.133932 0.254757 0.034563 0.966388 -0.005035 0 0 0 1 0.861838 0.448333 -0.237133 402.586 -0.441422 0.893302 0.084604 -0.129273 0.249762 0.03176 0.967786 -0.004569 0 0 0 1 0.828194 0.516304 -0.218001 402.576 -0.507198 0.855965 0.100367 -0.123876 0.238421 0.027446 0.970774 -0.003972 0 0 0 1 0.796084 0.573603 -0.19295 402.568 -0.56324 0.818871 0.110499 -0.118558 0.221384 0.020709 0.974966 -0.003028 0 0 0 1 0.773243 0.612333 -0.164755 402.562 -0.601832 0.790518 0.113487 -0.11435 0.199734 0.011401 0.979784 -0.001648 0 0 0 1 0.767026 0.627219 -0.135157 402.56 -0.617671 0.778843 0.109021 -0.112713 0.173646 -0.000138 0.984808 0.000007 0 0 0 1 0.785071 0.611499 -0.098656 402.562 -0.604243 0.791102 0.095118 -0.114537 0.136211 -0.015062 0.990565 0.002216 0 0 0 1 0.821695 0.567709 -0.050235 402.568 -0.563849 0.822606 0.073439 -0.11899 0.083016 -0.032019 0.996034 0.004596 0 0 0 1 0.864401 0.50275 0.00733 402.578 -0.502465 0.863193 0.04926 -0.124895 0.018438 -0.046264 0.99876 0.006706 0 0 0 1 0.901767 0.426645 0.069207 402.589 -0.429218 0.902792 0.027194 -0.13061 -0.050877 -0.054228 0.997231 0.007837 0 0 0 1 0.927258 0.35105 0.130218 402.6 -0.355222 0.934733 0.009552 -0.135382 -0.118366 -0.055115 0.991439 0.007996 0 0 0 1 0.939474 0.288089 0.185454 402.609 -0.292484 0.956263 -0.003816 -0.138435 -0.178442 -0.050656 0.982646 0.007323 0 0 0 1 0.940377 0.251605 0.228882 402.614 -0.255122 0.966799 -0.014595 -0.140029 -0.224955 -0.044667 0.973345 0.006494 0 0 0 1 0.930995 0.263167 0.252966 402.613 -0.264676 0.963911 -0.028689 -0.139507 -0.251387 -0.040244 0.96705 0.005838 0 0 0 1 0.912331 0.318109 0.257796 402.605 -0.316656 0.947309 -0.048307 -0.137122 -0.25958 -0.03756 0.964991 0.005436 0 0 0 1 0.886969 0.388413 0.249845 402.594 -0.383951 0.920813 -0.068453 -0.13334 -0.256647 -0.035212 0.965864 0.005101 0 0 0 1 - - - - - - - - LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR - - - - - - - - - - - - - - - - 0 0.033333 0.066666 0.1 0.133333 0.166667 0.2 0.233333 0.266667 0.3 0.333333 0.366667 0.4 0.433333 0.466667 0.5 0.533333 0.566667 0.6 0.633333 0.666667 0.7 0.733333 0.766667 0.8 0.833333 0.866667 0.9 0.933333 0.966667 1 1.03333 1.06667 1.1 1.13333 1.16667 1.2 1.23333 1.26667 1.3 1.33333 1.36667 1.4 1.43333 1.46667 1.5 1.53333 1.56667 1.6 1.63333 1.66667 1.7 1.73333 1.76667 1.8 1.83333 1.86667 1.9 1.93333 1.96667 2 2.03333 2.06667 2.1 2.13333 2.16667 2.2 2.23333 2.26667 2.3 2.33333 2.36667 2.4 2.43333 2.46667 2.5 2.53333 2.56667 2.6 2.63333 2.66667 2.7 2.73333 2.76667 2.8 2.83333 2.86667 2.9 2.93333 2.96667 3 3.03333 3.06667 3.1 3.13333 3.16667 3.2 3.23333 3.26667 3.3 3.33333 - - - - - - - CONSTANT - CONSTANT - - - - 0.999373 -0.013879 0.032569 181.732 0.016083 0.997526 -0.068434 -0.00008 -0.031539 0.068915 0.997124 -0.000002 0 0 0 1 0.9999 0.014165 0.000389 181.732 -0.014114 0.997986 -0.061838 0.000045 -0.001265 0.061826 0.998086 -0.000002 0 0 0 1 0.998377 0.045436 -0.034349 181.732 -0.047319 0.997299 -0.056175 -0.000013 0.031703 0.057709 0.99783 -0.000002 0 0 0 1 0.994539 0.077413 -0.069998 181.732 -0.081057 0.995413 -0.050816 0.000033 0.065743 0.056212 0.996252 -0.000002 0 0 0 1 0.988771 0.1071 -0.104222 181.732 -0.112305 0.992636 -0.045414 0.000031 0.09859 0.056608 0.993517 -0.000002 0 0 0 1 0.982257 0.131208 -0.134 181.732 -0.137643 0.989678 -0.039905 0.000027 0.127381 0.057642 0.990178 -0.000002 0 0 0 1 0.97643 0.147696 -0.157383 181.732 -0.154845 0.98735 -0.034103 0.000155 0.150355 0.057669 0.986949 -0.000002 0 0 0 1 0.973067 0.154069 -0.171474 181.732 -0.161097 0.986548 -0.027765 0.000125 0.164889 0.054641 0.984798 -0.000002 0 0 0 1 0.974281 0.149196 -0.168867 181.732 -0.155034 0.987667 -0.021856 0.000071 0.163523 0.047474 0.985397 -0.000002 0 0 0 1 0.979681 0.134847 -0.14846 181.732 -0.138628 0.990225 -0.015373 0.000028 0.144936 0.035641 0.988799 -0.000002 0 0 0 1 0.986699 0.112807 -0.117045 181.732 -0.114167 0.993449 -0.004966 0.000073 0.115718 0.018263 0.993114 -0.000002 0 0 0 1 0.992907 0.085283 -0.082842 181.732 -0.08464 0.996348 0.01125 0.000042 0.083498 -0.004158 0.996499 -0.000002 0 0 0 1 0.997144 0.053543 -0.053272 181.732 -0.051804 0.998095 0.033514 -0.000012 0.054965 -0.030658 0.998018 -0.000002 0 0 0 1 0.999144 0.019549 -0.03647 181.732 -0.017358 0.998078 0.05949 0.00003 0.037563 -0.058806 0.997562 -0.000002 0 0 0 1 0.99912 -0.013578 -0.039677 181.732 0.016889 0.996293 0.084347 -0.000065 0.038385 -0.084943 0.995646 -0.000002 0 0 0 1 0.99974 -0.022369 -0.004439 181.732 0.022686 0.99535 0.093612 -0.000126 0.002324 -0.093688 0.995599 -0.000002 0 0 0 1 0.996964 0.022683 0.074491 181.732 -0.028889 0.996103 0.08333 0.000024 -0.07231 -0.085229 0.993734 -0.000002 0 0 0 1 0.990115 0.059348 0.127083 181.732 -0.068706 0.995139 0.070556 -0.00001 -0.122277 -0.07859 0.989379 -0.000002 0 0 0 1 0.982866 0.088584 0.16164 181.732 -0.099141 0.993356 0.058441 0.000017 -0.155389 -0.073464 0.985118 -0.000002 0 0 0 1 0.976466 0.111014 0.184905 181.732 -0.12188 0.991363 0.048434 0.00002 -0.17793 -0.06983 0.981563 -0.000002 0 0 0 1 0.970817 0.127675 0.20301 181.732 -0.138533 0.989544 0.040144 -0.000036 -0.195762 -0.067096 0.978353 -0.000002 0 0 0 1 0.964726 0.141082 0.222257 181.732 -0.151627 0.98795 0.031025 0.000082 -0.215202 -0.063632 0.974495 -0.000002 0 0 0 1 0.956716 0.153544 0.247225 181.732 -0.162894 0.986485 0.017692 0.000076 -0.241166 -0.057199 0.968797 -0.000002 0 0 0 1 0.951417 0.15276 0.267341 181.732 -0.158608 0.987342 0.000284 0.000075 -0.263913 -0.042672 0.963602 -0.000002 0 0 0 1 0.9529 0.131338 0.273372 181.732 -0.131157 0.991179 -0.01902 0.000046 -0.273459 -0.01773 0.96172 -0.000002 0 0 0 1 0.957396 0.09976 0.270999 181.732 -0.091925 0.994901 -0.041486 0.000117 -0.273756 0.014807 0.961685 -0.000002 0 0 0 1 0.961557 0.06963 0.26563 181.732 -0.053657 0.996314 -0.066933 0.000037 -0.269311 0.050107 0.961749 -0.000002 0 0 0 1 0.963777 0.051945 0.261602 181.732 -0.028015 0.995142 -0.094387 -0.000077 -0.265234 0.083639 0.960549 -0.000002 0 0 0 1 0.96357 0.029404 0.265836 181.732 0.003307 0.992553 -0.121772 0.000045 -0.267436 0.118214 0.956297 -0.000002 0 0 0 1 0.963845 -0.000485 0.266461 181.732 0.040697 0.988534 -0.145411 -0.000065 -0.263336 0.150998 0.952814 -0.000002 0 0 0 1 0.971794 -0.003456 0.235804 181.732 0.042809 0.985866 -0.161974 0.000072 -0.231911 0.1675 0.958207 -0.000002 0 0 0 1 0.982661 0.021822 0.184124 181.732 0.010069 0.985303 -0.170518 -0.000029 -0.185139 0.169416 0.967999 -0.000002 0 0 0 1 0.988509 0.050368 0.142527 181.732 -0.025084 0.984439 -0.173926 -0.000056 -0.149069 0.168352 0.97439 -0.000002 0 0 0 1 0.990761 0.079589 0.109812 181.732 -0.059634 0.98288 -0.174327 0.000009 -0.121807 0.166168 0.978545 -0.000002 0 0 0 1 0.990652 0.10631 0.085479 181.732 -0.090258 0.980669 -0.173615 0.000018 -0.102284 0.164277 0.981097 -0.000002 0 0 0 1 0.989454 0.127285 0.069127 181.732 -0.113788 0.978368 -0.172769 0.000013 -0.089623 0.163081 0.982534 -0.000002 0 0 0 1 0.988234 0.140763 0.059832 181.732 -0.128752 0.976756 -0.171379 -0.000018 -0.082565 0.161659 0.983387 -0.000002 0 0 0 1 0.987754 0.144995 0.057612 181.732 -0.133591 0.976732 -0.167774 0.000033 -0.080599 0.158023 0.984141 -0.000002 0 0 0 1 0.98833 0.137579 0.065392 181.732 -0.125693 0.979059 -0.160139 0.000013 -0.086054 0.15005 0.984926 -0.000002 0 0 0 1 0.989263 0.119363 0.084329 181.732 -0.106121 0.983416 -0.147072 -0.000051 -0.100486 0.136543 0.985525 -0.000002 0 0 0 1 0.989345 0.094207 0.111006 181.732 -0.079804 0.988594 -0.127722 0.000041 -0.121772 0.117503 0.985579 -0.000002 0 0 0 1 0.987723 0.06565 0.141753 181.732 -0.051358 0.993434 -0.102227 0.000098 -0.147534 0.093692 0.984609 -0.000002 0 0 0 1 0.984135 0.036582 0.173609 181.732 -0.024403 0.997123 -0.07177 0.000108 -0.175735 0.066395 0.982195 -0.000002 0 0 0 1 0.979121 0.01115 0.202971 181.732 -0.003013 0.999181 -0.040355 0.00004 -0.203255 0.038901 0.978353 -0.000002 0 0 0 1 0.973698 -0.006842 0.227739 181.732 0.010011 0.999868 -0.012759 -0.000124 -0.227622 0.014704 0.973639 -0.000002 0 0 0 1 0.968988 -0.013432 0.246741 181.732 0.01232 0.999906 0.006047 0.00003 -0.246799 -0.002819 0.969063 -0.000002 0 0 0 1 0.965532 -0.009382 0.260114 181.732 0.005927 0.999884 0.014069 -0.000129 -0.260216 -0.012042 0.965475 -0.000002 0 0 0 1 0.962871 0.001486 0.269959 181.732 -0.005544 0.999883 0.014267 -0.000056 -0.269906 -0.015234 0.962766 -0.000002 0 0 0 1 0.960364 0.019415 0.278072 181.732 -0.022979 0.99969 0.009562 0.000066 -0.2778 -0.015572 0.960513 -0.000002 0 0 0 1 0.957197 0.044502 0.285997 181.732 -0.047237 0.99888 0.002665 0.000032 -0.285558 -0.016061 0.958227 -0.000002 0 0 0 1 0.952386 0.076203 0.295219 181.732 -0.078399 0.996912 -0.004409 0.000078 -0.294644 -0.018945 0.955419 -0.000002 0 0 0 1 0.944562 0.11513 0.307486 181.732 -0.117386 0.993023 -0.011215 0.000003 -0.306632 -0.0255 0.951487 -0.000002 0 0 0 1 0.932207 0.161295 0.323996 181.732 -0.164266 0.986245 -0.018353 0.000137 -0.3225 -0.036112 0.94588 -0.000002 0 0 0 1 0.937675 0.154432 0.311315 181.732 -0.155495 0.987601 -0.021566 0.000031 -0.310786 -0.028185 0.950062 -0.000002 0 0 0 1 0.958439 0.122612 0.257605 181.732 -0.120792 0.992413 -0.022939 0.000033 -0.258464 -0.009131 0.965978 -0.000002 0 0 0 1 0.972998 0.09136 0.211963 181.732 -0.086135 0.995711 -0.033773 -0.000000 -0.21414 0.014602 0.976693 -0.000002 0 0 0 1 0.983229 0.061875 0.171561 181.732 -0.053668 0.9972 -0.052072 -0.000016 -0.174303 0.041992 0.983796 -0.000002 0 0 0 1 0.99057 0.034997 0.132463 181.732 -0.025129 0.996832 -0.075452 -0.000016 -0.134684 0.071412 0.988312 -0.000002 0 0 0 1 0.995718 0.01277 0.091556 181.732 -0.003569 0.994986 -0.099954 0.000049 -0.092374 0.099199 0.990771 -0.000002 0 0 0 1 0.99901 -0.003232 0.044378 181.732 0.008606 0.992562 -0.121433 0.000014 -0.043656 0.121694 0.991607 -0.000002 0 0 0 1 0.99983 -0.011284 -0.014575 181.732 0.009206 0.990738 -0.135474 -0.00005 0.015969 0.135317 0.990674 -0.000002 0 0 0 1 0.996293 -0.007635 -0.085688 181.732 -0.004285 0.990411 -0.138084 0.000039 0.08592 0.137939 0.986707 -0.000002 0 0 0 1 0.986456 0.008001 -0.163833 181.732 -0.029505 0.991174 -0.12924 0.000008 0.161353 0.132323 0.977986 -0.000002 0 0 0 1 0.968896 0.032663 -0.245305 181.732 -0.061468 0.99195 -0.110704 -0.000025 0.239714 0.122339 0.963104 -0.000002 0 0 0 1 0.943651 0.062441 -0.324998 181.732 -0.095111 0.991778 -0.085614 -0.000019 0.31698 0.111702 0.941832 -0.000002 0 0 0 1 0.911949 0.093466 -0.399516 181.732 -0.126563 0.990307 -0.057217 0.000052 0.390295 0.102743 0.914939 -0.000002 0 0 0 1 0.875725 0.122375 -0.467044 181.732 -0.153044 0.987819 -0.028134 0.000069 0.457911 0.096116 0.883787 -0.000002 0 0 0 1 0.838422 0.145417 -0.525264 181.732 -0.171656 0.985156 -0.00126 0.000036 0.517283 0.091222 0.850939 -0.000002 0 0 0 1 0.814283 0.143942 -0.562337 181.732 -0.164855 0.986222 0.01373 0.000034 0.556566 0.081524 0.826794 -0.000002 0 0 0 1 0.809336 0.115094 -0.575959 181.732 -0.130265 0.991365 0.015057 0.000059 0.572718 0.062841 0.81734 -0.000002 0 0 0 1 0.814995 0.079985 -0.573921 181.732 -0.088233 0.996008 0.013515 0.000033 0.572711 0.039624 0.818799 -0.000002 0 0 0 1 0.823742 0.059672 -0.563816 181.732 -0.058965 0.99807 0.019484 0.000098 0.563891 0.017195 0.82567 -0.000002 0 0 0 1 0.830435 0.03887 -0.555757 181.732 -0.027589 0.999208 0.028661 0.000039 0.556431 -0.008469 0.83085 -0.000002 0 0 0 1 0.835239 0.002124 -0.549883 181.732 0.020002 0.999213 0.034242 -0.000087 0.549524 -0.0396 0.834539 -0.000002 0 0 0 1 0.84231 -0.028961 -0.538214 181.732 0.060526 0.997322 0.041056 -0.00012 0.535584 -0.067158 0.841807 -0.000002 0 0 0 1 0.858672 -0.033905 -0.511402 181.732 0.071849 0.995919 0.05461 0.00003 0.507464 -0.083635 0.857605 -0.000002 0 0 0 1 0.878558 -0.013901 -0.477432 181.732 0.055715 0.995735 0.073532 -0.000023 0.474374 -0.091202 0.875586 -0.000002 0 0 0 1 0.892771 0.012702 -0.450332 181.732 0.032554 0.99517 0.092607 -0.000035 0.449333 -0.097337 0.888046 -0.000002 0 0 0 1 0.902387 0.042101 -0.428867 181.732 0.00656 0.993758 0.11136 -0.000047 0.430879 -0.103304 0.896477 -0.000002 0 0 0 1 0.908425 0.069932 -0.412157 181.732 -0.017835 0.991494 0.128921 0.000002 0.417667 -0.109765 0.901946 -0.000002 0 0 0 1 0.912199 0.092533 -0.399162 181.732 -0.037387 0.988899 0.143805 0.000012 0.408038 -0.116255 0.905533 -0.000002 0 0 0 1 0.914921 0.106959 -0.389204 181.732 -0.050058 0.986875 0.153534 0.000087 0.400517 -0.120989 0.908266 -0.000002 0 0 0 1 0.917434 0.110279 -0.382301 181.732 -0.054258 0.986523 0.154365 0.000075 0.394172 -0.120877 0.911053 -0.000002 0 0 0 1 0.919607 0.100373 -0.3798 181.732 -0.048741 0.98849 0.143219 0.000031 0.389804 -0.113193 0.913915 -0.000002 0 0 0 1 0.920639 0.079247 -0.382287 181.732 -0.035269 0.99206 0.120715 -0.000041 0.388818 -0.097652 0.916124 -0.000002 0 0 0 1 0.920169 0.050832 -0.388207 181.732 -0.017483 0.995882 0.088962 0.000043 0.39113 -0.075073 0.917268 -0.000002 0 0 0 1 0.918161 0.018734 -0.395765 181.732 0.001449 0.998716 0.050639 -0.000002 0.396206 -0.047068 0.916955 -0.000002 0 0 0 1 0.914823 -0.013901 -0.403615 181.732 0.019128 0.999777 0.008917 -0.000039 0.403401 -0.015878 0.914886 -0.000002 0 0 0 1 0.910572 -0.043253 -0.411081 181.732 0.033288 0.998954 -0.031373 -0.000018 0.412008 0.014883 0.911059 -0.000002 0 0 0 1 0.905984 -0.064725 -0.418335 181.732 0.041757 0.997086 -0.063838 -0.000049 0.421248 0.040368 0.906047 -0.000002 0 0 0 1 0.901426 -0.07438 -0.426496 181.732 0.04282 0.995618 -0.083132 -0.000066 0.430811 0.056675 0.900661 -0.000002 0 0 0 1 0.896092 -0.069219 -0.438439 181.732 0.034791 0.99568 -0.086087 0.000000 0.442503 0.061888 0.894629 -0.000002 0 0 0 1 0.888937 -0.051852 -0.455086 181.732 0.019026 0.996894 -0.076421 0.000011 0.457635 0.059275 0.887162 -0.000002 0 0 0 1 0.879958 -0.02589 -0.474345 181.732 -0.002242 0.998277 -0.058644 0.000047 0.475046 0.052668 0.878383 -0.000002 0 0 0 1 0.869454 0.004383 -0.493993 181.732 -0.026346 0.998949 -0.037507 0.000021 0.49331 0.045625 0.868656 -0.000002 0 0 0 1 0.857943 0.035032 -0.51255 181.732 -0.050768 0.99857 -0.016727 0.000042 0.511231 0.040372 0.858495 -0.000002 0 0 0 1 0.846251 0.062838 -0.529065 181.732 -0.073191 0.997317 0.001381 0.000047 0.527732 0.037554 0.84858 -0.000002 0 0 0 1 0.835983 0.084401 -0.542226 181.732 -0.090769 0.995758 0.015051 0.000014 0.541196 0.036634 0.840098 -0.000002 0 0 0 1 0.835817 0.081326 -0.542951 181.732 -0.085299 0.996194 0.017906 0.000034 0.542341 0.031347 0.839573 -0.000002 0 0 0 1 0.849005 0.051306 -0.525887 181.732 -0.053515 0.998506 0.011019 0.000027 0.525667 0.018787 0.850483 -0.000002 0 0 0 1 0.868391 0.016257 -0.495613 181.732 -0.016196 0.999859 0.004417 -0.000014 0.495616 0.004191 0.868532 -0.000002 0 0 0 1 - - - - - - - - LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR - - - - - - - - - - - - - - - - 0 0.033333 0.066666 0.1 0.133333 0.166667 0.2 0.233333 0.266667 0.3 0.333333 0.366667 0.4 0.433333 0.466667 0.5 0.533333 0.566667 0.6 0.633333 0.666667 0.7 0.733333 0.766667 0.8 0.833333 0.866667 0.9 0.933333 0.966667 1 1.03333 1.06667 1.1 1.13333 1.16667 1.2 1.23333 1.26667 1.3 1.33333 1.36667 1.4 1.43333 1.46667 1.5 1.53333 1.56667 1.6 1.63333 1.66667 1.7 1.73333 1.76667 1.8 1.83333 1.86667 1.9 1.93333 1.96667 2 2.03333 2.06667 2.1 2.13333 2.16667 2.2 2.23333 2.26667 2.3 2.33333 2.36667 2.4 2.43333 2.46667 2.5 2.53333 2.56667 2.6 2.63333 2.66667 2.7 2.73333 2.76667 2.8 2.83333 2.86667 2.9 2.93333 2.96667 3 3.03333 3.06667 3.1 3.13333 3.16667 3.2 3.23333 3.26667 3.3 3.33333 - - - - - - - CONSTANT - CONSTANT - - - - 0.350776 0.631512 0.691483 7.49618 0.635478 -0.702886 0.319561 0.138573 0.68784 0.327328 -0.647867 42.5129 0 0 0 1 0.29888 0.565265 0.76886 4.95064 0.562294 -0.755285 0.336704 -0.664562 0.771036 0.331692 -0.543585 42.8762 0 0 0 1 0.232133 0.487629 0.841624 2.16323 0.487141 -0.807209 0.333328 -1.36949 0.841908 0.332613 -0.424924 43.0879 0 0 0 1 0.151483 0.403821 0.902209 -0.749328 0.417424 -0.853496 0.311931 -1.87507 0.895997 0.329351 -0.297855 43.1149 0 0 0 1 0.05779 0.322011 0.944971 -3.59665 0.357109 -0.89059 0.281641 -2.12756 0.932274 0.321181 -0.16646 42.9586 0 0 0 1 -0.045828 0.252768 0.966441 -6.13415 0.307084 -0.917047 0.254411 -2.14363 0.950579 0.308437 -0.035595 42.6693 0 0 0 1 -0.153918 0.203613 0.966877 -8.23144 0.265472 -0.934036 0.238958 -1.99626 0.951753 0.293459 0.089711 42.3225 0 0 0 1 -0.258805 0.183356 0.948367 -9.718 0.227766 -0.942549 0.244388 -1.78241 0.938692 0.279254 0.202173 42.0165 0 0 0 1 -0.352564 0.197505 0.914708 -10.5016 0.187518 -0.942737 0.275834 -1.58818 0.916807 0.268773 0.295339 41.836 0 0 0 1 -0.433469 0.24039 0.868514 -10.7329 0.137974 -0.934698 0.32757 -1.43108 0.890543 0.261824 0.371996 41.7835 0 0 0 1 -0.498386 0.303335 0.812157 -10.5497 0.076946 -0.917618 0.389943 -1.2847 0.863533 0.256835 0.433987 41.8354 0 0 0 1 -0.544703 0.375871 0.749679 -10.1032 0.00737 -0.891754 0.45246 -1.1142 0.838597 0.251982 0.482971 41.9509 0 0 0 1 -0.57385 0.450431 0.683965 -9.53505 -0.067582 -0.85836 0.508578 -0.892556 0.816167 0.245623 0.523011 42.0897 0 0 0 1 -0.58843 0.519017 0.619977 -8.99088 -0.142125 -0.821234 0.552608 -0.623958 0.795959 0.237056 0.557004 42.2151 0 0 0 1 -0.5937 0.573844 0.564113 -8.62218 -0.209015 -0.786946 0.580542 -0.347614 0.777067 0.226759 0.587152 42.296 0 0 0 1 -0.572789 0.597854 0.560788 -7.49615 -0.23749 -0.775831 0.584538 0.150478 0.784545 0.201635 0.586372 42.5129 0 0 0 1 -0.522607 0.564258 0.639135 -5.10719 -0.204392 -0.810712 0.548607 0.924446 0.827711 0.156072 0.539013 42.8583 0 0 0 1 -0.450308 0.51508 0.729325 -2.4653 -0.155309 -0.849563 0.504105 1.61716 0.879262 0.113732 0.462561 43.0731 0 0 0 1 -0.36232 0.454612 0.813666 0.337539 -0.104552 -0.887296 0.449194 2.12861 0.926171 0.077681 0.369016 43.1218 0 0 0 1 -0.262946 0.389665 0.882621 3.13887 -0.064429 -0.919863 0.386912 2.39817 0.962657 0.04487 0.266981 42.9954 0 0 0 1 -0.15481 0.328322 0.931793 5.71695 -0.039668 -0.944469 0.326197 2.43031 0.987148 0.013536 0.159237 42.7274 0 0 0 1 -0.042774 0.278296 0.959542 7.97348 -0.026457 -0.9604 0.277365 2.28833 0.998734 -0.013522 0.048443 42.3718 0 0 0 1 0.064504 0.249668 0.966181 9.71975 -0.019222 -0.967706 0.251345 2.07157 0.997732 -0.034786 -0.057622 42.0162 0 0 0 1 0.158952 0.260831 0.952209 10.747 -0.006674 -0.964165 0.26522 1.88295 0.987264 -0.048513 -0.151515 41.7734 0 0 0 1 0.237074 0.312951 0.919705 11.0941 0.024048 -0.948294 0.31648 1.75819 0.971194 -0.052912 -0.232342 41.6876 0 0 0 1 0.298309 0.391753 0.870368 10.9804 0.09523 -0.919553 0.381252 1.65348 0.949707 -0.030844 -0.311619 41.7216 0 0 0 1 0.338079 0.475516 0.812149 10.6382 0.204658 -0.879458 0.429731 1.51682 0.918595 0.02093 -0.394645 41.8149 0 0 0 1 0.360431 0.543536 0.758062 10.2901 0.329183 -0.834516 0.441839 1.32798 0.872771 0.090289 -0.479708 41.9077 0 0 0 1 0.36514 0.600682 0.711234 9.86259 0.445408 -0.783592 0.433125 1.09705 0.817486 0.158638 -0.553668 42.0162 0 0 0 1 0.362435 0.640733 0.676833 9.0046 0.572234 -0.726194 0.381038 0.729946 0.735655 0.249206 -0.629847 42.2151 0 0 0 1 0.350776 0.631512 0.691483 7.49619 0.635478 -0.702886 0.31956 0.13867 0.68784 0.327328 -0.647867 42.5129 0 0 0 1 0.307635 0.581906 0.752825 5.25926 0.591738 -0.736586 0.327546 -0.634727 0.745122 0.344711 -0.570935 42.84 0 0 0 1 0.233466 0.513873 0.825487 2.56416 0.505414 -0.789388 0.348458 -1.39701 0.830693 0.335859 -0.444014 43.0649 0 0 0 1 0.144706 0.431097 0.890626 -0.41471 0.420181 -0.841685 0.339138 -1.97166 0.895828 0.325149 -0.302936 43.1148 0 0 0 1 0.052814 0.342254 0.938122 -3.41752 0.357301 -0.883718 0.30229 -2.25006 0.932495 0.319227 -0.168961 42.9665 0 0 0 1 -0.049473 0.263242 0.96346 -6.11296 0.306044 -0.914244 0.26551 -2.23605 0.950731 0.307996 -0.035333 42.6673 0 0 0 1 -0.156207 0.205811 0.966044 -8.2932 0.26481 -0.933518 0.241701 -2.02972 0.951564 0.293573 0.091322 42.3087 0 0 0 1 -0.2588 0.183358 0.948368 -9.71781 0.22777 -0.942547 0.244389 -1.78234 0.938693 0.279258 0.202167 42.0166 0 0 0 1 -0.352962 0.200446 0.913914 -10.4884 0.187039 -0.94195 0.278831 -1.59286 0.916752 0.269355 0.294981 41.8391 0 0 0 1 -0.43912 0.247324 0.863715 -10.9101 0.13538 -0.93217 0.335755 -1.45446 0.88817 0.264366 0.375852 41.7367 0 0 0 1 -0.509063 0.313226 0.801713 -10.9974 0.071714 -0.912761 0.402149 -1.34748 0.857736 0.262214 0.44219 41.7176 0 0 0 1 -0.558752 0.387616 0.733178 -10.7818 -0.001075 -0.884393 0.466742 -1.22642 0.829334 0.260005 0.494572 41.7781 0 0 0 1 -0.587638 0.4621 0.664188 -10.2885 -0.078137 -0.849446 0.521858 -1.0386 0.805342 0.254766 0.535275 41.908 0 0 0 1 -0.597334 0.526567 0.604912 -9.55694 -0.150035 -0.814316 0.560695 -0.749376 0.787834 0.244164 0.565423 42.088 0 0 0 1 -0.5937 0.573843 0.564113 -8.62225 -0.209015 -0.786946 0.580542 -0.347674 0.777067 0.226759 0.587152 42.296 0 0 0 1 -0.572789 0.597854 0.560788 -7.49618 -0.23749 -0.775831 0.584538 0.150597 0.784545 0.201635 0.586372 42.5129 0 0 0 1 -0.528953 0.594663 0.605462 -5.93396 -0.225191 -0.786216 0.575459 0.756373 0.818229 0.168046 0.549784 42.7544 0 0 0 1 -0.464211 0.567605 0.67995 -3.81071 -0.186142 -0.813051 0.551633 1.40585 0.865944 0.129506 0.483084 42.9816 0 0 0 1 -0.383295 0.519911 0.763399 -1.23775 -0.136484 -0.849332 0.509908 1.96702 0.913486 0.091253 0.396504 43.1124 0 0 0 1 -0.28722 0.456488 0.842095 1.61694 -0.090846 -0.888156 0.450472 2.3262 0.953547 0.052884 0.296567 43.0835 0 0 0 1 -0.176661 0.384529 0.906051 4.50177 -0.05684 -0.922979 0.380631 2.43019 0.982629 0.015743 0.18491 42.8725 0 0 0 1 -0.056857 0.311736 0.948466 7.26783 -0.034283 -0.950052 0.310203 2.31174 0.997794 -0.014879 0.064704 42.4973 0 0 0 1 0.064533 0.249667 0.966179 9.72102 -0.019231 -0.967706 0.251346 2.07157 0.99773 -0.034801 -0.057648 42.016 0 0 0 1 0.15302 0.264719 0.952107 10.4884 -0.007048 -0.963137 0.268919 1.8821 0.988198 -0.04786 -0.145513 41.8391 0 0 0 1 0.218205 0.324956 0.920212 10.2586 0.023459 -0.944408 0.327937 1.72934 0.975621 -0.049969 -0.213698 41.9021 0 0 0 1 0.278385 0.400365 0.873046 10.1292 0.09415 -0.915976 0.39003 1.58771 0.955843 -0.02638 -0.292688 41.9387 0 0 0 1 0.322892 0.480848 0.815185 9.99911 0.203665 -0.876443 0.436311 1.4412 0.924262 0.025144 -0.380929 41.9747 0 0 0 1 0.345253 0.55399 0.757559 9.76621 0.329718 -0.827338 0.45475 1.258 0.878684 0.092778 -0.468302 42.0347 0 0 0 1 0.350151 0.607369 0.713089 9.33727 0.445453 -0.777662 0.443637 1.00253 0.823994 0.162308 -0.542853 42.1381 0 0 0 1 0.358516 0.634766 0.684499 8.61866 0.569588 -0.72968 0.378334 0.637725 0.739619 0.254244 -0.623157 42.2967 0 0 0 1 0.350776 0.631512 0.691483 7.49632 0.635478 -0.702886 0.31956 0.138609 0.68784 0.327328 -0.647867 42.5129 0 0 0 1 0.302965 0.602497 0.738384 5.77107 0.598588 -0.723196 0.344499 -0.529016 0.741556 0.337617 -0.57975 42.7759 0 0 0 1 0.23077 0.548158 0.803908 3.42967 0.514237 -0.770104 0.377491 -1.2645 0.826018 0.326285 -0.4596 43.0092 0 0 0 1 0.147257 0.472298 0.869051 0.645994 0.427793 -0.822611 0.374572 -1.87079 0.891801 0.316616 -0.323181 43.1166 0 0 0 1 0.060673 0.384071 0.921308 -2.30917 0.362976 -0.868306 0.338072 -2.20337 0.929821 0.313901 -0.192091 43.0429 0 0 0 1 -0.039696 0.297603 0.953864 -5.17245 0.308566 -0.904308 0.294983 -2.23527 0.950374 0.306039 -0.055932 42.7916 0 0 0 1 -0.148843 0.225775 0.962742 -7.72171 0.265023 -0.928862 0.258803 -2.04155 0.952685 0.293669 0.078419 42.4162 0 0 0 1 -0.258842 0.183274 0.948373 -9.72063 0.227768 -0.942566 0.244317 -1.78231 0.938681 0.279249 0.202231 42.0159 0 0 0 1 -0.359602 0.192621 0.913008 -10.852 0.187764 -0.94351 0.27301 -1.59268 0.914019 0.269605 0.30312 41.7463 0 0 0 1 -0.445988 0.248545 0.859837 -11.2056 0.134202 -0.93124 0.338794 -1.47682 0.88492 0.26649 0.381968 41.6574 0 0 0 1 -0.511837 0.322439 0.796276 -11.0791 0.068078 -0.908753 0.411744 -1.37548 0.85638 0.264956 0.443183 41.6951 0 0 0 1 -0.558752 0.387616 0.733178 -10.7818 -0.001075 -0.884393 0.466742 -1.22642 0.829334 0.260005 0.494572 41.7781 0 0 0 1 -0.590893 0.451641 0.66848 -10.4382 -0.073588 -0.855329 0.512833 -1.04751 0.803387 0.253837 0.538643 41.8708 0 0 0 1 -0.60364 0.522088 0.60253 -9.87106 -0.149781 -0.816562 0.557488 -0.809042 0.783061 0.246274 0.571108 42.0141 0 0 0 1 -0.598508 0.576678 0.556085 -8.94921 -0.213019 -0.783707 0.58346 -0.426473 0.772276 0.230749 0.591899 42.227 0 0 0 1 -0.572789 0.597854 0.560788 -7.49618 -0.23749 -0.775831 0.584538 0.150597 0.784545 0.201635 0.586372 42.5129 0 0 0 1 -0.523101 0.580785 0.623743 -5.37691 -0.213908 -0.797903 0.563556 0.906382 0.82499 0.161372 0.541618 42.8258 0 0 0 1 -0.450126 0.537365 0.713179 -2.70994 -0.164655 -0.834917 0.525169 1.68719 0.877653 0.118964 0.464298 43.0559 0 0 0 1 -0.359725 0.473835 0.80379 0.291923 -0.109151 -0.876913 0.468091 2.28489 0.926652 0.080649 0.367168 43.1149 0 0 0 1 -0.257661 0.400891 0.879145 3.31228 -0.064541 -0.914976 0.398314 2.5707 0.964078 0.045888 0.261628 42.973 0 0 0 1 -0.146846 0.329733 0.932584 6.05577 -0.037286 -0.943979 0.327891 2.55047 0.988456 0.013377 0.150914 42.6741 0 0 0 1 -0.036264 0.274014 0.961042 8.27682 -0.024911 -0.961623 0.27324 2.32828 0.999032 -0.014032 0.041697 42.3115 0 0 0 1 0.063877 0.249689 0.966217 9.71111 -0.019037 -0.967713 0.251334 2.07288 0.997776 -0.034448 -0.057061 42.018 0 0 0 1 0.15302 0.26472 0.952107 10.4884 -0.007048 -0.963137 0.26892 1.8821 0.988198 -0.047861 -0.145513 41.8391 0 0 0 1 0.2332 0.311562 0.921166 10.9102 0.024076 -0.948843 0.314828 1.74353 0.972131 -0.051238 -0.228771 41.7367 0 0 0 1 0.299281 0.382767 0.874025 10.9978 0.094374 -0.923393 0.372072 1.63659 0.949487 -0.028868 -0.312477 41.7176 0 0 0 1 0.343239 0.465435 0.815817 10.782 0.20342 -0.884807 0.41921 1.51563 0.916956 0.022064 -0.398379 41.7781 0 0 0 1 0.360362 0.543142 0.758378 10.2925 0.32842 -0.83482 0.441832 1.32933 0.873087 0.089847 -0.479216 41.9071 0 0 0 1 0.357977 0.601746 0.713971 9.55696 0.444759 -0.782215 0.436267 1.03858 0.821 0.161372 -0.547647 42.088 0 0 0 1 0.360295 0.632547 0.685618 8.62243 0.568933 -0.731463 0.375866 0.636798 0.739258 0.254648 -0.62342 42.296 0 0 0 1 0.350776 0.631512 0.691483 7.49623 0.635478 -0.702886 0.319561 0.138516 0.68784 0.327328 -0.647867 42.5129 0 0 0 1 0.304242 0.604078 0.736564 5.88022 0.599198 -0.722451 0.345001 -0.505618 0.740539 0.336384 -0.581762 42.7614 0 0 0 1 0.232976 0.550384 0.801748 3.58387 0.514982 -0.769172 0.378374 -1.23763 0.824934 0.324733 -0.462637 42.9975 0 0 0 1 0.149732 0.474475 0.867441 0.796123 0.428349 -0.821853 0.3756 -1.85249 0.891122 0.315328 -0.326298 43.1149 0 0 0 1 0.062701 0.385743 0.920473 -2.19613 0.363245 -0.867852 0.338947 -2.19612 0.929581 0.313105 -0.194536 43.0492 0 0 0 1 -0.038501 0.298546 0.953618 -5.10951 0.308622 -0.904117 0.295509 -2.23466 0.950405 0.305685 -0.057327 42.7992 0 0 0 1 -0.148475 0.226058 0.962732 -7.7029 0.265012 -0.928819 0.258966 -2.04218 0.952745 0.293586 0.077999 42.4195 0 0 0 1 -0.258191 0.183369 0.948532 -9.71085 0.228023 -0.942516 0.244274 -1.78369 0.938799 0.279356 0.201536 42.018 0 0 0 1 -0.359602 0.192621 0.913008 -10.852 0.187764 -0.94351 0.27301 -1.59268 0.914019 0.269605 0.30312 41.7463 0 0 0 1 -0.445989 0.248545 0.859837 -11.2056 0.134202 -0.93124 0.338795 -1.47682 0.88492 0.26649 0.381968 41.6574 0 0 0 1 -0.511838 0.322439 0.796276 -11.0791 0.068079 -0.908753 0.411744 -1.37553 0.85638 0.264957 0.443183 41.6951 0 0 0 1 - - - - - - - - LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR - - - - - - - - - - - - - - - - 0 0.033333 0.066666 0.1 0.133333 0.166667 0.2 0.233333 0.266667 0.3 0.333333 0.366667 0.4 0.433333 0.466667 0.5 0.533333 0.566667 0.6 0.633333 0.666667 0.7 0.733333 0.766667 0.8 0.833333 0.866667 0.9 0.933333 0.966667 1 1.03333 1.06667 1.1 1.13333 1.16667 1.2 1.23333 1.26667 1.3 1.33333 1.36667 1.4 1.43333 1.46667 1.5 1.53333 1.56667 1.6 1.63333 1.66667 1.7 1.73333 1.76667 1.8 1.83333 1.86667 1.9 1.93333 1.96667 2 2.03333 2.06667 2.1 2.13333 2.16667 2.2 2.23333 2.26667 2.3 2.33333 2.36667 2.4 2.43333 2.46667 2.5 2.53333 2.56667 2.6 2.63333 2.66667 2.7 2.73333 2.76667 2.8 2.83333 2.86667 2.9 2.93333 2.96667 3 3.03333 3.06667 3.1 3.13333 3.16667 3.2 3.23333 3.26667 3.3 3.33333 - - - - - - - CONSTANT - CONSTANT - - - - 0.917178 -0.198333 0.345613 175.071 -0.358196 -0.790364 0.497012 0.000071 0.174586 -0.579645 -0.795947 0.000007 0 0 0 1 0.857285 -0.258132 0.445455 175.071 -0.484094 -0.698688 0.526771 -0.000054 0.175258 -0.667235 -0.723935 -0.000053 0 0 0 1 0.795299 -0.283321 0.535936 175.071 -0.585284 -0.58917 0.557066 -0.000072 0.157929 -0.756709 -0.63439 -0.000063 0 0 0 1 0.740677 -0.27957 0.610933 175.071 -0.661028 -0.46587 0.588223 0.000041 0.120166 -0.839527 -0.529863 -0.000018 0 0 0 1 0.698331 -0.251652 0.670079 175.071 -0.712435 -0.334701 0.616774 -0.000054 0.069063 -0.9081 -0.413018 0.000074 0 0 0 1 0.669512 -0.203913 0.714263 175.071 -0.742616 -0.205196 0.637508 -0.000046 0.016568 -0.957243 -0.288811 0.000006 0 0 0 1 0.654418 -0.141907 0.742697 175.071 -0.755507 -0.082766 0.649892 0.000077 -0.030754 -0.986414 -0.161376 -0.000013 0 0 0 1 0.651011 -0.071663 0.755678 175.071 -0.756235 0.024709 0.653834 0.000029 -0.065528 -0.997123 -0.038108 0.00003 0 0 0 1 0.658656 0.004865 0.752429 175.071 -0.748206 0.110218 0.654247 -0.000008 -0.079748 -0.993896 0.076235 0.000021 0 0 0 1 0.673853 0.089015 0.733484 175.071 -0.735439 0.176302 0.654253 -0.00008 -0.071076 -0.980303 0.184267 0.000059 0 0 0 1 0.688649 0.176235 0.703352 175.071 -0.723778 0.225511 0.652143 -0.000078 -0.043684 -0.958169 0.282853 0.00003 0 0 0 1 0.696998 0.260318 0.668153 175.071 -0.717049 0.260785 0.6464 0.00002 -0.005975 -0.929637 0.368427 -0.000005 0 0 0 1 0.696846 0.337583 0.632806 175.071 -0.716474 0.287394 0.635665 -0.000051 0.032725 -0.896349 0.442139 0.000017 0 0 0 1 0.689566 0.402014 0.602398 175.071 -0.721581 0.310404 0.618845 0.000083 0.061797 -0.861414 0.50413 -0.000008 0 0 0 1 0.679611 0.446897 0.581731 175.071 -0.730116 0.33518 0.595471 -0.000008 0.07113 -0.82942 0.554079 0.000059 0 0 0 1 0.693223 0.424229 0.582642 175.071 -0.720637 0.395501 0.56944 -0.000071 0.011137 -0.814622 0.579885 -0.000011 0 0 0 1 0.710405 0.337213 0.617747 175.071 -0.694449 0.478412 0.537459 0.000001 -0.1143 -0.810808 0.574044 -0.000041 0 0 0 1 0.693654 0.242093 0.678406 175.071 -0.675657 0.545126 0.496312 0.000037 -0.249663 -0.802638 0.541701 -0.000029 0 0 0 1 0.650872 0.144118 0.745382 175.071 -0.6574 0.598067 0.458411 -0.000038 -0.379723 -0.788382 0.484009 0.000019 0 0 0 1 0.587169 0.041762 0.808386 175.071 -0.636308 0.641109 0.429059 -0.000041 -0.500344 -0.766313 0.403013 0.000046 0 0 0 1 0.49941 -0.044671 0.865213 175.071 -0.635413 0.659983 0.400842 -0.000013 -0.588932 -0.749952 0.301217 0.00004 0 0 0 1 0.398162 -0.10585 0.911187 175.071 -0.679083 0.63378 0.370365 0.000019 -0.616695 -0.766237 0.180466 -0.000031 0 0 0 1 0.307903 -0.150317 0.939467 175.071 -0.766717 0.545457 0.33856 0.000065 -0.563331 -0.824549 0.052697 0.000009 0 0 0 1 0.243745 -0.203274 0.948298 175.071 -0.865298 0.396014 0.307299 -0.000035 -0.438005 -0.895462 -0.079366 0.000047 0 0 0 1 0.217911 -0.281436 0.93451 175.071 -0.935837 0.2115 0.281916 -0.000069 -0.27699 -0.935982 -0.21729 -0.000051 0 0 0 1 0.266437 -0.379543 0.885979 175.071 -0.957628 0.000053 0.288006 -0.000077 -0.109358 -0.925174 -0.363447 0.000012 0 0 0 1 0.39889 -0.450108 0.79893 175.071 -0.915773 -0.240565 0.321696 -0.000001 0.047396 -0.85996 -0.508156 0.000064 0 0 0 1 0.575875 -0.446658 0.684736 175.071 -0.8006 -0.477714 0.361704 -0.000085 0.16555 -0.756496 -0.632698 0.000093 0 0 0 1 0.733773 -0.372797 0.567978 175.071 -0.641241 -0.65624 0.397694 -0.000033 0.224471 -0.656028 -0.720583 -0.000009 0 0 0 1 0.863107 -0.268164 0.427943 175.071 -0.46119 -0.763827 0.451521 0.000088 0.205793 -0.587074 -0.782939 0.000026 0 0 0 1 0.917179 -0.198331 0.345613 175.071 -0.358194 -0.790365 0.497012 -0.000052 0.174587 -0.579645 -0.795947 -0.000017 0 0 0 1 0.88148 -0.240524 0.406376 175.071 -0.436404 -0.743684 0.506445 0.000086 0.180403 -0.623765 -0.760508 -0.000007 0 0 0 1 0.8021 -0.296836 0.518193 175.071 -0.569831 -0.640055 0.515386 0.000047 0.178687 -0.708673 -0.682534 0.000022 0 0 0 1 0.72683 -0.306837 0.614467 175.071 -0.671493 -0.505404 0.541908 -0.000007 0.144276 -0.806485 -0.573382 0.000004 0 0 0 1 0.6834 -0.274705 0.676389 175.071 -0.724925 -0.364892 0.584241 -0.000006 0.086315 -0.889601 -0.448508 -0.000028 0 0 0 1 0.659086 -0.217441 0.719948 175.071 -0.751665 -0.221766 0.621144 -0.000015 0.024598 -0.950547 -0.309605 0.000009 0 0 0 1 0.651354 -0.145455 0.744702 175.071 -0.758213 -0.08703 0.646172 0.000022 -0.029177 -0.98553 -0.166973 0.000108 0 0 0 1 0.652208 -0.070412 0.754762 175.071 -0.755197 0.025799 0.654991 -0.000092 -0.065591 -0.997184 -0.036348 -0.000019 0 0 0 1 0.660079 0.006376 0.751169 175.071 -0.746967 0.111534 0.655439 0.00004 -0.079602 -0.99374 0.078383 0.000021 0 0 0 1 0.675436 0.091155 0.731763 175.071 -0.734032 0.178096 0.655346 0.000003 -0.070584 -0.979782 0.187203 0.000118 0 0 0 1 0.689992 0.177724 0.701658 175.071 -0.722529 0.226894 0.653047 -0.000078 -0.04314 -0.957566 0.284966 0.000105 0 0 0 1 0.698041 0.261523 0.666591 175.071 -0.716037 0.261952 0.647049 -0.000033 -0.005396 -0.928971 0.370113 -0.000027 0 0 0 1 0.697507 0.338825 0.631411 175.071 -0.715799 0.288372 0.635982 0.000016 0.033405 -0.895566 0.443673 0.000056 0 0 0 1 0.689867 0.402398 0.601796 175.071 -0.721271 0.310798 0.619008 0.000038 0.06205 -0.861092 0.504648 -0.000009 0 0 0 1 0.679611 0.446898 0.581731 175.071 -0.730116 0.335179 0.595471 -0.00004 0.07113 -0.82942 0.554078 0.00002 0 0 0 1 0.693064 0.424017 0.582985 175.071 -0.720792 0.395293 0.569387 -0.000113 0.010979 -0.814833 0.579592 0.000012 0 0 0 1 0.710245 0.337003 0.618046 175.071 -0.694588 0.478231 0.53744 -0.000004 -0.114449 -0.811002 0.57374 -0.000019 0 0 0 1 0.693586 0.242004 0.678508 175.071 -0.675707 0.545061 0.496315 0.000111 -0.249718 -0.802709 0.541571 -0.000056 0 0 0 1 0.650873 0.144118 0.745382 175.071 -0.6574 0.598067 0.458411 -0.000108 -0.379723 -0.788382 0.484009 0.000014 0 0 0 1 0.58717 0.041762 0.808386 175.071 -0.636308 0.641108 0.429061 0.000002 -0.500344 -0.766313 0.403013 0.000082 0 0 0 1 0.49941 -0.044672 0.865213 175.071 -0.635412 0.659983 0.400842 -0.00007 -0.588932 -0.749951 0.301217 0.000032 0 0 0 1 0.398765 -0.10551 0.910963 175.071 -0.678726 0.634057 0.370544 -0.000032 -0.616699 -0.766054 0.181228 -0.000031 0 0 0 1 0.307902 -0.150318 0.939468 175.071 -0.766718 0.545454 0.33856 0.000099 -0.563329 -0.824551 0.052695 -0.000099 0 0 0 1 0.243745 -0.203274 0.948297 175.071 -0.865297 0.396015 0.3073 -0.000018 -0.438006 -0.895462 -0.079365 -0.00005 0 0 0 1 0.21798 -0.282043 0.934311 175.071 -0.936126 0.210268 0.281878 -0.000035 -0.275957 -0.936076 -0.218193 0.000098 0 0 0 1 0.266435 -0.379541 0.88598 175.071 -0.957629 0.000057 0.288007 -0.000068 -0.109361 -0.925175 -0.363445 -0.00003 0 0 0 1 0.398891 -0.450108 0.79893 175.071 -0.915773 -0.240566 0.321697 -0.000016 0.047397 -0.85996 -0.508156 -0.000079 0 0 0 1 0.575875 -0.446658 0.684737 175.071 -0.8006 -0.477714 0.361704 -0.000051 0.165551 -0.756496 -0.632698 0.000031 0 0 0 1 0.733774 -0.372797 0.567978 175.071 -0.64124 -0.656241 0.397692 0.000018 0.224472 -0.656027 -0.720584 -0.000002 0 0 0 1 0.863107 -0.268164 0.427943 175.071 -0.46119 -0.763828 0.451521 -0.00002 0.205793 -0.587074 -0.782939 0.000004 0 0 0 1 0.917178 -0.198331 0.345613 175.071 -0.358194 -0.790365 0.497012 0.000034 0.174588 -0.579645 -0.795947 0.000000 0 0 0 1 0.881815 -0.240174 0.405855 175.071 -0.435725 -0.744146 0.506349 0.000043 0.180403 -0.623348 -0.76085 0.000055 0 0 0 1 0.802099 -0.296837 0.518194 175.071 -0.569832 -0.640054 0.515386 -0.000007 0.178687 -0.708674 -0.682534 -0.000004 0 0 0 1 0.726447 -0.306746 0.614965 175.071 -0.671969 -0.504548 0.542116 -0.000001 0.143987 -0.807056 -0.572651 0.00003 0 0 0 1 0.683399 -0.274706 0.676389 175.071 -0.724924 -0.364895 0.584241 0.000025 0.086316 -0.8896 -0.44851 0.000003 0 0 0 1 0.659086 -0.217441 0.719948 175.071 -0.751665 -0.221765 0.621144 -0.000092 0.024598 -0.950547 -0.309605 -0.000023 0 0 0 1 0.651353 -0.145454 0.744703 175.071 -0.758213 -0.08703 0.646172 0.000002 -0.029177 -0.98553 -0.166973 -0.000043 0 0 0 1 0.652208 -0.070411 0.754763 175.071 -0.755196 0.025799 0.654991 -0.000053 -0.065591 -0.997184 -0.036347 -0.00008 0 0 0 1 0.660079 0.006376 0.751169 175.071 -0.746967 0.111534 0.655439 0.000047 -0.079602 -0.99374 0.078383 0.00002 0 0 0 1 0.675436 0.091154 0.731762 175.071 -0.734032 0.178097 0.655346 -0.000069 -0.070585 -0.979782 0.187203 0.000006 0 0 0 1 0.689992 0.177724 0.701658 175.071 -0.72253 0.226895 0.653046 -0.000124 -0.043141 -0.957566 0.284966 0.000028 0 0 0 1 0.698041 0.261523 0.666591 175.071 -0.716037 0.261953 0.647049 -0.000143 -0.005396 -0.928971 0.370114 -0.000065 0 0 0 1 0.697516 0.338394 0.631634 175.071 -0.7158 0.28821 0.636054 0.00005 0.033193 -0.895782 0.443253 0.000042 0 0 0 1 0.689867 0.402398 0.601796 175.071 -0.721272 0.310799 0.619008 -0.00004 0.06205 -0.861091 0.504649 -0.000013 0 0 0 1 0.679611 0.446897 0.581731 175.071 -0.730116 0.335179 0.595471 0.000009 0.07113 -0.82942 0.554078 0.000007 0 0 0 1 0.693064 0.424017 0.582985 175.071 -0.720792 0.395294 0.569387 -0.00004 0.01098 -0.814833 0.579592 -0.000029 0 0 0 1 0.71029 0.337524 0.61771 175.071 -0.694677 0.477778 0.537729 0.000017 -0.113632 -0.811052 0.573831 -0.000033 0 0 0 1 0.693586 0.242004 0.678508 175.071 -0.675707 0.545061 0.496315 0.000155 -0.249718 -0.802709 0.541571 -0.000027 0 0 0 1 0.650537 0.143491 0.745796 175.071 -0.657278 0.598363 0.4582 -0.000167 -0.380509 -0.788272 0.483571 0.00001 0 0 0 1 0.587171 0.041764 0.808385 175.071 -0.636308 0.641108 0.42906 -0.000083 -0.500342 -0.766314 0.403014 -0.000099 0 0 0 1 0.49941 -0.044671 0.865213 175.071 -0.635412 0.659983 0.400842 -0.000073 -0.588932 -0.749951 0.301217 -0.000000 0 0 0 1 0.398765 -0.10551 0.910963 175.071 -0.678726 0.634057 0.370544 0.000056 -0.616699 -0.766054 0.181228 -0.000047 0 0 0 1 0.308377 -0.150018 0.93936 175.071 -0.766125 0.54618 0.338733 0.000049 -0.563876 -0.824125 0.053496 -0.000107 0 0 0 1 0.243745 -0.203274 0.948297 175.071 -0.865297 0.396015 0.3073 -0.000000 -0.438006 -0.895462 -0.079365 0.000025 0 0 0 1 0.21798 -0.282043 0.934311 175.071 -0.936126 0.210268 0.281878 -0.000027 -0.275957 -0.936076 -0.218193 0.000008 0 0 0 1 0.266435 -0.379541 0.88598 175.071 -0.957629 0.000057 0.288007 -0.000079 -0.109361 -0.925175 -0.363445 0.00002 0 0 0 1 0.398891 -0.450109 0.79893 175.071 -0.915773 -0.240565 0.321697 0.000019 0.047396 -0.85996 -0.508156 -0.00002 0 0 0 1 0.574823 -0.446925 0.685446 175.071 -0.80147 -0.476414 0.361491 -0.000109 0.164997 -0.757158 -0.632051 0.000067 0 0 0 1 0.733776 -0.372795 0.567975 175.071 -0.641237 -0.656242 0.397694 -0.000003 0.224471 -0.656026 -0.720585 -0.000013 0 0 0 1 0.863107 -0.268163 0.427943 175.071 -0.46119 -0.763828 0.451521 -0.000006 0.205793 -0.587074 -0.782939 0.000015 0 0 0 1 0.917179 -0.198331 0.345613 175.071 -0.358194 -0.790365 0.497012 0.000056 0.174588 -0.579645 -0.795947 0.000049 0 0 0 1 0.881815 -0.240174 0.405854 175.071 -0.435725 -0.744146 0.506349 -0.000067 0.180403 -0.623348 -0.76085 -0.000009 0 0 0 1 0.802099 -0.296837 0.518194 175.071 -0.569831 -0.640055 0.515386 0.00001 0.178687 -0.708673 -0.682534 0.000037 0 0 0 1 0.726447 -0.306746 0.614965 175.071 -0.671969 -0.504548 0.542116 -0.000091 0.143987 -0.807056 -0.572651 0.000017 0 0 0 1 0.683399 -0.274707 0.676388 175.071 -0.724924 -0.364894 0.584242 -0.000099 0.086314 -0.8896 -0.44851 -0.000088 0 0 0 1 0.659086 -0.217441 0.719948 175.071 -0.751665 -0.221766 0.621144 -0.000059 0.024598 -0.950547 -0.309605 0.000028 0 0 0 1 0.651353 -0.145455 0.744702 175.071 -0.758213 -0.087028 0.646172 0.000034 -0.029179 -0.98553 -0.166973 0.000018 0 0 0 1 0.652182 -0.07089 0.754741 175.071 -0.755233 0.025179 0.654973 -0.000041 -0.065434 -0.997166 -0.037117 -0.000032 0 0 0 1 0.660079 0.006374 0.751169 175.071 -0.746967 0.111535 0.655439 -0.000017 -0.079603 -0.99374 0.078384 -0.00005 0 0 0 1 0.675436 0.091155 0.731763 175.071 -0.734032 0.178096 0.655346 -0.000055 -0.070584 -0.979782 0.187203 -0.000024 0 0 0 1 0.689993 0.177723 0.701658 175.071 -0.722529 0.226895 0.653046 -0.000173 -0.043141 -0.957566 0.284966 0.00006 0 0 0 1 - - - - - - - - LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR - - - - - - - - - - - - - - - - 0 0.033333 0.066666 0.1 0.133333 0.166667 0.2 0.233333 0.266667 0.3 0.333333 0.366667 0.4 0.433333 0.466667 0.5 0.533333 0.566667 0.6 0.633333 0.666667 0.7 0.733333 0.766667 0.8 0.833333 0.866667 0.9 0.933333 0.966667 1 1.03333 1.06667 1.1 1.13333 1.16667 1.2 1.23333 1.26667 1.3 1.33333 1.36667 1.4 1.43333 1.46667 1.5 1.53333 1.56667 1.6 1.63333 1.66667 1.7 1.73333 1.76667 1.8 1.83333 1.86667 1.9 1.93333 1.96667 2 2.03333 2.06667 2.1 2.13333 2.16667 2.2 2.23333 2.26667 2.3 2.33333 2.36667 2.4 2.43333 2.46667 2.5 2.53333 2.56667 2.6 2.63333 2.66667 2.7 2.73333 2.76667 2.8 2.83333 2.86667 2.9 2.93333 2.96667 3 3.03333 3.06667 3.1 3.13333 3.16667 3.2 3.23333 3.26667 3.3 3.33333 - - - - - - - CONSTANT - CONSTANT - - - - 0.472321 0.881426 0 370.017 -0.881427 0.472321 0 0.00002 0 0 1 0.000000 0 0 0 1 0.31911 0.947718 0 370.017 -0.947718 0.31911 0 0.000064 0 0 1 0.000000 0 0 0 1 0.188328 0.982106 0 370.017 -0.982106 0.188328 0 0.000012 0 0 1 0.000000 0 0 0 1 0.074413 0.997227 0 370.018 -0.997227 0.074413 0 -0.000006 0 0 1 0.000000 0 0 0 1 -0.021681 0.999765 0 370.018 -0.999765 -0.021681 0 0.000055 0 0 1 0.000000 0 0 0 1 -0.0937 0.9956 0 370.018 -0.9956 -0.0937 0 0.000126 0 0 1 0.000000 0 0 0 1 -0.140994 0.99001 0 370.018 -0.99001 -0.140994 0 -0.000026 0 0 1 0.000000 0 0 0 1 -0.163086 0.986612 0 370.018 -0.986612 -0.163086 0 -0.000000 0 0 1 0.000000 0 0 0 1 -0.163842 0.986487 0 370.017 -0.986487 -0.163842 0 0.000017 0 0 1 0.000000 0 0 0 1 -0.14538 0.989376 0 370.017 -0.989376 -0.14538 0 0.000109 0 0 1 0.000000 0 0 0 1 -0.109253 0.994013 0 370.018 -0.994013 -0.109253 0 0.000002 0 0 1 0.000000 0 0 0 1 -0.059656 0.998219 0 370.018 -0.998219 -0.059656 0 0.000079 0 0 1 0.000000 0 0 0 1 -0.000796 1 0 370.017 -1 -0.000795 0 0.000076 0 0 1 0.000000 0 0 0 1 0.061211 0.998125 0 370.017 -0.998125 0.061211 0 0.000013 0 0 1 0.000000 0 0 0 1 0.118702 0.99293 0 370.017 -0.99293 0.118702 0 0.000104 0 0 1 0.000000 0 0 0 1 0.112618 0.993638 0 370.017 -0.993638 0.112618 0 0.000028 0 0 1 0.000000 0 0 0 1 0.078147 0.996941 0 370.018 -0.996941 0.078147 0 0.000049 0 0 1 0.000000 0 0 0 1 0.077721 0.996975 0 370.018 -0.996975 0.077721 0 0.000051 0 0 1 0.000000 0 0 0 1 0.034534 0.999404 0 370.018 -0.999403 0.034534 0 0.00011 0 0 1 0.000000 0 0 0 1 -0.099232 0.995064 0 370.017 -0.995064 -0.099232 0 0.000031 0 0 1 0.000000 0 0 0 1 -0.243679 0.969856 0 370.018 -0.969856 -0.243679 0 0.000085 0 0 1 0.000000 0 0 0 1 -0.347392 0.93772 0 370.017 -0.93772 -0.347392 0 0.000003 0 0 1 0.000000 0 0 0 1 -0.386367 0.922345 0 370.018 -0.922345 -0.386367 0 -0.000005 0 0 1 0.000000 0 0 0 1 -0.367516 0.930017 0 370.018 -0.930017 -0.367516 0 0.000066 0 0 1 0.000000 0 0 0 1 -0.317089 0.948396 0 370.017 -0.948396 -0.317089 0 -0.000117 0 0 1 0.000000 0 0 0 1 -0.278351 0.96048 0 370.017 -0.96048 -0.278351 0 0.000000 0 0 1 0.000000 0 0 0 1 -0.23207 0.972699 0 370.017 -0.972699 -0.23207 0 0.000029 0 0 1 0.000000 0 0 0 1 -0.132309 0.991208 0 370.017 -0.991208 -0.132309 0 0.00003 0 0 1 0.000000 0 0 0 1 0.03208 0.999485 0 370.017 -0.999485 0.03208 0 0.000108 0 0 1 0.000000 0 0 0 1 0.290971 0.956732 0 370.017 -0.956732 0.290971 0 0.000101 0 0 1 0.000000 0 0 0 1 0.472324 0.881425 0 370.017 -0.881425 0.472324 0 0.000056 0 0 1 0.000000 0 0 0 1 0.386845 0.922145 0 370.017 -0.922145 0.386845 0 0.00008 0 0 1 0.000000 0 0 0 1 0.218078 0.975931 0 370.017 -0.975931 0.218078 0 -0.000124 0 0 1 0.000000 0 0 0 1 0.075253 0.997164 0 370.018 -0.997164 0.075253 0 0.000099 0 0 1 0.000000 0 0 0 1 -0.021595 0.999767 0 370.017 -0.999767 -0.021595 0 0.000000 0 0 1 0.000000 0 0 0 1 -0.094689 0.995507 0 370.017 -0.995507 -0.094689 0 -0.000008 0 0 1 0.000000 0 0 0 1 -0.141787 0.989897 0 370.017 -0.989897 -0.141787 0 -0.000105 0 0 1 0.000000 0 0 0 1 -0.163085 0.986612 0 370.017 -0.986612 -0.163085 0 0.000023 0 0 1 0.000000 0 0 0 1 -0.163841 0.986487 0 370.017 -0.986487 -0.163841 0 -0.000002 0 0 1 0.000000 0 0 0 1 -0.145209 0.989401 0 370.018 -0.989401 -0.145209 0 0.000046 0 0 1 0.000000 0 0 0 1 -0.109253 0.994014 0 370.017 -0.994014 -0.109252 0 0.000004 0 0 1 0.000000 0 0 0 1 -0.059655 0.998219 0 370.017 -0.998219 -0.059655 0 0.000082 0 0 1 0.000000 0 0 0 1 -0.000415 1 0 370.018 -1 -0.000415 0 0.000036 0 0 1 0.000000 0 0 0 1 0.061212 0.998125 0 370.017 -0.998125 0.061212 0 0.00004 0 0 1 0.000000 0 0 0 1 0.118703 0.99293 0 370.018 -0.99293 0.118703 0 0.000015 0 0 1 0.000000 0 0 0 1 0.112619 0.993638 0 370.017 -0.993638 0.112619 0 0.000042 0 0 1 0.000000 0 0 0 1 0.078148 0.996942 0 370.017 -0.996942 0.078148 0 0.000009 0 0 1 0.000000 0 0 0 1 0.077723 0.996975 0 370.017 -0.996975 0.077723 0 0.000034 0 0 1 0.000000 0 0 0 1 0.034535 0.999404 0 370.018 -0.999403 0.034535 0 0.000088 0 0 1 0.000000 0 0 0 1 -0.099231 0.995064 0 370.017 -0.995064 -0.099231 0 0.000099 0 0 1 0.000000 0 0 0 1 -0.243678 0.969856 0 370.017 -0.969856 -0.243678 0 0.000099 0 0 1 0.000000 0 0 0 1 -0.346949 0.937884 0 370.018 -0.937884 -0.346949 0 0.000017 0 0 1 0.000000 0 0 0 1 -0.386367 0.922345 0 370.018 -0.922345 -0.386367 0 -0.000034 0 0 1 0.000000 0 0 0 1 -0.367516 0.930017 0 370.018 -0.930017 -0.367516 0 -0.000048 0 0 1 0.000000 0 0 0 1 -0.31681 0.948489 0 370.018 -0.948489 -0.31681 0 -0.000011 0 0 1 0.000000 0 0 0 1 -0.278352 0.96048 0 370.018 -0.96048 -0.278352 0 0.000037 0 0 1 0.000000 0 0 0 1 -0.232069 0.972699 0 370.017 -0.972699 -0.232069 0 0.000024 0 0 1 0.000000 0 0 0 1 -0.132307 0.991208 0 370.018 -0.991208 -0.132307 0 -0.000066 0 0 1 0.000000 0 0 0 1 0.032082 0.999485 0 370.017 -0.999485 0.032082 0 0.000006 0 0 1 0.000000 0 0 0 1 0.290972 0.956731 0 370.017 -0.956732 0.290972 0 0.000085 0 0 1 0.000000 0 0 0 1 0.472323 0.881425 0 370.017 -0.881425 0.472323 0 0.000079 0 0 1 0.000000 0 0 0 1 0.387631 0.921815 0 370.017 -0.921815 0.387631 0 0.000131 0 0 1 0.000000 0 0 0 1 0.218076 0.975932 0 370.017 -0.975932 0.218076 0 0.000138 0 0 1 0.000000 0 0 0 1 0.0745 0.997221 0 370.017 -0.997221 0.0745 0 0.000088 0 0 1 0.000000 0 0 0 1 -0.021594 0.999767 0 370.017 -0.999767 -0.021594 0 0.000061 0 0 1 0.000000 0 0 0 1 -0.09469 0.995507 0 370.018 -0.995507 -0.09469 0 0.000005 0 0 1 0.000000 0 0 0 1 -0.141788 0.989897 0 370.018 -0.989897 -0.141788 0 0.000083 0 0 1 0.000000 0 0 0 1 -0.163086 0.986612 0 370.018 -0.986612 -0.163086 0 0.000085 0 0 1 0.000000 0 0 0 1 -0.163842 0.986487 0 370.017 -0.986487 -0.163842 0 -0.00005 0 0 1 0.000000 0 0 0 1 -0.145209 0.989401 0 370.017 -0.989401 -0.14521 0 -0.000000 0 0 1 0.000000 0 0 0 1 -0.109253 0.994014 0 370.017 -0.994014 -0.109253 0 0.000023 0 0 1 0.000000 0 0 0 1 -0.059657 0.998219 0 370.018 -0.998219 -0.059656 0 0.000017 0 0 1 0.000000 0 0 0 1 -0.000796 1 0 370.018 -1 -0.000796 0 0.000064 0 0 1 0.000000 0 0 0 1 0.061211 0.998125 0 370.017 -0.998125 0.061211 0 0.000013 0 0 1 0.000000 0 0 0 1 0.118701 0.99293 0 370.017 -0.99293 0.118701 0 0.000081 0 0 1 0.000000 0 0 0 1 0.112617 0.993638 0 370.018 -0.993638 0.112617 0 0.000024 0 0 1 0.000000 0 0 0 1 0.078154 0.996941 0 370.017 -0.996941 0.078154 0 0.000012 0 0 1 0.000000 0 0 0 1 0.077722 0.996975 0 370.018 -0.996975 0.077722 0 0.000061 0 0 1 0.000000 0 0 0 1 0.033978 0.999423 0 370.018 -0.999423 0.033978 0 0.000016 0 0 1 0.000000 0 0 0 1 -0.099229 0.995064 0 370.017 -0.995064 -0.099229 0 0.00002 0 0 1 0.000000 0 0 0 1 -0.243678 0.969856 0 370.017 -0.969856 -0.243678 0 0.000067 0 0 1 0.000000 0 0 0 1 -0.346949 0.937884 0 370.018 -0.937884 -0.346949 0 0.000001 0 0 1 0.000000 0 0 0 1 -0.386368 0.922345 0 370.018 -0.922345 -0.386368 0 -0.000003 0 0 1 0.000000 0 0 0 1 -0.367516 0.930017 0 370.018 -0.930017 -0.367516 0 0.000001 0 0 1 0.000000 0 0 0 1 -0.31681 0.948489 0 370.017 -0.948489 -0.31681 0 0.000028 0 0 1 0.000000 0 0 0 1 -0.278353 0.960478 0 370.018 -0.960478 -0.278353 0 0.000000 0 0 1 0.000000 0 0 0 1 -0.232071 0.972699 0 370.017 -0.972699 -0.232071 0 0.000022 0 0 1 0.000000 0 0 0 1 -0.133133 0.991098 0 370.017 -0.991098 -0.133133 0 0.000048 0 0 1 0.000000 0 0 0 1 0.032084 0.999485 0 370.017 -0.999485 0.032084 0 -0.000027 0 0 1 0.000000 0 0 0 1 0.290972 0.956732 0 370.017 -0.956731 0.290972 0 0.000025 0 0 1 0.000000 0 0 0 1 0.472325 0.881424 0 370.017 -0.881424 0.472325 0 0.000071 0 0 1 0.000000 0 0 0 1 0.387632 0.921814 0 370.018 -0.921814 0.387632 0 -0.000091 0 0 1 0.000000 0 0 0 1 0.218077 0.975932 0 370.017 -0.975932 0.218077 0 0.000014 0 0 1 0.000000 0 0 0 1 0.0745 0.997221 0 370.017 -0.997221 0.0745 0 0.000074 0 0 1 0.000000 0 0 0 1 -0.021595 0.999767 0 370.018 -0.999767 -0.021595 0 -0.000017 0 0 1 0.000000 0 0 0 1 -0.09469 0.995507 0 370.017 -0.995507 -0.09469 0 0.000019 0 0 1 0.000000 0 0 0 1 -0.141788 0.989897 0 370.017 -0.989897 -0.141788 0 -0.00002 0 0 1 0.000000 0 0 0 1 -0.163073 0.986614 0 370.017 -0.986614 -0.163073 0 -0.000074 0 0 1 0.000000 0 0 0 1 -0.163843 0.986486 0 370.018 -0.986486 -0.163843 0 0.000024 0 0 1 0.000000 0 0 0 1 -0.14521 0.989401 0 370.018 -0.989401 -0.14521 0 0.00006 0 0 1 0.000000 0 0 0 1 -0.109255 0.994013 0 370.017 -0.994013 -0.109255 0 0.000065 0 0 1 0.000000 0 0 0 1 - - - - - - - - LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR - - - - - - - - - - - - - - - - 0 0.033333 0.066666 0.1 0.133333 0.166667 0.2 0.233333 0.266667 0.3 0.333333 0.366667 0.4 0.433333 0.466667 0.5 0.533333 0.566667 0.6 0.633333 0.666667 0.7 0.733333 0.766667 0.8 0.833333 0.866667 0.9 0.933333 0.966667 1 1.03333 1.06667 1.1 1.13333 1.16667 1.2 1.23333 1.26667 1.3 1.33333 1.36667 1.4 1.43333 1.46667 1.5 1.53333 1.56667 1.6 1.63333 1.66667 1.7 1.73333 1.76667 1.8 1.83333 1.86667 1.9 1.93333 1.96667 2 2.03333 2.06667 2.1 2.13333 2.16667 2.2 2.23333 2.26667 2.3 2.33333 2.36667 2.4 2.43333 2.46667 2.5 2.53333 2.56667 2.6 2.63333 2.66667 2.7 2.73333 2.76667 2.8 2.83333 2.86667 2.9 2.93333 2.96667 3 3.03333 3.06667 3.1 3.13333 3.16667 3.2 3.23333 3.26667 3.3 3.33333 - - - - - - - CONSTANT - CONSTANT - - - - 0.85009 -0.525938 -0.027135 370.018 0.510042 0.809374 0.291155 -0.000058 -0.131167 -0.261348 0.956291 -0.000004 0 0 0 1 0.804873 -0.591158 -0.052076 370.017 0.576001 0.757079 0.308308 -0.000003 -0.142834 -0.278145 0.94986 -0.000004 0 0 0 1 0.767912 -0.636199 -0.074581 370.017 0.621747 0.712287 0.325696 -0.000006 -0.154084 -0.296477 0.942528 -0.000004 0 0 0 1 0.751181 -0.653094 -0.095894 370.017 0.64056 0.686132 0.344827 -0.000017 -0.159409 -0.320453 0.933755 -0.000004 0 0 0 1 0.760363 -0.639505 -0.113496 370.017 0.630529 0.684875 0.365212 -0.000000 -0.155824 -0.349256 0.92398 -0.000004 0 0 0 1 0.789234 -0.601663 -0.122927 370.017 0.596617 0.70384 0.385563 -0.000013 -0.145458 -0.37764 0.914456 -0.000004 0 0 0 1 0.832901 -0.539611 -0.122869 370.018 0.538349 0.73853 0.4059 0.000001 -0.128285 -0.404221 0.90562 -0.000004 0 0 0 1 0.883387 -0.454982 -0.112326 370.017 0.456561 0.78145 0.425309 0.000003 -0.105731 -0.426996 0.898051 -0.000004 0 0 0 1 0.929858 -0.355611 -0.09437 370.017 0.35891 0.820326 0.445252 -0.000001 -0.080923 -0.447891 0.890418 -0.000004 0 0 0 1 0.966508 -0.246528 -0.071313 370.017 0.250791 0.848336 0.466295 0.00004 -0.054456 -0.468563 0.88175 -0.000004 0 0 0 1 0.98983 -0.135471 -0.043414 370.018 0.139426 0.863269 0.485105 0.000084 -0.028238 -0.486225 0.873377 -0.000004 0 0 0 1 0.999372 -0.033279 -0.01219 370.018 0.034923 0.866019 0.498791 -0.000034 -0.006043 -0.498903 0.866637 -0.000004 0 0 0 1 0.998333 0.053575 0.021465 370.017 -0.057063 0.860586 0.506098 0.000027 0.008641 -0.506479 0.862209 -0.000004 0 0 0 1 0.991501 0.117527 0.055794 370.017 -0.129549 0.852541 0.506351 0.000006 0.011943 -0.509276 0.86052 -0.000004 0 0 0 1 0.984445 0.151862 0.088353 370.018 -0.175691 0.848105 0.49985 -0.000025 0.000975 -0.507597 0.861594 -0.000004 0 0 0 1 0.995145 0.0129 0.097568 370.017 -0.060822 0.860005 0.506649 0.000006 -0.077373 -0.510123 0.856614 -0.000004 0 0 0 1 0.952986 -0.292132 0.080477 370.017 0.210214 0.828664 0.518773 -0.000051 -0.21824 -0.477465 0.851116 -0.000004 0 0 0 1 0.835691 -0.545953 0.059623 370.017 0.444483 0.736117 0.510457 -0.000066 -0.322575 -0.400083 0.857834 -0.000004 0 0 0 1 0.754159 -0.655515 0.039288 370.018 0.555669 0.668883 0.493788 0.000005 -0.349964 -0.350564 0.868694 -0.000004 0 0 0 1 0.75986 -0.64986 0.017164 370.018 0.563286 0.671355 0.481655 -0.000039 -0.324532 -0.356322 0.876192 -0.000004 0 0 0 1 0.808086 -0.589064 -0.000893 370.018 0.521239 0.714334 0.466943 -0.000072 -0.274421 -0.377796 0.884287 -0.000004 0 0 0 1 0.873364 -0.486912 -0.012259 370.017 0.441297 0.78039 0.442999 -0.000009 -0.206134 -0.39231 0.896438 -0.000004 0 0 0 1 0.929889 -0.367436 -0.017245 370.018 0.34179 0.845756 0.409728 0.00002 -0.135963 -0.386895 0.912045 -0.000004 0 0 0 1 0.965102 -0.261458 -0.014748 370.018 0.248151 0.895088 0.370458 -0.000017 -0.083658 -0.36119 0.928732 -0.000004 0 0 0 1 0.97712 -0.212579 -0.006875 370.018 0.202736 0.921127 0.332301 0.000019 -0.064307 -0.326092 0.943148 -0.000004 0 0 0 1 0.950548 -0.310397 -0.010528 370.018 0.298087 0.902283 0.311496 0.00001 -0.087188 -0.299231 0.950189 -0.000004 0 0 0 1 0.860626 -0.508614 -0.025178 370.017 0.491202 0.816089 0.304499 0.000003 -0.134325 -0.274427 0.95218 -0.000004 0 0 0 1 0.73331 -0.678864 -0.037419 370.017 0.656632 0.692874 0.297926 -0.000003 -0.176324 -0.243044 0.953855 -0.000004 0 0 0 1 0.667068 -0.74403 -0.037949 370.017 0.720153 0.63094 0.288608 -0.000002 -0.19079 -0.219851 0.956695 -0.000004 0 0 0 1 0.758069 -0.651371 -0.03235 370.018 0.631517 0.720768 0.285797 -0.000001 -0.162843 -0.237083 0.957744 -0.000004 0 0 0 1 0.85009 -0.525937 -0.027135 370.017 0.510041 0.809375 0.291155 0.000027 -0.131166 -0.261348 0.956291 -0.000004 0 0 0 1 0.826675 -0.561336 -0.03888 370.017 0.546854 0.78523 0.290456 0.000013 -0.132513 -0.261376 0.956097 -0.000004 0 0 0 1 0.776009 -0.628167 -0.056716 370.017 0.614039 0.731878 0.295482 0.000001 -0.144103 -0.264122 0.953663 -0.000004 0 0 0 1 0.749662 -0.657373 -0.076609 370.018 0.644028 0.697942 0.313217 -0.000001 -0.152432 -0.284145 0.946587 -0.000004 0 0 0 1 0.759137 -0.643459 -0.098339 370.017 0.63299 0.694517 0.342008 0.000005 -0.151769 -0.32188 0.934538 -0.000004 0 0 0 1 0.788211 -0.604595 -0.11484 370.018 0.598283 0.709107 0.373127 -0.000000 -0.144157 -0.36281 0.920645 -0.000004 0 0 0 1 0.832569 -0.540437 -0.121479 370.017 0.538962 0.739739 0.402872 -0.00002 -0.127864 -0.400892 0.907159 -0.000004 0 0 0 1 0.883586 -0.454177 -0.114013 370.018 0.456426 0.780908 0.42645 0.000002 -0.10465 -0.428844 0.897297 -0.000004 0 0 0 1 0.930042 -0.354581 -0.09641 370.018 0.358786 0.819635 0.446622 0.000016 -0.079343 -0.449967 0.889514 -0.000004 0 0 0 1 0.966827 -0.244681 -0.073323 370.017 0.250012 0.847675 0.467913 0.000029 -0.052335 -0.470723 0.880728 -0.000004 0 0 0 1 0.989892 -0.134344 -0.045438 370.018 0.139383 0.862455 0.486564 0.00002 -0.026178 -0.487979 0.872463 -0.000004 0 0 0 1 0.999381 -0.032332 -0.01383 370.017 0.034915 0.865292 0.50005 0.000003 -0.004199 -0.500224 0.865886 -0.000004 0 0 0 1 0.998291 0.054693 0.02058 370.017 -0.057569 0.860003 0.507032 0.000008 0.010031 -0.507351 0.861682 -0.000004 0 0 0 1 0.991494 0.117838 0.055269 370.017 -0.129543 0.852264 0.506817 -0.000058 0.012618 -0.509666 0.86028 -0.000004 0 0 0 1 0.984445 0.151863 0.088354 370.017 -0.175692 0.848105 0.49985 -0.000003 0.000975 -0.507597 0.861594 -0.000004 0 0 0 1 0.99512 0.012732 0.097852 370.017 -0.060799 0.860164 0.506381 0.000021 -0.077722 -0.509859 0.85674 -0.000004 0 0 0 1 0.952917 -0.292283 0.080746 370.017 0.210275 0.828802 0.518529 0.000034 -0.21848 -0.477136 0.851239 -0.000004 0 0 0 1 0.835653 -0.546001 0.059728 370.017 0.444517 0.736162 0.510362 -0.000000 -0.322628 -0.399935 0.857883 -0.000004 0 0 0 1 0.754161 -0.655514 0.039288 370.017 0.555668 0.668885 0.493788 -0.000011 -0.349964 -0.350564 0.868694 -0.000004 0 0 0 1 0.759861 -0.649859 0.017164 370.018 0.563285 0.671355 0.481655 0.000057 -0.324531 -0.356322 0.876192 -0.000004 0 0 0 1 0.808087 -0.589062 -0.000893 370.018 0.521238 0.714336 0.466943 -0.00003 -0.27442 -0.377796 0.884287 -0.000004 0 0 0 1 0.872979 -0.487605 -0.012211 370.017 0.441857 0.779976 0.44317 0.000033 -0.206568 -0.392274 0.896354 -0.000004 0 0 0 1 0.92989 -0.367433 -0.017245 370.018 0.341788 0.845757 0.409726 -0.000027 -0.135961 -0.386895 0.912045 -0.000004 0 0 0 1 0.965103 -0.261457 -0.014748 370.017 0.24815 0.895088 0.370458 0.000077 -0.083658 -0.36119 0.928732 -0.000004 0 0 0 1 0.977119 -0.212586 -0.006831 370.017 0.202741 0.921194 0.332112 0.000044 -0.064308 -0.325898 0.943215 -0.000004 0 0 0 1 0.950549 -0.310395 -0.010527 370.017 0.298084 0.902283 0.311498 0.000001 -0.087188 -0.299232 0.950188 -0.000004 0 0 0 1 0.860626 -0.508614 -0.025177 370.017 0.491201 0.816089 0.304499 -0.000007 -0.134326 -0.274427 0.95218 -0.000004 0 0 0 1 0.73331 -0.678863 -0.037418 370.017 0.656632 0.692874 0.297927 0.000003 -0.176325 -0.243044 0.953855 -0.000004 0 0 0 1 0.667068 -0.74403 -0.037948 370.017 0.720152 0.63094 0.28861 -0.000006 -0.190791 -0.219851 0.956694 -0.000004 0 0 0 1 0.758069 -0.651371 -0.032348 370.018 0.631516 0.720769 0.285797 0 -0.162844 -0.237083 0.957744 -0.000004 0 0 0 1 0.85009 -0.525938 -0.027136 370.017 0.510042 0.809375 0.291154 -0.000035 -0.131166 -0.261348 0.956291 -0.000004 0 0 0 1 0.826899 -0.561012 -0.038781 370.018 0.546521 0.785461 0.290457 0.000007 -0.132488 -0.261374 0.956102 -0.000004 0 0 0 1 0.776009 -0.628167 -0.056715 370.018 0.61404 0.731878 0.295481 -0.000038 -0.144102 -0.264122 0.953664 -0.000004 0 0 0 1 0.749661 -0.657358 -0.076736 370.017 0.644029 0.697881 0.313351 0.000004 -0.152431 -0.284328 0.946532 -0.000004 0 0 0 1 0.759137 -0.643459 -0.098339 370.017 0.632991 0.694517 0.342007 0.000002 -0.151769 -0.321879 0.934538 -0.000004 0 0 0 1 0.788211 -0.604595 -0.114841 370.018 0.598283 0.709108 0.373127 0.00001 -0.144156 -0.36281 0.920645 -0.000004 0 0 0 1 0.832569 -0.540437 -0.12148 370.017 0.538963 0.739739 0.402871 0.000063 -0.127863 -0.400891 0.907159 -0.000004 0 0 0 1 0.883586 -0.454178 -0.114014 370.018 0.456426 0.780907 0.42645 0.000053 -0.104649 -0.428844 0.897296 -0.000004 0 0 0 1 0.930041 -0.354582 -0.09641 370.017 0.358787 0.819635 0.446621 0.000005 -0.079343 -0.449967 0.889514 -0.000004 0 0 0 1 0.966827 -0.244682 -0.073323 370.018 0.250012 0.847674 0.467912 -0.000009 -0.052335 -0.470722 0.880728 -0.000004 0 0 0 1 0.989892 -0.134344 -0.045439 370.018 0.139384 0.862455 0.486564 -0.000006 -0.026177 -0.487979 0.872463 -0.000004 0 0 0 1 0.999381 -0.032333 -0.013831 370.018 0.034916 0.865292 0.50005 -0.000065 -0.0042 -0.500224 0.865886 -0.000004 0 0 0 1 0.998321 0.054223 0.020359 370.017 -0.057053 0.86005 0.50701 0.000006 0.009981 -0.50732 0.8617 -0.000004 0 0 0 1 0.991494 0.117838 0.055268 370.017 -0.129542 0.852264 0.506818 -0.00001 0.012619 -0.509667 0.86028 -0.000004 0 0 0 1 0.984445 0.151861 0.088352 370.018 -0.17569 0.848105 0.49985 -0.000073 0.000975 -0.507598 0.861594 -0.000004 0 0 0 1 0.99512 0.012731 0.09785 370.017 -0.060796 0.860164 0.506382 -0.000042 -0.077721 -0.509859 0.85674 -0.000004 0 0 0 1 0.953444 -0.290518 0.080894 370.017 0.208674 0.829218 0.51851 0.000001 -0.217716 -0.477489 0.851237 -0.000004 0 0 0 1 0.835652 -0.546001 0.059727 370.017 0.444518 0.736162 0.510362 -0.000001 -0.322628 -0.399935 0.857883 -0.000004 0 0 0 1 0.754135 -0.655545 0.039263 370.018 0.555705 0.668854 0.493789 -0.000044 -0.349963 -0.350564 0.868695 -0.000004 0 0 0 1 0.759861 -0.649859 0.017165 370.017 0.563285 0.671355 0.481656 -0.000022 -0.324533 -0.356322 0.876192 -0.000004 0 0 0 1 0.808087 -0.589063 -0.000894 370.017 0.521238 0.714335 0.466943 0.000061 -0.27442 -0.377796 0.884287 -0.000004 0 0 0 1 0.872979 -0.487606 -0.012211 370.018 0.441857 0.779976 0.44317 -0.000078 -0.206568 -0.392274 0.896354 -0.000004 0 0 0 1 0.929608 -0.368146 -0.017239 370.018 0.342401 0.845402 0.409947 -0.000001 -0.136346 -0.386993 0.911946 -0.000004 0 0 0 1 0.965102 -0.261457 -0.014749 370.017 0.248151 0.895088 0.370458 -0.000026 -0.083658 -0.36119 0.928732 -0.000004 0 0 0 1 0.977119 -0.212587 -0.006832 370.017 0.202741 0.921194 0.332112 0.000036 -0.064308 -0.325897 0.943215 -0.000004 0 0 0 1 0.950549 -0.310396 -0.010528 370.017 0.298085 0.902283 0.311497 0.000000 -0.087187 -0.299231 0.950189 -0.000004 0 0 0 1 0.860626 -0.508615 -0.025178 370.018 0.491202 0.816089 0.304499 -0.000001 -0.134325 -0.274427 0.95218 -0.000004 0 0 0 1 0.73396 -0.678163 -0.037379 370.017 0.655953 0.693499 0.297968 -0.000003 -0.176148 -0.243215 0.953844 -0.000004 0 0 0 1 0.667067 -0.744031 -0.037949 370.017 0.720153 0.630939 0.28861 0.000007 -0.19079 -0.219851 0.956694 -0.000004 0 0 0 1 0.758069 -0.651371 -0.032348 370.017 0.631516 0.720769 0.285796 0.000004 -0.162843 -0.237083 0.957744 -0.000004 0 0 0 1 0.850091 -0.525936 -0.027134 370.017 0.51004 0.809375 0.291154 -0.000029 -0.131166 -0.261348 0.956291 -0.000004 0 0 0 1 0.826899 -0.561011 -0.03878 370.018 0.54652 0.785462 0.290458 -0.000034 -0.132489 -0.261374 0.956102 -0.000004 0 0 0 1 0.776009 -0.628167 -0.056716 370.017 0.614039 0.731879 0.295481 0.000006 -0.144102 -0.264122 0.953663 -0.000004 0 0 0 1 0.749662 -0.657357 -0.076736 370.017 0.644028 0.697882 0.313353 0.00001 -0.152432 -0.284328 0.946531 -0.000004 0 0 0 1 0.759138 -0.643459 -0.098339 370.017 0.63299 0.694518 0.342008 -0.000004 -0.15177 -0.321879 0.934538 -0.000004 0 0 0 1 0.788211 -0.604595 -0.114841 370.017 0.598283 0.709107 0.373127 0.000015 -0.144157 -0.36281 0.920645 -0.000004 0 0 0 1 0.832569 -0.540436 -0.12148 370.018 0.538962 0.73974 0.402872 0.000021 -0.127863 -0.400892 0.907159 -0.000004 0 0 0 1 0.883277 -0.454758 -0.114093 370.018 0.456989 0.780653 0.426312 -0.000034 -0.104801 -0.428691 0.897352 -0.000004 0 0 0 1 0.930042 -0.354581 -0.09641 370.018 0.358786 0.819635 0.446622 0.000022 -0.079342 -0.449967 0.889514 -0.000004 0 0 0 1 0.966827 -0.244683 -0.073324 370.018 0.250013 0.847674 0.467913 0.000049 -0.052335 -0.470723 0.880727 -0.000004 0 0 0 1 0.989892 -0.134344 -0.045439 370.018 0.139383 0.862455 0.486564 0.000034 -0.026177 -0.487979 0.872462 -0.000004 0 0 0 1 - - - - - - - - LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR - - - - - - - - - - - - - - - - 0 0.033333 0.066666 0.1 0.133333 0.166667 0.2 0.233333 0.266667 0.3 0.333333 0.366667 0.4 0.433333 0.466667 0.5 0.533333 0.566667 0.6 0.633333 0.666667 0.7 0.733333 0.766667 0.8 0.833333 0.866667 0.9 0.933333 0.966667 1 1.03333 1.06667 1.1 1.13333 1.16667 1.2 1.23333 1.26667 1.3 1.33333 1.36667 1.4 1.43333 1.46667 1.5 1.53333 1.56667 1.6 1.63333 1.66667 1.7 1.73333 1.76667 1.8 1.83333 1.86667 1.9 1.93333 1.96667 2 2.03333 2.06667 2.1 2.13333 2.16667 2.2 2.23333 2.26667 2.3 2.33333 2.36667 2.4 2.43333 2.46667 2.5 2.53333 2.56667 2.6 2.63333 2.66667 2.7 2.73333 2.76667 2.8 2.83333 2.86667 2.9 2.93333 2.96667 3 3.03333 3.06667 3.1 3.13333 3.16667 3.2 3.23333 3.26667 3.3 3.33333 - - - - - - - CONSTANT - CONSTANT - - - - 0.873378 0.43301 0.222966 186.693 -0.406165 0.900177 -0.157199 -0.000023 -0.268778 0.046733 0.962068 -0.000009 0 0 0 1 0.841562 0.491996 0.222966 186.693 -0.467055 0.870142 -0.157199 -0.000062 -0.271354 0.028155 0.962068 -0.000009 0 0 0 1 0.806237 0.547966 0.222966 186.693 -0.525023 0.836444 -0.157199 -0.000005 -0.272639 0.009677 0.962068 -0.000009 0 0 0 1 0.784918 0.578092 0.222966 186.693 -0.556308 0.815971 -0.157199 -0.000057 -0.27281 -0.000649 0.962068 -0.000009 0 0 0 1 0.77981 0.584964 0.222966 186.693 -0.563454 0.811054 -0.157199 0.000035 -0.272794 -0.003045 0.962068 -0.000009 0 0 0 1 0.778455 0.586766 0.222966 186.693 -0.565328 0.809748 -0.157199 -0.000007 -0.272786 -0.003677 0.962068 -0.000009 0 0 0 1 0.779922 0.584814 0.222966 186.693 -0.563298 0.811162 -0.157199 -0.000102 -0.272794 -0.002994 0.962068 -0.000009 0 0 0 1 0.783327 0.580244 0.222966 186.693 -0.558546 0.814442 -0.157199 -0.000022 -0.272807 -0.001398 0.962068 -0.000009 0 0 0 1 0.787665 0.574343 0.222966 186.693 -0.552412 0.818614 -0.157199 0.000009 -0.27281 0.000651 0.962068 -0.000009 0 0 0 1 0.792094 0.568219 0.222966 186.693 -0.546048 0.822873 -0.157199 -0.000035 -0.272796 0.002765 0.962068 -0.000009 0 0 0 1 0.795732 0.563111 0.222966 186.693 -0.540743 0.826368 -0.157199 -0.000005 -0.272773 0.00452 0.962068 -0.000009 0 0 0 1 0.797681 0.560348 0.222966 186.693 -0.537874 0.828239 -0.157199 0.000076 -0.272756 0.005466 0.962068 -0.000009 0 0 0 1 0.797147 0.561109 0.222966 186.693 -0.538664 0.827726 -0.157199 0.000081 -0.272761 0.005206 0.962068 -0.000009 0 0 0 1 0.793186 0.566694 0.222966 186.693 -0.544464 0.823922 -0.157199 0.00001 -0.27279 0.00329 0.962068 -0.000009 0 0 0 1 0.784918 0.578092 0.222966 186.693 -0.556309 0.815971 -0.157199 0.000012 -0.27281 -0.00065 0.962068 -0.000009 0 0 0 1 0.738845 0.63592 0.222966 186.693 -0.616553 0.77146 -0.157199 0.000044 -0.271976 -0.021325 0.962068 -0.000009 0 0 0 1 0.648818 0.727544 0.222966 186.693 -0.712632 0.683698 -0.157199 0.000013 -0.266814 -0.0569 0.962068 -0.000009 0 0 0 1 0.57496 0.787214 0.222966 186.693 -0.775768 0.611124 -0.157199 -0.000003 -0.260009 -0.082587 0.962068 -0.000009 0 0 0 1 0.592978 0.773733 0.222966 186.693 -0.761455 0.628868 -0.157199 -0.00002 -0.261846 -0.076563 0.962068 -0.000009 0 0 0 1 0.716254 0.661271 0.222966 186.693 -0.643059 0.749515 -0.157199 -0.000069 -0.271027 -0.030787 0.962068 -0.000009 0 0 0 1 0.859131 0.460631 0.222966 186.693 -0.434654 0.886772 -0.157199 0.000062 -0.270131 0.038141 0.962068 -0.000009 0 0 0 1 0.956384 0.188714 0.222966 186.693 -0.155779 0.975203 -0.157199 -0.000091 -0.247107 0.115603 0.962068 -0.000009 0 0 0 1 0.970194 -0.094895 0.222966 186.693 0.131858 0.978724 -0.157199 -0.00007 -0.203317 0.181916 0.962068 -0.000009 0 0 0 1 0.918542 -0.326446 0.222966 186.693 0.364372 0.91789 -0.157199 0.000049 -0.153341 0.225637 0.962068 -0.000009 0 0 0 1 0.857136 -0.464331 0.222966 186.693 0.501702 0.850637 -0.157199 0.000036 -0.116671 0.246604 0.962068 -0.000009 0 0 0 1 0.851953 -0.473776 0.222966 186.693 0.511073 0.845041 -0.157199 0.000012 -0.113939 0.247878 0.962068 -0.000009 0 0 0 1 0.900758 -0.372722 0.222966 186.693 0.410566 0.898178 -0.157199 0.000023 -0.141672 0.233141 0.962068 -0.000009 0 0 0 1 0.952921 -0.205493 0.222966 186.693 0.243187 0.957156 -0.157199 -0.000057 -0.181109 0.204022 0.962068 -0.000009 0 0 0 1 0.974319 -0.031516 0.222966 186.693 0.06784 0.985235 -0.157199 0.000013 -0.214707 0.168283 0.962068 -0.000009 0 0 0 1 0.951387 0.21248 0.222966 186.693 -0.180024 0.97102 -0.157199 -0.00004 -0.249906 0.109418 0.962068 -0.000009 0 0 0 1 0.873378 0.43301 0.222966 186.693 -0.406165 0.900177 -0.157199 0.000039 -0.268778 0.046733 0.962068 -0.000009 0 0 0 1 0.82455 0.520002 0.222966 186.693 -0.496036 0.853953 -0.157199 0.000058 -0.272149 0.019019 0.962068 -0.000009 0 0 0 1 0.796928 0.561419 0.222966 186.693 -0.538986 0.827516 -0.157199 -0.000000 -0.272763 0.0051 0.962068 -0.000009 0 0 0 1 0.784918 0.578092 0.222966 186.693 -0.556308 0.815971 -0.157199 0.00004 -0.27281 -0.000649 0.962068 -0.000009 0 0 0 1 0.77981 0.584964 0.222966 186.693 -0.563454 0.811054 -0.157199 -0.00003 -0.272794 -0.003045 0.962068 -0.000009 0 0 0 1 0.778455 0.586765 0.222966 186.693 -0.565328 0.809749 -0.157199 0.000007 -0.272786 -0.003677 0.962068 -0.000009 0 0 0 1 0.779922 0.584814 0.222966 186.693 -0.563298 0.811162 -0.157199 -0.000103 -0.272794 -0.002994 0.962068 -0.000009 0 0 0 1 0.783327 0.580244 0.222966 186.693 -0.558546 0.814441 -0.157199 -0.000125 -0.272807 -0.001398 0.962068 -0.000009 0 0 0 1 0.787665 0.574343 0.222966 186.693 -0.552412 0.818614 -0.157199 0.000164 -0.27281 0.000651 0.962068 -0.000009 0 0 0 1 0.792119 0.568184 0.222966 186.693 -0.546012 0.822897 -0.157199 -0.000071 -0.272796 0.002778 0.962068 -0.000009 0 0 0 1 0.795732 0.563111 0.222966 186.693 -0.540743 0.826368 -0.157199 0.000048 -0.272773 0.00452 0.962068 -0.000009 0 0 0 1 0.797681 0.560348 0.222966 186.693 -0.537874 0.828239 -0.157199 0.000041 -0.272756 0.005466 0.962068 -0.000009 0 0 0 1 0.797137 0.561123 0.222966 186.693 -0.538679 0.827716 -0.157199 -0.000015 -0.272761 0.005202 0.962068 -0.000009 0 0 0 1 0.793186 0.566694 0.222966 186.693 -0.544464 0.823922 -0.157199 0 -0.27279 0.00329 0.962068 -0.000009 0 0 0 1 0.784918 0.578092 0.222966 186.693 -0.556309 0.815971 -0.157199 0.000025 -0.27281 -0.00065 0.962068 -0.000009 0 0 0 1 0.738845 0.63592 0.222966 186.693 -0.616553 0.77146 -0.157199 -0.000036 -0.271976 -0.021325 0.962068 -0.000009 0 0 0 1 0.648818 0.727544 0.222966 186.693 -0.712632 0.683698 -0.157199 -0.000068 -0.266814 -0.0569 0.962068 -0.000009 0 0 0 1 0.57496 0.787214 0.222966 186.693 -0.775768 0.611124 -0.157199 0.000013 -0.260009 -0.082587 0.962068 -0.000009 0 0 0 1 0.592978 0.773733 0.222966 186.693 -0.761455 0.628868 -0.157199 0.000008 -0.261846 -0.076563 0.962068 -0.000009 0 0 0 1 0.716254 0.661271 0.222966 186.693 -0.643059 0.749515 -0.157199 0.000014 -0.271027 -0.030787 0.962068 -0.000009 0 0 0 1 0.859131 0.460631 0.222966 186.693 -0.434654 0.886772 -0.157199 0.000052 -0.270131 0.038141 0.962068 -0.000009 0 0 0 1 0.956036 0.190476 0.222966 186.693 -0.157575 0.974914 -0.157199 0.000004 -0.247316 0.115154 0.962068 -0.000009 0 0 0 1 0.970193 -0.0949 0.222966 186.693 0.131863 0.978724 -0.157199 -0.000019 -0.203316 0.181917 0.962068 -0.000009 0 0 0 1 0.918542 -0.326446 0.222966 186.693 0.364372 0.917889 -0.157199 -0.000000 -0.153341 0.225637 0.962068 -0.000009 0 0 0 1 0.85705 -0.464491 0.222966 186.693 0.50186 0.850544 -0.157199 0.000046 -0.116625 0.246625 0.962068 -0.000009 0 0 0 1 0.851953 -0.473776 0.222966 186.693 0.511073 0.845041 -0.157199 -0.000005 -0.113939 0.247878 0.962068 -0.000009 0 0 0 1 0.900758 -0.372722 0.222966 186.693 0.410566 0.898178 -0.157199 -0.000041 -0.141672 0.233141 0.962068 -0.000009 0 0 0 1 0.952922 -0.205493 0.222966 186.693 0.243187 0.957156 -0.157199 -0.000018 -0.181109 0.204022 0.962068 -0.000009 0 0 0 1 0.974319 -0.031516 0.222966 186.693 0.06784 0.985235 -0.157199 0.000012 -0.214707 0.168283 0.962068 -0.000009 0 0 0 1 0.951387 0.21248 0.222966 186.693 -0.180024 0.97102 -0.157199 0.000027 -0.249906 0.109418 0.962068 -0.000009 0 0 0 1 0.873378 0.43301 0.222966 186.693 -0.406165 0.900177 -0.157199 0.000067 -0.268778 0.046733 0.962068 -0.000009 0 0 0 1 0.824799 0.519608 0.222966 186.693 -0.495628 0.85419 -0.157199 0.000066 -0.272137 0.019149 0.962068 -0.000009 0 0 0 1 0.796928 0.561419 0.222966 186.693 -0.538986 0.827516 -0.157199 -0.000003 -0.272763 0.0051 0.962068 -0.000009 0 0 0 1 0.784864 0.578165 0.222966 186.693 -0.556384 0.815919 -0.157199 0.000065 -0.27281 -0.000675 0.962068 -0.000009 0 0 0 1 0.77981 0.584964 0.222966 186.693 -0.563454 0.811054 -0.157199 -0.000071 -0.272794 -0.003045 0.962068 -0.000009 0 0 0 1 0.778455 0.586765 0.222966 186.693 -0.565328 0.809748 -0.157199 0.000179 -0.272786 -0.003677 0.962068 -0.000009 0 0 0 1 0.779922 0.584814 0.222966 186.693 -0.563298 0.811162 -0.157199 -0.000033 -0.272794 -0.002994 0.962068 -0.000009 0 0 0 1 0.783327 0.580244 0.222966 186.693 -0.558546 0.814441 -0.157199 -0.000064 -0.272807 -0.001398 0.962068 -0.000009 0 0 0 1 0.787665 0.574343 0.222966 186.693 -0.552412 0.818614 -0.157199 0.000036 -0.27281 0.00065 0.962068 -0.000009 0 0 0 1 0.792119 0.568184 0.222966 186.693 -0.546012 0.822897 -0.157199 0.00001 -0.272796 0.002778 0.962068 -0.000009 0 0 0 1 0.795733 0.563111 0.222966 186.693 -0.540744 0.826368 -0.157199 0.000027 -0.272773 0.00452 0.962068 -0.000009 0 0 0 1 0.797681 0.560349 0.222966 186.693 -0.537874 0.828239 -0.157199 -0.000032 -0.272756 0.005467 0.962068 -0.000009 0 0 0 1 0.797147 0.561109 0.222966 186.693 -0.538664 0.827726 -0.157199 0.000093 -0.272761 0.005206 0.962068 -0.000009 0 0 0 1 0.793186 0.566694 0.222966 186.693 -0.544464 0.823922 -0.157199 0.000048 -0.27279 0.00329 0.962068 -0.000009 0 0 0 1 0.784918 0.578092 0.222966 186.693 -0.556308 0.815971 -0.157199 0.000006 -0.27281 -0.000649 0.962068 -0.000009 0 0 0 1 0.738845 0.63592 0.222966 186.693 -0.616553 0.77146 -0.157199 -0.00002 -0.271976 -0.021325 0.962068 -0.000009 0 0 0 1 0.649342 0.727077 0.222966 186.693 -0.712141 0.68421 -0.157199 -0.000036 -0.266852 -0.056708 0.962068 -0.000009 0 0 0 1 0.57496 0.787214 0.222966 186.693 -0.775768 0.611124 -0.157199 0.000034 -0.260009 -0.082587 0.962068 -0.000009 0 0 0 1 0.593306 0.773481 0.222966 186.693 -0.761188 0.629191 -0.157199 0.000007 -0.261881 -0.076452 0.962068 -0.000009 0 0 0 1 0.716251 0.661274 0.222966 186.693 -0.643062 0.749512 -0.157199 -0.00007 -0.271027 -0.030788 0.962068 -0.000009 0 0 0 1 0.859131 0.460631 0.222966 186.693 -0.434654 0.886772 -0.157199 -0.000003 -0.270131 0.038141 0.962068 -0.000009 0 0 0 1 0.956036 0.190476 0.222966 186.693 -0.157575 0.974915 -0.157199 -0.000013 -0.247316 0.115154 0.962068 -0.000009 0 0 0 1 0.970354 -0.093269 0.222966 186.693 0.130215 0.978944 -0.157199 -0.000024 -0.20361 0.181572 0.962068 -0.000009 0 0 0 1 0.918542 -0.326446 0.222966 186.693 0.364372 0.917889 -0.157199 -0.000009 -0.153341 0.225637 0.962068 -0.000009 0 0 0 1 0.85705 -0.464491 0.222966 186.693 0.50186 0.850544 -0.157199 -0.000053 -0.116625 0.246625 0.962068 -0.000009 0 0 0 1 0.851953 -0.473776 0.222966 186.693 0.511073 0.845041 -0.157199 -0.000037 -0.113939 0.247878 0.962068 -0.000009 0 0 0 1 0.900758 -0.372722 0.222966 186.693 0.410566 0.898178 -0.157199 0.000058 -0.141672 0.233141 0.962068 -0.000009 0 0 0 1 0.95269 -0.206562 0.222966 186.693 0.244262 0.956882 -0.157199 -0.000044 -0.180881 0.204224 0.962068 -0.000009 0 0 0 1 0.97432 -0.031512 0.222966 186.693 0.067836 0.985235 -0.157199 0.000043 -0.214708 0.168282 0.962068 -0.000009 0 0 0 1 0.951387 0.21248 0.222966 186.693 -0.180024 0.97102 -0.157199 -0.000043 -0.249906 0.109418 0.962068 -0.000009 0 0 0 1 0.873378 0.43301 0.222966 186.693 -0.406165 0.900177 -0.157199 0.000053 -0.268778 0.046733 0.962068 -0.000009 0 0 0 1 0.824799 0.519607 0.222966 186.693 -0.495628 0.85419 -0.157199 -0.000025 -0.272137 0.019149 0.962068 -0.000009 0 0 0 1 0.796928 0.561419 0.222966 186.693 -0.538986 0.827516 -0.157199 -0.000046 -0.272763 0.005101 0.962068 -0.000009 0 0 0 1 0.784864 0.578165 0.222966 186.693 -0.556384 0.815919 -0.157199 0.000036 -0.27281 -0.000675 0.962068 -0.000009 0 0 0 1 0.77981 0.584964 0.222966 186.693 -0.563454 0.811054 -0.157199 0.000044 -0.272794 -0.003045 0.962068 -0.000009 0 0 0 1 0.778455 0.586765 0.222966 186.693 -0.565328 0.809748 -0.157199 0.00012 -0.272786 -0.003677 0.962068 -0.000009 0 0 0 1 0.779922 0.584814 0.222966 186.693 -0.563298 0.811162 -0.157199 -0.000002 -0.272794 -0.002994 0.962068 -0.000009 0 0 0 1 0.783303 0.580277 0.222966 186.693 -0.55858 0.814418 -0.157199 -0.000088 -0.272807 -0.001409 0.962068 -0.000009 0 0 0 1 0.787665 0.574343 0.222966 186.693 -0.552412 0.818614 -0.157199 -0.000017 -0.27281 0.000651 0.962068 -0.000009 0 0 0 1 0.792119 0.568184 0.222966 186.693 -0.546012 0.822897 -0.157199 0.000029 -0.272796 0.002778 0.962068 -0.000009 0 0 0 1 0.795733 0.563112 0.222966 186.693 -0.540744 0.826368 -0.157199 0.000064 -0.272773 0.00452 0.962068 -0.000009 0 0 0 1 - - - - - - - - LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR - - - - - - - - - - - - - - - - 0 0.033333 0.066666 0.1 0.133333 0.166667 0.2 0.233333 0.266667 0.3 0.333333 0.366667 0.4 0.433333 0.466667 0.5 0.533333 0.566667 0.6 0.633333 0.666667 0.7 0.733333 0.766667 0.8 0.833333 0.866667 0.9 0.933333 0.966667 1 1.03333 1.06667 1.1 1.13333 1.16667 1.2 1.23333 1.26667 1.3 1.33333 1.36667 1.4 1.43333 1.46667 1.5 1.53333 1.56667 1.6 1.63333 1.66667 1.7 1.73333 1.76667 1.8 1.83333 1.86667 1.9 1.93333 1.96667 2 2.03333 2.06667 2.1 2.13333 2.16667 2.2 2.23333 2.26667 2.3 2.33333 2.36667 2.4 2.43333 2.46667 2.5 2.53333 2.56667 2.6 2.63333 2.66667 2.7 2.73333 2.76667 2.8 2.83333 2.86667 2.9 2.93333 2.96667 3 3.03333 3.06667 3.1 3.13333 3.16667 3.2 3.23333 3.26667 3.3 3.33333 - - - - - - - CONSTANT - CONSTANT - - - - 1 0 0 167.761 0 1 0 0.000019 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000034 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000007 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.000013 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.000012 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000004 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.000047 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.000009 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000015 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.000008 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000005 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.000015 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.000008 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000006 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000011 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.000003 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000053 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000021 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.00001 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.000027 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.00002 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000049 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000036 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.000022 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000059 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.000017 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.000069 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000085 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.000114 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000009 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000011 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000016 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000021 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000021 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000025 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000031 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000015 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.000003 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.000003 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000002 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.00001 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.000015 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000000 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.000014 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.000054 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.000004 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.000057 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000009 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000009 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000017 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000144 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000131 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000025 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000034 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000067 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000055 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000002 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000094 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000018 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000069 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.00001 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000076 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000026 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.00002 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000001 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.000036 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.000001 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000011 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.000007 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000008 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.000009 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.000009 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000000 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000021 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000000 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000018 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.000003 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000037 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.00002 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.000038 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000000 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.00012 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000024 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.000089 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.00004 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000017 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.000115 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.000064 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000008 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.000027 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.00004 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.000014 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000007 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000001 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000013 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.000012 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000004 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.000048 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 0.000002 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.000000 0 0 1 0.000013 0 0 0 1 1 0 0 167.761 0 1 0 -0.000019 0 0 1 0.000013 0 0 0 1 - - - - - - - - LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR - - - - - - - - - - - - - - - - 0 0.033333 0.066666 0.1 0.133333 0.166667 0.2 0.233333 0.266667 0.3 0.333333 0.366667 0.4 0.433333 0.466667 0.5 0.533333 0.566667 0.6 0.633333 0.666667 0.7 0.733333 0.766667 0.8 0.833333 0.866667 0.9 0.933333 0.966667 1 1.03333 1.06667 1.1 1.13333 1.16667 1.2 1.23333 1.26667 1.3 1.33333 1.36667 1.4 1.43333 1.46667 1.5 1.53333 1.56667 1.6 1.63333 1.66667 1.7 1.73333 1.76667 1.8 1.83333 1.86667 1.9 1.93333 1.96667 2 2.03333 2.06667 2.1 2.13333 2.16667 2.2 2.23333 2.26667 2.3 2.33333 2.36667 2.4 2.43333 2.46667 2.5 2.53333 2.56667 2.6 2.63333 2.66667 2.7 2.73333 2.76667 2.8 2.83333 2.86667 2.9 2.93333 2.96667 3 3.03333 3.06667 3.1 3.13333 3.16667 3.2 3.23333 3.26667 3.3 3.33333 - - - - - - - CONSTANT - CONSTANT - - - - 1 0 0 345.132 0 1 0 0.000017 0 0 1 -0.000007 0 0 0 1 1 0 0 345.132 0 1 0 0.000033 0 0 1 0.00001 0 0 0 1 1 0 0 345.132 0 1 0 -0.000028 0 0 1 -0.000008 0 0 0 1 1 0 0 345.132 0 1 0 -0.000043 0 0 1 -0.000005 0 0 0 1 1 0 0 345.132 0 1 0 -0.00006 0 0 1 0.000004 0 0 0 1 1 0 0 345.132 0 1 0 0.000053 0 0 1 -0.000000 0 0 0 1 1 0 0 345.132 0 1 0 0.000041 0 0 1 0.000000 0 0 0 1 1 0 0 345.132 0 1 0 0.000013 0 0 1 0 0 0 0 1 1 0 0 345.132 0 1 0 -0.000039 0 0 1 -0.000000 0 0 0 1 1 0 0 345.132 0 1 0 0.000046 0 0 1 -0.000003 0 0 0 1 1 0 0 345.132 0 1 0 -0.000021 0 0 1 0.000005 0 0 0 1 1 0 0 345.132 0 1 0 -0.000013 0 0 1 0.000006 0 0 0 1 1 0 0 345.132 0 1 0 -0.00001 0 0 1 -0.000004 0 0 0 1 1 0 0 345.132 0 1 0 -0.000007 0 0 1 -0.000007 0 0 0 1 1 0 0 345.132 0 1 0 0.000007 0 0 1 0.000013 0 0 0 1 1 0 0 345.132 0 1 0 0.000009 0 0 1 -0.000012 0 0 0 1 1 0 0 345.132 0 1 0 0.000029 0 0 1 -0.00001 0 0 0 1 1 0 0 345.132 0 1 0 -0.000017 0 0 1 0.000009 0 0 0 1 1 0 0 345.132 0 1 0 -0.000009 0 0 1 -0.000002 0 0 0 1 1 0 0 345.132 0 1 0 0.000022 0 0 1 0.000002 0 0 0 1 1 0 0 345.132 0 1 0 0.00002 0 0 1 0.000005 0 0 0 1 1 0 0 345.132 0 1 0 -0.00004 0 0 1 -0.000002 0 0 0 1 1 0 0 345.132 0 1 0 0.000006 0 0 1 0.000003 0 0 0 1 1 0 0 345.132 0 1 0 0.000036 0 0 1 -0.00001 0 0 0 1 1 0 0 345.132 0 1 0 -0.000038 0 0 1 0.000000 0 0 0 1 1 0 0 345.132 0 1 0 -0.000017 0 0 1 0.000011 0 0 0 1 1 0 0 345.132 0 1 0 0.000026 0 0 1 0.000011 0 0 0 1 1 0 0 345.132 0 1 0 0.000005 0 0 1 -0.000002 0 0 0 1 1 0 0 345.132 0 1 0 0.000001 0 0 1 0.000023 0 0 0 1 1 0 0 345.132 0 1 0 0.000015 0 0 1 -0.000054 0 0 0 1 1 0 0 345.132 0 1 0 -0.000052 0 0 1 0.000015 0 0 0 1 1 0 0 345.132 0 1 0 0.000017 0 0 1 0.000003 0 0 0 1 1 0 0 345.132 0 1 0 -0.000033 0 0 1 0.000019 0 0 0 1 1 0 0 345.132 0 1 0 -0.000075 0 0 1 0.000002 0 0 0 1 1 0 0 345.132 0 1 0 -0.000054 0 0 1 -0.000028 0 0 0 1 1 0 0 345.132 0 1 0 -0.000043 0 0 1 0.000025 0 0 0 1 1 0 0 345.132 0 1 0 -0.000042 0 0 1 -0.000003 0 0 0 1 1 0 0 345.132 0 1 0 0.000069 0 0 1 0.00001 0 0 0 1 1 0 0 345.132 0 1 0 0.000017 0 0 1 0.000001 0 0 0 1 1 0 0 345.132 0 1 0 0.000027 0 0 1 -0.000004 0 0 0 1 1 0 0 345.132 0 1 0 -0.000039 0 0 1 -0.000042 0 0 0 1 1 0 0 345.132 0 1 0 0.000000 0 0 1 0.000001 0 0 0 1 1 0 0 345.132 0 1 0 0.000007 0 0 1 -0.000004 0 0 0 1 1 0 0 345.132 0 1 0 -0.000022 0 0 1 0.000023 0 0 0 1 1 0 0 345.132 0 1 0 0.000019 0 0 1 0.000017 0 0 0 1 1 0 0 345.132 0 1 0 0.000013 0 0 1 0.00001 0 0 0 1 1 0 0 345.132 0 1 0 0.000046 0 0 1 0.000017 0 0 0 1 1 0 0 345.132 0 1 0 -0.000003 0 0 1 0.00001 0 0 0 1 1 0 0 345.132 0 1 0 0.000016 0 0 1 0.000003 0 0 0 1 1 0 0 345.132 0 1 0 -0.000016 0 0 1 0.000009 0 0 0 1 1 0 0 345.132 0 1 0 0.000031 0 0 1 -0.000016 0 0 0 1 1 0 0 345.132 0 1 0 -0.000022 0 0 1 -0.00002 0 0 0 1 1 0 0 345.132 0 1 0 0.000055 0 0 1 -0.000003 0 0 0 1 1 0 0 345.132 0 1 0 -0.000033 0 0 1 0.00002 0 0 0 1 1 0 0 345.132 0 1 0 -0.000021 0 0 1 -0.000019 0 0 0 1 1 0 0 345.132 0 1 0 0.000036 0 0 1 0.000018 0 0 0 1 1 0 0 345.132 0 1 0 0.000031 0 0 1 0.000018 0 0 0 1 1 0 0 345.132 0 1 0 0.000038 0 0 1 0.000005 0 0 0 1 1 0 0 345.132 0 1 0 0.000045 0 0 1 0.000005 0 0 0 1 1 0 0 345.132 0 1 0 -0.000023 0 0 1 0.000004 0 0 0 1 1 0 0 345.132 0 1 0 0.000035 0 0 1 -0.000007 0 0 0 1 1 0 0 345.132 0 1 0 0.000003 0 0 1 -0.000009 0 0 0 1 1 0 0 345.132 0 1 0 0.000047 0 0 1 -0.000009 0 0 0 1 1 0 0 345.132 0 1 0 0.000034 0 0 1 -0.000005 0 0 0 1 1 0 0 345.132 0 1 0 0.000008 0 0 1 0.000004 0 0 0 1 1 0 0 345.132 0 1 0 -0.000021 0 0 1 0.000000 0 0 0 1 1 0 0 345.132 0 1 0 -0.000052 0 0 1 -0.000036 0 0 0 1 1 0 0 345.132 0 1 0 -0.000021 0 0 1 0.000008 0 0 0 1 1 0 0 345.132 0 1 0 -0.000001 0 0 1 -0.000041 0 0 0 1 1 0 0 345.132 0 1 0 -0.000015 0 0 1 0.000003 0 0 0 1 1 0 0 345.132 0 1 0 0.000063 0 0 1 -0.000019 0 0 0 1 1 0 0 345.132 0 1 0 -0.000021 0 0 1 -0.000013 0 0 0 1 1 0 0 345.132 0 1 0 0.000009 0 0 1 -0.000006 0 0 0 1 1 0 0 345.132 0 1 0 0.000054 0 0 1 0.000000 0 0 0 1 1 0 0 345.132 0 1 0 0.000015 0 0 1 0.000095 0 0 0 1 1 0 0 345.132 0 1 0 -0.000003 0 0 1 -0.000000 0 0 0 1 1 0 0 345.132 0 1 0 0.000005 0 0 1 -0.000012 0 0 0 1 1 0 0 345.132 0 1 0 -0.000019 0 0 1 0.000053 0 0 0 1 1 0 0 345.132 0 1 0 -0.000027 0 0 1 -0.000002 0 0 0 1 1 0 0 345.132 0 1 0 0.00005 0 0 1 -0.000052 0 0 0 1 1 0 0 345.132 0 1 0 -0.000017 0 0 1 0.000055 0 0 0 1 1 0 0 345.132 0 1 0 0.000021 0 0 1 0.00001 0 0 0 1 1 0 0 345.132 0 1 0 -0.000023 0 0 1 -0.000016 0 0 0 1 1 0 0 345.132 0 1 0 0.000005 0 0 1 -0.000012 0 0 0 1 1 0 0 345.132 0 1 0 0.000031 0 0 1 -0.00003 0 0 0 1 1 0 0 345.132 0 1 0 0.000006 0 0 1 -0.000027 0 0 0 1 1 0 0 345.132 0 1 0 -0.000029 0 0 1 -0.000033 0 0 0 1 1 0 0 345.132 0 1 0 -0.000036 0 0 1 0.000024 0 0 0 1 1 0 0 345.132 0 1 0 -0.000008 0 0 1 0.000031 0 0 0 1 1 0 0 345.132 0 1 0 0.000045 0 0 1 0.000028 0 0 0 1 1 0 0 345.132 0 1 0 -0.000031 0 0 1 -0.000005 0 0 0 1 1 0 0 345.132 0 1 0 0.000053 0 0 1 -0.000039 0 0 0 1 1 0 0 345.132 0 1 0 -0.000017 0 0 1 0.000005 0 0 0 1 1 0 0 345.132 0 1 0 -0.000016 0 0 1 -0.000047 0 0 0 1 1 0 0 345.132 0 1 0 -0.000051 0 0 1 0.000028 0 0 0 1 1 0 0 345.132 0 1 0 -0.000082 0 0 1 -0.000042 0 0 0 1 1 0 0 345.132 0 1 0 -0.000003 0 0 1 0.000046 0 0 0 1 1 0 0 345.132 0 1 0 -0.000039 0 0 1 0.000035 0 0 0 1 1 0 0 345.132 0 1 0 0.00001 0 0 1 -0.000011 0 0 0 1 1 0 0 345.132 0 1 0 -0.000006 0 0 1 0.000058 0 0 0 1 1 0 0 345.132 0 1 0 -0.000044 0 0 1 -0.000007 0 0 0 1 - - - - - - - - LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR - - - - - - - - - - - - - - - - 0 0.033333 0.066666 0.1 0.133333 0.166667 0.2 0.233333 0.266667 0.3 0.333333 0.366667 0.4 0.433333 0.466667 0.5 0.533333 0.566667 0.6 0.633333 0.666667 0.7 0.733333 0.766667 0.8 0.833333 0.866667 0.9 0.933333 0.966667 1 1.03333 1.06667 1.1 1.13333 1.16667 1.2 1.23333 1.26667 1.3 1.33333 1.36667 1.4 1.43333 1.46667 1.5 1.53333 1.56667 1.6 1.63333 1.66667 1.7 1.73333 1.76667 1.8 1.83333 1.86667 1.9 1.93333 1.96667 2 2.03333 2.06667 2.1 2.13333 2.16667 2.2 2.23333 2.26667 2.3 2.33333 2.36667 2.4 2.43333 2.46667 2.5 2.53333 2.56667 2.6 2.63333 2.66667 2.7 2.73333 2.76667 2.8 2.83333 2.86667 2.9 2.93333 2.96667 3 3.03333 3.06667 3.1 3.13333 3.16667 3.2 3.23333 3.26667 3.3 3.33333 - - - - - - - CONSTANT - CONSTANT - - - - 0.988998 -0.016084 -0.147054 -64.1862 -0.002497 -0.995745 0.092117 86.8699 -0.14791 -0.090736 -0.98483 -181.92 0 0 0 1 0.98822 0.008131 -0.152823 -71.9975 0.021679 -0.995956 0.087196 88.749 -0.151497 -0.089482 -0.984399 -178.051 0 0 0 1 0.986741 0.032591 -0.158997 -80.0879 0.046067 -0.995582 0.08182 90.2004 -0.155628 -0.088059 -0.983883 -173.819 0 0 0 1 0.984505 0.059012 -0.165126 -88.2262 0.072369 -0.994473 0.07607 91.3381 -0.159724 -0.086841 -0.983335 -169.226 0 0 0 1 0.9754 0.104534 -0.194085 -96.0419 0.120914 -0.989861 0.074529 92.2995 -0.184327 -0.096163 -0.97815 -164.382 0 0 0 1 0.961352 0.16149 -0.222985 -103.048 0.180798 -0.981101 0.068938 93.2678 -0.207638 -0.106589 -0.972381 -159.523 0 0 0 1 0.940354 0.229663 -0.250975 -109.055 0.251671 -0.966014 0.058974 94.511 -0.228901 -0.11862 -0.966195 -154.728 0 0 0 1 0.911129 0.30564 -0.276453 -113.726 0.329875 -0.942968 0.04467 96.3165 -0.247033 -0.131896 -0.959989 -150.189 0 0 0 1 0.874019 0.381496 -0.300917 -117.16 0.407793 -0.912664 0.027387 99.1814 -0.264188 -0.146649 -0.953257 -145.622 0 0 0 1 0.82865 0.455119 -0.325892 -119.78 0.483444 -0.875349 0.006806 103.187 -0.282171 -0.163191 -0.945383 -140.629 0 0 0 1 0.775825 0.526034 -0.348402 -121.543 0.555703 -0.831197 -0.017535 107.867 -0.298814 -0.180004 -0.937181 -135.524 0 0 0 1 0.717386 0.593163 -0.365396 -122.462 0.623021 -0.780936 -0.044544 112.64 -0.311773 -0.195694 -0.929786 -130.74 0 0 0 1 0.65262 0.658368 -0.375019 -122.684 0.687075 -0.722872 -0.073375 117.109 -0.319398 -0.20978 -0.924109 -126.549 0 0 0 1 0.581021 0.722153 -0.375379 -122.395 0.748415 -0.655303 -0.102255 120.795 -0.31983 -0.221527 -0.921213 -123.332 0 0 0 1 0.502712 0.783505 -0.36524 -121.848 0.806382 -0.577275 -0.128462 123.186 -0.311494 -0.229943 -0.922007 -121.501 0 0 0 1 0.413853 0.84295 -0.343746 -121.279 0.861875 -0.484379 -0.150164 123.891 -0.293084 -0.23412 -0.926979 -121.356 0 0 0 1 0.399741 0.848781 -0.346091 -120.629 0.864681 -0.474476 -0.164923 122.161 -0.304195 -0.233331 -0.923592 -123.729 0 0 0 1 0.380245 0.862205 -0.334689 -119.566 0.874183 -0.453212 -0.174365 118.151 -0.302023 -0.226278 -0.926056 -128.551 0 0 0 1 0.372378 0.872538 -0.316245 -117.811 0.880686 -0.439715 -0.176191 112.573 -0.292791 -0.212903 -0.932172 -135.001 0 0 0 1 0.393687 0.870304 -0.295941 -115.184 0.874173 -0.454024 -0.172291 106.202 -0.284309 -0.190875 -0.939539 -142.223 0 0 0 1 0.465999 0.839578 -0.279202 -111.766 0.836608 -0.52082 -0.169807 99.9916 -0.28798 -0.154453 -0.945099 -149.263 0 0 0 1 0.571696 0.774641 -0.270359 -107.718 0.764324 -0.62263 -0.167754 94.6606 -0.298283 -0.110737 -0.948032 -155.571 0 0 0 1 0.674446 0.686476 -0.271799 -103.52 0.673489 -0.722867 -0.154518 91.1788 -0.302548 -0.078839 -0.949868 -160.418 0 0 0 1 0.764968 0.580586 -0.278827 -98.6421 0.57235 -0.811314 -0.119098 89.3151 -0.295362 -0.068479 -0.952928 -164.485 0 0 0 1 0.845821 0.453649 -0.280696 -92.547 0.455031 -0.888155 -0.064254 88.1087 -0.27845 -0.073376 -0.957644 -168.624 0 0 0 1 0.90685 0.326585 -0.266395 -85.7921 0.336329 -0.941696 -0.009547 87.3443 -0.253982 -0.080938 -0.963816 -172.546 0 0 0 1 0.946465 0.218305 -0.237795 -79.0927 0.23157 -0.972386 0.029003 86.8668 -0.224897 -0.082516 -0.970882 -175.954 0 0 0 1 0.970201 0.129161 -0.205002 -72.8974 0.143079 -0.988208 0.054529 86.5739 -0.195542 -0.082237 -0.977241 -178.751 0 0 0 1 0.982412 0.06238 -0.175996 -67.9514 0.075572 -0.994731 0.069265 86.4564 -0.170748 -0.081347 -0.981952 -180.745 0 0 0 1 0.987668 0.01542 -0.1558 -64.8538 0.028066 -0.996456 0.079298 86.5423 -0.154025 -0.082693 -0.984601 -181.839 0 0 0 1 0.989032 -0.016046 -0.146826 -64.1862 -0.002517 -0.995768 0.091866 86.8698 -0.147678 -0.090487 -0.984887 -181.92 0 0 0 1 0.990728 0.020474 -0.134309 -67.1053 0.03065 -0.996776 0.074142 87.6436 -0.132358 -0.077571 -0.988162 -180.491 0 0 0 1 0.989953 0.048403 -0.132853 -73.3987 0.057405 -0.996247 0.064785 88.8695 -0.129218 -0.071761 -0.989016 -177.419 0 0 0 1 0.987527 0.072667 -0.13968 -81.9029 0.081793 -0.994797 0.060737 90.2847 -0.134539 -0.071405 -0.988332 -172.928 0 0 0 1 0.978236 0.113686 -0.173581 -91.4007 0.126457 -0.989883 0.064345 91.6896 -0.164509 -0.084895 -0.982715 -167.341 0 0 0 1 0.963488 0.165766 -0.210269 -100.518 0.182712 -0.981096 0.06377 93.0219 -0.195723 -0.099861 -0.975561 -161.27 0 0 0 1 0.941477 0.230916 -0.245558 -108.312 0.251814 -0.966097 0.056971 94.4613 -0.224077 -0.115473 -0.967706 -155.279 0 0 0 1 0.911685 0.306147 -0.274053 -113.728 0.329785 -0.943049 0.043597 96.3166 -0.245099 -0.130126 -0.960725 -150.188 0 0 0 1 0.874677 0.382106 -0.29822 -117.16 0.407734 -0.912718 0.026425 99.1813 -0.262093 -0.144708 -0.954131 -145.622 0 0 0 1 0.829068 0.456265 -0.323217 -119.794 0.483893 -0.875107 0.005879 103.215 -0.280167 -0.161277 -0.946307 -140.598 0 0 0 1 0.776566 0.526773 -0.345623 -121.542 0.55574 -0.831158 -0.018121 107.867 -0.296813 -0.178004 -0.938198 -135.524 0 0 0 1 0.71808 0.593897 -0.362833 -122.461 0.623106 -0.780846 -0.04493 112.64 -0.31 -0.19382 -0.930771 -130.74 0 0 0 1 0.652778 0.659432 -0.372867 -122.684 0.687586 -0.722348 -0.073751 117.135 -0.317974 -0.208234 -0.924949 -126.525 0 0 0 1 0.581435 0.72266 -0.37376 -122.395 0.748527 -0.655164 -0.102313 120.795 -0.318812 -0.220282 -0.921865 -123.332 0 0 0 1 0.50292 0.783788 -0.364344 -121.848 0.806456 -0.577174 -0.128446 123.186 -0.310965 -0.22923 -0.922364 -121.501 0 0 0 1 0.413852 0.84295 -0.343746 -121.279 0.861875 -0.484378 -0.150164 123.891 -0.293084 -0.23412 -0.926979 -121.356 0 0 0 1 0.399742 0.848784 -0.346082 -120.629 0.864682 -0.474474 -0.164922 122.161 -0.30419 -0.233325 -0.923595 -123.729 0 0 0 1 0.380249 0.862212 -0.334666 -119.566 0.874186 -0.453207 -0.174362 118.151 -0.30201 -0.22626 -0.926065 -128.551 0 0 0 1 0.372382 0.872546 -0.31622 -117.811 0.880689 -0.43971 -0.176187 112.573 -0.292776 -0.212883 -0.932182 -135.001 0 0 0 1 0.393686 0.870305 -0.295941 -115.184 0.874173 -0.454023 -0.17229 106.202 -0.284309 -0.190875 -0.939539 -142.223 0 0 0 1 0.465977 0.839556 -0.279305 -111.766 0.836596 -0.520832 -0.169827 99.9916 -0.28805 -0.15453 -0.945065 -149.263 0 0 0 1 0.570987 0.77507 -0.270629 -107.744 0.764799 -0.622023 -0.167838 94.6882 -0.298424 -0.111144 -0.94794 -155.536 0 0 0 1 0.674373 0.686416 -0.272128 -103.52 0.673446 -0.722901 -0.154546 91.1787 -0.302805 -0.079042 -0.949769 -160.418 0 0 0 1 0.76491 0.580544 -0.279072 -98.6421 0.572326 -0.811332 -0.119095 89.3151 -0.29556 -0.068624 -0.952856 -164.485 0 0 0 1 0.846242 0.452834 -0.280741 -92.5067 0.454283 -0.888563 -0.063895 88.1026 -0.27839 -0.073464 -0.957654 -168.649 0 0 0 1 0.906849 0.326586 -0.266397 -85.7923 0.33633 -0.941696 -0.009548 87.3443 -0.253983 -0.080938 -0.963816 -172.546 0 0 0 1 0.94646 0.218301 -0.237818 -79.0926 0.23157 -0.972385 0.029013 86.8669 -0.224917 -0.082531 -0.970876 -175.954 0 0 0 1 0.970187 0.129149 -0.20508 -72.8974 0.143083 -0.988204 0.054574 86.574 -0.195612 -0.082291 -0.977223 -178.751 0 0 0 1 0.982388 0.06236 -0.176135 -67.9513 0.075581 -0.994724 0.069368 86.4564 -0.170879 -0.081459 -0.981918 -180.745 0 0 0 1 0.987638 0.015391 -0.155994 -64.8538 0.028081 -0.996441 0.079475 86.5421 -0.154215 -0.082873 -0.984556 -181.839 0 0 0 1 0.988998 -0.016082 -0.147054 -64.1862 -0.002495 -0.995745 0.092117 86.8698 -0.14791 -0.090736 -0.98483 -181.92 0 0 0 1 0.990716 0.020261 -0.134433 -67.0765 0.030468 -0.99677 0.074307 87.6375 -0.132493 -0.077714 -0.988133 -180.505 0 0 0 1 0.989964 0.048414 -0.13277 -73.3987 0.0574 -0.996252 0.064706 88.8695 -0.12914 -0.071677 -0.989033 -177.419 0 0 0 1 0.987529 0.072913 -0.139537 -81.9591 0.081995 -0.994796 0.06047 90.2934 -0.134403 -0.071157 -0.988369 -172.896 0 0 0 1 0.978275 0.113723 -0.173332 -91.4007 0.12644 -0.989898 0.064152 91.6896 -0.164286 -0.084674 -0.982771 -167.342 0 0 0 1 0.963532 0.165808 -0.210031 -100.518 0.182699 -0.981109 0.063613 93.0219 -0.195516 -0.099665 -0.975623 -161.27 0 0 0 1 0.941525 0.23096 -0.245333 -108.312 0.251803 -0.966107 0.056848 94.4614 -0.223888 -0.1153 -0.967771 -155.279 0 0 0 1 0.911733 0.306189 -0.273846 -113.728 0.329776 -0.943056 0.043505 96.3166 -0.244931 -0.129973 -0.960789 -150.188 0 0 0 1 0.874722 0.382148 -0.298034 -117.16 0.407731 -0.912722 0.026358 99.1813 -0.261949 -0.144574 -0.954191 -145.622 0 0 0 1 0.829109 0.456304 -0.323056 -119.794 0.483892 -0.875108 0.005833 103.215 -0.280047 -0.161161 -0.946362 -140.598 0 0 0 1 0.776603 0.526808 -0.345487 -121.542 0.555741 -0.831158 -0.018149 107.867 -0.296716 -0.177907 -0.938248 -135.524 0 0 0 1 0.718109 0.593928 -0.362725 -122.461 0.62311 -0.780842 -0.044946 112.64 -0.309926 -0.193741 -0.930812 -130.74 0 0 0 1 0.653223 0.659052 -0.372761 -122.684 0.687194 -0.722737 -0.073586 117.109 -0.317906 -0.208091 -0.925005 -126.549 0 0 0 1 0.581448 0.722677 -0.373707 -122.395 0.748531 -0.655159 -0.102315 120.795 -0.318779 -0.22024 -0.921887 -123.332 0 0 0 1 0.502927 0.783796 -0.364318 -121.848 0.806458 -0.577171 -0.128446 123.186 -0.310949 -0.229208 -0.922374 -121.501 0 0 0 1 0.413852 0.84295 -0.343746 -121.279 0.861875 -0.484378 -0.150164 123.891 -0.293084 -0.23412 -0.926979 -121.356 0 0 0 1 0.399822 0.848696 -0.346205 -120.635 0.864624 -0.47459 -0.164892 122.179 -0.304249 -0.23341 -0.923554 -123.707 0 0 0 1 0.380203 0.862146 -0.334888 -119.566 0.874161 -0.453242 -0.174393 118.151 -0.302138 -0.226441 -0.925979 -128.551 0 0 0 1 0.372327 0.872503 -0.316403 -117.797 0.880669 -0.439725 -0.176245 112.536 -0.292904 -0.213025 -0.932109 -135.044 0 0 0 1 0.393623 0.870224 -0.296261 -115.184 0.874137 -0.454069 -0.172354 106.202 -0.284509 -0.19113 -0.939427 -142.223 0 0 0 1 0.465948 0.839523 -0.279453 -111.766 0.836577 -0.520853 -0.169854 99.9916 -0.28815 -0.154641 -0.945016 -149.263 0 0 0 1 0.571018 0.775098 -0.270486 -107.744 0.764818 -0.622006 -0.167815 94.6883 -0.298317 -0.111047 -0.947985 -155.536 0 0 0 1 0.673843 0.687084 -0.271756 -103.549 0.674093 -0.722273 -0.154662 91.1954 -0.302548 -0.078971 -0.949857 -160.39 0 0 0 1 0.764976 0.580591 -0.278794 -98.6421 0.572353 -0.811312 -0.119099 89.3151 -0.295337 -0.06846 -0.952937 -164.485 0 0 0 1 0.846269 0.452853 -0.280628 -92.5067 0.45429 -0.888559 -0.063912 88.1026 -0.278297 -0.073399 -0.957687 -168.649 0 0 0 1 0.906849 0.326586 -0.266397 -85.7923 0.33633 -0.941695 -0.009547 87.3443 -0.253983 -0.080938 -0.963816 -172.546 0 0 0 1 0.946455 0.218296 -0.237842 -79.0926 0.23157 -0.972385 0.029023 86.8669 -0.224938 -0.082546 -0.97087 -175.954 0 0 0 1 0.970076 0.129633 -0.205299 -72.9323 0.143573 -0.98814 0.054467 86.5752 -0.195804 -0.082312 -0.977182 -178.736 0 0 0 1 0.982387 0.062356 -0.176149 -67.9513 0.07558 -0.994723 0.069381 86.4564 -0.170894 -0.081471 -0.981915 -180.745 0 0 0 1 0.987637 0.01539 -0.155998 -64.8537 0.028081 -0.996441 0.07948 86.5421 -0.15422 -0.082878 -0.984555 -181.839 0 0 0 1 0.988998 -0.016084 -0.147054 -64.1862 -0.002496 -0.995745 0.092118 86.8698 -0.14791 -0.090736 -0.98483 -181.92 0 0 0 1 0.990705 0.020251 -0.134512 -67.0764 0.030475 -0.996764 0.074389 87.6376 -0.13257 -0.077797 -0.988116 -180.505 0 0 0 1 0.989943 0.048391 -0.132934 -73.3987 0.05741 -0.996241 0.064864 88.8695 -0.129296 -0.071843 -0.989 -177.419 0 0 0 1 0.987495 0.072878 -0.139792 -81.9591 0.082009 -0.994781 0.060699 90.2934 -0.134638 -0.071405 -0.988319 -172.896 0 0 0 1 0.978232 0.113682 -0.173602 -91.4007 0.126457 -0.989882 0.064362 91.6896 -0.164529 -0.084915 -0.98271 -167.342 0 0 0 1 0.963479 0.165756 -0.210316 -100.518 0.182714 -0.981094 0.063801 93.0219 -0.195764 -0.099898 -0.975549 -161.27 0 0 0 1 0.941461 0.230901 -0.245632 -108.312 0.251817 -0.966094 0.057012 94.4614 -0.224139 -0.115529 -0.967685 -155.279 0 0 0 1 0.911869 0.305652 -0.273991 -113.7 0.3293 -0.943211 0.043739 96.3018 -0.245062 -0.13011 -0.960737 -150.218 0 0 0 1 0.874645 0.382076 -0.298352 -117.16 0.407737 -0.912716 0.026472 99.1813 -0.262196 -0.144803 -0.954089 -145.622 0 0 0 1 0.829027 0.456225 -0.323378 -119.794 0.483894 -0.875107 0.005923 103.215 -0.280288 -0.161391 -0.946251 -140.598 0 0 0 1 0.776516 0.526723 -0.345812 -121.542 0.555737 -0.831161 -0.018081 107.867 -0.29695 -0.17814 -0.938129 -135.524 0 0 0 1 - - - - - - - - LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR - - - - - - - - - - - - - - - - 0 0.033333 0.066666 0.1 0.133333 0.166667 0.2 0.233333 0.266667 0.3 0.333333 0.366667 0.4 0.433333 0.466667 0.5 0.533333 0.566667 0.6 0.633333 0.666667 0.7 0.733333 0.766667 0.8 0.833333 0.866667 0.9 0.933333 0.966667 1 1.03333 1.06667 1.1 1.13333 1.16667 1.2 1.23333 1.26667 1.3 1.33333 1.36667 1.4 1.43333 1.46667 1.5 1.53333 1.56667 1.6 1.63333 1.66667 1.7 1.73333 1.76667 1.8 1.83333 1.86667 1.9 1.93333 1.96667 2 2.03333 2.06667 2.1 2.13333 2.16667 2.2 2.23333 2.26667 2.3 2.33333 2.36667 2.4 2.43333 2.46667 2.5 2.53333 2.56667 2.6 2.63333 2.66667 2.7 2.73333 2.76667 2.8 2.83333 2.86667 2.9 2.93333 2.96667 3 3.03333 3.06667 3.1 3.13333 3.16667 3.2 3.23333 3.26667 3.3 3.33333 - - - - - - - CONSTANT - CONSTANT - - - - 0.044008 0.999031 0 547.819 -0.999031 0.044008 0 0.000037 0 0 1 -0.000015 0 0 0 1 0.032261 0.999479 0 547.819 -0.999479 0.032261 0 -0.000081 0 0 1 -0.000015 0 0 0 1 0.020287 0.999794 0 547.819 -0.999794 0.020287 0 0.00005 0 0 1 -0.000015 0 0 0 1 0.010958 0.99994 0 547.819 -0.99994 0.010958 0 0.000008 0 0 1 -0.000015 0 0 0 1 -0.052769 0.998607 0 547.819 -0.998607 -0.052769 0 -0.000061 0 0 1 -0.000015 0 0 0 1 -0.097287 0.995256 0 547.819 -0.995256 -0.097287 0 -0.000032 0 0 1 -0.000015 0 0 0 1 -0.120776 0.99268 0 547.819 -0.99268 -0.120776 0 -0.000026 0 0 1 -0.000015 0 0 0 1 -0.122837 0.992427 0 547.819 -0.992427 -0.122837 0 0.000064 0 0 1 -0.000015 0 0 0 1 -0.106969 0.994262 0 547.819 -0.994262 -0.106969 0 0.000028 0 0 1 -0.000015 0 0 0 1 -0.075506 0.997145 0 547.819 -0.997145 -0.075506 0 -0.000038 0 0 1 -0.000015 0 0 0 1 -0.029777 0.999557 0 547.819 -0.999557 -0.029777 0 -0.000001 0 0 1 -0.000015 0 0 0 1 0.027946 0.999609 0 547.819 -0.999609 0.027946 0 0.000086 0 0 1 -0.000015 0 0 0 1 0.097664 0.995219 0 547.819 -0.995219 0.097664 0 -0.000004 0 0 1 -0.000015 0 0 0 1 0.178916 0.983864 0 547.819 -0.983864 0.178916 0 0.000017 0 0 1 -0.000015 0 0 0 1 0.269693 0.962946 0 547.819 -0.962946 0.269693 0 0.000044 0 0 1 -0.000015 0 0 0 1 0.371507 0.92843 0 547.819 -0.92843 0.371507 0 -0.000009 0 0 1 -0.000015 0 0 0 1 0.33859 0.940934 0 547.819 -0.940933 0.33859 0 -0.000002 0 0 1 -0.000015 0 0 0 1 0.315911 0.948789 0 547.819 -0.948789 0.315911 0 0.000004 0 0 1 -0.000015 0 0 0 1 0.283607 0.958941 0 547.819 -0.958941 0.283607 0 0.000029 0 0 1 -0.000015 0 0 0 1 0.213675 0.976904 0 547.819 -0.976904 0.213675 0 0.000017 0 0 1 -0.000015 0 0 0 1 0.063262 0.997997 0 547.819 -0.997997 0.063262 0 0.000009 0 0 1 -0.000015 0 0 0 1 -0.125102 0.992143 0 547.819 -0.992143 -0.125102 0 -0.000017 0 0 1 -0.000015 0 0 0 1 -0.26599 0.963976 0 547.819 -0.963976 -0.26599 0 -0.00002 0 0 1 -0.000015 0 0 0 1 -0.34606 0.938212 0 547.819 -0.938212 -0.34606 0 -0.000017 0 0 1 -0.000015 0 0 0 1 -0.383874 0.923385 0 547.819 -0.923385 -0.383874 0 -0.000006 0 0 1 -0.000015 0 0 0 1 -0.380476 0.924791 0 547.819 -0.924791 -0.380476 0 0.000033 0 0 1 -0.000015 0 0 0 1 -0.343814 0.939038 0 547.819 -0.939038 -0.343814 0 -0.000091 0 0 1 -0.000015 0 0 0 1 -0.278014 0.960577 0 547.819 -0.960577 -0.278014 0 0.000031 0 0 1 -0.000015 0 0 0 1 -0.188387 0.982095 0 547.819 -0.982095 -0.188387 0 -0.000022 0 0 1 -0.000015 0 0 0 1 -0.079894 0.996803 0 547.819 -0.996803 -0.079894 0 -0.000016 0 0 1 -0.000015 0 0 0 1 0.04401 0.999031 0 547.819 -0.999031 0.04401 0 0.000093 0 0 1 -0.000015 0 0 0 1 0.045618 0.998959 0 547.819 -0.998959 0.045618 0 -0.000038 0 0 1 -0.000015 0 0 0 1 0.037496 0.999297 0 547.819 -0.999297 0.037496 0 -0.000078 0 0 1 -0.000015 0 0 0 1 0.025623 0.999672 0 547.819 -0.999672 0.025623 0 0.000067 0 0 1 -0.000015 0 0 0 1 -0.043671 0.999046 0 547.819 -0.999046 -0.043671 0 -0.000151 0 0 1 -0.000015 0 0 0 1 -0.093962 0.995576 0 547.819 -0.995576 -0.093962 0 -0.000015 0 0 1 -0.000015 0 0 0 1 -0.120448 0.99272 0 547.819 -0.99272 -0.120448 0 -0.000126 0 0 1 -0.000015 0 0 0 1 -0.122837 0.992427 0 547.819 -0.992427 -0.122837 0 0.000025 0 0 1 -0.000015 0 0 0 1 -0.106969 0.994262 0 547.819 -0.994262 -0.10697 0 0.000049 0 0 1 -0.000015 0 0 0 1 -0.075265 0.997163 0 547.819 -0.997163 -0.075265 0 0.000008 0 0 1 -0.000015 0 0 0 1 -0.029778 0.999557 0 547.819 -0.999557 -0.029778 0 -0.000076 0 0 1 -0.000015 0 0 0 1 0.027946 0.999609 0 547.819 -0.999609 0.027946 0 0.000034 0 0 1 -0.000015 0 0 0 1 0.098135 0.995173 0 547.819 -0.995173 0.098135 0 0.000007 0 0 1 -0.000015 0 0 0 1 0.178913 0.983864 0 547.819 -0.983864 0.178913 0 0.000011 0 0 1 -0.000015 0 0 0 1 0.269693 0.962946 0 547.819 -0.962946 0.269693 0 0.000000 0 0 1 -0.000015 0 0 0 1 0.371507 0.92843 0 547.819 -0.92843 0.371507 0 -0.000027 0 0 1 -0.000015 0 0 0 1 0.33859 0.940934 0 547.819 -0.940934 0.33859 0 -0.000002 0 0 1 -0.000015 0 0 0 1 0.315911 0.948789 0 547.819 -0.948789 0.315911 0 0.000001 0 0 1 -0.000015 0 0 0 1 0.283608 0.95894 0 547.819 -0.95894 0.283608 0 -0.000031 0 0 1 -0.000015 0 0 0 1 0.213677 0.976905 0 547.819 -0.976905 0.213677 0 -0.000039 0 0 1 -0.000015 0 0 0 1 0.063263 0.997997 0 547.819 -0.997997 0.063263 0 -0.000000 0 0 1 -0.000015 0 0 0 1 -0.12407 0.992273 0 547.819 -0.992273 -0.12407 0 -0.00005 0 0 1 -0.000015 0 0 0 1 -0.265992 0.963975 0 547.819 -0.963975 -0.265992 0 0.000000 0 0 1 -0.000015 0 0 0 1 -0.34606 0.938212 0 547.819 -0.938212 -0.34606 0 0.000044 0 0 1 -0.000015 0 0 0 1 -0.383875 0.923385 0 547.819 -0.923385 -0.383875 0 0.000036 0 0 1 -0.000015 0 0 0 1 -0.380478 0.924791 0 547.819 -0.924791 -0.380478 0 0.000059 0 0 1 -0.000015 0 0 0 1 -0.343814 0.939038 0 547.819 -0.939038 -0.343814 0 -0.000025 0 0 1 -0.000015 0 0 0 1 -0.278015 0.960577 0 547.819 -0.960577 -0.278014 0 0.0001 0 0 1 -0.000015 0 0 0 1 -0.188385 0.982095 0 547.819 -0.982095 -0.188386 0 -0.000048 0 0 1 -0.000015 0 0 0 1 -0.079894 0.996803 0 547.819 -0.996803 -0.079894 0 0.000061 0 0 1 -0.000015 0 0 0 1 0.04401 0.999031 0 547.819 -0.999031 0.04401 0 0.000002 0 0 1 -0.000015 0 0 0 1 0.045619 0.998959 0 547.819 -0.998959 0.045619 0 0.000049 0 0 1 -0.000015 0 0 0 1 0.037496 0.999297 0 547.819 -0.999297 0.037496 0 -0.000101 0 0 1 -0.000015 0 0 0 1 0.025396 0.999678 0 547.819 -0.999678 0.025396 0 -0.000034 0 0 1 -0.000015 0 0 0 1 -0.043671 0.999046 0 547.819 -0.999046 -0.043672 0 0.000011 0 0 1 -0.000015 0 0 0 1 -0.093964 0.995576 0 547.819 -0.995576 -0.093964 0 -0.000051 0 0 1 -0.000015 0 0 0 1 -0.120449 0.99272 0 547.819 -0.99272 -0.120449 0 0.000002 0 0 1 -0.000015 0 0 0 1 -0.122838 0.992427 0 547.819 -0.992427 -0.122838 0 0.000053 0 0 1 -0.000015 0 0 0 1 -0.10697 0.994262 0 547.819 -0.994262 -0.10697 0 -0.000013 0 0 1 -0.000015 0 0 0 1 -0.075265 0.997163 0 547.819 -0.997163 -0.075265 0 -0.000054 0 0 1 -0.000015 0 0 0 1 -0.029779 0.999557 0 547.819 -0.999557 -0.029779 0 0.000045 0 0 1 -0.000015 0 0 0 1 0.027946 0.99961 0 547.819 -0.999609 0.027946 0 0.000045 0 0 1 -0.000015 0 0 0 1 0.097663 0.99522 0 547.819 -0.99522 0.097663 0 -0.000026 0 0 1 -0.000015 0 0 0 1 0.178915 0.983864 0 547.819 -0.983864 0.178915 0 0.000035 0 0 1 -0.000015 0 0 0 1 0.269693 0.962946 0 547.819 -0.962946 0.269693 0 0.000009 0 0 1 -0.000015 0 0 0 1 0.371507 0.92843 0 547.819 -0.92843 0.371507 0 -0.000023 0 0 1 -0.000015 0 0 0 1 0.338764 0.940872 0 547.819 -0.940872 0.338764 0 0.00001 0 0 1 -0.000015 0 0 0 1 0.31591 0.948789 0 547.819 -0.948789 0.31591 0 0.000005 0 0 1 -0.000015 0 0 0 1 0.283291 0.959035 0 547.819 -0.959035 0.283291 0 0.000001 0 0 1 -0.000015 0 0 0 1 0.213678 0.976904 0 547.819 -0.976904 0.213678 0 0.000015 0 0 1 -0.000015 0 0 0 1 0.063262 0.997997 0 547.819 -0.997997 0.063263 0 0.000054 0 0 1 -0.000015 0 0 0 1 -0.12407 0.992273 0 547.819 -0.992273 -0.12407 0 0.000009 0 0 1 -0.000015 0 0 0 1 -0.265304 0.964165 0 547.819 -0.964165 -0.265304 0 0.000074 0 0 1 -0.000015 0 0 0 1 -0.346061 0.938212 0 547.819 -0.938212 -0.346061 0 0.000071 0 0 1 -0.000015 0 0 0 1 -0.383875 0.923385 0 547.819 -0.923385 -0.383875 0 0.000034 0 0 1 -0.000015 0 0 0 1 -0.380478 0.92479 0 547.819 -0.924791 -0.380478 0 0.000031 0 0 1 -0.000015 0 0 0 1 -0.343814 0.939038 0 547.819 -0.939038 -0.343814 0 -0.000127 0 0 1 -0.000015 0 0 0 1 -0.278499 0.960437 0 547.819 -0.960437 -0.278499 0 -0.00011 0 0 1 -0.000015 0 0 0 1 -0.188384 0.982095 0 547.819 -0.982095 -0.188384 0 0.000015 0 0 1 -0.000015 0 0 0 1 -0.079894 0.996803 0 547.819 -0.996803 -0.079894 0 0.000027 0 0 1 -0.000015 0 0 0 1 0.044011 0.999031 0 547.819 -0.999031 0.044011 0 -0.00002 0 0 1 -0.000015 0 0 0 1 0.045619 0.998959 0 547.819 -0.998959 0.045619 0 -0.00001 0 0 1 -0.000015 0 0 0 1 0.037494 0.999297 0 547.819 -0.999297 0.037494 0 0.000013 0 0 1 -0.000015 0 0 0 1 0.025395 0.999678 0 547.819 -0.999678 0.025395 0 -0.000098 0 0 1 -0.000015 0 0 0 1 -0.043672 0.999046 0 547.819 -0.999046 -0.043672 0 -0.000038 0 0 1 -0.000015 0 0 0 1 -0.093964 0.995576 0 547.819 -0.995576 -0.093964 0 -0.000069 0 0 1 -0.000015 0 0 0 1 -0.120449 0.99272 0 547.819 -0.99272 -0.120449 0 0.00007 0 0 1 -0.000015 0 0 0 1 -0.122839 0.992427 0 547.819 -0.992427 -0.122839 0 -0.000018 0 0 1 -0.000015 0 0 0 1 -0.10697 0.994262 0 547.819 -0.994262 -0.10697 0 0.000004 0 0 1 -0.000015 0 0 0 1 -0.075265 0.997163 0 547.819 -0.997163 -0.075265 0 -0.000019 0 0 1 -0.000015 0 0 0 1 -0.029778 0.999557 0 547.819 -0.999557 -0.029778 0 0.000045 0 0 1 -0.000015 0 0 0 1 - - - - - - - - LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR - - - - - - - - - - - - - - - - 0 0.033333 0.066666 0.1 0.133333 0.166667 0.2 0.233333 0.266667 0.3 0.333333 0.366667 0.4 0.433333 0.466667 0.5 0.533333 0.566667 0.6 0.633333 0.666667 0.7 0.733333 0.766667 0.8 0.833333 0.866667 0.9 0.933333 0.966667 1 1.03333 1.06667 1.1 1.13333 1.16667 1.2 1.23333 1.26667 1.3 1.33333 1.36667 1.4 1.43333 1.46667 1.5 1.53333 1.56667 1.6 1.63333 1.66667 1.7 1.73333 1.76667 1.8 1.83333 1.86667 1.9 1.93333 1.96667 2 2.03333 2.06667 2.1 2.13333 2.16667 2.2 2.23333 2.26667 2.3 2.33333 2.36667 2.4 2.43333 2.46667 2.5 2.53333 2.56667 2.6 2.63333 2.66667 2.7 2.73333 2.76667 2.8 2.83333 2.86667 2.9 2.93333 2.96667 3 3.03333 3.06667 3.1 3.13333 3.16667 3.2 3.23333 3.26667 3.3 3.33333 - - - - - - - CONSTANT - CONSTANT - - - - 0.970553 -0.186579 0.152365 532.748 0.219338 0.945982 -0.238764 0.000041 -0.099587 0.265152 0.95905 -0.000002 0 0 0 1 0.948887 -0.269556 0.16418 532.748 0.303763 0.921189 -0.243182 0.000004 -0.085688 0.280624 0.955985 -0.000002 0 0 0 1 0.920379 -0.348564 0.177218 532.748 0.384412 0.889565 -0.246783 -0.000033 -0.071627 0.295259 0.952728 -0.000002 0 0 0 1 0.885424 -0.423656 0.191152 532.748 0.461272 0.851436 -0.249568 0.000011 -0.057023 0.309147 0.949303 -0.000002 0 0 0 1 0.833229 -0.513848 0.204178 532.748 0.549668 0.809815 -0.205098 0.000048 -0.059957 0.283123 0.957207 -0.000002 0 0 0 1 0.775894 -0.594066 0.212307 532.748 0.627298 0.762237 -0.159662 -0.000039 -0.066979 0.257061 0.964071 -0.000002 0 0 0 1 0.71603 -0.663788 0.216069 532.748 0.693676 0.711253 -0.113723 -0.00005 -0.078192 0.231311 0.969733 -0.000002 0 0 0 1 0.657321 -0.721889 0.216344 532.748 0.747814 0.660347 -0.068667 0.000002 -0.093291 0.206922 0.973899 -0.000002 0 0 0 1 0.603889 -0.768374 0.211943 532.748 0.78925 0.613591 -0.024306 -0.000025 -0.111369 0.181955 0.97698 -0.000002 0 0 0 1 0.557043 -0.805167 0.20349 532.748 0.819816 0.572272 0.020159 -0.000064 -0.132683 0.155595 0.97887 -0.000002 0 0 0 1 0.517523 -0.833161 0.194966 532.748 0.841213 0.537103 0.062296 -0.000018 -0.15662 0.131767 0.978829 -0.000002 0 0 0 1 0.485813 -0.853212 0.189778 532.748 0.855077 0.508931 0.099161 0.000013 -0.181189 0.114101 0.976807 -0.000002 0 0 0 1 0.460578 -0.867022 0.190105 532.748 0.86366 0.487173 0.129435 0.000001 -0.204837 0.104571 0.973194 -0.000002 0 0 0 1 0.441175 -0.875455 0.197339 532.748 0.868667 0.471805 0.151057 0.000031 -0.225349 0.104779 0.968627 -0.000002 0 0 0 1 0.427436 -0.878908 0.211704 532.748 0.871536 0.462841 0.161873 0.000007 -0.240257 0.115317 0.963835 -0.000002 0 0 0 1 0.419237 -0.877513 0.232833 532.748 0.873371 0.459847 0.16051 -0.000003 -0.247917 0.136058 0.959179 -0.000002 0 0 0 1 0.555868 -0.818359 0.145941 532.748 0.794155 0.574676 0.197647 0.000049 -0.245615 0.006034 0.969348 -0.000002 0 0 0 1 0.688609 -0.722542 0.061244 532.748 0.694145 0.681253 0.232503 -0.000003 -0.209716 -0.117592 0.970665 -0.000002 0 0 0 1 0.786131 -0.618 -0.008558 532.748 0.598161 0.757264 0.26221 0.000034 -0.155565 -0.211251 0.964973 -0.000002 0 0 0 1 0.827901 -0.558444 -0.052153 532.748 0.549255 0.788409 0.277003 -0.000008 -0.113572 -0.257977 0.959453 -0.000002 0 0 0 1 0.786425 -0.615057 -0.05692 532.748 0.605626 0.74967 0.266856 0.000042 -0.121461 -0.244334 0.962054 -0.000002 0 0 0 1 0.681583 -0.73136 -0.023623 532.748 0.713011 0.656532 0.246134 -0.000047 -0.164503 -0.184605 0.968948 -0.000002 0 0 0 1 0.593783 -0.804266 0.024057 532.748 0.78022 0.582823 0.227101 -0.000002 -0.196671 -0.116079 0.973574 -0.000002 0 0 0 1 0.544617 -0.834446 0.084213 532.748 0.812077 0.549766 0.195674 -0.000006 -0.209577 -0.038179 0.977046 -0.000002 0 0 0 1 0.522694 -0.838181 0.155702 532.748 0.828023 0.542603 0.141276 -0.000034 -0.202899 0.055081 0.977649 -0.000002 0 0 0 1 0.56308 -0.80004 0.207069 532.748 0.807276 0.586097 0.069249 -0.000002 -0.176765 0.128169 0.975872 -0.000002 0 0 0 1 0.653825 -0.720856 0.229955 532.748 0.741781 0.670607 -0.006886 -0.000024 -0.149245 0.175079 0.973177 -0.000002 0 0 0 1 0.756398 -0.610501 0.234843 532.748 0.641275 0.762891 -0.082239 0.000034 -0.128952 0.212804 0.968549 -0.000002 0 0 0 1 0.850125 -0.477326 0.222366 532.748 0.513359 0.845294 -0.148127 0.000003 -0.11726 0.24008 0.963645 -0.000002 0 0 0 1 0.922903 -0.332235 0.194604 532.748 0.369009 0.907498 -0.200699 -0.00004 -0.109924 0.257036 0.96013 -0.000002 0 0 0 1 0.970529 -0.186513 0.152597 532.748 0.219361 0.945917 -0.239 0.000007 -0.099767 0.26543 0.958954 -0.000002 0 0 0 1 0.946982 -0.263653 0.183607 532.748 0.305529 0.915766 -0.260813 0.000044 -0.099376 0.303083 0.947768 -0.000002 0 0 0 1 0.918003 -0.340202 0.203799 532.748 0.386796 0.881505 -0.27081 0.000003 -0.08752 0.327432 0.940812 -0.000002 0 0 0 1 0.883291 -0.415824 0.216534 532.748 0.463661 0.843167 -0.272191 -0.000059 -0.06939 0.340822 0.937563 -0.000002 0 0 0 1 0.8312 -0.508691 0.224363 532.748 0.551852 0.803917 -0.221758 0.000007 -0.067563 0.30814 0.948939 -0.000002 0 0 0 1 0.774196 -0.591751 0.224611 532.748 0.62903 0.758744 -0.169203 -0.000037 -0.070296 0.272283 0.959646 -0.000002 0 0 0 1 0.715151 -0.663081 0.221096 532.748 0.694494 0.709828 -0.11757 0.000029 -0.078981 0.23763 0.968139 -0.000002 0 0 0 1 0.657129 -0.721457 0.218362 532.748 0.747979 0.659978 -0.070396 0.00002 -0.093325 0.209589 0.973326 -0.000002 0 0 0 1 0.603637 -0.76796 0.214148 532.748 0.789469 0.61323 -0.026227 -0.000038 -0.11118 0.184895 0.976449 -0.000002 0 0 0 1 0.556467 -0.805009 0.205682 532.748 0.820252 0.571707 0.018406 0.000043 -0.132408 0.158468 0.978445 -0.000002 0 0 0 1 0.517179 -0.832869 0.197114 532.748 0.841537 0.536826 0.06027 0.000016 -0.156013 0.134708 0.978526 -0.000002 0 0 0 1 0.485458 -0.852986 0.191693 532.748 0.855432 0.508704 0.097245 -0.000004 -0.180463 0.116772 0.976626 -0.000002 0 0 0 1 0.460111 -0.866917 0.191709 532.748 0.864055 0.486877 0.127909 0.000002 -0.204225 0.106795 0.973081 -0.000002 0 0 0 1 0.440919 -0.875338 0.198431 532.748 0.868965 0.471663 0.149775 0.00001 -0.224696 0.10639 0.968603 -0.000002 0 0 0 1 0.427293 -0.878841 0.212273 532.748 0.871719 0.462752 0.161139 0.000001 -0.239846 0.116189 0.963833 -0.000002 0 0 0 1 0.419236 -0.877513 0.232833 532.748 0.873371 0.459846 0.16051 0.000005 -0.247918 0.136058 0.959179 -0.000002 0 0 0 1 0.555867 -0.818359 0.145946 532.748 0.794159 0.574675 0.19764 0.000053 -0.245612 0.006042 0.96935 -0.000002 0 0 0 1 0.688605 -0.722544 0.061257 532.748 0.694149 0.681254 0.232484 -0.000001 -0.209712 -0.117568 0.970669 -0.000002 0 0 0 1 0.786129 -0.618004 -0.008541 532.748 0.598165 0.757269 0.262189 -0.000013 -0.155565 -0.211224 0.964979 -0.000002 0 0 0 1 0.827902 -0.558444 -0.052153 532.748 0.549255 0.788409 0.277003 -0.000038 -0.113572 -0.257977 0.959453 -0.000002 0 0 0 1 0.786434 -0.615039 -0.056993 532.748 0.605617 0.74965 0.266932 0.000048 -0.121449 -0.24444 0.962029 -0.000002 0 0 0 1 0.682231 -0.730741 -0.024073 532.748 0.712448 0.657034 0.246421 -0.000044 -0.164253 -0.185267 0.968864 -0.000002 0 0 0 1 0.593835 -0.804235 0.023787 532.748 0.780181 0.582798 0.2273 -0.000011 -0.196665 -0.116421 0.973534 -0.000002 0 0 0 1 0.544661 -0.834438 0.084005 532.748 0.812048 0.549759 0.195813 -0.000041 -0.209577 -0.038435 0.977036 -0.000002 0 0 0 1 0.522723 -0.838104 0.15602 532.748 0.82803 0.542678 0.140948 0.000034 -0.202797 0.055512 0.977646 -0.000002 0 0 0 1 0.563079 -0.80004 0.207069 532.748 0.807277 0.586095 0.06925 -0.000006 -0.176766 0.128168 0.975872 -0.000002 0 0 0 1 0.653829 -0.720859 0.229934 532.748 0.741778 0.67061 -0.006872 0.000000 -0.149242 0.175054 0.973182 -0.000002 0 0 0 1 0.756407 -0.610517 0.234771 532.748 0.641268 0.762902 -0.082188 -0.000033 -0.12893 0.212719 0.96857 -0.000002 0 0 0 1 0.850142 -0.477358 0.222233 532.748 0.513345 0.845321 -0.148021 -0.000014 -0.117198 0.239921 0.963692 -0.000002 0 0 0 1 0.922925 -0.332285 0.194413 532.748 0.368988 0.907544 -0.200528 -0.000013 -0.109806 0.256809 0.960204 -0.000002 0 0 0 1 0.970554 -0.186577 0.152365 532.748 0.219336 0.945983 -0.238763 -0.000043 -0.099587 0.265152 0.95905 -0.000002 0 0 0 1 0.947158 -0.263207 0.183339 532.748 0.304999 0.91599 -0.260649 0.000002 -0.099332 0.302794 0.947865 -0.000002 0 0 0 1 0.917995 -0.340175 0.203875 532.748 0.386804 0.881478 -0.270887 -0.000029 -0.087563 0.327533 0.940774 -0.000002 0 0 0 1 0.883004 -0.416245 0.216895 532.748 0.464197 0.842836 -0.272305 -0.000008 -0.06946 0.341127 0.937447 -0.000002 0 0 0 1 0.831185 -0.508618 0.224585 532.748 0.551865 0.803851 -0.221965 0.000003 -0.067638 0.308434 0.948837 -0.000002 0 0 0 1 0.77418 -0.591693 0.224822 532.748 0.629044 0.75869 -0.169387 0.000002 -0.070345 0.272559 0.959564 -0.000002 0 0 0 1 0.715134 -0.663034 0.22129 532.748 0.694508 0.709786 -0.117737 -0.000006 -0.079005 0.237886 0.968075 -0.000002 0 0 0 1 0.657112 -0.721419 0.218536 532.748 0.747993 0.659946 -0.070546 0.000015 -0.093328 0.20982 0.973276 -0.000002 0 0 0 1 0.603619 -0.767932 0.214301 532.748 0.789485 0.613204 -0.026359 -0.000041 -0.111168 0.185098 0.976412 -0.000002 0 0 0 1 0.556449 -0.804989 0.205811 532.748 0.820267 0.571688 0.018292 -0.000045 -0.132384 0.158642 0.978421 -0.000002 0 0 0 1 0.517164 -0.832855 0.197218 532.748 0.841553 0.536813 0.060172 -0.000003 -0.155984 0.13485 0.978511 -0.000002 0 0 0 1 0.485442 -0.852976 0.191773 532.748 0.855447 0.508694 0.097165 0.000006 -0.180433 0.116884 0.976618 -0.000002 0 0 0 1 0.460238 -0.866847 0.19172 532.748 0.864026 0.486983 0.127698 -0.000043 -0.204059 0.10688 0.973107 -0.000002 0 0 0 1 0.440911 -0.875333 0.198467 532.748 0.868975 0.471658 0.149734 0.000057 -0.224676 0.106444 0.968602 -0.000002 0 0 0 1 0.427289 -0.878838 0.21229 532.748 0.871725 0.462749 0.161118 0.000003 -0.239833 0.116215 0.963833 -0.000002 0 0 0 1 0.419235 -0.877514 0.232833 532.748 0.873372 0.459846 0.160511 0.00004 -0.247918 0.136058 0.959179 -0.000002 0 0 0 1 0.555047 -0.81884 0.146369 532.748 0.794707 0.573983 0.197444 0.000006 -0.245688 0.00673 0.969326 -0.000002 0 0 0 1 0.688635 -0.722527 0.061118 532.748 0.694109 0.681232 0.232672 -0.000006 -0.209748 -0.117803 0.970633 -0.000002 0 0 0 1 0.786579 -0.617422 -0.009081 532.748 0.597651 0.757528 0.26261 -0.000004 -0.155261 -0.211991 0.964859 -0.000002 0 0 0 1 0.827926 -0.558387 -0.052364 532.748 0.549224 0.78834 0.277258 -0.000003 -0.113536 -0.25831 0.959367 -0.000002 0 0 0 1 0.786448 -0.615012 -0.057099 532.748 0.605603 0.749623 0.267041 -0.000000 -0.121431 -0.244593 0.961992 -0.000002 0 0 0 1 0.682212 -0.730762 -0.023961 532.748 0.712464 0.657053 0.246326 -0.000055 -0.164261 -0.185118 0.968891 -0.000002 0 0 0 1 0.594218 -0.803954 0.023721 532.748 0.779923 0.583162 0.227249 -0.000056 -0.196531 -0.116535 0.973548 -0.000002 0 0 0 1 0.544611 -0.834447 0.084241 532.748 0.812081 0.549766 0.195656 -0.000031 -0.209578 -0.038145 0.977048 -0.000002 0 0 0 1 0.522702 -0.838099 0.156118 532.748 0.828043 0.542675 0.140885 0.000011 -0.202797 0.05563 0.977639 -0.000002 0 0 0 1 0.563079 -0.80004 0.207069 532.748 0.807277 0.586095 0.069251 0.000064 -0.176766 0.128168 0.975872 -0.000002 0 0 0 1 0.653833 -0.720863 0.229913 532.748 0.741775 0.670613 -0.006859 -0.000045 -0.149239 0.175028 0.973187 -0.000002 0 0 0 1 0.755789 -0.611281 0.234775 532.748 0.641978 0.762355 -0.081727 -0.000006 -0.129023 0.212488 0.968608 -0.000002 0 0 0 1 0.850146 -0.477359 0.222217 532.748 0.513341 0.845325 -0.148011 0.000058 -0.117192 0.239904 0.963697 -0.000002 0 0 0 1 0.922925 -0.332286 0.194409 532.748 0.368988 0.907545 -0.200524 0.000018 -0.109803 0.256803 0.960206 -0.000002 0 0 0 1 0.970554 -0.186576 0.152364 532.748 0.219335 0.945983 -0.238763 -0.000005 -0.099587 0.265151 0.95905 -0.000002 0 0 0 1 0.947166 -0.263231 0.183263 532.748 0.304991 0.916015 -0.260572 -0.000004 -0.099281 0.302698 0.947901 -0.000002 0 0 0 1 0.91801 -0.340228 0.203723 532.748 0.38679 0.881531 -0.270733 0.000008 -0.087477 0.327333 0.940851 -0.000002 0 0 0 1 0.883021 -0.416329 0.216666 532.748 0.464181 0.842919 -0.272076 -0.000051 -0.069359 0.34082 0.937566 -0.000002 0 0 0 1 0.831202 -0.508698 0.224343 532.748 0.55185 0.803923 -0.22174 -0.000028 -0.067557 0.308114 0.948947 -0.000002 0 0 0 1 0.774199 -0.591763 0.22457 532.748 0.629027 0.758754 -0.169166 -0.000029 -0.070287 0.272229 0.959662 -0.000002 0 0 0 1 0.715156 -0.663097 0.221033 532.748 0.694489 0.709841 -0.117516 -0.000023 -0.078974 0.237547 0.96816 -0.000002 0 0 0 1 0.657486 -0.72115 0.218299 532.748 0.747677 0.660298 -0.070607 0.00005 -0.093224 0.209641 0.973324 -0.000002 0 0 0 1 0.603649 -0.767981 0.214041 532.748 0.789458 0.613248 -0.026134 -0.000019 -0.11119 0.184752 0.976475 -0.000002 0 0 0 1 0.556485 -0.80503 0.205554 532.748 0.820235 0.571726 0.018523 0.000019 -0.132432 0.158296 0.978471 -0.000002 0 0 0 1 0.517203 -0.832889 0.196968 532.748 0.841515 0.536846 0.060408 -0.000025 -0.156055 0.134507 0.978547 -0.000002 0 0 0 1 - - - - - - - - LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR - - - - - - - - - - - - - - - - 0 0.033333 0.066666 0.1 0.133333 0.166667 0.2 0.233333 0.266667 0.3 0.333333 0.366667 0.4 0.433333 0.466667 0.5 0.533333 0.566667 0.6 0.633333 0.666667 0.7 0.733333 0.766667 0.8 0.833333 0.866667 0.9 0.933333 0.966667 1 1.03333 1.06667 1.1 1.13333 1.16667 1.2 1.23333 1.26667 1.3 1.33333 1.36667 1.4 1.43333 1.46667 1.5 1.53333 1.56667 1.6 1.63333 1.66667 1.7 1.73333 1.76667 1.8 1.83333 1.86667 1.9 1.93333 1.96667 2 2.03333 2.06667 2.1 2.13333 2.16667 2.2 2.23333 2.26667 2.3 2.33333 2.36667 2.4 2.43333 2.46667 2.5 2.53333 2.56667 2.6 2.63333 2.66667 2.7 2.73333 2.76667 2.8 2.83333 2.86667 2.9 2.93333 2.96667 3 3.03333 3.06667 3.1 3.13333 3.16667 3.2 3.23333 3.26667 3.3 3.33333 - - - - - - - CONSTANT - CONSTANT - - - - 0.099612 -0.992857 0.06567 214.572 0.994956 0.100175 0.005319 189.364 -0.011859 0.06481 0.997827 -0.000000 0 0 0 1 0.087659 -0.995243 0.042507 214.572 0.996111 0.087954 0.005134 189.363 -0.008848 0.041891 0.999083 -0.000000 0 0 0 1 0.012528 -0.999665 0.022639 214.572 0.999919 0.012478 -0.002291 189.363 0.002007 0.022666 0.999741 -0.000000 0 0 0 1 0 -1 0 214.572 1 0 0 189.363 0 0 1 -0.000000 0 0 0 1 0.000502 -1 0.000576 214.572 0.999997 0.000501 -0.002317 189.363 0.002316 0.000578 0.999997 -0.000000 0 0 0 1 0.000751 -0.999999 0.000863 214.572 0.999994 0.000748 -0.003467 189.363 0.003467 0.000865 0.999994 -0.000000 0 0 0 1 0.00078 -0.999999 0.000897 214.572 0.999993 0.000778 -0.003602 189.363 0.003601 0.000899 0.999993 -0.000000 0 0 0 1 0.000626 -0.999999 0.00072 214.572 0.999996 0.000624 -0.002893 189.363 0.002892 0.000722 0.999996 -0.000000 0 0 0 1 0.000346 -1 0.000399 214.572 0.999999 0.000347 -0.001603 189.363 0.001603 0.000399 0.999999 -0.000000 0 0 0 1 0 -1 0 214.572 1 0 0 189.363 0 0 1 -0.000000 0 0 0 1 -0.000348 -1 -0.000402 214.572 0.999999 -0.000348 0.001612 189.363 -0.001611 -0.000401 0.999999 -0.000000 0 0 0 1 -0.000625 -1 -0.000723 214.572 0.999996 -0.000627 0.002898 189.363 -0.002899 -0.000721 0.999996 -0.000000 0 0 0 1 -0.000778 -0.999999 -0.000898 214.572 0.999993 -0.00078 0.003601 189.363 -0.003603 -0.000895 0.999993 -0.000000 0 0 0 1 -0.000748 -0.999999 -0.000865 214.572 0.999994 -0.000751 0.003465 189.363 -0.003465 -0.000862 0.999994 -0.000000 0 0 0 1 -0.000497 -1 -0.000575 214.572 0.999997 -0.000499 0.002306 189.363 -0.002307 -0.000574 0.999997 -0.000000 0 0 0 1 0 -1 0 214.572 1 0 0 189.363 0 0 1 -0.000000 0 0 0 1 -0.138293 -0.986714 0.085274 214.572 0.989429 -0.141441 -0.032007 189.363 0.043644 0.079945 0.995843 -0.000000 0 0 0 1 -0.246647 -0.959946 0.132926 214.572 0.968225 -0.249938 -0.008402 189.363 0.041289 0.12663 0.99109 -0.000000 0 0 0 1 -0.33596 -0.929348 0.15311 214.572 0.941364 -0.336674 0.022027 189.363 0.031076 0.151532 0.987964 -0.000000 0 0 0 1 -0.404434 -0.896978 0.178506 214.572 0.913126 -0.406986 0.023763 189.363 0.051334 0.172609 0.983652 -0.000000 0 0 0 1 -0.148506 -0.966402 0.209795 214.572 0.988877 -0.146889 0.023355 189.363 0.008245 0.21093 0.977466 -0.000000 0 0 0 1 0.449508 -0.866437 0.217325 214.572 0.88623 0.46306 0.013089 189.363 -0.111976 0.186716 0.976012 -0.000000 0 0 0 1 0.736266 -0.653687 0.17494 214.572 0.66178 0.749537 0.015529 189.363 -0.141275 0.104339 0.984457 -0.000000 0 0 0 1 0.75428 -0.643924 0.128155 214.572 0.646992 0.762188 0.021682 189.363 -0.11164 0.066561 0.991517 -0.000000 0 0 0 1 0.72232 -0.685118 0.094165 214.572 0.687996 0.72571 0.002589 189.363 -0.07011 0.062915 0.995553 -0.000000 0 0 0 1 0.714382 -0.696681 0.065531 214.572 0.69792 0.716156 0.00537 189.363 -0.050671 0.041898 0.997836 -0.000000 0 0 0 1 0.682351 -0.729387 0.048897 214.572 0.729522 0.68371 0.018392 189.363 -0.046846 0.023122 0.998635 -0.000000 0 0 0 1 0.546643 -0.836067 0.046624 214.572 0.836327 0.54789 0.019298 189.363 -0.04168 0.028444 0.998726 -0.000000 0 0 0 1 0.347758 -0.936081 0.053078 214.572 0.937063 0.348895 0.013617 189.364 -0.031266 0.045002 0.998498 -0.000000 0 0 0 1 0.170955 -0.983343 0.061735 214.572 0.985119 0.171721 0.007284 189.363 -0.017764 0.059571 0.998066 -0.000000 0 0 0 1 0.099612 -0.992857 0.065671 214.572 0.994955 0.100175 0.005318 189.363 -0.011859 0.06481 0.997827 -0.000000 0 0 0 1 0.087657 -0.995243 0.042506 214.572 0.996111 0.087953 0.005134 189.363 -0.008847 0.041891 0.999083 -0.000000 0 0 0 1 0.012527 -0.999665 0.022639 214.572 0.999919 0.012478 -0.002291 189.363 0.002007 0.022666 0.999741 -0.000000 0 0 0 1 0 -1 0 214.572 1 0 0 189.363 0 0 1 -0.000000 0 0 0 1 0.000502 -1 0.000576 214.572 0.999997 0.0005 -0.002317 189.363 0.002316 0.000578 0.999997 -0.000000 0 0 0 1 0.000751 -0.999999 0.000863 214.572 0.999994 0.000748 -0.003467 189.363 0.003467 0.000865 0.999994 -0.000000 0 0 0 1 0.000781 -0.999999 0.000896 214.572 0.999993 0.000778 -0.003602 189.363 0.003601 0.000899 0.999993 -0.000000 0 0 0 1 0.000626 -0.999999 0.00072 214.572 0.999995 0.000624 -0.002892 189.363 0.002892 0.000722 0.999996 -0.000000 0 0 0 1 0.000346 -1 0.000398 214.572 0.999999 0.000347 -0.001603 189.363 0.001603 0.000399 0.999999 -0.000000 0 0 0 1 -0.000002 -1 -0.000002 214.572 1 -0.000002 0.00001 189.363 -0.00001 -0.000002 1 -0.000000 0 0 0 1 -0.000347 -1 -0.000402 214.572 0.999999 -0.000348 0.001612 189.363 -0.001611 -0.000401 0.999999 -0.000000 0 0 0 1 -0.000625 -0.999999 -0.000723 214.572 0.999995 -0.000627 0.002899 189.363 -0.002899 -0.000721 0.999996 -0.000000 0 0 0 1 -0.000778 -0.999999 -0.000898 214.572 0.999993 -0.000781 0.003601 189.363 -0.003603 -0.000895 0.999993 -0.000000 0 0 0 1 -0.000748 -0.999999 -0.000865 214.572 0.999994 -0.000751 0.003464 189.363 -0.003465 -0.000862 0.999994 -0.000000 0 0 0 1 -0.000497 -1 -0.000575 214.572 0.999997 -0.0005 0.002305 189.363 -0.002306 -0.000574 0.999997 -0.000000 0 0 0 1 0 -1 0 214.572 1 0 0 189.363 0 0 1 -0.000000 0 0 0 1 -0.138294 -0.986714 0.085274 214.572 0.989429 -0.141441 -0.032007 189.363 0.043644 0.079945 0.995843 -0.000000 0 0 0 1 -0.246647 -0.959946 0.132926 214.572 0.968225 -0.249938 -0.008402 189.363 0.041289 0.12663 0.99109 -0.000000 0 0 0 1 -0.335959 -0.929349 0.15311 214.572 0.941364 -0.336674 0.022027 189.363 0.031077 0.151532 0.987964 -0.000000 0 0 0 1 -0.404434 -0.896978 0.178506 214.572 0.913126 -0.406986 0.023764 189.363 0.051334 0.172609 0.983652 -0.000000 0 0 0 1 -0.148506 -0.966402 0.209795 214.572 0.988877 -0.146889 0.023355 189.363 0.008245 0.21093 0.977467 -0.000000 0 0 0 1 0.446783 -0.867833 0.217371 214.572 0.887665 0.4603 0.013199 189.363 -0.111511 0.187055 0.976 -0.000000 0 0 0 1 0.736266 -0.653688 0.174939 214.572 0.66178 0.749537 0.01553 189.363 -0.141275 0.104337 0.984457 -0.000000 0 0 0 1 0.754279 -0.643925 0.128155 214.572 0.646992 0.762188 0.021682 189.363 -0.11164 0.066561 0.991517 -0.000000 0 0 0 1 0.722192 -0.685279 0.093975 214.572 0.68815 0.725563 0.002531 189.363 -0.069919 0.062841 0.995571 -0.000000 0 0 0 1 0.714382 -0.69668 0.065531 214.572 0.697919 0.716157 0.00537 189.363 -0.050672 0.041899 0.997836 -0.000000 0 0 0 1 0.682351 -0.729388 0.048897 214.572 0.729522 0.68371 0.018392 189.363 -0.046846 0.023121 0.998635 -0.000000 0 0 0 1 0.546643 -0.836067 0.046624 214.572 0.836327 0.54789 0.019298 189.363 -0.04168 0.028444 0.998726 -0.000000 0 0 0 1 0.347758 -0.936081 0.053078 214.572 0.937063 0.348895 0.013617 189.363 -0.031266 0.045002 0.998498 -0.000000 0 0 0 1 0.170955 -0.983343 0.061735 214.572 0.985119 0.171721 0.007284 189.364 -0.017764 0.059571 0.998066 -0.000000 0 0 0 1 0.099612 -0.992857 0.06567 214.572 0.994956 0.100175 0.005319 189.363 -0.011859 0.06481 0.997827 -0.000000 0 0 0 1 0.087879 -0.995218 0.042643 214.572 0.996091 0.088177 0.005157 189.364 -0.008891 0.042023 0.999077 -0.000000 0 0 0 1 0.012527 -0.999665 0.022639 214.572 0.999919 0.012478 -0.002291 189.363 0.002007 0.022666 0.999741 -0.000000 0 0 0 1 0 -1 0 214.572 1 0 -0.000000 189.363 0.000000 0 1 -0.000000 0 0 0 1 0.000502 -1 0.000576 214.572 0.999997 0.000501 -0.002317 189.363 0.002316 0.000578 0.999997 -0.000000 0 0 0 1 0.000751 -0.999999 0.000863 214.572 0.999994 0.000748 -0.003467 189.363 0.003467 0.000865 0.999994 -0.000000 0 0 0 1 0.000781 -0.999999 0.000896 214.572 0.999993 0.000777 -0.003602 189.364 0.003601 0.000899 0.999993 -0.000000 0 0 0 1 0.000626 -0.999999 0.00072 214.572 0.999995 0.000624 -0.002892 189.364 0.002892 0.000722 0.999996 -0.000000 0 0 0 1 0.000346 -1 0.000399 214.572 0.999999 0.000347 -0.001603 189.363 0.001603 0.000399 0.999999 -0.000000 0 0 0 1 -0.000002 -1 -0.000002 214.572 1 -0.000002 0.00001 189.363 -0.00001 -0.000002 1 -0.000000 0 0 0 1 -0.000347 -1 -0.000402 214.572 0.999999 -0.000348 0.001612 189.363 -0.001611 -0.000401 0.999999 -0.000000 0 0 0 1 -0.000625 -1 -0.000723 214.572 0.999996 -0.000627 0.002898 189.363 -0.002899 -0.000721 0.999996 -0.000000 0 0 0 1 -0.000778 -0.999999 -0.000898 214.572 0.999993 -0.00078 0.003602 189.363 -0.003603 -0.000895 0.999993 -0.000000 0 0 0 1 -0.000748 -0.999999 -0.000865 214.572 0.999994 -0.000751 0.003464 189.363 -0.003465 -0.000862 0.999994 -0.000000 0 0 0 1 -0.000497 -1 -0.000575 214.572 0.999997 -0.0005 0.002305 189.363 -0.002306 -0.000574 0.999997 -0.000000 0 0 0 1 0 -1 0 214.572 1 0 0 189.363 0 0 1 -0.000000 0 0 0 1 -0.137523 -0.986857 0.084857 214.572 0.989536 -0.14066 -0.03213 189.363 0.043644 0.079551 0.995875 -0.000000 0 0 0 1 -0.246647 -0.959946 0.132926 214.572 0.968225 -0.249938 -0.008402 189.363 0.041289 0.12663 0.99109 -0.000000 0 0 0 1 -0.336456 -0.929149 0.153233 214.572 0.941187 -0.337161 0.022154 189.363 0.031079 0.151675 0.987942 -0.000000 0 0 0 1 -0.404434 -0.896978 0.178505 214.572 0.913126 -0.406986 0.023763 189.363 0.051334 0.172608 0.983652 -0.000000 0 0 0 1 -0.148506 -0.966402 0.209795 214.572 0.988877 -0.146889 0.023355 189.363 0.008245 0.21093 0.977466 -0.000000 0 0 0 1 0.446783 -0.867833 0.217371 214.572 0.887665 0.4603 0.013199 189.363 -0.111511 0.187055 0.976 -0.000000 0 0 0 1 0.736007 -0.653914 0.175184 214.572 0.662068 0.749287 0.015314 189.363 -0.141277 0.104713 0.984417 -0.000000 0 0 0 1 0.75428 -0.643924 0.128155 214.572 0.646992 0.762188 0.021682 189.363 -0.11164 0.066561 0.991517 -0.000000 0 0 0 1 0.722192 -0.685279 0.093975 214.572 0.68815 0.725564 0.00253 189.363 -0.069919 0.062841 0.995571 -0.000000 0 0 0 1 0.714382 -0.69668 0.065531 214.572 0.697919 0.716157 0.00537 189.363 -0.050672 0.041899 0.997836 -0.000000 0 0 0 1 0.682351 -0.729388 0.048897 214.572 0.729522 0.68371 0.018391 189.363 -0.046846 0.023122 0.998634 -0.000000 0 0 0 1 0.54768 -0.835388 0.046618 214.572 0.835646 0.548928 0.019319 189.363 -0.041729 0.028376 0.998726 -0.000000 0 0 0 1 0.347754 -0.936082 0.053078 214.572 0.937064 0.348891 0.013617 189.363 -0.031264 0.045002 0.998498 -0.000000 0 0 0 1 0.170955 -0.983343 0.061735 214.572 0.985119 0.171721 0.007284 189.363 -0.017763 0.059571 0.998066 -0.000000 0 0 0 1 0.099612 -0.992857 0.06567 214.572 0.994956 0.100175 0.005318 189.363 -0.011859 0.06481 0.997827 -0.000000 0 0 0 1 0.087879 -0.995218 0.042643 214.572 0.996091 0.088177 0.005157 189.363 -0.008891 0.042023 0.999077 -0.000000 0 0 0 1 0.012528 -0.999665 0.022639 214.572 0.999919 0.012478 -0.002291 189.363 0.002007 0.022666 0.999741 -0.000000 0 0 0 1 0 -1 0 214.572 1 0 -0.000000 189.363 0.000000 0 1 -0.000000 0 0 0 1 0.000502 -1 0.000576 214.572 0.999997 0.000501 -0.002317 189.363 0.002316 0.000578 0.999997 -0.000000 0 0 0 1 0.000751 -0.999999 0.000863 214.572 0.999994 0.000748 -0.003467 189.363 0.003467 0.000865 0.999994 -0.000000 0 0 0 1 0.000781 -0.999999 0.000896 214.572 0.999993 0.000777 -0.003602 189.363 0.003601 0.000899 0.999993 -0.000000 0 0 0 1 0.000628 -0.999999 0.000721 214.572 0.999995 0.000626 -0.002898 189.363 0.002898 0.000723 0.999996 -0.000000 0 0 0 1 0.000346 -1 0.000399 214.572 0.999999 0.000347 -0.001603 189.363 0.001603 0.000399 0.999999 -0.000000 0 0 0 1 -0.000002 -1 -0.000002 214.572 1 -0.000002 0.00001 189.363 -0.00001 -0.000002 1 -0.000000 0 0 0 1 -0.000347 -1 -0.000402 214.572 0.999999 -0.000348 0.001612 189.364 -0.001611 -0.000401 0.999999 -0.000000 0 0 0 1 - - - - - - - - LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR - - - - - - - - - - - - - - - - 0 0.033333 0.066666 0.1 0.133333 0.166667 0.2 0.233333 0.266667 0.3 0.333333 0.366667 0.4 0.433333 0.466667 0.5 0.533333 0.566667 0.6 0.633333 0.666667 0.7 0.733333 0.766667 0.8 0.833333 0.866667 0.9 0.933333 0.966667 1 1.03333 1.06667 1.1 1.13333 1.16667 1.2 1.23333 1.26667 1.3 1.33333 1.36667 1.4 1.43333 1.46667 1.5 1.53333 1.56667 1.6 1.63333 1.66667 1.7 1.73333 1.76667 1.8 1.83333 1.86667 1.9 1.93333 1.96667 2 2.03333 2.06667 2.1 2.13333 2.16667 2.2 2.23333 2.26667 2.3 2.33333 2.36667 2.4 2.43333 2.46667 2.5 2.53333 2.56667 2.6 2.63333 2.66667 2.7 2.73333 2.76667 2.8 2.83333 2.86667 2.9 2.93333 2.96667 3 3.03333 3.06667 3.1 3.13333 3.16667 3.2 3.23333 3.26667 3.3 3.33333 - - - - - - - CONSTANT - CONSTANT - - - - 0.910453 -0.384975 0.402477 179.053 0.30073 -1.01613 -1.53964 1051.53 -0.260873 0.124214 -9.62368 -104.193 0 0 0 1 0.648858 -0.360821 0.61613 175.185 0.271803 -0.962082 0.11372 1031.61 -0.211723 -0.117182 -8.26376 -114.317 0 0 0 1 0.176574 -0.262541 0.926457 165.365 0.242434 -0.502321 1.96218 981.015 -0.044593 -0.38357 -4.01832 -140.021 0 0 0 1 -0.446997 -0.095791 -0.199082 151.879 0.200351 -0.022726 -0.443051 911.534 0.006307 -0.109259 0.234917 -175.322 0 0 0 1 -1.04732 -0.238015 -2.97457 137.097 0.300034 -0.154463 -5.17388 835.378 -0.351485 0.470857 -1.4152 -214.015 0 0 0 1 -1.24046 -0.795655 -3.39659 123.699 0.702861 -0.685794 -6.78413 766.351 -1.04989 0.532245 -8.22715 -249.085 0 0 0 1 -0.908886 -1.32796 -0.435691 113.836 1.21267 -1.00164 -5.80734 715.537 -1.68371 0.084808 -13.7258 -274.902 0 0 0 1 -0.422741 -1.65352 1.01547 110.012 1.44037 -0.904542 -5.41289 695.835 -1.97949 -0.167805 -15.3879 -284.912 0 0 0 1 -0.226803 -1.69631 -2.38748 111.874 1.51666 -0.348406 -4.96641 708.039 -1.67754 0.016921 -14.387 -277.042 0 0 0 1 -0.024014 -1.28152 -7.01882 116.783 1.46741 0.256682 -1.22331 740.217 -1.0967 0.439736 -10.7638 -256.293 0 0 0 1 0.242093 -0.525365 -7.25355 123.77 1.15075 0.341319 3.58182 786.016 -0.426708 0.65148 -4.67334 -226.762 0 0 0 1 0.302598 -0.074413 -3.50626 131.68 0.545299 0.059451 3.96738 837.861 -0.006527 0.372537 0.224563 -193.331 0 0 0 1 -0.009593 -0.023096 -0.516336 139.636 0.023819 0.094143 0.864751 890.011 0.025722 -0.09608 0.702781 -159.703 0 0 0 1 -0.462824 -0.022515 0.780665 146.613 -0.130008 0.508005 -0.894984 935.747 -0.169749 -0.266856 -2.0134 -130.212 0 0 0 1 -0.788106 0.005495 1.7881 151.485 -0.05507 0.872498 -0.486142 967.682 -0.354501 -0.127435 -4.47273 -109.619 0 0 0 1 -0.914162 0.000022 2.34923 153.347 0.002202 0.999986 0.02847 979.888 -0.405341 0.005384 -5.29806 -101.749 0 0 0 1 -0.757911 0.006198 1.67509 145.943 -0.078218 0.869456 -0.607136 967.063 -0.32719 -0.159947 -4.25317 -107.298 0 0 0 1 -0.346132 -0.046239 0.561107 127.141 -0.126635 0.489056 -0.774296 934.5 -0.107804 -0.338599 -1.28929 -121.387 0 0 0 1 0.138864 -0.095234 -1.34655 101.319 0.191241 0.076596 1.91459 889.779 -0.003339 -0.164955 0.93743 -140.736 0 0 0 1 0.32074 -0.281899 -5.52411 73.0169 0.782837 0.006852 3.93697 840.761 -0.311901 0.249606 -1.944 -161.944 0 0 0 1 0.229284 -0.829048 -7.25778 47.3641 1.14371 -0.055379 0.123079 796.333 -0.909124 0.372412 -8.44063 -181.167 0 0 0 1 0.156002 -1.26625 -3.01331 28.3979 1.25128 -0.566724 -4.4632 763.485 -1.39545 0.144582 -13.0871 -195.379 0 0 0 1 0.057507 -1.32112 0.740967 21.1577 1.17195 -1.09284 -5.20293 750.946 -1.59323 0.009318 -14.3655 -200.804 0 0 0 1 -0.391328 -0.870366 -0.123553 27.942 1.19687 -1.10665 -5.4527 763.861 -1.4987 0.134905 -13.1402 -196.653 0 0 0 1 -0.852102 -0.419329 -2.58132 45.8286 0.868525 -0.791206 -6.31404 797.911 -1.1892 0.347741 -9.12847 -185.709 0 0 0 1 -0.987843 -0.051929 -3.15262 71.2863 0.441179 -0.33195 -5.77781 846.375 -0.672368 0.277686 -3.25322 -170.132 0 0 0 1 -0.713768 0.03978 -1.25563 100.105 0.203253 -0.099143 -2.468 901.238 -0.201187 -0.122885 0.321892 -152.499 0 0 0 1 -0.206399 -0.120097 0.592502 129.264 0.189799 -0.319449 1.28125 956.748 -0.006036 -0.466528 -1.13988 -134.658 0 0 0 1 0.299868 -0.302601 0.905288 154.517 0.248662 -0.776829 1.85131 1004.82 -0.079424 -0.391888 -5.49085 -119.207 0 0 0 1 0.683595 -0.36497 0.572369 172.269 0.276896 -1.03805 -0.232361 1038.62 -0.215765 -0.065415 -8.65318 -108.345 0 0 0 1 0.910452 -0.384975 0.402475 179.053 0.30073 -1.01613 -1.53964 1051.53 -0.260875 0.124214 -9.62369 -104.193 0 0 0 1 0.909914 -0.384779 0.381821 179.053 0.300681 -1.01611 -1.53918 1051.53 -0.262803 0.124984 -9.6246 -104.193 0 0 0 1 0.909423 -0.384724 0.36136 179.053 0.30051 -1.01604 -1.53871 1051.53 -0.26469 0.125732 -9.62546 -104.193 0 0 0 1 0.90897 -0.384806 0.340709 179.053 0.300218 -1.01591 -1.53821 1051.53 -0.266572 0.126472 -9.6263 -104.193 0 0 0 1 0.908554 -0.385025 0.319861 179.053 0.299803 -1.01574 -1.53769 1051.53 -0.268449 0.127204 -9.6271 -104.193 0 0 0 1 0.908184 -0.385379 0.299216 179.053 0.299274 -1.01552 -1.53711 1051.53 -0.270285 0.127912 -9.62785 -104.193 0 0 0 1 0.907851 -0.38587 0.278377 179.053 0.298625 -1.01524 -1.53649 1051.53 -0.272117 0.128613 -9.62858 -104.193 0 0 0 1 0.907555 -0.3865 0.257351 179.053 0.297852 -1.01491 -1.53581 1051.53 -0.273943 0.129305 -9.62927 -104.193 0 0 0 1 0.907302 -0.387256 0.236523 179.053 0.296972 -1.01454 -1.53506 1051.53 -0.275731 0.129976 -9.62992 -104.193 0 0 0 1 0.907085 -0.388155 0.215375 179.053 0.295964 -1.01411 -1.53424 1051.53 -0.277524 0.130643 -9.63055 -104.193 0 0 0 1 0.906907 -0.38918 0.194303 179.053 0.294848 -1.01363 -1.53334 1051.53 -0.27929 0.131292 -9.63114 -104.193 0 0 0 1 0.906766 -0.390331 0.173302 179.053 0.293623 -1.01311 -1.53236 1051.53 -0.281029 0.131926 -9.6317 -104.193 0 0 0 1 0.906661 -0.391626 0.151986 179.053 0.292269 -1.01253 -1.53126 1051.53 -0.282773 0.132553 -9.63223 -104.193 0 0 0 1 0.906594 -0.393044 0.130747 179.053 0.290811 -1.0119 -1.53007 1051.53 -0.28449 0.133166 -9.63273 -104.193 0 0 0 1 0.906561 -0.394581 0.109588 179.053 0.289249 -1.01122 -1.52878 1051.53 -0.286181 0.133763 -9.6332 -104.193 0 0 0 1 0.906563 -0.396255 0.088246 179.053 0.287566 -1.01049 -1.52736 1051.53 -0.287867 0.13435 -9.63365 -104.193 0 0 0 1 0.906598 -0.398067 0.06672 179.053 0.285761 -1.0097 -1.52581 1051.53 -0.289547 0.134929 -9.63406 -104.193 0 0 0 1 0.906667 -0.399981 0.045413 179.053 0.283867 -1.00887 -1.52416 1051.53 -0.291192 0.13549 -9.63445 -104.193 0 0 0 1 0.906767 -0.402032 0.023926 179.053 0.281851 -1.00798 -1.52234 1051.53 -0.292831 0.136042 -9.63481 -104.193 0 0 0 1 0.9069 -0.404221 0.00226 179.053 0.279714 -1.00703 -1.52037 1051.53 -0.294465 0.136584 -9.63515 -104.193 0 0 0 1 0.907062 -0.406505 -0.01918 179.053 0.277494 -1.00603 -1.51828 1051.53 -0.296063 0.137109 -9.63547 -104.193 0 0 0 1 0.907254 -0.408924 -0.040798 179.053 0.275153 -1.00498 -1.51601 1051.53 -0.297656 0.137625 -9.63576 -104.193 0 0 0 1 0.907475 -0.411479 -0.062588 179.053 0.272689 -1.00387 -1.51356 1051.53 -0.299244 0.138132 -9.63603 -104.193 0 0 0 1 0.907722 -0.414123 -0.084144 179.053 0.270148 -1.00272 -1.51097 1051.53 -0.300797 0.138621 -9.63627 -104.193 0 0 0 1 0.907998 -0.416917 -0.106008 179.053 0.267468 -1.00149 -1.50817 1051.53 -0.302354 0.139105 -9.63649 -104.193 0 0 0 1 0.908297 -0.419813 -0.127768 179.053 0.264699 -1.00021 -1.50521 1051.53 -0.303888 0.139574 -9.63669 -104.193 0 0 0 1 0.908619 -0.422806 -0.149421 179.053 0.261844 -0.998889 -1.50206 1051.53 -0.305396 0.140029 -9.63687 -104.193 0 0 0 1 0.908967 -0.425951 -0.171374 179.053 0.258846 -0.997488 -1.49869 1051.53 -0.306909 0.140478 -9.63703 -104.193 0 0 0 1 0.909336 -0.429191 -0.193217 179.053 0.255764 -0.996038 -1.49514 1051.53 -0.308399 0.140914 -9.63717 -104.193 0 0 0 1 0.909723 -0.432522 -0.214943 179.053 0.252597 -0.994536 -1.4914 1051.53 -0.309865 0.141335 -9.63729 -104.193 0 0 0 1 0.910132 -0.435984 -0.236826 179.053 0.249308 -0.992964 -1.48742 1051.53 -0.311325 0.141748 -9.63739 -104.193 0 0 0 1 0.910559 -0.439557 -0.258726 179.053 0.245916 -0.99133 -1.48323 1051.53 -0.312771 0.142149 -9.63747 -104.193 0 0 0 1 0.911002 -0.443237 -0.280638 179.053 0.242422 -0.989634 -1.47881 1051.53 -0.314204 0.14254 -9.63754 -104.193 0 0 0 1 0.911464 -0.44705 -0.302696 179.053 0.238804 -0.987862 -1.47413 1051.53 -0.315631 0.142922 -9.63758 -104.193 0 0 0 1 0.911938 -0.450944 -0.324624 179.053 0.235108 -0.986038 -1.46925 1051.53 -0.317035 0.143291 -9.63762 -104.193 0 0 0 1 0.912421 -0.454918 -0.346419 179.053 0.231335 -0.984158 -1.46415 1051.53 -0.318416 0.143647 -9.63764 -104.193 0 0 0 1 0.912919 -0.45902 -0.368351 179.053 0.227438 -0.982201 -1.45878 1051.53 -0.319793 0.143994 -9.63764 -104.193 0 0 0 1 0.91343 -0.46325 -0.390413 179.053 0.223417 -0.980163 -1.45312 1051.53 -0.321164 0.144332 -9.63762 -104.193 0 0 0 1 0.913944 -0.467526 -0.412196 179.053 0.219348 -0.978083 -1.44728 1051.53 -0.322505 0.144657 -9.63759 -104.193 0 0 0 1 0.914471 -0.471957 -0.43424 179.053 0.21513 -0.975905 -1.4411 1051.53 -0.323849 0.144973 -9.63755 -104.193 0 0 0 1 0.915001 -0.476456 -0.456129 179.053 0.21084 -0.973671 -1.4347 1051.53 -0.325172 0.145279 -9.6375 -104.193 0 0 0 1 0.915532 -0.481023 -0.477864 179.053 0.206478 -0.971379 -1.42808 1051.53 -0.326473 0.145572 -9.63743 -104.193 0 0 0 1 0.916069 -0.485713 -0.499711 179.053 0.201994 -0.969 -1.42115 1051.53 -0.327769 0.145857 -9.63734 -104.193 0 0 0 1 0.916611 -0.490525 -0.521665 179.053 0.197386 -0.966531 -1.41388 1051.53 -0.32906 0.146132 -9.63725 -104.193 0 0 0 1 0.917146 -0.495369 -0.543316 179.053 0.192738 -0.964018 -1.40643 1051.53 -0.330322 0.146395 -9.63714 -104.193 0 0 0 1 0.917682 -0.500332 -0.565062 179.053 0.187968 -0.961413 -1.39864 1051.53 -0.33158 0.146648 -9.63702 -104.193 0 0 0 1 0.918215 -0.505382 -0.586767 179.053 0.183104 -0.95873 -1.39057 1051.53 -0.332824 0.146893 -9.6369 -104.193 0 0 0 1 0.918743 -0.510519 -0.608425 179.053 0.178146 -0.955968 -1.38221 1051.53 -0.334056 0.147127 -9.63676 -104.193 0 0 0 1 0.919267 -0.515774 -0.630165 179.053 0.173062 -0.953109 -1.37349 1051.53 -0.335282 0.147353 -9.6366 -104.193 0 0 0 1 0.91978 -0.521078 -0.651713 179.053 0.167919 -0.950186 -1.36454 1051.53 -0.336488 0.147567 -9.63644 -104.193 0 0 0 1 0.920281 -0.526431 -0.673067 179.053 0.162715 -0.947199 -1.35533 1051.53 -0.337676 0.147771 -9.63628 -104.193 0 0 0 1 0.920772 -0.531896 -0.694485 179.053 0.157388 -0.944111 -1.34576 1051.53 -0.338857 0.147965 -9.6361 -104.193 0 0 0 1 0.921251 -0.537438 -0.715831 179.053 0.151971 -0.940938 -1.33589 1051.53 -0.340027 0.148151 -9.63591 -104.193 0 0 0 1 0.921715 -0.543056 -0.7371 179.053 0.146464 -0.937679 -1.32571 1051.53 -0.341185 0.148327 -9.63571 -104.193 0 0 0 1 0.922165 -0.548784 -0.758417 179.053 0.140833 -0.934312 -1.31513 1051.53 -0.342337 0.148495 -9.63551 -104.193 0 0 0 1 0.922595 -0.554548 -0.779512 179.053 0.135148 -0.930876 -1.30432 1051.53 -0.343471 0.148652 -9.63529 -104.193 0 0 0 1 0.923001 -0.560346 -0.80038 179.053 0.129411 -0.927375 -1.29325 1051.53 -0.344585 0.148799 -9.63507 -104.193 0 0 0 1 0.923389 -0.566248 -0.821279 179.053 0.123551 -0.92376 -1.28179 1051.53 -0.345695 0.148936 -9.63485 -104.193 0 0 0 1 0.923756 -0.572254 -0.842202 179.053 0.117569 -0.920031 -1.26994 1051.53 -0.3468 0.149067 -9.63461 -104.193 0 0 0 1 0.924093 -0.57825 -0.862751 179.053 0.111574 -0.916255 -1.25791 1051.53 -0.34788 0.149187 -9.63437 -104.193 0 0 0 1 0.924406 -0.584345 -0.883313 179.053 0.105458 -0.912361 -1.24548 1051.53 -0.348955 0.149298 -9.63412 -104.193 0 0 0 1 0.92469 -0.5905 -0.903748 179.053 0.099258 -0.908373 -1.23272 1051.53 -0.350019 0.1494 -9.63387 -104.193 0 0 0 1 0.924944 -0.596714 -0.924055 179.053 0.092974 -0.904288 -1.21964 1051.53 -0.351072 0.149494 -9.63361 -104.193 0 0 0 1 0.925167 -0.603023 -0.94435 179.053 0.086569 -0.900079 -1.20614 1051.53 -0.35212 0.149579 -9.63334 -104.193 0 0 0 1 0.925355 -0.609347 -0.964372 179.053 0.080121 -0.895796 -1.19238 1051.53 -0.353149 0.149656 -9.63307 -104.193 0 0 0 1 0.925508 -0.615683 -0.98412 179.053 0.073635 -0.891442 -1.17839 1051.53 -0.354162 0.149722 -9.63279 -104.193 0 0 0 1 0.925623 -0.622109 -1.00384 179.053 0.067027 -0.88696 -1.16397 1051.53 -0.355171 0.14978 -9.63251 -104.193 0 0 0 1 0.9257 -0.628582 -1.02339 179.053 0.060341 -0.882376 -1.14922 1051.53 -0.356168 0.149831 -9.63222 -104.193 0 0 0 1 0.925736 -0.6351 -1.04278 179.053 0.053577 -0.877689 -1.13414 1051.53 -0.357155 0.149872 -9.63193 -104.193 0 0 0 1 0.92573 -0.641702 -1.0621 179.053 0.046693 -0.872868 -1.11862 1051.53 -0.358137 0.149905 -9.63163 -104.193 0 0 0 1 0.925679 -0.648305 -1.08113 179.053 0.039776 -0.867971 -1.10287 1051.53 -0.359102 0.14993 -9.63133 -104.193 0 0 0 1 - - - - - - - - LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR - - - - - - - - - - - - - - - - 0 0.033333 0.066666 0.1 0.133333 0.166667 0.2 0.233333 0.266667 0.3 0.333333 0.366667 0.4 0.433333 0.466667 0.5 0.533333 0.566667 0.6 0.633333 0.666667 0.7 0.733333 0.766667 0.8 0.833333 0.866667 0.9 0.933333 0.966667 1 1.03333 1.06667 1.1 1.13333 1.16667 1.2 1.23333 1.26667 1.3 1.33333 1.36667 1.4 1.43333 1.46667 1.5 1.53333 1.56667 1.6 1.63333 1.66667 1.7 1.73333 1.76667 1.8 1.83333 1.86667 1.9 1.93333 1.96667 2 2.03333 2.06667 2.1 2.13333 2.16667 2.2 2.23333 2.26667 2.3 2.33333 2.36667 2.4 2.43333 2.46667 2.5 2.53333 2.56667 2.6 2.63333 2.66667 2.7 2.73333 2.76667 2.8 2.83333 2.86667 2.9 2.93333 2.96667 3 3.03333 3.06667 3.1 3.13333 3.16667 3.2 3.23333 3.26667 3.3 3.33333 - - - - - - - CONSTANT - CONSTANT - - - - 17.8219 17.8219 17.8212 17.822 17.8219 17.8219 17.8219 17.8219 17.8219 17.8219 17.8219 17.8219 17.8222 17.8219 17.8219 17.8219 17.8219 17.822 17.8219 17.8219 17.8219 17.8219 17.8219 17.8219 17.8219 17.822 17.8219 17.822 17.822 17.8219 17.8219 17.8219 17.8219 17.8219 17.822 17.8219 17.8219 17.8219 17.8219 17.822 17.8219 17.8219 17.8219 17.8219 17.8219 17.8219 17.8219 17.8219 17.822 17.8219 17.8219 17.8219 17.8218 17.8219 17.822 17.822 17.822 17.8219 17.8219 17.8219 17.822 17.822 17.8219 17.8219 17.8219 17.822 17.8219 17.8219 17.822 17.8219 17.822 17.8219 17.822 17.8219 17.8219 17.8219 17.8219 17.8219 17.8219 17.8219 17.8219 17.822 17.8218 17.8219 17.822 17.8219 17.8219 17.8219 17.822 17.822 17.8219 17.8219 17.822 17.8219 17.8219 17.8219 17.822 17.8219 17.822 17.822 17.8219 - - - - - - - - LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR - - - - - - - - - - - - - - - - 0 0.033333 0.066666 0.1 0.133333 0.166667 0.2 0.233333 0.266667 0.3 0.333333 0.366667 0.4 0.433333 0.466667 0.5 0.533333 0.566667 0.6 0.633333 0.666667 0.7 0.733333 0.766667 0.8 0.833333 0.866667 0.9 0.933333 0.966667 1 1.03333 1.06667 1.1 1.13333 1.16667 1.2 1.23333 1.26667 1.3 1.33333 1.36667 1.4 1.43333 1.46667 1.5 1.53333 1.56667 1.6 1.63333 1.66667 1.7 1.73333 1.76667 1.8 1.83333 1.86667 1.9 1.93333 1.96667 2 2.03333 2.06667 2.1 2.13333 2.16667 2.2 2.23333 2.26667 2.3 2.33333 2.36667 2.4 2.43333 2.46667 2.5 2.53333 2.56667 2.6 2.63333 2.66667 2.7 2.73333 2.76667 2.8 2.83333 2.86667 2.9 2.93333 2.96667 3 3.03333 3.06667 3.1 3.13333 3.16667 3.2 3.23333 3.26667 3.3 3.33333 - - - - - - - CONSTANT - CONSTANT - - - - -0.572789 0.597854 -0.560788 -7.49618 -0.237486 -0.77583 -0.584541 0.150702 -0.784546 -0.201639 0.586369 -42.5129 0 0 0 1 -0.512791 0.557768 -0.65264 -4.9504 -0.191467 -0.815353 -0.546389 0.954039 -0.83689 -0.155225 0.5249 -42.8762 0 0 0 1 -0.443505 0.503851 -0.74124 -2.16319 -0.146367 -0.85664 -0.494718 1.65894 -0.88424 -0.110917 0.453671 -43.0879 0 0 0 1 -0.355888 0.440258 -0.824328 0.749369 -0.097529 -0.894759 -0.435768 2.16455 -0.929425 -0.074688 0.361372 -43.1149 0 0 0 1 -0.249878 0.374596 -0.892882 3.59685 -0.055648 -0.926167 -0.372987 2.41695 -0.966677 -0.043514 0.252274 -42.9585 0 0 0 1 -0.140081 0.315259 -0.93861 6.13424 -0.032472 -0.94891 -0.313872 2.43312 -0.989607 -0.013489 0.143161 -42.6693 0 0 0 1 -0.032108 0.270291 -0.962243 8.23147 -0.022609 -0.96269 -0.269662 2.28578 -0.999229 0.013097 0.037021 -42.3225 0 0 0 1 0.067761 0.24978 -0.965929 9.71818 -0.017837 -0.967696 -0.251488 2.07189 -0.997542 0.034271 -0.061117 -42.0165 0 0 0 1 0.154202 0.261794 -0.952725 10.5017 -0.006425 -0.963972 -0.265924 1.8776 -0.988018 0.047128 -0.146964 -41.836 0 0 0 1 0.228523 0.303513 -0.925017 10.733 0.023392 -0.951598 -0.306455 1.72046 -0.973257 0.048394 -0.224562 -41.7835 0 0 0 1 0.289937 0.370105 -0.882587 10.5497 0.092262 -0.928712 -0.35914 1.57418 -0.952588 0.022698 -0.303415 -41.8353 0 0 0 1 0.331445 0.448931 -0.829822 10.1035 0.199008 -0.893016 -0.403632 1.40355 -0.922247 -0.031359 -0.385326 -41.9509 0 0 0 1 0.350178 0.525773 -0.775202 9.53502 0.322586 -0.844669 -0.427169 1.18191 -0.879383 -0.100485 -0.465391 -42.0897 0 0 0 1 0.352565 0.589058 -0.727123 8.99086 0.440005 -0.790117 -0.426743 0.913387 -0.825889 -0.169483 -0.537756 -42.2151 0 0 0 1 0.360295 0.632547 -0.685617 8.62262 0.568938 -0.731462 -0.375864 0.637063 -0.739255 -0.254652 -0.623422 -42.296 0 0 0 1 0.350776 0.631512 -0.691483 7.49615 0.635482 -0.702884 -0.319557 0.138858 -0.687837 -0.327332 -0.647869 -42.5129 0 0 0 1 0.313092 0.570139 -0.759549 5.10735 0.58831 -0.744267 -0.316162 -0.634871 -0.745563 -0.347863 -0.568443 -42.8584 0 0 0 1 0.239548 0.499578 -0.832489 2.46547 0.502942 -0.79729 -0.333734 -1.32781 -0.830461 -0.338749 -0.442248 -43.0731 0 0 0 1 0.152266 0.421025 -0.894177 -0.337461 0.420919 -0.846201 -0.326759 -1.83924 -0.894227 -0.326622 -0.306065 -43.1218 0 0 0 1 0.064575 0.340098 -0.93817 -3.13877 0.361036 -0.884409 -0.295759 -2.10874 -0.930313 -0.319615 -0.179898 -42.9955 0 0 0 1 -0.033119 0.268366 -0.962747 -5.71688 0.310936 -0.912707 -0.265113 -2.14107 -0.949854 -0.308133 -0.053216 -42.7274 0 0 0 1 -0.137414 0.212879 -0.967368 -7.97344 0.269121 -0.93187 -0.243295 -1.99887 -0.953253 -0.29377 0.070761 -42.3718 0 0 0 1 -0.24021 0.183202 -0.953276 -9.71957 0.232921 -0.942463 -0.239816 -1.78216 -0.942362 -0.279645 0.183717 -42.0162 0 0 0 1 -0.335155 0.195154 -0.92173 -10.7469 0.194693 -0.942851 -0.270419 -1.5935 -0.921827 -0.270086 0.278006 -41.7734 0 0 0 1 -0.417684 0.247556 -0.874217 -11.094 0.145312 -0.931581 -0.333227 -1.4688 -0.896897 -0.266218 0.353134 -41.6876 0 0 0 1 -0.483553 0.321946 -0.813957 -10.9803 0.082467 -0.90901 -0.408535 -1.364 -0.871421 -0.264673 0.413005 -41.7216 0 0 0 1 -0.530811 0.398394 -0.748012 -10.638 0.011857 -0.879042 -0.476596 -1.22744 -0.847407 -0.261852 0.461881 -41.8149 0 0 0 1 -0.564452 0.461919 -0.684124 -10.2898 -0.059621 -0.849422 -0.524336 -1.03873 -0.82331 -0.255174 0.506997 -41.9077 0 0 0 1 -0.583609 0.522403 -0.621689 -9.86259 -0.131457 -0.816275 -0.562508 -0.807541 -0.801324 -0.24656 0.545058 -42.0162 0 0 0 1 -0.583432 0.578052 -0.570494 -9.00432 -0.197755 -0.782408 -0.590534 -0.440545 -0.787718 -0.231718 0.570795 -42.2151 0 0 0 1 -0.572789 0.597854 -0.560788 -7.49605 -0.237486 -0.77583 -0.584541 0.150858 -0.784546 -0.201639 0.586369 -42.5129 0 0 0 1 -0.536299 0.575482 -0.617417 -5.25917 -0.223396 -0.802208 -0.553676 0.924002 -0.813927 -0.159008 0.558784 -42.84 0 0 0 1 -0.458826 0.529557 -0.713476 -2.56419 -0.168412 -0.840264 -0.515358 1.68637 -0.87242 -0.116302 0.474719 -43.0649 0 0 0 1 -0.358737 0.466174 -0.808696 0.414791 -0.106448 -0.881142 -0.460715 2.26115 -0.927349 -0.079192 0.365721 -43.1148 0 0 0 1 -0.251509 0.394542 -0.883787 3.41759 -0.060061 -0.917743 -0.392608 2.53951 -0.96599 -0.045662 0.254517 -42.9666 0 0 0 1 -0.139572 0.326135 -0.934963 6.11307 -0.033564 -0.94522 -0.324703 2.52554 -0.989643 -0.013938 0.142873 -42.6673 0 0 0 1 -0.030436 0.273021 -0.961526 8.29357 -0.022469 -0.961916 -0.272421 2.31897 -0.999284 0.013313 0.035411 -42.3087 0 0 0 1 0.067756 0.24978 -0.96593 9.7178 -0.017836 -0.967696 -0.251488 2.07178 -0.997542 0.034269 -0.061112 -42.0166 0 0 0 1 0.154033 0.264757 -0.951934 10.4883 -0.006603 -0.963134 -0.26894 1.88225 -0.988044 0.047711 -0.146606 -41.8391 0 0 0 1 0.233197 0.311562 -0.921167 10.9101 0.024079 -0.948843 -0.314826 1.74376 -0.972132 0.051235 -0.228769 -41.7367 0 0 0 1 0.299281 0.382766 -0.874025 10.9977 0.094378 -0.923394 -0.37207 1.63683 -0.949486 0.028863 -0.31248 -41.7176 0 0 0 1 0.343239 0.465435 -0.815817 10.7821 0.203425 -0.884807 -0.419207 1.51592 -0.916955 -0.022069 -0.398381 -41.7781 0 0 0 1 0.360391 0.543569 -0.758057 10.2887 0.32919 -0.834494 -0.441877 1.32824 -0.872785 -0.090296 -0.479681 -41.908 0 0 0 1 0.357977 0.601746 -0.713971 9.55691 0.444762 -0.782215 -0.436264 1.03896 -0.821 -0.161374 -0.547647 -42.088 0 0 0 1 0.360295 0.632547 -0.685618 8.62231 0.568938 -0.731462 -0.375864 0.636994 -0.739255 -0.254652 -0.623422 -42.296 0 0 0 1 0.350776 0.631512 -0.691483 7.49625 0.635482 -0.702884 -0.319557 0.138976 -0.687837 -0.327332 -0.647869 -42.5129 0 0 0 1 0.302091 0.607135 -0.734934 5.93416 0.600079 -0.720151 -0.348263 -0.467158 -0.740706 -0.335811 -0.58188 -42.7544 0 0 0 1 0.229185 0.561787 -0.794903 3.81109 0.518743 -0.7615 -0.388617 -1.11646 -0.823638 -0.323285 -0.465947 -42.9817 0 0 0 1 0.148169 0.496529 -0.855281 1.238 0.435311 -0.809285 -0.394414 -1.67752 -0.888004 -0.313873 -0.336055 -43.1124 0 0 0 1 0.06608 0.415773 -0.907065 -1.61692 0.371416 -0.853976 -0.364382 -2.03684 -0.926112 -0.31282 -0.210856 -43.0835 0 0 0 1 -0.028237 0.330789 -0.943282 -4.50191 0.315947 -0.892328 -0.322378 -2.14077 -0.948357 -0.30713 -0.079315 -42.8724 0 0 0 1 -0.132321 0.249663 -0.959249 -7.26758 0.270184 -0.922028 -0.277245 -2.02245 -0.953673 -0.295859 0.054549 -42.4973 0 0 0 1 -0.240211 0.183108 -0.953294 -9.72104 0.232907 -0.942491 -0.239721 -1.78204 -0.942365 -0.279612 0.183749 -42.016 0 0 0 1 -0.330315 0.2003 -0.922373 -10.4882 0.194345 -0.941851 -0.274128 -1.5927 -0.923646 -0.269807 0.272181 -41.8391 0 0 0 1 -0.402134 0.263554 -0.876828 -10.2585 0.143552 -0.92768 -0.344675 -1.43993 -0.904257 -0.264476 0.335219 -41.9021 0 0 0 1 -0.466716 0.335164 -0.818439 -10.1292 0.081621 -0.905137 -0.417212 -1.29834 -0.880633 -0.261522 0.395085 -41.9387 0 0 0 1 -0.518074 0.407986 -0.751762 -9.99894 0.011358 -0.87555 -0.482994 -1.15183 -0.85526 -0.258765 0.448966 -41.9747 0 0 0 1 -0.553593 0.476762 -0.682812 -9.76617 -0.06327 -0.841621 -0.53635 -0.96859 -0.83038 -0.253718 0.49608 -42.0347 0 0 0 1 -0.572278 0.534415 -0.622012 -9.3372 -0.134017 -0.809246 -0.571979 -0.713063 -0.809035 -0.24397 0.534734 -42.1381 0 0 0 1 -0.577145 0.57623 -0.578672 -8.61839 -0.193946 -0.785043 -0.588296 -0.348351 -0.793277 -0.227301 0.564842 -42.2968 0 0 0 1 -0.572789 0.597854 -0.560788 -7.49605 -0.237486 -0.77583 -0.584541 0.150736 -0.784546 -0.201639 0.586369 -42.5129 0 0 0 1 -0.54061 0.591633 -0.598089 -5.77094 -0.235213 -0.788878 -0.567755 0.818521 -0.807722 -0.166256 0.565636 -42.7759 0 0 0 1 -0.468845 0.557132 -0.685411 -3.42944 -0.185589 -0.820797 -0.54023 1.55389 -0.863563 -0.126079 0.488225 -43.0092 0 0 0 1 -0.374639 0.499781 -0.780938 -0.646012 -0.123349 -0.86166 -0.492266 2.16013 -0.918929 -0.088094 0.384459 -43.1167 0 0 0 1 -0.271619 0.428992 -0.861505 2.30935 -0.073862 -0.901809 -0.425775 2.49282 -0.959566 -0.052015 0.276634 -43.0429 0 0 0 1 -0.158445 0.354904 -0.921378 5.17251 -0.04223 -0.934748 -0.352792 2.52478 -0.986464 -0.016989 0.163094 -42.7916 0 0 0 1 -0.042594 0.289944 -0.956095 7.72178 -0.026126 -0.95696 -0.289043 2.33093 -0.998751 0.012667 0.048336 -42.4162 0 0 0 1 0.067818 0.249777 -0.965926 9.72082 -0.017852 -0.967695 -0.251489 2.07173 -0.997538 0.0343 -0.061168 -42.0159 0 0 0 1 0.162346 0.25868 -0.952223 10.852 -0.006054 -0.964746 -0.263114 1.88209 -0.986715 0.048481 -0.155057 -41.7463 0 0 0 1 0.240141 0.314378 -0.918422 11.2058 0.024532 -0.94777 -0.31801 1.76627 -0.970428 0.053836 -0.235311 -41.6574 0 0 0 1 0.300495 0.392642 -0.869215 11.0792 0.095537 -0.919141 -0.382166 1.6649 -0.948987 0.031796 -0.31371 -41.6951 0 0 0 1 0.343239 0.465435 -0.815817 10.7821 0.203425 -0.884807 -0.419207 1.51586 -0.916954 -0.022069 -0.398381 -41.7781 0 0 0 1 0.366673 0.534372 -0.761575 10.4383 0.326979 -0.840387 -0.432242 1.33685 -0.870997 -0.090528 -0.482876 -41.8708 0 0 0 1 0.365498 0.600373 -0.711311 9.87145 0.445361 -0.783831 -0.432739 1.09831 -0.817353 -0.158626 -0.553871 -42.0141 0 0 0 1 0.362701 0.638811 -0.678505 8.94933 0.571537 -0.72756 -0.379476 0.71573 -0.736066 -0.250154 -0.628991 -42.227 0 0 0 1 0.350776 0.631512 -0.691483 7.49625 0.635482 -0.702884 -0.319557 0.138976 -0.687837 -0.327332 -0.647869 -42.5129 0 0 0 1 0.304968 0.588211 -0.749001 5.3769 0.593589 -0.732415 -0.333496 -0.616897 -0.744746 -0.342893 -0.572519 -42.8258 0 0 0 1 0.229792 0.522613 -0.821018 2.71001 0.5066 -0.784527 -0.357594 -1.39795 -0.830995 -0.333755 -0.445034 -43.0559 0 0 0 1 0.142699 0.439415 -0.886878 -0.291796 0.420715 -0.837998 -0.347503 -1.99557 -0.895899 -0.323534 -0.30445 -43.1149 0 0 0 1 0.055914 0.349156 -0.935394 -3.31221 0.358844 -0.881288 -0.307509 -2.28133 -0.931721 -0.318467 -0.174571 -42.973 0 0 0 1 -0.041156 0.26716 -0.962773 -6.05558 0.308393 -0.913145 -0.266571 -2.26114 -0.950368 -0.307883 -0.044809 -42.6741 0 0 0 1 -0.142549 0.206936 -0.967914 -8.27663 0.268355 -0.933192 -0.239035 -2.03878 -0.952715 -0.293819 0.077494 -42.3115 0 0 0 1 -0.239601 0.183252 -0.95342 -9.71086 0.233163 -0.942424 -0.239734 -1.78345 -0.942457 -0.279743 0.183078 -42.018 0 0 0 1 -0.330315 0.2003 -0.922373 -10.4882 0.194345 -0.941851 -0.274128 -1.5927 -0.923646 -0.269807 0.272181 -41.8391 0 0 0 1 -0.413792 0.247158 -0.876179 -10.9101 0.145636 -0.932074 -0.331705 -1.45419 -0.898647 -0.26486 0.34969 -41.7367 0 0 0 1 -0.48278 0.313052 -0.817877 -10.9973 0.085291 -0.912677 -0.399683 -1.34727 -0.871579 -0.262717 0.413921 -41.7177 0 0 0 1 -0.533248 0.387452 -0.752016 -10.782 0.015505 -0.884325 -0.466615 -1.22625 -0.845817 -0.260482 0.465557 -41.7781 0 0 0 1 -0.564288 0.46153 -0.684521 -10.2923 -0.059169 -0.849618 -0.524069 -1.04002 -0.823455 -0.255223 0.506737 -41.907 0 0 0 1 -0.577447 0.52648 -0.623997 -9.55685 -0.131459 -0.814287 -0.56538 -0.749169 -0.805775 -0.244447 0.539418 -42.088 0 0 0 1 -0.577779 0.573816 -0.580436 -8.62226 -0.192657 -0.786936 -0.586186 -0.347348 -0.79313 -0.226861 0.565225 -42.296 0 0 0 1 -0.572789 0.597854 -0.560788 -7.4961 -0.237486 -0.77583 -0.584541 0.150731 -0.784546 -0.201639 0.586369 -42.5129 0 0 0 1 -0.54242 0.592003 -0.596082 -5.88008 -0.23609 -0.788352 -0.568122 0.794983 -0.806252 -0.167432 0.567384 -42.7614 0 0 0 1 -0.471641 0.557826 -0.682924 -3.58366 -0.186685 -0.820085 -0.540933 1.52702 -0.861802 -0.127635 0.490924 -42.9975 0 0 0 1 -0.377612 0.500626 -0.778963 -0.795873 -0.124218 -0.861029 -0.493152 2.14193 -0.917594 -0.089458 0.387322 -43.1149 0 0 0 1 -0.274012 0.429749 -0.860368 2.19624 -0.074345 -0.901397 -0.426564 2.48553 -0.958849 -0.052919 0.278944 -43.0492 0 0 0 1 -0.159839 0.3554 -0.920947 5.10976 -0.042399 -0.934552 -0.353292 2.5241 -0.986232 -0.017422 0.164447 -42.7991 0 0 0 1 -0.043021 0.290109 -0.956026 7.70322 -0.026148 -0.956911 -0.289202 2.33158 -0.998732 0.012556 0.048753 -42.4195 0 0 0 1 0.067176 0.249799 -0.965965 9.71101 -0.017685 -0.967701 -0.251478 2.07316 -0.997584 0.033976 -0.060589 -42.018 0 0 0 1 0.162346 0.25868 -0.952223 10.852 -0.006054 -0.964746 -0.263114 1.88209 -0.986715 0.048481 -0.155057 -41.7463 0 0 0 1 0.240141 0.314378 -0.918422 11.2058 0.024532 -0.94777 -0.31801 1.76626 -0.970428 0.053836 -0.235311 -41.6574 0 0 0 1 0.300495 0.392642 -0.869215 11.0792 0.095537 -0.919141 -0.382166 1.66485 -0.948987 0.031796 -0.31371 -41.6951 0 0 0 1 - - - - - - - - LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR - - - - - - - - - - - - - - - - 0 0.033333 0.066666 0.1 0.133333 0.166667 0.2 0.233333 0.266667 0.3 0.333333 0.366667 0.4 0.433333 0.466667 0.5 0.533333 0.566667 0.6 0.633333 0.666667 0.7 0.733333 0.766667 0.8 0.833333 0.866667 0.9 0.933333 0.966667 1 1.03333 1.06667 1.1 1.13333 1.16667 1.2 1.23333 1.26667 1.3 1.33333 1.36667 1.4 1.43333 1.46667 1.5 1.53333 1.56667 1.6 1.63333 1.66667 1.7 1.73333 1.76667 1.8 1.83333 1.86667 1.9 1.93333 1.96667 2 2.03333 2.06667 2.1 2.13333 2.16667 2.2 2.23333 2.26667 2.3 2.33333 2.36667 2.4 2.43333 2.46667 2.5 2.53333 2.56667 2.6 2.63333 2.66667 2.7 2.73333 2.76667 2.8 2.83333 2.86667 2.9 2.93333 2.96667 3 3.03333 3.06667 3.1 3.13333 3.16667 3.2 3.23333 3.26667 3.3 3.33333 - - - - - - - CONSTANT - CONSTANT - - - - 0.64804 -0.018001 0.848896 164.819 -0.09659 -0.613235 -0.343087 1034.98 -0.048948 0.00796 -7.34032 -108.759 0 0 0 1 0.656517 0.007333 0.749682 141.481 -0.102239 -0.615508 -0.275965 1038.58 -0.039231 0.008114 -7.34715 -98.0347 0 0 0 1 0.682301 0.073692 0.514012 82.2215 -0.11831 -0.616522 -0.124094 1047.72 -0.041799 0.003064 -7.339 -70.8029 0 0 0 1 0.717314 0.168393 0.181694 0.838244 -0.142236 -0.609289 0.051401 1060.28 -0.056065 -0.009069 -7.27903 -33.4048 0 0 0 1 0.752725 0.276748 -0.189861 -88.3645 -0.172545 -0.587926 0.197859 1074.05 -0.079253 -0.028849 -7.1365 7.58657 0 0 0 1 0.778108 0.381366 -0.52047 -169.216 -0.209457 -0.551553 0.28572 1086.52 -0.103972 -0.052968 -6.89867 44.7404 0 0 0 1 0.783537 0.47051 -0.741321 -228.735 -0.256375 -0.50286 0.317539 1095.7 -0.120426 -0.075095 -6.55789 72.0912 0 0 0 1 0.757945 0.532609 -0.789307 -251.813 -0.31555 -0.446647 0.308344 1099.26 -0.117534 -0.085388 -6.11161 82.6963 0 0 0 1 0.798195 0.448327 -0.631484 -234.502 -0.27975 -0.194042 0.255794 1094.14 -0.112384 -0.058792 -5.235 75.1773 0 0 0 1 0.676066 0.275449 -0.365861 -188.86 -0.190801 0.075896 0.163344 1080.62 -0.076032 -0.020676 -3.723 55.3536 0 0 0 1 0.402554 0.094977 -0.119771 -123.898 -0.086325 0.319106 0.061928 1061.38 -0.030351 0.005925 -1.78632 27.1389 0 0 0 1 0.036574 -0.027275 0.010304 -50.3598 0.004625 0.524503 -0.006158 1039.61 -0.001092 0.011755 0.307728 -4.801 0 0 0 1 -0.355513 -0.062483 0.002982 23.6118 0.065264 0.695474 -0.009634 1017.7 0.000852 0.001949 2.3579 -36.929 0 0 0 1 -0.696279 -0.020381 -0.105265 88.4842 0.091849 0.83859 0.05422 998.49 -0.018958 -0.012758 4.1194 -65.105 0 0 0 1 -0.918607 0.051681 -0.231225 133.782 0.092998 0.947138 0.142078 985.075 -0.042385 -0.0238 5.32877 -84.7793 0 0 0 1 -0.994708 0.089786 -0.289329 151.095 0.088251 0.995579 0.186299 979.948 -0.052587 -0.027568 5.78539 -92.2986 0 0 0 1 -0.943775 0.069923 -0.255595 136.891 0.070791 0.944416 0.15545 981.346 -0.024686 -0.024451 4.96231 -86.8323 0 0 0 1 -0.805891 0.027381 -0.135856 100.825 0.03086 0.810641 0.083189 985.006 -0.010684 -0.017664 2.87393 -72.9523 0 0 0 1 -0.604723 -0.011517 0.009239 51.2948 -0.009327 0.61798 -0.002276 990.267 -0.026707 -0.017681 0.004749 -53.8905 0 0 0 1 -0.371264 -0.026295 0.125963 -2.99447 -0.031836 0.394075 -0.088879 996.445 -0.075524 -0.035336 -3.14164 -32.9972 0 0 0 1 -0.138919 -0.011172 0.18994 -52.2013 -0.030698 0.16749 -0.175175 1002.71 -0.143527 -0.074589 -5.99397 -14.0598 0 0 0 1 0.06056 0.02427 0.215626 -88.5822 -0.013321 -0.034262 -0.261386 1008.52 -0.208836 -0.13074 -8.10184 -0.058611 0 0 0 1 0.200202 0.059163 0.228844 -102.47 0.004847 -0.18565 -0.324744 1013.04 -0.2412 -0.182995 -8.90439 5.28623 0 0 0 1 0.301951 0.076214 0.249632 -90.9856 0.018313 -0.283175 -0.302889 1016.77 -0.226128 -0.156518 -8.83996 0.38606 0 0 0 1 0.393842 0.083038 0.330383 -60.7067 0.020058 -0.370295 -0.283405 1020.57 -0.204634 -0.128785 -8.66626 -12.5332 0 0 0 1 0.473964 0.077405 0.446932 -17.6111 0.008781 -0.446181 -0.274759 1024.29 -0.177432 -0.100947 -8.4164 -30.9209 0 0 0 1 0.53898 0.060834 0.572268 31.1745 -0.01302 -0.508251 -0.28172 1027.67 -0.147034 -0.074535 -8.13086 -51.7363 0 0 0 1 0.5891 0.036891 0.688435 80.5354 -0.041117 -0.556748 -0.302265 1030.63 -0.115492 -0.049747 -7.83962 -72.7972 0 0 0 1 0.623025 0.011638 0.778393 123.283 -0.06875 -0.589977 -0.327562 1032.94 -0.086609 -0.027666 -7.586 -91.0365 0 0 0 1 0.642058 -0.008585 0.833797 153.335 -0.089234 -0.608453 -0.345347 1034.44 -0.06356 -0.008537 -7.40749 -103.859 0 0 0 1 0.648041 -0.018001 0.848895 164.82 -0.096593 -0.613236 -0.343085 1034.98 -0.048948 0.007959 -7.34031 -108.759 0 0 0 1 0.64804 -0.01801 0.848879 164.82 -0.096602 -0.613235 -0.343095 1034.98 -0.048948 0.007959 -7.34031 -108.759 0 0 0 1 0.648038 -0.018019 0.848839 164.82 -0.096612 -0.613235 -0.343104 1034.98 -0.048952 0.00796 -7.34032 -108.759 0 0 0 1 0.648036 -0.018028 0.848778 164.82 -0.096621 -0.613235 -0.343112 1034.98 -0.048956 0.00796 -7.34032 -108.759 0 0 0 1 0.648034 -0.018037 0.848693 164.82 -0.096631 -0.613234 -0.343111 1034.98 -0.048964 0.007959 -7.34033 -108.759 0 0 0 1 0.648032 -0.018046 0.848588 164.82 -0.096641 -0.613234 -0.343108 1034.98 -0.048972 0.007957 -7.34035 -108.759 0 0 0 1 0.64803 -0.018055 0.848458 164.82 -0.09665 -0.613234 -0.343102 1034.98 -0.048984 0.007956 -7.34036 -108.759 0 0 0 1 0.648027 -0.018065 0.848309 164.82 -0.09666 -0.613234 -0.343097 1034.98 -0.048997 0.007954 -7.34038 -108.759 0 0 0 1 0.648025 -0.018074 0.848134 164.82 -0.09667 -0.613233 -0.343088 1034.98 -0.049012 0.007954 -7.3404 -108.759 0 0 0 1 0.648022 -0.018083 0.847937 164.82 -0.096679 -0.613233 -0.343077 1034.98 -0.049029 0.007952 -7.34042 -108.759 0 0 0 1 0.648019 -0.018092 0.847721 164.82 -0.096689 -0.613233 -0.343057 1034.98 -0.049049 0.007949 -7.34045 -108.759 0 0 0 1 0.648016 -0.018101 0.847484 164.82 -0.096698 -0.613233 -0.343035 1034.98 -0.049069 0.007947 -7.34048 -108.759 0 0 0 1 0.648013 -0.01811 0.847223 164.82 -0.096708 -0.613232 -0.343012 1034.98 -0.049092 0.007945 -7.34051 -108.759 0 0 0 1 0.64801 -0.018119 0.846944 164.82 -0.096718 -0.613232 -0.342988 1034.98 -0.049117 0.007942 -7.34054 -108.759 0 0 0 1 0.648006 -0.018128 0.846642 164.82 -0.096727 -0.613232 -0.34296 1034.98 -0.049144 0.00794 -7.34058 -108.759 0 0 0 1 0.648002 -0.018137 0.846317 164.82 -0.096737 -0.613232 -0.34293 1034.98 -0.049173 0.007938 -7.34062 -108.759 0 0 0 1 0.647999 -0.018146 0.845973 164.82 -0.096747 -0.613232 -0.342894 1034.98 -0.049203 0.007933 -7.34066 -108.759 0 0 0 1 0.647995 -0.018155 0.84561 164.82 -0.096757 -0.613231 -0.342855 1034.98 -0.049236 0.00793 -7.3407 -108.759 0 0 0 1 0.647991 -0.018164 0.845222 164.82 -0.096766 -0.613231 -0.34282 1034.98 -0.04927 0.007928 -7.34075 -108.759 0 0 0 1 0.647987 -0.018174 0.844815 164.82 -0.096776 -0.613231 -0.34277 1034.98 -0.049306 0.007923 -7.3408 -108.759 0 0 0 1 0.647982 -0.018183 0.844388 164.82 -0.096786 -0.613231 -0.342733 1034.98 -0.049344 0.00792 -7.34085 -108.759 0 0 0 1 0.647978 -0.018192 0.843942 164.82 -0.096795 -0.61323 -0.342687 1034.98 -0.049383 0.007916 -7.3409 -108.759 0 0 0 1 0.647973 -0.018201 0.843472 164.82 -0.096805 -0.61323 -0.342631 1034.98 -0.049426 0.007911 -7.34096 -108.759 0 0 0 1 0.647968 -0.01821 0.842987 164.82 -0.096815 -0.61323 -0.342581 1034.98 -0.049468 0.007908 -7.34102 -108.759 0 0 0 1 0.647963 -0.018219 0.842475 164.82 -0.096824 -0.61323 -0.342522 1034.98 -0.049514 0.007903 -7.34108 -108.759 0 0 0 1 0.647958 -0.018228 0.841949 164.82 -0.096834 -0.61323 -0.342461 1034.98 -0.049561 0.007898 -7.34114 -108.759 0 0 0 1 0.647953 -0.018237 0.841405 164.82 -0.096844 -0.613229 -0.3424 1034.98 -0.04961 0.007893 -7.34121 -108.759 0 0 0 1 0.647948 -0.018246 0.840834 164.82 -0.096854 -0.613229 -0.342336 1034.98 -0.049661 0.007888 -7.34127 -108.759 0 0 0 1 0.647942 -0.018256 0.840245 164.82 -0.096863 -0.613229 -0.342263 1034.98 -0.049713 0.007882 -7.34135 -108.759 0 0 0 1 0.647937 -0.018265 0.839643 164.82 -0.096872 -0.613229 -0.342196 1034.98 -0.049767 0.007877 -7.34142 -108.759 0 0 0 1 0.647931 -0.018274 0.839019 164.82 -0.096883 -0.613229 -0.342121 1034.98 -0.049823 0.00787 -7.34149 -108.759 0 0 0 1 0.647925 -0.018283 0.838376 164.82 -0.096891 -0.613228 -0.342043 1034.98 -0.049881 0.007864 -7.34157 -108.759 0 0 0 1 0.647919 -0.018292 0.83771 164.82 -0.096902 -0.613228 -0.34197 1034.98 -0.04994 0.00786 -7.34165 -108.759 0 0 0 1 0.647913 -0.018301 0.837024 164.82 -0.096912 -0.613228 -0.341882 1034.98 -0.050001 0.007852 -7.34173 -108.759 0 0 0 1 0.647907 -0.01831 0.836324 164.82 -0.096922 -0.613228 -0.341799 1034.98 -0.050064 0.007846 -7.34181 -108.759 0 0 0 1 0.6479 -0.018319 0.835607 164.82 -0.096931 -0.613228 -0.341715 1034.98 -0.050128 0.00784 -7.3419 -108.759 0 0 0 1 0.647894 -0.018328 0.834869 164.82 -0.096941 -0.613227 -0.341623 1034.98 -0.050194 0.007832 -7.34199 -108.759 0 0 0 1 0.647887 -0.018337 0.834109 164.82 -0.096951 -0.613227 -0.341534 1034.98 -0.050262 0.007827 -7.34208 -108.759 0 0 0 1 0.64788 -0.018346 0.833337 164.82 -0.096961 -0.613227 -0.341439 1034.98 -0.050331 0.007819 -7.34217 -108.759 0 0 0 1 0.647873 -0.018356 0.832539 164.82 -0.09697 -0.613227 -0.341341 1034.98 -0.050402 0.007812 -7.34227 -108.759 0 0 0 1 0.647866 -0.018365 0.831728 164.82 -0.09698 -0.613227 -0.341242 1034.98 -0.050475 0.007805 -7.34236 -108.759 0 0 0 1 0.647859 -0.018374 0.830905 164.82 -0.09699 -0.613227 -0.341142 1034.98 -0.050549 0.007797 -7.34246 -108.759 0 0 0 1 0.647851 -0.018383 0.830059 164.82 -0.097 -0.613226 -0.341033 1034.98 -0.050624 0.007788 -7.34256 -108.759 0 0 0 1 0.647844 -0.018392 0.829187 164.82 -0.097009 -0.613226 -0.340921 1034.98 -0.050702 0.00778 -7.34266 -108.759 0 0 0 1 0.647836 -0.018401 0.828312 164.82 -0.097018 -0.613226 -0.340816 1034.98 -0.05078 0.007772 -7.34277 -108.759 0 0 0 1 0.647829 -0.01841 0.827411 164.82 -0.097028 -0.613226 -0.340702 1034.98 -0.050861 0.007764 -7.34288 -108.759 0 0 0 1 0.647821 -0.018419 0.826496 164.82 -0.097038 -0.613226 -0.340593 1034.98 -0.050943 0.007757 -7.34299 -108.759 0 0 0 1 0.647813 -0.018428 0.825563 164.82 -0.097048 -0.613226 -0.340469 1034.98 -0.051026 0.007747 -7.34309 -108.759 0 0 0 1 0.647804 -0.018436 0.824607 164.82 -0.097058 -0.613225 -0.34035 1034.98 -0.051112 0.007738 -7.34321 -108.759 0 0 0 1 0.647796 -0.018446 0.823636 164.82 -0.097067 -0.613225 -0.340229 1034.98 -0.051199 0.00773 -7.34332 -108.759 0 0 0 1 0.647788 -0.018455 0.822658 164.82 -0.097077 -0.613225 -0.340101 1034.98 -0.051287 0.00772 -7.34344 -108.759 0 0 0 1 0.647779 -0.018464 0.821656 164.82 -0.097087 -0.613225 -0.339979 1034.98 -0.051377 0.007712 -7.34356 -108.759 0 0 0 1 0.64777 -0.018473 0.820639 164.82 -0.097097 -0.613225 -0.339848 1034.98 -0.051468 0.007701 -7.34368 -108.759 0 0 0 1 0.647762 -0.018482 0.819607 164.82 -0.097106 -0.613225 -0.339714 1034.98 -0.05156 0.007692 -7.3438 -108.759 0 0 0 1 0.647753 -0.018492 0.818549 164.82 -0.097116 -0.613224 -0.33958 1034.98 -0.051655 0.007682 -7.34392 -108.759 0 0 0 1 0.647744 -0.018501 0.817481 164.82 -0.097125 -0.613224 -0.339443 1034.98 -0.05175 0.007672 -7.34405 -108.759 0 0 0 1 0.647734 -0.01851 0.816405 164.82 -0.097135 -0.613224 -0.339307 1034.98 -0.051847 0.007663 -7.34417 -108.759 0 0 0 1 0.647725 -0.018519 0.815306 164.82 -0.097145 -0.613224 -0.339169 1034.98 -0.051945 0.007653 -7.3443 -108.759 0 0 0 1 0.647716 -0.018528 0.814186 164.82 -0.097154 -0.613224 -0.33902 1034.98 -0.052046 0.007642 -7.34443 -108.759 0 0 0 1 0.647706 -0.018537 0.813062 164.82 -0.097164 -0.613224 -0.338872 1034.98 -0.052147 0.007631 -7.34456 -108.759 0 0 0 1 0.647696 -0.018546 0.811914 164.82 -0.097174 -0.613223 -0.338729 1034.98 -0.05225 0.007622 -7.3447 -108.759 0 0 0 1 0.647686 -0.018555 0.810752 164.82 -0.097183 -0.613223 -0.338577 1034.98 -0.052354 0.007611 -7.34483 -108.759 0 0 0 1 0.647676 -0.018564 0.809576 164.82 -0.097193 -0.613223 -0.338425 1034.98 -0.052459 0.0076 -7.34497 -108.759 0 0 0 1 0.647666 -0.018573 0.808378 164.82 -0.097203 -0.613223 -0.33827 1034.98 -0.052566 0.007589 -7.34511 -108.759 0 0 0 1 0.647656 -0.018582 0.807172 164.82 -0.097211 -0.613223 -0.338107 1034.98 -0.052674 0.007577 -7.34525 -108.759 0 0 0 1 0.647646 -0.018591 0.805955 164.82 -0.097222 -0.613223 -0.337951 1034.98 -0.052784 0.007566 -7.34539 -108.759 0 0 0 1 0.647635 -0.0186 0.80472 164.82 -0.097231 -0.613223 -0.337786 1034.98 -0.052894 0.007554 -7.34553 -108.759 0 0 0 1 0.647625 -0.018609 0.803468 164.82 -0.097241 -0.613223 -0.337627 1034.98 -0.053007 0.007543 -7.34567 -108.759 0 0 0 1 0.647614 -0.018618 0.802204 164.82 -0.097251 -0.613222 -0.33746 1034.98 -0.053119 0.007531 -7.34582 -108.759 0 0 0 1 0.647603 -0.018627 0.800913 164.82 -0.09726 -0.613222 -0.337289 1034.98 -0.053235 0.007519 -7.34597 -108.759 0 0 0 1 0.647592 -0.018636 0.799623 164.82 -0.09727 -0.613222 -0.337112 1034.98 -0.053351 0.007506 -7.34612 -108.759 0 0 0 1 - - - - - - - - LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR - - - - - - - - - - - - - - - - 0 0.033333 0.066666 0.1 0.133333 0.166667 0.2 0.233333 0.266667 0.3 0.333333 0.366667 0.4 0.433333 0.466667 0.5 0.533333 0.566667 0.6 0.633333 0.666667 0.7 0.733333 0.766667 0.8 0.833333 0.866667 0.9 0.933333 0.966667 1 1.03333 1.06667 1.1 1.13333 1.16667 1.2 1.23333 1.26667 1.3 1.33333 1.36667 1.4 1.43333 1.46667 1.5 1.53333 1.56667 1.6 1.63333 1.66667 1.7 1.73333 1.76667 1.8 1.83333 1.86667 1.9 1.93333 1.96667 2 2.03333 2.06667 2.1 2.13333 2.16667 2.2 2.23333 2.26667 2.3 2.33333 2.36667 2.4 2.43333 2.46667 2.5 2.53333 2.56667 2.6 2.63333 2.66667 2.7 2.73333 2.76667 2.8 2.83333 2.86667 2.9 2.93333 2.96667 3 3.03333 3.06667 3.1 3.13333 3.16667 3.2 3.23333 3.26667 3.3 3.33333 - - - - - - - CONSTANT - CONSTANT - - - - 1 0 -0.000000 17.8219 0 1 0 0.000007 0 0 1 -0.000002 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.000017 0 0 1 0.000002 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.000023 0 0 1 0.000000 0 0 0 1 1 0 -0.000000 17.822 0 1 0 0.000001 0 0 1 -0.000000 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.000012 0 0 1 0.000000 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.000000 0 0 1 -0.000000 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.000002 0 0 1 0.000000 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 0.000003 0 0 1 0 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 0.000032 0 0 1 0 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 0.000000 0 0 1 0 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.00001 0 0 1 0.000000 0 0 0 1 1 0 -0.000000 17.8217 0 1 0 0.000016 0 0 1 -0.000009 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.000012 0 0 1 -0.000005 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.000009 0 0 1 0.000003 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.000021 0 0 1 -0.000003 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 0.000003 0 0 1 -0.000000 0 0 0 1 1 0 -0.000000 17.822 0 1 0 -0.000003 0 0 1 0.000003 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.000000 0 0 1 -0.000000 0 0 0 1 1 0 -0.000000 17.822 0 1 0 0.00003 0 0 1 0.002975 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.000035 0 0 1 0.000004 0 0 0 1 1 0 -0.000000 17.8221 0 1 0 0.000065 0 0 1 -0.000005 0 0 0 1 1 0 -0.000000 17.8223 0 1 0 0.000247 0 0 1 -0.000009 0 0 0 1 1 0 -0.000000 17.8221 0 1 0 0.000002 0 0 1 -0.000002 0 0 0 1 1 0 -0.000000 17.8218 0 1 0 -0.000024 0 0 1 0.000001 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.000016 0 0 1 0.000001 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 0.000021 0 0 1 0.000000 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.000023 0 0 1 0.000001 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 0.000000 0 0 1 0.000001 0 0 0 1 1 0 -0.000000 17.822 0 1 0 0.000000 0 0 1 0 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 0.000016 0 0 1 -0.000002 0 0 0 1 1 0 -0.000000 17.822 0 1 0 0.000002 0 0 1 -0.000000 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 0.000023 0 0 1 -0.000000 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.000000 0 0 1 -0.000000 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 0.000031 0 0 1 -0.000001 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 0.000000 0 0 1 -0.000000 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.000002 0 0 1 0.000000 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 0.000006 0 0 1 0 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.000003 0 0 1 0.000000 0 0 0 1 1 0 -0.000000 17.822 0 1 0 0.000002 0 0 1 -0.000000 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 0.000000 0 0 1 -0.000000 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.000014 0 0 1 0.000002 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.000002 0 0 1 0.000001 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 0.000009 0 0 1 0.000001 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.000011 0 0 1 0.000001 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 0.00001 0 0 1 0.000000 0 0 0 1 1 0 -0.000000 17.822 0 1 0 0.000013 0 0 1 0.000000 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.000011 0 0 1 -0.000001 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 0.000009 0 0 1 0.000000 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 0.000014 0 0 1 -0.000000 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 0.000007 0 0 1 -0.000001 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.000002 0 0 1 0.000000 0 0 0 1 1 0 -0.000000 17.822 0 1 0 0.000004 0 0 1 -0.000000 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 0.000009 0 0 1 0 0 0 0 1 1 0 -0.000000 17.822 0 1 0 -0.000016 0 0 1 0.000000 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 0.000000 0 0 1 -0.000000 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.000008 0 0 1 0.000000 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 0.000027 0 0 1 -0.000001 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.000015 0 0 1 0.000001 0 0 0 1 1 0 -0.000000 17.822 0 1 0 0.00001 0 0 1 -0.000002 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 0.000009 0 0 1 0.000001 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 0.000001 0 0 1 -0.000002 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.000006 0 0 1 0.000000 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.000018 0 0 1 -0.000000 0 0 0 1 1 0 -0.000000 17.822 0 1 0 0.000018 0 0 1 -0.000000 0 0 0 1 1 0 -0.000000 17.822 0 1 0 -0.000007 0 0 1 0.000000 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.000027 0 0 1 0.000000 0 0 0 1 1 0 -0.000000 17.822 0 1 0 0.000012 0 0 1 -0.000000 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 0.000000 0 0 1 0.000000 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.000009 0 0 1 0.000000 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.000005 0 0 1 -0.000000 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.000014 0 0 1 0 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 0.000000 0 0 1 0.000002 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.000001 0 0 1 -0.000000 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 0.00002 0 0 1 0 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.000012 0 0 1 0.000000 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 0.000014 0 0 1 0.000003 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.00001 0 0 1 0.000000 0 0 0 1 1 0 -0.000000 17.822 0 1 0 0.000003 0 0 1 -0.000000 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 0.000013 0 0 1 0.000002 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.000013 0 0 1 -0.000000 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.000003 0 0 1 -0.000000 0 0 0 1 1 0 -0.000000 17.822 0 1 0 -0.000000 0 0 1 -0.000000 0 0 0 1 1 0 -0.000000 17.822 0 1 0 -0.000007 0 0 1 0 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.00001 0 0 1 0.000000 0 0 0 1 1 0 -0.000000 17.822 0 1 0 0.000005 0 0 1 0.000000 0 0 0 1 1 0 -0.000000 17.822 0 1 0 -0.000007 0 0 1 -0.000000 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.000016 0 0 1 -0.000000 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.000005 0 0 1 0.000000 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 0.000012 0 0 1 -0.000002 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.000002 0 0 1 -0.000001 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 0.000004 0 0 1 0.000001 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.000002 0 0 1 0.000000 0 0 0 1 1 0 -0.000000 17.822 0 1 0 0.000027 0 0 1 -0.000000 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 0.000013 0 0 1 -0.000001 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.000008 0 0 1 0.000000 0 0 0 1 1 0 -0.000000 17.822 0 1 0 0.000004 0 0 1 -0.000000 0 0 0 1 1 0 -0.000000 17.822 0 1 0 0.000007 0 0 1 -0.000000 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 0.000008 0 0 1 0 0 0 0 1 1 0 -0.000000 17.822 0 1 0 0.000006 0 0 1 0 0 0 0 1 1 0 -0.000000 17.822 0 1 0 0.000004 0 0 1 0.000000 0 0 0 1 1 0 -0.000000 17.8219 0 1 0 -0.00001 0 0 1 -0.000001 0 0 0 1 - - - - - - - - LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR - - - - - - - - - - - - - - - - 0 0.033333 0.066666 0.1 0.133333 0.166667 0.2 0.233333 0.266667 0.3 0.333333 0.366667 0.4 0.433333 0.466667 0.5 0.533333 0.566667 0.6 0.633333 0.666667 0.7 0.733333 0.766667 0.8 0.833333 0.866667 0.9 0.933333 0.966667 1 1.03333 1.06667 1.1 1.13333 1.16667 1.2 1.23333 1.26667 1.3 1.33333 1.36667 1.4 1.43333 1.46667 1.5 1.53333 1.56667 1.6 1.63333 1.66667 1.7 1.73333 1.76667 1.8 1.83333 1.86667 1.9 1.93333 1.96667 2 2.03333 2.06667 2.1 2.13333 2.16667 2.2 2.23333 2.26667 2.3 2.33333 2.36667 2.4 2.43333 2.46667 2.5 2.53333 2.56667 2.6 2.63333 2.66667 2.7 2.73333 2.76667 2.8 2.83333 2.86667 2.9 2.93333 2.96667 3 3.03333 3.06667 3.1 3.13333 3.16667 3.2 3.23333 3.26667 3.3 3.33333 - - - - - - - CONSTANT - CONSTANT - - - - 0.698734 0.399124 -0.593692 175.071 -0.715347 0.381718 -0.585295 -0.000136 -0.006981 0.833661 0.552232 0.000015 0 0 0 1 0.695512 0.275759 -0.663491 175.071 -0.69796 0.478588 -0.532735 0.000048 0.170632 0.833613 0.525331 -0.000057 0 0 0 1 0.6565 0.187725 -0.730594 175.071 -0.684863 0.554303 -0.47298 0.000058 0.316181 0.810868 0.492466 -0.000107 0 0 0 1 0.602214 0.104774 -0.79143 175.071 -0.671152 0.603278 -0.430827 0.00001 0.432313 0.790619 0.433621 -0.00003 0 0 0 1 0.538038 0.016446 -0.84276 175.071 -0.661104 0.628495 -0.4098 0.000028 0.52293 0.77764 0.349027 -0.000058 0 0 0 1 0.461371 -0.0502 -0.885786 175.071 -0.681088 0.619771 -0.389876 0.00007 0.568556 0.783176 0.251754 -0.000087 0 0 0 1 0.380154 -0.096674 -0.919857 175.071 -0.743342 0.55987 -0.366045 -0.000093 0.550387 0.822921 0.140975 0.000028 0 0 0 1 0.308595 -0.136916 -0.941288 175.071 -0.832982 0.438887 -0.336926 0.000048 0.45925 0.88805 0.02139 -0.000033 0 0 0 1 0.260956 -0.190635 -0.946341 175.071 -0.913067 0.269499 -0.30607 -0.000081 0.313386 0.943943 -0.103735 -0.000035 0 0 0 1 0.251001 -0.266512 -0.930575 175.071 -0.956476 0.079532 -0.280765 -0.000007 0.148838 0.960545 -0.23495 0.000014 0 0 0 1 0.307424 -0.354534 -0.88306 175.071 -0.951573 -0.115511 -0.284899 -0.000028 -0.000997 0.927881 -0.372876 -0.000026 0 0 0 1 0.432559 -0.416693 -0.799537 175.071 -0.893718 -0.315209 -0.319235 -0.000083 -0.118998 0.852649 -0.508753 -0.000077 0 0 0 1 0.59208 -0.420681 -0.687363 175.071 -0.782253 -0.505027 -0.36473 -0.000032 -0.193702 0.753642 -0.628095 -0.000088 0 0 0 1 0.739536 -0.365691 -0.565116 175.071 -0.635593 -0.655776 -0.407405 0.000028 -0.221605 0.660475 -0.717401 -0.000033 0 0 0 1 0.870314 -0.275507 -0.408228 175.071 -0.457857 -0.757989 -0.464564 0.000009 -0.181442 0.591226 -0.785831 0.000015 0 0 0 1 0.927365 -0.205947 -0.312379 175.071 -0.34642 -0.788069 -0.508862 0.000027 -0.141378 0.580115 -0.802171 -0.000013 0 0 0 1 0.895425 -0.238091 -0.3762 175.071 -0.416481 -0.746585 -0.518801 -0.000079 -0.157344 0.621227 -0.767672 0.000035 0 0 0 1 0.821139 -0.282984 -0.495632 175.071 -0.543625 -0.652247 -0.528247 -0.000131 -0.173789 0.703202 -0.689423 0.000034 0 0 0 1 0.749463 -0.291655 -0.594342 175.071 -0.644682 -0.52576 -0.554942 -0.00002 -0.15063 0.799071 -0.582063 -0.000033 0 0 0 1 0.708028 -0.268615 -0.653101 175.071 -0.699992 -0.389164 -0.598802 -0.000019 -0.093316 0.881134 -0.463567 0.000033 0 0 0 1 0.684363 -0.2236 -0.69401 175.071 -0.728533 -0.248561 -0.638323 -0.000074 -0.029775 0.942455 -0.333006 -0.000038 0 0 0 1 0.67613 -0.166062 -0.717824 175.071 -0.736195 -0.113363 -0.667208 -0.000105 0.029422 0.979577 -0.198902 0.000034 0 0 0 1 0.676039 -0.107765 -0.728942 175.071 -0.733115 0.001313 -0.680103 -0.000067 0.074248 0.994176 -0.078116 -0.000106 0 0 0 1 0.683266 -0.047472 -0.728625 175.071 -0.723324 0.092321 -0.684309 -0.000095 0.099753 0.994597 0.028742 -0.000046 0 0 0 1 0.699049 0.021024 -0.714765 175.071 -0.707473 0.165686 -0.687044 -0.000096 0.103982 0.985955 0.130696 -0.000027 0 0 0 1 0.715992 0.094634 -0.691664 175.071 -0.692368 0.223053 -0.686202 -0.000066 0.08934 0.970202 0.225226 0.000058 0 0 0 1 0.727742 0.16909 -0.66468 175.071 -0.683052 0.266156 -0.680148 -0.000052 0.061901 0.948984 0.30919 -0.000003 0 0 0 1 0.73109 0.242514 -0.637726 175.071 -0.68166 0.299495 -0.667564 0.000059 0.029101 0.922762 0.38427 0.000046 0 0 0 1 0.725469 0.308735 -0.615124 175.071 -0.688254 0.326426 -0.647883 -0.00009 0.000768 0.89338 0.449301 -0.000063 0 0 0 1 0.713398 0.36249 -0.59972 175.071 -0.70062 0.351885 -0.620733 0.000032 -0.013977 0.863005 0.505002 -0.000082 0 0 0 1 0.698734 0.399124 -0.593692 175.071 -0.715347 0.381718 -0.585294 0.000034 -0.006982 0.833661 0.552232 -0.000003 0 0 0 1 0.700541 0.349583 -0.622121 175.071 -0.70777 0.4517 -0.543166 -0.000099 0.091131 0.820828 0.563858 0.000019 0 0 0 1 0.681221 0.243063 -0.690549 175.071 -0.690142 0.52789 -0.495011 -0.000025 0.244215 0.813789 0.527358 -0.000045 0 0 0 1 0.630861 0.136306 -0.763829 175.071 -0.675544 0.580723 -0.454314 -0.000049 0.381647 0.802609 0.458437 0.000017 0 0 0 1 0.564689 0.036524 -0.824495 175.071 -0.664908 0.611943 -0.42828 -0.000039 0.488902 0.790057 0.369843 -0.000024 0 0 0 1 0.478483 -0.041114 -0.877134 175.071 -0.682935 0.610468 -0.40116 -0.000011 0.551956 0.790973 0.26402 -0.000078 0 0 0 1 0.385372 -0.094665 -0.917893 175.071 -0.743821 0.556813 -0.369715 0.000038 0.546094 0.825226 0.144166 -0.000102 0 0 0 1 0.307959 -0.137456 -0.941417 175.071 -0.833202 0.438708 -0.336615 0.000035 0.459277 0.888054 0.020575 -0.000018 0 0 0 1 0.260616 -0.190939 -0.946373 175.071 -0.913177 0.269401 -0.305828 0.000064 0.313348 0.94391 -0.104151 -0.000044 0 0 0 1 0.251042 -0.267059 -0.930407 175.071 -0.956618 0.078364 -0.280607 -0.000102 0.14785 0.960489 -0.235802 0.00005 0 0 0 1 0.307584 -0.354372 -0.883071 175.071 -0.951521 -0.115455 -0.285093 -0.000076 -0.000925 0.92795 -0.372704 -0.000052 0 0 0 1 0.432699 -0.416548 -0.799537 175.071 -0.893662 -0.31515 -0.31945 -0.000011 -0.118908 0.852742 -0.508618 -0.00004 0 0 0 1 0.59309 -0.420453 -0.686632 175.071 -0.781419 -0.506062 -0.365082 -0.000046 -0.193978 0.753074 -0.628691 -0.000014 0 0 0 1 0.739533 -0.365694 -0.565118 175.071 -0.635596 -0.655774 -0.407404 -0.000017 -0.221604 0.660476 -0.717399 -0.000069 0 0 0 1 0.870313 -0.275508 -0.408228 175.071 -0.457858 -0.757989 -0.464564 0.000131 -0.181441 0.591227 -0.785831 0.000055 0 0 0 1 0.927365 -0.205947 -0.31238 175.071 -0.34642 -0.788069 -0.508862 0.000062 -0.141378 0.580115 -0.802171 0.000074 0 0 0 1 0.895425 -0.23809 -0.3762 175.071 -0.41648 -0.746586 -0.518801 0.000054 -0.157345 0.621227 -0.767672 0.000012 0 0 0 1 0.821139 -0.282983 -0.495632 175.071 -0.543625 -0.652248 -0.528247 -0.000021 -0.17379 0.703202 -0.689423 0.000014 0 0 0 1 0.749464 -0.291653 -0.594341 175.071 -0.644681 -0.525761 -0.554943 0.000026 -0.150631 0.79907 -0.582063 -0.000012 0 0 0 1 0.708029 -0.268613 -0.653101 175.071 -0.699991 -0.389166 -0.598802 -0.000087 -0.093318 0.881134 -0.463569 0.000095 0 0 0 1 0.684364 -0.2236 -0.69401 175.071 -0.728533 -0.248562 -0.638324 -0.000127 -0.029775 0.942454 -0.333006 0.000024 0 0 0 1 0.676137 -0.166432 -0.717732 175.071 -0.736201 -0.114145 -0.667068 0.000008 0.029095 0.979424 -0.199705 -0.000021 0 0 0 1 0.67604 -0.107762 -0.728943 175.071 -0.733115 0.001313 -0.680103 -0.000035 0.074247 0.994176 -0.078114 -0.000106 0 0 0 1 0.683266 -0.047472 -0.728625 175.071 -0.723324 0.09232 -0.68431 0.000062 0.099752 0.994597 0.028742 -0.000000 0 0 0 1 0.699149 0.021446 -0.714654 175.071 -0.707374 0.166115 -0.687042 -0.000125 0.10398 0.985873 0.13131 0.000076 0 0 0 1 0.715992 0.094633 -0.691664 175.071 -0.692368 0.223051 -0.686203 -0.000059 0.089338 0.970202 0.225224 -0.000022 0 0 0 1 0.727742 0.16909 -0.664681 175.071 -0.683052 0.266156 -0.680148 -0.00009 0.061902 0.948984 0.30919 -0.000126 0 0 0 1 0.73109 0.242514 -0.637726 175.071 -0.68166 0.299495 -0.667565 0.00004 0.029101 0.922762 0.38427 -0.000017 0 0 0 1 0.725469 0.308736 -0.615123 175.071 -0.688254 0.326425 -0.647884 -0.000062 0.000766 0.893381 0.4493 -0.000051 0 0 0 1 0.713398 0.36249 -0.59972 175.071 -0.70062 0.351885 -0.620733 -0.000134 -0.013977 0.863005 0.505002 -0.00004 0 0 0 1 0.698734 0.399125 -0.593692 175.071 -0.715347 0.381718 -0.585294 0.00005 -0.006982 0.833661 0.552232 0.000012 0 0 0 1 0.700592 0.350042 -0.621805 175.071 -0.707821 0.451237 -0.543484 -0.000033 0.090338 0.820887 0.5639 -0.000044 0 0 0 1 0.681222 0.243062 -0.690549 175.071 -0.690142 0.52789 -0.495011 0.000086 0.244216 0.813789 0.527358 -0.00004 0 0 0 1 0.630489 0.13566 -0.764251 175.071 -0.675459 0.580981 -0.454109 0.000016 0.382411 0.802531 0.457936 0.000033 0 0 0 1 0.56469 0.036526 -0.824494 175.071 -0.664908 0.611943 -0.428281 -0.00011 0.4889 0.790058 0.369845 -0.00001 0 0 0 1 0.478483 -0.041114 -0.877134 175.071 -0.682934 0.610469 -0.40116 -0.000093 0.551956 0.790973 0.26402 0.000005 0 0 0 1 0.385372 -0.094665 -0.917893 175.071 -0.743821 0.556813 -0.369715 0.00003 0.546094 0.825226 0.144166 -0.000045 0 0 0 1 0.30796 -0.137456 -0.941417 175.071 -0.833202 0.438707 -0.336616 0.000000 0.459276 0.888055 0.020575 -0.000038 0 0 0 1 0.260615 -0.190939 -0.946373 175.071 -0.913177 0.269401 -0.305828 -0.00004 0.313348 0.94391 -0.104151 0.00006 0 0 0 1 0.251042 -0.267059 -0.930407 175.071 -0.956619 0.078364 -0.280607 -0.000035 0.14785 0.960489 -0.235802 0.000011 0 0 0 1 0.307584 -0.354372 -0.883071 175.071 -0.951521 -0.115455 -0.285093 -0.000022 -0.000926 0.92795 -0.372704 -0.000021 0 0 0 1 0.432699 -0.416548 -0.799537 175.071 -0.893663 -0.31515 -0.31945 -0.000013 -0.118908 0.852742 -0.508618 -0.000072 0 0 0 1 0.592127 -0.42063 -0.687355 175.071 -0.782229 -0.504997 -0.364822 -0.000023 -0.193657 0.75369 -0.628051 -0.000014 0 0 0 1 0.739536 -0.365693 -0.565116 175.071 -0.635594 -0.655775 -0.407406 -0.000038 -0.221604 0.660474 -0.717401 -0.00007 0 0 0 1 0.870313 -0.275508 -0.408228 175.071 -0.457858 -0.757989 -0.464564 0.00006 -0.181441 0.591227 -0.785831 0.000035 0 0 0 1 0.927365 -0.205946 -0.312379 175.071 -0.34642 -0.788069 -0.508862 0.000012 -0.141379 0.580115 -0.802171 0.000094 0 0 0 1 0.895737 -0.237814 -0.375632 175.071 -0.415848 -0.747004 -0.518706 0.000069 -0.157243 0.62083 -0.768014 -0.000047 0 0 0 1 0.821139 -0.282982 -0.495632 175.071 -0.543624 -0.652249 -0.528247 -0.000078 -0.173791 0.703202 -0.689423 0.000006 0 0 0 1 0.749101 -0.291586 -0.594832 175.071 -0.645162 -0.524947 -0.555156 -0.000019 -0.150379 0.79963 -0.581358 0.000014 0 0 0 1 0.708029 -0.268615 -0.6531 175.071 -0.69999 -0.389169 -0.598801 0.000048 -0.09332 0.881133 -0.463571 -0.000000 0 0 0 1 0.684364 -0.223598 -0.69401 175.071 -0.728532 -0.248564 -0.638324 -0.000029 -0.029778 0.942454 -0.333006 -0.00005 0 0 0 1 0.676137 -0.166431 -0.717732 175.071 -0.736201 -0.114145 -0.667067 -0.000071 0.029094 0.979424 -0.199704 0.000071 0 0 0 1 0.676023 -0.108138 -0.728902 175.071 -0.733152 0.000668 -0.680064 0.000011 0.074028 0.994136 -0.07883 -0.000099 0 0 0 1 0.683266 -0.047469 -0.728625 175.071 -0.723324 0.092318 -0.68431 -0.000014 0.099749 0.994597 0.028742 -0.00006 0 0 0 1 0.699149 0.021447 -0.714654 175.071 -0.707375 0.166114 -0.687042 -0.000052 0.103979 0.985874 0.13131 0.000058 0 0 0 1 0.715993 0.094633 -0.691664 175.071 -0.692368 0.223053 -0.686203 -0.000021 0.089339 0.970202 0.225225 -0.000057 0 0 0 1 0.727742 0.169091 -0.66468 175.071 -0.683052 0.266154 -0.680148 -0.000011 0.061901 0.948984 0.30919 -0.000079 0 0 0 1 0.731086 0.242084 -0.637894 175.071 -0.681656 0.2993 -0.667656 0.000061 0.029293 0.922938 0.383832 0.000046 0 0 0 1 0.725469 0.308736 -0.615123 175.071 -0.688254 0.326427 -0.647883 0.000002 0.000767 0.893379 0.449302 0.000008 0 0 0 1 0.713398 0.362491 -0.59972 175.071 -0.70062 0.351884 -0.620733 0.00004 -0.013977 0.863005 0.505001 -0.000016 0 0 0 1 0.698734 0.399125 -0.593692 175.071 -0.715347 0.381718 -0.585294 -0.000001 -0.006982 0.833661 0.552232 0.000038 0 0 0 1 0.700592 0.350042 -0.621805 175.071 -0.707821 0.451237 -0.543484 -0.000057 0.090338 0.820887 0.5639 -0.000024 0 0 0 1 0.681222 0.243062 -0.690549 175.071 -0.690142 0.52789 -0.495011 0.000033 0.244216 0.813789 0.527358 -0.000035 0 0 0 1 0.630488 0.135662 -0.764251 175.071 -0.67546 0.580981 -0.454108 -0.000116 0.38241 0.802531 0.457936 -0.000001 0 0 0 1 0.56469 0.036526 -0.824494 175.071 -0.664908 0.611944 -0.42828 -0.000108 0.488901 0.790058 0.369845 0.000017 0 0 0 1 0.478482 -0.041113 -0.877134 175.071 -0.682935 0.610468 -0.40116 -0.000091 0.551955 0.790973 0.26402 -0.000078 0 0 0 1 0.385372 -0.094665 -0.917893 175.071 -0.743821 0.556813 -0.369715 0.000014 0.546094 0.825226 0.144166 -0.000033 0 0 0 1 0.30835 -0.137149 -0.941334 175.071 -0.832659 0.439596 -0.336799 -0.00005 0.459998 0.887663 0.02135 -0.000006 0 0 0 1 0.260616 -0.190938 -0.946373 175.071 -0.913177 0.2694 -0.305828 -0.000049 0.313347 0.94391 -0.104151 0.000016 0 0 0 1 0.251042 -0.267059 -0.930407 175.071 -0.956619 0.078364 -0.280607 -0.000075 0.14785 0.960489 -0.235802 -0.000003 0 0 0 1 0.307584 -0.354372 -0.883071 175.071 -0.951521 -0.115455 -0.285093 -0.000036 -0.000926 0.92795 -0.372704 -0.00003 0 0 0 1 - - - - - - - - LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR - - - - - - - - - - - - - - - - 0 0.033333 0.066666 0.1 0.133333 0.166667 0.2 0.233333 0.266667 0.3 0.333333 0.366667 0.4 0.433333 0.466667 0.5 0.533333 0.566667 0.6 0.633333 0.666667 0.7 0.733333 0.766667 0.8 0.833333 0.866667 0.9 0.933333 0.966667 1 1.03333 1.06667 1.1 1.13333 1.16667 1.2 1.23333 1.26667 1.3 1.33333 1.36667 1.4 1.43333 1.46667 1.5 1.53333 1.56667 1.6 1.63333 1.66667 1.7 1.73333 1.76667 1.8 1.83333 1.86667 1.9 1.93333 1.96667 2 2.03333 2.06667 2.1 2.13333 2.16667 2.2 2.23333 2.26667 2.3 2.33333 2.36667 2.4 2.43333 2.46667 2.5 2.53333 2.56667 2.6 2.63333 2.66667 2.7 2.73333 2.76667 2.8 2.83333 2.86667 2.9 2.93333 2.96667 3 3.03333 3.06667 3.1 3.13333 3.16667 3.2 3.23333 3.26667 3.3 3.33333 - - - - - - - CONSTANT - CONSTANT - - - - 0.112619 0.993638 0 370.017 -0.993638 0.112619 0 0.000029 0 0 1 0.000003 0 0 0 1 0.019813 0.999804 0 370.017 -0.999804 0.019813 0 0.000014 0 0 1 0.000003 0 0 0 1 0.014553 0.999894 0 370.017 -0.999894 0.014553 0 0.000042 0 0 1 0.000003 0 0 0 1 -0.036816 0.999322 0 370.018 -0.999322 -0.036816 0 0.000042 0 0 1 0.000003 0 0 0 1 -0.189791 0.981825 0 370.018 -0.981825 -0.189791 0 0.000051 0 0 1 0.000003 0 0 0 1 -0.331439 0.943477 0 370.017 -0.943477 -0.331439 0 0.000099 0 0 1 0.000003 0 0 0 1 -0.419202 0.907893 0 370.018 -0.907893 -0.419202 0 -0.000011 0 0 1 0.000003 0 0 0 1 -0.435055 0.900404 0 370.018 -0.900404 -0.435055 0 -0.000024 0 0 1 0.000003 0 0 0 1 -0.387921 0.921692 0 370.018 -0.921693 -0.387921 0 0.000004 0 0 1 0.000003 0 0 0 1 -0.309997 0.950738 0 370.017 -0.950738 -0.309997 0 0.000015 0 0 1 0.000003 0 0 0 1 -0.248673 0.968588 0 370.017 -0.968588 -0.248673 0 0.000005 0 0 1 0.000003 0 0 0 1 -0.19561 0.980682 0 370.018 -0.980682 -0.19561 0 0.000126 0 0 1 0.000003 0 0 0 1 -0.10894 0.994048 0 370.017 -0.994048 -0.108941 0 -0.000036 0 0 1 0.000003 0 0 0 1 0.034473 0.999406 0 370.017 -0.999406 0.034473 0 0.000016 0 0 1 0.000003 0 0 0 1 0.284613 0.958642 0 370.017 -0.958642 0.284613 0 -0.000000 0 0 1 0.000003 0 0 0 1 0.472321 0.881427 0 370.017 -0.881427 0.472321 0 0.000055 0 0 1 0.000003 0 0 0 1 0.401358 0.915922 0 370.017 -0.915921 0.401358 0 0.000034 0 0 1 0.000003 0 0 0 1 0.24788 0.968791 0 370.017 -0.968791 0.24788 0 0.000099 0 0 1 0.000003 0 0 0 1 0.105804 0.994387 0 370.018 -0.994387 0.105804 0 -0.000047 0 0 1 0.000003 0 0 0 1 -0.002642 0.999997 0 370.017 -0.999996 -0.002642 0 0.000031 0 0 1 0.000003 0 0 0 1 -0.089713 0.995968 0 370.017 -0.995968 -0.089713 0 0.000088 0 0 1 0.000003 0 0 0 1 -0.152886 0.988244 0 370.018 -0.988244 -0.152886 0 0.000082 0 0 1 0.000003 0 0 0 1 -0.190832 0.981622 0 370.017 -0.981622 -0.190832 0 -0.000028 0 0 1 0.000003 0 0 0 1 -0.208319 0.978061 0 370.018 -0.978061 -0.20832 0 -0.000022 0 0 1 0.000003 0 0 0 1 -0.205653 0.978625 0 370.017 -0.978625 -0.205653 0 -0.000024 0 0 1 0.000003 0 0 0 1 -0.183063 0.983101 0 370.018 -0.983101 -0.183063 0 0.000031 0 0 1 0.000003 0 0 0 1 -0.143085 0.98971 0 370.017 -0.98971 -0.143085 0 0.00009 0 0 1 0.000003 0 0 0 1 -0.088141 0.996108 0 370.017 -0.996108 -0.088141 0 0.000078 0 0 1 0.000003 0 0 0 1 -0.023732 0.999718 0 370.018 -0.999718 -0.023732 0 0.000056 0 0 1 0.000003 0 0 0 1 0.044682 0.999001 0 370.017 -0.999001 0.044682 0 0.000051 0 0 1 0.000003 0 0 0 1 0.112619 0.993638 0 370.017 -0.993638 0.112619 0 0.000004 0 0 1 0.000003 0 0 0 1 0.091219 0.995831 0 370.017 -0.995831 0.091219 0 0.000029 0 0 1 0.000003 0 0 0 1 0.037205 0.999308 0 370.018 -0.999308 0.037205 0 0.000062 0 0 1 0.000003 0 0 0 1 -0.041762 0.999128 0 370.018 -0.999128 -0.041762 0 0.000046 0 0 1 0.000003 0 0 0 1 -0.196039 0.980597 0 370.017 -0.980597 -0.196039 0 0.000082 0 0 1 0.000003 0 0 0 1 -0.336594 0.94165 0 370.018 -0.94165 -0.336594 0 0.000014 0 0 1 0.000003 0 0 0 1 -0.421361 0.906893 0 370.017 -0.906893 -0.421361 0 -0.000034 0 0 1 0.000003 0 0 0 1 -0.435054 0.900405 0 370.018 -0.900405 -0.435054 0 0.000001 0 0 1 0.000003 0 0 0 1 -0.387921 0.921692 0 370.017 -0.921692 -0.387921 0 0.000025 0 0 1 0.000003 0 0 0 1 -0.30956 0.950879 0 370.017 -0.950879 -0.30956 0 0.00004 0 0 1 0.000003 0 0 0 1 -0.248675 0.968587 0 370.017 -0.968587 -0.248675 0 0.000013 0 0 1 0.000003 0 0 0 1 -0.195612 0.980681 0 370.018 -0.980681 -0.195612 0 0.000033 0 0 1 0.000003 0 0 0 1 -0.108227 0.994126 0 370.017 -0.994126 -0.108227 0 0.00012 0 0 1 0.000003 0 0 0 1 0.034465 0.999406 0 370.018 -0.999406 0.034465 0 -0.000018 0 0 1 0.000003 0 0 0 1 0.284611 0.958643 0 370.017 -0.958643 0.284611 0 0.0001 0 0 1 0.000003 0 0 0 1 0.472321 0.881426 0 370.017 -0.881426 0.472321 0 -0.000038 0 0 1 0.000003 0 0 0 1 0.40136 0.91592 0 370.018 -0.91592 0.40136 0 -0.000058 0 0 1 0.000003 0 0 0 1 0.24788 0.968791 0 370.018 -0.968791 0.24788 0 0.000000 0 0 1 0.000003 0 0 0 1 0.105805 0.994387 0 370.017 -0.994387 0.105805 0 0.000153 0 0 1 0.000003 0 0 0 1 -0.00264 0.999997 0 370.018 -0.999997 -0.00264 0 0.000016 0 0 1 0.000003 0 0 0 1 -0.089713 0.995968 0 370.018 -0.995968 -0.089712 0 -0.000011 0 0 1 0.000003 0 0 0 1 -0.15257 0.988293 0 370.018 -0.988293 -0.15257 0 0.000093 0 0 1 0.000003 0 0 0 1 -0.190832 0.981622 0 370.017 -0.981623 -0.190832 0 0.000043 0 0 1 0.000003 0 0 0 1 -0.208319 0.978061 0 370.018 -0.978061 -0.208319 0 0.000088 0 0 1 0.000003 0 0 0 1 -0.205604 0.978635 0 370.018 -0.978635 -0.205604 0 0.000031 0 0 1 0.000003 0 0 0 1 -0.183064 0.983101 0 370.017 -0.983101 -0.183064 0 0.000056 0 0 1 0.000003 0 0 0 1 -0.143085 0.98971 0 370.018 -0.98971 -0.143085 0 0.000086 0 0 1 0.000003 0 0 0 1 -0.088141 0.996108 0 370.018 -0.996108 -0.088141 0 0.000076 0 0 1 0.000003 0 0 0 1 -0.023731 0.999718 0 370.018 -0.999718 -0.023731 0 0.000079 0 0 1 0.000003 0 0 0 1 0.044684 0.999001 0 370.017 -0.999001 0.044684 0 0.00006 0 0 1 0.000003 0 0 0 1 0.11262 0.993638 0 370.017 -0.993638 0.11262 0 0.000045 0 0 1 0.000003 0 0 0 1 0.091454 0.995809 0 370.017 -0.995809 0.091454 0 0.000031 0 0 1 0.000003 0 0 0 1 0.037204 0.999308 0 370.018 -0.999308 0.037204 0 0.000043 0 0 1 0.000003 0 0 0 1 -0.042498 0.999096 0 370.017 -0.999096 -0.042498 0 0.000051 0 0 1 0.000003 0 0 0 1 -0.196037 0.980596 0 370.018 -0.980596 -0.196037 0 0.000058 0 0 1 0.000003 0 0 0 1 -0.336595 0.94165 0 370.018 -0.941649 -0.336595 0 0.000069 0 0 1 0.000003 0 0 0 1 -0.421362 0.906893 0 370.017 -0.906893 -0.421362 0 0.000005 0 0 1 0.000003 0 0 0 1 -0.435055 0.900403 0 370.018 -0.900403 -0.435055 0 0.000032 0 0 1 0.000003 0 0 0 1 -0.387922 0.921692 0 370.017 -0.921692 -0.387922 0 0.000057 0 0 1 0.000003 0 0 0 1 -0.30956 0.950879 0 370.017 -0.950879 -0.30956 0 0.000049 0 0 1 0.000003 0 0 0 1 -0.248675 0.968587 0 370.018 -0.968587 -0.248675 0 0.000029 0 0 1 0.000003 0 0 0 1 -0.195612 0.980681 0 370.018 -0.980681 -0.195612 0 -0.000055 0 0 1 0.000003 0 0 0 1 -0.108945 0.994048 0 370.018 -0.994048 -0.108945 0 -0.000013 0 0 1 0.000003 0 0 0 1 0.034468 0.999406 0 370.017 -0.999406 0.034468 0 0.000053 0 0 1 0.000003 0 0 0 1 0.28461 0.958643 0 370.017 -0.958643 0.28461 0 0.000062 0 0 1 0.000003 0 0 0 1 0.472322 0.881426 0 370.018 -0.881426 0.472322 0 -0.000016 0 0 1 0.000003 0 0 0 1 0.402054 0.915616 0 370.017 -0.915616 0.402054 0 -0.000014 0 0 1 0.000003 0 0 0 1 0.247881 0.968791 0 370.017 -0.968791 0.247881 0 0.000097 0 0 1 0.000003 0 0 0 1 0.105018 0.99447 0 370.017 -0.99447 0.105018 0 -0.000001 0 0 1 0.000003 0 0 0 1 -0.00264 0.999997 0 370.018 -0.999997 -0.00264 0 0.000063 0 0 1 0.000003 0 0 0 1 -0.089711 0.995968 0 370.017 -0.995968 -0.089711 0 0.000062 0 0 1 0.000003 0 0 0 1 -0.15257 0.988293 0 370.018 -0.988293 -0.15257 0 -0.000119 0 0 1 0.000003 0 0 0 1 -0.190659 0.981656 0 370.017 -0.981656 -0.190659 0 -0.000072 0 0 1 0.000003 0 0 0 1 -0.208319 0.978061 0 370.017 -0.978061 -0.208319 0 -0.00003 0 0 1 0.000003 0 0 0 1 -0.205605 0.978635 0 370.017 -0.978635 -0.205605 0 -0.000055 0 0 1 0.000003 0 0 0 1 -0.183065 0.983101 0 370.017 -0.9831 -0.183064 0 0.00005 0 0 1 0.000003 0 0 0 1 -0.143086 0.98971 0 370.017 -0.98971 -0.143086 0 0.000051 0 0 1 0.000003 0 0 0 1 -0.088514 0.996075 0 370.018 -0.996075 -0.088514 0 0.000028 0 0 1 0.000003 0 0 0 1 -0.02373 0.999718 0 370.018 -0.999718 -0.02373 0 0.000091 0 0 1 0.000003 0 0 0 1 0.044682 0.999001 0 370.017 -0.999001 0.044682 0 0.000037 0 0 1 0.000003 0 0 0 1 0.11262 0.993638 0 370.018 -0.993638 0.11262 0 0.000056 0 0 1 0.000003 0 0 0 1 0.091454 0.995809 0 370.018 -0.995809 0.091454 0 0.000034 0 0 1 0.000003 0 0 0 1 0.037204 0.999308 0 370.018 -0.999308 0.037204 0 0.000041 0 0 1 0.000003 0 0 0 1 -0.042498 0.999097 0 370.018 -0.999096 -0.042498 0 0.000071 0 0 1 0.000003 0 0 0 1 -0.196036 0.980597 0 370.017 -0.980597 -0.196036 0 0.000016 0 0 1 0.000003 0 0 0 1 -0.336596 0.941649 0 370.018 -0.941649 -0.336596 0 0.000113 0 0 1 0.000003 0 0 0 1 -0.421362 0.906893 0 370.018 -0.906893 -0.421362 0 0.000019 0 0 1 0.000003 0 0 0 1 -0.435058 0.900402 0 370.018 -0.900402 -0.435058 0 -0.000023 0 0 1 0.000003 0 0 0 1 -0.387922 0.921692 0 370.018 -0.921692 -0.387922 0 0.000036 0 0 1 0.000003 0 0 0 1 -0.309561 0.950879 0 370.017 -0.950879 -0.309561 0 -0.000035 0 0 1 0.000003 0 0 0 1 -0.248675 0.968587 0 370.017 -0.968587 -0.248675 0 0.000059 0 0 1 0.000003 0 0 0 1 - - - - - - - - LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR - - - - - - - - - - - - - - - - 0 0.033333 0.066666 0.1 0.133333 0.166667 0.2 0.233333 0.266667 0.3 0.333333 0.366667 0.4 0.433333 0.466667 0.5 0.533333 0.566667 0.6 0.633333 0.666667 0.7 0.733333 0.766667 0.8 0.833333 0.866667 0.9 0.933333 0.966667 1 1.03333 1.06667 1.1 1.13333 1.16667 1.2 1.23333 1.26667 1.3 1.33333 1.36667 1.4 1.43333 1.46667 1.5 1.53333 1.56667 1.6 1.63333 1.66667 1.7 1.73333 1.76667 1.8 1.83333 1.86667 1.9 1.93333 1.96667 2 2.03333 2.06667 2.1 2.13333 2.16667 2.2 2.23333 2.26667 2.3 2.33333 2.36667 2.4 2.43333 2.46667 2.5 2.53333 2.56667 2.6 2.63333 2.66667 2.7 2.73333 2.76667 2.8 2.83333 2.86667 2.9 2.93333 2.96667 3 3.03333 3.06667 3.1 3.13333 3.16667 3.2 3.23333 3.26667 3.3 3.33333 - - - - - - - CONSTANT - CONSTANT - - - - 0.995261 0.013675 -0.09627 370.017 -0.060933 0.859273 -0.507874 -0.000002 0.075777 0.511334 0.856035 0.000064 0 0 0 1 0.942021 -0.331108 -0.054445 370.017 0.257082 0.816432 -0.517057 -0.000054 0.215653 0.473081 0.854218 -0.000027 0 0 0 1 0.802307 -0.596481 -0.022691 370.017 0.505354 0.698984 -0.506003 -0.000033 0.317682 0.394502 0.862233 -0.000017 0 0 0 1 0.703892 -0.710141 0.015331 370.018 0.626148 0.610159 -0.485434 0.000008 0.335372 0.351292 0.874139 -0.000008 0 0 0 1 0.691961 -0.718955 0.065525 370.017 0.660109 0.593341 -0.460654 0.000065 0.29231 0.362009 0.885158 0.000037 0 0 0 1 0.721516 -0.683641 0.109768 370.017 0.656281 0.6247 -0.423138 -0.000000 0.220702 0.37734 0.899391 -0.000013 0 0 0 1 0.775508 -0.615617 0.14001 370.017 0.617369 0.693076 -0.372158 -0.00001 0.132069 0.37505 0.917549 0.000015 0 0 0 1 0.83905 -0.522765 0.150703 370.018 0.542047 0.77947 -0.314024 0.000022 0.046692 0.34517 0.937378 0.000005 0 0 0 1 0.895183 -0.422523 0.141852 370.018 0.445546 0.856693 -0.259934 -0.000057 -0.011694 0.29589 0.95515 0.000005 0 0 0 1 0.926302 -0.356335 0.122435 370.017 0.375355 0.900971 -0.217623 -0.000003 -0.032764 0.247541 0.968323 0.000001 0 0 0 1 0.905047 -0.412015 0.105516 370.018 0.425215 0.881827 -0.203894 0.000004 -0.00904 0.229401 0.97329 -0.000013 0 0 0 1 0.822968 -0.559597 0.097855 370.018 0.566267 0.794288 -0.220109 -0.000011 0.045446 0.236554 0.970555 -0.000018 0 0 0 1 0.71342 -0.69385 0.098006 370.018 0.692633 0.67703 -0.248776 -0.000005 0.10626 0.245364 0.96359 -0.00003 0 0 0 1 0.65924 -0.746186 0.092785 370.018 0.737497 0.617581 -0.273298 0.000009 0.146629 0.248599 0.957444 -0.000006 0 0 0 1 0.756206 -0.651881 0.056595 370.017 0.637179 0.713947 -0.290316 -0.000035 0.148845 0.2556 0.955256 0.000015 0 0 0 1 0.850192 -0.525734 0.027881 370.018 0.509892 0.809074 -0.292249 0.000034 0.131088 0.262684 0.955936 -0.000033 0 0 0 1 0.826792 -0.558951 0.063165 370.018 0.551894 0.784347 -0.283221 -0.000052 0.108763 0.269025 0.956972 -0.000014 0 0 0 1 0.770365 -0.626558 0.118167 370.018 0.63182 0.725246 -0.273536 -0.000045 0.085685 0.285382 0.954576 0.000008 0 0 0 1 0.728959 -0.665821 0.159066 370.017 0.679956 0.677342 -0.280834 0.000016 0.079243 0.312874 0.946483 0.000019 0 0 0 1 0.71883 -0.670452 0.183787 370.018 0.689739 0.654795 -0.309039 0.000002 0.086852 0.348911 0.933123 -0.000003 0 0 0 1 0.728318 -0.654532 0.202833 370.018 0.678948 0.649274 -0.342743 0 0.092641 0.387339 0.917271 -0.000024 0 0 0 1 0.757443 -0.617599 0.211781 370.017 0.646158 0.662587 -0.378759 0.000002 0.093597 0.423733 0.900938 0.000007 0 0 0 1 0.800694 -0.562646 0.205719 370.017 0.592431 0.692666 -0.411387 0.000025 0.08897 0.451269 0.887941 0.000033 0 0 0 1 0.848941 -0.494089 0.187552 370.018 0.522096 0.729054 -0.442601 -0.000032 0.081948 0.473662 0.876886 -0.000004 0 0 0 1 0.896375 -0.41289 0.161349 370.017 0.437238 0.763512 -0.47526 0.00008 0.073037 0.496559 0.864925 0.000043 0 0 0 1 0.937652 -0.323588 0.126884 370.018 0.341884 0.792857 -0.504473 0.000016 0.062641 0.5164 0.854054 0.000048 0 0 0 1 0.968365 -0.234233 0.086047 370.017 0.243838 0.814927 -0.525773 0.000005 0.053031 0.530122 0.846262 -0.000013 0 0 0 1 0.987953 -0.149477 0.040067 370.018 0.147438 0.83049 -0.537167 0.000014 0.047018 0.536604 0.842524 -0.000002 0 0 0 1 0.997 -0.077047 -0.007367 370.017 0.061022 0.841042 -0.537517 0.000109 0.04761 0.535455 0.84322 -0.000003 0 0 0 1 0.998332 -0.021656 -0.053516 370.018 -0.00984 0.849581 -0.527367 0.000003 0.056887 0.527014 0.847951 -0.000038 0 0 0 1 0.995261 0.013675 -0.09627 370.018 -0.060933 0.859273 -0.507874 -0.000003 0.075777 0.511334 0.856035 -0.000083 0 0 0 1 0.975938 -0.197723 -0.091924 370.017 0.123776 0.849433 -0.512975 -0.000033 0.17951 0.489254 0.853468 0.000022 0 0 0 1 0.834057 -0.550527 -0.03563 370.018 0.45383 0.721413 -0.52307 -0.000049 0.313668 0.4201 0.851545 -0.000048 0 0 0 1 0.697013 -0.716671 0.02356 370.018 0.62616 0.592315 -0.507037 -0.000029 0.349423 0.368164 0.861602 0.000005 0 0 0 1 0.686363 -0.72352 0.073655 370.018 0.661191 0.578622 -0.477517 -0.000026 0.302875 0.37645 0.87553 0.00003 0 0 0 1 0.717942 -0.68646 0.115465 370.018 0.658331 0.615683 -0.433053 -0.000104 0.226184 0.386921 0.893943 -0.000055 0 0 0 1 0.774098 -0.617016 0.141642 370.018 0.61879 0.690215 -0.375104 0.000003 0.133682 0.378014 0.916097 -0.000005 0 0 0 1 0.839016 -0.523036 0.149953 370.018 0.542059 0.779597 -0.313691 0.000041 0.047168 0.344475 0.93761 0.000018 0 0 0 1 0.895187 -0.422653 0.141436 370.017 0.445544 0.856754 -0.259738 -0.000002 -0.011397 0.29553 0.955266 -0.000013 0 0 0 1 0.926301 -0.356363 0.122358 370.017 0.375358 0.901017 -0.217432 0.000006 -0.032761 0.247335 0.968376 -0.000012 0 0 0 1 0.905046 -0.411963 0.105732 370.018 0.425215 0.881797 -0.204022 -0.000026 -0.009184 0.229608 0.97324 -0.000013 0 0 0 1 0.822977 -0.559547 0.098061 370.018 0.566262 0.794255 -0.220242 0.000000 0.045349 0.236783 0.970504 0.000016 0 0 0 1 0.712885 -0.694387 0.098083 370.017 0.693137 0.676429 -0.249006 -0.000005 0.106561 0.245498 0.963523 0.000017 0 0 0 1 0.659239 -0.746187 0.092786 370.018 0.737499 0.61758 -0.273298 0.000003 0.146628 0.248597 0.957444 0.000012 0 0 0 1 0.756206 -0.651882 0.056596 370.018 0.63718 0.713946 -0.290315 -0.000001 0.148844 0.2556 0.955256 -0.000011 0 0 0 1 0.850192 -0.525734 0.02788 370.017 0.509891 0.809074 -0.292249 0.000006 0.131088 0.262684 0.955936 -0.000005 0 0 0 1 0.826793 -0.55895 0.063165 370.017 0.551893 0.784347 -0.283221 0.000007 0.108763 0.269025 0.956972 -0.00001 0 0 0 1 0.770365 -0.626558 0.118166 370.017 0.631819 0.725246 -0.273536 0.000000 0.085686 0.285382 0.954576 0.000008 0 0 0 1 0.728958 -0.665821 0.159066 370.018 0.679956 0.677342 -0.280834 -0.000000 0.079243 0.312874 0.946483 -0.000007 0 0 0 1 0.71883 -0.670453 0.183786 370.017 0.689739 0.654794 -0.309039 0.000008 0.086854 0.348911 0.933122 -0.000041 0 0 0 1 0.728318 -0.654532 0.202833 370.017 0.678948 0.649273 -0.342744 -0.00002 0.092642 0.387339 0.917271 0.000001 0 0 0 1 0.757213 -0.617881 0.211779 370.018 0.646426 0.662451 -0.378539 -0.000014 0.093599 0.423534 0.901032 0.000012 0 0 0 1 0.800693 -0.562646 0.205719 370.018 0.592431 0.692665 -0.411387 -0.000017 0.08897 0.451269 0.887941 0.000038 0 0 0 1 0.848941 -0.494089 0.187552 370.017 0.522096 0.729054 -0.442602 -0.00004 0.081949 0.473663 0.876885 -0.000024 0 0 0 1 0.896654 -0.412358 0.161159 370.017 0.436676 0.763713 -0.475455 0.00008 0.072977 0.496692 0.864853 0.00004 0 0 0 1 0.937652 -0.323591 0.126884 370.017 0.341887 0.792857 -0.504473 0.000064 0.062641 0.516399 0.854053 0.000014 0 0 0 1 0.968365 -0.234233 0.086046 370.018 0.243838 0.814927 -0.525773 0.000016 0.053031 0.530121 0.846262 -0.000032 0 0 0 1 0.987953 -0.149477 0.040067 370.017 0.147438 0.83049 -0.537167 -0.000041 0.047018 0.536604 0.842523 -0.000046 0 0 0 1 0.997 -0.077047 -0.007367 370.017 0.061022 0.841042 -0.537518 0.000016 0.04761 0.535455 0.843221 -0.000027 0 0 0 1 0.998332 -0.021656 -0.053517 370.017 -0.009841 0.849581 -0.527366 -0.000051 0.056888 0.527013 0.847951 -0.000036 0 0 0 1 0.995261 0.013675 -0.09627 370.017 -0.060932 0.859273 -0.507874 -0.000005 0.075777 0.511334 0.856035 -0.000052 0 0 0 1 0.97629 -0.195882 -0.09213 370.017 0.122077 0.849696 -0.512946 -0.000037 0.17876 0.489537 0.853463 -0.000042 0 0 0 1 0.834057 -0.550527 -0.035631 370.017 0.45383 0.721413 -0.52307 -0.000014 0.313668 0.4201 0.851544 0.000012 0 0 0 1 0.69662 -0.717043 0.023881 370.017 0.626599 0.591865 -0.50702 -0.000044 0.34942 0.368165 0.861603 0.000006 0 0 0 1 0.686362 -0.723521 0.073654 370.017 0.661191 0.578622 -0.477518 -0.000003 0.302876 0.37645 0.875529 -0.000066 0 0 0 1 0.717943 -0.686459 0.115465 370.017 0.658331 0.615683 -0.433053 -0.000003 0.226184 0.386921 0.893943 -0.000016 0 0 0 1 0.774098 -0.617016 0.141642 370.018 0.61879 0.690214 -0.375104 0.000002 0.133682 0.378014 0.916098 -0.000032 0 0 0 1 0.839016 -0.523036 0.149954 370.017 0.54206 0.779596 -0.313691 0.000091 0.047168 0.344475 0.93761 0.00001 0 0 0 1 0.895188 -0.422652 0.141436 370.018 0.445543 0.856754 -0.259737 0.000025 -0.011396 0.295529 0.955266 0.000002 0 0 0 1 0.926301 -0.356363 0.122359 370.018 0.375358 0.901017 -0.217431 -0.000019 -0.032762 0.247335 0.968376 -0.000013 0 0 0 1 0.905046 -0.411961 0.105732 370.018 0.425215 0.881798 -0.204021 0.000008 -0.009185 0.229608 0.97324 -0.00001 0 0 0 1 0.822977 -0.559547 0.098063 370.017 0.566262 0.794255 -0.220242 -0.00001 0.045349 0.236783 0.970504 0.000019 0 0 0 1 0.713427 -0.69383 0.098087 370.017 0.692628 0.677014 -0.248833 0.000002 0.106242 0.245462 0.963567 0.000011 0 0 0 1 0.659238 -0.746187 0.092786 370.018 0.737499 0.617579 -0.273298 -0.000004 0.146628 0.248599 0.957444 0.000012 0 0 0 1 0.756205 -0.651882 0.056596 370.017 0.637181 0.713946 -0.290315 0 0.148845 0.2556 0.955256 -0.000006 0 0 0 1 0.850192 -0.525734 0.02788 370.017 0.509892 0.809074 -0.292249 -0.000000 0.131088 0.262684 0.955936 0.00001 0 0 0 1 0.827033 -0.558625 0.062882 370.017 0.551503 0.784603 -0.283271 0.000006 0.108905 0.268954 0.956976 0.000008 0 0 0 1 0.770364 -0.626559 0.118166 370.018 0.63182 0.725246 -0.273536 0.000007 0.085686 0.285382 0.954576 -0.000005 0 0 0 1 0.728793 -0.665953 0.159274 370.018 0.680133 0.67712 -0.280939 -0.000002 0.079244 0.313073 0.946417 -0.000016 0 0 0 1 0.718829 -0.670453 0.183786 370.017 0.68974 0.654794 -0.309038 -0.000008 0.086853 0.34891 0.933123 0.000011 0 0 0 1 0.728317 -0.654533 0.202833 370.018 0.678949 0.649273 -0.342743 -0.000014 0.092643 0.387339 0.917271 0.000017 0 0 0 1 0.757213 -0.617882 0.211779 370.017 0.646427 0.662451 -0.378538 -0.000009 0.093599 0.423534 0.901032 -0.000005 0 0 0 1 0.800403 -0.563031 0.205794 370.017 0.592817 0.692455 -0.411186 0.000033 0.089006 0.451113 0.888017 0.000064 0 0 0 1 0.84894 -0.49409 0.187553 370.018 0.522097 0.729053 -0.442601 -0.000023 0.081949 0.473663 0.876885 -0.000023 0 0 0 1 0.896654 -0.412358 0.16116 370.017 0.436675 0.763713 -0.475455 0.000027 0.072977 0.496692 0.864854 0.000013 0 0 0 1 0.937652 -0.323591 0.126884 370.018 0.341886 0.792857 -0.504473 0.000025 0.062641 0.516399 0.854054 -0.000029 0 0 0 1 0.968365 -0.234235 0.086047 370.018 0.24384 0.814927 -0.525773 0.000022 0.053031 0.530122 0.846262 0.000027 0 0 0 1 0.987867 -0.14996 0.040378 370.017 0.148012 0.830403 -0.537144 -0.000011 0.047019 0.536604 0.842523 -0.000028 0 0 0 1 0.997 -0.077044 -0.007368 370.018 0.06102 0.841042 -0.537517 -0.000002 0.04761 0.535455 0.843221 0.000026 0 0 0 1 0.998332 -0.021659 -0.053516 370.017 -0.009837 0.849581 -0.527367 -0.000003 0.056888 0.527014 0.847951 0.000004 0 0 0 1 0.995261 0.013675 -0.09627 370.017 -0.060933 0.859274 -0.507874 -0.000016 0.075777 0.511334 0.856035 0.000011 0 0 0 1 0.97629 -0.195882 -0.09213 370.017 0.122077 0.849696 -0.512946 0.000001 0.178759 0.489537 0.853463 0.000041 0 0 0 1 0.834057 -0.550527 -0.03563 370.017 0.45383 0.721412 -0.52307 0.000011 0.313668 0.4201 0.851545 -0.000054 0 0 0 1 0.69662 -0.717042 0.023882 370.018 0.6266 0.591865 -0.507019 -0.00001 0.349419 0.368165 0.861604 0.000001 0 0 0 1 0.686362 -0.72352 0.073654 370.018 0.661191 0.578623 -0.477517 -0.000035 0.302875 0.37645 0.875529 -0.000007 0 0 0 1 0.717941 -0.68646 0.115466 370.017 0.658332 0.615682 -0.433052 -0.000024 0.226183 0.386921 0.893943 -0.000046 0 0 0 1 0.774098 -0.617017 0.141642 370.018 0.61879 0.690215 -0.375104 -0.000058 0.133682 0.378014 0.916098 0.000014 0 0 0 1 0.838637 -0.523642 0.149954 370.017 0.542604 0.779074 -0.314044 -0.000002 0.047621 0.344735 0.937491 0.000008 0 0 0 1 0.895187 -0.422654 0.141436 370.017 0.445545 0.856753 -0.259737 0.000006 -0.011397 0.295529 0.955266 -0.000008 0 0 0 1 0.9263 -0.356364 0.122359 370.017 0.375358 0.901016 -0.217431 0.000012 -0.032762 0.247335 0.968376 0.000002 0 0 0 1 0.905046 -0.411961 0.105732 370.017 0.425215 0.881798 -0.204021 -0.00001 -0.009185 0.229608 0.97324 0.000009 0 0 0 1 - - - - - - - - LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR - - - - - - - - - - - - - - - - 0 0.033333 0.066666 0.1 0.133333 0.166667 0.2 0.233333 0.266667 0.3 0.333333 0.366667 0.4 0.433333 0.466667 0.5 0.533333 0.566667 0.6 0.633333 0.666667 0.7 0.733333 0.766667 0.8 0.833333 0.866667 0.9 0.933333 0.966667 1 1.03333 1.06667 1.1 1.13333 1.16667 1.2 1.23333 1.26667 1.3 1.33333 1.36667 1.4 1.43333 1.46667 1.5 1.53333 1.56667 1.6 1.63333 1.66667 1.7 1.73333 1.76667 1.8 1.83333 1.86667 1.9 1.93333 1.96667 2 2.03333 2.06667 2.1 2.13333 2.16667 2.2 2.23333 2.26667 2.3 2.33333 2.36667 2.4 2.43333 2.46667 2.5 2.53333 2.56667 2.6 2.63333 2.66667 2.7 2.73333 2.76667 2.8 2.83333 2.86667 2.9 2.93333 2.96667 3 3.03333 3.06667 3.1 3.13333 3.16667 3.2 3.23333 3.26667 3.3 3.33333 - - - - - - - CONSTANT - CONSTANT - - - - 0.738845 0.63592 -0.222966 186.693 -0.616553 0.77146 0.157199 0.000056 0.271976 0.021325 0.962068 0.000003 0 0 0 1 0.661326 0.716194 -0.222966 186.693 -0.700681 0.695941 0.157199 0.00002 0.267757 0.052268 0.962068 0.000003 0 0 0 1 0.576267 0.786258 -0.222966 186.693 -0.774751 0.612412 0.157199 0.000089 0.260146 0.082155 0.962068 0.000003 0 0 0 1 0.592978 0.773733 -0.222966 186.693 -0.761455 0.628868 0.157199 0.000031 0.261846 0.076563 0.962068 0.000003 0 0 0 1 0.725858 0.650715 -0.222966 186.693 -0.632016 0.758849 0.157199 -0.000107 0.271452 0.026815 0.962068 0.000003 0 0 0 1 0.867578 0.444515 -0.222966 186.693 -0.418027 0.89473 0.157199 0.000031 0.269372 -0.043176 0.962068 0.000003 0 0 0 1 0.958917 0.175396 -0.222966 186.693 -0.142202 0.977275 0.157199 -0.000081 0.245472 -0.119035 0.962068 0.000003 0 0 0 1 0.969269 -0.103912 -0.222966 186.693 0.140953 0.977456 0.157199 -0.000028 0.201616 -0.1838 0.962068 0.000003 0 0 0 1 0.917586 -0.329123 -0.222966 186.693 0.367048 0.916823 0.157199 0.00006 0.152683 -0.226083 0.962068 0.000003 0 0 0 1 0.857136 -0.464331 -0.222966 186.693 0.501703 0.850637 0.157199 -0.000009 0.116671 -0.246604 0.962068 0.000003 0 0 0 1 0.851953 -0.473776 -0.222966 186.693 0.511073 0.845041 0.157199 -0.000053 0.113939 -0.247878 0.962068 0.000003 0 0 0 1 0.900758 -0.372722 -0.222966 186.693 0.410566 0.898178 0.157199 0.000079 0.141672 -0.233141 0.962068 0.000003 0 0 0 1 0.95269 -0.206563 -0.222966 186.693 0.244262 0.956883 0.157199 0.000043 0.180881 -0.204224 0.962068 0.000003 0 0 0 1 0.97432 -0.031512 -0.222966 186.693 0.067836 0.985235 0.157199 -0.000056 0.214708 -0.168281 0.962068 0.000003 0 0 0 1 0.951387 0.21248 -0.222966 186.693 -0.180024 0.97102 0.157199 0.000042 0.249906 -0.109418 0.962068 0.000003 0 0 0 1 0.873378 0.43301 -0.222966 186.693 -0.406165 0.900177 0.157199 -0.000002 0.268778 -0.046732 0.962068 0.000003 0 0 0 1 0.825041 0.519223 -0.222966 186.693 -0.495228 0.854421 0.157199 -0.00008 0.272131 -0.019276 0.962068 0.000003 0 0 0 1 0.797981 0.559921 -0.222966 186.693 -0.537431 0.828527 0.157199 -0.000024 0.272753 -0.005612 0.962068 0.000003 0 0 0 1 0.784918 0.578092 -0.222966 186.693 -0.556308 0.815971 0.157199 0.000049 0.27281 0.000649 0.962068 0.000003 0 0 0 1 0.776656 0.589145 -0.222966 186.693 -0.567804 0.808014 0.157199 0.000055 0.272773 0.004512 0.962068 0.000003 0 0 0 1 0.771069 0.596438 -0.222966 186.693 -0.575393 0.802627 0.157199 -0.000044 0.272718 0.007082 0.962068 0.000003 0 0 0 1 0.767541 0.600972 -0.222966 186.693 -0.580113 0.799223 0.157199 -0.000077 0.272672 0.008688 0.962068 0.000003 0 0 0 1 0.765631 0.603402 -0.222966 186.693 -0.582644 0.79738 0.157199 0.000076 0.272643 0.009552 0.962068 0.000003 0 0 0 1 0.764761 0.604505 -0.222966 186.693 -0.583792 0.796539 0.157199 0.000029 0.272629 0.009946 0.962068 0.000003 0 0 0 1 0.764351 0.605024 -0.222966 186.693 -0.584333 0.796143 0.157199 0.000045 0.272622 0.010131 0.962068 0.000003 0 0 0 1 0.763828 0.605684 -0.222966 186.693 -0.585021 0.795638 0.157199 0.000071 0.272613 0.010367 0.962068 0.000003 0 0 0 1 0.76263 0.607191 -0.222966 186.693 -0.586591 0.794481 0.157199 -0.000037 0.272592 0.010905 0.962068 0.000003 0 0 0 1 0.760135 0.610312 -0.222966 186.693 -0.589843 0.792069 0.157199 -0.00002 0.272545 0.012022 0.962068 0.000003 0 0 0 1 0.755771 0.615708 -0.222966 186.693 -0.595466 0.78785 0.157199 -0.000004 0.272453 0.013962 0.962068 0.000003 0 0 0 1 0.748937 0.624003 -0.222966 186.693 -0.604116 0.781238 0.157199 -0.00002 0.272282 0.016965 0.962068 0.000003 0 0 0 1 0.738845 0.63592 -0.222966 186.693 -0.616553 0.77146 0.157199 0.000018 0.271976 0.021325 0.962068 0.000003 0 0 0 1 0.67708 0.701319 -0.222966 186.693 -0.685042 0.711342 0.157199 -0.000014 0.268849 0.046303 0.962068 0.000003 0 0 0 1 0.584956 0.779815 -0.222966 186.693 -0.767908 0.620971 0.157199 0.000026 0.261042 0.079263 0.962068 0.000003 0 0 0 1 0.592978 0.773733 -0.222966 186.693 -0.761455 0.628868 0.157199 0.000034 0.261846 0.076563 0.962068 0.000003 0 0 0 1 0.725858 0.650715 -0.222966 186.693 -0.632016 0.758849 0.157199 0.000046 0.271452 0.026815 0.962068 0.000003 0 0 0 1 0.867578 0.444515 -0.222966 186.693 -0.418027 0.89473 0.157199 -0.000041 0.269372 -0.043176 0.962068 0.000003 0 0 0 1 0.958917 0.175396 -0.222966 186.693 -0.142202 0.977275 0.157199 -0.000021 0.245472 -0.119035 0.962068 0.000003 0 0 0 1 0.969269 -0.103912 -0.222966 186.693 0.140953 0.977456 0.157199 -0.000022 0.201616 -0.1838 0.962068 0.000003 0 0 0 1 0.917586 -0.329123 -0.222966 186.693 0.367048 0.916823 0.157199 0.000005 0.152683 -0.226083 0.962068 0.000003 0 0 0 1 0.857049 -0.464491 -0.222966 186.693 0.501861 0.850544 0.157199 0.000006 0.116625 -0.246626 0.962068 0.000003 0 0 0 1 0.851953 -0.473776 -0.222966 186.693 0.511073 0.845041 0.157199 0.000085 0.113939 -0.247878 0.962068 0.000003 0 0 0 1 0.900758 -0.372722 -0.222966 186.693 0.410566 0.898178 0.157199 -0.00006 0.141672 -0.233141 0.962068 0.000003 0 0 0 1 0.952922 -0.205493 -0.222966 186.693 0.243187 0.957156 0.157199 0.000138 0.181109 -0.204022 0.962068 0.000003 0 0 0 1 0.974319 -0.031516 -0.222966 186.693 0.06784 0.985235 0.157199 0.00007 0.214707 -0.168282 0.962068 0.000003 0 0 0 1 0.951387 0.21248 -0.222966 186.693 -0.180024 0.97102 0.157199 -0.00004 0.249906 -0.109418 0.962068 0.000003 0 0 0 1 0.873378 0.43301 -0.222966 186.693 -0.406165 0.900177 0.157199 0.000045 0.268778 -0.046732 0.962068 0.000003 0 0 0 1 0.825041 0.519223 -0.222966 186.693 -0.495228 0.854422 0.157199 0.000008 0.272131 -0.019276 0.962068 0.000003 0 0 0 1 0.797981 0.559921 -0.222966 186.693 -0.537431 0.828527 0.157199 0.000043 0.272753 -0.005612 0.962068 0.000003 0 0 0 1 0.784918 0.578092 -0.222966 186.693 -0.556308 0.815971 0.157199 0.000002 0.27281 0.000649 0.962068 0.000003 0 0 0 1 0.776656 0.589145 -0.222966 186.693 -0.567804 0.808014 0.157199 -0.000071 0.272773 0.004512 0.962068 0.000003 0 0 0 1 0.771069 0.596439 -0.222966 186.693 -0.575393 0.802627 0.157199 -0.00017 0.272718 0.007081 0.962068 0.000003 0 0 0 1 0.767558 0.60095 -0.222966 186.693 -0.580091 0.799239 0.157199 -0.000006 0.272672 0.00868 0.962068 0.000003 0 0 0 1 0.765631 0.603402 -0.222966 186.693 -0.582643 0.79738 0.157199 -0.000076 0.272643 0.009552 0.962068 0.000003 0 0 0 1 0.764761 0.604505 -0.222966 186.693 -0.583792 0.796539 0.157199 0.0001 0.272629 0.009946 0.962068 0.000003 0 0 0 1 0.764348 0.605028 -0.222966 186.693 -0.584337 0.79614 0.157199 0.000051 0.272622 0.010132 0.962068 0.000003 0 0 0 1 0.763828 0.605684 -0.222966 186.693 -0.585021 0.795638 0.157199 0.000005 0.272613 0.010367 0.962068 0.000003 0 0 0 1 0.76263 0.607191 -0.222966 186.693 -0.586591 0.794481 0.157199 -0.000025 0.272592 0.010905 0.962068 0.000003 0 0 0 1 0.760135 0.610312 -0.222966 186.693 -0.589843 0.792069 0.157199 -0.000089 0.272545 0.012022 0.962068 0.000003 0 0 0 1 0.755771 0.615708 -0.222966 186.693 -0.595466 0.78785 0.157199 -0.000073 0.272453 0.013962 0.962068 0.000003 0 0 0 1 0.748937 0.624003 -0.222966 186.693 -0.604116 0.781238 0.157199 0.000018 0.272282 0.016964 0.962068 0.000003 0 0 0 1 0.738845 0.63592 -0.222966 186.693 -0.616553 0.77146 0.157199 0.000033 0.271976 0.021325 0.962068 0.000003 0 0 0 1 0.677558 0.700857 -0.222966 186.693 -0.684556 0.711809 0.157199 -0.000031 0.268883 0.046121 0.962068 0.000003 0 0 0 1 0.584956 0.779815 -0.222966 186.693 -0.767908 0.620971 0.157199 -0.000042 0.261042 0.079263 0.962068 0.000003 0 0 0 1 0.593121 0.773623 -0.222966 186.693 -0.761339 0.629009 0.157199 0.000003 0.261861 0.076514 0.962068 0.000003 0 0 0 1 0.725855 0.650718 -0.222966 186.693 -0.63202 0.758846 0.157199 -0.000094 0.271452 0.026816 0.962068 0.000003 0 0 0 1 0.867578 0.444515 -0.222966 186.693 -0.418027 0.89473 0.157199 0.000111 0.269372 -0.043176 0.962068 0.000003 0 0 0 1 0.958917 0.175396 -0.222966 186.693 -0.142202 0.977275 0.157199 -0.000019 0.245472 -0.119035 0.962068 0.000003 0 0 0 1 0.969269 -0.103912 -0.222966 186.693 0.140953 0.977456 0.157199 -0.000027 0.201616 -0.1838 0.962068 0.000003 0 0 0 1 0.917586 -0.329123 -0.222966 186.693 0.367048 0.916823 0.157199 0.000004 0.152683 -0.226083 0.962068 0.000003 0 0 0 1 0.85705 -0.464491 -0.222966 186.693 0.501862 0.850544 0.157199 0.000017 0.116625 -0.246626 0.962068 0.000003 0 0 0 1 0.851953 -0.473775 -0.222966 186.693 0.511073 0.845041 0.157199 -0.000052 0.113939 -0.247878 0.962068 0.000003 0 0 0 1 0.900758 -0.372722 -0.222966 186.693 0.410566 0.898178 0.157199 -0.000053 0.141672 -0.233141 0.962068 0.000003 0 0 0 1 0.95269 -0.206562 -0.222966 186.693 0.244262 0.956883 0.157199 0.00007 0.180881 -0.204224 0.962068 0.000003 0 0 0 1 0.97432 -0.031512 -0.222966 186.693 0.067836 0.985235 0.157199 0.00006 0.214708 -0.168281 0.962068 0.000003 0 0 0 1 0.951387 0.21248 -0.222966 186.693 -0.180024 0.97102 0.157199 -0.000028 0.249906 -0.109418 0.962068 0.000003 0 0 0 1 0.873378 0.43301 -0.222966 186.693 -0.406165 0.900177 0.157199 0.000052 0.268778 -0.046732 0.962068 0.000003 0 0 0 1 0.825287 0.518833 -0.222966 186.693 -0.494825 0.854656 0.157199 0.000086 0.272119 -0.019404 0.962068 0.000003 0 0 0 1 0.797981 0.559921 -0.222966 186.693 -0.537431 0.828527 0.157199 0.000027 0.272753 -0.005612 0.962068 0.000003 0 0 0 1 0.784851 0.578183 -0.222966 186.693 -0.556403 0.815907 0.157199 -0.000031 0.27281 0.000681 0.962068 0.000003 0 0 0 1 0.776656 0.589145 -0.222966 186.693 -0.567803 0.808014 0.157199 0.000018 0.272773 0.004511 0.962068 0.000003 0 0 0 1 0.771069 0.596438 -0.222966 186.693 -0.575393 0.802627 0.157199 0.000004 0.272718 0.007082 0.962068 0.000003 0 0 0 1 0.767558 0.60095 -0.222966 186.693 -0.580091 0.799239 0.157199 0.000024 0.272672 0.00868 0.962068 0.000003 0 0 0 1 0.76564 0.603391 -0.222966 186.693 -0.582632 0.797388 0.157199 0.000084 0.272643 0.009548 0.962068 0.000003 0 0 0 1 0.764761 0.604505 -0.222966 186.693 -0.583792 0.796539 0.157199 -0.000038 0.272629 0.009946 0.962068 0.000003 0 0 0 1 0.764348 0.605028 -0.222966 186.693 -0.584337 0.79614 0.157199 -0.00001 0.272622 0.010132 0.962068 0.000003 0 0 0 1 0.763828 0.605684 -0.222966 186.693 -0.585021 0.795638 0.157199 -0.000013 0.272613 0.010367 0.962068 0.000003 0 0 0 1 0.76263 0.607191 -0.222966 186.693 -0.586591 0.794481 0.157199 0.00014 0.272592 0.010905 0.962068 0.000003 0 0 0 1 0.760156 0.610286 -0.222966 186.693 -0.589815 0.79209 0.157199 -0.000005 0.272546 0.012013 0.962068 0.000003 0 0 0 1 0.755771 0.615708 -0.222966 186.693 -0.595466 0.78785 0.157199 -0.000094 0.272453 0.013962 0.962068 0.000003 0 0 0 1 0.748937 0.624003 -0.222966 186.693 -0.604116 0.781238 0.157199 0.000006 0.272282 0.016965 0.962068 0.000003 0 0 0 1 0.738845 0.63592 -0.222966 186.693 -0.616553 0.77146 0.157199 0.000061 0.271976 0.021325 0.962068 0.000003 0 0 0 1 0.677558 0.700857 -0.222966 186.693 -0.684556 0.711809 0.157199 0.000074 0.268883 0.046121 0.962068 0.000003 0 0 0 1 0.584956 0.779815 -0.222966 186.693 -0.767908 0.620971 0.157199 -0.000005 0.261042 0.079263 0.962068 0.000003 0 0 0 1 0.593121 0.773623 -0.222966 186.693 -0.761339 0.629009 0.157199 0.000014 0.261861 0.076514 0.962068 0.000003 0 0 0 1 0.725855 0.650718 -0.222966 186.693 -0.63202 0.758846 0.157199 0.000054 0.271452 0.026816 0.962068 0.000003 0 0 0 1 0.867579 0.444515 -0.222966 186.693 -0.418027 0.89473 0.157199 -0.000005 0.269372 -0.043176 0.962068 0.000003 0 0 0 1 0.958917 0.175396 -0.222966 186.693 -0.142202 0.977275 0.157199 0.000007 0.245472 -0.119035 0.962068 0.000003 0 0 0 1 0.969441 -0.102321 -0.222966 186.693 0.139346 0.977687 0.157199 -0.000047 0.201906 -0.183465 0.962068 0.000003 0 0 0 1 0.917586 -0.329123 -0.222966 186.693 0.367048 0.916823 0.157199 -0.000052 0.152683 -0.226083 0.962068 0.000003 0 0 0 1 0.85705 -0.464491 -0.222966 186.693 0.501862 0.850544 0.157199 -0.000007 0.116625 -0.246626 0.962068 0.000003 0 0 0 1 0.851953 -0.473776 -0.222966 186.693 0.511073 0.845041 0.157199 0.000131 0.113939 -0.247878 0.962068 0.000003 0 0 0 1 - - - - - - - - LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR - - - - - - - - - - - - - - - - 0 0.033333 0.066666 0.1 0.133333 0.166667 0.2 0.233333 0.266667 0.3 0.333333 0.366667 0.4 0.433333 0.466667 0.5 0.533333 0.566667 0.6 0.633333 0.666667 0.7 0.733333 0.766667 0.8 0.833333 0.866667 0.9 0.933333 0.966667 1 1.03333 1.06667 1.1 1.13333 1.16667 1.2 1.23333 1.26667 1.3 1.33333 1.36667 1.4 1.43333 1.46667 1.5 1.53333 1.56667 1.6 1.63333 1.66667 1.7 1.73333 1.76667 1.8 1.83333 1.86667 1.9 1.93333 1.96667 2 2.03333 2.06667 2.1 2.13333 2.16667 2.2 2.23333 2.26667 2.3 2.33333 2.36667 2.4 2.43333 2.46667 2.5 2.53333 2.56667 2.6 2.63333 2.66667 2.7 2.73333 2.76667 2.8 2.83333 2.86667 2.9 2.93333 2.96667 3 3.03333 3.06667 3.1 3.13333 3.16667 3.2 3.23333 3.26667 3.3 3.33333 - - - - - - - CONSTANT - CONSTANT - - - - 1 0 0 167.761 -0.000000 1 0 -0.000005 0 0 -1 -0.000044 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000006 0 0 -1 0.000005 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000034 0 0 -1 0.000001 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000054 0 0 -1 0.000014 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000011 0 0 -1 -0.000016 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000084 0 0 -1 0.000001 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000083 0 0 -1 -0.000007 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000115 0 0 -1 0.000048 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000057 0 0 -1 0.000022 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000004 0 0 -1 -0.000034 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000008 0 0 -1 0.000003 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000005 0 0 -1 0.000021 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000051 0 0 -1 0.000032 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000024 0 0 -1 0.000003 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000022 0 0 -1 0.000038 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.00001 0 0 -1 0.00001 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.00004 0 0 -1 -0.000013 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000017 0 0 -1 0.000019 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000019 0 0 -1 -0.000017 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000038 0 0 -1 0.000019 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000006 0 0 -1 -0.000017 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000011 0 0 -1 -0.000002 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000025 0 0 -1 0.000012 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000007 0 0 -1 0.000003 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000037 0 0 -1 0.000003 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000013 0 0 -1 0.000011 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000004 0 0 -1 -0.000033 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000018 0 0 -1 -0.000023 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000007 0 0 -1 0.000012 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000025 0 0 -1 0.000026 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000017 0 0 -1 0.000005 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000025 0 0 -1 -0.000064 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000031 0 0 -1 -0.000006 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000029 0 0 -1 0.000002 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.00007 0 0 -1 -0.000003 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000026 0 0 -1 -0.000003 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000016 0 0 -1 0.000022 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000013 0 0 -1 -0.00001 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.00003 0 0 -1 0.000000 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000008 0 0 -1 -0.000005 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000016 0 0 -1 0.00003 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000077 0 0 -1 -0.000032 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000021 0 0 -1 -0.000015 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000069 0 0 -1 0.000006 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000038 0 0 -1 0.000016 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000014 0 0 -1 0.000011 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000002 0 0 -1 0.00002 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000016 0 0 -1 -0.000043 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000006 0 0 -1 0.000003 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000012 0 0 -1 -0.000019 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000002 0 0 -1 -0.000014 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000015 0 0 -1 0.000011 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000001 0 0 -1 0.000008 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000019 0 0 -1 0.000041 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000039 0 0 -1 0.000057 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000005 0 0 -1 0.000008 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000005 0 0 -1 -0.000002 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000002 0 0 -1 -0.000068 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000026 0 0 -1 0.000062 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.00003 0 0 -1 -0.000016 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000015 0 0 -1 0.000016 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000063 0 0 -1 0.000003 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000062 0 0 -1 0.000004 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000014 0 0 -1 -0.000001 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000027 0 0 -1 0.000001 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000005 0 0 -1 0.000000 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000035 0 0 -1 -0.000009 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000028 0 0 -1 -0.00001 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000032 0 0 -1 0.000036 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000063 0 0 -1 0.000005 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000094 0 0 -1 -0.000016 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000034 0 0 -1 -0.000014 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000033 0 0 -1 -0.000041 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.00003 0 0 -1 -0.000005 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000035 0 0 -1 -0.000018 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000015 0 0 -1 0.000015 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000008 0 0 -1 0.000061 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000011 0 0 -1 0.000004 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000033 0 0 -1 0.000007 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000029 0 0 -1 -0.000023 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000018 0 0 -1 0.000002 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000014 0 0 -1 -0.000011 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000003 0 0 -1 0.000024 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000043 0 0 -1 -0.000008 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000008 0 0 -1 -0.000013 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000005 0 0 -1 -0.000016 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000007 0 0 -1 0.000004 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000056 0 0 -1 0.000019 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000007 0 0 -1 0.000011 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000005 0 0 -1 -0.000003 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000012 0 0 -1 -0.000022 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000005 0 0 -1 0.000009 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000003 0 0 -1 -0.000009 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.00003 0 0 -1 -0.000021 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000062 0 0 -1 -0.000007 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000051 0 0 -1 0.000004 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000101 0 0 -1 0.000037 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000004 0 0 -1 0.000021 0 0 0 1 1 0 0 167.761 -0.000000 1 0 -0.000076 0 0 -1 -0.000002 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.000006 0 0 -1 0.000035 0 0 0 1 1 0 0 167.761 -0.000000 1 0 0.00004 0 0 -1 0.000026 0 0 0 1 - - - - - - - - LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR - - - - - - - - - - - - - - - - 0 0.033333 0.066666 0.1 0.133333 0.166667 0.2 0.233333 0.266667 0.3 0.333333 0.366667 0.4 0.433333 0.466667 0.5 0.533333 0.566667 0.6 0.633333 0.666667 0.7 0.733333 0.766667 0.8 0.833333 0.866667 0.9 0.933333 0.966667 1 1.03333 1.06667 1.1 1.13333 1.16667 1.2 1.23333 1.26667 1.3 1.33333 1.36667 1.4 1.43333 1.46667 1.5 1.53333 1.56667 1.6 1.63333 1.66667 1.7 1.73333 1.76667 1.8 1.83333 1.86667 1.9 1.93333 1.96667 2 2.03333 2.06667 2.1 2.13333 2.16667 2.2 2.23333 2.26667 2.3 2.33333 2.36667 2.4 2.43333 2.46667 2.5 2.53333 2.56667 2.6 2.63333 2.66667 2.7 2.73333 2.76667 2.8 2.83333 2.86667 2.9 2.93333 2.96667 3 3.03333 3.06667 3.1 3.13333 3.16667 3.2 3.23333 3.26667 3.3 3.33333 - - - - - - - CONSTANT - CONSTANT - - - - 0.429568 0.848459 0.309172 -115.92 0.861327 -0.487813 0.141963 125.412 0.271268 0.205316 -0.940351 124.981 0 0 0 1 0.414135 0.861857 0.292737 -114.26 0.868422 -0.470463 0.156551 120.63 0.272646 0.189386 -0.943291 131.056 0 0 0 1 0.393969 0.877361 0.273911 -112.518 0.878343 -0.447166 0.168983 115.442 0.270743 0.174014 -0.946793 137.085 0 0 0 1 0.386422 0.886252 0.255412 -110.479 0.882967 -0.435495 0.175249 110.057 0.266546 0.1578 -0.950817 143.031 0 0 0 1 0.408573 0.88068 0.239734 -108.011 0.874018 -0.453188 0.175251 104.786 0.262984 0.137929 -0.954889 148.749 0 0 0 1 0.480036 0.846385 0.230647 -105.094 0.836115 -0.520997 0.171683 100.035 0.265477 0.110433 -0.957772 154.006 0 0 0 1 0.582707 0.77933 0.230427 -101.655 0.766452 -0.621274 0.163005 96.0177 0.270193 0.081627 -0.95934 158.789 0 0 0 1 0.684247 0.689777 0.236675 -97.6841 0.677637 -0.721327 0.143164 93.0422 0.26947 0.062421 -0.960984 162.991 0 0 0 1 0.775238 0.582488 0.244365 -92.7271 0.575063 -0.810881 0.108513 91.1062 0.261358 0.056402 -0.963593 166.929 0 0 0 1 0.856826 0.452785 0.246646 -86.5382 0.453072 -0.889518 0.059018 89.7743 0.246119 0.061179 -0.967307 170.923 0 0 0 1 0.916742 0.324731 0.232667 -79.686 0.332027 -0.943234 0.008224 88.8477 0.22213 0.069712 -0.972522 174.696 0 0 0 1 0.956245 0.208734 0.205001 -72.8976 0.219844 -0.974985 -0.032745 88.1947 0.193038 0.076381 -0.978214 177.96 0 0 0 1 0.978883 0.107643 0.173783 -66.6625 0.12027 -0.990688 -0.063809 87.7305 0.165296 0.083362 -0.982715 180.613 0 0 0 1 0.988665 0.037923 0.145273 -61.6267 0.050401 -0.995258 -0.083193 87.4635 0.141428 0.089572 -0.985888 182.521 0 0 0 1 0.992285 0.002759 0.123943 -58.4975 0.014425 -0.995531 -0.093326 87.4474 0.123132 0.094394 -0.987891 183.555 0 0 0 1 0.993853 -0.006712 0.110503 -57.8232 0.004174 -0.995179 -0.097985 87.7391 0.110627 0.097844 -0.989034 183.63 0 0 0 1 0.994707 0.008648 0.102389 -60.7708 0.018088 -0.995629 -0.091628 88.5715 0.101149 0.092995 -0.990516 182.275 0 0 0 1 0.994355 0.040467 0.098081 -67.1313 0.0482 -0.995803 -0.077801 89.9402 0.094521 0.082089 -0.992132 179.352 0 0 0 1 0.992308 0.070423 0.10181 -75.7375 0.077777 -0.994499 -0.070165 91.5532 0.096309 0.077544 -0.992326 175.06 0 0 0 1 0.984346 0.112515 0.135663 -85.3657 0.123438 -0.989517 -0.074959 93.179 0.125807 0.090532 -0.987916 169.693 0 0 0 1 0.970497 0.169177 0.171795 -94.6246 0.184122 -0.980035 -0.075031 94.7186 0.155671 0.10445 -0.982271 163.831 0 0 0 1 0.948042 0.242175 0.206318 -102.596 0.260832 -0.962972 -0.068201 96.3344 0.182161 0.118473 -0.976106 157.991 0 0 0 1 0.916265 0.32571 0.233178 -108.07 0.346698 -0.936401 -0.054343 98.2688 0.200647 0.130635 -0.970915 153.077 0 0 0 1 0.875528 0.410082 0.255508 -111.57 0.432537 -0.900887 -0.036245 101.146 0.21532 0.14225 -0.966127 148.633 0 0 0 1 0.825785 0.490519 0.278334 -114.25 0.514318 -0.857473 -0.014764 105.118 0.231421 0.155344 -0.960371 143.77 0 0 0 1 0.768664 0.565475 0.298987 -116.065 0.589951 -0.807374 0.010285 109.731 0.247211 0.168481 -0.954201 138.793 0 0 0 1 0.70704 0.633172 0.31494 -117.029 0.657312 -0.752682 0.037565 114.421 0.260835 0.180454 -0.948368 134.13 0 0 0 1 0.640808 0.695527 0.324974 -117.289 0.718186 -0.692681 0.066339 118.827 0.271245 0.190881 -0.943394 130.019 0 0 0 1 0.572194 0.75178 0.327751 -117.028 0.771914 -0.628678 0.094412 122.406 0.277028 0.198973 -0.940035 126.906 0 0 0 1 0.501898 0.802455 0.322746 -116.494 0.819252 -0.560713 0.120113 124.736 0.277353 0.204125 -0.938833 125.121 0 0 0 1 0.429508 0.848371 0.309498 -115.92 0.861301 -0.487853 0.141988 125.412 0.271448 0.205586 -0.94024 124.981 0 0 0 1 0.375514 0.87848 0.295403 -115.236 0.886527 -0.433409 0.161945 123.696 0.270296 0.20107 -0.941547 127.297 0 0 0 1 0.361623 0.887588 0.285335 -114.111 0.889924 -0.419859 0.178194 119.737 0.277963 0.189488 -0.941717 132 0 0 0 1 0.379552 0.88369 0.273921 -112.277 0.880876 -0.435693 0.185011 114.234 0.282838 0.171069 -0.943789 138.286 0 0 0 1 0.415351 0.872672 0.256759 -109.567 0.865868 -0.465803 0.182482 107.947 0.278847 0.146526 -0.949092 145.318 0 0 0 1 0.484053 0.841626 0.239497 -106.07 0.830951 -0.527894 0.175636 101.811 0.274248 0.113993 -0.954879 152.165 0 0 0 1 0.583948 0.777781 0.232512 -101.976 0.764692 -0.623164 0.164052 96.5541 0.27249 0.082002 -0.958658 158.258 0 0 0 1 0.684247 0.689783 0.236659 -97.6832 0.677647 -0.721321 0.14315 93.0404 0.269449 0.062421 -0.96099 162.993 0 0 0 1 0.775161 0.582432 0.24474 -92.7271 0.57503 -0.810905 0.108508 91.1061 0.26166 0.056622 -0.963498 166.929 0 0 0 1 0.857255 0.451965 0.246662 -86.4975 0.452305 -0.889931 0.058692 89.7672 0.246038 0.061251 -0.967323 170.947 0 0 0 1 0.916807 0.324778 0.232342 -79.6861 0.33203 -0.943232 0.008318 88.8478 0.221854 0.069518 -0.972599 174.696 0 0 0 1 0.956298 0.208771 0.204717 -72.8975 0.219835 -0.974992 -0.032621 88.1947 0.192787 0.076198 -0.978277 177.96 0 0 0 1 0.979009 0.107134 0.173389 -66.6273 0.119725 -0.990753 -0.063836 87.7282 0.164947 0.083256 -0.982782 180.628 0 0 0 1 0.988681 0.037937 0.145157 -61.6268 0.050392 -0.995266 -0.0831 87.4637 0.141317 0.089474 -0.985913 182.521 0 0 0 1 0.992291 0.002764 0.123898 -58.4974 0.01442 -0.995535 -0.093284 87.4474 0.123087 0.094352 -0.9879 183.555 0 0 0 1 0.993853 -0.006711 0.110502 -57.8232 0.004173 -0.995179 -0.097985 87.739 0.110627 0.097844 -0.989034 183.63 0 0 0 1 0.994706 0.008646 0.102402 -60.7709 0.018088 -0.995627 -0.091642 88.5715 0.101161 0.093009 -0.990513 182.275 0 0 0 1 0.994355 0.040466 0.098089 -67.1313 0.0482 -0.995802 -0.077806 89.9402 0.094529 0.082095 -0.992131 179.352 0 0 0 1 0.992308 0.070425 0.10181 -75.7375 0.077779 -0.994499 -0.070165 91.5533 0.096309 0.077544 -0.992326 175.06 0 0 0 1 0.984345 0.112516 0.135664 -85.3657 0.123438 -0.989517 -0.07496 93.179 0.125808 0.090532 -0.987916 169.693 0 0 0 1 0.970497 0.169178 0.1718 -94.6246 0.184123 -0.980035 -0.075035 94.7186 0.155675 0.104454 -0.98227 163.831 0 0 0 1 0.948208 0.241684 0.206135 -102.554 0.260323 -0.963105 -0.068272 96.3233 0.182029 0.118398 -0.976139 158.025 0 0 0 1 0.916261 0.325707 0.233195 -108.07 0.346699 -0.9364 -0.05435 98.2688 0.200662 0.130647 -0.970911 153.077 0 0 0 1 0.875523 0.410078 0.255532 -111.57 0.432538 -0.900887 -0.036251 101.146 0.215339 0.142267 -0.966121 148.633 0 0 0 1 0.825444 0.490999 0.278501 -114.264 0.51481 -0.857179 -0.014625 105.145 0.231544 0.155447 -0.960325 143.739 0 0 0 1 0.768658 0.565465 0.299021 -116.065 0.589948 -0.807376 0.010278 109.731 0.247235 0.168506 -0.954192 138.794 0 0 0 1 0.707032 0.633163 0.314977 -117.029 0.657311 -0.752683 0.03756 114.421 0.26086 0.180481 -0.948356 134.13 0 0 0 1 0.640801 0.695518 0.325009 -117.289 0.718185 -0.692683 0.066337 118.827 0.271267 0.190907 -0.943382 130.019 0 0 0 1 0.572188 0.751772 0.32778 -117.028 0.771911 -0.628681 0.094412 122.406 0.277045 0.198995 -0.940025 126.906 0 0 0 1 0.501894 0.80245 0.322762 -116.494 0.81925 -0.560715 0.120114 124.736 0.277364 0.204139 -0.938828 125.121 0 0 0 1 0.429509 0.848371 0.309498 -115.92 0.8613 -0.487854 0.141988 125.412 0.271448 0.205586 -0.94024 124.981 0 0 0 1 0.375735 0.878377 0.295425 -115.242 0.886443 -0.433619 0.161844 123.713 0.270262 0.201067 -0.941558 127.275 0 0 0 1 0.361652 0.887632 0.285163 -114.111 0.889942 -0.419832 0.178167 119.737 0.277867 0.189344 -0.941774 132 0 0 0 1 0.379767 0.883711 0.273553 -112.263 0.880835 -0.43579 0.184973 114.197 0.282674 0.170709 -0.943903 138.327 0 0 0 1 0.415405 0.872743 0.256435 -109.567 0.865909 -0.465753 0.182422 107.947 0.278642 0.14627 -0.949191 145.317 0 0 0 1 0.484097 0.841673 0.239242 -106.07 0.830984 -0.527859 0.175588 101.811 0.274074 0.113805 -0.954951 152.165 0 0 0 1 0.583968 0.777798 0.232403 -101.976 0.764706 -0.623151 0.164035 96.5542 0.272408 0.081927 -0.958687 158.258 0 0 0 1 0.684247 0.689782 0.236659 -97.6832 0.677646 -0.721321 0.14315 93.0404 0.269449 0.062421 -0.96099 162.993 0 0 0 1 0.775157 0.582428 0.244764 -92.7271 0.575027 -0.810907 0.108508 91.1061 0.261679 0.056635 -0.963492 166.929 0 0 0 1 0.857252 0.451964 0.246673 -86.4975 0.452304 -0.889931 0.05869 89.7672 0.246048 0.061258 -0.96732 170.947 0 0 0 1 0.916807 0.324779 0.232342 -79.6861 0.332031 -0.943232 0.008317 88.8478 0.221854 0.069519 -0.972599 174.696 0 0 0 1 0.956298 0.208771 0.204717 -72.8975 0.219836 -0.974991 -0.032621 88.1947 0.192787 0.0762 -0.978277 177.96 0 0 0 1 0.978917 0.107669 0.173579 -66.6626 0.120257 -0.990698 -0.063683 87.7306 0.165108 0.083214 -0.982759 180.613 0 0 0 1 0.988681 0.037936 0.145157 -61.6267 0.050391 -0.995266 -0.083101 87.4636 0.141317 0.089475 -0.985913 182.521 0 0 0 1 0.992291 0.002764 0.123898 -58.4974 0.014421 -0.995535 -0.093284 87.4474 0.123087 0.094352 -0.9879 183.555 0 0 0 1 0.993853 -0.006711 0.110502 -57.8232 0.004173 -0.995179 -0.097985 87.739 0.110627 0.097844 -0.989034 183.63 0 0 0 1 0.994703 0.008498 0.10244 -60.7417 0.01795 -0.995624 -0.091705 88.5645 0.101212 0.093058 -0.990503 182.288 0 0 0 1 0.994355 0.040466 0.098089 -67.1313 0.0482 -0.995802 -0.077806 89.9402 0.094529 0.082095 -0.992131 179.352 0 0 0 1 0.992286 0.070658 0.101859 -75.7945 0.078015 -0.994482 -0.070139 91.5633 0.096341 0.077544 -0.992323 175.03 0 0 0 1 0.984343 0.112513 0.135686 -85.3656 0.123439 -0.989515 -0.074977 93.1789 0.125828 0.090553 -0.987911 169.693 0 0 0 1 0.970489 0.16917 0.171849 -94.6246 0.184125 -0.980032 -0.075067 94.7186 0.155718 0.104494 -0.982259 163.831 0 0 0 1 0.948194 0.24167 0.206214 -102.554 0.260327 -0.963101 -0.068314 96.3234 0.182095 0.118458 -0.976119 158.025 0 0 0 1 0.916466 0.325162 0.233152 -108.042 0.346166 -0.936589 -0.054497 98.2537 0.200647 0.130655 -0.970912 153.106 0 0 0 1 0.875494 0.41005 0.255676 -111.57 0.432542 -0.900883 -0.0363 101.146 0.215449 0.142371 -0.966081 148.633 0 0 0 1 0.825406 0.490962 0.278677 -114.264 0.514812 -0.857177 -0.014669 105.145 0.231673 0.155574 -0.960272 143.739 0 0 0 1 0.768611 0.565419 0.299228 -116.065 0.589948 -0.807376 0.010241 109.731 0.247381 0.168657 -0.954126 138.794 0 0 0 1 0.70698 0.633105 0.315212 -117.029 0.657304 -0.75269 0.037531 114.421 0.261018 0.180656 -0.948279 134.13 0 0 0 1 0.641165 0.695078 0.32523 -117.289 0.717815 -0.693085 0.066139 118.802 0.271384 0.191048 -0.943319 130.042 0 0 0 1 0.572124 0.751696 0.328065 -117.028 0.771896 -0.628701 0.094406 122.406 0.27722 0.19922 -0.939926 126.906 0 0 0 1 0.501834 0.802365 0.323069 -116.494 0.819228 -0.560747 0.120122 124.736 0.277541 0.204386 -0.938721 125.121 0 0 0 1 0.429449 0.848282 0.309824 -115.92 0.861274 -0.487894 0.142012 125.412 0.271627 0.205856 -0.940129 124.981 0 0 0 1 0.375676 0.878287 0.295769 -115.242 0.886412 -0.433667 0.161885 123.714 0.270447 0.201356 -0.941442 127.275 0 0 0 1 0.361591 0.887542 0.285519 -114.111 0.889905 -0.419887 0.178222 119.737 0.278066 0.189641 -0.941656 132 0 0 0 1 0.379707 0.883628 0.273905 -112.263 0.880795 -0.435846 0.185033 114.197 0.282881 0.170997 -0.943789 138.327 0 0 0 1 0.41535 0.872674 0.256759 -109.567 0.86587 -0.4658 0.182482 107.947 0.278846 0.146527 -0.949092 145.317 0 0 0 1 0.484058 0.841632 0.239465 -106.07 0.830956 -0.527889 0.175629 101.811 0.274226 0.11397 -0.954888 152.165 0 0 0 1 0.583954 0.777787 0.232478 -101.976 0.764697 -0.623159 0.164047 96.5542 0.272464 0.081979 -0.958667 158.258 0 0 0 1 0.683645 0.690393 0.236615 -97.7121 0.678239 -0.72073 0.14332 93.0574 0.269483 0.062501 -0.960975 162.966 0 0 0 1 0.775137 0.582414 0.244859 -92.7271 0.575018 -0.810913 0.108507 91.1061 0.261755 0.05669 -0.963468 166.929 0 0 0 1 0.857196 0.451926 0.246938 -86.4975 0.452292 -0.88994 0.058653 89.7672 0.246266 0.061409 -0.967255 170.947 0 0 0 1 0.916741 0.324733 0.232665 -79.6861 0.33203 -0.943233 0.008225 88.8478 0.222129 0.069711 -0.972522 174.696 0 0 0 1 - - - - - - - - LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR - - - - - - - - - - - - - - - - 0 0.033333 0.066666 0.1 0.133333 0.166667 0.2 0.233333 0.266667 0.3 0.333333 0.366667 0.4 0.433333 0.466667 0.5 0.533333 0.566667 0.6 0.633333 0.666667 0.7 0.733333 0.766667 0.8 0.833333 0.866667 0.9 0.933333 0.966667 1 1.03333 1.06667 1.1 1.13333 1.16667 1.2 1.23333 1.26667 1.3 1.33333 1.36667 1.4 1.43333 1.46667 1.5 1.53333 1.56667 1.6 1.63333 1.66667 1.7 1.73333 1.76667 1.8 1.83333 1.86667 1.9 1.93333 1.96667 2 2.03333 2.06667 2.1 2.13333 2.16667 2.2 2.23333 2.26667 2.3 2.33333 2.36667 2.4 2.43333 2.46667 2.5 2.53333 2.56667 2.6 2.63333 2.66667 2.7 2.73333 2.76667 2.8 2.83333 2.86667 2.9 2.93333 2.96667 3 3.03333 3.06667 3.1 3.13333 3.16667 3.2 3.23333 3.26667 3.3 3.33333 - - - - - - - CONSTANT - CONSTANT - - - - 0.371507 0.92843 0 547.819 -0.92843 0.371507 0 -0.000005 0 0 1 -0.000012 0 0 0 1 0.332374 0.943148 0 547.819 -0.943148 0.332374 0 0.000013 0 0 1 -0.000012 0 0 0 1 0.307307 0.95161 0 547.819 -0.95161 0.307307 0 0.000033 0 0 1 -0.000012 0 0 0 1 0.274732 0.961521 0 547.819 -0.961521 0.274732 0 -0.000023 0 0 1 -0.000012 0 0 0 1 0.206204 0.978509 0 547.819 -0.978508 0.206204 0 -0.000007 0 0 1 -0.000012 0 0 0 1 0.059911 0.998204 0 547.819 -0.998204 0.059911 0 -0.000007 0 0 1 -0.000012 0 0 0 1 -0.124243 0.992252 0 547.819 -0.992252 -0.124243 0 -0.000000 0 0 1 -0.000012 0 0 0 1 -0.265996 0.963974 0 547.819 -0.963974 -0.265996 0 0.000023 0 0 1 -0.000012 0 0 0 1 -0.347693 0.937608 0 547.819 -0.937608 -0.347693 0 -0.000043 0 0 1 -0.000012 0 0 0 1 -0.387139 0.922021 0 547.819 -0.922021 -0.387139 0 -0.000006 0 0 1 -0.000012 0 0 0 1 -0.383624 0.92349 0 547.819 -0.92349 -0.383624 0 -0.000071 0 0 1 -0.000012 0 0 0 1 -0.345151 0.938547 0 547.819 -0.938547 -0.345151 0 -0.000026 0 0 1 -0.000012 0 0 0 1 -0.27213 0.96226 0 547.819 -0.96226 -0.27213 0 -0.000048 0 0 1 -0.000012 0 0 0 1 -0.169694 0.985496 0 547.819 -0.985497 -0.169694 0 -0.00001 0 0 1 -0.000012 0 0 0 1 -0.056478 0.998404 0 547.819 -0.998404 -0.056478 0 0.000026 0 0 1 -0.000012 0 0 0 1 0.044008 0.999031 0 547.819 -0.999031 0.044008 0 -0.000085 0 0 1 -0.000012 0 0 0 1 0.078392 0.996922 0 547.819 -0.996922 0.078392 0 0.000046 0 0 1 -0.000012 0 0 0 1 0.052376 0.998627 0 547.819 -0.998627 0.052376 0 -0.000005 0 0 1 -0.000012 0 0 0 1 0.025234 0.999682 0 547.819 -0.999682 0.025234 0 -0.000046 0 0 1 -0.000012 0 0 0 1 -0.044561 0.999007 0 547.819 -0.999007 -0.044561 0 -0.000147 0 0 1 -0.000012 0 0 0 1 -0.093552 0.995614 0 547.819 -0.995614 -0.093552 0 -0.000049 0 0 1 -0.000012 0 0 0 1 -0.116381 0.993205 0 547.819 -0.993205 -0.116381 0 -0.000067 0 0 1 -0.000012 0 0 0 1 -0.112501 0.993652 0 547.819 -0.993652 -0.112501 0 -0.000005 0 0 1 -0.000012 0 0 0 1 -0.088307 0.996093 0 547.819 -0.996093 -0.088307 0 0.00005 0 0 1 -0.000012 0 0 0 1 -0.047213 0.998885 0 547.819 -0.998885 -0.047213 0 -0.000037 0 0 1 -0.000012 0 0 0 1 0.007989 0.999968 0 547.819 -0.999968 0.007989 0 0.000041 0 0 1 -0.000012 0 0 0 1 0.072962 0.997335 0 547.819 -0.997335 0.072962 0 0.000029 0 0 1 -0.000012 0 0 0 1 0.145973 0.989288 0 547.819 -0.989288 0.145973 0 -0.000015 0 0 1 -0.000012 0 0 0 1 0.222291 0.97498 0 547.819 -0.97498 0.222291 0 0.000023 0 0 1 -0.000012 0 0 0 1 0.29835 0.954457 0 547.819 -0.954457 0.29835 0 -0.000002 0 0 1 -0.000012 0 0 0 1 0.371509 0.92843 0 547.819 -0.928429 0.371509 0 0.000035 0 0 1 -0.000012 0 0 0 1 0.40134 0.915929 0 547.819 -0.915929 0.40134 0 -0.000002 0 0 1 -0.000012 0 0 0 1 0.36677 0.930312 0 547.819 -0.930312 0.366769 0 0.000001 0 0 1 -0.000012 0 0 0 1 0.295347 0.95539 0 547.819 -0.95539 0.295347 0 -0.000021 0 0 1 -0.000012 0 0 0 1 0.204634 0.978838 0 547.819 -0.978838 0.204634 0 0.000046 0 0 1 -0.000012 0 0 0 1 0.057518 0.998345 0 547.819 -0.998344 0.057518 0 -0.000024 0 0 1 -0.000012 0 0 0 1 -0.125455 0.992099 0 547.819 -0.992099 -0.125455 0 -0.000041 0 0 1 -0.000012 0 0 0 1 -0.265994 0.963975 0 547.819 -0.963975 -0.265994 0 0.00006 0 0 1 -0.000012 0 0 0 1 -0.347694 0.937608 0 547.819 -0.937608 -0.347694 0 -0.000001 0 0 1 -0.000012 0 0 0 1 -0.38714 0.922021 0 547.819 -0.922021 -0.38714 0 -0.000022 0 0 1 -0.000012 0 0 0 1 -0.383625 0.923488 0 547.819 -0.923488 -0.383626 0 -0.000016 0 0 1 -0.000012 0 0 0 1 -0.345151 0.938547 0 547.819 -0.938547 -0.345151 0 -0.00003 0 0 1 -0.000012 0 0 0 1 -0.271583 0.962415 0 547.819 -0.962415 -0.271583 0 0.000046 0 0 1 -0.000012 0 0 0 1 -0.169696 0.985496 0 547.819 -0.985496 -0.169696 0 0.000022 0 0 1 -0.000012 0 0 0 1 -0.056478 0.998404 0 547.819 -0.998404 -0.056478 0 0.000005 0 0 1 -0.000012 0 0 0 1 0.044008 0.999031 0 547.819 -0.999031 0.044008 0 -0.000026 0 0 1 -0.000012 0 0 0 1 0.07839 0.996922 0 547.819 -0.996923 0.07839 0 0.000000 0 0 1 -0.000012 0 0 0 1 0.052375 0.998627 0 547.819 -0.998627 0.052375 0 -0.000048 0 0 1 -0.000012 0 0 0 1 0.025234 0.999682 0 547.819 -0.999682 0.025234 0 -0.000012 0 0 1 -0.000012 0 0 0 1 -0.044561 0.999006 0 547.819 -0.999007 -0.044561 0 0.000067 0 0 1 -0.000012 0 0 0 1 -0.093552 0.995614 0 547.819 -0.995614 -0.093552 0 0.000003 0 0 1 -0.000012 0 0 0 1 -0.116381 0.993205 0 547.819 -0.993205 -0.116381 0 0.000025 0 0 1 -0.000012 0 0 0 1 -0.1125 0.993652 0 547.819 -0.993652 -0.1125 0 0.00005 0 0 1 -0.000012 0 0 0 1 -0.088306 0.996093 0 547.819 -0.996093 -0.088306 0 0.000089 0 0 1 -0.000012 0 0 0 1 -0.046912 0.998899 0 547.819 -0.998899 -0.046912 0 -0.000045 0 0 1 -0.000012 0 0 0 1 0.007988 0.999968 0 547.819 -0.999968 0.007988 0 0.000042 0 0 1 -0.000012 0 0 0 1 0.072962 0.997335 0 547.819 -0.997335 0.072962 0 -0.000016 0 0 1 -0.000012 0 0 0 1 0.145974 0.989288 0 547.819 -0.989288 0.145974 0 -0.000007 0 0 1 -0.000012 0 0 0 1 0.222291 0.97498 0 547.819 -0.97498 0.222291 0 -0.000023 0 0 1 -0.000012 0 0 0 1 0.298351 0.954456 0 547.819 -0.954456 0.298351 0 -0.000008 0 0 1 -0.000012 0 0 0 1 0.371508 0.92843 0 547.819 -0.92843 0.371508 0 -0.000049 0 0 1 -0.000012 0 0 0 1 0.401342 0.915928 0 547.819 -0.915928 0.401342 0 0.000037 0 0 1 -0.000012 0 0 0 1 0.366769 0.930312 0 547.819 -0.930312 0.366769 0 0.000026 0 0 1 -0.000012 0 0 0 1 0.294841 0.955546 0 547.819 -0.955546 0.294841 0 -0.000001 0 0 1 -0.000012 0 0 0 1 0.204636 0.978838 0 547.819 -0.978838 0.204636 0 -0.000021 0 0 1 -0.000012 0 0 0 1 0.057518 0.998344 0 547.819 -0.998344 0.057518 0 -0.000004 0 0 1 -0.000012 0 0 0 1 -0.125456 0.992099 0 547.819 -0.992099 -0.125456 0 0.000001 0 0 1 -0.000012 0 0 0 1 -0.265994 0.963975 0 547.819 -0.963975 -0.265994 0 0.000011 0 0 1 -0.000012 0 0 0 1 -0.347694 0.937608 0 547.819 -0.937608 -0.347694 0 0.000045 0 0 1 -0.000012 0 0 0 1 -0.38714 0.922021 0 547.819 -0.922021 -0.38714 0 -0.000001 0 0 1 -0.000012 0 0 0 1 -0.383625 0.923488 0 547.819 -0.923488 -0.383625 0 0.000047 0 0 1 -0.000012 0 0 0 1 -0.345151 0.938547 0 547.819 -0.938547 -0.345151 0 -0.000107 0 0 1 -0.000012 0 0 0 1 -0.272131 0.96226 0 547.819 -0.96226 -0.272131 0 0.000021 0 0 1 -0.000012 0 0 0 1 -0.169694 0.985497 0 547.819 -0.985497 -0.169694 0 0.000045 0 0 1 -0.000012 0 0 0 1 -0.056478 0.998404 0 547.819 -0.998404 -0.056478 0 -0.000008 0 0 1 -0.000012 0 0 0 1 0.044008 0.999031 0 547.819 -0.999031 0.044008 0 -0.000056 0 0 1 -0.000012 0 0 0 1 0.078392 0.996923 0 547.819 -0.996923 0.078392 0 0.000024 0 0 1 -0.000012 0 0 0 1 0.052374 0.998627 0 547.819 -0.998627 0.052374 0 -0.000071 0 0 1 -0.000012 0 0 0 1 0.024928 0.99969 0 547.819 -0.99969 0.024928 0 -0.000044 0 0 1 -0.000012 0 0 0 1 -0.044561 0.999007 0 547.819 -0.999007 -0.044561 0 0.000032 0 0 1 -0.000012 0 0 0 1 -0.093553 0.995614 0 547.819 -0.995614 -0.093553 0 -0.000038 0 0 1 -0.000012 0 0 0 1 -0.116382 0.993205 0 547.819 -0.993205 -0.116382 0 0.000051 0 0 1 -0.000012 0 0 0 1 -0.112572 0.993644 0 547.819 -0.993644 -0.112572 0 0.000013 0 0 1 -0.000012 0 0 0 1 -0.088309 0.996093 0 547.819 -0.996093 -0.088309 0 0.000019 0 0 1 -0.000012 0 0 0 1 -0.046912 0.998899 0 547.819 -0.998899 -0.046912 0 0.000002 0 0 1 -0.000012 0 0 0 1 0.007988 0.999968 0 547.819 -0.999968 0.007988 0 0.000032 0 0 1 -0.000012 0 0 0 1 0.072962 0.997335 0 547.819 -0.997335 0.072962 0 -0.000036 0 0 1 -0.000012 0 0 0 1 0.145506 0.989357 0 547.819 -0.989357 0.145506 0 0.000009 0 0 1 -0.000012 0 0 0 1 0.222293 0.97498 0 547.819 -0.97498 0.222293 0 -0.000017 0 0 1 -0.000012 0 0 0 1 0.29835 0.954457 0 547.819 -0.954456 0.29835 0 0.000023 0 0 1 -0.000012 0 0 0 1 0.371509 0.928429 0 547.819 -0.928429 0.371509 0 -0.000025 0 0 1 -0.000012 0 0 0 1 0.401342 0.915928 0 547.819 -0.915928 0.401342 0 0.000005 0 0 1 -0.000012 0 0 0 1 0.366769 0.930312 0 547.819 -0.930312 0.366769 0 -0.000003 0 0 1 -0.000012 0 0 0 1 0.294841 0.955546 0 547.819 -0.955546 0.294841 0 -0.000019 0 0 1 -0.000012 0 0 0 1 0.204636 0.978838 0 547.819 -0.978838 0.204636 0 -0.000013 0 0 1 -0.000012 0 0 0 1 0.057517 0.998344 0 547.819 -0.998344 0.057517 0 0.000028 0 0 1 -0.000012 0 0 0 1 -0.125455 0.992099 0 547.819 -0.992099 -0.125455 0 0.000013 0 0 1 -0.000012 0 0 0 1 -0.265304 0.964165 0 547.819 -0.964165 -0.265304 0 -0.00003 0 0 1 -0.000012 0 0 0 1 -0.347694 0.937608 0 547.819 -0.937608 -0.347694 0 0.000004 0 0 1 -0.000012 0 0 0 1 -0.38714 0.922021 0 547.819 -0.922021 -0.38714 0 -0.000019 0 0 1 -0.000012 0 0 0 1 -0.383626 0.923488 0 547.819 -0.923488 -0.383626 0 0.000038 0 0 1 -0.000012 0 0 0 1 - - - - - - - - LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR - - - - - - - - - - - - - - - - 0 0.033333 0.066666 0.1 0.133333 0.166667 0.2 0.233333 0.266667 0.3 0.333333 0.366667 0.4 0.433333 0.466667 0.5 0.533333 0.566667 0.6 0.633333 0.666667 0.7 0.733333 0.766667 0.8 0.833333 0.866667 0.9 0.933333 0.966667 1 1.03333 1.06667 1.1 1.13333 1.16667 1.2 1.23333 1.26667 1.3 1.33333 1.36667 1.4 1.43333 1.46667 1.5 1.53333 1.56667 1.6 1.63333 1.66667 1.7 1.73333 1.76667 1.8 1.83333 1.86667 1.9 1.93333 1.96667 2 2.03333 2.06667 2.1 2.13333 2.16667 2.2 2.23333 2.26667 2.3 2.33333 2.36667 2.4 2.43333 2.46667 2.5 2.53333 2.56667 2.6 2.63333 2.66667 2.7 2.73333 2.76667 2.8 2.83333 2.86667 2.9 2.93333 2.96667 3 3.03333 3.06667 3.1 3.13333 3.16667 3.2 3.23333 3.26667 3.3 3.33333 - - - - - - - CONSTANT - CONSTANT - - - - 0.419188 -0.877486 -0.233021 532.748 0.873442 0.459808 -0.160238 0.000051 0.247751 -0.13636 0.959179 -0.000008 0 0 0 1 0.547481 -0.822753 -0.152782 532.748 0.801488 0.568043 -0.186933 -0.000015 0.240586 -0.02011 0.970419 -0.000008 0 0 0 1 0.679376 -0.730626 -0.068071 532.748 0.703991 0.675144 -0.220401 -0.000009 0.206989 0.101814 0.973031 -0.000008 0 0 0 1 0.77946 -0.626431 0.005114 532.748 0.606799 0.752953 -0.25467 0.000018 0.155682 0.201609 0.967015 -0.000008 0 0 0 1 0.824259 -0.563808 0.052128 532.748 0.554466 0.785076 -0.276087 0.000033 0.114735 0.25647 0.959718 -0.000008 0 0 0 1 0.785578 -0.616155 0.056741 532.748 0.606338 0.748277 -0.26914 0.000001 0.123374 0.245835 0.961428 -0.000008 0 0 0 1 0.682879 -0.730183 0.022563 532.748 0.71138 0.657634 -0.247903 -0.000053 0.166176 0.185339 0.968522 -0.000008 0 0 0 1 0.593786 -0.804265 -0.024002 532.748 0.78022 0.582813 -0.227126 -0.000017 0.196658 0.116137 0.97357 -0.000008 0 0 0 1 0.544955 -0.834824 -0.078052 532.748 0.81243 0.548759 -0.197031 -0.000013 0.207318 0.043961 0.977285 -0.000008 0 0 0 1 0.52572 -0.838807 -0.141498 532.748 0.826848 0.542965 -0.146665 0.000044 0.199852 -0.039892 0.979014 -0.000008 0 0 0 1 0.568442 -0.800576 -0.189611 532.748 0.804063 0.589401 -0.078034 0.000073 0.174229 -0.108101 0.978754 -0.000008 0 0 0 1 0.66921 -0.712129 -0.212203 532.748 0.728693 0.68484 -0.000218 -0.000032 0.145481 -0.154484 0.977226 -0.000008 0 0 0 1 0.786257 -0.579614 -0.21412 532.748 0.605488 0.791832 0.079917 -0.000032 0.123226 -0.192483 0.973533 -0.000008 0 0 0 1 0.883589 -0.423993 -0.198749 532.748 0.454944 0.877805 0.149943 -0.000025 0.110889 -0.222908 0.968512 -0.000008 0 0 0 1 0.943455 -0.2816 -0.174913 532.748 0.314366 0.927453 0.202496 -0.000007 0.105201 -0.246032 0.963536 -0.000008 0 0 0 1 0.970553 -0.186578 -0.152365 532.748 0.219337 0.945982 0.238764 0.000013 0.099585 -0.265153 0.95905 -0.000008 0 0 0 1 0.966455 -0.205678 -0.153819 532.748 0.240069 0.936267 0.256456 -0.00001 0.091268 -0.28478 0.954238 -0.000008 0 0 0 1 0.93285 -0.314297 -0.176093 532.748 0.351833 0.899908 0.257643 -0.000017 0.07749 -0.302298 0.950059 -0.000008 0 0 0 1 0.887858 -0.419362 -0.189324 532.748 0.456623 0.853682 0.250445 -0.000037 0.056595 -0.30881 0.949439 -0.000008 0 0 0 1 0.833052 -0.516128 -0.199089 532.748 0.550428 0.809292 0.205125 0.000006 0.05525 -0.280464 0.958273 -0.000008 0 0 0 1 0.767664 -0.607128 -0.205152 532.748 0.638173 0.753469 0.158177 -0.000032 0.058541 -0.252349 0.965864 -0.000008 0 0 0 1 0.694838 -0.687688 -0.210442 532.748 0.715902 0.689257 0.111399 0.000012 0.06844 -0.22806 0.971238 -0.000008 0 0 0 1 0.621229 -0.752648 -0.218165 532.748 0.779091 0.62313 0.068739 -0.000053 0.084208 -0.212674 0.973488 -0.000008 0 0 0 1 0.55205 -0.80295 -0.224747 532.748 0.827339 0.56101 0.027895 -0.000021 0.103686 -0.201342 0.974018 -0.000008 0 0 0 1 0.492238 -0.840442 -0.226627 532.748 0.861198 0.508085 -0.013685 0.000002 0.126648 -0.188434 0.973885 -0.000008 0 0 0 1 0.444819 -0.866464 -0.22666 532.748 0.882615 0.467061 -0.053326 0.000021 0.152069 -0.176332 0.972513 -0.000008 0 0 0 1 0.41195 -0.882518 -0.226845 532.748 0.89374 0.439843 -0.088135 0.000002 0.177557 -0.166433 0.969935 -0.000008 0 0 0 1 0.393161 -0.890729 -0.228092 532.748 0.897084 0.426004 -0.117307 0.000005 0.201657 -0.158497 0.966547 -0.000008 0 0 0 1 0.388614 -0.892171 -0.23024 532.748 0.894224 0.425428 -0.139189 -0.000027 0.222131 -0.151794 0.963129 -0.000008 0 0 0 1 0.397558 -0.887678 -0.232325 532.748 0.886238 0.437075 -0.153453 0.000012 0.23776 -0.144889 0.960457 -0.000008 0 0 0 1 0.419237 -0.877513 -0.232833 532.748 0.873371 0.459847 -0.16051 0.000033 0.247917 -0.136057 0.959179 -0.000008 0 0 0 1 0.504219 -0.842217 -0.190876 532.748 0.826065 0.534824 -0.177709 0.000033 0.251755 -0.068072 0.965394 -0.000008 0 0 0 1 0.646628 -0.756637 -0.096809 532.748 0.728106 0.650065 -0.217432 0.000048 0.22745 0.07011 0.971263 -0.000008 0 0 0 1 0.772351 -0.635189 0.002914 532.748 0.613308 0.744534 -0.26367 -0.000016 0.16531 0.205434 0.964608 -0.000008 0 0 0 1 0.827934 -0.557359 0.06226 532.748 0.549539 0.784097 -0.288443 0.000029 0.111948 0.273027 0.955471 -0.000008 0 0 0 1 0.7871 -0.613623 0.062771 532.748 0.604656 0.74745 -0.275155 0.000038 0.121924 0.254529 0.959348 -0.000008 0 0 0 1 0.683118 -0.729906 0.024205 532.748 0.711197 0.657344 -0.249194 -0.000051 0.165977 0.187444 0.968151 -0.000008 0 0 0 1 0.593786 -0.804265 -0.024006 532.748 0.780221 0.582812 -0.227122 -0.000034 0.196657 0.116131 0.97357 -0.000008 0 0 0 1 0.545021 -0.834811 -0.077736 532.748 0.812387 0.548748 -0.19724 -0.000044 0.207316 0.044348 0.977268 -0.000008 0 0 0 1 0.525742 -0.838741 -0.141805 532.748 0.826859 0.543037 -0.146342 0.000003 0.199748 -0.040314 0.979018 -0.000008 0 0 0 1 0.56839 -0.800545 -0.189896 532.748 0.804096 0.589379 -0.077853 0.000008 0.174245 -0.108443 0.978713 -0.000008 0 0 0 1 0.669172 -0.712089 -0.212459 532.748 0.728718 0.684813 -0.000047 -0.000091 0.145528 -0.154792 0.97717 -0.000008 0 0 0 1 0.786911 -0.578673 -0.214265 532.748 0.604646 0.792412 0.08053 -0.000024 0.123186 -0.192924 0.97345 -0.000008 0 0 0 1 0.883574 -0.423969 -0.198862 532.748 0.454958 0.877783 0.150035 -0.000024 0.110949 -0.223041 0.968475 -0.000008 0 0 0 1 0.94345 -0.281588 -0.174957 532.748 0.314369 0.927443 0.202537 -0.000091 0.105231 -0.246085 0.963519 -0.000008 0 0 0 1 0.970554 -0.186577 -0.152365 532.748 0.219336 0.945983 0.238765 0.000001 0.099585 -0.265153 0.95905 -0.000008 0 0 0 1 0.966456 -0.205681 -0.153807 532.748 0.240068 0.936271 0.256443 0.000036 0.09126 -0.284764 0.954244 -0.000008 0 0 0 1 0.93285 -0.314299 -0.176087 532.748 0.351832 0.89991 0.257637 0.000029 0.077487 -0.30229 0.950061 -0.000008 0 0 0 1 0.887858 -0.419362 -0.189325 532.748 0.456624 0.853681 0.250445 -0.000029 0.056596 -0.30881 0.949439 -0.000008 0 0 0 1 0.833052 -0.516127 -0.199088 532.748 0.550428 0.809292 0.205124 0.000019 0.05525 -0.280463 0.958274 -0.000008 0 0 0 1 0.767664 -0.60713 -0.205148 532.748 0.638173 0.753469 0.158173 0.000069 0.058541 -0.252343 0.965865 -0.000008 0 0 0 1 0.695299 -0.687236 -0.210395 532.748 0.715463 0.689669 0.111669 0.000027 0.06836 -0.228172 0.971218 -0.000008 0 0 0 1 0.621229 -0.752651 -0.218152 532.748 0.779091 0.623132 0.068726 0.00002 0.08421 -0.212655 0.973492 -0.000008 0 0 0 1 0.552052 -0.802954 -0.224728 532.748 0.827337 0.561014 0.027877 -0.000000 0.10369 -0.201316 0.974023 -0.000008 0 0 0 1 0.491904 -0.840642 -0.226609 532.748 0.861365 0.507794 -0.013961 -0.000017 0.126807 -0.188325 0.973886 -0.000008 0 0 0 1 0.444825 -0.866468 -0.226634 532.748 0.882611 0.467067 -0.05335 -0.000015 0.15208 -0.176298 0.972518 -0.000008 0 0 0 1 0.411955 -0.882523 -0.22682 532.748 0.893735 0.439848 -0.088162 -0.000013 0.177571 -0.166398 0.969938 -0.000008 0 0 0 1 0.393166 -0.890734 -0.228068 532.748 0.897078 0.426009 -0.117334 0.000037 0.201672 -0.158464 0.966549 -0.000008 0 0 0 1 0.388618 -0.892174 -0.230222 532.748 0.894219 0.425432 -0.139212 0.00001 0.222145 -0.151769 0.96313 -0.000008 0 0 0 1 0.397561 -0.887679 -0.232315 532.748 0.886234 0.437078 -0.153467 0.000003 0.237769 -0.144873 0.960457 -0.000008 0 0 0 1 0.419238 -0.877513 -0.232833 532.748 0.873371 0.459848 -0.160511 0.000003 0.247918 -0.136057 0.959179 -0.000008 0 0 0 1 0.503488 -0.842554 -0.191321 532.748 0.826518 0.534203 -0.177466 0.000036 0.251729 -0.068777 0.965351 -0.000008 0 0 0 1 0.646604 -0.756645 -0.09691 532.748 0.728141 0.650076 -0.217285 0.000002 0.227408 0.069933 0.971285 -0.000008 0 0 0 1 0.772866 -0.634561 0.003219 532.748 0.612759 0.744973 -0.263704 -0.000007 0.164938 0.205781 0.964598 -0.000008 0 0 0 1 0.827909 -0.55742 0.06205 532.748 0.549569 0.784169 -0.288189 0.000042 0.111984 0.272696 0.955561 -0.000008 0 0 0 1 0.787077 -0.613671 0.062592 532.748 0.60468 0.747498 -0.27497 -0.000005 0.121954 0.25427 0.959413 -0.000008 0 0 0 1 0.683103 -0.729923 0.024122 532.748 0.71121 0.657357 -0.249122 -0.000031 0.165983 0.187332 0.968172 -0.000008 0 0 0 1 0.593785 -0.804265 -0.024005 532.748 0.780221 0.582812 -0.227122 -0.000038 0.196657 0.116132 0.97357 -0.000008 0 0 0 1 0.545026 -0.83481 -0.077715 532.748 0.812384 0.548748 -0.197253 -0.000018 0.207316 0.044373 0.977267 -0.000008 0 0 0 1 0.525744 -0.838741 -0.141795 532.748 0.826858 0.543037 -0.146348 -0.000028 0.199747 -0.040302 0.979019 -0.000008 0 0 0 1 0.56839 -0.800545 -0.189896 532.748 0.804097 0.589379 -0.077853 0.000072 0.174245 -0.108444 0.978713 -0.000008 0 0 0 1 0.669172 -0.712089 -0.21246 532.748 0.728719 0.684813 -0.000047 -0.000025 0.145528 -0.154792 0.97717 -0.000008 0 0 0 1 0.786233 -0.579576 -0.214312 532.748 0.605506 0.791804 0.080058 -0.00003 0.123294 -0.192711 0.973479 -0.000008 0 0 0 1 0.883576 -0.423966 -0.198862 532.748 0.454955 0.877784 0.150036 0.000006 0.110949 -0.223041 0.968474 -0.000008 0 0 0 1 0.94345 -0.281588 -0.174957 532.748 0.31437 0.927443 0.202537 -0.000055 0.105231 -0.246085 0.963519 -0.000008 0 0 0 1 0.970553 -0.186577 -0.152365 532.748 0.219337 0.945982 0.238764 0.000039 0.099587 -0.265153 0.95905 -0.000008 0 0 0 1 0.966545 -0.20531 -0.153745 532.748 0.239685 0.936388 0.256375 -0.000002 0.091329 -0.284648 0.954272 -0.000008 0 0 0 1 0.93285 -0.314299 -0.176087 532.748 0.351833 0.899909 0.257637 0.000043 0.077486 -0.30229 0.950061 -0.000008 0 0 0 1 0.887541 -0.419965 -0.18948 532.748 0.457244 0.853386 0.250321 0.000027 0.056573 -0.308808 0.949441 -0.000008 0 0 0 1 0.833053 -0.516133 -0.199068 532.748 0.550426 0.809298 0.205106 -0.000005 0.055242 -0.280436 0.958282 -0.000008 0 0 0 1 0.767667 -0.607141 -0.205104 532.748 0.638171 0.75348 0.158135 -0.000017 0.058531 -0.252287 0.965881 -0.000008 0 0 0 1 0.695303 -0.687253 -0.210328 532.748 0.715459 0.689682 0.111611 0.000001 0.068354 -0.228084 0.971239 -0.000008 0 0 0 1 0.621685 -0.752313 -0.218018 532.748 0.778738 0.623553 0.068908 0.000002 0.084104 -0.212618 0.973509 -0.000008 0 0 0 1 0.552064 -0.802978 -0.224614 532.748 0.827327 0.561034 0.027777 0.000009 0.103712 -0.201164 0.974052 -0.000008 0 0 0 1 0.491921 -0.840668 -0.226474 532.748 0.861349 0.507818 -0.014087 -0.000041 0.12685 -0.188143 0.973916 -0.000008 0 0 0 1 0.444848 -0.866496 -0.226482 532.748 0.882588 0.467093 -0.053501 0.000004 0.152147 -0.17609 0.972545 -0.000008 0 0 0 1 0.411985 -0.882551 -0.226653 532.748 0.893703 0.439878 -0.088337 0.000003 0.177662 -0.166167 0.969961 -0.000008 0 0 0 1 0.393265 -0.890737 -0.227881 532.748 0.89704 0.426077 -0.117377 -0.000008 0.201647 -0.158258 0.966588 -0.000008 0 0 0 1 0.38866 -0.892203 -0.230038 532.748 0.894167 0.425467 -0.139437 0.00001 0.22228 -0.151498 0.963141 -0.000008 0 0 0 1 0.397607 -0.887708 -0.232128 532.748 0.886172 0.437115 -0.153717 0.000008 0.237922 -0.144587 0.960462 -0.000008 0 0 0 1 0.419286 -0.87754 -0.232645 532.748 0.873301 0.459886 -0.160784 -0.000004 0.248084 -0.135755 0.959179 -0.000008 0 0 0 1 0.503538 -0.842568 -0.191125 532.748 0.826442 0.534223 -0.17776 0.000016 0.251878 -0.068444 0.965335 -0.000008 0 0 0 1 0.646652 -0.75663 -0.0967 532.748 0.72807 0.650053 -0.217588 -0.000002 0.227495 0.070299 0.971239 -0.000008 0 0 0 1 0.772903 -0.634516 0.003438 532.748 0.61271 0.744911 -0.263994 -0.000011 0.164948 0.206149 0.964518 -0.000008 0 0 0 1 0.827933 -0.557361 0.062261 532.748 0.549541 0.784095 -0.288442 0.000059 0.111947 0.273027 0.955471 -0.000008 0 0 0 1 0.787096 -0.613631 0.062748 532.748 0.60466 0.747455 -0.275132 0.00001 0.121927 0.254497 0.959357 -0.000008 0 0 0 1 0.683113 -0.729912 0.024179 532.748 0.711202 0.657348 -0.249171 -0.000003 0.165978 0.187409 0.968157 -0.000008 0 0 0 1 0.594224 -0.803951 -0.023685 532.748 0.779919 0.583158 -0.227273 -0.000034 0.196529 0.116578 0.973543 -0.000008 0 0 0 1 0.545043 -0.834806 -0.077636 532.748 0.812372 0.548745 -0.197306 0.000006 0.207315 0.04447 0.977263 -0.000008 0 0 0 1 0.52579 -0.838751 -0.141567 532.748 0.826829 0.543042 -0.146493 -0.000055 0.199748 -0.040027 0.97903 -0.000008 0 0 0 1 0.56844 -0.800577 -0.189611 532.748 0.804065 0.589398 -0.078035 0.00004 0.174229 -0.108101 0.978754 -0.000008 0 0 0 1 - - - - - - - - LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR - - - - - - - - - - - - - - - - 0 0.033333 0.066666 0.1 0.133333 0.166667 0.2 0.233333 0.266667 0.3 0.333333 0.366667 0.4 0.433333 0.466667 0.5 0.533333 0.566667 0.6 0.633333 0.666667 0.7 0.733333 0.766667 0.8 0.833333 0.866667 0.9 0.933333 0.966667 1 1.03333 1.06667 1.1 1.13333 1.16667 1.2 1.23333 1.26667 1.3 1.33333 1.36667 1.4 1.43333 1.46667 1.5 1.53333 1.56667 1.6 1.63333 1.66667 1.7 1.73333 1.76667 1.8 1.83333 1.86667 1.9 1.93333 1.96667 2 2.03333 2.06667 2.1 2.13333 2.16667 2.2 2.23333 2.26667 2.3 2.33333 2.36667 2.4 2.43333 2.46667 2.5 2.53333 2.56667 2.6 2.63333 2.66667 2.7 2.73333 2.76667 2.8 2.83333 2.86667 2.9 2.93333 2.96667 3 3.03333 3.06667 3.1 3.13333 3.16667 3.2 3.23333 3.26667 3.3 3.33333 - - - - - - - CONSTANT - CONSTANT - - - - 0 -1 0 214.572 1 0 0 189.363 0 0 1 0.00003 0 0 0 1 -0.136487 -0.986701 -0.088268 214.572 0.98954 -0.139994 0.034813 189.363 -0.046706 -0.082594 0.995488 0.00003 0 0 0 1 -0.244943 -0.959927 -0.136175 214.572 0.968561 -0.248572 0.010048 189.363 -0.043495 -0.129433 0.990634 0.00003 0 0 0 1 -0.335393 -0.929315 -0.154546 214.572 0.941553 -0.336144 -0.02204 189.363 -0.031467 -0.152905 0.98774 0.00003 0 0 0 1 -0.404434 -0.896978 -0.178507 214.572 0.913126 -0.406986 -0.023764 189.363 -0.051333 -0.17261 0.983652 0.00003 0 0 0 1 -0.149149 -0.965994 -0.211212 214.572 0.988797 -0.146995 -0.025954 189.363 -0.005974 -0.212717 0.977096 0.00003 0 0 0 1 0.446304 -0.867357 -0.220237 214.572 0.887499 0.460555 -0.015307 189.363 0.114708 -0.188629 0.975326 0.00003 0 0 0 1 0.736262 -0.653693 -0.174935 214.572 0.661784 0.749533 -0.015535 189.363 0.141275 -0.104332 0.984458 0.00003 0 0 0 1 0.754105 -0.644192 -0.127836 214.572 0.647263 0.761964 -0.021485 189.363 0.111248 -0.06654 0.991562 0.00003 0 0 0 1 0.722077 -0.685415 -0.09387 214.572 0.688263 0.725456 -0.002765 189.363 0.069994 -0.062611 0.995581 0.00003 0 0 0 1 0.714375 -0.696687 -0.06554 214.572 0.697926 0.716151 -0.005375 189.363 0.050681 -0.041902 0.997835 0.00003 0 0 0 1 0.680033 -0.731491 -0.049763 214.572 0.731652 0.681431 -0.01835 189.363 0.047333 -0.023928 0.998592 0.00003 0 0 0 1 0.539681 -0.84043 -0.049203 214.572 0.840813 0.54101 -0.01849 189.363 0.042159 -0.031392 0.998618 0.00003 0 0 0 1 0.334377 -0.940659 -0.057906 214.572 0.941933 0.33558 -0.012196 189.363 0.030905 -0.050465 0.998247 0.00003 0 0 0 1 0.158538 -0.985082 -0.066921 214.572 0.987207 0.159314 -0.006382 189.363 0.016948 -0.065053 0.997738 0.00003 0 0 0 1 0.099612 -0.992857 -0.06567 214.572 0.994956 0.100175 -0.005318 189.363 0.011858 -0.064809 0.997827 0.00003 0 0 0 1 0.072647 -0.996144 -0.049168 214.572 0.997323 0.072965 -0.004708 189.363 0.008277 -0.048695 0.998779 0.00003 0 0 0 1 0.003873 -0.999687 -0.024729 214.572 0.999991 0.003914 -0.001599 189.363 0.001696 -0.024723 0.999693 0.00003 0 0 0 1 0 -1 0 214.572 1 0 0 189.363 0 0 1 0.00003 0 0 0 1 0.002915 -0.999994 0.0019 214.572 0.999995 0.002912 -0.001476 189.363 0.001471 0.001905 0.999997 0.00003 0 0 0 1 0.010495 -0.999922 0.006814 214.572 0.999931 0.010459 -0.005335 189.363 0.005263 0.00687 0.999963 0.00003 0 0 0 1 0.02136 -0.999677 0.013786 214.572 0.999715 0.02121 -0.010914 189.363 0.010618 0.014015 0.999845 0.00003 0 0 0 1 0.033779 -0.999194 0.021652 214.572 0.999291 0.033406 -0.01736 189.363 0.016623 0.022223 0.999615 0.00003 0 0 0 1 0.046158 -0.998502 0.029385 214.572 0.998681 0.045464 -0.023857 189.363 0.022485 0.030448 0.999283 0.00003 0 0 0 1 0.057054 -0.997718 0.036105 214.572 0.997991 0.055998 -0.029635 189.363 0.027546 0.037723 0.998908 0.00003 0 0 0 1 0.064811 -0.997061 0.040839 214.572 0.997413 0.06345 -0.033782 189.363 0.031092 0.042923 0.998595 0.00003 0 0 0 1 0.067711 -0.996795 0.042598 214.572 0.997179 0.066227 -0.035341 189.363 0.032406 0.044871 0.998467 0.00003 0 0 0 1 0.064198 -0.997116 0.040466 214.572 0.997461 0.062863 -0.033453 189.363 0.030813 0.042511 0.998621 0.00003 0 0 0 1 0.052698 -0.998051 0.033427 214.572 0.998284 0.051794 -0.027318 189.363 0.025533 0.03481 0.999068 0.00003 0 0 0 1 0.031849 -0.999284 0.020438 214.572 0.999369 0.031518 -0.016354 189.363 0.015698 0.020946 0.999657 0.00003 0 0 0 1 0 -1 0 214.572 1 0 0 189.363 0 0 1 0.00003 0 0 0 1 -0.074224 -0.996209 -0.04537 214.572 0.997188 -0.074615 0.006997 189.363 -0.010356 -0.044724 0.998946 0.00003 0 0 0 1 -0.190662 -0.976592 -0.099579 214.572 0.981627 -0.190451 -0.011709 189.363 -0.00753 -0.099982 0.994961 0.00003 0 0 0 1 -0.315658 -0.938275 -0.14142 214.572 0.948724 -0.314726 -0.029511 189.363 -0.016819 -0.143484 0.98951 0.00003 0 0 0 1 -0.404434 -0.896972 -0.178534 214.572 0.913126 -0.406985 -0.023776 189.363 -0.051333 -0.172639 0.983647 0.00003 0 0 0 1 -0.149149 -0.965994 -0.211212 214.572 0.988797 -0.146995 -0.025954 189.363 -0.005975 -0.212717 0.977096 0.00003 0 0 0 1 0.446304 -0.867357 -0.220237 214.572 0.887499 0.460555 -0.015307 189.363 0.114708 -0.188629 0.975326 0.00003 0 0 0 1 0.736262 -0.653693 -0.174935 214.572 0.661784 0.749533 -0.015535 189.363 0.141275 -0.104332 0.984458 0.00003 0 0 0 1 0.754105 -0.644192 -0.127836 214.572 0.647263 0.761964 -0.021487 189.363 0.111248 -0.06654 0.991562 0.00003 0 0 0 1 0.72195 -0.685575 -0.093679 214.572 0.688416 0.725311 -0.002711 189.363 0.069805 -0.062533 0.995599 0.00003 0 0 0 1 0.714376 -0.696686 -0.06554 214.572 0.697925 0.716151 -0.005374 189.363 0.050681 -0.041903 0.997835 0.00003 0 0 0 1 0.680032 -0.731491 -0.049762 214.572 0.731652 0.681431 -0.01835 189.363 0.047333 -0.02393 0.998592 0.00003 0 0 0 1 0.538608 -0.841117 -0.049221 214.572 0.841503 0.539937 -0.018464 189.363 0.042106 -0.031475 0.998618 0.00003 0 0 0 1 0.33438 -0.940657 -0.057905 214.572 0.941932 0.335584 -0.012195 189.363 0.030904 -0.050465 0.998247 0.00003 0 0 0 1 0.158538 -0.985082 -0.066921 214.572 0.987207 0.159313 -0.006382 189.363 0.016948 -0.065053 0.997738 0.00003 0 0 0 1 0.099612 -0.992857 -0.06567 214.572 0.994956 0.100175 -0.005318 189.363 0.011858 -0.064809 0.997827 0.00003 0 0 0 1 0.072647 -0.996145 -0.049168 214.572 0.997323 0.072965 -0.004708 189.363 0.008277 -0.048695 0.998779 0.00003 0 0 0 1 0.003873 -0.999687 -0.024729 214.572 0.999991 0.003914 -0.001599 189.363 0.001696 -0.024723 0.999693 0.00003 0 0 0 1 0 -1 0 214.572 1 0 0 189.363 0 0 1 0.00003 0 0 0 1 0.002914 -0.999994 0.0019 214.572 0.999995 0.002912 -0.001476 189.363 0.001471 0.001905 0.999997 0.00003 0 0 0 1 0.010495 -0.999922 0.006813 214.572 0.999931 0.010459 -0.005335 189.363 0.005263 0.00687 0.999963 0.00003 0 0 0 1 0.021288 -0.999679 0.01374 214.572 0.999717 0.021139 -0.010877 189.363 0.010583 0.013966 0.999846 0.00003 0 0 0 1 0.033779 -0.999194 0.021652 214.572 0.999291 0.033407 -0.01736 189.363 0.016623 0.022223 0.999615 0.00003 0 0 0 1 0.046158 -0.998502 0.029385 214.572 0.998681 0.045464 -0.023857 189.363 0.022485 0.030448 0.999283 0.00003 0 0 0 1 0.057112 -0.997713 0.03614 214.572 0.997987 0.056054 -0.029667 189.363 0.027573 0.037762 0.998906 0.00003 0 0 0 1 0.064811 -0.997061 0.040839 214.572 0.997413 0.06345 -0.033782 189.363 0.031093 0.042922 0.998594 0.00003 0 0 0 1 0.067711 -0.996795 0.042598 214.572 0.997179 0.066227 -0.03534 189.363 0.032406 0.044871 0.998467 0.00003 0 0 0 1 0.064198 -0.997116 0.040466 214.572 0.997461 0.062863 -0.033453 189.363 0.030813 0.042511 0.998621 0.00003 0 0 0 1 0.052698 -0.99805 0.033427 214.572 0.998284 0.051794 -0.027318 189.363 0.025533 0.03481 0.999068 0.00003 0 0 0 1 0.031849 -0.999284 0.020438 214.572 0.999369 0.031518 -0.016354 189.363 0.015698 0.020946 0.999657 0.00003 0 0 0 1 0 -1 0 214.572 1 0 0 189.363 0 0 1 0.00003 0 0 0 1 -0.073625 -0.996268 -0.045054 214.572 0.997232 -0.074015 0.007048 189.363 -0.010356 -0.044411 0.99896 0.00003 0 0 0 1 -0.190662 -0.976592 -0.099579 214.572 0.981627 -0.190451 -0.011709 189.363 -0.00753 -0.099982 0.994961 0.00003 0 0 0 1 -0.31633 -0.938013 -0.141658 214.572 0.948498 -0.315402 -0.029552 189.363 -0.016958 -0.143711 0.989475 0.00003 0 0 0 1 -0.404434 -0.896972 -0.178533 214.572 0.913126 -0.406985 -0.023776 189.363 -0.051333 -0.172639 0.983647 0.00003 0 0 0 1 -0.149149 -0.965994 -0.211212 214.572 0.988797 -0.146995 -0.025954 189.363 -0.005974 -0.212717 0.977096 0.00003 0 0 0 1 0.446304 -0.867357 -0.220237 214.572 0.887499 0.460555 -0.015307 189.363 0.114708 -0.188629 0.975326 0.00003 0 0 0 1 0.736262 -0.653693 -0.174935 214.572 0.661784 0.749533 -0.015535 189.363 0.141275 -0.104332 0.984458 0.00003 0 0 0 1 0.754105 -0.644192 -0.127836 214.572 0.647263 0.761964 -0.021485 189.363 0.111248 -0.06654 0.991562 0.00003 0 0 0 1 0.721949 -0.685575 -0.093679 214.572 0.688416 0.725311 -0.002711 189.363 0.069805 -0.062533 0.995599 0.00003 0 0 0 1 0.714376 -0.696686 -0.06554 214.572 0.697925 0.716151 -0.005374 189.363 0.050681 -0.041903 0.997835 0.00003 0 0 0 1 0.680033 -0.731491 -0.049762 214.572 0.731652 0.681431 -0.01835 189.363 0.047333 -0.023929 0.998592 0.00003 0 0 0 1 0.539681 -0.84043 -0.049203 214.572 0.840813 0.541009 -0.01849 189.363 0.042158 -0.031392 0.998618 0.00003 0 0 0 1 0.334377 -0.940659 -0.057906 214.572 0.941933 0.33558 -0.012195 189.363 0.030904 -0.050465 0.998247 0.00003 0 0 0 1 0.158538 -0.985082 -0.066921 214.572 0.987207 0.159314 -0.006382 189.363 0.016948 -0.065053 0.997738 0.00003 0 0 0 1 0.099612 -0.992857 -0.06567 214.572 0.994956 0.100175 -0.005318 189.364 0.011858 -0.064809 0.997827 0.00003 0 0 0 1 0.07295 -0.996117 -0.049297 214.572 0.997301 0.07327 -0.004715 189.363 0.008309 -0.04882 0.998773 0.00003 0 0 0 1 0.003873 -0.999687 -0.024729 214.572 0.999991 0.003914 -0.001599 189.363 0.001695 -0.024723 0.999693 0.00003 0 0 0 1 0 -1 0.000031 214.572 1 0 0 189.364 0 0.000031 1 0.00003 0 0 0 1 0.002915 -0.999994 0.0019 214.572 0.999995 0.002912 -0.001476 189.364 0.001471 0.001905 0.999997 0.00003 0 0 0 1 0.010495 -0.999922 0.006814 214.572 0.999931 0.010459 -0.005335 189.363 0.005263 0.00687 0.999963 0.00003 0 0 0 1 0.021287 -0.999679 0.01374 214.572 0.999717 0.021139 -0.010877 189.363 0.010583 0.013966 0.999846 0.00003 0 0 0 1 0.033702 -0.999198 0.021604 214.572 0.999294 0.033331 -0.017319 189.363 0.016586 0.022172 0.999617 0.00003 0 0 0 1 0.046158 -0.998502 0.029385 214.572 0.998681 0.045464 -0.023857 189.363 0.022486 0.030448 0.999283 0.00003 0 0 0 1 0.057112 -0.997713 0.03614 214.572 0.997987 0.056054 -0.029667 189.363 0.027572 0.037762 0.998906 0.00003 0 0 0 1 0.064811 -0.997061 0.040839 214.572 0.997413 0.06345 -0.033782 189.363 0.031092 0.042923 0.998595 0.00003 0 0 0 1 0.067711 -0.996795 0.042598 214.572 0.997178 0.066227 -0.035341 189.363 0.032406 0.044871 0.998467 0.00003 0 0 0 1 0.064245 -0.997112 0.040495 214.572 0.997458 0.062908 -0.033479 189.363 0.030835 0.042543 0.998619 0.00003 0 0 0 1 0.052696 -0.99805 0.033427 214.572 0.998283 0.051794 -0.027318 189.363 0.025533 0.03481 0.999068 0.00003 0 0 0 1 0.031849 -0.999284 0.020438 214.572 0.999369 0.031517 -0.016354 189.363 0.015698 0.020946 0.999657 0.00003 0 0 0 1 0 -1 0 214.572 1 0 0 189.363 0 0 1 0.00003 0 0 0 1 -0.073624 -0.996268 -0.045054 214.572 0.997232 -0.074014 0.007047 189.363 -0.010356 -0.04441 0.99896 0.00003 0 0 0 1 -0.190662 -0.976592 -0.099579 214.572 0.981627 -0.190451 -0.011709 189.363 -0.007529 -0.099982 0.994961 0.00003 0 0 0 1 -0.316329 -0.938013 -0.141658 214.572 0.948498 -0.315403 -0.029552 189.363 -0.016958 -0.143711 0.989475 0.00003 0 0 0 1 -0.404434 -0.896972 -0.178533 214.572 0.913126 -0.406985 -0.023776 189.363 -0.051333 -0.172639 0.983647 0.00003 0 0 0 1 -0.149149 -0.965994 -0.211212 214.572 0.988797 -0.146995 -0.025955 189.363 -0.005974 -0.212717 0.977096 0.00003 0 0 0 1 0.446304 -0.867357 -0.220237 214.572 0.887499 0.460555 -0.015307 189.363 0.114708 -0.188629 0.975326 0.00003 0 0 0 1 0.736007 -0.653914 -0.175184 214.572 0.662068 0.749287 -0.015314 189.363 0.141277 -0.104713 0.984417 0.00003 0 0 0 1 0.754105 -0.644192 -0.127836 214.572 0.647263 0.761964 -0.021485 189.363 0.111248 -0.06654 0.991562 0.00003 0 0 0 1 0.72195 -0.685576 -0.093679 214.572 0.688416 0.725311 -0.002711 189.363 0.069805 -0.062533 0.995599 0.00003 0 0 0 1 0.714376 -0.696686 -0.06554 214.572 0.697925 0.716151 -0.005374 189.363 0.050681 -0.041903 0.997835 0.00003 0 0 0 1 - - - - - - - - LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR - - - - - - - - - - - - - - - - 0 0.033333 0.066666 0.1 0.133333 0.166667 0.2 0.233333 0.266667 0.3 0.333333 0.366667 0.4 0.433333 0.466667 0.5 0.533333 0.566667 0.6 0.633333 0.666667 0.7 0.733333 0.766667 0.8 0.833333 0.866667 0.9 0.933333 0.966667 1 1.03333 1.06667 1.1 1.13333 1.16667 1.2 1.23333 1.26667 1.3 1.33333 1.36667 1.4 1.43333 1.46667 1.5 1.53333 1.56667 1.6 1.63333 1.66667 1.7 1.73333 1.76667 1.8 1.83333 1.86667 1.9 1.93333 1.96667 2 2.03333 2.06667 2.1 2.13333 2.16667 2.2 2.23333 2.26667 2.3 2.33333 2.36667 2.4 2.43333 2.46667 2.5 2.53333 2.56667 2.6 2.63333 2.66667 2.7 2.73333 2.76667 2.8 2.83333 2.86667 2.9 2.93333 2.96667 3 3.03333 3.06667 3.1 3.13333 3.16667 3.2 3.23333 3.26667 3.3 3.33333 - - - - - - - CONSTANT - CONSTANT - - - - -0.961176 -0.270648 -0.053767 -217.547 0.265068 -0.959767 0.09266 76.1463 -0.076681 0.074811 0.994245 -46.1944 0 0 0 1 -0.966892 -0.248029 -0.060005 -220.493 0.242782 -0.966521 0.083025 72.3032 -0.078589 0.065709 0.994739 -37.5713 0 0 0 1 -0.972442 -0.222865 -0.068461 -223.277 0.217936 -0.973255 0.07266 67.6319 -0.082824 0.055738 0.995004 -28.7549 0 0 0 1 -0.977336 -0.196999 -0.077493 -225.714 0.192576 -0.979385 0.060981 62.5368 -0.087909 0.044674 0.995126 -19.8152 0 0 0 1 -0.981264 -0.172767 -0.085283 -227.632 0.16915 -0.984421 0.048011 57.5336 -0.09225 0.032686 0.995199 -10.9824 0 0 0 1 -0.984139 -0.152913 -0.089931 -228.913 0.150369 -0.988029 0.03446 53.257 -0.094124 0.020391 0.995352 -2.63677 0 0 0 1 -0.986165 -0.139322 -0.089824 -229.558 0.137998 -0.990214 0.020819 50.1855 -0.091847 0.008135 0.99574 5.17882 0 0 0 1 -0.987431 -0.134369 -0.083214 -229.562 0.134179 -0.990925 0.007893 48.9204 -0.083519 -0.00337 0.9965 12.2666 0 0 0 1 -0.987727 -0.140188 -0.068866 -228.861 0.140852 -0.990019 -0.004863 49.9732 -0.067497 -0.014505 0.997614 19.1733 0 0 0 1 -0.986693 -0.155403 -0.047812 -227.447 0.156433 -0.987514 -0.018579 52.9903 -0.044329 -0.025812 0.998684 26.5357 0 0 0 1 -0.983949 -0.177049 -0.022324 -225.422 0.17772 -0.983533 -0.032845 57.2903 -0.016141 -0.036285 0.999211 33.9081 0 0 0 1 -0.979476 -0.201505 0.004804 -223.015 0.201065 -0.978453 -0.046932 62.1103 0.014158 -0.045003 0.998887 40.6998 0 0 0 1 -0.973607 -0.225997 0.031865 -220.471 0.223822 -0.972755 -0.060429 66.9036 0.044654 -0.051702 0.997664 46.5787 0 0 0 1 -0.967268 -0.247328 0.05676 -218.167 0.243092 -0.967303 -0.07233 71.0769 0.072794 -0.056164 0.995764 51.0577 0 0 0 1 -0.961961 -0.262067 0.077147 -216.578 0.255919 -0.963286 -0.081156 74.0089 0.095583 -0.058326 0.993711 53.6097 0 0 0 1 -0.959184 -0.267526 0.09163 -216.107 0.260077 -0.961788 -0.085577 75.2127 0.111023 -0.058252 0.992109 53.8413 0 0 0 1 -0.960314 -0.259786 0.101527 -217.308 0.251947 -0.964103 -0.08384 73.992 0.119664 -0.054934 0.991293 50.5952 0 0 0 1 -0.964519 -0.240518 0.108874 -219.874 0.233184 -0.969466 -0.075899 70.605 0.123804 -0.047818 0.991154 43.8835 0 0 0 1 -0.970214 -0.214224 0.113108 -223 0.208232 -0.97608 -0.062501 65.7235 0.123791 -0.037087 0.991615 34.6939 0 0 0 1 -0.976058 -0.185636 0.113362 -225.952 0.181611 -0.982343 -0.044949 60.1135 0.119705 -0.023285 0.992537 24.0967 0 0 0 1 -0.981075 -0.160063 0.108952 -228.173 0.158196 -0.987075 -0.025629 54.7939 0.111646 -0.007907 0.993717 13.4094 0 0 0 1 -0.984942 -0.141563 0.099236 -229.479 0.141608 -0.989901 -0.006626 50.6943 0.099172 0.007525 0.995042 3.48016 0 0 0 1 -0.987285 -0.134928 0.084043 -229.818 0.136156 -0.990646 0.009035 49.0492 0.082038 0.020362 0.996421 -4.43756 0 0 0 1 -0.988235 -0.141201 0.058767 -229.328 0.142768 -0.989481 0.023359 50.2218 0.054851 0.031474 0.997998 -11.3543 0 0 0 1 -0.987374 -0.156893 0.021859 -228.133 0.157666 -0.98669 0.039804 53.3707 0.015323 0.042748 0.998968 -18.7382 0 0 0 1 -0.983608 -0.179006 -0.021705 -226.323 0.177509 -0.98241 0.057975 57.808 -0.031702 0.053171 0.998082 -26.1404 0 0 0 1 -0.976767 -0.203881 -0.066026 -224.109 0.198751 -0.977041 0.076733 62.7602 -0.080155 0.061829 0.994863 -32.9667 0 0 0 1 -0.967528 -0.228869 -0.10728 -221.711 0.219157 -0.971044 0.095095 67.7023 -0.125938 0.068496 0.989671 -38.9137 0 0 0 1 -0.957969 -0.250314 -0.140134 -219.54 0.236082 -0.965419 0.110597 71.9429 -0.162972 0.072866 0.983936 -43.3905 0 0 0 1 -0.950724 -0.265194 -0.160613 -218.015 0.247742 -0.961275 0.120727 74.9333 -0.186409 0.074988 0.979606 -45.9612 0 0 0 1 -0.948436 -0.270658 -0.164964 -217.547 0.252513 -0.959757 0.122895 76.1463 -0.191588 0.074903 0.978613 -46.1944 0 0 0 1 -0.953853 -0.262719 -0.145409 -218.657 0.247817 -0.962211 0.112854 74.8622 -0.169563 0.071611 0.982914 -42.9245 0 0 0 1 -0.964536 -0.243044 -0.102954 -221.038 0.234073 -0.967865 0.091908 71.3436 -0.121983 0.06455 0.990431 -36.1687 0 0 0 1 -0.975327 -0.216184 -0.044737 -223.905 0.2131 -0.974865 0.065011 66.2856 -0.057667 0.053875 0.996881 -26.9298 0 0 0 1 -0.982148 -0.186932 0.021004 -226.552 0.187607 -0.981554 0.036825 60.4795 0.013733 0.040108 0.999101 -16.2913 0 0 0 1 -0.983442 -0.160677 0.083812 -228.457 0.162175 -0.986697 0.011332 54.9697 0.080878 0.024737 0.996417 -5.57961 0 0 0 1 -0.980634 -0.141615 0.135283 -229.46 0.141574 -0.989877 -0.009972 50.718 0.135326 0.009374 0.990757 4.30098 0 0 0 1 -0.976986 -0.134396 0.16564 -229.563 0.131902 -0.990921 -0.026022 48.9204 0.167633 -0.003574 0.985843 12.2693 0 0 0 1 -0.974293 -0.140199 0.176343 -228.861 0.135298 -0.990014 -0.039578 49.973 0.18013 -0.014702 0.983533 19.1733 0 0 0 1 -0.971851 -0.155532 0.176962 -227.436 0.148236 -0.987487 -0.053807 53.0133 0.183116 -0.026061 0.982745 26.5817 0 0 0 1 -0.969555 -0.177061 0.169153 -225.422 0.167943 -0.983525 -0.066884 57.2902 0.178209 -0.036439 0.983318 33.9079 0 0 0 1 -0.967146 -0.201516 0.154985 -223.015 0.191476 -0.978445 -0.077341 62.1102 0.16723 -0.045124 0.984885 40.6998 0 0 0 1 -0.964531 -0.226148 0.13615 -220.456 0.216175 -0.972714 -0.084241 66.9316 0.151485 -0.051821 0.9871 46.6111 0 0 0 1 -0.962084 -0.247332 0.11498 -218.167 0.238286 -0.967299 -0.086905 71.077 0.132715 -0.056212 0.989559 51.0576 0 0 0 1 -0.960513 -0.262068 0.093458 -216.578 0.254505 -0.963284 -0.085501 74.009 0.112433 -0.058339 0.991945 53.6097 0 0 0 1 -0.960772 -0.267525 0.073132 -216.107 0.261678 -0.961789 -0.080533 75.2125 0.091882 -0.058237 0.994065 53.8413 0 0 0 1 -0.964367 -0.259783 0.05008 -217.308 0.256066 -0.964106 -0.070218 73.9921 0.066524 -0.054892 0.996274 50.5952 0 0 0 1 -0.970415 -0.240513 0.021178 -219.874 0.239092 -0.969471 -0.05442 70.605 0.03362 -0.047746 0.998294 43.8835 0 0 0 1 -0.976715 -0.214218 -0.011792 -223 0.214506 -0.976085 -0.035277 65.7236 -0.003952 -0.036985 0.999308 34.6939 0 0 0 1 -0.981524 -0.185631 -0.046378 -225.952 0.186485 -0.982347 -0.01478 60.1135 -0.042816 -0.023156 0.998815 24.0967 0 0 0 1 -0.983925 -0.160061 -0.079196 -228.173 0.16017 -0.987077 0.005008 54.7939 -0.078975 -0.007755 0.996846 13.4094 0 0 0 1 -0.984018 -0.141642 -0.107914 -229.474 0.139957 -0.989889 0.023076 50.7123 -0.110092 0.007604 0.993892 3.53587 0 0 0 1 -0.982373 -0.134947 -0.129353 -229.818 0.131057 -0.99064 0.03816 49.0493 -0.133293 0.020535 0.990864 -4.43774 0 0 0 1 -0.979314 -0.141208 -0.144929 -229.328 0.134937 -0.989474 0.052274 50.2219 -0.150785 0.031638 0.98806 -11.3543 0 0 0 1 -0.974806 -0.157021 -0.158425 -228.124 0.147863 -0.98666 0.068102 53.3945 -0.167005 0.04296 0.985019 -18.7844 0 0 0 1 -0.969235 -0.179017 -0.168927 -226.323 0.166799 -0.982402 0.084053 57.8078 -0.181001 0.05329 0.982038 -26.1403 0 0 0 1 -0.963042 -0.203891 -0.176004 -224.109 0.188797 -0.977033 0.098798 62.7603 -0.192106 0.061918 0.979419 -32.9667 0 0 0 1 -0.956779 -0.228877 -0.179412 -221.711 0.211419 -0.971038 0.111297 67.7024 -0.19969 0.068555 0.977458 -38.9138 0 0 0 1 -0.951507 -0.250318 -0.178819 -219.54 0.231406 -0.965415 0.120102 71.9429 -0.202698 0.072898 0.976524 -43.3905 0 0 0 1 -0.948345 -0.265196 -0.174108 -218.015 0.246001 -0.961273 0.124247 74.9332 -0.200315 0.074999 0.976857 -45.9612 0 0 0 1 -0.948436 -0.270658 -0.164964 -217.547 0.252513 -0.959757 0.122895 76.1463 -0.191588 0.074903 0.978613 -46.1944 0 0 0 1 -0.953265 -0.262807 -0.149061 -218.646 0.247462 -0.962185 0.113855 74.8774 -0.173346 0.071647 0.982252 -42.9559 0 0 0 1 -0.961894 -0.243046 -0.125253 -221.038 0.231882 -0.967864 0.09732 71.3435 -0.144881 0.064568 0.98734 -36.1687 0 0 0 1 -0.971777 -0.216011 -0.094805 -223.923 0.209309 -0.974905 0.075823 66.2517 -0.108806 0.053839 0.992604 -26.8676 0 0 0 1 -0.98055 -0.186934 -0.05981 -226.552 0.183941 -0.981551 0.052191 60.4797 -0.068463 0.040174 0.996844 -16.2915 0 0 0 1 -0.986754 -0.160674 -0.022392 -228.457 0.160011 -0.986695 0.028787 54.9697 -0.026719 0.024823 0.999335 -5.57961 0 0 0 1 -0.989802 -0.141607 0.015505 -229.46 0.141733 -0.989878 0.007347 50.7179 0.014308 0.009469 0.999853 4.30098 0 0 0 1 -0.989605 -0.134378 0.051213 -229.562 0.134015 -0.990924 -0.010455 48.9204 0.052153 -0.003483 0.998633 12.2693 0 0 0 1 -0.986056 -0.14019 0.089674 -228.861 0.13826 -0.990017 -0.027413 49.9731 0.092621 -0.014632 0.995594 19.1733 0 0 0 1 -0.978427 -0.155525 0.135995 -227.436 0.150364 -0.987489 -0.047501 53.0132 0.141681 -0.026028 0.98957 26.5817 0 0 0 1 -0.966779 -0.177063 0.184351 -225.422 0.166873 -0.983524 -0.069525 57.2902 0.193625 -0.036451 0.980398 33.9079 0 0 0 1 -0.952097 -0.201528 0.229996 -223.015 0.184852 -0.97844 -0.092114 62.1102 0.243601 -0.045186 0.968823 40.6998 0 0 0 1 -0.936186 -0.226028 0.269199 -220.471 0.202195 -0.972738 -0.113573 66.9035 0.28753 -0.051894 0.956365 46.5787 0 0 0 1 -0.921951 -0.247365 0.298021 -218.167 0.217083 -0.967282 -0.131305 71.077 0.320751 -0.056362 0.945485 51.0577 0 0 0 1 -0.912973 -0.262106 0.312698 -216.578 0.22786 -0.963263 -0.142141 74.009 0.338467 -0.058519 0.939157 53.6097 0 0 0 1 -0.912203 -0.267564 0.310314 -216.107 0.233312 -0.961767 -0.143425 75.2126 0.336825 -0.058432 0.939753 53.8413 0 0 0 1 -0.923705 -0.259901 0.281461 -217.296 0.231573 -0.964061 -0.130229 74.0064 0.305192 -0.055114 0.950695 50.6265 0 0 0 1 -0.944312 -0.240535 0.224539 -219.874 0.222306 -0.969457 -0.103598 70.605 0.2426 -0.047913 0.968942 43.8835 0 0 0 1 -0.965668 -0.214054 0.147194 -223.019 0.205745 -0.976119 -0.069715 65.6907 0.158602 -0.037037 0.986647 34.6321 0 0 0 1 -0.980784 -0.185633 0.060027 -225.952 0.183789 -0.982344 -0.034946 60.1136 0.065455 -0.023242 0.997585 24.0969 0 0 0 1 -0.986773 -0.160059 -0.025697 -228.173 0.160205 -0.987077 -0.003731 54.7939 -0.024767 -0.007798 0.999663 13.4094 0 0 0 1 -0.984939 -0.141642 -0.099165 -229.474 0.140156 -0.989889 0.021824 50.7123 -0.101254 0.007597 0.994832 3.53587 0 0 0 1 -0.979717 -0.134936 -0.148144 -229.818 0.130301 -0.990643 0.040602 49.0492 -0.152236 0.020475 0.988132 -4.39126 0 0 0 1 -0.974273 -0.141212 -0.175644 -229.328 0.133226 -0.989473 0.056516 50.2219 -0.181776 0.031662 0.98283 -11.3543 0 0 0 1 -0.96854 -0.157025 -0.193063 -228.124 0.145341 -0.986658 0.073356 53.3945 -0.202007 0.042988 0.97844 -18.7844 0 0 0 1 -0.962986 -0.179022 -0.201521 -226.323 0.163869 -0.982399 0.089658 57.8078 -0.214025 0.053316 0.975372 -26.1403 0 0 0 1 -0.957794 -0.203895 -0.202624 -224.109 0.185986 -0.977031 0.104015 62.7604 -0.219178 0.061939 0.973717 -32.9667 0 0 0 1 -0.953152 -0.228735 -0.197942 -221.725 0.209086 -0.971073 0.115326 67.6736 -0.218595 0.068536 0.973406 -38.8811 0 0 0 1 -0.949537 -0.250321 -0.188996 -219.54 0.230108 -0.965414 0.122582 71.943 -0.213144 0.072906 0.974296 -43.3906 0 0 0 1 -0.947703 -0.265196 -0.177567 -218.015 0.245545 -0.961273 0.125147 74.9332 -0.203879 0.075002 0.976119 -45.9612 0 0 0 1 -0.948436 -0.270658 -0.164964 -217.547 0.252513 -0.959757 0.122895 76.1463 -0.191588 0.074903 0.978613 -46.1944 0 0 0 1 -0.953545 -0.262807 -0.147256 -218.646 0.247678 -0.962185 0.113384 74.8775 -0.171485 0.071645 0.982578 -42.9559 0 0 0 1 -0.962445 -0.243046 -0.120946 -221.038 0.232315 -0.967864 0.096278 71.3436 -0.140459 0.064564 0.987979 -36.1687 0 0 0 1 -0.972415 -0.21601 -0.088032 -223.923 0.209832 -0.974906 0.074356 66.2517 -0.101884 0.053833 0.993338 -26.8676 0 0 0 1 -0.981025 -0.186934 -0.051428 -226.552 0.184381 -0.981551 0.05061 60.4797 -0.05994 0.040168 0.997393 -16.2915 0 0 0 1 -0.986907 -0.160674 -0.014064 -228.457 0.160249 -0.986696 0.027429 54.9696 -0.018284 0.024816 0.999525 -5.57961 0 0 0 1 -0.989694 -0.141607 0.021301 -229.46 0.141774 -0.989878 0.006513 50.718 0.020163 0.009466 0.999752 4.30098 0 0 0 1 -0.989618 -0.134373 0.050981 -229.562 0.134017 -0.990925 -0.010348 48.9204 0.051909 -0.003407 0.998646 12.2229 0 0 0 1 -0.987121 -0.140189 0.07707 -228.861 0.138599 -0.990017 -0.025634 49.9731 0.079894 -0.014622 0.996696 19.1733 0 0 0 1 -0.982416 -0.155522 0.103301 -227.436 0.151863 -0.98749 -0.042435 53.0132 0.108608 -0.026001 0.993745 26.5817 0 0 0 1 -0.975825 -0.177056 0.128133 -225.422 0.170613 -0.983527 -0.059711 57.2901 0.136594 -0.036406 0.989958 33.9079 0 0 0 1 - - - - - - - - LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR - - - - - - - - - - - - - - - - 0 0.033333 0.066666 0.1 0.133333 0.166667 0.2 0.233333 0.266667 0.3 0.333333 0.366667 0.4 0.433333 0.466667 0.5 0.533333 0.566667 0.6 0.633333 0.666667 0.7 0.733333 0.766667 0.8 0.833333 0.866667 0.9 0.933333 0.966667 1 1.03333 1.06667 1.1 1.13333 1.16667 1.2 1.23333 1.26667 1.3 1.33333 1.36667 1.4 1.43333 1.46667 1.5 1.53333 1.56667 1.6 1.63333 1.66667 1.7 1.73333 1.76667 1.8 1.83333 1.86667 1.9 1.93333 1.96667 2 2.03333 2.06667 2.1 2.13333 2.16667 2.2 2.23333 2.26667 2.3 2.33333 2.36667 2.4 2.43333 2.46667 2.5 2.53333 2.56667 2.6 2.63333 2.66667 2.7 2.73333 2.76667 2.8 2.83333 2.86667 2.9 2.93333 2.96667 3 3.03333 3.06667 3.1 3.13333 3.16667 3.2 3.23333 3.26667 3.3 3.33333 - - - - - - - CONSTANT - CONSTANT - - - - 0.966687 -0.249688 -0.056315 275.134 0.249268 0.968326 -0.014473 -0.261342 0.058146 -0.000045 0.998308 0.000000 0 0 0 1 0.967597 -0.249688 -0.037569 275.134 0.249502 0.968326 -0.009655 -0.261421 0.03879 -0.00003 0.999247 0.000000 0 0 0 1 0.968169 -0.249688 -0.017432 275.134 0.249649 0.968326 -0.00448 -0.26144 0.017999 -0.000013 0.999838 0.000000 0 0 0 1 0.968321 -0.249688 0.003237 275.134 0.249688 0.968326 0.000832 -0.261359 -0.003342 0.000003 0.999994 0.000000 0 0 0 1 0.968048 -0.249688 0.023213 275.134 0.249617 0.968326 0.005966 -0.261495 -0.023968 0.000019 0.999713 0.000000 0 0 0 1 0.967461 -0.249688 0.040924 275.134 0.249467 0.968326 0.010518 -0.261358 -0.042253 0.000034 0.999107 0.000000 0 0 0 1 0.966734 -0.249688 0.055503 275.134 0.24928 0.968326 0.014265 -0.261443 -0.057307 0.000046 0.998357 0.000000 0 0 0 1 0.966096 -0.249688 0.065678 275.134 0.249116 0.968326 0.01688 -0.261453 -0.067813 0.000054 0.997698 0.000000 0 0 0 1 0.965661 -0.249688 0.071794 275.134 0.249005 0.968326 0.018452 -0.26139 -0.074127 0.000059 0.997249 0.000000 0 0 0 1 0.965383 -0.249688 0.075443 275.134 0.248933 0.968326 0.019389 -0.261557 -0.077894 0.000062 0.996962 0.000000 0 0 0 1 0.965277 -0.249688 0.076787 275.134 0.248906 0.968326 0.019735 -0.261355 -0.079282 0.000063 0.996852 0.000000 0 0 0 1 0.965336 -0.249688 0.076038 275.134 0.248921 0.968326 0.019542 -0.261341 -0.078509 0.000062 0.996913 0.000000 0 0 0 1 0.96554 -0.249688 0.073407 275.134 0.248973 0.968326 0.018866 -0.261344 -0.075793 0.000059 0.997124 0.000000 0 0 0 1 0.96586 -0.249688 0.069071 275.134 0.249056 0.968326 0.017751 -0.261427 -0.071316 0.000056 0.997453 0.000000 0 0 0 1 0.966253 -0.249688 0.063336 275.134 0.249157 0.968326 0.016278 -0.261386 -0.065394 0.000051 0.997859 0.000000 0 0 0 1 0.966687 -0.249688 0.056314 275.134 0.249268 0.968326 0.014472 -0.261291 -0.058144 0.000046 0.998308 0.000000 0 0 0 1 0.967264 -0.249688 0.045336 275.134 0.249416 0.968326 0.011652 -0.261446 -0.04681 0.000036 0.998904 0.000000 0 0 0 1 0.96788 -0.249688 0.029403 275.134 0.249575 0.968326 0.007556 -0.261601 -0.030358 0.000024 0.999539 0.000000 0 0 0 1 0.968269 -0.249688 0.010522 275.134 0.249675 0.968326 0.002704 -0.261404 -0.010865 0.000008 0.999941 0.000000 0 0 0 1 0.968284 -0.249688 -0.009063 275.134 0.249679 0.968326 -0.002328 -0.261474 0.009358 -0.000007 0.999956 0.000000 0 0 0 1 0.967957 -0.249688 -0.026731 275.134 0.249594 0.968326 -0.00687 -0.26136 0.0276 -0.000021 0.999619 0.000000 0 0 0 1 0.967473 -0.249688 -0.04063 275.134 0.24947 0.968326 -0.010442 -0.261562 0.04195 -0.000033 0.99912 0.000000 0 0 0 1 0.967126 -0.249688 -0.048188 275.134 0.249381 0.968326 -0.012384 -0.26158 0.049754 -0.000039 0.998761 0.000000 0 0 0 1 0.96709 -0.249688 -0.04892 275.134 0.249371 0.968326 -0.012573 -0.261517 0.05051 -0.00004 0.998724 0.000000 0 0 0 1 0.967295 -0.249688 -0.044671 275.134 0.249424 0.968326 -0.011481 -0.261397 0.046123 -0.000036 0.998936 0.000000 0 0 0 1 0.967623 -0.249688 -0.036902 275.134 0.249509 0.968326 -0.009483 -0.261349 0.038102 -0.00003 0.999274 0.000000 0 0 0 1 0.967941 -0.249688 -0.027307 275.134 0.24959 0.968326 -0.007017 -0.261522 0.028194 -0.000022 0.999602 0.000000 0 0 0 1 0.968173 -0.249688 -0.017193 275.134 0.24965 0.968326 -0.004418 -0.261396 0.017752 -0.000014 0.999842 0.000000 0 0 0 1 0.96829 -0.249688 -0.00828 275.134 0.24968 0.968326 -0.002127 -0.261423 0.00855 -0.000007 0.999963 0.000000 0 0 0 1 0.968324 -0.249688 -0.002065 275.134 0.249689 0.968326 -0.00053 -0.261604 0.002133 -0.000002 0.999998 0.000000 0 0 0 1 0.968326 -0.249688 -0.000000 275.134 0.249689 0.968326 -0.000000 -0.261291 0.000000 0 1 0.000000 0 0 0 1 0.968318 -0.249688 -0.004099 275.134 0.249687 0.968326 -0.001054 -0.261412 0.004232 -0.000002 0.999991 0.000000 0 0 0 1 0.968232 -0.249688 -0.013513 275.134 0.249665 0.968326 -0.003473 -0.261391 0.013952 -0.00001 0.999903 0.000000 0 0 0 1 0.967979 -0.249688 -0.025924 275.134 0.2496 0.968326 -0.006663 -0.261569 0.026767 -0.00002 0.999642 0.000000 0 0 0 1 0.967544 -0.249688 -0.038922 275.134 0.249488 0.968326 -0.010003 -0.261294 0.040188 -0.000031 0.999192 0.000000 0 0 0 1 0.967043 -0.249688 -0.049843 275.134 0.249359 0.968326 -0.01281 -0.26134 0.051463 -0.00004 0.998675 0.000000 0 0 0 1 0.966678 -0.249688 -0.056477 275.134 0.249266 0.968326 -0.014515 -0.261142 0.058313 -0.000046 0.998298 0.000000 0 0 0 1 0.966688 -0.249688 -0.056312 275.134 0.249268 0.968326 -0.014472 -0.261447 0.058143 -0.000045 0.998308 0.000000 0 0 0 1 0.967108 -0.249688 -0.048552 275.134 0.249376 0.968326 -0.012478 -0.261562 0.05013 -0.000039 0.998743 0.000000 0 0 0 1 0.96769 -0.249688 -0.035067 275.134 0.249526 0.968326 -0.009012 -0.26149 0.036207 -0.000028 0.999345 0.000000 0 0 0 1 0.968163 -0.249688 -0.017773 275.134 0.249648 0.968326 -0.004567 -0.261404 0.018351 -0.000015 0.999831 0.000000 0 0 0 1 0.968325 -0.249688 0.00153 275.134 0.249689 0.968326 0.000393 -0.26146 -0.00158 0.000001 0.999999 0.000000 0 0 0 1 0.968088 -0.249688 0.021461 275.134 0.249628 0.968326 0.005515 -0.26126 -0.022158 0.000017 0.999754 0.000000 0 0 0 1 0.967504 -0.249688 0.039896 275.134 0.249478 0.968326 0.010254 -0.261268 -0.041192 0.000033 0.999152 0.000000 0 0 0 1 0.966756 -0.249688 0.055132 275.134 0.249286 0.968326 0.014169 -0.261422 -0.056924 0.000045 0.998378 0.000000 0 0 0 1 0.9661 -0.249688 0.065628 275.134 0.249117 0.968326 0.016867 -0.261356 -0.067761 0.000054 0.997702 0.000000 0 0 0 1 0.965707 -0.249688 0.071176 275.134 0.249017 0.968326 0.018293 -0.261439 -0.07349 0.000057 0.997296 0.000000 0 0 0 1 0.965555 -0.249688 0.073211 275.134 0.248977 0.968326 0.018815 -0.261519 -0.075591 0.00006 0.997139 0.000000 0 0 0 1 0.965608 -0.249688 0.072514 275.134 0.248991 0.968326 0.018637 -0.261246 -0.07487 0.00006 0.997193 0.000000 0 0 0 1 0.965812 -0.249688 0.069745 275.134 0.249043 0.968326 0.017925 -0.261485 -0.072013 0.000057 0.997404 0.000000 0 0 0 1 0.966096 -0.249688 0.06568 275.134 0.249116 0.968326 0.01688 -0.261501 -0.067814 0.000054 0.997698 0.000000 0 0 0 1 0.966406 -0.249688 0.060959 275.134 0.249196 0.968326 0.015667 -0.261282 -0.06294 0.000049 0.998017 0.000000 0 0 0 1 0.966689 -0.249688 0.056282 275.134 0.249268 0.968326 0.014465 -0.26137 -0.058111 0.000045 0.99831 0.000000 0 0 0 1 0.966984 -0.249688 0.05096 275.134 0.249345 0.968326 0.013097 -0.261352 -0.052616 0.000042 0.998615 0.000000 0 0 0 1 0.967328 -0.249688 0.043962 275.134 0.249433 0.968326 0.011299 -0.261403 -0.04539 0.000035 0.998969 0.000000 0 0 0 1 0.967658 -0.249688 0.035967 275.134 0.249518 0.968326 0.009243 -0.261384 -0.037137 0.000029 0.99931 0.000000 0 0 0 1 0.967934 -0.249688 0.027547 275.134 0.249589 0.968326 0.007079 -0.261595 -0.028442 0.000023 0.999595 0.000000 0 0 0 1 0.968138 -0.249688 0.019099 275.134 0.249641 0.968326 0.004909 -0.261391 -0.019719 0.000015 0.999806 0.000000 0 0 0 1 0.96826 -0.249688 0.011342 275.134 0.249672 0.968326 0.002915 -0.261316 -0.01171 0.000008 0.999932 0.000000 0 0 0 1 0.968314 -0.249688 0.004817 275.134 0.249686 0.968326 0.001238 -0.261511 -0.004974 0.000004 0.999988 0.000000 0 0 0 1 0.968326 -0.249688 -0.000000 275.134 0.249689 0.968326 -0.000000 -0.261291 0.000000 0.000000 1 0.000000 0 0 0 1 0.968323 -0.249688 -0.0023 275.134 0.249689 0.968326 -0.000591 -0.26145 0.002374 -0.000001 0.999997 0.000000 0 0 0 1 0.968323 -0.249688 -0.0023 275.134 0.249689 0.968326 -0.000591 -0.261533 0.002374 -0.000001 0.999997 0.000000 0 0 0 1 0.968326 -0.249688 -0.00091 275.134 0.249689 0.968326 -0.000234 -0.26138 0.00094 -0.000001 1 0.000000 0 0 0 1 0.968325 -0.249688 0.000929 275.134 0.249689 0.968326 0.000238 -0.261387 -0.000959 0.000001 1 0.000000 0 0 0 1 0.968323 -0.249688 0.002298 275.134 0.249689 0.968326 0.000591 -0.261292 -0.002374 0.000002 0.999997 0.000000 0 0 0 1 0.968323 -0.249688 0.002299 275.134 0.249688 0.968326 0.000591 -0.261617 -0.002373 0.000001 0.999997 0.000000 0 0 0 1 0.968326 -0.249688 -0.000026 275.134 0.249689 0.968326 -0.000006 -0.261322 0.000027 0.000000 1 0.000000 0 0 0 1 0.968309 -0.249688 -0.005776 275.134 0.249685 0.968326 -0.001484 -0.2613 0.005963 -0.000005 0.999982 0.000000 0 0 0 1 0.968214 -0.249688 -0.014733 275.134 0.249661 0.968326 -0.003786 -0.261597 0.015212 -0.000012 0.999884 0.000000 0 0 0 1 0.967993 -0.249688 -0.025374 275.134 0.249604 0.968326 -0.006521 -0.261379 0.026198 -0.000021 0.999657 0.000000 0 0 0 1 0.967646 -0.249688 -0.036299 275.134 0.249514 0.968326 -0.009329 -0.261433 0.037479 -0.000029 0.999297 0.000000 0 0 0 1 0.96722 -0.249688 -0.046274 275.134 0.249405 0.968326 -0.011892 -0.261566 0.047777 -0.000038 0.998858 0.000000 0 0 0 1 0.966826 -0.249688 -0.053885 275.134 0.249304 0.968326 -0.013848 -0.261479 0.055636 -0.000044 0.998451 0.000000 0 0 0 1 0.966609 -0.249688 -0.057655 275.134 0.249248 0.968326 -0.014818 -0.261363 0.059529 -0.000047 0.998227 0.000000 0 0 0 1 0.966687 -0.249688 -0.056315 275.134 0.249268 0.968326 -0.014473 -0.261431 0.058146 -0.000045 0.998308 0.000000 0 0 0 1 0.967194 -0.249688 -0.046813 275.134 0.249398 0.968326 -0.01203 -0.2614 0.048334 -0.000039 0.998831 0.000000 0 0 0 1 0.967885 -0.249688 -0.029216 275.134 0.249576 0.968326 -0.007509 -0.261414 0.030166 -0.000023 0.999545 0.000000 0 0 0 1 0.968303 -0.249688 -0.006644 275.134 0.249683 0.968326 -0.001707 -0.261274 0.00686 -0.000005 0.999976 0.000000 0 0 0 1 0.96817 -0.249688 0.01733 275.134 0.249649 0.968326 0.004453 -0.261248 -0.017894 0.000014 0.99984 0.000000 0 0 0 1 0.967523 -0.249688 0.03943 275.134 0.249483 0.968326 0.010134 -0.26146 -0.040711 0.000031 0.999171 0.000000 0 0 0 1 0.966667 -0.249688 0.056663 275.134 0.249263 0.968326 0.014563 -0.261468 -0.058504 0.000046 0.998287 0.000000 0 0 0 1 0.9661 -0.249688 0.065628 275.134 0.249117 0.968326 0.016867 -0.261407 -0.067761 0.000054 0.997702 0.000000 0 0 0 1 0.966064 -0.249688 0.06616 275.134 0.249108 0.968326 0.017004 -0.261493 -0.06831 0.000054 0.997664 0.000000 0 0 0 1 0.966391 -0.249688 0.061199 275.134 0.249192 0.968326 0.015728 -0.261284 -0.063188 0.000049 0.998002 0.000000 0 0 0 1 0.966914 -0.249688 0.052288 275.134 0.249326 0.968326 0.013438 -0.261533 -0.053988 0.000042 0.998542 0.000000 0 0 0 1 0.967459 -0.249688 0.040962 275.134 0.249467 0.968326 0.010528 -0.26151 -0.042293 0.000033 0.999105 0.000000 0 0 0 1 0.967905 -0.249688 0.028549 275.134 0.249581 0.968326 0.007337 -0.261468 -0.029477 0.000023 0.999565 0.000000 0 0 0 1 0.968185 -0.249688 0.016526 275.134 0.249653 0.968326 0.004247 -0.261374 -0.017064 0.000013 0.999854 0.000000 0 0 0 1 0.968304 -0.249688 0.006585 275.134 0.249684 0.968326 0.001692 -0.261393 -0.006798 0.000005 0.999977 0.000000 0 0 0 1 0.968326 -0.249688 -0.000000 275.134 0.249689 0.968326 -0.000000 -0.261291 0.000000 0.000000 1 0.000000 0 0 0 1 0.968321 -0.249688 -0.003217 275.134 0.249688 0.968326 -0.000826 -0.261334 0.003321 -0.000003 0.999995 0.000000 0 0 0 1 0.968316 -0.249688 -0.004468 275.134 0.249687 0.968326 -0.001147 -0.261553 0.004613 -0.000004 0.999989 0.000000 0 0 0 1 0.968317 -0.249688 -0.004286 275.134 0.249687 0.968326 -0.001101 -0.261349 0.004425 -0.000003 0.99999 0.000000 0 0 0 1 0.968321 -0.249688 -0.00321 275.134 0.249688 0.968326 -0.000824 -0.261547 0.003313 -0.000003 0.999994 0.000000 0 0 0 1 0.968324 -0.249688 -0.001787 275.134 0.249689 0.968326 -0.000459 -0.261403 0.001845 -0.000001 0.999998 0.000000 0 0 0 1 0.968326 -0.249688 -0.000536 275.134 0.249689 0.968326 -0.000137 -0.261501 0.000553 -0.000001 1 0.000000 0 0 0 1 0.968326 -0.249688 -0.000000 275.134 0.249689 0.968326 -0.000000 -0.261302 0.000000 0 1 0.000000 0 0 0 1 0.968326 -0.249688 0.00041 275.134 0.249689 0.968326 0.000105 -0.261414 -0.000424 0.000000 1 0.000000 0 0 0 1 0.968325 -0.249688 0.001415 275.134 0.249689 0.968326 0.000363 -0.261544 -0.001461 0.000000 0.999999 0.000000 0 0 0 1 0.968322 -0.249688 0.002648 275.134 0.249688 0.968326 0.00068 -0.261398 -0.002733 0.000002 0.999996 0.000000 0 0 0 1 - - - - - - - - LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR - - - - - - - - - - - - - - - - 0 0.033333 0.066666 0.1 0.133333 0.166667 0.2 0.233333 0.266667 0.3 0.333333 0.366667 0.4 0.433333 0.466667 0.5 0.533333 0.566667 0.6 0.633333 0.666667 0.7 0.733333 0.766667 0.8 0.833333 0.866667 0.9 0.933333 0.966667 1 1.03333 1.06667 1.1 1.13333 1.16667 1.2 1.23333 1.26667 1.3 1.33333 1.36667 1.4 1.43333 1.46667 1.5 1.53333 1.56667 1.6 1.63333 1.66667 1.7 1.73333 1.76667 1.8 1.83333 1.86667 1.9 1.93333 1.96667 2 2.03333 2.06667 2.1 2.13333 2.16667 2.2 2.23333 2.26667 2.3 2.33333 2.36667 2.4 2.43333 2.46667 2.5 2.53333 2.56667 2.6 2.63333 2.66667 2.7 2.73333 2.76667 2.8 2.83333 2.86667 2.9 2.93333 2.96667 3 3.03333 3.06667 3.1 3.13333 3.16667 3.2 3.23333 3.26667 3.3 3.33333 - - - - - - - CONSTANT - CONSTANT - - - - 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290226 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290381 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290176 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290267 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290301 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290416 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290384 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290297 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290473 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290284 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290413 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290359 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290448 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290349 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290448 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290441 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290459 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290375 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290466 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290407 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290321 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290263 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290383 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290218 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290441 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290374 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290309 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290307 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290338 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290315 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290466 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290503 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290385 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290361 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290498 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290467 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290455 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290403 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290257 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290324 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290465 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290374 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290403 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.29042 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.29042 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290294 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290462 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290229 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290482 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290392 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290276 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290443 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290443 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290341 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290388 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290387 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290376 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290371 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290415 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290412 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.29047 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290257 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290371 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290337 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290255 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.29048 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290249 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290317 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290443 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290259 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290433 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290463 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290256 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290373 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290466 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290522 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290376 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290333 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290299 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290475 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290451 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290394 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290341 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290447 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.29047 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290389 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290337 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290453 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290373 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.29052 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.29047 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290335 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290344 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290296 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290354 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290318 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290428 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290294 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290451 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290224 0.000000 0.000000 1 -0.000007 0 0 0 1 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290498 0.000000 0.000000 1 -0.000007 0 0 0 1 - - - - - - - - LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR - - - - - - - - - - - - - - - - 0 0.033333 0.066666 0.1 0.133333 0.166667 0.2 0.233333 0.266667 0.3 0.333333 0.366667 0.4 0.433333 0.466667 0.5 0.533333 0.566667 0.6 0.633333 0.666667 0.7 0.733333 0.766667 0.8 0.833333 0.866667 0.9 0.933333 0.966667 1 1.03333 1.06667 1.1 1.13333 1.16667 1.2 1.23333 1.26667 1.3 1.33333 1.36667 1.4 1.43333 1.46667 1.5 1.53333 1.56667 1.6 1.63333 1.66667 1.7 1.73333 1.76667 1.8 1.83333 1.86667 1.9 1.93333 1.96667 2 2.03333 2.06667 2.1 2.13333 2.16667 2.2 2.23333 2.26667 2.3 2.33333 2.36667 2.4 2.43333 2.46667 2.5 2.53333 2.56667 2.6 2.63333 2.66667 2.7 2.73333 2.76667 2.8 2.83333 2.86667 2.9 2.93333 2.96667 3 3.03333 3.06667 3.1 3.13333 3.16667 3.2 3.23333 3.26667 3.3 3.33333 - - - - - - - CONSTANT - CONSTANT - - - - 0.000796 1 0 374.193 1 -0.000795 0.000002 -0.000038 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000000 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 -0.000035 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 -0.000003 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000085 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 -0.00003 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000077 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000029 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 -0.000064 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 -0.000061 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 -0.000027 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 -0.000032 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 -0.000046 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000103 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000021 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 -0.000001 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000023 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000057 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000113 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000033 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 -0.00003 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.00014 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000096 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 -0.000026 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000094 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000064 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000008 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000063 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000002 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.00001 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000074 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000022 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000061 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 -0.000008 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 -0.000013 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 -0.000033 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000029 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 -0.000053 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000013 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000012 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 -0.000003 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000063 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000144 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000018 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.00004 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000004 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.00001 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000029 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 -0.000033 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000056 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000028 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.00005 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 -0.000041 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000103 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000076 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.00003 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000057 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 -0.000029 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000012 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000096 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000079 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000001 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000042 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000079 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000053 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000001 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000089 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 -0.0001 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 -0.000015 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 -0.000013 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000111 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000122 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 -0.000056 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000056 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000085 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000005 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000052 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000002 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 -0.000042 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 -0.00004 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000066 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 -0.000022 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 -0.000013 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000009 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000028 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000061 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 -0.00002 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000076 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000017 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 -0.000011 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000079 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 -0.000044 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000000 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000056 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000048 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 -0.000007 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000066 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 -0.000000 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 -0.000018 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 0.000182 0.000002 0 -1 -0.000003 0 0 0 1 0.000796 1 0 374.193 1 -0.000795 0.000002 -0.000013 0.000002 0 -1 -0.000003 0 0 0 1 - - - - - - - - LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR - - - - - - - - - - - - - - - - 0 0.033333 0.066666 0.1 0.133333 0.166667 0.2 0.233333 0.266667 0.3 0.333333 0.366667 0.4 0.433333 0.466667 0.5 0.533333 0.566667 0.6 0.633333 0.666667 0.7 0.733333 0.766667 0.8 0.833333 0.866667 0.9 0.933333 0.966667 1 1.03333 1.06667 1.1 1.13333 1.16667 1.2 1.23333 1.26667 1.3 1.33333 1.36667 1.4 1.43333 1.46667 1.5 1.53333 1.56667 1.6 1.63333 1.66667 1.7 1.73333 1.76667 1.8 1.83333 1.86667 1.9 1.93333 1.96667 2 2.03333 2.06667 2.1 2.13333 2.16667 2.2 2.23333 2.26667 2.3 2.33333 2.36667 2.4 2.43333 2.46667 2.5 2.53333 2.56667 2.6 2.63333 2.66667 2.7 2.73333 2.76667 2.8 2.83333 2.86667 2.9 2.93333 2.96667 3 3.03333 3.06667 3.1 3.13333 3.16667 3.2 3.23333 3.26667 3.3 3.33333 - - - - - - - CONSTANT - CONSTANT - - - - 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 166.968 - - - - - - - - LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ./monster.jpg - - - - - - - - - - - - - monster.jpg - A8R8G8B8 - - - - - monster_jpg-surface - WRAP - WRAP - NONE - NONE - NONE - - - - - - 0.588235 0.588235 0.588235 1 - - - - - - 0 - 0 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - - - - - - 0.1 0.1 0.1 1 - - - 20 - - - 0 0 0 1 - - - 1 - - - 1 1 1 1 - - - 1 - - - 1 - - - - - - 0 - - - 0 - - - - - - - - 0 - 0 - 0 - 0 - - - - - - - - - 558.965 404.09 -9.41835 252.222 402.864 -54.205 32.5665 387.298 -78.854 -359.273 211.385 -19.0616 -598.079 -13.3313 -17.5054 -635.946 -145.914 -19.0616 -547.166 -372.164 40.2031 -260.462 -162.299 40.203 246.315 -147.057 -79.6185 542.48 -151.06 -44.913 758.412 -43.888 -62.8404 21.7976 426.108 40.203 -378.533 238.981 40.2031 -627.402 27.0373 40.2031 -605.1 -174.866 40.2031 -25.3967 -194.286 40.203 -107.623 353.534 -99.0134 268.451 290.85 -169.261 -321.215 143.919 -77.6915 260.646 153.714 -223.493 39.9728 209.082 -156.039 -391.04 -41.853 -139.908 -121.936 170.547 -142.274 380.051 66.4672 -251.531 242.389 21.5963 -203.746 22.0431 -26.5261 -156.814 -213.771 -92.1041 -97.4809 -298.191 -127.509 -103.042 -77.3162 -32.3855 -125.878 257.239 -50.0724 -161.894 34.0969 -134.952 -108.118 -257.987 -139.94 -30.6083 -50.7188 -123.835 -67.4952 22.0084 -181.514 -55.5322 -284.581 -304.684 40.203 -99.0235 -155.844 40.203 705.303 221.823 -138.614 789.328 20.678 -72.2831 -537.312 -32.2996 -100.256 -615.112 -174.866 -86.8028 -550.064 -307.245 -44.9519 -314.968 -227.647 -77.0878 -281.314 48.6181 -243.634 -169.529 -141.817 -145.953 -410.356 17.6217 -316.705 -465.797 -178.963 -326.302 -440.269 -338.364 -242.311 -255.603 -227.647 -138.915 14.2079 45.2649 -335.227 32.0551 11.6046 -247.885 -24.9719 3.8576 -444.533 -103.65 -112.409 -447.284 -132.463 -170.696 -330.935 -15.0917 -60.2354 -242.667 154.274 -15.1391 -422.936 160.1 -42.0847 -339.077 65.7941 -48.1499 -437.565 -52.7382 -120.825 -378.505 -86.6906 -159.574 -345.821 65.6433 -103.599 -310.298 143.503 -162.674 -427.832 140.897 -179.078 -341.135 76.3055 -158.966 -449.154 -56.9874 -172.668 -407.19 -101.405 -187.717 -340.868 61.6315 -188.674 -308.948 -57.088 -388.882 -363.103 -61.2255 -389.398 -234.579 -86.187 -363.046 -376.695 -171.947 -301.741 -353.317 -194.818 -287.062 -237.297 -121.906 -347.524 -216.383 -102.277 -417.599 -349.579 -101.46 -419.247 -226.311 -120.57 -397.079 -363.511 -209.07 -327.758 -348.909 -220.374 -317.345 -237.75 -150.824 -384.223 -214.018 -216.691 -512.471 -299.362 -220.533 -524.241 -242.736 -279.207 -477.521 -318.598 -372.739 -407.375 -259.441 -394.838 -404.628 -179.247 -257.957 -505.428 -155.418 -236.316 -568.835 -297.066 -240.158 -580.604 -240.44 -317.133 -577.263 -381.502 -521.043 -466.938 -278.287 -543.141 -464.192 -146.696 -231.113 -578.573 -142.03 -143.793 -589.922 -387.554 -123.358 -615.393 -345.738 -180.616 -583.426 -450.221 -97.4354 -662.435 -286.208 -384.975 -704.341 -438.572 -493.77 -624.724 -277.971 -513.328 -614.68 -198.074 -308.634 -722.901 -169.787 -207.244 -671.558 -454.329 -117.005 -756.407 -283.655 -470.519 -648.255 -230.036 -351.878 -729.182 -267.828 -158.686 -717.111 -363.501 -9.81772 -748.063 -392.599 -66.3276 -711.51 -504.127 676.056 403.457 -10.6067 922.953 375.782 -39.6783 960.668 383.161 2.14378 1061.35 356.762 40.2028 1053.7 346.758 -18.2369 1117.05 272.841 -14.6657 1119.22 284.353 40.2028 1152.01 217.427 40.2028 1120.75 128.277 -32.3903 1154.32 99.7808 40.2028 948.344 -68.9338 40.2028 918.453 14.2217 -95.2934 596.877 202.43 -226.42 766.139 12.7916 -190.462 494.4 -153.3 -118.67 729.558 136.921 -244.167 545.802 93.8417 -338.023 690.121 50.8344 -324.877 764.322 4.0724 -249.3 518.621 11.2156 -389.245 682.576 -164.696 -133.836 415.539 -12.9001 -273.108 643.124 -35.5904 -384.905 715.597 -118.766 -287.239 495.985 -152.255 -186.11 488.245 -48.2971 -391.496 623.367 -203.09 -177.233 400.659 -56.5926 -292.368 601.471 -109.919 -400.28 651.012 -204.493 -315.403 449.267 -241.792 -227.751 438.002 -183.939 -434.285 595.313 -310.175 -259.375 376.155 -167.649 -367.745 507.031 -228.749 -409.177 588.146 -278.435 -375.276 289.487 -226.311 -450.472 280.893 -219.652 -407.647 332.802 -294.654 -479.854 252.694 -283.647 -465.87 209.876 -275.697 -408.128 319.396 -310.744 -255.764 257.069 -363.088 -452.122 467.024 -349.519 -290.574 215.546 -359.667 -402.806 467.468 -347.786 -451.105 337.988 -457.825 -252.446 265.056 -466.161 -381.514 441.552 -435.883 -285.479 279.28 -455.978 -306.382 352.053 -456.275 -402.807 441.455 -445.446 -368.508 383.441 -553.769 -229.992 264.043 -561.999 -387.196 466.393 -551.819 -250.784 272.997 -559.478 -296.869 390.756 -555.537 -398.519 464.616 -556.584 -343.033 271.471 -655.645 -297.372 418.604 -630.348 -400.968 377.032 -640.682 -230.241 293.651 -667.416 -378.092 460.045 -626.719 -254.409 484.703 -631.39 -326.296 340.152 -825.111 -202.604 317.335 -787.405 -377.895 451.236 -688.596 -235.762 304.327 -790.592 -301.295 433.476 -693.155 -415.899 490.612 -692.953 -314.281 499.471 -820.408 -177.331 486.543 -861.734 -438.858 527.033 -790.548 -193.537 507.467 -768.062 -413.427 577.257 -761.531 -297.345 626.437 -888.782 -452.827 644.719 -823.452 -436.229 645.052 -822.685 -359.418 626.526 -888.681 -181.518 645.299 -822.477 -197.725 625.983 -889.066 -264.872 645.229 -822.897 -252.173 580.055 -836.628 -298.385 627.235 -885.962 -359.336 695.541 -913.328 -379.792 697.205 -900.122 -181.253 1039.45 303.194 -77.8383 1101.1 253.686 -49.6417 885.246 351.891 -63.9092 1015.08 235.109 -111.831 1102.84 161.378 -71.0802 843.785 368.243 -71.3395 965.997 179.582 -129.088 1077.52 75.2012 -88.1132 846.834 138.578 -109.506 1130.63 219.113 -9.82445 972.648 -25.3677 -63.5674 679.933 441.705 40.2029 260.312 440.008 40.203 246.48 -170.173 40.203 912.514 -48.5509 40.2028 824.669 424.477 40.2029 878.609 424.149 40.2028 909.031 425.978 40.2028 968.589 404.236 40.2028 984.155 -76.1361 40.2028 1132.43 24.6494 40.2028 1089.27 37.2052 -39.0682 1056.88 -2.82201 -53.0906 997.81 -37.0952 -45.2141 1100.85 -23.3858 40.2028 1122.15 -2.15071 40.2028 1031.13 -65.4153 40.2028 -974.541 -116.414 40.2032 -966.748 -188.349 -6.42429 -973.5 -204.705 40.2032 -1360.94 -134.989 40.2032 -1356.56 -175.492 13.1094 -1360.36 -184.7 40.2032 -1746.98 -71.4633 40.2033 987.83 34.0016 -96.8683 482.298 625.285 5.71433 309.065 777.283 20.6301 -261.253 577.012 5.71445 -468.805 677.187 20.6302 558.966 404.09 89.8242 252.222 402.864 134.611 32.5666 387.298 159.26 -359.273 211.385 99.4677 -598.079 -13.3312 97.9116 -635.946 -145.914 99.4678 246.315 -147.057 160.024 542.48 -151.06 125.319 758.412 -43.888 143.246 -233.929 337.011 40.203 -107.623 353.534 179.419 268.451 290.85 249.667 -321.215 143.919 158.098 260.646 153.714 303.899 39.9729 209.082 236.445 -391.04 -41.853 220.314 -121.935 170.547 222.68 380.051 66.4672 331.937 242.389 21.5963 284.152 22.0431 -26.5261 237.22 -213.771 -92.1041 177.887 -298.191 -127.509 183.448 -77.3161 -32.3854 206.284 257.24 -50.0724 242.3 34.0969 -134.952 188.524 -257.987 -139.94 111.014 -50.7188 -123.835 147.901 22.0084 -181.514 135.938 705.303 221.823 219.02 789.328 20.678 152.689 -537.312 -32.2996 180.662 -615.112 -174.866 167.209 -550.064 -307.245 125.358 -314.968 -227.647 157.494 -281.314 48.6181 324.041 -169.529 -141.817 226.359 -410.355 17.6217 397.111 -465.797 -178.963 406.708 -440.269 -338.364 322.717 -255.603 -227.647 219.321 14.208 45.2649 415.633 32.0552 11.6047 328.291 -24.9718 3.85764 524.939 -103.65 -112.409 527.69 -132.463 -170.696 411.341 -15.0917 -60.2354 323.073 154.274 -15.1391 503.342 160.1 -42.0846 419.483 65.7942 -48.1499 517.971 -52.7381 -120.825 458.911 -86.6904 -159.574 426.227 65.6434 -103.599 390.704 143.503 -162.674 508.238 140.897 -179.078 421.541 76.3056 -158.966 529.56 -56.9872 -172.668 487.596 -101.405 -187.717 421.274 61.6316 -188.674 389.354 -57.0879 -388.882 443.509 -61.2254 -389.398 314.985 -86.1869 -363.046 457.101 -171.947 -301.741 433.723 -194.817 -287.062 317.703 -121.906 -347.524 296.789 -102.276 -417.599 429.985 -101.46 -419.247 306.717 -120.57 -397.079 443.918 -209.07 -327.758 429.315 -220.374 -317.345 318.156 -150.824 -384.223 294.424 -216.691 -512.471 379.768 -220.533 -524.241 323.142 -279.206 -477.521 399.004 -372.739 -407.375 339.847 -394.838 -404.628 259.653 -257.957 -505.428 235.824 -236.316 -568.835 377.472 -240.158 -580.604 320.846 -317.133 -577.263 461.908 -521.042 -466.938 358.693 -543.141 -464.192 227.102 -231.113 -578.573 222.436 -143.793 -589.922 467.96 -123.358 -615.393 426.144 -180.616 -583.426 530.627 -97.4353 -662.435 366.614 -384.975 -704.341 518.979 -493.77 -624.724 358.377 -513.328 -614.68 278.481 -308.634 -722.901 250.194 -207.244 -671.558 534.735 -117.005 -756.407 364.061 -470.518 -648.255 310.442 -351.878 -729.182 348.234 -158.686 -717.111 443.907 -9.81756 -748.063 473.005 -66.3274 -711.51 584.533 676.056 403.457 91.0124 922.953 375.782 120.084 960.668 383.161 78.2619 1053.7 346.758 98.6425 1117.05 272.841 95.0714 1120.75 128.277 112.796 1150.35 66.9116 40.2028 918.453 14.2217 175.699 596.877 202.43 306.826 766.139 12.7916 270.868 494.4 -153.3 199.075 729.558 136.921 324.573 545.802 93.8417 418.428 690.121 50.8344 405.282 764.322 4.0724 329.706 518.621 11.2156 469.651 682.576 -164.696 214.241 415.539 -12.9001 353.513 643.124 -35.5904 465.31 715.597 -118.766 367.645 495.985 -152.255 266.516 488.245 -48.2971 471.902 623.367 -203.09 257.639 400.659 -56.5926 372.773 601.471 -109.919 480.686 651.012 -204.493 395.809 449.267 -241.792 308.157 438.002 -183.939 514.69 595.313 -310.175 339.781 376.155 -167.649 448.151 507.031 -228.749 489.582 588.147 -278.435 455.681 289.487 -226.311 530.878 280.893 -219.652 488.053 332.802 -294.654 560.26 252.695 -283.647 546.276 209.876 -275.697 488.534 319.396 -310.744 336.17 257.069 -363.088 532.528 467.024 -349.519 370.98 215.546 -359.667 483.212 467.468 -347.786 531.511 337.988 -457.825 332.852 265.056 -466.161 461.92 441.553 -435.883 365.885 279.28 -455.978 386.788 352.053 -456.275 483.212 441.455 -445.446 448.914 383.441 -553.769 310.398 264.043 -561.999 467.602 466.393 -551.819 331.19 272.997 -559.478 377.275 390.756 -555.537 478.924 464.616 -556.584 423.439 271.471 -655.645 377.778 418.604 -630.348 481.374 377.032 -640.682 310.647 293.651 -667.416 458.498 460.045 -626.719 334.815 484.703 -631.39 406.702 340.152 -825.111 283.009 317.335 -787.405 458.301 451.236 -688.596 316.167 304.327 -790.592 381.701 433.476 -693.155 496.305 490.612 -692.953 394.687 499.471 -820.408 257.736 486.543 -861.734 519.264 527.033 -790.548 273.943 507.467 -768.062 493.833 577.257 -761.531 377.751 626.437 -888.782 533.232 644.719 -823.452 516.635 645.052 -822.685 439.824 626.526 -888.681 261.924 645.299 -822.477 278.13 625.983 -889.066 345.278 645.229 -822.897 332.579 580.055 -836.628 378.791 627.235 -885.962 439.741 695.541 -913.328 460.197 697.205 -900.122 261.658 1039.45 303.194 158.244 1101.1 253.686 130.047 885.246 351.891 144.315 1015.08 235.109 192.237 1102.84 161.378 151.486 843.785 368.243 151.745 965.997 179.582 209.493 1077.52 75.2012 168.519 846.835 138.578 189.911 1130.63 219.113 90.2301 972.648 -25.3677 143.973 505.639 412.719 40.2029 568.185 -165.976 40.2029 762.912 -67.4993 40.2029 841.425 -35.9378 40.2029 1089.27 37.2052 119.474 1056.88 -2.82201 133.496 997.81 -37.0952 125.62 -966.748 -188.349 86.8306 -1356.56 -175.492 67.297 987.83 34.0016 177.274 442.767 586.685 40.2029 482.298 625.285 74.6915 486.264 638.201 40.2029 309.065 777.283 59.7757 286.808 755.55 40.203 311.298 784.555 40.203 3.60059 892.627 40.203 -312.712 483.512 40.203 -261.253 577.012 74.6916 -260.883 590.518 40.203 -468.805 677.187 59.7759 -484.444 650.296 40.2031 -468.596 684.792 40.2031 -793.984 706.704 40.2031 - - - - - - - - - - 0.003951 0.999992 0 0.110554 0.99387 0 0.102833 0.782531 -0.614061 0.029179 0.844324 -0.535038 -0.040556 0.999177 0 -0.043654 0.675701 -0.735882 -0.239517 0.413786 -0.878301 -0.515652 0.569872 -0.639804 -0.625457 0.780259 0 -0.561129 0.827728 0 -0.682649 0.730747 0 -0.613385 0.469875 -0.634804 -0.959489 -0.281745 0 -0.973292 -0.023675 -0.228345 -0.346074 -0.938207 0 -0.191028 -0.981585 0 -0.162091 -0.886156 -0.434113 -0.264236 -0.964458 0 0.067329 -0.997731 0 0.020066 -0.869195 -0.494063 0.268387 -0.963311 0 0.130125 -0.991362 -0.016379 0.404848 -0.914384 0 0.715591 -0.675729 -0.176976 0.135267 -0.990809 0 0.582106 -0.555438 -0.593836 -0.324869 -0.945759 0 -0.11244 -0.559395 -0.82124 -0.041094 0.554449 -0.831203 -0.308706 0.30649 -0.900425 -0.649077 0.588422 -0.482139 -0.199852 0.152187 -0.967935 0.125028 0.690402 -0.71254 -0.352076 -0.041325 -0.935059 -0.151259 0.200554 -0.967935 -0.234784 0.072102 -0.96937 0.335342 0.938623 -0.080824 -0.181497 -0.314485 -0.93175 -0.181369 -0.246131 -0.952116 -0.216352 -0.296087 -0.930336 0.063528 -0.453519 -0.888979 0.988906 -0.143524 0.038289 -0.204613 -0.971124 -0.122689 -0.058968 -0.555214 -0.829614 -0.161566 -0.608928 -0.776597 -0.284125 -0.727539 -0.624468 0.487899 -0.783648 -0.384513 0.727346 -0.686271 0.000424 0.656623 -0.754219 0 0.683707 -0.729756 0 0.024911 0.648871 -0.760491 0.396987 0.67921 -0.617313 0.604959 0.492678 -0.625535 0.162856 0.009652 -0.986603 -0.913077 -0.093294 -0.396971 -0.452602 -0.783538 -0.425699 0.01674 0.948197 0.317241 -0.477151 0.683223 -0.55275 0.489833 -0.094216 0.86671 0.559917 -0.66163 0.498737 -0.607091 -0.148271 -0.780677 -0.213606 -0.922061 -0.322764 0.202216 0.979178 -0.017837 -0.02866 0.569881 -0.821227 0.468919 0.479799 0.741558 0.524966 -0.529853 0.666083 0.014497 -0.425666 -0.904764 0.449791 -0.889485 -0.080652 0.700646 0.496146 -0.512771 0.052738 -0.012788 -0.998527 0.857724 0.252714 0.44771 0.254126 -0.238897 0.937202 -0.161138 -0.46972 -0.867985 -0.799048 -0.597824 0.064262 0.752699 -0.307481 -0.582151 0.016912 -0.100619 -0.994781 0.82225 -0.366813 0.435147 0.175473 0.14535 0.973695 -0.524694 0.240885 -0.816499 -0.690488 0.699754 0.183225 0.459618 -0.714649 -0.527283 -0.117647 -0.268346 -0.956112 0.627633 -0.455639 0.631245 0.118693 0.159233 0.98008 -0.574643 0.361038 -0.734463 -0.500235 0.635224 0.588435 0.371119 -0.756739 -0.538161 -0.067704 -0.308406 -0.948842 0.58804 -0.512878 0.625432 0.138143 0.172715 0.975236 -0.492345 0.443881 -0.74871 -0.439087 0.717935 0.540159 0.521185 -0.569577 -0.635569 -0.034473 0.125244 -0.991527 0.863399 -0.491989 0.11175 0.394897 0.183599 0.900193 -0.396976 0.759409 -0.515468 -0.204228 0.809901 0.549865 0.761651 0.594689 -0.257358 -0.031475 0.601381 -0.798342 0.92541 0.378091 0.02577 0.561192 0.069755 0.824741 -0.72615 0.475108 -0.496969 -0.734338 0.33702 0.589208 0.668467 0.74373 0.004159 0.037098 0.765901 -0.641887 0.763351 0.626641 -0.156895 0.750266 0.335599 0.569626 -0.421931 -0.468084 -0.776448 -0.844026 -0.469524 -0.259165 -0.766459 -0.486919 0.418868 -0.059291 -0.689606 0.721753 -0.267195 -0.374391 -0.88794 0.349835 -0.831706 0.431138 -0.328921 -0.943832 0.031493 -0.560808 -0.825324 0.065839 0.075668 -0.867345 -0.491922 0.695889 -0.405012 -0.593047 0.789058 -0.367521 -0.492256 0.118197 0.99299 0 0.029257 0.999572 0 0.022786 0.585812 -0.810126 0.02576 0.999668 0 0.232893 0.617869 -0.750999 0.104646 0.99451 0 0.111908 0.764994 -0.63424 0.413662 0.91043 0 0.368233 0.795185 -0.481752 0.590894 0.806749 0 0.49252 0.764298 -0.416261 0.833486 0.55254 0 0.815752 0.441381 -0.373807 0.985491 0.16973 0 0.894805 0.109397 -0.432846 0.997713 -0.067598 0 0.88159 -0.084706 -0.464354 0.962805 -0.270197 0 0.562304 -0.247991 -0.788869 -0.05172 -0.751783 -0.657379 0.000201 -1 0 -0.356051 -0.934466 0 0.536673 -0.791113 0.293466 0.988537 -0.107662 -0.105849 -0.162148 0.619895 -0.767749 -0.95648 0.052388 -0.287057 0.531929 0.339036 -0.775955 0.945364 -0.058698 -0.32069 0.481767 0.116366 -0.868539 -0.295403 0.416429 -0.85984 0.857633 -0.390921 -0.334137 -0.976716 0.214038 -0.014616 -0.598989 -0.648066 0.470343 0.274172 -0.723051 0.634056 0.368131 -0.061468 -0.92774 -0.404425 0.296384 -0.865215 0.859299 -0.420319 -0.291438 -0.710331 0.703856 0.004068 -0.416905 -0.127711 0.899933 0.49042 -0.801963 0.34109 0.32735 0.06743 -0.942494 0.045845 0.389365 -0.919942 0.645471 -0.5029 -0.574855 -0.589922 0.80218 0.092194 -0.444411 0.22876 0.866122 0.510739 -0.59996 0.615787 0.045279 -0.026753 -0.998616 -0.411493 0.662227 -0.626202 0.458666 -0.414417 -0.786056 -0.927111 0.374433 -0.01626 -0.538897 0.197364 -0.818925 -0.976711 -0.202454 -0.071051 -0.423002 -0.358106 -0.832364 -0.855572 -0.027583 0.516948 -0.261409 0.078226 0.962053 0.788202 0.06098 0.612388 0.123634 -0.280844 -0.951757 -0.810917 -0.339284 -0.476759 0.810781 -0.228702 -0.538822 -0.870677 -0.015814 0.4916 -0.093341 0.100575 0.990541 0.783567 0.123221 0.608965 0.284134 0.094254 -0.95414 -0.785894 -0.085417 -0.612433 0.887101 0.095528 -0.451582 -0.927229 -0.092829 0.362807 -0.184349 0.034536 0.982254 0.740635 0.028996 0.671282 0.377329 0.1855 -0.907311 -0.710498 -0.129224 -0.691733 0.970597 0.133761 -0.200122 -0.810389 -0.567261 0.146578 -0.567582 -0.557926 0.60545 0.348899 0.421357 0.837095 0.253331 0.218497 -0.942381 -0.646871 -0.485853 -0.587797 0.845312 0.533642 -0.025938 0.289814 -0.955286 -0.058619 -0.100411 -0.40308 0.909639 0.267295 0.575354 0.772995 0.236117 0.526238 -0.816898 -0.301272 -0.651979 -0.695815 0.666865 0.74462 0.028841 0.54555 0.573956 -0.610696 0.0768 -0.611765 -0.787302 -0.203929 -0.766999 0.60838 0.777184 0.498571 0.383942 0.133368 -0.750267 -0.647543 -0.217023 -0.626621 0.748497 0.514176 0.629662 0.582365 0.801553 0.376284 -0.464675 0.751849 -0.626234 0.206284 0.780989 -0.462282 0.419942 0.365181 0.51535 -0.775279 0.705932 0.288136 -0.647022 0.262655 0.247148 -0.932701 0.722702 0.035726 -0.690236 0.047851 0.045363 -0.997824 0.162996 -0.359637 -0.918746 0.502253 -0.606735 -0.61613 0.927098 -0.374818 0 0.769904 -0.410954 -0.488227 0.180715 -0.818684 -0.545068 0.649747 -0.76015 0 0.392829 -0.919612 0 0.827651 -0.561243 0 -0.292352 0.707466 -0.643445 -0.292352 0.707466 -0.643445 -0.292352 0.707466 -0.643445 -0.041172 0.023484 -0.998876 -0.041172 0.023484 -0.998876 -0.041172 0.023484 -0.998876 0.108915 -0.942839 -0.314949 0.108915 -0.942839 -0.314949 0.108915 -0.942839 -0.314949 0.071361 -0.881071 -0.467569 0.071361 -0.881071 -0.467569 0.071361 -0.881071 -0.467569 -0.264114 0.504294 -0.82215 -0.264114 0.504294 -0.82215 -0.264114 0.504294 -0.82215 -0.026624 0.553819 -0.832211 -0.026624 0.553819 -0.832211 -0.026624 0.553819 -0.832211 -0.024223 0.541908 -0.840088 -0.024223 0.541908 -0.840088 -0.024223 0.541908 -0.840088 -0.047534 -0.943685 -0.327412 -0.047534 -0.943685 -0.327412 -0.047534 -0.943685 -0.327412 -0.048622 -0.940296 -0.336867 -0.048622 -0.940296 -0.336867 -0.048622 -0.940296 -0.336867 0.092241 0.560524 -0.822985 0.092241 0.560524 -0.822985 0.092241 0.560524 -0.822985 -0.263992 -0.901329 -0.343386 -0.263992 -0.901329 -0.343386 -0.263992 -0.901329 -0.343386 -0.6813 -0.246224 -0.68935 -0.6813 -0.246224 -0.68935 -0.6813 -0.246224 -0.68935 -0.009776 0.064877 -0.997845 -0.009776 0.064877 -0.997845 -0.009776 0.064877 -0.997845 0.702004 0.636654 -0.319157 0.702004 0.636654 -0.319157 0.702004 0.636654 -0.319157 0.615348 0.606492 -0.503502 0.615348 0.606492 -0.503502 0.615348 0.606492 -0.503502 -0.568631 -0.141655 -0.810304 -0.568631 -0.141655 -0.810304 -0.568631 -0.141655 -0.810304 -0.391327 -0.36142 -0.846309 -0.391327 -0.36142 -0.846309 -0.391327 -0.36142 -0.846309 -0.388712 -0.359781 -0.84821 -0.388712 -0.359781 -0.84821 -0.388712 -0.359781 -0.84821 0.60435 0.721866 -0.337151 0.60435 0.721865 -0.337151 0.60435 0.721866 -0.337151 0.603477 0.721455 -0.339585 0.603477 0.721455 -0.339586 0.603477 0.721455 -0.339585 -0.242237 -0.500473 -0.831173 -0.242237 -0.500473 -0.831173 -0.242237 -0.500473 -0.831173 0.308904 0.879502 -0.362015 0.308904 0.879502 -0.362015 0.308904 0.879502 -0.362015 -0.669319 -0.359933 -0.649969 -0.669319 -0.359933 -0.649969 -0.669319 -0.359933 -0.649969 0.023854 0.437621 -0.898843 0.023854 0.437621 -0.898843 0.023854 0.437621 -0.898843 0.442743 0.833286 -0.331079 0.442743 0.833286 -0.331079 0.442743 0.833286 -0.331079 0.489285 0.841257 -0.229971 0.489285 0.841257 -0.229971 0.489285 0.841257 -0.229971 -0.560374 0.002904 -0.828234 -0.560374 0.002904 -0.828234 -0.560374 0.002904 -0.828234 -0.379031 -0.390276 -0.839059 -0.379031 -0.390276 -0.839059 -0.379031 -0.390276 -0.839059 -0.18769 -0.247335 -0.950578 -0.18769 -0.247335 -0.950578 -0.18769 -0.247335 -0.950578 0.38946 0.857117 -0.337152 0.38946 0.857117 -0.337152 0.38946 0.857117 -0.337152 0.388729 0.856488 -0.339586 0.388729 0.856488 -0.339586 0.388729 0.856488 -0.339586 -0.099681 -0.547006 -0.831173 -0.099681 -0.547006 -0.831173 -0.099681 -0.547006 -0.831173 0.062632 0.930066 -0.362014 0.062632 0.930066 -0.362014 0.062632 0.930066 -0.362014 0.029179 0.844324 0.535038 0.102833 0.782531 0.614061 -0.043653 0.675701 0.735882 -0.239517 0.413786 0.878301 -0.515652 0.569872 0.639804 -0.613385 0.469875 0.634804 -0.973292 -0.023675 0.228346 -0.162091 -0.886156 0.434113 0.020066 -0.869195 0.494062 0.130125 -0.991362 0.016379 0.715591 -0.675729 0.176976 0.582107 -0.555438 0.593835 -0.11244 -0.559395 0.82124 -0.041094 0.554449 0.831203 -0.649077 0.588422 0.482139 -0.308706 0.30649 0.900425 -0.199852 0.152187 0.967935 -0.352075 -0.041325 0.935059 0.125028 0.690402 0.71254 -0.151259 0.200554 0.967935 -0.234784 0.072102 0.96937 0.335342 0.938623 0.080824 -0.181368 -0.24613 0.952116 -0.181496 -0.314485 0.93175 -0.216352 -0.296087 0.930336 0.988906 -0.143524 -0.038289 0.063528 -0.453519 0.888979 -0.058967 -0.555214 0.829614 -0.204613 -0.971124 0.122689 -0.161566 -0.608928 0.776597 -0.284125 -0.727539 0.624468 0.727346 -0.686271 -0.000425 0.487899 -0.783648 0.384513 0.396987 0.67921 0.617313 0.024911 0.648871 0.760491 0.604959 0.492678 0.625534 0.162856 0.009652 0.986603 -0.913077 -0.093294 0.396972 -0.452602 -0.783538 0.425699 -0.477151 0.683223 0.55275 0.01674 0.948197 -0.317241 0.489833 -0.094216 -0.86671 0.559917 -0.66163 -0.498737 -0.607091 -0.148271 0.780677 -0.213606 -0.922061 0.322764 -0.028659 0.569881 0.821227 0.202216 0.979178 0.017837 0.468918 0.4798 -0.741558 0.524965 -0.529853 -0.666084 0.014498 -0.425666 0.904764 0.449791 -0.889485 0.080652 0.052738 -0.012788 0.998527 0.700647 0.496146 0.512771 0.857724 0.252714 -0.44771 0.254126 -0.238897 -0.937202 -0.161138 -0.46972 0.867985 -0.799048 -0.597824 -0.064262 0.016913 -0.100619 0.994781 0.752699 -0.307481 0.582151 0.82225 -0.366813 -0.435147 0.175473 0.14535 -0.973695 -0.524693 0.240885 0.816499 -0.690488 0.699754 -0.183225 -0.117646 -0.268346 0.956112 0.459618 -0.714649 0.527283 0.627633 -0.455639 -0.631245 0.118693 0.159233 -0.98008 -0.574643 0.361038 0.734464 -0.500235 0.635224 -0.588435 -0.067704 -0.308406 0.948842 0.371119 -0.756738 0.538161 0.58804 -0.512878 -0.625432 0.138143 0.172714 -0.975237 -0.492345 0.443881 0.74871 -0.439087 0.717935 -0.540159 -0.034472 0.125244 0.991527 0.521185 -0.569577 0.635569 0.863399 -0.491989 -0.11175 0.394896 0.183599 -0.900194 -0.396976 0.759409 0.515468 -0.204228 0.809901 -0.549865 -0.031475 0.601381 0.798342 0.761651 0.594689 0.257358 0.92541 0.378091 -0.025771 0.561191 0.069755 -0.824741 -0.72615 0.475108 0.496969 -0.734338 0.33702 -0.589207 0.037099 0.765902 0.641887 0.668467 0.74373 -0.004159 0.763352 0.626641 0.156894 0.750266 0.335599 -0.569626 -0.844026 -0.469524 0.259166 -0.421931 -0.468084 0.776448 -0.766459 -0.486918 -0.418868 -0.059292 -0.689606 -0.721753 -0.267195 -0.374391 0.88794 0.349835 -0.831706 -0.431138 -0.560809 -0.825323 -0.065839 -0.328921 -0.943832 -0.031493 0.075668 -0.867345 0.491922 0.695889 -0.405012 0.593047 0.789058 -0.367521 0.492256 0.022787 0.585812 0.810126 0.232893 0.617869 0.750999 0.111908 0.764994 0.63424 0.368233 0.795185 0.481752 0.492521 0.764298 0.41626 0.815752 0.441381 0.373807 0.894805 0.109397 0.432846 0.88159 -0.084706 0.464353 0.562305 -0.247991 0.788869 -0.05172 -0.751784 0.657378 0.988537 -0.107662 0.105849 0.536673 -0.791113 -0.293466 -0.95648 0.052388 0.287058 -0.162148 0.619895 0.767749 0.531929 0.339036 0.775955 0.945364 -0.058698 0.32069 -0.295403 0.416429 0.85984 0.481767 0.116366 0.868539 0.857633 -0.390921 0.334136 -0.59899 -0.648066 -0.470342 -0.976716 0.214038 0.014616 0.274172 -0.723051 -0.634056 -0.404425 0.296384 0.865215 0.368131 -0.061468 0.92774 0.8593 -0.420319 0.291438 -0.416906 -0.127711 -0.899933 -0.710332 0.703855 -0.004068 0.49042 -0.801963 -0.34109 0.045845 0.389365 0.919942 0.327351 0.06743 0.942494 0.645471 -0.5029 0.574855 -0.444411 0.22876 -0.866122 -0.589922 0.80218 -0.092194 0.510739 -0.59996 -0.615787 -0.411492 0.662227 0.626202 0.045279 -0.026753 0.998616 0.458666 -0.414417 0.786056 -0.927111 0.374433 0.01626 -0.538896 0.197364 0.818925 -0.976711 -0.202454 0.071052 -0.423002 -0.358106 0.832364 -0.261409 0.078226 -0.962053 -0.855572 -0.027583 -0.516948 0.788202 0.06098 -0.612388 -0.810917 -0.339284 0.476759 0.123634 -0.280844 0.951757 0.810781 -0.228702 0.538822 -0.093341 0.100575 -0.990541 -0.870678 -0.015814 -0.4916 0.783567 0.123221 -0.608966 -0.785894 -0.085417 0.612433 0.284135 0.094254 0.95414 0.887101 0.095528 0.451582 -0.18435 0.034536 -0.982254 -0.927229 -0.092829 -0.362806 0.740635 0.028996 -0.671282 -0.710498 -0.129224 0.691733 0.377329 0.1855 0.907311 0.970597 0.133761 0.200122 -0.567582 -0.557926 -0.60545 -0.810389 -0.567261 -0.146578 0.348899 0.421357 -0.837095 -0.646871 -0.485853 0.587797 0.253332 0.218497 0.942381 0.845312 0.533642 0.025938 -0.100412 -0.40308 -0.909639 0.289814 -0.955286 0.058619 0.267295 0.575354 -0.772995 -0.301271 -0.651979 0.695815 0.236117 0.526238 0.816898 0.666866 0.74462 -0.028841 0.0768 -0.611765 0.787303 0.54555 0.573956 0.610696 -0.203929 -0.766999 -0.608379 0.777184 0.498571 -0.383943 -0.217023 -0.626621 -0.748497 0.133368 -0.750267 0.647543 0.514176 0.629662 -0.582365 0.801553 0.376284 0.464675 0.751849 -0.626234 -0.206285 0.780989 -0.462282 -0.419942 0.365182 0.51535 0.775279 0.705932 0.288136 0.647022 0.262655 0.247148 0.9327 0.722702 0.035726 0.690236 0.047851 0.045363 0.997824 0.162997 -0.359637 0.918745 0.502253 -0.606735 0.616129 0.769904 -0.410954 0.488226 0.180715 -0.818684 0.545068 -0.292352 0.707466 0.643445 -0.292352 0.707466 0.643445 -0.292352 0.707466 0.643445 -0.041171 0.023484 0.998876 -0.041171 0.023484 0.998876 -0.041171 0.023484 0.998876 0.071362 -0.881071 0.467569 0.071362 -0.881071 0.467569 0.071362 -0.881071 0.467569 0.108915 -0.942839 0.314949 0.108915 -0.942839 0.314949 0.108915 -0.942839 0.314949 -0.264114 0.504295 0.82215 -0.264114 0.504295 0.82215 -0.264114 0.504295 0.82215 -0.024223 0.541908 0.840088 -0.024223 0.541908 0.840088 -0.024223 0.541908 0.840088 -0.026624 0.553819 0.832211 -0.026624 0.553819 0.832211 -0.026624 0.553819 0.832211 -0.048622 -0.940296 0.336868 -0.048622 -0.940296 0.336868 -0.048622 -0.940296 0.336868 -0.047534 -0.943685 0.327413 -0.047534 -0.943685 0.327413 -0.047534 -0.943685 0.327413 0.092241 0.560524 0.822985 0.092241 0.560524 0.822985 0.092241 0.560524 0.822985 -0.263992 -0.901329 0.343387 -0.263992 -0.901329 0.343387 -0.263992 -0.901329 0.343387 -0.6813 -0.246224 0.689351 -0.6813 -0.246224 0.689351 -0.6813 -0.246224 0.689351 -0.009776 0.064877 0.997845 -0.009776 0.064877 0.997845 -0.009776 0.064877 0.997845 0.615348 0.606492 0.503502 0.615348 0.606492 0.503502 0.615348 0.606492 0.503502 0.702005 0.636654 0.319157 0.702005 0.636654 0.319157 0.702005 0.636654 0.319157 -0.568631 -0.141655 0.810304 -0.568631 -0.141655 0.810304 -0.568631 -0.141655 0.810304 -0.388712 -0.359781 0.84821 -0.388712 -0.35978 0.84821 -0.388712 -0.359781 0.84821 -0.391327 -0.36142 0.846309 -0.391327 -0.36142 0.846309 -0.391327 -0.36142 0.846309 0.603477 0.721455 0.339585 0.603477 0.721455 0.339585 0.603477 0.721455 0.339585 0.604351 0.721866 0.33715 0.604351 0.721866 0.33715 0.604351 0.721866 0.33715 -0.242236 -0.500473 0.831173 -0.242236 -0.500473 0.831173 -0.242236 -0.500473 0.831173 0.308904 0.879502 0.362014 0.308904 0.879502 0.362015 0.308904 0.879502 0.362014 -0.669319 -0.359933 0.649969 -0.669319 -0.359933 0.649969 -0.669319 -0.359933 0.649969 0.023854 0.437621 0.898843 0.023854 0.437621 0.898843 0.023854 0.437621 0.898843 0.489285 0.841257 0.229971 0.489285 0.841257 0.229971 0.489285 0.841257 0.229971 0.442743 0.833286 0.331079 0.442743 0.833286 0.331079 0.442743 0.833286 0.331079 -0.560374 0.002904 0.828235 -0.560374 0.002904 0.828235 -0.560374 0.002904 0.828235 -0.18769 -0.247335 0.950578 -0.18769 -0.247335 0.950578 -0.18769 -0.247335 0.950578 -0.379031 -0.390276 0.839059 -0.379031 -0.390276 0.839059 -0.379031 -0.390276 0.839059 0.388729 0.856488 0.339586 0.388729 0.856488 0.339586 0.388729 0.856488 0.339586 0.38946 0.857117 0.337152 0.38946 0.857117 0.337152 0.38946 0.857117 0.337152 -0.099681 -0.547006 0.831173 -0.099681 -0.547006 0.831173 -0.099681 -0.547006 0.831173 0.062632 0.930066 0.362014 0.062632 0.930066 0.362014 0.062632 0.930066 0.362014 - - - - - - - - - - 0.962784 0.866402 0 0.583128 0.726301 0 0.923308 0.588463 0 0.973629 0.760334 0 0.639541 0.971205 0 0.578281 0.933704 0 0.614465 0.016612 0 0.546194 0.262742 0 0.485925 0.707573 0 0.578416 0.872235 0 0.470091 0.880271 0 0.535292 0.711183 0 0.844364 0.849396 0 0.569421 0.944076 0 0.543766 0.730233 0 0.544676 0.870113 0 0.17266 0.671736 0 0.578136 0.935014 0 0.544676 0.944076 0 0.544657 1.07435 0 0.574784 1.00872 0 0.702368 0.964054 0 0.695298 1.00029 0 0.719196 0.92305 0 0.327975 0.680936 0 0.43552 0.530898 0 0.955225 0.245711 0 0.876244 0.746004 0 0.665732 0.771818 0 0.806397 0.735338 0 0.830273 0.583834 0 0.999804 0.85969 0 0.481328 0.480665 0 1.00961 0.758254 0 0.900051 0.277794 0 0.822883 0.938297 0 0.544955 0.94251 0 0.999872 0.590502 0 0.664421 0.716363 0 0.345981 0.707237 0 0.990788 0.255074 0 0.623358 0.26966 0 0.889906 1.05621 0 0.619832 0.766915 0 0.103354 0.568994 0 0.561191 0.146745 0 0.059019 0.624972 0 0.98943 0.533708 0 0.171278 0.631178 0 0.018508 0.625875 0 0.119768 0.574235 0 0.925102 0.53486 0 0.808588 0.152373 0 0.944427 1.03996 0 0.04047 0.564014 0 0.076293 0.026207 0 0.694668 0.034553 0 0.64989 0.185302 0 0.007998 0.565638 0 0.17828 0.573249 0 0.100071 0.525136 0 0.061839 0.017624 0 0.054439 0.393873 0 0.01726 0.411876 0 0.13395 0.543025 0 0.147377 0.017258 0 0.109435 0.407175 0 0.168444 0.422601 0 0.082239 0.585859 0 0.083261 0.350563 0 0.128772 0.028096 0 0.10986 0.046666 0 0.059814 0.350367 0 0.109052 0.032651 0 0.020009 0.288403 0 0.134381 0.412129 0 0.08929 0.299414 0 0.068083 0.284812 0 0.037583 0.255997 0 0.093035 0.191972 0 0.816219 0.162296 0 0.074875 0.189623 0 0.821108 0.139743 0 0.117208 0.352476 0 0.072024 0.550338 0 0.042031 0.184351 0 0.018135 0.390216 0 0.091051 0.163065 0 0.83619 0.138042 0 0.074147 0.162276 0 0.046524 0.161024 0 0.090196 0.046402 0 0.165692 0.382352 0 0.069845 0.041596 0 0.048628 0.032148 0 0.081328 0.399383 0 0.850399 0.149705 0 0.189189 0.263215 0 0.173021 0.310752 0 0.092243 0.030976 0 0.118763 0.299379 0 0.820609 0.171902 0 0.184472 0.223738 0 0.761768 0.144156 0 0.149551 0.266959 0 0.119026 0.190482 0 0.763978 0.165249 0 0.191499 0.175516 0 0.759334 0.111927 0 0.133114 0.383455 0 0.767633 0.194778 0 0.823329 0.122775 0 0.336258 0.895252 0 0.49138 0.768682 0 0.048411 0.971525 0 0.299564 0.885719 0 0.535291 0.767474 0 0.066625 0.943753 0 0.059622 0.904161 0 0.140189 0.904272 0 0.220301 0.943949 0 0.015975 0.920104 0 0.272714 0.887733 0 0.306058 0.823958 0 0.444887 0.023449 0 0.271858 0.796445 0 0.281234 0.684748 0 0.143139 0.943818 0 0.872078 1.02241 0 0.944307 1.02136 0 0.498597 0.465378 0 0.857712 0.208364 0 0.861609 0.528566 0 0.43883 0.483159 0 0.390368 0.496396 0 0.355144 0.498411 0 0.424905 0.452876 0 0.901455 0.929362 0 0.466278 0.452819 0 0.38269 0.452852 0 0.353532 0.452741 0 0.495352 0.425566 0 0.425441 0.429923 0 0.85602 0.12419 0 0.467616 0.429323 0 0.383581 0.43021 0 0.352785 0.430126 0 0.480747 0.36765 0 0.425788 0.386988 0 0.115762 0.161077 0 0.458655 0.381282 0 0.386601 0.385787 0 0.352463 0.38645 0 0.426213 0.276565 0 0.525389 0.426199 0 0.452097 0.277162 0 0.395551 0.254818 0 0.307539 0.429436 0 0.424053 0.252445 0 0.355574 0.532811 0 0.518706 0.377766 0 0.424481 0.228688 0 0.311691 0.486922 0 0.372681 0.259599 0 0.468408 0.170887 0 0.420099 0.167494 0 0.142431 0.184566 0 0.443729 0.177923 0 0.398362 0.17256 0 0.366507 0.175923 0 0.468301 0.130222 0 0.420201 0.135986 0 0.447186 0.135116 0 0.394908 0.132843 0 0.366665 0.132716 0 0.874248 0.148212 0 0.836193 0.178142 0 0.393266 0.02361 0 0.450943 0.252896 0 0.470187 0.251428 0 0.487567 0.02342 0 0.494297 0.259853 0 0.419099 0.023516 0 0.764111 0.106345 0 0.747216 0.057278 0 0.745955 0.047849 0 0.454064 0.233216 0 0.277895 0.186311 0 0.365947 0.023552 0 0.773142 0.205943 0 0.218203 0.141785 0 0.305377 0.14531 0 0.307123 0.452819 0 0.506168 0.175971 0 0.228754 0.130617 0 0.298254 0.139336 0 0.27503 0.129408 0 0.303952 0.33283 0 0.2175 0.092834 0 0.308074 0.093333 0 0.223809 0.086314 0 0.171844 0.158273 0 0.312833 0.382997 0 0.298173 0.095033 0 0.265315 0.085124 0 0.221113 0.34225 0 0.256632 0.333274 0 0.219332 0.968288 0 0.535293 0.811778 0 0.744987 0.811333 0 0.21829 0.904272 0 0.257353 0.904272 0 0.998792 0.935718 0 0.258839 0.944008 0 0.308133 0.708452 0 0.751067 0.152923 0 0.137365 0.160481 0 0.1581 0.026756 0 0.129344 0.041868 0 0.719806 0.123073 0 0.817913 0.078355 0 0.850528 0.07572 0 0.863947 0.063391 0 0.827316 0.032192 0 0.524012 0.451625 0 0.75935 0.096986 0 0.306575 0.283944 0 0.216051 0.280892 0 0.313512 0.043518 0 0.307051 0.043456 0 0.288932 0.042926 0 0.219131 0.043497 0 0.22544 0.043351 0 0.257004 0.043103 0 0.277286 0.377005 0 0.212571 0.230901 0 0.251519 0.384615 0 0.306881 0.234582 0 0.274451 0.233457 0 0.265695 0.066563 0 0.279992 0.040425 0 0.228067 0.196717 0 0.246636 0.043336 0 0.284462 0.198932 0 0.265081 0.383774 0 0.241347 0.176108 0 0.251287 0.171757 0 0.304875 0.008743 0 0.241282 0.008651 0 0.738336 0.706143 0 0.753901 0.557172 0 0.898392 0.109669 0 0.810355 0.297383 0 0.79827 0.23533 0 0.774226 0.494899 0 0.928004 0.983475 0 0.658668 0.513945 0 0.410048 0.894312 0 0.851496 0.06373 0 0.25951 0.281465 0 0.23771 0.231882 0 0.274277 0.17648 0 0.266225 0.170548 0 0.823356 0.055431 0 0.761324 0.050302 0 0.72698 0.179734 0 0.763464 0.009524 0 0.722307 0.08339 0 0.048617 0.009016 0 0.726536 0.027387 0 0.143139 0.991613 0 0.545984 0.501975 0 0.484707 0.816075 0 0.410603 0.82875 0 0.339548 0.833001 0 0.25742 0.008359 0 0.641377 0.426971 0 0.585143 0.501975 0 0.31072 0.782123 0 0.406331 0.772705 0 0.284372 0.008739 0 0.466048 0.023594 0 0.005086 0.254863 0 0.345934 0.023431 0 0.545984 0.428925 0 0.34492 0.261864 0 0.328404 0.173807 0 0.343549 0.131914 0 0.009299 0.22189 0 0.488162 0.133117 0 0.007033 0.179281 0 0.022816 0.155181 0 0.031713 0.024413 0 0.512305 0.877819 0 0.717761 0.852229 0 0.275358 0.814772 0 0.404126 0.706528 0 0.272662 0.715083 0 0.27192 0.790182 0 0.294127 0.778786 0 0.298594 0.746622 0 0.298021 0.715452 0 0.272235 0.753129 0 0.272068 0.777754 0 0.272573 0.730976 0 0.595381 0.757602 0 0.668625 0.570157 0 0.217473 0.626803 0 0.22842 0.568621 0 0.193249 0.42238 0 0.180933 0.372708 0 0.69228 0.57361 0 0.64882 0.563563 0 0.70406 0.370244 0 0.067915 0.644775 0 0.020421 0.641024 0 0.945406 0.109621 0 0.973417 0.109587 0 0.221123 0.635583 0 0.224895 0.649831 0 0.687854 0.987229 0 0.329589 0.742049 0 0.687854 0.987229 0 0.639541 0.971205 0 0.665732 0.771818 0 0.578281 0.933704 0 0.619832 0.766915 0 0.578136 0.935014 0 0.544955 0.94251 0 0.595381 0.757602 0 0.668625 0.570157 0 0.69228 0.57361 0 0.64882 0.563563 0 0.70406 0.370244 0 0.639541 0.971205 0 0.687854 0.987229 0 0.665732 0.771818 0 0.578281 0.933704 0 0.619832 0.766915 0 0.544955 0.94251 0 0.578136 0.935014 0 0.595381 0.757602 0 0.668625 0.570157 0 0.69228 0.57361 0 0.64882 0.563563 0 0.70406 0.370244 0 0.962784 0.866402 0 0.583128 0.726301 0 0.923308 0.588463 0 0.973629 0.760334 0 0.639541 0.971205 0 0.578281 0.933704 0 0.614465 0.016612 0 0.546194 0.262742 0 0.485925 0.707573 0 0.578416 0.872235 0 0.470091 0.880271 0 0.535292 0.711183 0 0.844364 0.849396 0 0.569421 0.944076 0 0.543766 0.730233 0 0.544676 0.870113 0 0.17266 0.671736 0 0.578136 0.935014 0 0.544676 0.944076 0 0.544657 1.07435 0 0.574784 1.00872 0 0.702368 0.964054 0 0.695298 1.00029 0 0.719196 0.92305 0 0.327975 0.680936 0 0.43552 0.530898 0 0.955225 0.245711 0 0.876244 0.746004 0 0.665732 0.771818 0 0.806397 0.735338 0 0.830273 0.583834 0 0.999804 0.85969 0 0.481328 0.480665 0 1.00961 0.758254 0 0.900051 0.277794 0 0.822883 0.938297 0 0.544955 0.94251 0 0.999872 0.590502 0 0.664421 0.716363 0 0.345981 0.707237 0 0.990788 0.255074 0 0.623358 0.26966 0 0.889906 1.05621 0 0.619832 0.766915 0 0.103354 0.568994 0 0.561191 0.146745 0 0.059019 0.624972 0 0.98943 0.533708 0 0.171278 0.631178 0 0.018508 0.625875 0 0.119768 0.574235 0 0.925102 0.53486 0 0.808588 0.152373 0 0.944427 1.03996 0 0.04047 0.564014 0 0.076293 0.026207 0 0.694668 0.034553 0 0.64989 0.185302 0 0.007998 0.565638 0 0.17828 0.573249 0 0.100071 0.525136 0 0.061839 0.017624 0 0.054439 0.393873 0 0.01726 0.411876 0 0.13395 0.543025 0 0.147377 0.017258 0 0.109435 0.407175 0 0.168444 0.422601 0 0.082239 0.585859 0 0.083261 0.350563 0 0.128772 0.028096 0 0.10986 0.046666 0 0.059814 0.350367 0 0.109052 0.032651 0 0.020009 0.288403 0 0.134381 0.412129 0 0.08929 0.299414 0 0.068083 0.284812 0 0.037583 0.255997 0 0.093035 0.191972 0 0.816219 0.162296 0 0.074875 0.189623 0 0.821108 0.139743 0 0.117208 0.352476 0 0.072024 0.550338 0 0.042031 0.184351 0 0.018135 0.390216 0 0.091051 0.163065 0 0.83619 0.138042 0 0.074147 0.162276 0 0.046524 0.161024 0 0.090196 0.046402 0 0.165692 0.382352 0 0.069845 0.041596 0 0.048628 0.032148 0 0.081328 0.399383 0 0.850399 0.149705 0 0.189189 0.263215 0 0.173021 0.310752 0 0.092243 0.030976 0 0.118763 0.299379 0 0.820609 0.171902 0 0.184472 0.223738 0 0.761768 0.144156 0 0.149551 0.266959 0 0.119026 0.190482 0 0.763978 0.165249 0 0.191499 0.175516 0 0.759334 0.111927 0 0.133114 0.383455 0 0.767633 0.194778 0 0.823329 0.122775 0 0.336258 0.895252 0 0.49138 0.768682 0 0.048411 0.971525 0 0.299564 0.885719 0 0.535291 0.767474 0 0.066625 0.943753 0 0.059622 0.904161 0 0.140189 0.904272 0 0.220301 0.943949 0 0.015975 0.920104 0 0.272714 0.887733 0 0.306058 0.823958 0 0.444887 0.023449 0 0.271858 0.796445 0 0.281234 0.684748 0 0.143139 0.943818 0 0.872078 1.02241 0 0.944307 1.02136 0 0.498597 0.465378 0 0.857712 0.208364 0 0.861609 0.528566 0 0.43883 0.483159 0 0.390368 0.496396 0 0.355144 0.498411 0 0.424905 0.452876 0 0.901455 0.929362 0 0.466278 0.452819 0 0.38269 0.452852 0 0.353532 0.452741 0 0.495352 0.425566 0 0.425441 0.429923 0 0.85602 0.12419 0 0.467616 0.429323 0 0.383581 0.43021 0 0.352785 0.430126 0 0.480747 0.36765 0 0.425788 0.386988 0 0.115762 0.161077 0 0.458655 0.381282 0 0.386601 0.385787 0 0.352463 0.38645 0 0.426213 0.276565 0 0.525389 0.426199 0 0.452097 0.277162 0 0.395551 0.254818 0 0.307539 0.429436 0 0.424053 0.252445 0 0.355574 0.532811 0 0.518706 0.377766 0 0.424481 0.228688 0 0.311691 0.486922 0 0.372681 0.259599 0 0.468408 0.170887 0 0.420099 0.167494 0 0.142431 0.184566 0 0.443729 0.177923 0 0.398362 0.17256 0 0.366507 0.175923 0 0.468301 0.130222 0 0.420201 0.135986 0 0.447186 0.135116 0 0.394908 0.132843 0 0.366665 0.132716 0 0.874248 0.148212 0 0.836193 0.178142 0 0.393266 0.02361 0 0.450943 0.252896 0 0.470187 0.251428 0 0.487567 0.02342 0 0.494297 0.259853 0 0.419099 0.023516 0 0.764111 0.106345 0 0.747216 0.057278 0 0.745955 0.047849 0 0.454064 0.233216 0 0.277895 0.186311 0 0.365947 0.023552 0 0.773142 0.205943 0 0.218203 0.141785 0 0.305377 0.14531 0 0.307123 0.452819 0 0.506168 0.175971 0 0.228754 0.130617 0 0.298254 0.139336 0 0.27503 0.129408 0 0.303952 0.33283 0 0.2175 0.092834 0 0.308074 0.093333 0 0.223809 0.086314 0 0.171844 0.158273 0 0.312833 0.382997 0 0.298173 0.095033 0 0.265315 0.085124 0 0.221113 0.34225 0 0.256632 0.333274 0 0.219332 0.968288 0 0.535293 0.811778 0 0.744987 0.811333 0 0.21829 0.904272 0 0.257353 0.904272 0 0.998792 0.935718 0 0.258839 0.944008 0 0.308133 0.708452 0 0.751067 0.152923 0 0.137365 0.160481 0 0.1581 0.026756 0 0.129344 0.041868 0 0.719806 0.123073 0 0.817913 0.078355 0 0.850528 0.07572 0 0.863947 0.063391 0 0.827316 0.032192 0 0.524012 0.451625 0 0.75935 0.096986 0 0.306575 0.283944 0 0.216051 0.280892 0 0.313512 0.043518 0 0.307051 0.043456 0 0.288932 0.042926 0 0.219131 0.043497 0 0.22544 0.043351 0 0.257004 0.043103 0 0.277286 0.377005 0 0.212571 0.230901 0 0.251519 0.384615 0 0.306881 0.234582 0 0.274451 0.233457 0 0.265695 0.066563 0 0.279992 0.040425 0 0.228067 0.196717 0 0.246636 0.043336 0 0.284462 0.198932 0 0.265081 0.383774 0 0.241347 0.176108 0 0.251287 0.171757 0 0.304875 0.008743 0 0.241282 0.008651 0 0.738336 0.706143 0 0.753901 0.557172 0 0.898392 0.109669 0 0.810355 0.297383 0 0.79827 0.23533 0 0.774226 0.494899 0 0.928004 0.983475 0 0.658668 0.513945 0 0.410048 0.894312 0 0.851496 0.06373 0 0.25951 0.281465 0 0.23771 0.231882 0 0.274277 0.17648 0 0.266225 0.170548 0 0.823356 0.055431 0 0.761324 0.050302 0 0.72698 0.179734 0 0.763464 0.009524 0 0.722307 0.08339 0 0.048617 0.009016 0 0.726536 0.027387 0 0.143139 0.991613 0 0.545984 0.501975 0 0.484707 0.816075 0 0.410603 0.82875 0 0.339548 0.833001 0 0.25742 0.008359 0 0.641377 0.426971 0 0.585143 0.501975 0 0.31072 0.782123 0 0.406331 0.772705 0 0.284372 0.008739 0 0.466048 0.023594 0 0.005086 0.254863 0 0.345934 0.023431 0 0.545984 0.428925 0 0.34492 0.261864 0 0.328404 0.173807 0 0.343549 0.131914 0 0.009299 0.22189 0 0.488162 0.133117 0 0.007033 0.179281 0 0.022816 0.155181 0 0.031713 0.024413 0 0.512305 0.877819 0 0.717761 0.852229 0 0.275358 0.814772 0 0.404126 0.706528 0 0.272662 0.715083 0 0.27192 0.790182 0 0.294127 0.778786 0 0.298594 0.746622 0 0.298021 0.715452 0 0.272235 0.753129 0 0.272068 0.777754 0 0.272573 0.730976 0 0.595381 0.757602 0 0.668625 0.570157 0 0.217473 0.626803 0 0.22842 0.568621 0 0.193249 0.42238 0 0.180933 0.372708 0 0.69228 0.57361 0 0.64882 0.563563 0 0.70406 0.370244 0 0.067915 0.644775 0 0.020421 0.641024 0 0.945406 0.109621 0 0.973417 0.109587 0 0.221123 0.635583 0 0.224895 0.649831 0 0.687854 0.987229 0 0.329589 0.742049 0 0.687854 0.987229 0 0.639541 0.971205 0 0.665732 0.771818 0 0.578281 0.933704 0 0.619832 0.766915 0 0.578136 0.935014 0 0.544955 0.94251 0 0.595381 0.757602 0 0.668625 0.570157 0 0.69228 0.57361 0 0.64882 0.563563 0 0.70406 0.370244 0 0.639541 0.971205 0 0.687854 0.987229 0 0.665732 0.771818 0 0.578281 0.933704 0 0.619832 0.766915 0 0.544955 0.94251 0 0.578136 0.935014 0 0.595381 0.757602 0 0.668625 0.570157 0 0.69228 0.57361 0 0.64882 0.563563 0 0.70406 0.370244 0 - - - - - - - - - - - - - - - -

203 0 33 420 1 31 0 2 0 0 2 0 1 3 3 203 0 33 11 4 37 203 0 33 1 3 3 1 3 3 2 5 2 11 4 37 16 6 51 3 7 26 12 8 40 12 8 40 239 9 47 16 6 51 13 10 317 12 8 40 3 7 26 3 7 26 4 11 316 13 10 317 14 12 319 5 13 318 6 14 16 35 15 284 33 16 277 15 17 271 204 18 14 15 17 271 33 16 277 33 16 277 8 19 1 204 18 14 421 20 15 204 18 14 8 19 1 8 19 1 9 21 9 421 20 15 422 22 18 421 20 15 9 21 9 9 21 9 10 23 13 422 22 18 423 24 19 422 22 18 10 23 13 10 23 13 37 25 20 423 24 19 205 26 53 423 24 42 37 25 128 37 25 128 116 27 129 205 26 53 1 3 3 0 2 0 17 28 27 2 5 2 1 3 3 17 28 27 4 11 316 3 7 26 18 29 34 18 29 34 38 30 251 4 11 316 3 7 26 16 6 51 18 29 34 19 31 29 17 28 27 117 32 12 117 32 12 23 33 209 19 31 29 20 34 30 2 5 2 17 28 27 17 28 27 19 31 29 20 34 30 16 6 51 2 5 2 20 34 30 20 34 30 22 35 132 16 6 51 38 30 251 18 29 34 21 36 131 18 29 34 16 6 51 22 35 132 20 34 30 19 31 29 24 37 249 24 37 249 25 38 250 20 34 30 22 35 132 20 34 30 25 38 250 25 38 250 28 39 254 22 35 132 21 36 131 18 29 34 26 40 252 26 40 252 27 41 253 21 36 131 18 29 34 22 35 132 28 39 254 28 39 254 26 40 252 18 29 34 24 37 249 23 33 209 119 42 294 119 42 294 29 43 38 24 37 249 25 38 250 24 37 249 29 43 38 29 43 38 30 44 256 25 38 250 28 39 254 25 38 250 30 44 256 30 44 256 32 45 276 28 39 254 27 41 253 26 40 252 31 46 41 31 46 41 41 47 57 27 41 253 26 40 252 28 39 254 32 45 276 32 45 276 31 46 41 26 40 252 8 19 1 29 43 38 119 42 294 119 42 294 9 21 9 8 19 1 30 44 256 29 43 38 8 19 1 8 19 1 33 16 277 30 44 256 32 45 276 30 44 256 33 16 277 33 16 277 35 15 284 32 45 276 41 47 57 31 46 41 7 48 7 7 48 7 34 49 45 41 47 57 31 46 41 32 45 276 35 15 284 35 15 284 7 48 7 31 46 41 0 2 0 105 50 212 36 51 137 120 52 35 199 53 255 37 25 128 5 13 315 4 11 314 38 30 46 38 30 46 39 54 49 5 13 315 6 14 16 5 13 318 39 54 307 39 54 307 40 55 48 6 14 16 34 49 45 6 14 6 40 55 56 40 55 56 41 47 57 34 49 45 38 30 46 21 36 68 42 56 84 42 56 84 44 57 54 38 30 46 21 36 68 27 41 44 43 58 60 43 58 60 42 56 84 21 36 68 27 41 44 41 47 50 47 59 64 47 59 64 43 58 60 27 41 44 39 54 49 38 30 46 44 57 54 44 57 54 45 60 58 39 54 49 40 55 48 39 54 307 45 60 308 45 60 308 46 61 59 40 55 48 41 47 50 40 55 48 46 61 59 46 61 59 47 59 64 41 47 50 44 57 54 42 56 84 48 62 95 48 62 95 50 63 62 44 57 54 42 56 84 43 58 60 49 64 66 49 64 66 48 62 95 42 56 84 43 58 60 47 59 64 53 65 75 53 65 75 49 64 66 43 58 60 45 60 58 44 57 54 50 63 62 50 63 62 51 66 63 45 60 58 46 61 59 45 60 308 51 66 309 51 66 309 52 67 67 46 61 59 47 59 64 46 61 59 52 67 67 52 67 67 53 65 75 47 59 64 50 63 62 48 62 95 54 68 69 54 68 69 56 69 72 50 63 62 48 62 95 49 64 66 55 70 83 55 70 83 54 68 69 48 62 95 49 64 66 53 65 75 59 71 109 59 71 109 55 70 83 49 64 66 51 66 63 50 63 62 56 69 72 56 69 72 57 72 86 51 66 63 52 67 67 51 66 309 57 72 310 57 72 310 58 73 92 52 67 67 53 65 75 52 67 67 58 73 92 58 73 92 59 71 109 53 65 75 56 69 72 54 68 69 60 74 76 60 74 76 62 75 77 56 69 72 54 68 69 55 70 83 61 76 100 61 76 100 60 74 76 54 68 69 55 70 83 59 71 98 65 77 104 65 77 104 61 76 100 55 70 83 57 72 74 56 69 72 62 75 77 62 75 77 63 78 78 57 72 74 58 73 282 57 72 74 63 78 78 63 78 78 64 79 288 58 73 282 59 71 98 58 73 97 64 79 102 64 79 102 65 77 104 59 71 98 62 75 77 60 74 76 66 80 79 66 80 79 68 81 81 62 75 77 60 74 76 61 76 100 67 82 105 67 82 105 66 80 79 60 74 76 61 76 100 65 77 104 71 83 166 71 83 166 67 82 105 61 76 100 63 78 78 62 75 77 68 81 81 68 81 81 69 84 85 63 78 78 64 79 288 63 78 78 69 84 85 69 84 85 70 85 290 64 79 288 65 77 104 64 79 102 70 85 107 70 85 107 71 83 166 65 77 104 68 81 81 66 80 79 72 86 87 72 86 87 74 87 89 68 81 81 66 80 79 67 82 105 73 88 149 73 88 149 72 86 87 66 80 79 67 82 105 71 83 166 77 89 216 77 89 216 73 88 149 67 82 105 69 84 85 68 81 81 74 87 89 74 87 89 75 90 90 69 84 85 70 85 290 69 84 85 75 90 90 75 90 90 76 91 291 70 85 290 71 83 166 70 85 107 76 91 201 76 91 201 77 89 216 71 83 166 74 87 89 72 86 87 78 92 91 78 92 91 80 93 93 74 87 89 72 86 87 73 88 149 79 94 71 79 94 71 78 92 91 72 86 87 73 88 149 77 89 216 83 95 218 83 95 218 79 94 71 73 88 149 75 90 90 74 87 89 80 93 93 80 93 93 81 96 94 75 90 90 76 91 291 75 90 90 81 96 94 81 96 94 82 97 292 76 91 291 77 89 216 76 91 201 82 97 217 82 97 217 83 95 218 77 89 216 80 93 93 78 92 91 84 98 99 84 98 99 86 99 55 80 93 93 78 92 91 79 94 71 85 100 73 85 100 73 84 98 99 78 92 91 79 94 71 83 95 218 89 101 70 89 101 70 85 100 73 79 94 71 81 96 94 80 93 93 86 99 55 86 99 55 87 102 61 81 96 94 82 97 292 81 96 94 87 102 61 87 102 61 88 103 268 82 97 292 83 95 218 82 97 217 88 103 65 88 103 65 89 101 70 83 95 218 86 99 82 84 98 52 90 104 103 90 104 103 92 105 108 86 99 82 84 98 52 85 100 80 91 106 106 91 106 106 90 104 103 84 98 52 85 100 80 89 101 101 93 107 110 93 107 110 91 106 106 85 100 80 87 102 88 86 99 82 94 108 111 94 108 111 95 109 143 87 102 88 88 103 96 87 102 88 95 109 143 95 109 143 96 110 175 88 103 96 89 101 101 88 103 96 96 110 175 96 110 175 97 111 176 89 101 101 86 99 82 92 105 108 98 112 183 98 112 183 94 108 111 86 99 82 93 107 110 89 101 101 97 111 176 97 111 176 99 113 189 93 107 110 95 109 221 94 108 220 101 114 263 101 114 263 100 115 258 95 109 221 96 110 222 95 109 221 100 115 258 97 111 223 96 110 222 100 115 258 100 115 258 101 114 263 97 111 223 94 108 220 98 112 225 102 116 264 102 116 264 101 114 263 94 108 220 99 113 266 97 111 223 101 114 263 101 114 263 102 116 264 99 113 266 92 105 108 90 104 103 104 117 219 91 106 106 93 107 110 103 118 265 98 112 183 92 105 108 104 117 219 93 107 110 99 113 189 103 118 265 102 116 264 98 112 225 104 117 267 99 113 266 102 116 264 103 118 269 90 104 184 91 106 185 102 116 264 91 106 106 103 118 265 102 116 215 104 117 219 90 104 103 102 116 215 105 50 8 202 119 11 206 120 116 206 120 116 196 121 113 105 50 8 196 121 113 206 120 116 207 122 208 207 122 208 193 123 272 196 121 113 193 123 272 207 122 208 208 124 293 208 124 293 106 125 10 193 123 272 106 125 114 208 124 121 209 126 118 209 126 118 107 127 117 106 125 114 107 127 117 209 126 118 108 128 119 108 128 119 109 129 127 107 127 117 109 129 127 108 128 119 111 130 210 111 130 210 110 131 120 109 129 127 110 131 120 111 130 210 112 132 211 112 132 211 200 133 213 110 131 120 200 133 115 112 132 122 114 134 295 114 134 295 113 135 123 200 133 115 113 135 123 114 134 295 333 136 125 333 136 125 198 137 278 113 135 123 201 138 214 210 139 297 115 140 126 201 138 214 115 140 126 205 26 24 205 26 24 116 27 39 201 138 214 10 23 13 9 21 9 125 141 23 125 141 23 118 142 21 10 23 13 37 25 20 10 23 13 118 142 21 118 142 21 120 52 22 37 25 20 23 33 32 121 143 133 126 144 138 23 33 32 126 144 138 119 42 130 9 21 9 119 42 294 125 141 23 36 51 137 199 53 255 120 52 35 117 32 25 120 52 159 122 145 134 122 145 134 121 143 133 117 32 25 120 52 159 118 142 162 123 146 135 120 52 159 123 146 135 122 145 134 121 143 133 122 145 134 127 147 139 127 147 139 124 148 136 121 143 133 123 146 135 118 142 162 125 141 192 125 141 192 128 149 140 123 146 135 121 143 133 124 148 136 126 144 138 122 145 134 123 146 135 128 149 140 128 149 140 127 147 139 122 145 134 119 42 130 126 144 138 132 150 144 132 150 144 129 151 141 119 42 130 125 141 224 119 42 130 129 151 141 129 151 141 131 152 154 125 141 224 124 148 136 127 147 139 133 153 145 133 153 145 130 154 142 124 148 136 128 149 140 125 141 192 131 152 157 131 152 157 134 155 146 128 149 140 126 144 138 124 148 136 130 154 142 130 154 142 132 150 144 126 144 138 127 147 139 128 149 140 134 155 146 134 155 146 133 153 145 127 147 139 129 151 141 132 150 144 138 156 150 138 156 150 135 157 147 129 151 141 131 152 154 129 151 141 135 157 147 135 157 147 137 158 160 131 152 154 130 154 142 133 153 145 139 159 151 139 159 151 136 160 148 130 154 142 134 155 146 131 152 157 137 158 202 137 158 202 140 161 152 134 155 146 132 150 144 130 154 142 136 160 148 136 160 148 138 156 150 132 150 144 133 153 145 134 155 146 140 161 152 140 161 152 139 159 151 133 153 145 135 157 147 138 156 150 142 162 155 142 162 155 146 163 179 135 157 147 135 157 147 146 163 179 148 164 181 148 164 181 137 158 160 135 157 147 136 160 148 139 159 151 143 165 156 143 165 156 141 166 153 136 160 148 140 161 152 137 158 202 148 164 285 148 164 285 150 167 163 140 161 152 138 156 150 136 160 148 141 166 153 141 166 153 142 162 155 138 156 150 139 159 151 140 161 152 150 167 163 150 167 163 143 165 156 139 159 151 142 162 155 145 168 178 146 163 179 141 166 153 143 165 156 144 169 158 142 162 155 141 166 153 144 169 158 144 169 158 145 168 178 142 162 155 145 168 178 149 170 186 146 163 179 144 169 158 143 165 156 147 171 161 145 168 178 144 169 158 147 171 161 147 171 161 149 170 186 145 168 178 146 163 179 149 170 186 154 172 167 154 172 167 151 173 164 146 163 179 148 164 181 146 163 179 151 173 164 151 173 164 153 174 193 148 164 181 147 171 161 143 165 156 155 175 168 155 175 168 152 176 165 147 171 161 150 167 163 148 164 285 153 174 286 153 174 286 156 177 169 150 167 163 149 170 186 147 171 161 152 176 165 152 176 165 154 172 167 149 170 186 143 165 156 150 167 163 156 177 169 156 177 169 155 175 168 143 165 156 151 173 164 154 172 167 160 178 172 160 178 172 157 179 170 151 173 164 153 174 193 151 173 164 157 179 170 157 179 170 159 180 289 153 174 193 152 176 165 155 175 168 161 181 173 161 181 173 158 182 171 152 176 165 156 177 169 153 174 286 159 180 287 159 180 287 162 183 174 156 177 169 154 172 167 152 176 165 158 182 171 158 182 171 160 178 172 154 172 167 155 175 168 156 177 169 162 183 174 162 183 174 161 181 173 155 175 168 157 179 170 160 178 172 163 184 124 163 184 124 165 185 281 157 179 170 159 180 289 157 179 170 165 185 281 165 185 281 167 186 180 159 180 289 158 182 171 161 181 173 164 187 177 164 187 177 166 188 182 158 182 171 162 183 174 159 180 287 167 186 283 167 186 283 168 189 188 162 183 174 160 178 172 158 182 171 166 188 182 166 188 182 163 184 124 160 178 172 161 181 173 162 183 174 168 189 188 168 189 188 164 187 177 161 181 173 165 185 234 163 184 244 172 190 206 172 190 206 169 191 197 165 185 234 167 186 246 165 185 245 169 191 190 169 191 190 171 192 194 167 186 246 166 188 187 164 187 261 173 193 195 173 193 195 170 194 191 166 188 187 168 189 262 167 186 246 171 192 194 171 192 194 174 195 196 168 189 262 163 184 244 166 188 236 170 194 205 170 194 205 172 190 206 163 184 244 164 187 261 168 189 262 174 195 196 174 195 196 173 193 195 164 187 261 169 191 197 172 190 206 187 196 259 187 196 259 175 197 226 169 191 197 171 192 194 169 191 190 175 197 198 175 197 198 177 198 200 171 192 194 170 194 191 173 193 195 178 199 203 178 199 203 176 200 199 170 194 191 174 195 196 171 192 194 177 198 200 177 198 200 179 201 204 174 195 196 172 190 206 170 194 205 176 200 227 176 200 227 187 196 259 172 190 206 173 193 195 174 195 196 179 201 204 179 201 204 178 199 203 173 193 195 176 200 199 178 199 203 181 202 229 181 202 229 180 203 228 176 200 199 187 196 259 176 200 227 180 203 235 180 203 235 188 204 260 187 196 259 178 199 203 179 201 204 182 205 230 182 205 230 181 202 229 178 199 203 175 197 226 187 196 259 185 206 238 185 206 238 183 207 237 175 197 226 177 198 200 175 197 198 183 207 231 183 207 231 184 208 232 177 198 200 179 201 204 177 198 200 184 208 232 184 208 232 186 209 242 179 201 204 182 205 230 179 201 204 187 196 239 187 196 239 188 204 240 182 205 230 179 201 204 186 209 242 185 206 233 185 206 233 187 196 239 179 201 204 180 203 228 181 202 229 189 210 247 188 204 260 180 203 235 189 210 241 181 202 229 182 205 230 189 210 247 183 207 237 185 206 238 190 211 243 184 208 232 183 207 231 190 211 248 186 209 242 184 208 232 190 211 248 182 205 230 188 204 240 189 210 280 185 206 233 186 209 242 190 211 275 107 127 117 109 129 127 191 212 270 191 212 270 106 125 114 107 127 117 109 129 127 110 131 120 192 213 207 192 213 207 191 212 270 109 129 127 106 125 10 191 212 257 194 214 273 194 214 273 193 123 272 106 125 10 191 212 257 192 213 112 195 215 274 195 215 274 194 214 273 191 212 257 193 123 272 194 214 273 197 216 279 197 216 279 196 121 113 193 123 272 194 214 273 195 215 274 198 137 278 198 137 278 197 216 279 194 214 273 196 121 113 197 216 279 199 53 296 199 53 296 105 50 8 196 121 113 197 216 279 198 137 278 225 217 321 197 216 279 225 217 321 116 27 39 197 216 279 116 27 39 199 53 296 192 213 207 110 131 120 200 133 213 225 217 321 198 137 278 213 218 300 195 215 274 192 213 112 200 133 115 200 133 115 113 135 123 195 215 274 198 137 278 195 215 274 113 135 123 333 136 125 211 219 298 212 220 299 214 221 301 213 218 300 215 222 302 215 222 302 217 223 304 214 221 301 214 221 301 210 139 297 201 138 214 212 220 299 198 137 278 333 136 125 212 220 299 213 218 300 198 137 278 201 138 214 116 27 39 225 217 321 201 138 214 225 217 321 213 218 300 201 138 214 213 218 300 214 221 301 212 220 299 211 219 298 216 224 303 212 220 299 216 224 303 215 222 302 215 222 302 213 218 300 212 220 299 214 221 301 217 223 304 210 139 297 0 2 0 117 32 12 17 28 27 0 2 0 36 51 137 117 32 12 117 32 25 121 143 133 23 33 32 23 33 209 24 37 249 19 31 29 36 51 137 120 52 35 117 32 12 13 225 320 4 226 4 218 227 28 4 228 4 5 229 5 219 230 43 220 231 305 219 232 43 5 233 17 5 234 17 14 235 36 220 236 305 4 237 4 219 238 43 218 239 28 222 240 306 221 241 311 218 242 28 218 243 28 219 244 43 222 245 306 223 246 312 222 247 306 219 248 43 219 249 43 220 250 305 223 251 312 221 252 311 222 253 306 224 254 313 222 255 306 223 256 312 224 257 313 199 53 255 116 27 129 37 25 128 105 50 212 199 53 255 36 51 137 0 258 323 420 259 322 430 260 324 105 261 325 0 262 323 226 263 326 105 264 327 226 265 326 432 266 329 432 267 329 202 268 328 105 269 327 226 270 326 0 271 323 430 272 324 430 273 324 434 274 331 227 275 330 227 276 330 226 277 326 430 278 324 226 279 326 227 280 330 435 281 332 435 282 332 432 283 329 226 284 326 227 285 330 434 286 331 436 287 333 435 288 332 227 289 330 436 290 333 16 291 334 239 292 335 437 293 336 2 294 337 16 295 334 228 296 338 2 297 340 228 298 338 439 299 341 439 300 341 11 301 339 2 302 340 228 303 338 16 304 334 437 305 336 437 306 336 441 307 343 229 308 342 229 309 342 228 310 338 437 311 336 228 312 338 229 313 342 442 314 344 442 315 344 439 316 341 228 317 338 229 318 342 441 319 343 443 320 345 442 321 344 229 322 342 443 323 345 203 0 379 231 324 349 230 325 346 230 325 346 420 1 377 203 0 379 11 4 383 232 326 348 231 324 349 231 324 349 203 0 379 11 4 383 240 327 397 239 9 393 12 8 386 12 8 386 233 328 372 240 327 397 13 10 663 234 329 662 233 328 372 233 328 372 12 8 386 13 10 663 14 12 665 6 14 362 235 330 664 35 15 630 15 17 617 257 331 623 204 18 360 236 332 347 257 331 623 257 331 623 15 17 617 204 18 360 421 20 361 237 333 355 236 332 347 236 332 347 204 18 360 421 20 361 422 22 364 238 334 359 237 333 355 237 333 355 421 20 361 422 22 364 423 24 365 259 335 366 238 334 359 238 334 359 422 22 364 423 24 365 205 26 399 334 336 475 259 335 474 259 335 474 423 24 388 205 26 399 231 324 349 241 337 373 230 325 346 232 326 348 241 337 373 231 324 349 234 329 662 260 338 597 242 339 380 242 339 380 233 328 372 234 329 662 233 328 372 242 339 380 240 327 397 243 340 375 247 341 555 335 342 358 335 342 358 241 337 373 243 340 375 244 343 376 243 340 375 241 337 373 241 337 373 232 326 348 244 343 376 240 327 397 246 344 478 244 343 376 244 343 376 232 326 348 240 327 397 260 338 597 245 345 477 242 339 380 242 339 380 246 344 478 240 327 397 244 343 376 249 346 596 248 347 595 248 347 595 243 340 375 244 343 376 246 344 478 252 348 600 249 346 596 249 346 596 244 343 376 246 344 478 245 345 477 251 349 599 250 350 598 250 350 598 242 339 380 245 345 477 242 339 380 250 350 598 252 348 600 252 348 600 246 344 478 242 339 380 248 347 595 253 351 384 337 352 640 337 352 640 247 341 555 248 347 595 249 346 596 254 353 602 253 351 384 253 351 384 248 347 595 249 346 596 252 348 600 256 354 622 254 353 602 254 353 602 249 346 596 252 348 600 251 349 599 263 355 403 255 356 387 255 356 387 250 350 598 251 349 599 250 350 598 255 356 387 256 354 622 256 354 622 252 348 600 250 350 598 236 332 347 237 333 355 337 352 640 337 352 640 253 351 384 236 332 347 254 353 602 257 331 623 236 332 347 236 332 347 253 351 384 254 353 602 256 354 622 35 15 630 257 331 623 257 331 623 254 353 602 256 354 622 263 355 403 34 49 391 7 48 353 7 48 353 255 356 387 263 355 403 255 356 387 7 48 353 35 15 630 35 15 630 256 354 622 255 356 387 230 325 346 258 357 483 327 358 558 338 359 381 259 335 474 417 360 601 235 330 661 261 361 395 260 338 392 260 338 392 234 329 660 235 330 661 6 14 362 262 362 394 261 361 653 261 361 653 235 330 664 6 14 362 34 49 391 263 355 403 262 362 402 262 362 402 6 14 352 34 49 391 260 338 392 266 363 400 264 364 430 264 364 430 245 345 414 260 338 392 245 345 414 264 364 430 265 365 406 265 365 406 251 349 390 245 345 414 251 349 390 265 365 406 269 366 410 269 366 410 263 355 396 251 349 390 261 361 395 267 367 404 266 363 400 266 363 400 260 338 392 261 361 395 262 362 394 268 368 405 267 367 654 267 367 654 261 361 653 262 362 394 263 355 396 269 366 410 268 368 405 268 368 405 262 362 394 263 355 396 266 363 400 272 369 408 270 370 441 270 370 441 264 364 430 266 363 400 264 364 430 270 370 441 271 371 412 271 371 412 265 365 406 264 364 430 265 365 406 271 371 412 275 372 421 275 372 421 269 366 410 265 365 406 267 367 404 273 373 409 272 369 408 272 369 408 266 363 400 267 367 404 268 368 405 274 374 413 273 373 655 273 373 655 267 367 654 268 368 405 269 366 410 275 372 421 274 374 413 274 374 413 268 368 405 269 366 410 272 369 408 278 375 418 276 376 415 276 376 415 270 370 441 272 369 408 270 370 441 276 376 415 277 377 429 277 377 429 271 371 412 270 370 441 271 371 412 277 377 429 281 378 455 281 378 455 275 372 421 271 371 412 273 373 409 279 379 432 278 375 418 278 375 418 272 369 408 273 373 409 274 374 413 280 380 438 279 379 656 279 379 656 273 373 655 274 374 413 275 372 421 281 378 455 280 380 438 280 380 438 274 374 413 275 372 421 278 375 418 284 381 423 282 382 422 282 382 422 276 376 415 278 375 418 276 376 415 282 382 422 283 383 446 283 383 446 277 377 429 276 376 415 277 377 429 283 383 446 287 384 450 287 384 450 281 378 444 277 377 429 279 379 420 285 385 424 284 381 423 284 381 423 278 375 418 279 379 420 280 380 628 286 386 634 285 385 424 285 385 424 279 379 420 280 380 628 281 378 444 287 384 450 286 386 448 286 386 448 280 380 443 281 378 444 284 381 423 290 387 427 288 388 425 288 388 425 282 382 422 284 381 423 282 382 422 288 388 425 289 389 451 289 389 451 283 383 446 282 382 422 283 383 446 289 389 451 293 390 512 293 390 512 287 384 450 283 383 446 285 385 424 291 391 431 290 387 427 290 387 427 284 381 423 285 385 424 286 386 634 292 392 636 291 391 431 291 391 431 285 385 424 286 386 634 287 384 450 293 390 512 292 392 453 292 392 453 286 386 448 287 384 450 290 387 427 296 393 435 294 394 433 294 394 433 288 388 425 290 387 427 288 388 425 294 394 433 295 395 495 295 395 495 289 389 451 288 388 425 289 389 451 295 395 495 299 396 562 299 396 562 293 390 512 289 389 451 291 391 431 297 397 436 296 393 435 296 393 435 290 387 427 291 391 431 292 392 636 298 398 637 297 397 436 297 397 436 291 391 431 292 392 636 293 390 512 299 396 562 298 398 547 298 398 547 292 392 453 293 390 512 296 393 435 302 399 439 300 400 437 300 400 437 294 394 433 296 393 435 294 394 433 300 400 437 301 401 417 301 401 417 295 395 495 294 394 433 295 395 495 301 401 417 305 402 564 305 402 564 299 396 562 295 395 495 297 397 436 303 403 440 302 399 439 302 399 439 296 393 435 297 397 436 298 398 637 304 404 638 303 403 440 303 403 440 297 397 436 298 398 637 299 396 562 305 402 564 304 404 563 304 404 563 298 398 547 299 396 562 302 399 439 308 405 401 306 406 445 306 406 445 300 400 437 302 399 439 300 400 437 306 406 445 307 407 419 307 407 419 301 401 417 300 400 437 301 401 417 307 407 419 311 408 416 311 408 416 305 402 564 301 401 417 303 403 440 309 409 407 308 405 401 308 405 401 302 399 439 303 403 440 304 404 638 310 410 614 309 409 407 309 409 407 303 403 440 304 404 638 305 402 564 311 408 416 310 410 411 310 410 411 304 404 563 305 402 564 308 405 428 314 411 454 312 412 449 312 412 449 306 406 398 308 405 428 306 406 398 312 412 449 313 413 452 313 413 452 307 407 426 306 406 398 307 407 426 313 413 452 315 414 456 315 414 456 311 408 447 307 407 426 309 409 434 317 415 489 316 416 457 316 416 457 308 405 428 309 409 434 310 410 442 318 417 521 317 415 489 317 415 489 309 409 434 310 410 442 311 408 447 319 418 522 318 417 521 318 417 521 310 410 442 311 408 447 308 405 428 316 416 457 320 419 529 320 419 529 314 411 454 308 405 428 315 414 456 321 420 535 319 418 522 319 418 522 311 408 447 315 414 456 317 415 567 322 421 604 323 422 609 323 422 609 316 416 566 317 415 567 318 417 568 322 421 604 317 415 567 319 418 569 323 422 609 322 421 604 322 421 604 318 417 568 319 418 569 316 416 566 323 422 609 324 423 610 324 423 610 320 419 571 316 416 566 321 420 612 324 423 610 323 422 609 323 422 609 319 418 569 321 420 612 314 411 454 326 424 565 312 412 449 313 413 452 325 425 611 315 414 456 320 419 529 326 424 565 314 411 454 315 414 456 325 425 611 321 420 535 324 423 610 326 424 613 320 419 571 321 420 612 325 425 615 324 423 610 312 412 530 324 423 610 313 413 531 313 413 452 324 423 561 325 425 611 326 424 565 324 423 561 312 412 449 327 358 354 414 426 459 206 120 462 206 120 462 202 119 357 327 358 354 414 426 459 411 427 618 207 122 554 207 122 554 206 120 462 414 426 459 411 427 618 328 428 356 208 124 639 208 124 639 207 122 554 411 427 618 328 428 460 329 429 463 209 126 464 209 126 464 208 124 467 328 428 460 329 429 463 330 430 473 108 128 465 108 128 465 209 126 464 329 429 463 330 430 473 331 431 466 111 130 556 111 130 556 108 128 465 330 430 473 331 431 466 418 432 559 112 132 557 112 132 557 111 130 556 331 431 466 418 432 461 332 433 469 114 134 641 114 134 641 112 132 468 418 432 461 332 433 469 416 434 624 333 136 471 333 136 471 114 134 641 332 433 469 419 435 560 115 140 472 210 139 643 419 435 560 334 336 385 205 26 370 205 26 370 115 140 472 419 435 560 238 334 359 336 436 367 343 437 369 343 437 369 237 333 355 238 334 359 259 335 366 338 359 368 336 436 367 336 436 367 238 334 359 259 335 366 247 341 378 344 438 484 339 439 479 247 341 378 337 352 476 344 438 484 237 333 355 343 437 369 337 352 640 258 357 483 338 359 381 417 360 601 335 342 371 339 439 479 340 440 480 340 440 480 338 359 505 335 342 371 338 359 505 341 441 481 336 436 508 338 359 505 340 440 480 341 441 481 339 439 479 342 442 482 345 443 485 345 443 485 340 440 480 339 439 479 341 441 481 346 444 486 343 437 538 343 437 538 336 436 508 341 441 481 339 439 479 344 438 484 342 442 482 340 440 480 345 443 485 346 444 486 346 444 486 341 441 481 340 440 480 337 352 476 347 445 487 350 446 490 350 446 490 344 438 484 337 352 476 343 437 570 349 447 500 347 445 487 347 445 487 337 352 476 343 437 570 342 442 482 348 448 488 351 449 491 351 449 491 345 443 485 342 442 482 346 444 486 352 450 492 349 447 503 349 447 503 343 437 538 346 444 486 344 438 484 350 446 490 348 448 488 348 448 488 342 442 482 344 438 484 345 443 485 351 449 491 352 450 492 352 450 492 346 444 486 345 443 485 347 445 487 353 451 493 356 452 496 356 452 496 350 446 490 347 445 487 349 447 500 355 453 506 353 451 493 353 451 493 347 445 487 349 447 500 348 448 488 354 454 494 357 455 497 357 455 497 351 449 491 348 448 488 352 450 492 358 456 498 355 453 548 355 453 548 349 447 503 352 450 492 350 446 490 356 452 496 354 454 494 354 454 494 348 448 488 350 446 490 351 449 491 357 455 497 358 456 498 358 456 498 352 450 492 351 449 491 353 451 493 364 457 525 360 458 501 360 458 501 356 452 496 353 451 493 353 451 493 355 453 506 366 459 527 366 459 527 364 457 525 353 451 493 354 454 494 359 460 499 361 461 502 361 461 502 357 455 497 354 454 494 358 456 498 368 462 509 366 459 631 366 459 631 355 453 548 358 456 498 356 452 496 360 458 501 359 460 499 359 460 499 354 454 494 356 452 496 357 455 497 361 461 502 368 462 509 368 462 509 358 456 498 357 455 497 360 458 501 364 457 525 363 463 524 359 460 499 362 464 504 361 461 502 360 458 501 363 463 524 362 464 504 362 464 504 359 460 499 360 458 501 363 463 524 364 457 525 367 465 532 362 464 504 365 466 507 361 461 502 363 463 524 367 465 532 365 466 507 365 466 507 362 464 504 363 463 524 364 457 525 369 467 510 372 468 513 372 468 513 367 465 532 364 457 525 366 459 527 371 469 539 369 467 510 369 467 510 364 457 525 366 459 527 365 466 507 370 470 511 373 471 514 373 471 514 361 461 502 365 466 507 368 462 509 374 472 515 371 469 632 371 469 632 366 459 631 368 462 509 367 465 532 372 468 513 370 470 511 370 470 511 365 466 507 367 465 532 361 461 502 373 471 514 374 472 515 374 472 515 368 462 509 361 461 502 369 467 510 375 473 516 378 474 518 378 474 518 372 468 513 369 467 510 371 469 539 377 475 635 375 473 516 375 473 516 369 467 510 371 469 539 370 470 511 376 476 517 379 477 519 379 477 519 373 471 514 370 470 511 374 472 515 380 478 520 377 475 633 377 475 633 371 469 632 374 472 515 372 468 513 378 474 518 376 476 517 376 476 517 370 470 511 372 468 513 373 471 514 379 477 519 380 478 520 380 478 520 374 472 515 373 471 514 375 473 516 383 479 627 381 480 470 381 480 470 378 474 518 375 473 516 377 475 635 385 481 526 383 479 627 383 479 627 375 473 516 377 475 635 376 476 517 384 482 528 382 483 523 382 483 523 379 477 519 376 476 517 380 478 520 386 484 534 385 481 629 385 481 629 377 475 633 380 478 520 378 474 518 381 480 470 384 482 528 384 482 528 376 476 517 378 474 518 379 477 519 382 483 523 386 484 534 386 484 534 380 478 520 379 477 519 383 479 580 387 485 543 390 486 552 390 486 552 381 480 590 383 479 580 385 481 592 389 487 540 387 485 536 387 485 536 383 479 591 385 481 592 384 482 533 388 488 537 391 489 541 391 489 541 382 483 607 384 482 533 386 484 608 392 490 542 389 487 540 389 487 540 385 481 592 386 484 608 381 480 590 390 486 552 388 488 551 388 488 551 384 482 582 381 480 590 382 483 607 391 489 541 392 490 542 392 490 542 386 484 608 382 483 607 387 485 543 393 491 572 405 492 605 405 492 605 390 486 552 387 485 543 389 487 540 395 493 546 393 491 544 393 491 544 387 485 536 389 487 540 388 488 537 394 494 545 396 495 549 396 495 549 391 489 541 388 488 537 392 490 542 397 496 550 395 493 546 395 493 546 389 487 540 392 490 542 390 486 552 405 492 605 394 494 573 394 494 573 388 488 551 390 486 552 391 489 541 396 495 549 397 496 550 397 496 550 392 490 542 391 489 541 394 494 545 398 497 574 399 498 575 399 498 575 396 495 549 394 494 545 405 492 605 406 499 606 398 497 581 398 497 581 394 494 573 405 492 605 396 495 549 399 498 575 400 500 576 400 500 576 397 496 550 396 495 549 393 491 572 401 501 583 403 502 584 403 502 584 405 492 605 393 491 572 395 493 546 402 503 578 401 501 577 401 501 577 393 491 544 395 493 546 397 496 550 404 504 588 402 503 578 402 503 578 395 493 546 397 496 550 400 500 576 406 499 586 405 492 585 405 492 585 397 496 550 400 500 576 397 496 550 405 492 585 403 502 579 403 502 579 404 504 588 397 496 550 398 497 574 407 505 593 399 498 575 406 499 606 407 505 587 398 497 581 399 498 575 407 505 593 400 500 576 401 501 583 408 506 589 403 502 584 402 503 578 408 506 594 401 501 577 404 504 588 408 506 594 402 503 578 400 500 576 407 505 626 406 499 586 403 502 579 408 506 621 404 504 588 329 429 463 328 428 460 409 507 616 409 507 616 330 430 473 329 429 463 330 430 473 409 507 616 410 508 553 410 508 553 331 431 466 330 430 473 328 428 356 411 427 618 412 509 619 412 509 619 409 507 603 328 428 356 409 507 603 412 509 619 413 510 620 413 510 620 410 508 458 409 507 603 411 427 618 414 426 459 415 511 625 415 511 625 412 509 619 411 427 618 412 509 619 415 511 625 416 434 624 416 434 624 413 510 620 412 509 619 414 426 459 327 358 354 417 360 642 417 360 642 415 511 625 414 426 459 415 511 625 417 360 642 334 336 385 415 511 625 334 336 385 429 512 667 415 511 625 429 512 667 416 434 624 410 508 553 418 432 559 331 431 466 429 512 667 425 513 646 416 434 624 413 510 620 332 433 469 418 432 461 418 432 461 410 508 458 413 510 620 416 434 624 332 433 469 413 510 620 333 136 471 424 514 645 211 219 644 426 515 647 217 223 650 215 222 648 215 222 648 425 513 646 426 515 647 426 515 647 419 435 560 210 139 643 424 514 645 333 136 471 416 434 624 424 514 645 416 434 624 425 513 646 419 435 560 426 515 647 425 513 646 419 435 560 425 513 646 429 512 667 419 435 560 429 512 667 334 336 385 424 514 645 216 224 649 211 219 644 424 514 645 425 513 646 215 222 648 215 222 648 216 224 649 424 514 645 426 515 647 210 139 643 217 223 650 230 325 346 241 337 373 335 342 358 230 325 346 335 342 358 258 357 483 335 342 371 247 341 378 339 439 479 247 341 555 243 340 375 248 347 595 258 357 483 335 342 358 338 359 381 13 516 666 218 517 374 234 518 350 234 519 350 427 520 389 235 521 351 220 522 651 14 523 382 235 524 363 235 525 363 427 526 389 220 527 651 234 528 350 218 529 374 427 530 389 428 531 652 427 532 389 218 533 374 218 534 374 221 535 657 428 536 652 223 537 658 220 538 651 427 539 389 427 540 389 428 541 652 223 542 658 221 543 657 224 544 659 428 545 652 428 546 652 224 547 659 223 548 658 417 360 601 259 335 474 334 336 475 327 358 558 258 357 483 417 360 601 230 549 669 430 550 670 420 551 668 327 552 671 431 553 672 230 554 669 327 555 673 202 556 674 432 557 675 432 558 675 431 559 672 327 560 673 431 561 672 430 562 670 230 563 669 430 564 670 431 565 672 433 566 676 433 567 676 434 568 677 430 569 670 431 570 672 432 571 675 435 572 678 435 573 678 433 574 676 431 575 672 433 576 676 436 577 679 434 578 677 435 579 678 436 580 679 433 581 676 240 582 680 437 583 682 239 584 681 232 585 683 438 586 684 240 587 680 232 588 686 11 589 685 439 590 687 439 591 687 438 592 684 232 593 686 438 594 684 437 595 682 240 596 680 437 597 682 438 598 684 440 599 688 440 600 688 441 601 689 437 602 682 438 603 684 439 604 687 442 605 690 442 606 690 440 607 688 438 608 684 440 609 688 443 610 691 441 611 689 442 612 690 443 613 691 440 614 688

-
-
-
-
- - - - 0 0 -0.823226 -127.093 -0.804999 0.172274 0 -393.418 0.172274 0.804999 0 597.2 0 0 0 1 - - Bone1 Bone2 Bone3 Bone4 Bone5 Bone6 Bone7 Bone8 Bone9 Bone10 Bone11 Bone12 Bone13 Bone14 Bone15 Bone16 Bone17 Bone18 Bone19 Bone20 Bone21 Bone22 Bone23 Bone24 Bone25 Bone26 Bone27 Bone28 Bone29 Bone30 Bone31 Bone32 Bone33 Bone34 Bone35 Bone36 - - - - - - - - -0.000001 -0.498104 0.867117 -372.311 0.000002 -0.867117 -0.498104 190.579 1 0.000002 0.000002 164.813 0 0 0 1 0.018402 -0.952156 0.305058 -248.429 0.005875 -0.305001 -0.952334 488.559 0.999813 0.019317 -0.000017 166.548 0 0 0 1 0.014279 -0.978258 0.206897 -595.466 0.013021 -0.206719 -0.978314 553.498 0.999813 0.016664 0.009786 158.8 0 0 0 1 0.002118 -0.59792 0.801553 -1114.98 0.019207 -0.801383 -0.597843 -243.593 0.999813 0.016662 0.009787 158.798 0 0 0 1 0.000003 -0.987687 0.156443 -1100.78 -0.000004 -0.156443 -0.987687 728.967 1 0.000003 -0.000004 151.349 0 0 0 1 0.000003 -0.987687 0.156443 -1445.92 -0.000004 -0.156443 -0.987687 728.967 1 0.000003 -0.000004 151.349 0 0 0 1 0.982826 -0.177426 0.050735 -84.4751 -0.013035 0.207498 0.978149 -552.703 -0.184076 -0.962011 0.201621 -1001.67 0 0 0 1 0.345846 0.362543 -0.865421 956.554 0.64452 0.578511 0.499919 99.0181 0.681898 -0.730676 -0.03359 -671.86 0 0 0 1 -0.200043 -0.142123 -0.969425 352.385 0.703561 0.667768 -0.24308 479.223 0.681898 -0.730676 -0.03359 -671.86 0 0 0 1 0.217356 -0.852205 -0.475923 -682.171 -0.243388 0.424861 -0.871926 441.168 0.945261 0.305353 -0.115071 146.202 0 0 0 1 0.048129 -0.988567 0.142892 -967.298 -0.07356 -0.146177 -0.98652 -142.398 0.996129 0.03697 -0.079755 -122.422 0 0 0 1 0.048129 -0.988567 0.142892 -1135.06 -0.07356 -0.146177 -0.98652 -142.398 0.996129 0.03697 -0.079755 -122.422 0 0 0 1 -0.977172 -0.210093 0.031546 -395.778 -0.013035 0.207497 0.978149 -552.703 -0.212048 0.955409 -0.205499 938.758 0 0 0 1 -0.345847 0.362542 -0.865421 850.904 -0.644521 0.57851 0.499919 -89.6829 0.681896 0.730677 0.03359 883.479 0 0 0 1 0.200043 -0.142122 -0.969425 407.797 -0.703563 0.667766 -0.24308 270.179 0.681896 0.730677 0.03359 883.479 0 0 0 1 -0.217354 -0.852205 -0.475923 -756.014 0.243387 0.424861 -0.871926 514.158 0.945262 -0.30535 0.115071 138.002 0 0 0 1 -0.048127 -0.988567 0.142892 -988.33 0.073561 -0.146177 -0.98652 -125.343 0.996129 -0.036967 0.079755 423.785 0 0 0 1 -0.048127 -0.988567 0.142892 -1156.09 0.073561 -0.146177 -0.98652 -125.343 -0.996129 0.036967 -0.079755 -423.785 0 0 0 1 0.103504 1.23219 -0.953623 -5.24189 0.018092 0.849368 1.40418 35.1901 0.133037 -0.031979 0.016403 -1.16024 0 0 0 1 0.103504 1.23219 -0.953624 -23.0638 0.018092 0.849368 1.40418 35.1901 0.133037 -0.031979 0.016403 -1.16024 0 0 0 1 0.136359 1.29822 -0.454348 -6.65496 -0.04207 1.06418 0.58784 34.4271 0.097744 -0.040283 0.026403 0.158465 0 0 0 1 0.136359 1.29822 -0.454349 -24.4769 -0.04207 1.06418 0.58784 34.4271 0.097744 -0.040283 0.026403 0.158465 0 0 0 1 0.407337 -0.876293 0.257268 -121.912 -0.021509 0.272414 0.96194 -396.536 -0.913024 -0.397367 0.092116 -53.8212 0 0 0 1 -0.340749 0.618869 -0.707737 778.308 0.224224 -0.677569 -0.700445 4.15001 -0.913024 -0.397367 0.092116 -53.8212 0 0 0 1 0.198567 0.040829 -0.979237 178.175 0.428123 -0.902381 0.049189 -177.218 -0.881636 -0.429001 -0.196663 -7.81232 0 0 0 1 0.428123 -0.902381 0.049189 -366.582 -0.198567 -0.040829 0.979237 36.3969 -0.881636 -0.429001 -0.196663 -7.81234 0 0 0 1 0.428123 -0.902381 0.049189 -533.55 -0.198567 -0.040829 0.979237 36.3969 0.881636 0.429001 0.196663 7.81232 0 0 0 1 -0.407335 -0.876294 0.257268 -256.181 0.021509 0.272415 0.96194 -389.446 -0.913026 0.397365 -0.092116 -247.138 0 0 0 1 0.340748 0.61887 -0.707737 890.628 -0.224222 -0.67757 -0.700445 -69.7601 -0.913026 0.397365 -0.092116 -247.138 0 0 0 1 -0.198567 0.040828 -0.979237 112.722 -0.42812 -0.902382 0.049189 -318.339 -0.881637 0.428998 0.196663 -282.8 0 0 0 1 -0.42812 -0.902382 0.049189 -507.702 0.198567 -0.040828 0.979237 101.85 -0.881637 0.428998 0.196663 -282.8 0 0 0 1 -0.42812 -0.902382 0.049189 -674.671 0.198567 -0.040828 0.979237 101.85 -0.881637 0.428998 0.196663 -282.8 0 0 0 1 -0.000001 0.89786 -0.440282 85.3253 -0.000003 0.440282 0.89786 -428.17 1 0.000002 0.000002 164.813 0 0 0 1 -0.000001 0.979354 -0.202151 -290.64 -0.000003 0.202151 0.979354 -366.962 1 0.000002 0.000003 164.813 0 0 0 1 -0.000001 0.999734 0.023058 -696.012 -0.000003 -0.023058 0.999734 -215.81 1 0.000001 0.000003 164.813 0 0 0 1 0 -0.022262 0.999752 -216.662 -0.000001 0.999752 0.022262 -1070.03 -1 -0.000001 0 -164.814 0 0 0 1 - - - - - - - - 1 0.5 0.5 0.5 0.5 0.250005 0.250005 0.250005 0.249985 0.249326 0.249326 0.249326 0.249292 0.002481 0.000249 0 0 0.255314 0.255314 0.255314 0.233724 0.000333 0.34311 0.342829 0.314061 0.269713 0.269713 0.25908 0.201202 0.000293 0.976934 0.020302 0.002692 0.000072 0.504183 0.495817 0.992702 0.006541 0.000516 0.000241 0.5 0.5 0.25 0.25 0.25 0.25 0.248107 0.248107 0.248107 0.248104 0.007575 0 0 0.29226 0.29226 0.29226 0.123219 0.000002 0 0.428036 0.294492 0.277469 0.000002 0.5 0.5 0.613111 0.386889 0.330926 0.330926 0.330926 0.005259 0.001963 0.523741 0.476254 0.000004 0.531337 0.278746 0.170694 0.019223 0.224198 0.224198 0.224198 0.192595 0.13481 0.37388 0.373763 0.23913 0.013021 0.000206 0.890373 0.109627 0.529576 0.46503 0.003293 0.002091 0.00001 0.333332 0.333332 0.333313 0.000022 0.24944 0.24944 0.24944 0.24944 0.00224 0.336248 0.336248 0.327504 0 0.5588 0.43951 0.001687 0.000003 0.48408 0.414347 0.062061 0.033619 0.005893 0.375571 0.375571 0.248777 0.000073 0.000008 0.465313 0.464134 0.070472 0.000081 0 0.555267 0.438572 0.006105 0.000056 0.479845 0.479845 0.02293 0.01738 0.34641 0.330382 0.323208 0.716826 0.283171 0.000003 0.687382 0.31261 0.000007 0.000001 0.273524 0.273524 0.273524 0.179425 0.000002 0.307451 0.307451 0.307451 0.077647 0.333052 0.333052 0.332573 0.001324 0.276481 0.261169 0.250349 0.147703 0.064298 0.261252 0.261252 0.261252 0.216243 0.315936 0.315936 0.315935 0.051028 0.001164 0.333333 0.333333 0.333333 0.5 0.5 0.274488 0.274488 0.274408 0.176616 0.5 0.5 0.5 0.5 0.391301 0.391301 0.212431 0.004967 0.287452 0.287452 0.287353 0.137742 0.252191 0.252191 0.252191 0.243426 0.202008 0.202008 0.202008 0.201483 0.192492 0.000002 0.279438 0.279438 0.278072 0.148456 0.014596 0.249346 0.249346 0.235084 0.234275 0.030298 0.00165 0.281627 0.281627 0.281575 0.119793 0.03537 0.000008 0.259761 0.259761 0.259761 0.220717 0.25408 0.25408 0.25408 0.237759 0.218093 0.218093 0.218093 0.169576 0.164624 0.01152 0.577319 0.422681 0.590675 0.409325 0.000000 0 0.568801 0.431199 0.612922 0.387078 0.95794 0.04206 0.792574 0.207426 0.990969 0.009031 0 0.966959 0.03304 0.000001 0.741444 0.258556 0.98715 0.01285 0.995326 0.004669 0.000005 0.724012 0.275988 0.5 0.5 0.685744 0.314256 0.894522 0.105478 0.000057 0.995285 0.004715 0.000014 0.980918 0.019082 0.000012 0.56778 0.43222 0.5 0.5 0.796032 0.196191 0.007777 0.935409 0.061921 0.002658 0.000011 0.466364 0.466364 0.067272 0.817946 0.172792 0.009262 0 0.519451 0.480549 0.999123 0.000827 0.00005 0.662699 0.337301 0 0.526867 0.473133 0.540767 0.459005 0.000228 0.5 0.5 0.907687 0.092313 0.960711 0.039289 0.333518 0.333518 0.332964 0.515389 0.484611 0.764873 0.235127 0.5 0.5 0.796122 0.203878 0.790212 0.209788 0.498397 0.496474 0.005127 0.622905 0.365147 0.011948 0.750706 0.249294 0.503712 0.48755 0.008738 0.694048 0.276912 0.02904 0.88486 0.113768 0.001372 0.431128 0.331426 0.219147 0.018298 0.000001 0.321356 0.314105 0.302394 0.062129 0.000015 0.662066 0.291684 0.04625 0.892253 0.087419 0.017566 0.002761 0.000001 0.502866 0.480304 0.01683 0.987183 0.012817 0 0.556933 0.331912 0.111155 0.941586 0.058018 0.000396 0.729224 0.257989 0.012787 0.807969 0.192031 0.998872 0.001128 0.842727 0.157273 0.924292 0.075708 0.998612 0.001386 0.000002 0.987479 0.012521 0 0.996028 0.003972 0.999839 0.000161 0.000002 0 0 0.000033 0.966249 0.033751 0.590871 0.409129 0.544059 0.455941 0.524433 0.475567 0.5 0.5 0.555658 0.444342 0.891186 0.108814 0.999706 0.000199 0.000095 0.5 0.5 0.584365 0.415635 0 0.914776 0.085224 0.993551 0.006449 0.541343 0.458657 0.6923 0.3077 0.953948 0.046052 0.519802 0.480198 0.521872 0.478128 0.819531 0.180469 0.5 0.5 0.999888 0.000112 0.510403 0.489597 0.5 0.5 0.999647 0.000165 0.00012 0.000067 0.528926 0.471074 0 0.822694 0.177306 0.876887 0.123113 0.917105 0.067065 0.01583 0.971327 0.023824 0.004849 0.63649 0.36351 0.996398 0.003587 0.000015 0.865584 0.134416 0.721985 0.278015 0.549829 0.450171 0.964739 0.033492 0.001769 0.991533 0.008355 0.000112 0.768125 0.231875 0.364771 0.286106 0.17478 0.174342 0.478062 0.196859 0.1835 0.141579 0.382483 0.356413 0.131321 0.129783 0.501446 0.498554 0.551 0.449 0.502101 0.497899 0.518544 0.481456 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.25 0.25 0.25 0.249999 0.248714 0.248714 0.248714 0.24871 0.005025 0.000123 0 0 0.251963 0.251963 0.251963 0.243994 0.000117 0.962579 0.034928 0.002381 0.000112 0.5 0.5 0.99366 0.006246 0.000092 0.5 0.5 0.5 0.5 0.640506 0.359494 0.321798 0.321798 0.321798 0.034288 0.000318 0.543135 0.456857 0.000008 0.537131 0.284173 0.113714 0.064982 0.222332 0.222332 0.222332 0.190248 0.142757 0.371519 0.371387 0.24835 0.004851 0.003893 0.934436 0.065564 0.541833 0.454182 0.003676 0.000281 0.000028 0.359701 0 0.330259 0.297741 0.012299 0.333766 0.333766 0.332469 0.249911 0.249911 0.249911 0.249911 0.000356 0.342574 0.342574 0.314853 0 0 0.553795 0.444467 0.001732 0.000006 0.515796 0.432979 0.02896 0.021942 0.000323 0.400138 0.400138 0.19932 0.000243 0.000162 0.483968 0.481541 0.032253 0.002238 0 0.56401 0.428967 0.004143 0.00288 0.5 0.5 0.726743 0.273251 0.000006 0.283171 0.283171 0.283171 0.150484 0.000002 0.315941 0.315941 0.315941 0.052077 0.000099 0.333373 0.333373 0.333056 0.000198 0.295638 0.285615 0.24195 0.111306 0.065491 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.000007 0.000006 0.619164 0.380836 0.5489 0.4511 0.925804 0.074196 0.675774 0.324226 0.988633 0.011367 0 0.96422 0.03578 0 0.638222 0.361778 0.980415 0.019585 0.994453 0.00554 0.000007 0.653968 0.346032 0.5 0.5 0.672457 0.327543 0.857161 0.142839 0.992384 0.007616 0.9999 0.0001 0.9766 0.0234 0.999873 0.000127 0.5 0.5 0.803129 0.189578 0.007293 0.743446 0.256191 0.000358 0.000005 0.394101 0.394101 0.211799 0.743136 0.255217 0.001647 0 0.52149 0.47851 0.99936 0.00064 0 0.722442 0.277558 0 0.536039 0.463961 0.523373 0.430113 0.046514 0.500004 0.499996 0.926311 0.073689 0.967818 0.032182 0.5 0.5 0.524571 0.475429 0.548234 0.451766 0.5 0.5 0.821973 0.178027 0.829418 0.170582 0.492079 0.49188 0.016041 0.663048 0.332364 0.004588 0.548906 0.451021 0.000073 0.512982 0.481986 0.005032 0.732009 0.245128 0.022863 0.911163 0.086305 0.002531 0.452886 0.258653 0.25215 0.036308 0.000003 0.337323 0.306449 0.275558 0.080654 0.000016 0.813501 0.154318 0.032181 0.903494 0.061844 0.03466 0.000001 0.000001 0.484976 0.451264 0.06376 0.995585 0.004415 0.485339 0.260321 0.25434 0.967754 0.031666 0.000579 0.763695 0.230057 0.006248 0.835765 0.164235 0.999831 0.000169 0.8698 0.1302 0 0.946814 0.053186 0.999738 0.000261 0.000001 0.993786 0.006198 0.000016 0.997953 0.002047 0.000025 0.000000 0 0.879535 0.120465 0.604902 0.395098 0.546477 0.453523 0.51391 0.48609 0.509191 0.490809 0.534828 0.465172 0.000002 0.989554 0.010446 0.00002 0.000077 0 0.616767 0.383233 0 0.000004 0.509845 0.490155 0.000000 0.919151 0.080849 0.992821 0.007179 0.540066 0.459934 0.715687 0.284313 0.957401 0.042599 0.519792 0.480208 0.534875 0.465125 0.842078 0.157922 0.5 0.5 0.999537 0.000463 0.509435 0.490565 0.5 0.5 0.933368 0.06173 0.004902 0 0.465779 0.389618 0.130613 0.013028 0.00091 0.000052 0.71746 0.28213 0.00041 0 0.855182 0.144818 0.720255 0.279745 0.539688 0.460312 0.405706 0.269127 0.166836 0.158331 0.5056 0.4944 0.526946 0.473054 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 - - - - - - - - - - - - - - 2 1 2 4 8 5 3 5 4 2 4 2 4 7 6 4 2 2 5 3 4 5 5 2 5 1 4 5 4 4 5 5 5 4 4 3 3 4 5 4 4 5 1 4 5 3 2 4 2 2 4 4 4 6 5 6 6 4 4 6 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 1 1 1 1 1 2 2 1 1 1 2 2 2 2 1 3 3 1 2 2 3 1 2 1 1 2 2 2 2 2 2 1 1 2 2 2 2 3 4 3 4 2 3 3 2 3 2 2 2 3 2 2 2 2 2 3 3 2 3 3 3 5 5 3 5 1 3 3 3 3 3 2 2 2 2 3 3 2 1 2 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 1 2 1 3 2 1 1 1 1 1 1 1 2 2 1 1 2 2 2 2 2 2 2 2 2 2 2 2 1 4 3 2 2 3 3 2 3 2 2 2 3 3 2 4 4 4 2 2 2 1 2 2 2 2 2 2 1 2 4 8 5 4 2 3 2 2 2 5 3 4 5 5 2 5 5 3 5 5 4 5 5 5 4 2 3 5 5 4 5 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 1 1 1 1 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 1 1 1 2 2 2 2 1 3 3 1 2 2 3 1 2 1 1 2 2 2 2 2 2 2 2 3 4 3 4 2 3 3 2 3 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 5 5 3 5 1 3 2 3 3 3 2 2 3 2 3 3 2 1 2 1 1 1 1 1 2 1 2 1 2 2 2 2 2 2 2 2 2 3 2 1 1 2 1 1 2 1 2 2 1 1 2 2 2 2 2 2 2 2 2 2 2 2 4 6 4 2 2 2 4 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 - 3 1 2 2 2 0 1 3 1 4 1 5 1 6 1 7 1 8 1 9 1 10 1 11 0 12 32 13 22 14 27 15 1 16 1 17 1 18 1 19 32 20 22 21 1 22 1 23 1 24 1 25 0 26 1 27 1 28 22 29 2 30 6 31 1 32 1 33 2 34 6 35 6 36 2 37 3 38 4 39 1 40 1 41 1 42 1 43 1 44 1 45 1 46 1 47 1 48 0 49 32 50 22 51 27 52 1 53 1 54 1 55 32 56 22 57 27 58 1 59 1 60 1 61 2 62 1 63 1 64 2 65 6 66 1 67 1 68 1 69 1 70 22 71 2 72 6 73 1 74 1 75 1 76 2 77 1 78 1 79 22 80 0 81 1 82 1 83 1 84 1 85 1 86 22 87 1 88 2 89 7 90 2 91 6 92 1 93 22 94 1 95 0 0 1 96 1 97 22 98 23 99 22 100 1 101 0 102 1 103 23 104 1 105 1 106 22 107 2 108 2 109 6 110 1 111 1 112 1 113 1 114 22 115 2 116 23 117 1 118 1 119 22 120 0 121 1 122 1 123 1 124 22 125 1 126 2 127 1 128 1 129 2 130 1 131 1 132 1 133 0 134 1 135 1 136 1 137 1 138 6 139 4 140 2 141 6 142 4 143 2 144 3 145 1 146 1 147 0 148 22 149 1 150 1 151 1 152 1 153 22 154 1 155 1 156 1 157 22 158 1 159 0 160 22 161 23 162 1 163 22 0 22 164 1 165 1 166 23 167 22 168 22 169 1 170 1 171 0 172 22 173 1 174 22 175 22 176 1 177 23 178 1 179 22 180 0 181 22 182 22 183 22 184 22 185 22 186 22 187 1 188 23 189 22 190 22 191 23 192 1 193 23 194 22 195 22 196 1 197 22 198 1 199 22 200 1 201 23 202 2 203 22 204 22 205 23 206 2 207 1 208 22 209 22 210 2 211 23 212 1 213 1 214 22 215 22 216 23 217 1 218 1 219 2 220 22 221 23 222 22 223 1 224 23 225 22 226 22 227 1 228 23 229 22 230 22 231 1 232 1 233 2 234 23 0 23 0 23 0 23 0 23 0 23 0 23 0 23 0 23 0 23 0 23 0 23 0 23 0 23 0 23 0 23 0 23 0 23 0 24 235 23 236 24 237 23 238 23 0 23 0 23 0 23 0 24 0 24 0 23 239 24 0 1 240 23 0 23 0 24 0 24 241 25 242 25 243 24 244 24 245 25 246 25 247 24 248 24 0 24 249 1 250 23 251 24 252 1 253 23 254 24 0 25 255 24 256 25 257 24 258 24 259 1 260 23 261 24 0 25 262 24 263 25 0 25 0 3 264 2 265 4 266 6 267 4 268 6 269 4 0 12 270 4 271 6 272 4 0 6 273 4 0 4 0 4 274 6 275 4 0 12 276 4 277 12 278 4 279 6 280 6 281 2 282 7 283 6 284 7 285 4 286 2 287 6 288 2 289 7 290 6 291 7 292 4 293 2 294 7 295 2 296 7 297 2 298 6 299 6 300 7 301 2 302 7 303 2 304 6 305 2 306 7 307 7 308 2 309 7 310 2 311 7 312 2 313 6 314 2 315 7 316 7 317 2 318 2 319 7 320 7 321 2 322 7 323 2 324 7 325 2 326 2 327 7 328 8 329 7 330 2 331 8 332 2 333 7 334 7 335 2 336 8 337 7 338 2 339 8 340 7 341 2 342 8 343 8 344 7 345 2 346 23 347 22 348 8 349 7 350 2 351 23 352 22 353 8 354 7 355 2 356 8 357 2 358 23 359 7 360 22 361 7 0 8 362 2 363 7 364 8 365 2 366 7 367 8 368 2 369 7 370 8 371 2 372 23 373 8 374 7 375 2 376 8 377 2 378 8 379 2 380 8 381 2 382 8 383 2 384 8 385 2 386 7 387 8 388 2 389 7 390 8 391 2 392 8 0 8 393 2 394 8 0 8 0 8 0 8 0 8 0 8 0 9 395 8 0 9 396 8 0 9 397 8 0 9 398 9 399 8 400 9 401 8 402 8 403 9 404 9 405 8 406 9 407 8 408 9 409 8 410 9 0 9 411 10 412 9 0 9 413 10 414 8 415 9 416 10 417 10 0 10 0 10 0 10 0 10 0 10 0 10 0 10 418 9 419 10 0 9 420 10 0 10 0 4 421 6 422 4 423 6 424 4 425 6 426 4 427 6 428 4 429 6 430 4 431 6 432 4 433 6 434 4 435 6 436 4 437 6 438 4 439 6 440 4 441 6 442 3 443 2 444 2 0 2 445 1 446 1 447 1 448 4 449 12 450 6 451 4 452 12 453 4 454 12 455 4 456 12 457 6 458 4 459 12 460 6 461 4 462 12 463 4 464 12 465 6 466 4 467 6 468 4 469 6 470 4 471 6 472 4 473 12 474 6 475 4 476 12 477 6 478 4 479 12 480 32 481 33 482 1 483 1 484 32 485 1 486 1 487 33 488 32 489 33 490 1 491 1 492 33 493 34 494 33 495 34 496 33 497 34 498 34 0 4 499 6 500 3 501 2 502 3 503 2 504 1 505 1 506 1 507 1 508 3 509 2 510 2 0 1 511 1 512 1 513 1 514 1 515 1 516 1 517 1 518 1 519 0 520 32 521 27 522 22 523 1 524 1 525 1 526 1 527 32 528 27 529 2 530 12 531 1 532 1 533 12 534 2 535 12 536 2 537 4 538 1 539 1 540 1 541 1 542 2 543 12 544 1 545 1 546 1 547 1 548 27 549 2 550 12 551 1 552 1 553 1 554 2 555 1 556 1 557 27 558 0 559 1 560 1 561 1 562 1 563 1 564 27 565 1 566 2 567 13 568 2 569 12 570 1 571 27 572 1 573 1 574 23 575 1 576 27 577 2 578 1 579 1 580 27 581 27 582 1 583 0 584 1 585 28 586 1 587 1 588 27 589 1 590 2 591 2 592 12 593 1 594 1 595 1 596 1 597 27 598 2 599 28 600 1 601 1 602 27 603 0 604 1 605 1 606 1 607 27 608 1 609 2 610 1 611 1 612 2 613 1 614 3 615 2 616 12 617 4 618 2 619 1 620 1 621 0 622 27 623 1 624 1 625 1 626 1 627 27 628 32 629 1 630 1 631 1 632 27 633 1 634 0 635 27 636 28 637 1 638 27 639 27 640 27 0 27 0 27 0 27 0 27 0 27 0 27 0 27 0 27 0 27 0 27 0 27 0 27 0 27 0 27 641 28 642 27 643 28 644 28 0 28 0 28 0 28 0 27 645 28 646 27 647 28 648 28 0 28 0 28 0 28 0 28 0 28 0 28 0 28 0 28 0 28 0 28 0 28 0 28 0 28 0 28 0 28 0 28 0 28 0 28 0 29 0 29 0 28 649 29 0 1 650 28 0 28 0 28 0 29 651 30 652 30 653 29 654 29 655 30 656 30 657 29 658 29 0 29 659 1 660 28 661 29 662 1 663 28 664 29 0 30 665 29 666 30 667 29 668 29 669 1 670 28 671 29 0 30 672 29 673 30 0 30 0 3 674 2 675 4 676 12 677 4 678 12 679 4 680 12 681 4 682 12 683 4 684 12 685 4 686 12 687 4 688 12 689 12 690 2 691 13 692 12 693 13 694 4 695 2 696 12 697 2 698 13 699 12 700 13 701 4 702 2 703 13 704 2 705 13 706 2 707 12 708 13 709 12 710 2 711 13 712 2 713 12 714 2 715 13 716 2 717 13 718 13 719 2 720 13 721 2 722 13 723 2 724 13 725 2 726 2 727 13 728 13 729 2 730 13 731 2 732 13 733 2 734 13 735 2 736 14 737 13 738 2 739 14 740 13 741 2 742 14 743 13 744 2 745 14 746 13 747 2 748 14 749 13 750 2 751 14 752 14 753 2 754 13 755 28 756 27 757 2 758 14 759 13 760 28 761 27 762 14 763 13 764 2 765 14 766 2 767 28 768 27 769 13 770 13 0 14 771 2 772 13 773 14 774 2 775 14 776 2 777 13 778 14 779 2 780 28 781 14 782 13 783 2 784 14 785 2 786 14 787 2 788 14 789 2 790 13 791 14 792 2 793 14 794 2 795 13 796 14 797 2 798 13 799 14 800 2 801 14 0 14 0 2 802 14 0 14 0 14 0 14 0 14 0 14 0 15 803 14 0 14 0 15 804 14 0 15 805 14 806 15 807 14 808 14 809 15 810 15 811 14 812 14 813 15 814 15 815 14 816 15 0 14 817 15 818 16 819 15 0 14 820 15 0 14 821 16 822 15 823 16 824 16 0 16 0 16 0 15 825 16 0 16 0 16 0 15 826 16 0 16 827 15 828 16 0 15 829 16 0 16 0 4 830 12 831 4 832 12 833 4 834 12 835 4 836 12 837 4 838 12 839 4 840 12 841 4 842 12 843 4 844 12 845 4 846 12 847 4 848 12 849 4 850 12 851 3 852 2 853 2 854 3 855 12 856 6 857 12 858 3 859 3 860 2 861 6 862 4 863 4 864 12 865 6 866 2 867 4 868 12 869 4 870 12 871 4 872 12 873 32 874 33 875 1 876 1 877 33 878 34 879 4 880 12 881 3 882 2 883 3 884 2 885 3 886 2 887 3 888 2 889 3 890 2 891 3 892 2 893 3 894 2 895 1 896 1 897 1 898 1 899 1 900 1 901 1 902 1 903 1 904 1 905 1 906 1 907 1 908 1 909 - - - - - - - - 0.917303 0.398191 0.000000 524.412 -0.000000 0.000000 1 -0.000038 0.398191 -0.917303 0.000001 898.736 0 0 0 1 - - 0.634893 -0.746072 0.200716 142.077 0.754783 0.654426 0.045049 -0.208117 -0.164963 0.122896 0.978613 -0.038858 0 0 0 1 - - 0.955391 -0.206897 0.210765 399.228 0.228589 0.969883 -0.084102 -0.310882 -0.187017 0.128529 0.973912 -0.041171 0 0 0 1 - - 0.767026 0.627219 -0.135158 402.56 -0.617671 0.778843 0.109021 -0.112731 0.173646 -0.000139 0.984808 -0.000017 0 0 0 1 - - 0.999373 -0.013879 0.032569 181.732 0.016083 0.997526 -0.068434 -0.00008 -0.031539 0.068915 0.997124 -0.000002 0 0 0 1 - - 1 0 0 345.132 0 1 0 0.000017 0 0 1 -0.000007 0 0 0 1 - - - - -0.5 -0.5 -0.5 - 0.5 0.5 0.5 - - - - - - - - 344.632 -0.499952 -0.499979 - 345.632 0.500048 0.500021 - - - - - - 0.350776 0.631512 0.691483 7.49618 0.635478 -0.702886 0.319561 0.138573 0.68784 0.327328 -0.647867 42.5129 0 0 0 1 - - 0.917178 -0.198333 0.345613 175.071 -0.358196 -0.790364 0.497012 0.000071 0.174586 -0.579645 -0.795947 0.000007 0 0 0 1 - - 0.472321 0.881426 0 370.017 -0.881427 0.472321 0 0.00002 0 0 1 0.000000 0 0 0 1 - - 0.85009 -0.525938 -0.027135 370.018 0.510042 0.809374 0.291155 -0.000058 -0.131167 -0.261348 0.956291 -0.000004 0 0 0 1 - - 0.873378 0.43301 0.222966 186.693 -0.406165 0.900177 -0.157199 -0.000023 -0.268778 0.046733 0.962068 -0.000009 0 0 0 1 - - 1 0 0 167.761 0 1 0 0.000019 0 0 1 0.000013 0 0 0 1 - - - - -0.5 -0.5 -0.5 - 0.5 0.5 0.5 - - - - - - - - 167.261 -0.499925 -0.499991 - 168.261 0.500075 0.500009 - - - - - - - - 332.447 -68.307 -45.4604 - 333.977 -67.9702 -44.7204 - - - - - - - - 689.787 101.04 -69.2276 - 690.89 102.308 -68.8086 - - - - - - - - -0.01 -0.01 -0.01 - 0.01 0.01 0.01 - - - - - - - - -0.01 -0.01 -0.01 - 0.01 0.01 0.01 - - - - - - -0.572789 0.597854 -0.560788 -7.49618 -0.237486 -0.77583 -0.584541 0.150702 -0.784546 -0.201639 0.586369 -42.5129 0 0 0 1 - - 0.698734 0.399124 -0.593692 175.071 -0.715347 0.381718 -0.585295 -0.000136 -0.006981 0.833661 0.552232 0.000015 0 0 0 1 - - 0.112619 0.993638 0 370.017 -0.993638 0.112619 0 0.000029 0 0 1 0.000003 0 0 0 1 - - 0.995261 0.013675 -0.09627 370.017 -0.060933 0.859273 -0.507874 -0.000002 0.075777 0.511334 0.856035 0.000064 0 0 0 1 - - 0.738845 0.63592 -0.222966 186.693 -0.616553 0.77146 0.157199 0.000056 0.271976 0.021325 0.962068 0.000003 0 0 0 1 - - 1 0 0 167.761 -0.000000 1 0 -0.000005 0 0 -1 -0.000044 0 0 0 1 - - - - -0.5 -0.5 -0.5 - 0.5 0.5 0.5 - - - - - - - - -0.01 -0.01 -0.01 - 0.01 0.01 0.01 - - - - - - - - -0.01 -0.01 -0.01 - 0.01 0.01 0.01 - - - - - - - - -0.01 -0.01 -0.01 - 0.01 0.01 0.01 - - - - - - - - -0.01 -0.01 -0.01 - 0.01 0.01 0.01 - - - - - - - - -0.01 -0.01 -0.01 - 0.01 0.01 0.01 - - - - - - - - -51.3124 5.07854 -367.02 - 790.469 701.193 425.899 - - - - - - 0.910453 -0.384975 0.402477 179.053 0.30073 -1.01613 -1.53964 1051.53 -0.260873 0.124214 -9.62368 -104.193 0 0 0 1 - - 1 0 0.000000 17.8219 0 1 0 0.000014 0 0 1 -0.000002 0 0 0 1 - - - - -0.5 -0.5 -0.5 - 0.5 0.5 0.5 - - - - - - - - 17.322 -0.500014 -0.500002 - 18.322 0.499986 0.499998 - - - - - - 0.64804 -0.018001 0.848896 164.819 -0.09659 -0.613235 -0.343087 1034.98 -0.048948 0.00796 -7.34032 -108.759 0 0 0 1 - - 1 0 -0.000000 17.8219 0 1 0 0.000007 0 0 1 -0.000002 0 0 0 1 - - - - -0.5 -0.5 -0.5 - 0.5 0.5 0.5 - - - - - - - - 17.3219 -0.50006 -0.499999 - 18.3219 0.49994 0.500001 - - - - - - - - 175.629 -322.381 -370.45 - 1391.11 1055.76 556.593 - - - - - - 0.988998 -0.016084 -0.147054 -64.1862 -0.002497 -0.995745 0.092117 86.8699 -0.14791 -0.090736 -0.98483 -181.92 0 0 0 1 - - 0.044008 0.999031 0 547.819 -0.999031 0.044008 0 0.000037 0 0 1 -0.000015 0 0 0 1 - - 0.970553 -0.186579 0.152365 532.748 0.219338 0.945982 -0.238764 0.000041 -0.099587 0.265152 0.95905 -0.000002 0 0 0 1 - - 0.099612 -0.992857 0.06567 214.572 0.994956 0.100175 0.005319 189.364 -0.011859 0.06481 0.997827 -0.000000 0 0 0 1 - - 1 0 0 166.968 0 1 0 0.000004 0 0 1 -0.000033 0 0 0 1 - - - - -0.5 -0.5 -0.5 - 0.5 0.5 0.5 - - - - - - - - 166.468 -0.499949 -0.499992 - 167.468 0.500051 0.500008 - - - - - - - - -0.01 -0.01 -0.01 - 0.01 0.01 0.01 - - - - - - - - -0.01 -0.01 -0.01 - 0.01 0.01 0.01 - - - - - - - - 965.018 -673.231 68.6438 - 965.589 -672.357 70.0258 - - - - - - 0.429568 0.848459 0.309172 -115.92 0.861327 -0.487813 0.141963 125.412 0.271268 0.205316 -0.940351 124.981 0 0 0 1 - - 0.371507 0.92843 0 547.819 -0.92843 0.371507 0 -0.000005 0 0 1 -0.000012 0 0 0 1 - - 0.419188 -0.877486 -0.233021 532.748 0.873442 0.459808 -0.160238 0.000051 0.247751 -0.13636 0.959179 -0.000008 0 0 0 1 - - 0 -1 0 214.572 1 0 0 189.363 0 0 1 0.00003 0 0 0 1 - - 1 0 0 166.968 0 1 0 0.000000 0 0 -1 0.000008 0 0 0 1 - - - - -0.5 -0.5 -0.5 - 0.5 0.5 0.5 - - - - - - - - -0.01 -0.01 -0.01 - 0.01 0.01 0.01 - - - - - - - - -0.01 -0.01 -0.01 - 0.01 0.01 0.01 - - - - - - - - -0.01 -0.01 -0.01 - 0.01 0.01 0.01 - - - - - - - - -0.01 -0.01 -0.01 - 0.01 0.01 0.01 - - - - - - -0.961176 -0.270648 -0.053767 -217.547 0.265068 -0.959767 0.09266 76.1463 -0.076681 0.074811 0.994245 -46.1944 0 0 0 1 - - 0.966687 -0.249688 -0.056315 275.134 0.249268 0.968326 -0.014473 -0.261342 0.058146 -0.000045 0.998308 0.000000 0 0 0 1 - - 0.974433 -0.224679 -0.000000 339.089 0.224679 0.974433 0 -0.290226 0.000000 0.000000 1 -0.000007 0 0 0 1 - - 0.000796 1 0 374.193 1 -0.000795 0.000002 -0.000038 0.000002 0 -1 -0.000003 0 0 0 1 - - - - -0.5 -0.5 -0.5 - 0.5 0.5 0.5 - - - - - - - - -0.01 -0.01 -0.01 - 0.01 0.01 0.01 - - - - - - - - -0.01 -0.01 -0.01 - 0.01 0.01 0.01 - - - - - - - - -0.01 -0.01 -0.01 - 0.01 0.01 0.01 - - - - - - - - -1186.92 -134.371 -450.895 - 1824.03 1077.97 357.332 - - - - - - - - -684.45 -844.81 -519.071 - 1081.93 1633.24 450.018 - - - - - - - #Bip01_Pelvis-node - - - - - - - - - - - - 0 - 3.33333 - - - - - 30 - - - - - - - -
diff --git a/examples/webgl_loader_gltf.html b/examples/webgl_loader_gltf.html index 70f3f3389a0359cf75e0272bc3d8ef0a2221f9da..ec4845008618fede1ab1d9ba817c38a725969f71 100644 --- a/examples/webgl_loader_gltf.html +++ b/examples/webgl_loader_gltf.html @@ -13,7 +13,7 @@ } #info { - color: #fff; + color: #808080; position: absolute; top: 10px; width: 100%; @@ -35,7 +35,7 @@ width:250px; bottom:0%; right:0%; - height:100px; + height:132px; background-color:White; opacity:.9; font: 13px/1.231 "Lucida Grande", Lucida, Verdana, sans-serif; @@ -79,6 +79,11 @@ top:72px; } + #materials_extension_control { + position:absolute; + top:104px; + } + #info a, .button { color: #f00; font-weight: bold; text-decoration: underline; cursor: pointer } @@ -86,10 +91,10 @@
three.js - - glTF loader - + glTF loader -

monster by 3drt - - COLLADA duck by Sony + COLLADA duck by Sony - other models courtesy Cesium
@@ -111,6 +116,13 @@ Animations
Play
+
+ Shaders +
+ Use built-in +
+
+ @@ -118,6 +130,7 @@ +