added Revit 2022 SDK minus except *rvt and *rfa

This commit is contained in:
Jeremy Tammik
2021-04-20 11:36:21 +02:00
parent 1133a82dc5
commit 7e327986e8
3034 changed files with 1245318 additions and 0 deletions
@@ -0,0 +1,367 @@
//
// (C) Copyright 2003-2019 by Autodesk, Inc.
//
// Permission to use, copy, modify, and distribute this software in
// object code form for any purpose and without fee is hereby granted,
// provided that the above copyright notice appears in all copies and
// that both that copyright notice and the limited warranty and
// restricted rights notice below appear in all supporting
// documentation.
//
// AUTODESK PROVIDES THIS PROGRAM "AS IS" AND WITH ALL FAULTS.
// AUTODESK SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF
// MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE. AUTODESK, INC.
// DOES NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE
// UNINTERRUPTED OR ERROR FREE.
//
// Use, duplication, or disclosure by the U.S. Government is subject to
// restrictions set forth in FAR 52.227-19 (Commercial Computer
// Software - Restricted Rights) and DFAR 252.227-7013(c)(1)(ii)
// (Rights in Technical Data and Computer Software), as applicable.
//
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using Autodesk.Revit;
using Autodesk.Revit.DB;
using Autodesk.Revit.UI;
namespace Revit.SDK.Samples.PointCurveCreation.CS
{
/// <summary>
/// A class inherits IExternalCommand interface.
/// This class used to create reference points following parabolic arcs
/// </summary>
[Autodesk.Revit.Attributes.Transaction(Autodesk.Revit.Attributes.TransactionMode.Manual)]
[Autodesk.Revit.Attributes.Regeneration(Autodesk.Revit.Attributes.RegenerationOption.Manual)]
public class PointsParabola : IExternalCommand
{
/// <summary>
/// Implement this method as an external command for Revit.
/// </summary>
/// <param name="commandData">An object that is passed to the external application
/// which contains data related to the command,
/// such as the application object and active view.</param>
/// <param name="message">A message that can be set by the external application
/// which will be displayed if a failure or cancellation is returned by
/// the external command.</param>
/// <param name="elements">A set of elements to which the external application
/// can add elements that are to be highlighted in case of failure or cancellation.</param>
/// <returns>Return the status of the external command.
/// A result of Succeeded means that the API external method functioned as expected.
/// Cancelled can be used to signify that the user cancelled the external operation
/// at some point. Failure should be returned if the application is unable to proceed with
/// the operation.</returns>
static AddInId appId = new AddInId(new Guid("B6FBC0C1-F3AE-4ffa-AB46-B4CF94304827"));
public Result Execute(ExternalCommandData commandData, ref string message, ElementSet elements)
{
Autodesk.Revit.ApplicationServices.Application app = commandData.Application.Application;
Document doc = commandData.Application.ActiveUIDocument.Document;
Transaction transaction = new Transaction(doc, "PointsParabola");
transaction.Start();
double yctr = 0;
XYZ xyz = null;
ReferencePoint rp = null;
double power = 1.2;
while (power < 1.5)
{
double xctr = 0;
double zctr = 0;
while (zctr < 100)
{
zctr = Math.Pow(xctr, power);
xyz = new XYZ(xctr, yctr, zctr);
rp = doc.FamilyCreate.NewReferencePoint(xyz);
if (xctr > 0)
{
xyz = new XYZ(-xctr, yctr, zctr);
rp = doc.FamilyCreate.NewReferencePoint(xyz);
}
xctr++;
}
power = power + 0.1;
yctr = yctr + 50;
zctr = 0;
}
transaction.Commit();
return Result.Succeeded;
}
}
/// <summary>
/// A class inherits IExternalCommand interface.
/// This class used to create reference points constrained to a model curve
/// </summary>
[Autodesk.Revit.Attributes.Transaction(Autodesk.Revit.Attributes.TransactionMode.Manual)]
[Autodesk.Revit.Attributes.Regeneration(Autodesk.Revit.Attributes.RegenerationOption.Manual)]
public class PointsOnCurve : IExternalCommand
{
static AddInId appId = new AddInId(new Guid("22D07F77-A3F7-490c-B0D8-0EC10D8DE7C7"));
/// <summary>
/// Implement this method as an external command for Revit.
/// </summary>
/// <param name="commandData">An object that is passed to the external application
/// which contains data related to the command,
/// such as the application object and active view.</param>
/// <param name="message">A message that can be set by the external application
/// which will be displayed if a failure or cancellation is returned by
/// the external command.</param>
/// <param name="elements">A set of elements to which the external application
/// can add elements that are to be highlighted in case of failure or cancellation.</param>
/// <returns>Return the status of the external command.
/// A result of Succeeded means that the API external method functioned as expected.
/// Cancelled can be used to signify that the user cancelled the external operation
/// at some point. Failure should be returned if the application is unable to proceed with
/// the operation.</returns>
public Result Execute(ExternalCommandData commandData, ref string message, ElementSet elements)
{
Autodesk.Revit.ApplicationServices.Application app = commandData.Application.Application;
Document doc = commandData.Application.ActiveUIDocument.Document;
Transaction transaction = new Transaction(doc, "PointsOnCurve");
transaction.Start();
XYZ start = new XYZ(0, 0, 0);
XYZ end = new XYZ(50, 50, 0);
Autodesk.Revit.DB.Line line = Autodesk.Revit.DB.Line.CreateBound(start, end);
Plane geometryPlane = Plane.CreateByNormalAndOrigin(XYZ.BasisZ, start);
SketchPlane skplane = SketchPlane.Create(doc, geometryPlane);
ModelCurve modelcurve = doc.FamilyCreate.NewModelCurve(line, skplane);
for (double i = 0.1; i <= 1; i = i + 0.1)
{
PointLocationOnCurve locationOnCurve = new PointLocationOnCurve(PointOnCurveMeasurementType.NormalizedCurveParameter, i, PointOnCurveMeasureFrom.Beginning);
PointOnEdge poe = app.Create.NewPointOnEdge(modelcurve.GeometryCurve.Reference, locationOnCurve);
ReferencePoint rp2 = doc.FamilyCreate.NewReferencePoint(poe);
}
transaction.Commit();
return Result.Succeeded;
}
}
/// <summary>
/// A class inherits IExternalCommand interface.
/// This class used to create reference points based on comma-delimited XYZ data in a text file
/// </summary>
[Autodesk.Revit.Attributes.Transaction(Autodesk.Revit.Attributes.TransactionMode.Manual)]
[Autodesk.Revit.Attributes.Regeneration(Autodesk.Revit.Attributes.RegenerationOption.Manual)]
public class PointsFromTextFile : IExternalCommand
{
static AddInId appId = new AddInId(new Guid("C6D0F4DB-81C3-4927-9D68-8936D6EE67DD"));
/// <summary>
/// Implement this method as an external command for Revit.
/// </summary>
/// <param name="commandData">An object that is passed to the external application
/// which contains data related to the command,
/// such as the application object and active view.</param>
/// <param name="message">A message that can be set by the external application
/// which will be displayed if a failure or cancellation is returned by
/// the external command.</param>
/// <param name="elements">A set of elements to which the external application
/// can add elements that are to be highlighted in case of failure or cancellation.</param>
/// <returns>Return the status of the external command.
/// A result of Succeeded means that the API external method functioned as expected.
/// Cancelled can be used to signify that the user cancelled the external operation
/// at some point. Failure should be returned if the application is unable to proceed with
/// the operation.</returns>
public Result Execute(ExternalCommandData commandData, ref string message, ElementSet elements)
{
Autodesk.Revit.ApplicationServices.Application app = commandData.Application.Application;
Document doc = commandData.Application.ActiveUIDocument.Document;
Transaction transaction = new Transaction(doc, "PointsParabola");
transaction.Start();
string filename = "sphere.csv";
string filepath = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location);
if (File.Exists(filepath + "\\" + filename))
{
StreamReader readFile = new StreamReader(filepath + "\\" + filename);
string line;
while ((line = readFile.ReadLine()) != null)
{
string[] data = line.Split(',');
XYZ xyz = new XYZ(Convert.ToDouble(data[0]), Convert.ToDouble(data[1]), Convert.ToDouble(data[2]));
ReferencePoint rp = doc.FamilyCreate.NewReferencePoint(xyz);
}
}
transaction.Commit();
return Result.Succeeded;
}
}
/// <summary>
/// A class inherits IExternalCommand interface.
/// This class used to create curve based on points placed using the equation y=cos(x)
/// </summary>
[Autodesk.Revit.Attributes.Transaction(Autodesk.Revit.Attributes.TransactionMode.Manual)]
[Autodesk.Revit.Attributes.Regeneration(Autodesk.Revit.Attributes.RegenerationOption.Manual)]
public class SineCurve : IExternalCommand
{
static AddInId appId = new AddInId(new Guid("F18A831C-AE42-43cc-91FD-6B5D461A1AC7"));
/// <summary>
/// Implement this method as an external command for Revit.
/// </summary>
/// <param name="commandData">An object that is passed to the external application
/// which contains data related to the command,
/// such as the application object and active view.</param>
/// <param name="message">A message that can be set by the external application
/// which will be displayed if a failure or cancellation is returned by
/// the external command.</param>
/// <param name="elements">A set of elements to which the external application
/// can add elements that are to be highlighted in case of failure or cancellation.</param>
/// <returns>Return the status of the external command.
/// A result of Succeeded means that the API external method functioned as expected.
/// Cancelled can be used to signify that the user cancelled the external operation
/// at some point. Failure should be returned if the application is unable to proceed with
/// the operation.</returns>
public Result Execute(ExternalCommandData commandData, ref string message, ElementSet elements)
{
Autodesk.Revit.ApplicationServices.Application app = commandData.Application.Application;
Document doc = commandData.Application.ActiveUIDocument.Document;
Transaction transaction = new Transaction(doc, "PointsParabola");
transaction.Start();
int pnt_ctr = 0;
double xctr = 0;
XYZ xyz = new XYZ();
ReferencePointArray rparray = new ReferencePointArray();
while (pnt_ctr < 500)
{
xyz = new XYZ(xctr, 0, (Math.Cos(xctr)) * 10);
ReferencePoint rp = doc.FamilyCreate.NewReferencePoint(xyz);
rparray.Append(rp);
xctr = xctr + 0.1;
pnt_ctr++;
}
CurveByPoints curve = doc.FamilyCreate.NewCurveByPoints(rparray);
transaction.Commit();
return Result.Succeeded;
}
}
/// <summary>
/// A class inherits IExternalCommand interface.
/// This class used to create curve based on points placed using the equation y=ScalingFactor * CosH(x/ScalingFactor)
/// </summary>
[Autodesk.Revit.Attributes.Transaction(Autodesk.Revit.Attributes.TransactionMode.Manual)]
[Autodesk.Revit.Attributes.Regeneration(Autodesk.Revit.Attributes.RegenerationOption.Manual)]
public class CatenaryCurve : IExternalCommand
{
static AddInId appId = new AddInId(new Guid("817C2A99-BF00-4029-86F3-2D10550F1410"));
/// <summary>
/// Implement this method as an external command for Revit.
/// </summary>
/// <param name="commandData">An object that is passed to the external application
/// which contains data related to the command,
/// such as the application object and active view.</param>
/// <param name="message">A message that can be set by the external application
/// which will be displayed if a failure or cancellation is returned by
/// the external command.</param>
/// <param name="elements">A set of elements to which the external application
/// can add elements that are to be highlighted in case of failure or cancellation.</param>
/// <returns>Return the status of the external command.
/// A result of Succeeded means that the API external method functioned as expected.
/// Cancelled can be used to signify that the user cancelled the external operation
/// at some point. Failure should be returned if the application is unable to proceed with
/// the operation.</returns>
public Result Execute(ExternalCommandData commandData, ref string message, ElementSet elements)
{
Autodesk.Revit.ApplicationServices.Application app = commandData.Application.Application;
Document doc = commandData.Application.ActiveUIDocument.Document;
Transaction transaction = new Transaction(doc, "CatenaryCurve");
transaction.Start();
for (double scalingFactor = 1; scalingFactor <= 2; scalingFactor = scalingFactor + 0.5)
{
ReferencePointArray rpArray = new ReferencePointArray();
for (double x = -5; x <= 5; x = x + 0.5)
{
double y = scalingFactor * Math.Cosh(x / scalingFactor);
if (y < 50)
{
ReferencePoint rp = doc.FamilyCreate.NewReferencePoint(new XYZ(x, y, 0));
rpArray.Append(rp);
}
}
CurveByPoints cbp = doc.FamilyCreate.NewCurveByPoints(rpArray);
}
transaction.Commit();
return Result.Succeeded;
}
}
/// <summary>
/// A class inherits IExternalCommand interface.
/// This class used to create loft form based on curves and points created using the equation z = cos(x) + cos(y)
/// </summary>
[Autodesk.Revit.Attributes.Transaction(Autodesk.Revit.Attributes.TransactionMode.Manual)]
[Autodesk.Revit.Attributes.Regeneration(Autodesk.Revit.Attributes.RegenerationOption.Manual)]
public class CyclicSurface : IExternalCommand
{
static AddInId appId = new AddInId(new Guid("3F926F3E-D93A-41cd-9ABF-A31594A827B3"));
/// <summary>
/// Implement this method as an external command for Revit.
/// </summary>
/// <param name="commandData">An object that is passed to the external application
/// which contains data related to the command,
/// such as the application object and active view.</param>
/// <param name="message">A message that can be set by the external application
/// which will be displayed if a failure or cancellation is returned by
/// the external command.</param>
/// <param name="elements">A set of elements to which the external application
/// can add elements that are to be highlighted in case of failure or cancellation.</param>
/// <returns>Return the status of the external command.
/// A result of Succeeded means that the API external method functioned as expected.
/// Cancelled can be used to signify that the user cancelled the external operation
/// at some point. Failure should be returned if the application is unable to proceed with
/// the operation.</returns>
public Result Execute(ExternalCommandData commandData, ref string message, ElementSet elements)
{
ExternalCommandData cdata = commandData;
Autodesk.Revit.ApplicationServices.Application app = commandData.Application.Application;
Document doc = commandData.Application.ActiveUIDocument.Document;
Transaction transaction = new Transaction(doc, "CyclicSurface");
transaction.Start();
XYZ xyz = new XYZ();
ReferenceArrayArray refArAr = new ReferenceArrayArray();
int x = 0;
double z = 0;
while (x < 800)
{
ReferencePointArray rpAr = new ReferencePointArray();
int y = 0;
while (y < 800)
{
z = 50 * (Math.Cos((Math.PI / 180) * x) + Math.Cos((Math.PI / 180) * y));
xyz = new XYZ(x, y, z);
ReferencePoint rp = doc.FamilyCreate.NewReferencePoint(xyz);
rpAr.Append(rp);
y = y + 40;
}
CurveByPoints curve = doc.FamilyCreate.NewCurveByPoints(rpAr);
ReferenceArray refAr = new ReferenceArray();
refAr.Append(curve.GeometryCurve.Reference);
refArAr.Append(refAr);
x = x + 40;
}
Form form = doc.FamilyCreate.NewLoftForm(true, refArAr);
transaction.Commit();
return Result.Succeeded;
}
}
}
@@ -0,0 +1,51 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<RevitAddIns>
<AddIn Type="Command">
<Text>Points Along Parabola</Text>
<Assembly>PointCurveCreation.dll</Assembly>
<ClientId>B6FBC0C1-F3AE-4ffa-AB46-B4CF94304827</ClientId>
<FullClassName>Revit.SDK.Samples.PointCurveCreation.CS.PointsParabola</FullClassName>
<VendorId>ADSK</VendorId>
<VendorDescription>Autodesk, www.autodesk.com</VendorDescription>
</AddIn>
<AddIn Type="Command">
<Text>Points On Curve</Text>
<Assembly>PointCurveCreation.dll</Assembly>
<ClientId>22D07F77-A3F7-490c-B0D8-0EC10D8DE7C7</ClientId>
<FullClassName>Revit.SDK.Samples.PointCurveCreation.CS.PointsOnCurve</FullClassName>
<VendorId>ADSK</VendorId>
<VendorDescription>Autodesk, www.autodesk.com</VendorDescription>
</AddIn>
<AddIn Type="Command">
<Text>Points From Text File</Text>
<Assembly>PointCurveCreation.dll</Assembly>
<ClientId>C6D0F4DB-81C3-4927-9D68-8936D6EE67DD</ClientId>
<FullClassName>Revit.SDK.Samples.PointCurveCreation.CS.PointsFromTextFile</FullClassName>
<VendorId>ADSK</VendorId>
<VendorDescription>Autodesk, www.autodesk.com</VendorDescription>
</AddIn>
<AddIn Type="Command">
<Text>Curve - Sine</Text>
<Assembly>PointCurveCreation.dll</Assembly>
<ClientId>F18A831C-AE42-43cc-91FD-6B5D461A1AC7</ClientId>
<FullClassName>Revit.SDK.Samples.PointCurveCreation.CS.SineCurve</FullClassName>
<VendorId>ADSK</VendorId>
<VendorDescription>Autodesk, www.autodesk.com</VendorDescription>
</AddIn>
<AddIn Type="Command">
<Text>Curve - Catenary</Text>
<Assembly>PointCurveCreation.dll</Assembly>
<ClientId>817C2A99-BF00-4029-86F3-2D10550F1410</ClientId>
<FullClassName>Revit.SDK.Samples.PointCurveCreation.CS.CatenaryCurve</FullClassName>
<VendorId>ADSK</VendorId>
<VendorDescription>Autodesk, www.autodesk.com</VendorDescription>
</AddIn>
<AddIn Type="Command">
<Text>Surface - Cyclic</Text>
<Assembly>PointCurveCreation.dll</Assembly>
<ClientId>3F926F3E-D93A-41cd-9ABF-A31594A827B3</ClientId>
<FullClassName>Revit.SDK.Samples.PointCurveCreation.CS.CyclicSurface</FullClassName>
<VendorId>ADSK</VendorId>
<VendorDescription>Autodesk, www.autodesk.com</VendorDescription>
</AddIn>
</RevitAddIns>
@@ -0,0 +1,90 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{0413877F-9549-46A7-8BD5-C6583E74764A}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Revit.SDK.Samples.PointCurveCreation.CS</RootNamespace>
<AssemblyName>PointCurveCreation</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x64\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x64</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<OutputPath>bin\x64\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x64</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup>
<RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Xml.Linq">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Data.DataSetExtensions">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Command.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<Import Project="$(SolutionDir)VSProps\SDKSamples.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
<PropertyGroup>
<ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>None</ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>
</PropertyGroup>
<PropertyGroup>
<PostBuildEvent>set FILEFORSAMPLEREG="$(SolutionDir)..\..\..\..\Regression\API\SDKSamples\UpdateSampleDllForRegression.pl"
if exist %25FILEFORSAMPLEREG%25 perl %25FILEFORSAMPLEREG%25 $(ProjectExt) "$(ProjectPath)" "$(TargetPath)" "$(SolutionDir)"</PostBuildEvent>
</PropertyGroup>
</Project>
@@ -0,0 +1,36 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("PointCurveCreation")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("PointCurveCreation")]
[assembly: AssemblyCopyright("Copyright © Microsoft 2009")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("7612e41b-d017-4ed1-a52a-e8ade1d91362")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
@@ -0,0 +1,253 @@
{\rtf1\adeflang1025\ansi\ansicpg1252\uc1\adeff31507\deff0\stshfdbch31505\stshfloch31506\stshfhich31506\stshfbi31507\deflang1033\deflangfe1033\themelang1033\themelangfe0\themelangcs0{\fonttbl{\f0\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f1\fbidi \fswiss\fcharset0\fprq2{\*\panose 020b0604020202020204}Arial;}
{\f34\fbidi \froman\fcharset0\fprq2{\*\panose 02040503050406030204}Cambria Math;}{\flomajor\f31500\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}
{\fdbmajor\f31501\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fhimajor\f31502\fbidi \fswiss\fcharset0\fprq2{\*\panose 020f0302020204030204}Calibri Light;}
{\fbimajor\f31503\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\flominor\f31504\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}
{\fdbminor\f31505\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fhiminor\f31506\fbidi \fswiss\fcharset0\fprq2{\*\panose 020f0502020204030204}Calibri;}
{\fbiminor\f31507\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f43\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\f44\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}
{\f46\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\f47\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\f48\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\f49\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}
{\f50\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\f51\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\f53\fbidi \fswiss\fcharset238\fprq2 Arial CE;}{\f54\fbidi \fswiss\fcharset204\fprq2 Arial Cyr;}
{\f56\fbidi \fswiss\fcharset161\fprq2 Arial Greek;}{\f57\fbidi \fswiss\fcharset162\fprq2 Arial Tur;}{\f58\fbidi \fswiss\fcharset177\fprq2 Arial (Hebrew);}{\f59\fbidi \fswiss\fcharset178\fprq2 Arial (Arabic);}
{\f60\fbidi \fswiss\fcharset186\fprq2 Arial Baltic;}{\f61\fbidi \fswiss\fcharset163\fprq2 Arial (Vietnamese);}{\flomajor\f31508\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\flomajor\f31509\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}
{\flomajor\f31511\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\flomajor\f31512\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\flomajor\f31513\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}
{\flomajor\f31514\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\flomajor\f31515\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\flomajor\f31516\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}
{\fdbmajor\f31518\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fdbmajor\f31519\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fdbmajor\f31521\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}
{\fdbmajor\f31522\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fdbmajor\f31523\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fdbmajor\f31524\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}
{\fdbmajor\f31525\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fdbmajor\f31526\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fhimajor\f31528\fbidi \fswiss\fcharset238\fprq2 Calibri Light CE;}
{\fhimajor\f31529\fbidi \fswiss\fcharset204\fprq2 Calibri Light Cyr;}{\fhimajor\f31531\fbidi \fswiss\fcharset161\fprq2 Calibri Light Greek;}{\fhimajor\f31532\fbidi \fswiss\fcharset162\fprq2 Calibri Light Tur;}
{\fhimajor\f31533\fbidi \fswiss\fcharset177\fprq2 Calibri Light (Hebrew);}{\fhimajor\f31534\fbidi \fswiss\fcharset178\fprq2 Calibri Light (Arabic);}{\fhimajor\f31535\fbidi \fswiss\fcharset186\fprq2 Calibri Light Baltic;}
{\fhimajor\f31536\fbidi \fswiss\fcharset163\fprq2 Calibri Light (Vietnamese);}{\fbimajor\f31538\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fbimajor\f31539\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}
{\fbimajor\f31541\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fbimajor\f31542\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fbimajor\f31543\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}
{\fbimajor\f31544\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fbimajor\f31545\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fbimajor\f31546\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}
{\flominor\f31548\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\flominor\f31549\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\flominor\f31551\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}
{\flominor\f31552\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\flominor\f31553\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\flominor\f31554\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}
{\flominor\f31555\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\flominor\f31556\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fdbminor\f31558\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}
{\fdbminor\f31559\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fdbminor\f31561\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fdbminor\f31562\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}
{\fdbminor\f31563\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fdbminor\f31564\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fdbminor\f31565\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}
{\fdbminor\f31566\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fhiminor\f31568\fbidi \fswiss\fcharset238\fprq2 Calibri CE;}{\fhiminor\f31569\fbidi \fswiss\fcharset204\fprq2 Calibri Cyr;}
{\fhiminor\f31571\fbidi \fswiss\fcharset161\fprq2 Calibri Greek;}{\fhiminor\f31572\fbidi \fswiss\fcharset162\fprq2 Calibri Tur;}{\fhiminor\f31573\fbidi \fswiss\fcharset177\fprq2 Calibri (Hebrew);}
{\fhiminor\f31574\fbidi \fswiss\fcharset178\fprq2 Calibri (Arabic);}{\fhiminor\f31575\fbidi \fswiss\fcharset186\fprq2 Calibri Baltic;}{\fhiminor\f31576\fbidi \fswiss\fcharset163\fprq2 Calibri (Vietnamese);}
{\fbiminor\f31578\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fbiminor\f31579\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fbiminor\f31581\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}
{\fbiminor\f31582\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fbiminor\f31583\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fbiminor\f31584\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}
{\fbiminor\f31585\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fbiminor\f31586\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}}{\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0;
\red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0;\red255\green255\blue255;\red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0;\red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;
\red192\green192\blue192;\red0\green0\blue0;\red0\green0\blue0;}{\*\defchp \fs22\loch\af31506\hich\af31506\dbch\af31505 }{\*\defpap \ql \li0\ri0\sa160\sl259\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 }
\noqfpromote {\stylesheet{\ql \li0\ri0\sa160\sl259\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af31507\afs22\alang1025 \ltrch\fcs0
\fs22\lang1033\langfe1033\loch\f31506\hich\af31506\dbch\af31505\cgrid\langnp1033\langfenp1033 \snext0 \sqformat \spriority0 Normal;}{\*\cs10 \additive \ssemihidden \sunhideused \spriority1 Default Paragraph Font;}{\*
\ts11\tsrowd\trftsWidthB3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\trcbpat1\trcfpat1\tblind0\tblindtype3\tsvertalt\tsbrdrt\tsbrdrl\tsbrdrb\tsbrdrr\tsbrdrdgl\tsbrdrdgr\tsbrdrh\tsbrdrv \ql \li0\ri0\sa160\sl259\slmult1
\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af31507\afs22\alang1025 \ltrch\fcs0 \fs22\lang1033\langfe1033\loch\f31506\hich\af31506\dbch\af31505\cgrid\langnp1033\langfenp1033 \snext11 \ssemihidden \sunhideused
Normal Table;}}{\*\rsidtbl \rsid7679475\rsid13785693}{\mmathPr\mmathFont34\mbrkBin0\mbrkBinSub0\msmallFrac0\mdispDef1\mlMargin0\mrMargin0\mdefJc1\mwrapIndent1440\mintLim0\mnaryLim1}{\info{\operator Andrew Bushnell}{\creatim\yr2020\mo5\dy15\hr10\min21}
{\revtim\yr2020\mo5\dy15\hr10\min22}{\version2}{\edmins1}{\nofpages1}{\nofwords232}{\nofchars1326}{\nofcharsws1555}{\vern127}}{\*\xmlnstbl {\xmlns1 http://schemas.microsoft.com/office/word/2003/wordml}}
\paperw12240\paperh15840\margl1440\margr1440\margt1440\margb1440\gutter0\ltrsect
\widowctrl\ftnbj\aenddoc\trackmoves0\trackformatting1\donotembedsysfont0\relyonvml0\donotembedlingdata1\grfdocevents0\validatexml0\showplaceholdtext0\ignoremixedcontent0\saveinvalidxml0\showxmlerrors0\horzdoc\dghspace120\dgvspace120\dghorigin1701
\dgvorigin1984\dghshow0\dgvshow3\jcompress\viewkind1\viewscale100\rsidroot13785693 \fet0{\*\wgrffmtfilter 2450}\ilfomacatclnup0\ltrpar \sectd \ltrsect\linex0\sectdefaultcl\sftnbj {\*\pnseclvl1\pnucrm\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl2
\pnucltr\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl3\pndec\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl4\pnlcltr\pnstart1\pnindent720\pnhang {\pntxta )}}{\*\pnseclvl5\pndec\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl6
\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl7\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl8\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl9\pnlcrm\pnstart1\pnindent720\pnhang
{\pntxtb (}{\pntxta )}}\pard\plain \ltrpar\ql \li0\ri0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 \rtlch\fcs1 \af31507\afs22\alang1025 \ltrch\fcs0 \fs22\lang1033\langfe1033\loch\af31506\hich\af31506\dbch\af31505\cgrid\langnp1033\langfenp1033 {
\rtlch\fcs1 \ab\af1\afs20 \ltrch\fcs0 \b\f1\fs20\insrsid7679475 \hich\af1\dbch\af31505\loch\f1 Application:}{\rtlch\fcs1 \af1\afs20 \ltrch\fcs0 \f1\fs20\insrsid7679475 \hich\af1\dbch\af31505\loch\f1 PointCurveCreation\line }{\rtlch\fcs1 \ab\af1\afs20
\ltrch\fcs0 \b\f1\fs20\insrsid7679475 \hich\af1\dbch\af31505\loch\f1 Revit Platform:}{\rtlch\fcs1 \af1\afs20 \ltrch\fcs0 \f1\fs20\insrsid7679475 \hich\af1\dbch\af31505\loch\f1 All\line }{\rtlch\fcs1 \ab\af1\afs20 \ltrch\fcs0 \b\f1\fs20\insrsid7679475
\hich\af1\dbch\af31505\loch\f1 Revit Version:}{\rtlch\fcs1 \af1\afs20 \ltrch\fcs0 \f1\fs20\insrsid7679475 \hich\af1\dbch\af31505\loch\f1 2011.0\line }{\rtlch\fcs1 \ab\af1\afs20 \ltrch\fcs0 \b\f1\fs20\insrsid7679475 \hich\af1\dbch\af31505\loch\f1
First Released For:}{\rtlch\fcs1 \af1\afs20 \ltrch\fcs0 \f1\fs20\insrsid7679475 \hich\af1\dbch\af31505\loch\f1 2011.0\line }{\rtlch\fcs1 \ab\af1\afs20 \ltrch\fcs0 \b\f1\fs20\insrsid7679475 \hich\af1\dbch\af31505\loch\f1 Programming Language:}{
\rtlch\fcs1 \af1\afs20 \ltrch\fcs0 \f1\fs20\insrsid7679475 \hich\af1\dbch\af31505\loch\f1 C#\line }{\rtlch\fcs1 \ab\af1\afs20 \ltrch\fcs0 \b\f1\fs20\insrsid7679475 \hich\af1\dbch\af31505\loch\f1 Skill Level:}{\rtlch\fcs1 \af1\afs20 \ltrch\fcs0
\f1\fs20\insrsid7679475 \hich\af1\dbch\af31505\loch\f1 Beginning\line }{\rtlch\fcs1 \ab\af1\afs20 \ltrch\fcs0 \b\f1\fs20\insrsid7679475 \hich\af1\dbch\af31505\loch\f1 Category:}{\rtlch\fcs1 \af1\afs20 \ltrch\fcs0 \f1\fs20\insrsid7679475
\hich\af1\dbch\af31505\loch\f1 Geometry}{\rtlch\fcs1 \af0\afs20 \ltrch\fcs0 \f0\fs20\insrsid7679475
\par }{\rtlch\fcs1 \ab\af1\afs20 \ltrch\fcs0 \b\f1\fs20\insrsid7679475 \hich\af1\dbch\af31505\loch\f1 Type:}{\rtlch\fcs1 \af1\afs20 \ltrch\fcs0 \f1\fs20\insrsid7679475 \hich\af1\dbch\af31505\loch\f1 ExternalCommand\line \line }{\rtlch\fcs1 \ab\af1\afs20
\ltrch\fcs0 \b\f1\fs20\insrsid7679475 \hich\af1\dbch\af31505\loch\f1 Subject:}{\rtlch\fcs1 \af1\afs20 \ltrch\fcs0 \f1\fs20\insrsid7679475 \hich\af1\dbch\af31505\loch\f1 Refere\hich\af1\dbch\af31505\loch\f1 nce point and Curve By Point creation
\par
\par }{\rtlch\fcs1 \ab\af1\afs20 \ltrch\fcs0 \b\f1\fs20\insrsid7679475 \hich\af1\dbch\af31505\loch\f1 Summary:}{\rtlch\fcs1 \af1\afs20 \ltrch\fcs0 \f1\fs20\insrsid7679475 \hich\af1\dbch\af31505\loch\f1 \line
Use equations and external data files to create massing geometry}{\rtlch\fcs1 \af0\afs20 \ltrch\fcs0 \f0\fs20\insrsid7679475
\par }{\rtlch\fcs1 \ab\af1\afs20 \ltrch\fcs0 \b\f1\fs20\insrsid7679475
\par \hich\af1\dbch\af31505\loch\f1 Classes:}{\rtlch\fcs1 \af1\afs20 \ltrch\fcs0 \f1\fs20\insrsid7679475 \hich\af1\dbch\af31505\loch\f1
\par \tab \hich\af1\dbch\af31505\loch\f1 Autodesk.Revit.DB.ReferencePoint
\par \tab \hich\af1\dbch\af31505\loch\f1 Autodesk.Revit.DB.PointOnEdge
\par \tab \hich\af1\dbch\af31505\loch\f1 Autodesk.Revit.DB.CurveByPoints
\par \tab \hich\af1\dbch\af31505\loch\f1 Autodesk.Revit.DB.Form
\par }{\rtlch\fcs1 \af1\afs20 \ltrch\fcs0 \f1\fs20\lang1024\langfe1024\noproof\insrsid7679475 \tab \hich\af1\dbch\af31505\loch\f1 System.IO.StreamReader}{\rtlch\fcs1 \af1 \ltrch\fcs0 \f1\insrsid7679475
\par }{\rtlch\fcs1 \ab\af1\afs20 \ltrch\fcs0 \b\f1\fs20\insrsid7679475
\par \hich\af1\dbch\af31505\loch\f1 Project Files:
\par }{\rtlch\fcs1 \af1\afs20 \ltrch\fcs0 \f1\fs20\insrsid7679475
\par \hich\af1\dbch\af31505\loch\f1 Command.cs
\par \tab \hich\af1\dbch\af31505\loch\f1 This file contains the all classes and implementation of external commands for this sample
\par \hich\af1\dbch\af31505\loch\f1 Sphere.csv
\par \tab \hich\af1\dbch\af31505\loch\f1 Comma-delimited text file with }{\rtlch\fcs1 \af1\afs20 \ltrch\fcs0 \f1\fs20\lang1024\langfe1024\noproof\insrsid7679475 \hich\af1\dbch\af31505\loch\f1 XYZ }{\rtlch\fcs1 \af1\afs20 \ltrch\fcs0 \f1\fs20\insrsid7679475
\hich\af1\dbch\af31505\loch\f1 data that defined a set of points on a sphere}{\rtlch\fcs1 \af0\afs20 \ltrch\fcs0 \f0\fs20\insrsid7679475
\par }{\rtlch\fcs1 \af1\afs20 \ltrch\fcs0 \f1\fs20\insrsid7679475
\par }{\rtlch\fcs1 \ab\af1\afs20 \ltrch\fcs0 \b\f1\fs20\insrsid7679475 \hich\af1\dbch\af31505\loch\f1 Description:}{\rtlch\fcs1 \af1\afs20 \ltrch\fcs0 \f1\fs20\insrsid7679475 \hich\af1\dbch\af31505\loch\f1
\par \hich\af1\dbch\af31505\loch\f1 This sample contains the following commands:
\par }\pard \ltrpar\ql \fi-360\li720\ri0\nowidctlpar\wrapdefault\faauto\rin0\lin720\itap0 {\rtlch\fcs1 \af1\afs20 \ltrch\fcs0 \f1\fs20\lang1024\langfe1024\noproof\insrsid7679475 \hich\af1\dbch\af31505\loch\f1 1.\tab
PointsParabola - create reference points following parabolic arcs (such as z = x^2)}{\rtlch\fcs1 \af1\afs20 \ltrch\fcs0 \f1\fs20\insrsid7679475
\par }{\rtlch\fcs1 \af1\afs20 \ltrch\fcs0 \f1\fs20\lang1024\langfe1024\noproof\insrsid7679475 \hich\af1\dbch\af31505\loch\f1 2.\tab Po\hich\af1\dbch\af31505\loch\f1
intsOnCurve - create reference points constrained to a model curve. The points are based on PointOnEdge elements so that the points maintain their relative position if the curve is modified. }{\rtlch\fcs1 \af1\afs20 \ltrch\fcs0 \f1\fs20\insrsid7679475
\par }{\rtlch\fcs1 \af1\afs20 \ltrch\fcs0 \f1\fs20\lang1024\langfe1024\noproof\insrsid13785693 \hich\af1\dbch\af31505\loch\f1 3}{\rtlch\fcs1 \af1\afs20 \ltrch\fcs0 \f1\fs20\lang1024\langfe1024\noproof\insrsid7679475 .\tab \hich\af1\dbch\af31505\loch\f1
PointsFromTextFile - create reference points based on comma-delimited XYZ data in a text file}{\rtlch\fcs1 \af1\afs20 \ltrch\fcs0 \f1\fs20\insrsid7679475
\par }{\rtlch\fcs1 \af1\afs20 \ltrch\fcs0 \f1\fs20\lang1024\langfe1024\noproof\insrsid13785693 \hich\af1\dbch\af31505\loch\f1 4}{\rtlch\fcs1 \af1\afs20 \ltrch\fcs0 \f1\fs20\lang1024\langfe1024\noproof\insrsid7679475 .\tab \hich\af1\dbch\af31505\loch\f1
SineCurve - create curve based on points placed using the equation y=cos(x)}{\rtlch\fcs1 \af1\afs20 \ltrch\fcs0 \f1\fs20\insrsid7679475
\par }{\rtlch\fcs1 \af1\afs20 \ltrch\fcs0 \f1\fs20\lang1024\langfe1024\noproof\insrsid13785693 \hich\af1\dbch\af31505\loch\f1 5}{\rtlch\fcs1 \af1\afs20 \ltrch\fcs0 \f1\fs20\lang1024\langfe1024\noproof\insrsid7679475 .\tab \hich\af1\dbch\af31505\loch\f1
CatenaryCurve - create curve based on points placed using the equation y=ScalingFactor * CosH(x/ScalingFactor)}{\rtlch\fcs1 \af1\afs20 \ltrch\fcs0 \f1\fs20\insrsid7679475
\par }{\rtlch\fcs1 \af1\afs20 \ltrch\fcs0 \f1\fs20\lang1024\langfe1024\noproof\insrsid13785693 \hich\af1\dbch\af31505\loch\f1 6}{\rtlch\fcs1 \af1\afs20 \ltrch\fcs0 \f1\fs20\lang1024\langfe1024\noproof\insrsid7679475 .\tab \hich\af1\dbch\af31505\loch\f1
CyclicSurface - create loft form based on curves and points created using the equation z = cos(x) + cos(y)}{\rtlch\fcs1 \af1\afs20 \ltrch\fcs0 \f1\fs20\insrsid7679475
\par }\pard \ltrpar\ql \li0\ri0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \ab\af1\afs20 \ltrch\fcs0 \b\f1\fs20\insrsid7679475
\par \hich\af1\dbch\af31505\loch\f1 Instructions:}{\rtlch\fcs1 \af1\afs20 \ltrch\fcs0 \f1\fs20\insrsid7679475 \hich\af1\dbch\af31505\loch\f1
\par }\pard \ltrpar\ql \fi-360\li720\ri0\nowidctlpar\tx360\wrapdefault\faauto\rin0\lin720\itap0 {\rtlch\fcs1 \af1\afs20 \ltrch\fcs0 \f1\fs20\insrsid7679475 \hich\af1\dbch\af31505\loch\f1 1.\tab Create a new con\hich\af1\dbch\af31505\loch\f1 ceptual mass family
\par }\pard \ltrpar\ql \fi-360\li720\ri0\nowidctlpar\wrapdefault\faauto\rin0\lin720\itap0 {\rtlch\fcs1 \af1\afs20 \ltrch\fcs0 \f1\fs20\insrsid7679475 \hich\af1\dbch\af31505\loch\f1 2.\tab Run the external commands to create the point and curve geometry}{
\rtlch\fcs1 \af1\afs20 \ltrch\fcs0 \f1\fs20\insrsid7679475
\par }{\*\themedata 504b030414000600080000002100e9de0fbfff0000001c020000130000005b436f6e74656e745f54797065735d2e786d6cac91cb4ec3301045f748fc83e52d4a
9cb2400825e982c78ec7a27cc0c8992416c9d8b2a755fbf74cd25442a820166c2cd933f79e3be372bd1f07b5c3989ca74aaff2422b24eb1b475da5df374fd9ad
5689811a183c61a50f98f4babebc2837878049899a52a57be670674cb23d8e90721f90a4d2fa3802cb35762680fd800ecd7551dc18eb899138e3c943d7e503b6
b01d583deee5f99824e290b4ba3f364eac4a430883b3c092d4eca8f946c916422ecab927f52ea42b89a1cd59c254f919b0e85e6535d135a8de20f20b8c12c3b0
0c895fcf6720192de6bf3b9e89ecdbd6596cbcdd8eb28e7c365ecc4ec1ff1460f53fe813d3cc7f5b7f020000ffff0300504b030414000600080000002100a5d6
a7e7c0000000360100000b0000005f72656c732f2e72656c73848fcf6ac3300c87ef85bd83d17d51d2c31825762fa590432fa37d00e1287f68221bdb1bebdb4f
c7060abb0884a4eff7a93dfeae8bf9e194e720169aaa06c3e2433fcb68e1763dbf7f82c985a4a725085b787086a37bdbb55fbc50d1a33ccd311ba548b6309512
0f88d94fbc52ae4264d1c910d24a45db3462247fa791715fd71f989e19e0364cd3f51652d73760ae8fa8c9ffb3c330cc9e4fc17faf2ce545046e37944c69e462
a1a82fe353bd90a865aad41ed0b5b8f9d6fd010000ffff0300504b0304140006000800000021006b799616830000008a0000001c0000007468656d652f746865
6d652f7468656d654d616e616765722e786d6c0ccc4d0ac3201040e17da17790d93763bb284562b2cbaebbf600439c1a41c7a0d29fdbd7e5e38337cedf14d59b
4b0d592c9c070d8a65cd2e88b7f07c2ca71ba8da481cc52c6ce1c715e6e97818c9b48d13df49c873517d23d59085adb5dd20d6b52bd521ef2cdd5eb9246a3d8b
4757e8d3f729e245eb2b260a0238fd010000ffff0300504b030414000600080000002100b6f4679893070000c9200000160000007468656d652f7468656d652f
7468656d65312e786d6cec59cd8b1bc915bf07f23f347d97f5d5ad8fc1f2a24fcfda33b6b164873dd648a5eef2547789aad28cc56208de532e81c026e49085bd
ed21842cecc22eb9e48f31d8249b3f22afaa5bdd5552c99e191c3061463074977eefd5afde7bf5de53d5ddcf5e26d4bbc05c1096f6fcfa9d9aefe174ce16248d
7afeb3d9a4d2f13d2151ba4094a5b8e76fb0f03fbbf7eb5fdd454732c609f6403e1547a8e7c752ae8eaa5531876124eeb0154ee1bb25e30992f0caa3ea82a34b
d09bd06aa3566b55134452df4b51026a1f2f97648ebd9952e9dfdb2a1f53784da5500373caa74a35b6243476715e5708b11143cabd0b447b3eccb3609733fc52
fa1e4542c2173dbfa6fffceabdbb5574940b517940d6909be8bf5c2e17589c37f49c3c3a2b260d823068f50bfd1a40e53e6edc1eb7c6ad429f06a0f91c569a71
b175b61bc320c71aa0ecd1a17bd41e35eb16ded0dfdce3dc0fd5c7c26b50a63fd8c34f2643b0a285d7a00c1feee1c3417730b2f56b50866fede1dbb5fe28685b
fa3528a6243ddf43d7c25673b85d6d0159327aec8477c360d26ee4ca4b144443115d6a8a254be5a1584bd00bc6270050408a24493db959e1259a43140f112567
9c7827248a21f056286502866b8ddaa4d684ffea13e827ed5174849121ad780113b137a4f87862cec94af6fc07a0d537206f7ffef9cdeb1fdfbcfee9cd575fbd
79fdf77c6eadca923b466964cafdf2dd1ffef3cd6fbd7ffff0ed2f5fff319b7a172f4cfcbbbffdeedd3ffef93ef5b0e2d2146ffff4fdbb1fbf7ffbe7dfffebaf
5f3bb4f7393a33e1339260e13dc297de5396c0021dfcf119bf9ec42c46c494e8a791402952b338f48f656ca11f6d10450edc00db767cce21d5b880f7d72f2cc2
d398af2571687c182716f094313a60dc6985876a2ec3ccb3751ab927e76b13f714a10bd7dc43945a5e1eaf579063894be530c616cd2714a5124538c5d253dfb1
738c1dabfb8210cbaea764ce99604be97d41bc01224e93ccc899154da5d03149c02f1b1741f0b7659bd3e7de8051d7aa47f8c246c2de40d4417e86a965c6fb68
2d51e252394309350d7e8264ec2239ddf0b9891b0b099e8e3065de78818570c93ce6b05ec3e90f21cdb8dd7e4a37898de4929cbb749e20c64ce4889d0f6394ac
5cd829496313fbb938871045de13265df05366ef10f50e7e40e941773f27d872f787b3c133c8b026a53240d4376beef0e57dccacf89d6ee8126157aae9f3c44a
b17d4e9cd131584756689f604cd1255a60ec3dfbdcc160c05696cd4bd20f62c82ac7d815580f901dabea3dc5027a25d5dcece7c91322ac909de2881de073bad9
493c1b9426881fd2fc08bc6eda7c0ca52e7105c0633a3f37818f08f480102f4ea33c16a0c308ee835a9fc4c82a60ea5db8e375c32dff5d658fc1be7c61d1b8c2
be04197c6d1948eca6cc7b6d3343d49aa00c9819822ec3956e41c4727f29a28aab165b3be596f6a62ddd00dd91d5f42424fd6007b4d3fb84ffbbde073a8cb77f
f9c6b10f3e4ebfe3566c25ab6b763a8792c9f14e7f7308b7dbd50c195f904fbfa919a175fa04431dd9cf58b73dcd6d4fe3ffdff73487f6f36d2773a8dfb8ed64
7ce8306e3b99fc70e5e3743265f3027d8d3af0c80e7af4b14f72f0d46749289dca0dc527421ffc08f83db398c0a092d3279eb838055cc5f0a8ca1c4c60e1228e
b48cc799fc0d91f134462b381daafb4a492472d591f0564cc0a1911e76ea5678ba4e4ed9223becacd7d5c16656590592e5782d2cc6e1a04a66e856bb3cc02bd4
6bb6913e68dd1250b2d721614c6693683a48b4b783ca48fa58178ce620a157f65158741d2c3a4afdd6557b2c805ae115f8c1edc1cff49e1f06200242701e07cd
f942f92973f5d6bbda991fd3d3878c69450034d8db08283ddd555c0f2e4fad2e0bb52b78da2261849b4d425b46377822869fc17974aad1abd0b8aeafbba54b2d
7aca147a3e08ad9246bbf33e1637f535c8ede6069a9a9982a6de65cf6f35430899395af5fc251c1ac363b282d811ea3717a211dcbccc25cf36fc4d32cb8a0b39
4222ce0cae934e960d122231f728497abe5a7ee1069aea1ca2b9d51b90103e59725d482b9f1a3970baed64bc5ce2b934dd6e8c284b67af90e1b35ce1fc568bdf
1cac24d91adc3d8d1797de195df3a708422c6cd795011744c0dd413db3e682c0655891c8caf8db294c79da356fa3740c65e388ae62945714339967709dca0b3a
faadb081f196af190c6a98242f8467912ab0a651ad6a5a548d8cc3c1aafb6121653923699635d3ca2aaa6abab39835c3b60cecd8f26645de60b53531e434b3c2
67a97b37e576b7b96ea74f28aa0418bcb09fa3ea5ea12018d4cac92c6a8af17e1a56393b1fb56bc776811fa07695226164fdd656ed8edd8a1ae19c0e066f54f9
416e376a6168b9ed2bb5a5f5adb979b1cdce5e40f2184197bba6526857c2c92e47d0104d754f92a50dd8222f65be35e0c95b73d2f3bfac85fd60d80887955a27
1c57826650ab74c27eb3d20fc3667d1cd66ba341e31514161927f530bbb19fc00506dde4f7f67a7cefee3ed9ded1dc99b3a4caf4dd7c5513d777f7f5c6e1bb7b
8f40d2f9b2d598749bdd41abd26df627956034e854bac3d6a0326a0ddba3c9681876ba9357be77a1c141bf390c5ae34ea5551f0e2b41aba6e877ba9576d068f4
8376bf330efaaff23606569ea58fdc16605ecdebde7f010000ffff0300504b0304140006000800000021000dd1909fb60000001b010000270000007468656d65
2f7468656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73848f4d0ac2301484f78277086f6fd3ba109126dd88d0add40384e4350d36
3f2451eced0dae2c082e8761be9969bb979dc9136332de3168aa1a083ae995719ac16db8ec8e4052164e89d93b64b060828e6f37ed1567914b284d262452282e
3198720e274a939cd08a54f980ae38a38f56e422a3a641c8bbd048f7757da0f19b017cc524bd62107bd5001996509affb3fd381a89672f1f165dfe514173d985
0528a2c6cce0239baa4c04ca5bbabac4df000000ffff0300504b01022d0014000600080000002100e9de0fbfff0000001c020000130000000000000000000000
0000000000005b436f6e74656e745f54797065735d2e786d6c504b01022d0014000600080000002100a5d6a7e7c0000000360100000b00000000000000000000
000000300100005f72656c732f2e72656c73504b01022d00140006000800000021006b799616830000008a0000001c0000000000000000000000000019020000
7468656d652f7468656d652f7468656d654d616e616765722e786d6c504b01022d0014000600080000002100b6f4679893070000c92000001600000000000000
000000000000d60200007468656d652f7468656d652f7468656d65312e786d6c504b01022d00140006000800000021000dd1909fb60000001b01000027000000
000000000000000000009d0a00007468656d652f7468656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73504b050600000000050005005d010000980b00000000}
{\*\colorschememapping 3c3f786d6c2076657273696f6e3d22312e302220656e636f64696e673d225554462d3822207374616e64616c6f6e653d22796573223f3e0d0a3c613a636c724d
617020786d6c6e733a613d22687474703a2f2f736368656d61732e6f70656e786d6c666f726d6174732e6f72672f64726177696e676d6c2f323030362f6d6169
6e22206267313d226c743122207478313d22646b3122206267323d226c743222207478323d22646b322220616363656e74313d22616363656e74312220616363
656e74323d22616363656e74322220616363656e74333d22616363656e74332220616363656e74343d22616363656e74342220616363656e74353d22616363656e74352220616363656e74363d22616363656e74362220686c696e6b3d22686c696e6b2220666f6c486c696e6b3d22666f6c486c696e6b222f3e}
{\*\latentstyles\lsdstimax376\lsdlockeddef0\lsdsemihiddendef0\lsdunhideuseddef0\lsdqformatdef0\lsdprioritydef99{\lsdlockedexcept \lsdqformat1 \lsdpriority0 \lsdlocked0 Normal;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 1;
\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 2;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 3;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 4;
\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 5;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 6;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 7;
\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 8;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 9;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 1;
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 5;
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 6;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 7;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 8;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 9;
\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 1;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 2;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 3;
\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 4;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 5;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 6;
\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 7;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 8;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 9;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Normal Indent;
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 footnote text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 annotation text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 header;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 footer;
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index heading;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority35 \lsdlocked0 caption;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 table of figures;
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 envelope address;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 envelope return;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 footnote reference;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 annotation reference;
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 line number;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 page number;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 endnote reference;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 endnote text;
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 table of authorities;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 macro;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 toa heading;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List;
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 3;
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 3;
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 3;
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 5;\lsdqformat1 \lsdpriority10 \lsdlocked0 Title;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Closing;
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Signature;\lsdsemihidden1 \lsdunhideused1 \lsdpriority1 \lsdlocked0 Default Paragraph Font;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text Indent;
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 4;
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Message Header;\lsdqformat1 \lsdpriority11 \lsdlocked0 Subtitle;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Salutation;
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Date;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text First Indent;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text First Indent 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Note Heading;
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text Indent 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text Indent 3;
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Block Text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Hyperlink;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 FollowedHyperlink;\lsdqformat1 \lsdpriority22 \lsdlocked0 Strong;
\lsdqformat1 \lsdpriority20 \lsdlocked0 Emphasis;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Document Map;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Plain Text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 E-mail Signature;
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Top of Form;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Bottom of Form;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Normal (Web);\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Acronym;
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Address;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Cite;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Code;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Definition;
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Keyboard;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Preformatted;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Sample;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Typewriter;
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Variable;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Normal Table;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 annotation subject;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 No List;
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Outline List 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Outline List 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Outline List 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Simple 1;
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Simple 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Simple 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Classic 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Classic 2;
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Classic 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Classic 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Colorful 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Colorful 2;
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Colorful 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Columns 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Columns 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Columns 3;
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Columns 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Columns 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Grid 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Grid 2;
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Grid 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Grid 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Grid 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Grid 6;
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Grid 7;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Grid 8;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table List 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table List 2;
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table List 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table List 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table List 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table List 6;
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table List 7;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table List 8;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table 3D effects 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table 3D effects 2;
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table 3D effects 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Contemporary;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Elegant;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Professional;
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Subtle 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Subtle 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Web 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Web 2;
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Web 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Balloon Text;\lsdpriority39 \lsdlocked0 Table Grid;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Theme;\lsdsemihidden1 \lsdlocked0 Placeholder Text;
\lsdqformat1 \lsdpriority1 \lsdlocked0 No Spacing;\lsdpriority60 \lsdlocked0 Light Shading;\lsdpriority61 \lsdlocked0 Light List;\lsdpriority62 \lsdlocked0 Light Grid;\lsdpriority63 \lsdlocked0 Medium Shading 1;\lsdpriority64 \lsdlocked0 Medium Shading 2;
\lsdpriority65 \lsdlocked0 Medium List 1;\lsdpriority66 \lsdlocked0 Medium List 2;\lsdpriority67 \lsdlocked0 Medium Grid 1;\lsdpriority68 \lsdlocked0 Medium Grid 2;\lsdpriority69 \lsdlocked0 Medium Grid 3;\lsdpriority70 \lsdlocked0 Dark List;
\lsdpriority71 \lsdlocked0 Colorful Shading;\lsdpriority72 \lsdlocked0 Colorful List;\lsdpriority73 \lsdlocked0 Colorful Grid;\lsdpriority60 \lsdlocked0 Light Shading Accent 1;\lsdpriority61 \lsdlocked0 Light List Accent 1;
\lsdpriority62 \lsdlocked0 Light Grid Accent 1;\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 1;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 1;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 1;\lsdsemihidden1 \lsdlocked0 Revision;
\lsdqformat1 \lsdpriority34 \lsdlocked0 List Paragraph;\lsdqformat1 \lsdpriority29 \lsdlocked0 Quote;\lsdqformat1 \lsdpriority30 \lsdlocked0 Intense Quote;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 1;\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 1;
\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 1;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 1;\lsdpriority70 \lsdlocked0 Dark List Accent 1;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 1;\lsdpriority72 \lsdlocked0 Colorful List Accent 1;
\lsdpriority73 \lsdlocked0 Colorful Grid Accent 1;\lsdpriority60 \lsdlocked0 Light Shading Accent 2;\lsdpriority61 \lsdlocked0 Light List Accent 2;\lsdpriority62 \lsdlocked0 Light Grid Accent 2;\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 2;
\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 2;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 2;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 2;\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 2;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 2;
\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 2;\lsdpriority70 \lsdlocked0 Dark List Accent 2;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 2;\lsdpriority72 \lsdlocked0 Colorful List Accent 2;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 2;
\lsdpriority60 \lsdlocked0 Light Shading Accent 3;\lsdpriority61 \lsdlocked0 Light List Accent 3;\lsdpriority62 \lsdlocked0 Light Grid Accent 3;\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 3;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 3;
\lsdpriority65 \lsdlocked0 Medium List 1 Accent 3;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 3;\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 3;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 3;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 3;
\lsdpriority70 \lsdlocked0 Dark List Accent 3;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 3;\lsdpriority72 \lsdlocked0 Colorful List Accent 3;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 3;\lsdpriority60 \lsdlocked0 Light Shading Accent 4;
\lsdpriority61 \lsdlocked0 Light List Accent 4;\lsdpriority62 \lsdlocked0 Light Grid Accent 4;\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 4;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 4;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 4;
\lsdpriority66 \lsdlocked0 Medium List 2 Accent 4;\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 4;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 4;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 4;\lsdpriority70 \lsdlocked0 Dark List Accent 4;
\lsdpriority71 \lsdlocked0 Colorful Shading Accent 4;\lsdpriority72 \lsdlocked0 Colorful List Accent 4;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 4;\lsdpriority60 \lsdlocked0 Light Shading Accent 5;\lsdpriority61 \lsdlocked0 Light List Accent 5;
\lsdpriority62 \lsdlocked0 Light Grid Accent 5;\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 5;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 5;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 5;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 5;
\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 5;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 5;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 5;\lsdpriority70 \lsdlocked0 Dark List Accent 5;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 5;
\lsdpriority72 \lsdlocked0 Colorful List Accent 5;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 5;\lsdpriority60 \lsdlocked0 Light Shading Accent 6;\lsdpriority61 \lsdlocked0 Light List Accent 6;\lsdpriority62 \lsdlocked0 Light Grid Accent 6;
\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 6;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 6;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 6;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 6;
\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 6;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 6;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 6;\lsdpriority70 \lsdlocked0 Dark List Accent 6;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 6;
\lsdpriority72 \lsdlocked0 Colorful List Accent 6;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 6;\lsdqformat1 \lsdpriority19 \lsdlocked0 Subtle Emphasis;\lsdqformat1 \lsdpriority21 \lsdlocked0 Intense Emphasis;
\lsdqformat1 \lsdpriority31 \lsdlocked0 Subtle Reference;\lsdqformat1 \lsdpriority32 \lsdlocked0 Intense Reference;\lsdqformat1 \lsdpriority33 \lsdlocked0 Book Title;\lsdsemihidden1 \lsdunhideused1 \lsdpriority37 \lsdlocked0 Bibliography;
\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority39 \lsdlocked0 TOC Heading;\lsdpriority41 \lsdlocked0 Plain Table 1;\lsdpriority42 \lsdlocked0 Plain Table 2;\lsdpriority43 \lsdlocked0 Plain Table 3;\lsdpriority44 \lsdlocked0 Plain Table 4;
\lsdpriority45 \lsdlocked0 Plain Table 5;\lsdpriority40 \lsdlocked0 Grid Table Light;\lsdpriority46 \lsdlocked0 Grid Table 1 Light;\lsdpriority47 \lsdlocked0 Grid Table 2;\lsdpriority48 \lsdlocked0 Grid Table 3;\lsdpriority49 \lsdlocked0 Grid Table 4;
\lsdpriority50 \lsdlocked0 Grid Table 5 Dark;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 1;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 1;
\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 1;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 1;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 1;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 1;
\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 1;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 2;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 2;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 2;
\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 2;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 2;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 2;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 2;
\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 3;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 3;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 3;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 3;
\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 3;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 3;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 3;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 4;
\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 4;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 4;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 4;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 4;
\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 4;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 4;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 5;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 5;
\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 5;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 5;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 5;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 5;
\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 5;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 6;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 6;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 6;
\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 6;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 6;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 6;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 6;
\lsdpriority46 \lsdlocked0 List Table 1 Light;\lsdpriority47 \lsdlocked0 List Table 2;\lsdpriority48 \lsdlocked0 List Table 3;\lsdpriority49 \lsdlocked0 List Table 4;\lsdpriority50 \lsdlocked0 List Table 5 Dark;
\lsdpriority51 \lsdlocked0 List Table 6 Colorful;\lsdpriority52 \lsdlocked0 List Table 7 Colorful;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 1;\lsdpriority47 \lsdlocked0 List Table 2 Accent 1;\lsdpriority48 \lsdlocked0 List Table 3 Accent 1;
\lsdpriority49 \lsdlocked0 List Table 4 Accent 1;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 1;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 1;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 1;
\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 2;\lsdpriority47 \lsdlocked0 List Table 2 Accent 2;\lsdpriority48 \lsdlocked0 List Table 3 Accent 2;\lsdpriority49 \lsdlocked0 List Table 4 Accent 2;
\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 2;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 2;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 2;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 3;
\lsdpriority47 \lsdlocked0 List Table 2 Accent 3;\lsdpriority48 \lsdlocked0 List Table 3 Accent 3;\lsdpriority49 \lsdlocked0 List Table 4 Accent 3;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 3;
\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 3;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 3;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 4;\lsdpriority47 \lsdlocked0 List Table 2 Accent 4;
\lsdpriority48 \lsdlocked0 List Table 3 Accent 4;\lsdpriority49 \lsdlocked0 List Table 4 Accent 4;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 4;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 4;
\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 4;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 5;\lsdpriority47 \lsdlocked0 List Table 2 Accent 5;\lsdpriority48 \lsdlocked0 List Table 3 Accent 5;
\lsdpriority49 \lsdlocked0 List Table 4 Accent 5;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 5;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 5;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 5;
\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 6;\lsdpriority47 \lsdlocked0 List Table 2 Accent 6;\lsdpriority48 \lsdlocked0 List Table 3 Accent 6;\lsdpriority49 \lsdlocked0 List Table 4 Accent 6;
\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 6;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 6;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 6;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Mention;
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Smart Hyperlink;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Hashtag;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Unresolved Mention;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Smart Link;}}{\*\datastore 01050000
02000000180000004d73786d6c322e534158584d4c5265616465722e362e3000000000000000000000060000
d0cf11e0a1b11ae1000000000000000000000000000000003e000300feff090006000000000000000000000001000000010000000000000000100000feffffff00000000feffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
fffffffffffffffffdfffffffeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
ffffffffffffffffffffffffffffffff52006f006f007400200045006e00740072007900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000500ffffffffffffffffffffffff0c6ad98892f1d411a65f0040963251e5000000000000000000000000e043
b055c42ad601feffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000105000000000000}}
@@ -0,0 +1,700 @@
0,0,-1
-0.0172,0.0736,-0.9971
-0.1066,0.0072,-0.9943
-0.0736,-0.1081,-0.9914
0.0452,-0.1439,-0.9886
0.1511,-0.0748,-0.9857
0.1774,0.0506,-0.9828
0.114,0.1633,-0.98
-0.0064,0.2126,-0.9771
-0.1335,0.1817,-0.9742
-0.2219,0.0846,-0.9714
-0.2448,-0.0451,-0.9685
-0.1977,-0.1686,-0.9657
-0.0955,-0.2528,-0.9628
0.0348,-0.278,-0.9599
0.1622,-0.2402,-0.9571
0.2593,-0.1491,-0.9542
0.3071,-0.0247,-0.9514
0.2977,0.1084,-0.9485
0.234,0.2259,-0.9456
0.1283,0.3077,-0.9428
-0.0012,0.3414,-0.9399
-0.1338,0.3225,-0.9371
-0.2495,0.255,-0.9342
-0.3321,0.1494,-0.9313
-0.3708,0.0209,-0.9285
-0.3612,-0.113,-0.9256
-0.3053,-0.2352,-0.9227
-0.2108,-0.3307,-0.9199
-0.0895,-0.3887,-0.917
0.0442,-0.4029,-0.9142
0.1753,-0.3726,-0.9113
0.2896,-0.3015,-0.9084
0.3753,-0.1977,-0.9056
0.4241,-0.0722,-0.9027
0.4317,0.0624,-0.8999
0.3978,0.1928,-0.897
0.3261,0.3069,-0.8941
0.2236,0.3945,-0.8913
0.0998,0.4481,-0.8884
-0.0342,0.4633,-0.8856
-0.167,0.4393,-0.8827
-0.2875,0.3785,-0.8798
-0.386,0.2863,-0.877
-0.4549,0.1702,-0.8741
-0.4892,0.0396,-0.8712
-0.4866,-0.0954,-0.8684
-0.4476,-0.2247,-0.8655
-0.3755,-0.3389,-0.8627
-0.2756,-0.4299,-0.8598
-0.1553,-0.4915,-0.8569
-0.0231,-0.5196,-0.8541
0.1119,-0.5128,-0.8512
0.2406,-0.4716,-0.8484
0.3548,-0.3991,-0.8455
0.447,-0.3003,-0.8426
0.5117,-0.1815,-0.8398
0.545,-0.0504,-0.8369
0.5451,0.0848,-0.834
0.5123,0.216,-0.8312
0.4487,0.3355,-0.8283
0.3583,0.4361,-0.8255
0.2466,0.5124,-0.8226
0.1199,0.56,-0.8197
-0.0144,0.5766,-0.8169
-0.1489,0.5614,-0.814
-0.2762,0.5155,-0.8112
-0.3896,0.4415,-0.8083
-0.483,0.3435,-0.8054
-0.5517,0.2269,-0.8026
-0.5924,0.0977,-0.7997
-0.603,-0.0373,-0.7969
-0.5833,-0.1712,-0.794
-0.5344,-0.2975,-0.7911
-0.4589,-0.41,-0.7883
-0.3606,-0.5031,-0.7854
-0.2443,-0.5726,-0.7825
-0.1158,-0.6154,-0.7797
0.019,-0.6294,-0.7768
0.1536,-0.6143,-0.774
0.2819,-0.5709,-0.7711
0.3981,-0.5013,-0.7682
0.4971,-0.4087,-0.7654
0.5745,-0.2975,-0.7625
0.627,-0.1726,-0.7597
0.6525,-0.0395,-0.7568
0.6499,0.096,-0.7539
0.6196,0.2281,-0.7511
0.5629,0.3512,-0.7482
0.4823,0.4602,-0.7454
0.3814,0.5507,-0.7425
0.2643,0.619,-0.7396
0.1358,0.6624,-0.7368
0.0013,0.6793,-0.7339
-0.1339,0.6691,-0.731
-0.2644,0.6323,-0.7282
-0.3851,0.5706,-0.7253
-0.4914,0.4864,-0.7225
-0.5791,0.3831,-0.7196
-0.6452,0.2647,-0.7167
-0.687,0.1357,-0.7139
-0.7032,0.001,-0.711
-0.6932,-0.1342,-0.7082
-0.6575,-0.265,-0.7053
-0.5976,-0.3867,-0.7024
-0.5156,-0.4947,-0.6996
-0.4147,-0.5854,-0.6967
-0.2985,-0.6553,-0.6938
-0.1712,-0.7023,-0.691
-0.0375,-0.7246,-0.6881
0.0982,-0.7216,-0.6853
0.2309,-0.6936,-0.6824
0.3561,-0.6414,-0.6795
0.4696,-0.5671,-0.6767
0.5675,-0.4732,-0.6738
0.6466,-0.363,-0.671
0.7042,-0.2402,-0.6681
0.7386,-0.1089,-0.6652
0.7487,0.0264,-0.6624
0.7342,0.1613,-0.6595
0.6956,0.2913,-0.6567
0.6344,0.4124,-0.6538
0.5525,0.5206,-0.6509
0.4526,0.6125,-0.6481
0.3381,0.6851,-0.6452
0.2124,0.7364,-0.6423
0.0797,0.7647,-0.6395
-0.0559,0.7691,-0.6366
-0.1903,0.7498,-0.6338
-0.3191,0.7072,-0.6309
-0.4386,0.6428,-0.628
-0.545,0.5586,-0.6252
-0.6353,0.4573,-0.6223
-0.7067,0.3419,-0.6195
-0.7571,0.2159,-0.6166
-0.7851,0.0831,-0.6137
-0.79,-0.0526,-0.6109
-0.7716,-0.1871,-0.608
-0.7305,-0.3164,-0.6052
-0.6681,-0.437,-0.6023
-0.5861,-0.5451,-0.5994
-0.487,-0.6379,-0.5966
-0.3737,-0.7127,-0.5937
-0.2494,-0.7673,-0.5908
-0.1177,-0.8003,-0.588
0.0176,-0.8108,-0.5851
0.1528,-0.7985,-0.5823
0.2841,-0.7639,-0.5794
0.4078,-0.708,-0.5765
0.5205,-0.6324,-0.5737
0.6192,-0.5392,-0.5708
0.7012,-0.431,-0.568
0.7643,-0.3107,-0.5651
0.8068,-0.1818,-0.5622
0.8275,-0.0476,-0.5594
0.8262,0.0881,-0.5565
0.8026,0.2219,-0.5536
0.7577,0.35,-0.5508
0.6926,0.4691,-0.5479
0.609,0.5762,-0.5451
0.5093,0.6683,-0.5422
0.396,0.7432,-0.5393
0.2722,0.7988,-0.5365
0.141,0.8339,-0.5336
0.0059,0.8475,-0.5308
-0.1297,0.8394,-0.5279
-0.2622,0.8097,-0.525
-0.3883,0.7593,-0.5222
-0.5048,0.6896,-0.5193
-0.6088,0.6022,-0.5165
-0.6976,0.4995,-0.5136
-0.7692,0.3841,-0.5107
-0.8216,0.2588,-0.5079
-0.8537,0.1269,-0.505
-0.8647,-0.0085,-0.5021
-0.8544,-0.1439,-0.4993
-0.823,-0.276,-0.4964
-0.7714,-0.4016,-0.4936
-0.7009,-0.5177,-0.4907
-0.6131,-0.6214,-0.4878
-0.5104,-0.7102,-0.485
-0.3951,-0.782,-0.4821
-0.2701,-0.8351,-0.4793
-0.1384,-0.8683,-0.4764
-0.0031,-0.8808,-0.4735
0.1324,-0.8723,-0.4707
0.2651,-0.8431,-0.4678
0.3917,-0.794,-0.4649
0.5093,-0.726,-0.4621
0.6151,-0.6409,-0.4592
0.7068,-0.5406,-0.4564
0.782,-0.4275,-0.4535
0.8392,-0.3043,-0.4506
0.8771,-0.1739,-0.4478
0.8947,-0.0392,-0.4449
0.8918,0.0966,-0.4421
0.8683,0.2304,-0.4392
0.825,0.3592,-0.4363
0.7627,0.4799,-0.4335
0.6831,0.5899,-0.4306
0.5877,0.6867,-0.4278
0.479,0.7681,-0.4249
0.3593,0.8323,-0.422
0.2313,0.8779,-0.4192
0.098,0.9039,-0.4163
-0.0377,0.9097,-0.4134
-0.1728,0.8953,-0.4106
-0.3043,0.8609,-0.4077
-0.4291,0.8074,-0.4049
-0.5447,0.736,-0.402
-0.6484,0.6483,-0.3991
-0.738,0.5462,-0.3963
-0.8116,0.4319,-0.3934
-0.8675,0.3081,-0.3906
-0.9046,0.1774,-0.3877
-0.922,0.0427,-0.3848
-0.9195,-0.0932,-0.382
-0.897,-0.2272,-0.3791
-0.8552,-0.3564,-0.3763
-0.7949,-0.4782,-0.3734
-0.7175,-0.5898,-0.3705
-0.6246,-0.689,-0.3677
-0.5182,-0.7735,-0.3648
-0.4007,-0.8417,-0.3619
-0.2745,-0.892,-0.3591
-0.1423,-0.9235,-0.3562
-0.007,-0.9355,-0.3534
0.1287,-0.9277,-0.3505
0.2618,-0.9003,-0.3476
0.3895,-0.854,-0.3448
0.5092,-0.7898,-0.3419
0.6184,-0.7089,-0.3391
0.7148,-0.6132,-0.3362
0.7965,-0.5045,-0.3333
0.8616,-0.3853,-0.3305
0.9089,-0.2579,-0.3276
0.9375,-0.1251,-0.3247
0.9467,0.0105,-0.3219
0.9364,0.146,-0.319
0.9069,0.2786,-0.3162
0.8586,0.4057,-0.3133
0.7928,0.5245,-0.3104
0.7106,0.6328,-0.3076
0.6139,0.7282,-0.3047
0.5045,0.8089,-0.3019
0.3848,0.8732,-0.299
0.2572,0.9199,-0.2961
0.1242,0.9479,-0.2933
-0.0114,0.9568,-0.2904
-0.1469,0.9464,-0.2876
-0.2795,0.917,-0.2847
-0.4067,0.869,-0.2818
-0.5258,0.8036,-0.279
-0.6344,0.722,-0.2761
-0.7305,0.6259,-0.2732
-0.8121,0.5171,-0.2704
-0.8775,0.398,-0.2675
-0.9255,0.2709,-0.2647
-0.9552,0.1383,-0.2618
-0.9659,0.0028,-0.2589
-0.9575,-0.1329,-0.2561
-0.9301,-0.266,-0.2532
-0.8844,-0.3939,-0.2504
-0.8212,-0.5143,-0.2475
-0.7417,-0.6245,-0.2446
-0.6476,-0.7226,-0.2418
-0.5407,-0.8065,-0.2389
-0.4232,-0.8748,-0.2361
-0.2973,-0.9259,-0.2332
-0.1654,-0.9589,-0.2303
-0.0303,-0.9733,-0.2275
0.1056,-0.9687,-0.2246
0.2394,-0.9453,-0.2217
0.3687,-0.9034,-0.2189
0.491,-0.844,-0.216
0.6038,-0.7681,-0.2132
0.7049,-0.6774,-0.2103
0.7925,-0.5735,-0.2074
0.8649,-0.4584,-0.2046
0.9206,-0.3344,-0.2017
0.9586,-0.2039,-0.1989
0.9781,-0.0694,-0.196
0.9789,0.0665,-0.1931
0.9609,0.2012,-0.1903
0.9244,0.3322,-0.1874
0.8702,0.4568,-0.1845
0.7993,0.5728,-0.1817
0.7131,0.6779,-0.1788
0.6132,0.7701,-0.176
0.5016,0.8476,-0.1731
0.3803,0.909,-0.1702
0.2518,0.9532,-0.1674
0.1184,0.9792,-0.1645
-0.0173,0.9867,-0.1617
-0.1528,0.9754,-0.1588
-0.2854,0.9456,-0.1559
-0.4127,0.8979,-0.1531
-0.5322,0.8332,-0.1502
-0.6417,0.7526,-0.1474
-0.7392,0.6579,-0.1445
-0.8227,0.5506,-0.1416
-0.8907,0.4329,-0.1388
-0.942,0.307,-0.1359
-0.9755,0.1753,-0.133
-0.9907,0.0402,-0.1302
-0.9872,-0.0957,-0.1273
-0.9652,-0.2298,-0.1245
-0.9251,-0.3597,-0.1216
-0.8676,-0.4829,-0.1187
-0.7938,-0.5971,-0.1159
-0.7051,-0.7001,-0.113
-0.6031,-0.79,-0.1102
-0.4899,-0.8652,-0.1073
-0.3674,-0.9242,-0.1044
-0.238,-0.9659,-0.1016
-0.1042,-0.9896,-0.0987
0.0317,-0.9949,-0.0959
0.1669,-0.9816,-0.093
0.2992,-0.9499,-0.0901
0.4258,-0.9006,-0.0873
0.5446,-0.8344,-0.0844
0.6532,-0.7527,-0.0815
0.7498,-0.657,-0.0787
0.8324,-0.549,-0.0758
0.8995,-0.4308,-0.073
0.9499,-0.3046,-0.0701
0.9827,-0.1726,-0.0672
0.9972,-0.0374,-0.0644
0.9932,0.0984,-0.0615
0.9708,0.2325,-0.0587
0.9304,0.3623,-0.0558
0.8727,0.4854,-0.0529
0.7988,0.5995,-0.0501
0.7101,0.7026,-0.0472
0.6082,0.7926,-0.0443
0.495,0.8679,-0.0415
0.3726,0.9272,-0.0386
0.2434,0.9693,-0.0358
0.1096,0.9934,-0.0329
-0.0263,0.9992,-0.03
-0.1616,0.9865,-0.0272
-0.294,0.9555,-0.0243
-0.4209,0.9068,-0.0215
-0.5401,0.8414,-0.0186
-0.6493,0.7604,-0.0157
-0.7465,0.6653,-0.0129
-0.8299,0.5579,-0.01
-0.8979,0.4402,-0.0072
-0.9493,0.3143,-0.0043
-0.9832,0.1826,-0.0014
-0.9989,0.0476,0.0014
-0.9961,-0.0884,0.0043
-0.9749,-0.2227,0.0072
-0.9356,-0.3528,0.01
-0.8791,-0.4765,0.0129
-0.8063,-0.5913,0.0157
-0.7186,-0.6952,0.0186
-0.6176,-0.7862,0.0215
-0.5051,-0.8627,0.0243
-0.3834,-0.9232,0.0272
-0.2545,-0.9666,0.03
-0.121,-0.9921,0.0329
0.0148,-0.9993,0.0358
0.1503,-0.9879,0.0386
0.283,-0.9582,0.0415
0.4104,-0.9108,0.0443
0.5302,-0.8465,0.0472
0.6402,-0.7666,0.0501
0.7383,-0.6724,0.0529
0.8227,-0.5658,0.0558
0.8918,-0.4487,0.0587
0.9443,-0.3232,0.0615
0.9793,-0.1918,0.0644
0.9961,-0.0569,0.0672
0.9944,0.079,0.0701
0.9742,0.2135,0.073
0.9359,0.344,0.0758
0.8802,0.468,0.0787
0.8081,0.5833,0.0815
0.721,0.6878,0.0844
0.6205,0.7793,0.0873
0.5085,0.8564,0.0901
0.3869,0.9174,0.093
0.2582,0.9613,0.0959
0.1248,0.9873,0.0987
-0.011,0.9948,0.1016
-0.1465,0.9837,0.1044
-0.2793,0.9542,0.1073
-0.4068,0.9069,0.1102
-0.5266,0.8426,0.113
-0.6365,0.7625,0.1159
-0.7345,0.6682,0.1187
-0.8186,0.5614,0.1216
-0.8873,0.444,0.1245
-0.9394,0.3184,0.1273
-0.9737,0.1868,0.1302
-0.9898,0.0518,0.133
-0.9871,-0.0842,0.1359
-0.9659,-0.2185,0.1388
-0.9265,-0.3487,0.1416
-0.8696,-0.4722,0.1445
-0.7963,-0.5867,0.1474
-0.7079,-0.6901,0.1502
-0.6063,-0.7804,0.1531
-0.4931,-0.8559,0.1559
-0.3707,-0.9151,0.1588
-0.2413,-0.9569,0.1617
-0.1074,-0.9805,0.1645
0.0285,-0.9855,0.1674
0.1638,-0.9717,0.1702
0.2959,-0.9394,0.1731
0.4223,-0.8892,0.176
0.5406,-0.8221,0.1788
0.6485,-0.7392,0.1817
0.7439,-0.6423,0.1845
0.825,-0.5332,0.1874
0.8902,-0.4139,0.1903
0.9384,-0.2867,0.1931
0.9684,-0.154,0.196
0.9799,-0.0185,0.1989
0.9724,0.1173,0.2017
0.9462,0.2507,0.2046
0.9017,0.3793,0.2074
0.8399,0.5004,0.2103
0.7618,0.6117,0.2132
0.669,0.7112,0.216
0.5633,0.7967,0.2189
0.4467,0.8668,0.2217
0.3215,0.9199,0.2246
0.1901,0.955,0.2275
0.0551,0.9716,0.2303
-0.0809,0.9691,0.2332
-0.2152,0.9476,0.2361
-0.3452,0.9076,0.2389
-0.4683,0.8499,0.2418
-0.5821,0.7754,0.2446
-0.6844,0.6858,0.2475
-0.7732,0.5827,0.2504
-0.8466,0.4682,0.2532
-0.9032,0.3445,0.2561
-0.9419,0.2142,0.2589
-0.9618,0.0796,0.2618
-0.9627,-0.0564,0.2647
-0.9444,-0.1912,0.2675
-0.9073,-0.322,0.2704
-0.8521,-0.4463,0.2732
-0.78,-0.5616,0.2761
-0.6922,-0.6656,0.279
-0.5907,-0.7561,0.2818
-0.4774,-0.8313,0.2847
-0.3545,-0.8897,0.2876
-0.2247,-0.9302,0.2904
-0.0904,-0.9517,0.2933
0.0456,-0.9541,0.2961
0.1806,-0.937,0.299
0.3117,-0.901,0.3019
0.4364,-0.8466,0.3047
0.5521,-0.775,0.3076
0.6563,-0.6877,0.3104
0.747,-0.5863,0.3133
0.8224,-0.473,0.3162
0.8807,-0.3502,0.319
0.9208,-0.2202,0.3219
0.9419,-0.0858,0.3247
0.9435,0.0502,0.3276
0.9255,0.185,0.3305
0.8883,0.3159,0.3333
0.8327,0.44,0.3362
0.7597,0.5548,0.3391
0.671,0.6579,0.3419
0.5683,0.7471,0.3448
0.4538,0.8205,0.3476
0.3298,0.8766,0.3505
0.1991,0.9141,0.3534
0.0642,0.9322,0.3562
-0.0718,0.9305,0.3591
-0.2061,0.9091,0.3619
-0.3359,0.8684,0.3648
-0.4584,0.8092,0.3677
-0.5709,0.7327,0.3705
-0.671,0.6406,0.3734
-0.7566,0.5348,0.3763
-0.8257,0.4177,0.3791
-0.8769,0.2917,0.382
-0.9091,0.1595,0.3848
-0.9215,0.024,0.3877
-0.9138,-0.1118,0.3906
-0.8861,-0.245,0.3934
-0.8391,-0.3727,0.3963
-0.7737,-0.492,0.3991
-0.6914,-0.6003,0.402
-0.594,-0.6952,0.4049
-0.4835,-0.7746,0.4077
-0.3625,-0.8367,0.4106
-0.2335,-0.8801,0.4134
-0.0995,-0.9038,0.4163
0.0365,-0.9072,0.4192
0.1714,-0.8902,0.422
0.3024,-0.8533,0.4249
0.4263,-0.7971,0.4278
0.5403,-0.7229,0.4306
0.6419,-0.6325,0.4335
0.7288,-0.5277,0.4363
0.7988,-0.4111,0.4392
0.8504,-0.2852,0.4421
0.8824,-0.153,0.4449
0.894,-0.0174,0.4478
0.8848,0.1183,0.4506
0.8551,0.2511,0.4535
0.8056,0.3778,0.4564
0.7373,0.4955,0.4592
0.6518,0.6013,0.4621
0.5511,0.6929,0.4649
0.4376,0.7679,0.4678
0.3139,0.8246,0.4707
0.183,0.8616,0.4735
0.0479,0.8779,0.4764
-0.088,0.8732,0.4793
-0.2217,0.8476,0.4821
-0.3497,0.8016,0.485
-0.469,0.7362,0.4878
-0.5768,0.6531,0.4907
-0.6702,0.5542,0.4936
-0.7471,0.442,0.4964
-0.8055,0.3191,0.4993
-0.844,0.1885,0.5021
-0.8614,0.0536,0.505
-0.8575,-0.0824,0.5079
-0.8321,-0.2161,0.5107
-0.786,-0.3441,0.5136
-0.7202,-0.4632,0.5165
-0.6364,-0.5704,0.5193
-0.5366,-0.6629,0.5222
-0.4233,-0.7383,0.525
-0.2995,-0.7947,0.5279
-0.1683,-0.8307,0.5308
-0.0329,-0.8451,0.5336
0.1029,-0.8376,0.5365
0.2358,-0.8084,0.5393
0.3623,-0.7581,0.5422
0.479,-0.6881,0.5451
0.5828,-0.6001,0.5479
0.6709,-0.4965,0.5508
0.7411,-0.3798,0.5536
0.7913,-0.2533,0.5565
0.8201,-0.1204,0.5594
0.8268,0.0156,0.5622
0.8111,0.1507,0.5651
0.7734,0.2815,0.568
0.7147,0.4043,0.5708
0.6364,0.5156,0.5737
0.5408,0.6125,0.5765
0.4305,0.6921,0.5794
0.3084,0.7522,0.5823
0.178,0.7912,0.5851
0.0429,0.8077,0.588
-0.0931,0.8014,0.5908
-0.226,0.7723,0.5937
-0.3522,0.7212,0.5966
-0.4678,0.6495,0.5994
-0.5697,0.5592,0.6023
-0.6547,0.4529,0.6052
-0.7204,0.3337,0.608
-0.7647,0.205,0.6109
-0.7863,0.0706,0.6137
-0.7846,-0.0654,0.6166
-0.7593,-0.1992,0.6195
-0.7114,-0.3266,0.6223
-0.6421,-0.4437,0.6252
-0.5535,-0.547,0.628
-0.4482,-0.6333,0.6309
-0.3294,-0.6999,0.6338
-0.2009,-0.7446,0.6366
-0.0664,-0.7659,0.6395
0.0697,-0.7632,0.6423
0.2031,-0.7365,0.6452
0.3297,-0.6865,0.6481
0.4454,-0.6147,0.6509
0.5464,-0.5235,0.6538
0.6294,-0.4155,0.6567
0.6916,-0.2945,0.6595
0.731,-0.1641,0.6624
0.7461,-0.0289,0.6652
0.7364,0.1069,0.6681
0.702,0.2387,0.671
0.6442,0.3619,0.6738
0.5647,0.4724,0.6767
0.4662,0.5664,0.6795
0.3521,0.6406,0.6824
0.2261,0.6923,0.6853
0.0927,0.7196,0.6881
-0.0434,0.7216,0.691
-0.1775,0.6979,0.6938
-0.3047,0.6494,0.6967
-0.4205,0.5778,0.6996
-0.5205,0.4854,0.7024
-0.6012,0.3757,0.7053
-0.6593,0.2526,0.7082
-0.6928,0.1206,0.711
-0.7001,-0.0154,0.7139
-0.681,-0.1502,0.7167
-0.636,-0.2787,0.7196
-0.5668,-0.396,0.7225
-0.4759,-0.4974,0.7253
-0.3668,-0.5789,0.7282
-0.2438,-0.6373,0.731
-0.1116,-0.67,0.7339
0.0245,-0.6757,0.7368
0.1589,-0.654,0.7396
0.2862,-0.6056,0.7425
0.4011,-0.5325,0.7454
0.4987,-0.4375,0.7482
0.5749,-0.3246,0.7511
0.6263,-0.1985,0.7539
0.6505,-0.0644,0.7568
0.6464,0.0717,0.7597
0.614,0.204,0.7625
0.5546,0.3266,0.7654
0.4707,0.4339,0.7682
0.366,0.521,0.7711
0.2451,0.5839,0.774
0.1136,0.6194,0.7768
-0.0225,0.6258,0.7797
-0.1567,0.6025,0.7825
-0.2827,0.5506,0.7854
-0.3943,0.4724,0.7883
-0.4859,0.3716,0.7911
-0.5528,0.2529,0.794
-0.5917,0.1223,0.7969
-0.6002,-0.0137,0.7997
-0.5779,-0.1481,0.8026
-0.5256,-0.2739,0.8054
-0.4459,-0.3845,0.8083
-0.3429,-0.4737,0.8112
-0.2221,-0.5367,0.814
-0.0899,-0.5698,0.8169
0.0464,-0.5708,0.8197
0.1791,-0.5397,0.8226
0.3005,-0.4778,0.8255
0.4036,-0.3886,0.8283
0.482,-0.2771,0.8312
0.531,-0.1498,0.834
0.5471,-0.0145,0.8369
0.5294,0.1207,0.8398
0.4784,0.2472,0.8426
0.3973,0.3568,0.8455
0.2911,0.4422,0.8484
0.1665,0.4977,0.8512
0.0319,0.5192,0.8541
-0.1038,0.5049,0.8569
-0.2309,0.4555,0.8598
-0.3404,0.3741,0.8627
-0.4241,0.2664,0.8655
-0.4757,0.1402,0.8684
-0.4908,0.0046,0.8712
-0.468,-0.1299,0.8741
-0.4087,-0.2528,0.877
-0.3172,-0.354,0.8798
-0.2006,-0.425,0.8827
-0.0686,-0.4595,0.8856
0.0678,-0.454,0.8884
0.1966,-0.4086,0.8913
0.306,-0.327,0.8941
0.3856,-0.2161,0.897
0.4276,-0.0862,0.8999
0.4273,0.0504,0.9027
0.3841,0.18,0.9056
0.3019,0.2891,0.9084
0.1889,0.3659,0.9113
0.0569,0.4013,0.9142
-0.0793,0.3909,0.917
-0.204,0.3349,0.9199
-0.302,0.2395,0.9227
-0.3603,0.1158,0.9256
-0.3708,-0.0205,0.9285
-0.3312,-0.1515,0.9313
-0.2459,-0.2585,0.9342
-0.1265,-0.3255,0.9371
0.0095,-0.3413,0.9399
0.1408,-0.3023,0.9428
0.2452,-0.2136,0.9456
0.3038,-0.0897,0.9485
0.3044,0.0474,0.9514
0.2452,0.1712,0.9542
0.1369,0.2555,0.9571
0.0017,0.2802,0.9599
-0.1289,0.2375,0.9628
-0.2215,0.1357,0.9657
-0.2489,0.0007,0.9685
-0.2,-0.1281,0.9714
-0.0873,-0.2079,0.9742
0.051,-0.2065,0.9771
0.1591,-0.1198,0.98
0.1837,0.017,0.9828
0.1048,0.132,0.9857
-0.0345,0.1469,0.9886
-0.1249,0.0386,0.9914
-0.06,-0.0884,0.9943
0.0705,-0.0271,0.9971
0,0,1
1 0 0 -1
2 -0.0172 0.0736 -0.9971
3 -0.1066 0.0072 -0.9943
4 -0.0736 -0.1081 -0.9914
5 0.0452 -0.1439 -0.9886
6 0.1511 -0.0748 -0.9857
7 0.1774 0.0506 -0.9828
8 0.114 0.1633 -0.98
9 -0.0064 0.2126 -0.9771
10 -0.1335 0.1817 -0.9742
11 -0.2219 0.0846 -0.9714
12 -0.2448 -0.0451 -0.9685
13 -0.1977 -0.1686 -0.9657
14 -0.0955 -0.2528 -0.9628
15 0.0348 -0.278 -0.9599
16 0.1622 -0.2402 -0.9571
17 0.2593 -0.1491 -0.9542
18 0.3071 -0.0247 -0.9514
19 0.2977 0.1084 -0.9485
20 0.234 0.2259 -0.9456
21 0.1283 0.3077 -0.9428
22 -0.0012 0.3414 -0.9399
23 -0.1338 0.3225 -0.9371
24 -0.2495 0.255 -0.9342
25 -0.3321 0.1494 -0.9313
26 -0.3708 0.0209 -0.9285
27 -0.3612 -0.113 -0.9256
28 -0.3053 -0.2352 -0.9227
29 -0.2108 -0.3307 -0.9199
30 -0.0895 -0.3887 -0.917
31 0.0442 -0.4029 -0.9142
32 0.1753 -0.3726 -0.9113
33 0.2896 -0.3015 -0.9084
34 0.3753 -0.1977 -0.9056
35 0.4241 -0.0722 -0.9027
36 0.4317 0.0624 -0.8999
37 0.3978 0.1928 -0.897
38 0.3261 0.3069 -0.8941
39 0.2236 0.3945 -0.8913
40 0.0998 0.4481 -0.8884
41 -0.0342 0.4633 -0.8856
42 -0.167 0.4393 -0.8827
43 -0.2875 0.3785 -0.8798
44 -0.386 0.2863 -0.877
45 -0.4549 0.1702 -0.8741
46 -0.4892 0.0396 -0.8712
47 -0.4866 -0.0954 -0.8684
48 -0.4476 -0.2247 -0.8655
49 -0.3755 -0.3389 -0.8627
50 -0.2756 -0.4299 -0.8598
51 -0.1553 -0.4915 -0.8569
52 -0.0231 -0.5196 -0.8541
53 0.1119 -0.5128 -0.8512
54 0.2406 -0.4716 -0.8484
55 0.3548 -0.3991 -0.8455
56 0.447 -0.3003 -0.8426
57 0.5117 -0.1815 -0.8398
58 0.545 -0.0504 -0.8369
59 0.5451 0.0848 -0.834
60 0.5123 0.216 -0.8312
61 0.4487 0.3355 -0.8283
62 0.3583 0.4361 -0.8255
63 0.2466 0.5124 -0.8226
64 0.1199 0.56 -0.8197
65 -0.0144 0.5766 -0.8169
66 -0.1489 0.5614 -0.814
67 -0.2762 0.5155 -0.8112
68 -0.3896 0.4415 -0.8083
69 -0.483 0.3435 -0.8054
70 -0.5517 0.2269 -0.8026
71 -0.5924 0.0977 -0.7997
72 -0.603 -0.0373 -0.7969
73 -0.5833 -0.1712 -0.794
74 -0.5344 -0.2975 -0.7911
75 -0.4589 -0.41 -0.7883
76 -0.3606 -0.5031 -0.7854
77 -0.2443 -0.5726 -0.7825
78 -0.1158 -0.6154 -0.7797
79 0.019 -0.6294 -0.7768
80 0.1536 -0.6143 -0.774
81 0.2819 -0.5709 -0.7711
82 0.3981 -0.5013 -0.7682
83 0.4971 -0.4087 -0.7654
84 0.5745 -0.2975 -0.7625
85 0.627 -0.1726 -0.7597
86 0.6525 -0.0395 -0.7568
87 0.6499 0.096 -0.7539
88 0.6196 0.2281 -0.7511
89 0.5629 0.3512 -0.7482
90 0.4823 0.4602 -0.7454
91 0.3814 0.5507 -0.7425
92 0.2643 0.619 -0.7396
93 0.1358 0.6624 -0.7368
94 0.0013 0.6793 -0.7339
95 -0.1339 0.6691 -0.731
96 -0.2644 0.6323 -0.7282
97 -0.3851 0.5706 -0.7253
98 -0.4914 0.4864 -0.7225
99 -0.5791 0.3831 -0.7196
100 -0.6452 0.2647 -0.7167
101 -0.687 0.1357 -0.7139
102 -0.7032 0.001 -0.711
103 -0.6932 -0.1342 -0.7082
104 -0.6575 -0.265 -0.7053
105 -0.5976 -0.3867 -0.7024
106 -0.5156 -0.4947 -0.6996
107 -0.4147 -0.5854 -0.6967
108 -0.2985 -0.6553 -0.6938
109 -0.1712 -0.7023 -0.691
110 -0.0375 -0.7246 -0.6881
111 0.0982 -0.7216 -0.6853
112 0.2309 -0.6936 -0.6824
113 0.3561 -0.6414 -0.6795
114 0.4696 -0.5671 -0.6767
115 0.5675 -0.4732 -0.6738
116 0.6466 -0.363 -0.671
117 0.7042 -0.2402 -0.6681
118 0.7386 -0.1089 -0.6652
119 0.7487 0.0264 -0.6624
120 0.7342 0.1613 -0.6595
121 0.6956 0.2913 -0.6567
122 0.6344 0.4124 -0.6538
123 0.5525 0.5206 -0.6509
124 0.4526 0.6125 -0.6481
125 0.3381 0.6851 -0.6452
126 0.2124 0.7364 -0.6423
127 0.0797 0.7647 -0.6395
128 -0.0559 0.7691 -0.6366
129 -0.1903 0.7498 -0.6338
130 -0.3191 0.7072 -0.6309
131 -0.4386 0.6428 -0.628
132 -0.545 0.5586 -0.6252
133 -0.6353 0.4573 -0.6223
134 -0.7067 0.3419 -0.6195
135 -0.7571 0.2159 -0.6166
136 -0.7851 0.0831 -0.6137
137 -0.79 -0.0526 -0.6109
138 -0.7716 -0.1871 -0.608
139 -0.7305 -0.3164 -0.6052
140 -0.6681 -0.437 -0.6023
141 -0.5861 -0.5451 -0.5994
142 -0.487 -0.6379 -0.5966
143 -0.3737 -0.7127 -0.5937
144 -0.2494 -0.7673 -0.5908
145 -0.1177 -0.8003 -0.588
146 0.0176 -0.8108 -0.5851
147 0.1528 -0.7985 -0.5823
148 0.2841 -0.7639 -0.5794
149 0.4078 -0.708 -0.5765
150 0.5205 -0.6324 -0.5737
151 0.6192 -0.5392 -0.5708
152 0.7012 -0.431 -0.568
153 0.7643 -0.3107 -0.5651
154 0.8068 -0.1818 -0.5622
155 0.8275 -0.0476 -0.5594
156 0.8262 0.0881 -0.5565
157 0.8026 0.2219 -0.5536
158 0.7577 0.35 -0.5508
159 0.6926 0.4691 -0.5479
160 0.609 0.5762 -0.5451
161 0.5093 0.6683 -0.5422
162 0.396 0.7432 -0.5393
163 0.2722 0.7988 -0.5365
164 0.141 0.8339 -0.5336
165 0.0059 0.8475 -0.5308
166 -0.1297 0.8394 -0.5279
167 -0.2622 0.8097 -0.525
168 -0.3883 0.7593 -0.5222
169 -0.5048 0.6896 -0.5193
170 -0.6088 0.6022 -0.5165
171 -0.6976 0.4995 -0.5136
172 -0.7692 0.3841 -0.5107
173 -0.8216 0.2588 -0.5079
174 -0.8537 0.1269 -0.505
175 -0.8647 -0.0085 -0.5021
176 -0.8544 -0.1439 -0.4993
177 -0.823 -0.276 -0.4964
178 -0.7714 -0.4016 -0.4936
179 -0.7009 -0.5177 -0.4907
180 -0.6131 -0.6214 -0.4878
181 -0.5104 -0.7102 -0.485
182 -0.3951 -0.782 -0.4821
183 -0.2701 -0.8351 -0.4793
184 -0.1384 -0.8683 -0.4764
185 -0.0031 -0.8808 -0.4735
186 0.1324 -0.8723 -0.4707
187 0.2651 -0.8431 -0.4678
188 0.3917 -0.794 -0.4649
189 0.5093 -0.726 -0.4621
190 0.6151 -0.6409 -0.4592
191 0.7068 -0.5406 -0.4564
192 0.782 -0.4275 -0.4535
193 0.8392 -0.3043 -0.4506
194 0.8771 -0.1739 -0.4478
195 0.8947 -0.0392 -0.4449
196 0.8918 0.0966 -0.4421
197 0.8683 0.2304 -0.4392
198 0.825 0.3592 -0.4363
199 0.7627 0.4799 -0.4335
200 0.6831 0.5899 -0.4306
201 0.5877 0.6867 -0.4278
202 0.479 0.7681 -0.4249
203 0.3593 0.8323 -0.422
204 0.2313 0.8779 -0.4192
205 0.098 0.9039 -0.4163
206 -0.0377 0.9097 -0.4134
207 -0.1728 0.8953 -0.4106
208 -0.3043 0.8609 -0.4077
209 -0.4291 0.8074 -0.4049
210 -0.5447 0.736 -0.402
211 -0.6484 0.6483 -0.3991
212 -0.738 0.5462 -0.3963
213 -0.8116 0.4319 -0.3934
214 -0.8675 0.3081 -0.3906
215 -0.9046 0.1774 -0.3877
216 -0.922 0.0427 -0.3848
217 -0.9195 -0.0932 -0.382
218 -0.897 -0.2272 -0.3791
219 -0.8552 -0.3564 -0.3763
220 -0.7949 -0.4782 -0.3734
221 -0.7175 -0.5898 -0.3705
222 -0.6246 -0.689 -0.3677
223 -0.5182 -0.7735 -0.3648
224 -0.4007 -0.8417 -0.3619
225 -0.2745 -0.892 -0.3591
226 -0.1423 -0.9235 -0.3562
227 -0.007 -0.9355 -0.3534
228 0.1287 -0.9277 -0.3505
229 0.2618 -0.9003 -0.3476
230 0.3895 -0.854 -0.3448
231 0.5092 -0.7898 -0.3419
232 0.6184 -0.7089 -0.3391
233 0.7148 -0.6132 -0.3362
234 0.7965 -0.5045 -0.3333
235 0.8616 -0.3853 -0.3305
236 0.9089 -0.2579 -0.3276
237 0.9375 -0.1251 -0.3247
238 0.9467 0.0105 -0.3219
239 0.9364 0.146 -0.319
240 0.9069 0.2786 -0.3162
241 0.8586 0.4057 -0.3133
242 0.7928 0.5245 -0.3104
243 0.7106 0.6328 -0.3076
244 0.6139 0.7282 -0.3047
245 0.5045 0.8089 -0.3019
246 0.3848 0.8732 -0.299
247 0.2572 0.9199 -0.2961
248 0.1242 0.9479 -0.2933
249 -0.0114 0.9568 -0.2904
250 -0.1469 0.9464 -0.2876
251 -0.2795 0.917 -0.2847
252 -0.4067 0.869 -0.2818
253 -0.5258 0.8036 -0.279
254 -0.6344 0.722 -0.2761
255 -0.7305 0.6259 -0.2732
256 -0.8121 0.5171 -0.2704
257 -0.8775 0.398 -0.2675
258 -0.9255 0.2709 -0.2647
259 -0.9552 0.1383 -0.2618
260 -0.9659 0.0028 -0.2589
261 -0.9575 -0.1329 -0.2561
262 -0.9301 -0.266 -0.2532
263 -0.8844 -0.3939 -0.2504
264 -0.8212 -0.5143 -0.2475
265 -0.7417 -0.6245 -0.2446
266 -0.6476 -0.7226 -0.2418
267 -0.5407 -0.8065 -0.2389
268 -0.4232 -0.8748 -0.2361
269 -0.2973 -0.9259 -0.2332
270 -0.1654 -0.9589 -0.2303
271 -0.0303 -0.9733 -0.2275
272 0.1056 -0.9687 -0.2246
273 0.2394 -0.9453 -0.2217
274 0.3687 -0.9034 -0.2189
275 0.491 -0.844 -0.216
276 0.6038 -0.7681 -0.2132
277 0.7049 -0.6774 -0.2103
278 0.7925 -0.5735 -0.2074
279 0.8649 -0.4584 -0.2046
280 0.9206 -0.3344 -0.2017
281 0.9586 -0.2039 -0.1989
282 0.9781 -0.0694 -0.196
283 0.9789 0.0665 -0.1931
284 0.9609 0.2012 -0.1903
285 0.9244 0.3322 -0.1874
286 0.8702 0.4568 -0.1845
287 0.7993 0.5728 -0.1817
288 0.7131 0.6779 -0.1788
289 0.6132 0.7701 -0.176
290 0.5016 0.8476 -0.1731
291 0.3803 0.909 -0.1702
292 0.2518 0.9532 -0.1674
293 0.1184 0.9792 -0.1645
294 -0.0173 0.9867 -0.1617
295 -0.1528 0.9754 -0.1588
296 -0.2854 0.9456 -0.1559
297 -0.4127 0.8979 -0.1531
298 -0.5322 0.8332 -0.1502
299 -0.6417 0.7526 -0.1474
300 -0.7392 0.6579 -0.1445
301 -0.8227 0.5506 -0.1416
302 -0.8907 0.4329 -0.1388
303 -0.942 0.307 -0.1359
304 -0.9755 0.1753 -0.133
305 -0.9907 0.0402 -0.1302
306 -0.9872 -0.0957 -0.1273
307 -0.9652 -0.2298 -0.1245
308 -0.9251 -0.3597 -0.1216
309 -0.8676 -0.4829 -0.1187
310 -0.7938 -0.5971 -0.1159
311 -0.7051 -0.7001 -0.113
312 -0.6031 -0.79 -0.1102
313 -0.4899 -0.8652 -0.1073
314 -0.3674 -0.9242 -0.1044
315 -0.238 -0.9659 -0.1016
316 -0.1042 -0.9896 -0.0987
317 0.0317 -0.9949 -0.0959
318 0.1669 -0.9816 -0.093
319 0.2992 -0.9499 -0.0901
320 0.4258 -0.9006 -0.0873
321 0.5446 -0.8344 -0.0844
322 0.6532 -0.7527 -0.0815
323 0.7498 -0.657 -0.0787
324 0.8324 -0.549 -0.0758
325 0.8995 -0.4308 -0.073
326 0.9499 -0.3046 -0.0701
327 0.9827 -0.1726 -0.0672
328 0.9972 -0.0374 -0.0644
329 0.9932 0.0984 -0.0615
330 0.9708 0.2325 -0.0587
331 0.9304 0.3623 -0.0558
332 0.8727 0.4854 -0.0529
333 0.7988 0.5995 -0.0501
334 0.7101 0.7026 -0.0472
335 0.6082 0.7926 -0.0443
336 0.495 0.8679 -0.0415
337 0.3726 0.9272 -0.0386
338 0.2434 0.9693 -0.0358
339 0.1096 0.9934 -0.0329
340 -0.0263 0.9992 -0.03
341 -0.1616 0.9865 -0.0272
342 -0.294 0.9555 -0.0243
343 -0.4209 0.9068 -0.0215
344 -0.5401 0.8414 -0.0186
345 -0.6493 0.7604 -0.0157
346 -0.7465 0.6653 -0.0129
347 -0.8299 0.5579 -0.01
348 -0.8979 0.4402 -0.0072
349 -0.9493 0.3143 -0.0043
350 -0.9832 0.1826 -0.0014
351 -0.9989 0.0476 0.0014
352 -0.9961 -0.0884 0.0043
353 -0.9749 -0.2227 0.0072
354 -0.9356 -0.3528 0.01
355 -0.8791 -0.4765 0.0129
356 -0.8063 -0.5913 0.0157
357 -0.7186 -0.6952 0.0186
358 -0.6176 -0.7862 0.0215
359 -0.5051 -0.8627 0.0243
360 -0.3834 -0.9232 0.0272
361 -0.2545 -0.9666 0.03
362 -0.121 -0.9921 0.0329
363 0.0148 -0.9993 0.0358
364 0.1503 -0.9879 0.0386
365 0.283 -0.9582 0.0415
366 0.4104 -0.9108 0.0443
367 0.5302 -0.8465 0.0472
368 0.6402 -0.7666 0.0501
369 0.7383 -0.6724 0.0529
370 0.8227 -0.5658 0.0558
371 0.8918 -0.4487 0.0587
372 0.9443 -0.3232 0.0615
373 0.9793 -0.1918 0.0644
374 0.9961 -0.0569 0.0672
375 0.9944 0.079 0.0701
376 0.9742 0.2135 0.073
377 0.9359 0.344 0.0758
378 0.8802 0.468 0.0787
379 0.8081 0.5833 0.0815
380 0.721 0.6878 0.0844
381 0.6205 0.7793 0.0873
382 0.5085 0.8564 0.0901
383 0.3869 0.9174 0.093
384 0.2582 0.9613 0.0959
385 0.1248 0.9873 0.0987
386 -0.011 0.9948 0.1016
387 -0.1465 0.9837 0.1044
388 -0.2793 0.9542 0.1073
389 -0.4068 0.9069 0.1102
390 -0.5266 0.8426 0.113
391 -0.6365 0.7625 0.1159
392 -0.7345 0.6682 0.1187
393 -0.8186 0.5614 0.1216
394 -0.8873 0.444 0.1245
395 -0.9394 0.3184 0.1273
396 -0.9737 0.1868 0.1302
397 -0.9898 0.0518 0.133
398 -0.9871 -0.0842 0.1359
399 -0.9659 -0.2185 0.1388
400 -0.9265 -0.3487 0.1416
401 -0.8696 -0.4722 0.1445
402 -0.7963 -0.5867 0.1474
403 -0.7079 -0.6901 0.1502
404 -0.6063 -0.7804 0.1531
405 -0.4931 -0.8559 0.1559
406 -0.3707 -0.9151 0.1588
407 -0.2413 -0.9569 0.1617
408 -0.1074 -0.9805 0.1645
409 0.0285 -0.9855 0.1674
410 0.1638 -0.9717 0.1702
411 0.2959 -0.9394 0.1731
412 0.4223 -0.8892 0.176
413 0.5406 -0.8221 0.1788
414 0.6485 -0.7392 0.1817
415 0.7439 -0.6423 0.1845
416 0.825 -0.5332 0.1874
417 0.8902 -0.4139 0.1903
418 0.9384 -0.2867 0.1931
419 0.9684 -0.154 0.196
420 0.9799 -0.0185 0.1989
421 0.9724 0.1173 0.2017
422 0.9462 0.2507 0.2046
423 0.9017 0.3793 0.2074
424 0.8399 0.5004 0.2103
425 0.7618 0.6117 0.2132
426 0.669 0.7112 0.216
427 0.5633 0.7967 0.2189
428 0.4467 0.8668 0.2217
429 0.3215 0.9199 0.2246
430 0.1901 0.955 0.2275
431 0.0551 0.9716 0.2303
432 -0.0809 0.9691 0.2332
433 -0.2152 0.9476 0.2361
434 -0.3452 0.9076 0.2389
435 -0.4683 0.8499 0.2418
436 -0.5821 0.7754 0.2446
437 -0.6844 0.6858 0.2475
438 -0.7732 0.5827 0.2504
439 -0.8466 0.4682 0.2532
440 -0.9032 0.3445 0.2561
441 -0.9419 0.2142 0.2589
442 -0.9618 0.0796 0.2618
443 -0.9627 -0.0564 0.2647
444 -0.9444 -0.1912 0.2675
445 -0.9073 -0.322 0.2704
446 -0.8521 -0.4463 0.2732
447 -0.78 -0.5616 0.2761
448 -0.6922 -0.6656 0.279
449 -0.5907 -0.7561 0.2818
450 -0.4774 -0.8313 0.2847
451 -0.3545 -0.8897 0.2876
452 -0.2247 -0.9302 0.2904
453 -0.0904 -0.9517 0.2933
454 0.0456 -0.9541 0.2961
455 0.1806 -0.937 0.299
456 0.3117 -0.901 0.3019
457 0.4364 -0.8466 0.3047
458 0.5521 -0.775 0.3076
459 0.6563 -0.6877 0.3104
460 0.747 -0.5863 0.3133
461 0.8224 -0.473 0.3162
462 0.8807 -0.3502 0.319
463 0.9208 -0.2202 0.3219
464 0.9419 -0.0858 0.3247
465 0.9435 0.0502 0.3276
466 0.9255 0.185 0.3305
467 0.8883 0.3159 0.3333
468 0.8327 0.44 0.3362
469 0.7597 0.5548 0.3391
470 0.671 0.6579 0.3419
471 0.5683 0.7471 0.3448
472 0.4538 0.8205 0.3476
473 0.3298 0.8766 0.3505
474 0.1991 0.9141 0.3534
475 0.0642 0.9322 0.3562
476 -0.0718 0.9305 0.3591
477 -0.2061 0.9091 0.3619
478 -0.3359 0.8684 0.3648
479 -0.4584 0.8092 0.3677
480 -0.5709 0.7327 0.3705
481 -0.671 0.6406 0.3734
482 -0.7566 0.5348 0.3763
483 -0.8257 0.4177 0.3791
484 -0.8769 0.2917 0.382
485 -0.9091 0.1595 0.3848
486 -0.9215 0.024 0.3877
487 -0.9138 -0.1118 0.3906
488 -0.8861 -0.245 0.3934
489 -0.8391 -0.3727 0.3963
490 -0.7737 -0.492 0.3991
491 -0.6914 -0.6003 0.402
492 -0.594 -0.6952 0.4049
493 -0.4835 -0.7746 0.4077
494 -0.3625 -0.8367 0.4106
495 -0.2335 -0.8801 0.4134
496 -0.0995 -0.9038 0.4163
497 0.0365 -0.9072 0.4192
498 0.1714 -0.8902 0.422
499 0.3024 -0.8533 0.4249
500 0.4263 -0.7971 0.4278
501 0.5403 -0.7229 0.4306
502 0.6419 -0.6325 0.4335
503 0.7288 -0.5277 0.4363
504 0.7988 -0.4111 0.4392
505 0.8504 -0.2852 0.4421
506 0.8824 -0.153 0.4449
507 0.894 -0.0174 0.4478
508 0.8848 0.1183 0.4506
509 0.8551 0.2511 0.4535
510 0.8056 0.3778 0.4564
511 0.7373 0.4955 0.4592
512 0.6518 0.6013 0.4621
513 0.5511 0.6929 0.4649
514 0.4376 0.7679 0.4678
515 0.3139 0.8246 0.4707
516 0.183 0.8616 0.4735
517 0.0479 0.8779 0.4764
518 -0.088 0.8732 0.4793
519 -0.2217 0.8476 0.4821
520 -0.3497 0.8016 0.485
521 -0.469 0.7362 0.4878
522 -0.5768 0.6531 0.4907
523 -0.6702 0.5542 0.4936
524 -0.7471 0.442 0.4964
525 -0.8055 0.3191 0.4993
526 -0.844 0.1885 0.5021
527 -0.8614 0.0536 0.505
528 -0.8575 -0.0824 0.5079
529 -0.8321 -0.2161 0.5107
530 -0.786 -0.3441 0.5136
531 -0.7202 -0.4632 0.5165
532 -0.6364 -0.5704 0.5193
533 -0.5366 -0.6629 0.5222
534 -0.4233 -0.7383 0.525
535 -0.2995 -0.7947 0.5279
536 -0.1683 -0.8307 0.5308
537 -0.0329 -0.8451 0.5336
538 0.1029 -0.8376 0.5365
539 0.2358 -0.8084 0.5393
540 0.3623 -0.7581 0.5422
541 0.479 -0.6881 0.5451
542 0.5828 -0.6001 0.5479
543 0.6709 -0.4965 0.5508
544 0.7411 -0.3798 0.5536
545 0.7913 -0.2533 0.5565
546 0.8201 -0.1204 0.5594
547 0.8268 0.0156 0.5622
548 0.8111 0.1507 0.5651
549 0.7734 0.2815 0.568
550 0.7147 0.4043 0.5708
551 0.6364 0.5156 0.5737
552 0.5408 0.6125 0.5765
553 0.4305 0.6921 0.5794
554 0.3084 0.7522 0.5823
555 0.178 0.7912 0.5851
556 0.0429 0.8077 0.588
557 -0.0931 0.8014 0.5908
558 -0.226 0.7723 0.5937
559 -0.3522 0.7212 0.5966
560 -0.4678 0.6495 0.5994
561 -0.5697 0.5592 0.6023
562 -0.6547 0.4529 0.6052
563 -0.7204 0.3337 0.608
564 -0.7647 0.205 0.6109
565 -0.7863 0.0706 0.6137
566 -0.7846 -0.0654 0.6166
567 -0.7593 -0.1992 0.6195
568 -0.7114 -0.3266 0.6223
569 -0.6421 -0.4437 0.6252
570 -0.5535 -0.547 0.628
571 -0.4482 -0.6333 0.6309
572 -0.3294 -0.6999 0.6338
573 -0.2009 -0.7446 0.6366
574 -0.0664 -0.7659 0.6395
575 0.0697 -0.7632 0.6423
576 0.2031 -0.7365 0.6452
577 0.3297 -0.6865 0.6481
578 0.4454 -0.6147 0.6509
579 0.5464 -0.5235 0.6538
580 0.6294 -0.4155 0.6567
581 0.6916 -0.2945 0.6595
582 0.731 -0.1641 0.6624
583 0.7461 -0.0289 0.6652
584 0.7364 0.1069 0.6681
585 0.702 0.2387 0.671
586 0.6442 0.3619 0.6738
587 0.5647 0.4724 0.6767
588 0.4662 0.5664 0.6795
589 0.3521 0.6406 0.6824
590 0.2261 0.6923 0.6853
591 0.0927 0.7196 0.6881
592 -0.0434 0.7216 0.691
593 -0.1775 0.6979 0.6938
594 -0.3047 0.6494 0.6967
595 -0.4205 0.5778 0.6996
596 -0.5205 0.4854 0.7024
597 -0.6012 0.3757 0.7053
598 -0.6593 0.2526 0.7082
599 -0.6928 0.1206 0.711
600 -0.7001 -0.0154 0.7139
601 -0.681 -0.1502 0.7167
602 -0.636 -0.2787 0.7196
603 -0.5668 -0.396 0.7225
604 -0.4759 -0.4974 0.7253
605 -0.3668 -0.5789 0.7282
606 -0.2438 -0.6373 0.731
607 -0.1116 -0.67 0.7339
608 0.0245 -0.6757 0.7368
609 0.1589 -0.654 0.7396
610 0.2862 -0.6056 0.7425
611 0.4011 -0.5325 0.7454
612 0.4987 -0.4375 0.7482
613 0.5749 -0.3246 0.7511
614 0.6263 -0.1985 0.7539
615 0.6505 -0.0644 0.7568
616 0.6464 0.0717 0.7597
617 0.614 0.204 0.7625
618 0.5546 0.3266 0.7654
619 0.4707 0.4339 0.7682
620 0.366 0.521 0.7711
621 0.2451 0.5839 0.774
622 0.1136 0.6194 0.7768
623 -0.0225 0.6258 0.7797
624 -0.1567 0.6025 0.7825
625 -0.2827 0.5506 0.7854
626 -0.3943 0.4724 0.7883
627 -0.4859 0.3716 0.7911
628 -0.5528 0.2529 0.794
629 -0.5917 0.1223 0.7969
630 -0.6002 -0.0137 0.7997
631 -0.5779 -0.1481 0.8026
632 -0.5256 -0.2739 0.8054
633 -0.4459 -0.3845 0.8083
634 -0.3429 -0.4737 0.8112
635 -0.2221 -0.5367 0.814
636 -0.0899 -0.5698 0.8169
637 0.0464 -0.5708 0.8197
638 0.1791 -0.5397 0.8226
639 0.3005 -0.4778 0.8255
640 0.4036 -0.3886 0.8283
641 0.482 -0.2771 0.8312
642 0.531 -0.1498 0.834
643 0.5471 -0.0145 0.8369
644 0.5294 0.1207 0.8398
645 0.4784 0.2472 0.8426
646 0.3973 0.3568 0.8455
647 0.2911 0.4422 0.8484
648 0.1665 0.4977 0.8512
649 0.0319 0.5192 0.8541
650 -0.1038 0.5049 0.8569
651 -0.2309 0.4555 0.8598
652 -0.3404 0.3741 0.8627
653 -0.4241 0.2664 0.8655
654 -0.4757 0.1402 0.8684
655 -0.4908 0.0046 0.8712
656 -0.468 -0.1299 0.8741
657 -0.4087 -0.2528 0.877
658 -0.3172 -0.354 0.8798
659 -0.2006 -0.425 0.8827
660 -0.0686 -0.4595 0.8856
661 0.0678 -0.454 0.8884
662 0.1966 -0.4086 0.8913
663 0.306 -0.327 0.8941
664 0.3856 -0.2161 0.897
665 0.4276 -0.0862 0.8999
666 0.4273 0.0504 0.9027
667 0.3841 0.18 0.9056
668 0.3019 0.2891 0.9084
669 0.1889 0.3659 0.9113
670 0.0569 0.4013 0.9142
671 -0.0793 0.3909 0.917
672 -0.204 0.3349 0.9199
673 -0.302 0.2395 0.9227
674 -0.3603 0.1158 0.9256
675 -0.3708 -0.0205 0.9285
676 -0.3312 -0.1515 0.9313
677 -0.2459 -0.2585 0.9342
678 -0.1265 -0.3255 0.9371
679 0.0095 -0.3413 0.9399
680 0.1408 -0.3023 0.9428
681 0.2452 -0.2136 0.9456
682 0.3038 -0.0897 0.9485
683 0.3044 0.0474 0.9514
684 0.2452 0.1712 0.9542
685 0.1369 0.2555 0.9571
686 0.0017 0.2802 0.9599
687 -0.1289 0.2375 0.9628
688 -0.2215 0.1357 0.9657
689 -0.2489 0.0007 0.9685
690 -0.2 -0.1281 0.9714
691 -0.0873 -0.2079 0.9742
692 0.051 -0.2065 0.9771
693 0.1591 -0.1198 0.98
694 0.1837 0.017 0.9828
695 0.1048 0.132 0.9857
696 -0.0345 0.1469 0.9886
697 -0.1249 0.0386 0.9914
698 -0.06 -0.0884 0.9943
699 0.0705 -0.0271 0.9971
700 0 0 1