diff --git a/trunk/PQP/Makefile b/trunk/PQP/Makefile
deleted file mode 100644
index 2790aafa650c30eda371dbdbdaed8d2906b64d4f..0000000000000000000000000000000000000000
--- a/trunk/PQP/Makefile
+++ /dev/null
@@ -1,36 +0,0 @@
-all: installed
-
-#
-# Download, extract and compile from a released tarball:
-#
-TARBALL = build/pqp-1.3.tar.gz
-TARBALL_URL = http://gamma.cs.unc.edu/software/downloads/SSV/pqp-1.3.tar.gz
-TARBALL_PATCH = pqp.diff
-INITIAL_DIR = build/pqp-1.3
-SOURCE_DIR = build/pqp-tar
-include $(shell rospack find mk)/download_unpack_build.mk
-
-INSTALL_DIR = PQP
-CMAKE = cmake 
-CMAKE_ARGS = -D CMAKE_BUILD_TYPE="Release" -D CMAKE_INSTALL_PREFIX=`rospack find PQP`/$(INSTALL_DIR) 
-MAKE = make
-
-installed: wiped $(SOURCE_DIR)/unpacked
-	cd $(SOURCE_DIR)/PQP_v1.3 && make $(ROS_PARALLEL_JOBS)
-	mkdir -p $(INSTALL_DIR)/lib
-	mkdir -p $(INSTALL_DIR)/include
-	mkdir -p $(INSTALL_DIR)/include/PQP
-	cp -r $(SOURCE_DIR)/PQP_v1.3/include/*.h $(INSTALL_DIR)/include
-	cp -r $(SOURCE_DIR)/PQP_v1.3/lib/*.a $(INSTALL_DIR)/lib
-	touch installed
-
-clean:
-	rm -rf build
-	rm -rf $(INSTALL_DIR) installed
-
-wiped: Makefile
-	make wipe
-	touch wiped
-
-wipe: clean
-	rm -rf build patched
diff --git a/trunk/PQP/PQP/include/BV.h b/trunk/PQP/PQP/include/BV.h
deleted file mode 100644
index cfe42c73785d1ebad055dfca953870eeb32d5a19..0000000000000000000000000000000000000000
--- a/trunk/PQP/PQP/include/BV.h
+++ /dev/null
@@ -1,94 +0,0 @@
-/*************************************************************************\
-
-  Copyright 1999 The University of North Carolina at Chapel Hill.
-  All Rights Reserved.
-
-  Permission to use, copy, modify and distribute this software and its
-  documentation for educational, research and non-profit purposes, without
-  fee, and without a written agreement is hereby granted, provided that the
-  above copyright notice and the following three paragraphs appear in all
-  copies.
-
-  IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE
-  LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
-  CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE
-  USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY
-  OF NORTH CAROLINA HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
-  DAMAGES.
-
-  THE UNIVERSITY OF NORTH CAROLINA SPECIFICALLY DISCLAIM ANY
-  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE
-  PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
-  NORTH CAROLINA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
-  UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-
-  The authors may be contacted via:
-
-  US Mail:             E. Larsen
-                       Department of Computer Science
-                       Sitterson Hall, CB #3175
-                       University of N. Carolina
-                       Chapel Hill, NC 27599-3175
-
-  Phone:               (919)962-1749
-
-  EMail:               geom@cs.unc.edu
-
-
-\**************************************************************************/
-
-#ifndef PQP_BV_H
-#define PQP_BV_H
-
-#include <math.h>
-#include "Tri.h"
-#include "PQP_Compile.h"
-
-struct BV
-{
-  PQP_REAL R[3][3];     // orientation of RSS & OBB
-
-#if PQP_BV_TYPE & RSS_TYPE
-  PQP_REAL Tr[3];       // position of rectangle
-  PQP_REAL l[2];        // side lengths of rectangle
-  PQP_REAL r;           // radius of sphere summed with rectangle to form RSS
-#endif
-
-#if PQP_BV_TYPE & OBB_TYPE
-  PQP_REAL To[3];       // position of obb
-  PQP_REAL d[3];        // (half) dimensions of obb
-#endif
-
-  int first_child;      // positive value is index of first_child bv
-                        // negative value is -(index + 1) of triangle
-
-  BV();
-  ~BV();
-  int      Leaf()    { return first_child < 0; }
-  PQP_REAL GetSize(); 
-  void     FitToTris(PQP_REAL O[3][3], Tri *tris, int num_tris);
-};
-
-inline
-PQP_REAL 
-BV::GetSize()
-{
-#if PQP_BV_TYPE & RSS_TYPE
-  return (sqrt(l[0]*l[0] + l[1]*l[1]) + 2*r);
-#else
-  return (d[0]*d[0] + d[1]*d[1] + d[2]*d[2]);
-#endif
-}
-
-int
-BV_Overlap(PQP_REAL R[3][3], PQP_REAL T[3], BV *b1, BV *b2);
-
-#if PQP_BV_TYPE & RSS_TYPE
-PQP_REAL
-BV_Distance(PQP_REAL R[3][3], PQP_REAL T[3], BV *b1, BV *b2);
-#endif
-
-#endif
-
-
diff --git a/trunk/PQP/PQP/include/PQP.h b/trunk/PQP/PQP/include/PQP.h
deleted file mode 100644
index f6f3e539581c4e118d2afecace8e8a35d10c3db2..0000000000000000000000000000000000000000
--- a/trunk/PQP/PQP/include/PQP.h
+++ /dev/null
@@ -1,338 +0,0 @@
-/*************************************************************************\
-
-  Copyright 1999 The University of North Carolina at Chapel Hill.
-  All Rights Reserved.
-
-  Permission to use, copy, modify and distribute this software and its
-  documentation for educational, research and non-profit purposes, without
-  fee, and without a written agreement is hereby granted, provided that the
-  above copyright notice and the following three paragraphs appear in all
-  copies.
-
-  IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE
-  LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
-  CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE
-  USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY
-  OF NORTH CAROLINA HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
-  DAMAGES.
-
-  THE UNIVERSITY OF NORTH CAROLINA SPECIFICALLY DISCLAIM ANY
-  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE
-  PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
-  NORTH CAROLINA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
-  UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-
-  The authors may be contacted via:
-
-  US Mail:             S. Gottschalk, E. Larsen
-                       Department of Computer Science
-                       Sitterson Hall, CB #3175
-                       University of N. Carolina
-                       Chapel Hill, NC 27599-3175
-
-  Phone:               (919)962-1749
-
-  EMail:               geom@cs.unc.edu
-
-
-\**************************************************************************/
-
-#ifndef PQP_H
-#define PQP_H
-
-#include "PQP_Compile.h"   
-#include "PQP_Internal.h"                             
-                        
-//----------------------------------------------------------------------------
-//
-//  PQP API Return Values
-//
-//----------------------------------------------------------------------------
-
-const int PQP_OK = 0; 
-  // Used by all API routines upon successful completion except
-  // constructors and destructors
-
-const int PQP_ERR_MODEL_OUT_OF_MEMORY = -1; 
-  // Returned when an API function cannot obtain enough memory to
-  // store or process a PQP_Model object.
-
-const int PQP_ERR_OUT_OF_MEMORY = -2;
-  // Returned when a PQP query cannot allocate enough storage to
-  // compute or hold query information.  In this case, the returned
-  // data should not be trusted.
-
-const int PQP_ERR_UNPROCESSED_MODEL = -3;
-  // Returned when an unprocessed model is passed to a function which
-  // expects only processed models, such as PQP_Collide() or
-  // PQP_Distance().
-
-const int PQP_ERR_BUILD_OUT_OF_SEQUENCE = -4;
-  // Returned when: 
-  //       1. AddTri() is called before BeginModel().  
-  //       2. BeginModel() is called immediately after AddTri().  
-  // This error code is something like a warning: the invoked
-  // operation takes place anyway, and PQP does what makes "most
-  // sense", but the returned error code may tip off the client that
-  // something out of the ordinary is happenning.
-
-const int PQP_ERR_BUILD_EMPTY_MODEL = -5; 
-  // Returned when EndModel() is called on a model to which no
-  // triangles have been added.  This is similar in spirit to the
-  // OUT_OF_SEQUENCE return code, except that the requested operation
-  // has FAILED -- the model remains "unprocessed", and the client may
-  // NOT use it in queries.
-
-//----------------------------------------------------------------------------
-//
-//  PQP_REAL 
-//
-//  The floating point type used throughout the package. The type is defined 
-//  in PQP_Compile.h, and by default is "double"
-//
-//----------------------------------------------------------------------------
-
-//----------------------------------------------------------------------------
-//
-//  PQP_Model
-//
-//  A PQP_Model stores geometry to be used in a proximity query.
-//  The geometry is loaded with a call to BeginModel(), at least one call to 
-//  AddTri(), and then a call to EndModel().
-//
-//  // create a two triangle model, m
-//
-//  PQP_Model m;
-//
-//  PQP_REAL p1[3],p2[3],p3[3];  // 3 points will make triangle p
-//  PQP_REAL q1[3],q2[3],q3[3];  // another 3 points for triangle q
-//
-//  // some initialization of these vertices not shown
-//
-//  m.BeginModel();              // begin the model
-//  m.AddTri(p1,p2,p3,0);        // add triangle p
-//  m.AddTri(q1,q2,q3,1);        // add triangle q
-//  m.EndModel();                // end (build) the model
-//
-//  The last parameter of AddTri() is the number to be associated with the 
-//  triangle. These numbers are used to identify the triangles that overlap.
-// 
-//  AddTri() copies into the PQP_Model the data pointed to by the three vertex 
-//  pointers, so that it is safe to delete vertex data after you have 
-//  passed it to AddTri().
-//
-//----------------------------------------------------------------------------
-//
-//  class PQP_Model  - declaration contained in PQP_Internal.h
-//  {
-//
-//  public:
-//    PQP_Model();
-//    ~PQP_Model();
-//
-//    int BeginModel(int num_tris = 8); // preallocate for num_tris triangles;
-//                                      // the parameter is optional, since
-//                                      // arrays are reallocated as needed
-//
-//    int AddTri(const PQP_REAL *p1, const PQP_REAL *p2, const PQP_REAL *p3, 
-//               int id);
-//
-//    int EndModel();
-//    int MemUsage(int msg);  // returns model mem usage in bytes
-//                            // prints message to stderr if msg == TRUE
-//  };
-
-//----------------------------------------------------------------------------
-//
-//  PQP_CollideResult 
-//
-//  This saves and reports results from a collision query.  
-//
-//----------------------------------------------------------------------------
-//
-//  struct PQP_CollideResult - declaration contained in PQP_Internal.h
-//  {
-//    // statistics
-//
-//    int NumBVTests();
-//    int NumTriTests();
-//    PQP_REAL QueryTimeSecs();
-//
-//    // free the list of contact pairs; ordinarily this list is reused
-//    // for each query, and only deleted in the destructor.
-//
-//    void FreePairsList(); 
-//
-//    // query results
-//
-//    int Colliding();
-//    int NumPairs();
-//    int Id1(int k);
-//    int Id2(int k);
-//  };
-
-//----------------------------------------------------------------------------
-//
-//  PQP_Collide() - detects collision between two PQP_Models
-//
-//
-//  Declare a PQP_CollideResult struct and pass its pointer to collect 
-//  collision data.
-//
-//  [R1, T1] is the placement of model 1 in the world &
-//  [R2, T2] is the placement of model 2 in the world.
-//  The columns of each 3x3 matrix are the basis vectors for the model
-//  in world coordinates, and the matrices are in row-major order:
-//  R(row r, col c) = R[r][c].
-//
-//  If PQP_ALL_CONTACTS is the flag value, after calling PQP_Collide(),
-//  the PQP_CollideResult object will contain an array with all
-//  colliding triangle pairs. Suppose CR is a pointer to the
-//  PQP_CollideResult object.  The number of pairs is gotten from
-//  CR->NumPairs(), and the ids of the 15'th pair of colliding
-//  triangles is gotten from CR->Id1(14) and CR->Id2(14).
-//
-//  If PQP_FIRST_CONTACT is the flag value, the PQP_CollideResult array
-//  will only get the first colliding triangle pair found.  Thus
-//  CR->NumPairs() will be at most 1, and if 1, CR->Id1(0) and
-//  CR->Id2(0) give the ids of the colliding triangle pair.
-//
-//----------------------------------------------------------------------------
-
-const int PQP_ALL_CONTACTS = 1;  // find all pairwise intersecting triangles
-const int PQP_FIRST_CONTACT = 2; // report first intersecting tri pair found
-
-int 
-PQP_Collide(PQP_CollideResult *result,
-            PQP_REAL R1[3][3], PQP_REAL T1[3], PQP_Model *o1,
-            PQP_REAL R2[3][3], PQP_REAL T2[3], PQP_Model *o2,
-            int flag = PQP_ALL_CONTACTS);
-
-
-#if PQP_BV_TYPE & RSS_TYPE  // this is true by default,
-                            // and explained in PQP_Compile.h
-
-//----------------------------------------------------------------------------
-//
-//  PQP_DistanceResult
-//
-//  This saves and reports results from a distance query.  
-//
-//----------------------------------------------------------------------------
-//
-//  struct PQP_DistanceResult - declaration contained in PQP_Internal.h
-//  {
-//    // statistics
-//  
-//    int NumBVTests();
-//    int NumTriTests();
-//    PQP_REAL QueryTimeSecs();
-//  
-//    // The following distance and points established the minimum distance
-//    // for the models, within the relative and absolute error bounds 
-//    // specified.
-//
-//    PQP_REAL Distance();
-//    const PQP_REAL *P1();  // pointers to three PQP_REALs
-//    const PQP_REAL *P2();  
-//  };
-
-//----------------------------------------------------------------------------
-//
-//  PQP_Distance() - computes the distance between two PQP_Models
-//
-//
-//  Declare a PQP_DistanceResult struct and pass its pointer to collect
-//  distance information.
-//
-//  "rel_err" is the relative error margin from actual distance.
-//  "abs_err" is the absolute error margin from actual distance.  The
-//  smaller of the two will be satisfied, so set one large to nullify
-//  its effect.
-//
-//  "qsize" is an optional parameter controlling the size of a priority
-//  queue used to direct the search for closest points.  A larger queue
-//  can help the algorithm discover the minimum with fewer steps, but
-//  will increase the cost of each step. It is not beneficial to increase
-//  qsize if the application has frame-to-frame coherence, i.e., the
-//  pair of models take small steps between each call, since another
-//  speedup trick already accelerates this situation with no overhead.
-//
-//  However, a queue size of 100 to 200 has been seen to save time in a
-//  planning application with "non-coherent" placements of models.
-//
-//----------------------------------------------------------------------------
-
-int 
-PQP_Distance(PQP_DistanceResult *result, 
-             PQP_REAL R1[3][3], PQP_REAL T1[3], PQP_Model *o1,
-             PQP_REAL R2[3][3], PQP_REAL T2[3], PQP_Model *o2,
-             PQP_REAL rel_err, PQP_REAL abs_err,
-             int qsize = 2);
-
-//----------------------------------------------------------------------------
-//
-//  PQP_ToleranceResult
-//
-//  This saves and reports results from a tolerance query.  
-//
-//----------------------------------------------------------------------------
-//
-//  struct PQP_ToleranceResult - declaration contained in PQP_Internal.h
-//  {
-//    // statistics
-//  
-//    int NumBVTests(); 
-//    int NumTriTests();
-//    PQP_REAL QueryTimeSecs();
-//  
-//    // If the models are closer than ( <= ) tolerance, these points 
-//    // and distance were what established this.  Otherwise, 
-//    // distance and point values are not meaningful.
-//  
-//    PQP_REAL Distance();
-//    const PQP_REAL *P1();
-//    const PQP_REAL *P2();
-//  
-//    // boolean says whether models are closer than tolerance distance
-//  
-//    int CloserThanTolerance();
-//  };
-
-//----------------------------------------------------------------------------
-//
-// PQP_Tolerance() - checks if distance between PQP_Models is <= tolerance
-//
-//
-// Declare a PQP_ToleranceResult and pass its pointer to collect
-// tolerance information.
-//
-// The algorithm returns whether the true distance is <= or >
-// "tolerance".  This routine does not simply compute true distance
-// and compare to the tolerance - models can often be shown closer or
-// farther than the tolerance more trivially.  In most cases this
-// query should run faster than a distance query would on the same
-// models and configurations.
-// 
-// "qsize" again controls the size of a priority queue used for
-// searching.  Not setting qsize is the current recommendation, since
-// increasing it has only slowed down our applications.
-//
-//----------------------------------------------------------------------------
-
-int
-PQP_Tolerance(PQP_ToleranceResult *res, 
-              PQP_REAL R1[3][3], PQP_REAL T1[3], PQP_Model *o1,
-              PQP_REAL R2[3][3], PQP_REAL T2[3], PQP_Model *o2,
-              PQP_REAL tolerance,
-              int qsize = 2);
-
-#endif 
-#endif
-
-
-
-
-
-
diff --git a/trunk/PQP/PQP/include/PQP_Compile.h b/trunk/PQP/PQP/include/PQP_Compile.h
deleted file mode 100644
index f76c981370ecd5833f257fa7e14564d5704ce2e6..0000000000000000000000000000000000000000
--- a/trunk/PQP/PQP/include/PQP_Compile.h
+++ /dev/null
@@ -1,101 +0,0 @@
-/*************************************************************************\
-
-  Copyright 1999 The University of North Carolina at Chapel Hill.
-  All Rights Reserved.
-
-  Permission to use, copy, modify and distribute this software and its
-  documentation for educational, research and non-profit purposes, without
-  fee, and without a written agreement is hereby granted, provided that the
-  above copyright notice and the following three paragraphs appear in all
-  copies.
-
-  IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE
-  LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
-  CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE
-  USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY
-  OF NORTH CAROLINA HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
-  DAMAGES.
-
-  THE UNIVERSITY OF NORTH CAROLINA SPECIFICALLY DISCLAIM ANY
-  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE
-  PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
-  NORTH CAROLINA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
-  UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-
-  The authors may be contacted via:
-
-  US Mail:             S. Gottschalk, E. Larsen
-                       Department of Computer Science
-                       Sitterson Hall, CB #3175
-                       University of N. Carolina
-                       Chapel Hill, NC 27599-3175
-
-  Phone:               (919)962-1749
-
-  EMail:               geom@cs.unc.edu
-
-
-\**************************************************************************/
-
-#ifndef PQP_COMPILE_H
-#define PQP_COMPILE_H
-
-// prevents compiler warnings when PQP_REAL is float
-
-#include <math.h>
-inline float sqrt(float x) { return (float)sqrt((double)x); }
-inline float cos(float x) { return (float)cos((double)x); }
-inline float sin(float x) { return (float)sin((double)x); }
-inline float fabs(float x) { return (float)fabs((double)x); }
-
-//-------------------------------------------------------------------------
-//
-// PQP_REAL
-//
-// This is the floating point type used throughout PQP.  doubles are
-// recommended, both for their precision and because the software has
-// mainly been tested using them.  However, floats appear to be faster 
-// (by 60% on some machines).
-//
-//-------------------------------------------------------------------------
-
-typedef double PQP_REAL;
-
-//-------------------------------------------------------------------------
-//
-// PQP_BV_TYPE
-//
-// PQP introduces a bounding volume (BV) type known as the "rectangle
-// swept sphere" (RSS) - the volume created by sweeping a sphere so
-// that its center visits every point on a rectangle; it looks
-// something like a rounded box.
-//
-// In our experiments, the RSS type is comparable to the oriented 
-// bounding box (OBB) in terms of the number of BV-pair and triangle-pair 
-// tests incurred.  However, with our present implementations, overlap 
-// tests are cheaper for OBBs, while distance tests are cheaper for the 
-// RSS type (we used a public gjk implementation for the OBB distance test).
-//
-// Consequently, PQP is configured to use the RSS type in distance and 
-// tolerance queries (which use BV distance tests) and to use OBBs for
-// collision queries (which use BV overlap tests). Using both requires six
-// more PQP_REALs per BV node than using just one type. 
-//
-// To save space, you can configure PQP to use only one type, however, 
-// with RSS alone, collision queries will typically be slower.  With OBB's 
-// alone, distance and tolerance queries are currently not supported, since 
-// we have not developed our own OBB distance test.  The three options are:
-//
-// #define PQP_BV_TYPE  RSS_TYPE           
-// #define PQP_BV_TYPE  OBB_TYPE           
-// #define PQP_BV_TYPE  RSS_TYPE | OBB_TYPE
-//
-//-------------------------------------------------------------------------
-
-#define RSS_TYPE     1
-#define OBB_TYPE     2
-
-#define PQP_BV_TYPE  RSS_TYPE | OBB_TYPE
-
-#endif
diff --git a/trunk/PQP/PQP/include/PQP_Internal.h b/trunk/PQP/PQP/include/PQP_Internal.h
deleted file mode 100644
index 90cedcfa2d7f3ec96c3d378774c48f9e9a5a6d29..0000000000000000000000000000000000000000
--- a/trunk/PQP/PQP/include/PQP_Internal.h
+++ /dev/null
@@ -1,203 +0,0 @@
-/*************************************************************************\
-
-  Copyright 1999 The University of North Carolina at Chapel Hill.
-  All Rights Reserved.
-
-  Permission to use, copy, modify and distribute this software and its
-  documentation for educational, research and non-profit purposes, without
-  fee, and without a written agreement is hereby granted, provided that the
-  above copyright notice and the following three paragraphs appear in all
-  copies.
-
-  IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE
-  LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
-  CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE
-  USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY
-  OF NORTH CAROLINA HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
-  DAMAGES.
-
-  THE UNIVERSITY OF NORTH CAROLINA SPECIFICALLY DISCLAIM ANY
-  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE
-  PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
-  NORTH CAROLINA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
-  UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-
-  The authors may be contacted via:
-
-  US Mail:             S. Gottschalk, E. Larsen
-                       Department of Computer Science
-                       Sitterson Hall, CB #3175
-                       University of N. Carolina
-                       Chapel Hill, NC 27599-3175
-
-  Phone:               (919)962-1749
-
-  EMail:               geom@cs.unc.edu
-
-
-\**************************************************************************/
-
-#include "Tri.h"
-#include "BV.h"
-
-class PQP_Model
-{
-
-public:
-
-  int build_state;
-
-  Tri *tris;  
-  int num_tris;
-  int num_tris_alloced;
-
-  BV *b;
-  int num_bvs;
-  int num_bvs_alloced;
-
-  Tri *last_tri;       // closest tri on this model in last distance test
-  
-  BV *child(int n) { return &b[n]; }
-
-  PQP_Model();
-  ~PQP_Model();
-
-  int BeginModel(int num_tris = 8); // preallocate for num_tris triangles;
-                                    // the parameter is optional, since
-                                    // arrays are reallocated as needed
-  int AddTri(const PQP_REAL *p1, const PQP_REAL *p2, const PQP_REAL *p3, 
-             int id);
-  int EndModel();
-  int MemUsage(int msg);  // returns model mem usage.  
-                          // prints message to stderr if msg == TRUE
-};
-
-struct CollisionPair
-{
-  int id1;
-  int id2;
-};
-
-struct PQP_CollideResult  
-{
-  // stats
-
-  int num_bv_tests;
-  int num_tri_tests;
-  double query_time_secs;
-
-  // xform from model 1 to model 2
-
-  PQP_REAL R[3][3];
-  PQP_REAL T[3];
-
-  int num_pairs_alloced;
-  int num_pairs;
-  CollisionPair *pairs;
-
-  void SizeTo(int n);    
-  void Add(int i1, int i2); 
-
-  PQP_CollideResult();
-  ~PQP_CollideResult();
-
-  // statistics
-
-  int NumBVTests() { return num_bv_tests; }
-  int NumTriTests() { return num_tri_tests; }
-  double QueryTimeSecs() { return query_time_secs; }
-
-  // free the list of contact pairs; ordinarily this list is reused
-  // for each query, and only deleted in the destructor.
-
-  void FreePairsList(); 
-
-  // query results
-
-  int Colliding() { return (num_pairs > 0); }
-  int NumPairs() { return num_pairs; }
-  int Id1(int k) { return pairs[k].id1; }
-  int Id2(int k) { return pairs[k].id2; }
-};
-
-#if PQP_BV_TYPE & RSS_TYPE // distance/tolerance are only available with RSS
-
-struct PQP_DistanceResult 
-{
-  // stats
-
-  int num_bv_tests;
-  int num_tri_tests;
-  double query_time_secs;
-
-  // xform from model 1 to model 2
-
-  PQP_REAL R[3][3];
-  PQP_REAL T[3];
-
-  PQP_REAL rel_err; 
-  PQP_REAL abs_err; 
-
-  PQP_REAL distance;
-  PQP_REAL p1[3]; 
-  PQP_REAL p2[3];
-  int qsize;
-  
-  // statistics
-
-  int NumBVTests() { return num_bv_tests; }
-  int NumTriTests() { return num_tri_tests; }
-  double QueryTimeSecs() { return query_time_secs; }
-
-  // The following distance and points established the minimum distance
-  // for the models, within the relative and absolute error bounds 
-  // specified.
-  // Points are defined: PQP_REAL p1[3], p2[3];
-
-  PQP_REAL Distance() { return distance; }
-  const PQP_REAL *P1() { return p1; }
-  const PQP_REAL *P2() { return p2; }
-};
-
-struct PQP_ToleranceResult 
-{
-  // stats
-
-  int num_bv_tests;
-  int num_tri_tests;
-  double query_time_secs;
-
-  // xform from model 1 to model 2
-
-  PQP_REAL R[3][3];
-  PQP_REAL T[3];
-
-  int    closer_than_tolerance;   
-  PQP_REAL tolerance;      
-
-  PQP_REAL distance;
-  PQP_REAL p1[3]; 
-  PQP_REAL p2[3]; 
-  int qsize;
-
-  // statistics
-
-  int NumBVTests() { return num_bv_tests; }
-  int NumTriTests() { return num_tri_tests; }
-  double QueryTimeSecs() { return query_time_secs; }
-
-  // If the models are closer than ( <= ) tolerance, these points 
-  // and distance were what established this.  Otherwise, 
-  // distance and point values are not meaningful.
-
-  PQP_REAL Distance() { return distance; }
-  const PQP_REAL *P1() { return p1; }
-  const PQP_REAL *P2() { return p2; }
-
-  // boolean says whether models are closer than tolerance distance
-
-  int CloserThanTolerance() { return closer_than_tolerance; }
-};
-
-#endif
diff --git a/trunk/PQP/PQP/include/Tri.h b/trunk/PQP/PQP/include/Tri.h
deleted file mode 100644
index 496cddd928e5ab4fe8c5b1046f55f2a6079f4c71..0000000000000000000000000000000000000000
--- a/trunk/PQP/PQP/include/Tri.h
+++ /dev/null
@@ -1,54 +0,0 @@
-/*************************************************************************\
-
-  Copyright 1999 The University of North Carolina at Chapel Hill.
-  All Rights Reserved.
-
-  Permission to use, copy, modify and distribute this software and its
-  documentation for educational, research and non-profit purposes, without
-  fee, and without a written agreement is hereby granted, provided that the
-  above copyright notice and the following three paragraphs appear in all
-  copies.
-
-  IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE
-  LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
-  CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE
-  USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY
-  OF NORTH CAROLINA HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
-  DAMAGES.
-
-  THE UNIVERSITY OF NORTH CAROLINA SPECIFICALLY DISCLAIM ANY
-  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE
-  PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
-  NORTH CAROLINA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
-  UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-
-  The authors may be contacted via:
-
-  US Mail:             S. Gottschalk
-                       Department of Computer Science
-                       Sitterson Hall, CB #3175
-                       University of N. Carolina
-                       Chapel Hill, NC 27599-3175
-
-  Phone:               (919)962-1749
-
-  EMail:               geom@cs.unc.edu
-
-
-\**************************************************************************/
-
-#ifndef PQP_TRI_H
-#define PQP_TRI_H
-
-#include "PQP_Compile.h"
-
-struct Tri
-{
-  PQP_REAL p1[3];
-  PQP_REAL p2[3];
-  PQP_REAL p3[3];
-  int id;
-};
-
-#endif
diff --git a/trunk/PQP/build/pqp-1.3.tar.gz b/trunk/PQP/build/pqp-1.3.tar.gz
deleted file mode 100644
index 5d6a386167dbc1fdc61ae05638d30ae37f8b2e69..0000000000000000000000000000000000000000
Binary files a/trunk/PQP/build/pqp-1.3.tar.gz and /dev/null differ
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/Makefile b/trunk/PQP/build/pqp-tar/PQP_v1.3/Makefile
deleted file mode 100644
index 5f1f4397f3c328541c3769faf9239a83caa85fd5..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/Makefile
+++ /dev/null
@@ -1,33 +0,0 @@
-CC = g++
-
-CFLAGS		= -O2 -fPIC -I.
-
-.SUFFIXES: .C .cpp
-
-OBJECTS		= lib/PQP.o \
-		  lib/BV.o \
-		  lib/Build.o \
-		  lib/TriDist.o
-
-CLEAN		= $(OBJECTS) lib/libPQP.a include/*.h
-
-library: $(OBJECTS)
-	/bin/rm -f lib/libPQP.a
-	ar ruv lib/libPQP.a $(OBJECTS)
-	cp src/PQP.h include/
-	cp src/PQP_Compile.h include/
-	cp src/PQP_Internal.h include/
-	cp src/BV.h include/
-	cp src/Tri.h include/
-
-lib/BV.o: src/BV.cpp
-	$(CC) $(CFLAGS) -c src/BV.cpp -o lib/BV.o
-lib/PQP.o: src/PQP.cpp
-	$(CC) $(CFLAGS) -c src/PQP.cpp -o lib/PQP.o
-lib/Build.o: src/Build.cpp
-	$(CC) $(CFLAGS) -c src/Build.cpp -o lib/Build.o
-lib/TriDist.o: src/TriDist.cpp
-	$(CC) $(CFLAGS) -c src/TriDist.cpp -o lib/TriDist.o
-
-clean:
-	/bin/rm -f $(CLEAN)
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/PQP.DSP b/trunk/PQP/build/pqp-tar/PQP_v1.3/PQP.DSP
deleted file mode 100644
index ddd11ad2f90227222eb51daa2a3bc9ed39ab1867..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/PQP.DSP
+++ /dev/null
@@ -1,154 +0,0 @@
-# Microsoft Developer Studio Project File - Name="PQP" - Package Owner=<4>
-# Microsoft Developer Studio Generated Build File, Format Version 5.00
-# ** DO NOT EDIT **
-
-# TARGTYPE "Win32 (x86) Static Library" 0x0104
-
-CFG=PQP - Win32 Debug
-!MESSAGE This is not a valid makefile. To build this project using NMAKE,
-!MESSAGE use the Export Makefile command and run
-!MESSAGE 
-!MESSAGE NMAKE /f "PQP.MAK".
-!MESSAGE 
-!MESSAGE You can specify a configuration when running NMAKE
-!MESSAGE by defining the macro CFG on the command line. For example:
-!MESSAGE 
-!MESSAGE NMAKE /f "PQP.MAK" CFG="PQP - Win32 Debug"
-!MESSAGE 
-!MESSAGE Possible choices for configuration are:
-!MESSAGE 
-!MESSAGE "PQP - Win32 Release" (based on "Win32 (x86) Static Library")
-!MESSAGE "PQP - Win32 Debug" (based on "Win32 (x86) Static Library")
-!MESSAGE 
-
-# Begin Project
-# PROP Scc_ProjName ""
-# PROP Scc_LocalPath ""
-CPP=cl.exe
-
-!IF  "$(CFG)" == "PQP - Win32 Release"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir "Release"
-# PROP BASE Intermediate_Dir "Release"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 0
-# PROP Output_Dir "lib"
-# PROP Intermediate_Dir "lib"
-# PROP Target_Dir ""
-# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c
-# ADD CPP /nologo /W3 /GX /Ot /Ob2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-LIB32=link.exe -lib
-# ADD BASE LIB32 /nologo
-# ADD LIB32 /nologo
-# Begin Special Build Tool
-SOURCE=$(InputPath)
-PostBuild_Cmds=copy   src\PQP.h   include	copy   src\PQP_Internal.h   include\
-	copy    src\PQP_Compile.h   include	copy   src\Tri.h   include	copy   src\BV.h\
-  include
-# End Special Build Tool
-
-!ELSEIF  "$(CFG)" == "PQP - Win32 Debug"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir "Debug"
-# PROP BASE Intermediate_Dir "Debug"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 1
-# PROP Output_Dir "lib"
-# PROP Intermediate_Dir "lib"
-# PROP Target_Dir ""
-# ADD BASE CPP /nologo /W3 /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c
-# ADD CPP /nologo /W3 /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-LIB32=link.exe -lib
-# ADD BASE LIB32 /nologo
-# ADD LIB32 /nologo
-# Begin Special Build Tool
-SOURCE=$(InputPath)
-PostBuild_Cmds=copy   src\PQP.h   include	copy   src\PQP_Internal.h   include\
-	copy    src\PQP_Compile.h   include	copy   src\Tri.h   include	copy   src\BV.h\
-  include
-# End Special Build Tool
-
-!ENDIF 
-
-# Begin Target
-
-# Name "PQP - Win32 Release"
-# Name "PQP - Win32 Debug"
-# Begin Source File
-
-SOURCE=.\src\Build.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=.\src\Build.h
-# End Source File
-# Begin Source File
-
-SOURCE=.\src\BV.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=.\src\BV.h
-# End Source File
-# Begin Source File
-
-SOURCE=.\src\BVTQ.h
-# End Source File
-# Begin Source File
-
-SOURCE=.\src\GetTime.h
-# End Source File
-# Begin Source File
-
-SOURCE=.\src\MatVec.h
-# End Source File
-# Begin Source File
-
-SOURCE=.\src\OBB_Disjoint.h
-# End Source File
-# Begin Source File
-
-SOURCE=.\src\PQP.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=.\src\PQP.h
-# End Source File
-# Begin Source File
-
-SOURCE=.\src\PQP_Compile.h
-# End Source File
-# Begin Source File
-
-SOURCE=.\src\PQP_Internal.h
-# End Source File
-# Begin Source File
-
-SOURCE=.\src\RectDist.h
-# End Source File
-# Begin Source File
-
-SOURCE=.\src\Tri.h
-# End Source File
-# Begin Source File
-
-SOURCE=.\src\TriDist.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=.\src\TriDist.h
-# End Source File
-# End Target
-# End Project
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/PQP.PLG b/trunk/PQP/build/pqp-tar/PQP_v1.3/PQP.PLG
deleted file mode 100644
index f2175cfed602dd1f4d6d8bfc196259f81c531eb8..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/PQP.PLG
+++ /dev/null
@@ -1,43 +0,0 @@
---------------------Configuration: PQP - Win32 Release--------------------
-Begining build with project "C:\WIN95\DESKTOP\PQP_v1.2.1\PQP.DSP", at root.
-Active configuration is Win32 (x86) Static Library (based on Win32 (x86) Static Library)
-
-Project's tools are:
-			"32-bit C/C++ Compiler for 80x86" with flags "/nologo /ML /W3 /GX /Ot /Ob2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /Fp"lib/PQP.pch" /YX /Fo"lib/" /Fd"lib/" /FD /c "
-			"Browser Database Maker" with flags "/nologo /o"lib/PQP.bsc" "
-			"Library Manager" with flags "/nologo /out:"lib\PQP.lib" "
-			"Custom Build" with flags ""
-			"<Component 0xa>" with flags ""
-
-Creating temp file "C:\WIN95\TEMP\RSP4244.TMP" with contents </nologo /ML /W3 /GX /Ot /Ob2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /Fp"lib/PQP.pch" /YX /Fo"lib/" /Fd"lib/" /FD /c 
-"C:\WIN95\DESKTOP\PQP_v1.2.1\src\Build.cpp"
-"C:\WIN95\DESKTOP\PQP_v1.2.1\src\BV.cpp"
-"C:\WIN95\DESKTOP\PQP_v1.2.1\src\PQP.cpp"
-"C:\WIN95\DESKTOP\PQP_v1.2.1\src\TriDist.cpp"
->
-Creating command line "cl.exe @C:\WIN95\TEMP\RSP4244.TMP" 
-Creating command line "link.exe -lib /nologo /out:"lib\PQP.lib"  .\lib\Build.obj .\lib\BV.obj .\lib\PQP.obj .\lib\TriDist.obj" 
-Compiling...
-Build.cpp
-BV.cpp
-PQP.cpp
-TriDist.cpp
-Creating library...
-Creating temp file "C:\WIN95\TEMP\RSP4280.BAT" with contents <@echo off
-copy   src\PQP.h   include
-copy   src\PQP_Internal.h   include
-copy    src\PQP_Compile.h   include
-copy   src\Tri.h   include
-copy   src\BV.h   include
->
-Creating command line "C:\WIN95\TEMP\RSP4280.BAT" 
-
-        1 file(s) copied
-        1 file(s) copied
-        1 file(s) copied
-        1 file(s) copied
-        1 file(s) copied
-
-
-
-PQP.lib - 0 error(s), 0 warning(s)
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/PQP.dsw b/trunk/PQP/build/pqp-tar/PQP_v1.3/PQP.dsw
deleted file mode 100644
index a1af0d1b450795b4ff9a7635668cdf7ce7f03fbe..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/PQP.dsw
+++ /dev/null
@@ -1,29 +0,0 @@
-Microsoft Developer Studio Workspace File, Format Version 5.00
-# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
-
-###############################################################################
-
-Project: "PQP"=.\PQP.DSP - Package Owner=<4>
-
-Package=<5>
-{{{
-}}}
-
-Package=<4>
-{{{
-}}}
-
-###############################################################################
-
-Global:
-
-Package=<5>
-{{{
-}}}
-
-Package=<3>
-{{{
-}}}
-
-###############################################################################
-
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/PQP.ncb b/trunk/PQP/build/pqp-tar/PQP_v1.3/PQP.ncb
deleted file mode 100644
index f74bfd3b1d5d6f97792d2e80eafd5033771bdd8a..0000000000000000000000000000000000000000
Binary files a/trunk/PQP/build/pqp-tar/PQP_v1.3/PQP.ncb and /dev/null differ
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/PQP.opt b/trunk/PQP/build/pqp-tar/PQP_v1.3/PQP.opt
deleted file mode 100644
index 3c0d0a739a15af438cfb023f06a35fed161d9c35..0000000000000000000000000000000000000000
Binary files a/trunk/PQP/build/pqp-tar/PQP_v1.3/PQP.opt and /dev/null differ
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/README.txt b/trunk/PQP/build/pqp-tar/PQP_v1.3/README.txt
deleted file mode 100644
index aeca6bbff93ca6f1697ec932ceda7551de9512c9..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/README.txt
+++ /dev/null
@@ -1,206 +0,0 @@
----------------------------------------------------------------------------
-
-
-                             PQP v. 1.3
-
-                    Eric Larsen, Stefan Gottschalk
-                   UNC - Chapel Hill Computer Science
-                           geom@cs.unc.edu
-
----------------------------------------------------------------------------
-Changes:
-
-1.0   - first release of library 
-1.1   - fixed a bug in calculating query times on Win32 machines.
-        added a demo 'falling' which can demonstrate all of the proximity 
-        query types. 
-1.2   - altered the triangle distance routine due to a degeneracy problem 
-        when edges of two triangles nearly intersect.
-1.3   - now use isnan() to test for NaN, instead of a comparison that was
-	sometimes optimized away.
----------------------------------------------------------------------------
-
-
-I. Introduction
-
- PQP, which stands for Proximity Query Package, is a library for three
- types of proximity queries performed on geometric models composed of
- triangles:
-
-   * collision detection - detect whether two models overlap, and
-                           optionally, which triangles of the models
-                           overlap.
-
-   * distance computation - compute the distance between two models, 
-                            i. e., the length of the shortest translation
-                            that makes the models overlap
-
-   * tolerance verification - detect whether two models are closer or
-                              farther than a tolerance value.
-
- By default, the library uses "RSS" bounding volumes for distance and
- tolerance queries, and OBBs for collision detection (see PQP_Compile.h).
- Descriptions of the bounding volumes and algorithms used in this package 
- are contained in:
-
-   Eric Larsen, Stefan Gottschalk, Ming Lin, Dinesh Manocha,
-   "Fast Proximity Queries with Swept Sphere Volumes", 
-   Technical report TR99-018, Department of Computer Science, 
-   UNC Chapel Hill 
-
-   S. Gottschalk, M. C. Lin and D. Manocha,
-   "OBB-Tree: A Hierarchical Structure for Rapid Interference Detection",
-   Technical report TR96-013, Department of Computer Science, University
-   of N. Carolina, Chapel Hill.
-   Proc. of ACM Siggraph'96.
-
-II. Layout of Files
-
- PQP_v1.3/
-   Makefile           Unix makefile to build PQP library
-   PQP.dsw PQP.dsp    MS VC++ 5.0 workspace and project files for PQP
-
-   src/
-     PQP source
-
-   lib/             
-     libPQP.a         after Unix compilation
-     PQP.lib          after Win32 compilation
-
-   include/
-     PQP.h            include this file to use PQP classes and functions.
-     PQP_Internal.h   
-     PQP_Compile.h    *WARNING* you should only modify PQP_Compile.h in
-     Tri.h            the src directory, not here, because these files
-     BV.h             are copied here from src when you perform a build
-                     
-   demos/
-     Makefile         Unix makefile for both demos
-     demos.dsw        MS VC++ 5.0 workspace for demos
- 
-     falling/         source and project files
-     sample/          "      "   "       "
-     spinning/        "      "   "       "
-
-III. Building the PQP Library
-
- In the top level directory, there is a Unix Makefile for building the PQP
- library.  Type 'make' to create a 'libPQP.a' in the lib directory.
- The compiler is currently set to g++ with -O2 level optimization. 
-
- In Visual C++ 5.0 or higher, open PQP.dsw to build the library.
-
- Building on either platform has a side effect of copying the include
- files needed for a client application to the include/ directory.  
-
-IV. Building the Demos
-
- In the demos directory is a Unix Makefile.  Typing 'make' will perform a
- 'make' in the 'sample' and 'spinning' directories.  For VC++5.0
- users, the demos directory contains a demos.dsw file which contains
- projects for both demos.
-
-   sample
-
-   This demo is adapted from the sample client included with RAPID.  Two 
-   tori are created, and proximity queries are performed on them at  
-   several configurations
-
-   spinning
-
-   The spinning demo is a GLUT application, so paths to the GLUT & OpenGL
-   libraries and includes must be set in spinning/Makefile, or in the 
-   VC++ project settings. When run, a bunny and a torus should appear in
-   the GLUT window, with a line drawn between their closest points.
-   Pressing a key alternately starts and stops them spinning.
-
-   falling
-
-   This demo is also a GLUT application, showing a bent torus
-   falling through the center of a knobby torus.  Each of the three 
-   proximity query types can be demonstrated.
-
-V. Creating a PQP Client Application
-
- "PQP.h" contains the most complete information on constructing client
- applications.  Here is a summary of the steps involved.
-
- 1. Include the PQP API header.
- 
-    #include "PQP.h"
-
- 2. Create two instances of PQP_Model.
-
-    PQP_Model m1, m2;
-
- 3. Specify the triangles of each PQP_Model.
-
-    Note that PQP uses the PQP_REAL type for all its floating point 
-    values. This can be set in "PQP_Compile.h", and is "double" by 
-    default
-
-    // begin m1
-
-    m1.BeginModel();
-
-    // create some triangles
-
-    PQP_REAL p1[3], p2[3], p3[3];  
-    PQP_REAL q1[3], q2[3], q3[3];
-    PQP_REAL r1[3], r2[3], r3[3];
-
-    // initialize the points
-     .
-     . 
-     .  
-
-    // add triangles that will belong to m1
- 
-    m1.AddTri(p1, p2, p3, 0);
-    m1.AddTri(q1, q2, q3, 1);
-    m1.AddTri(r1, r2, r3, 2);
- 
-    // end m1, which builds the model
-
-    m1.EndModel();
-
- 4. Specify the orientation and position of each model.
-
-    The position of a model is specified as a 3 vector giving the
-    position of its frame in the world, stored in a PQP_REAL [3]. 
-
-    The rotation for a model is specified as a 3x3 matrix, whose columns
-    are the model frame's basis vectors, stored in row major order in
-    a PQP_REAL [3][3];
-
-    Note that an OpenGL 4x4 matrix has column major storage.
-
- 5. Perform any of the three proximity queries.
-
-    // collision
-
-    PQP_CollideResult cres;
-    PQP_Collide(&cres,R1,T1,&m1,R2,T2,&m2);
-
-    // distance
-
-    PQP_DistanceResult dres;
-    double rel_err = 0.0, abs_err = 0.0;
-    PQP_Distance(&dres,R1,T1,&m1,R2,T2,&m2,rel_err,abs_err);
-
-    // tolerance
- 
-    PQP_ToleranceResult tres;
-    double tolerance = 1.0;
-    PQP_Tolerance(&tres,R1,T1,&m1,R2,T2,&m2,tolerance);
-
-    See "PQP.h" for complete information.
-
- 6. Access the result structure passed in the query call.
-
-    int colliding = cres.Colliding();
-    double distance = dres.Distance();
-    int closer = tres.CloserThanTolerance();
-
-    See "PQP.h" for the complete interface to each result structure.
-
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/Makefile b/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/Makefile
deleted file mode 100644
index 15bdeebbc92b1e3973e4fdf946d059d195befdaa..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/Makefile
+++ /dev/null
@@ -1,16 +0,0 @@
-all: 
-	cd sample; \
-	make
-	cd spinning; \
-	make
-	cd falling; \
-	make
-
-clean: 
-	cd sample; \
-	make clean
-	cd spinning; \
-	make clean
-	cd falling; \
-	make clean
-
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/demos.dsp b/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/demos.dsp
deleted file mode 100644
index 34512688a1b527719347b5cdff9ec0fd540f3891..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/demos.dsp
+++ /dev/null
@@ -1,83 +0,0 @@
-# Microsoft Developer Studio Project File - Name="demos" - Package Owner=<4>
-# Microsoft Developer Studio Generated Build File, Format Version 5.00
-# ** DO NOT EDIT **
-
-# TARGTYPE "Win32 (x86) Console Application" 0x0103
-
-CFG=demos - Win32 Debug
-!MESSAGE This is not a valid makefile. To build this project using NMAKE,
-!MESSAGE use the Export Makefile command and run
-!MESSAGE 
-!MESSAGE NMAKE /f "demos.mak".
-!MESSAGE 
-!MESSAGE You can specify a configuration when running NMAKE
-!MESSAGE by defining the macro CFG on the command line. For example:
-!MESSAGE 
-!MESSAGE NMAKE /f "demos.mak" CFG="demos - Win32 Debug"
-!MESSAGE 
-!MESSAGE Possible choices for configuration are:
-!MESSAGE 
-!MESSAGE "demos - Win32 Release" (based on "Win32 (x86) Console Application")
-!MESSAGE "demos - Win32 Debug" (based on "Win32 (x86) Console Application")
-!MESSAGE 
-
-# Begin Project
-# PROP Scc_ProjName ""
-# PROP Scc_LocalPath ""
-CPP=cl.exe
-RSC=rc.exe
-
-!IF  "$(CFG)" == "demos - Win32 Release"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir "Release"
-# PROP BASE Intermediate_Dir "Release"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 0
-# PROP Output_Dir "Release"
-# PROP Intermediate_Dir "Release"
-# PROP Target_Dir ""
-# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
-# ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
-# ADD BASE RSC /l 0x409 /d "NDEBUG"
-# ADD RSC /l 0x409 /d "NDEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-LINK32=link.exe
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
-# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
-
-!ELSEIF  "$(CFG)" == "demos - Win32 Debug"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir "Debug"
-# PROP BASE Intermediate_Dir "Debug"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 1
-# PROP Output_Dir "Debug"
-# PROP Intermediate_Dir "Debug"
-# PROP Target_Dir ""
-# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
-# ADD CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
-# ADD BASE RSC /l 0x409 /d "_DEBUG"
-# ADD RSC /l 0x409 /d "_DEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-LINK32=link.exe
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
-# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
-
-!ENDIF 
-
-# Begin Target
-
-# Name "demos - Win32 Release"
-# Name "demos - Win32 Debug"
-# End Target
-# End Project
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/demos.dsw b/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/demos.dsw
deleted file mode 100644
index 9aad33f880f074a0ba63898ca098fd71c2bf2918..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/demos.dsw
+++ /dev/null
@@ -1,53 +0,0 @@
-Microsoft Developer Studio Workspace File, Format Version 5.00
-# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
-
-###############################################################################
-
-Project: "falling"=.\falling\falling.dsp - Package Owner=<4>
-
-Package=<5>
-{{{
-}}}
-
-Package=<4>
-{{{
-}}}
-
-###############################################################################
-
-Project: "sample"=.\sample\sample.dsp - Package Owner=<4>
-
-Package=<5>
-{{{
-}}}
-
-Package=<4>
-{{{
-}}}
-
-###############################################################################
-
-Project: "spinning"=.\spinning\spinning.dsp - Package Owner=<4>
-
-Package=<5>
-{{{
-}}}
-
-Package=<4>
-{{{
-}}}
-
-###############################################################################
-
-Global:
-
-Package=<5>
-{{{
-}}}
-
-Package=<3>
-{{{
-}}}
-
-###############################################################################
-
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/demos.ncb b/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/demos.ncb
deleted file mode 100644
index 40973a4585e91f24a69abe9182fb8287ab8bc0e0..0000000000000000000000000000000000000000
Binary files a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/demos.ncb and /dev/null differ
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/demos.opt b/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/demos.opt
deleted file mode 100644
index 237033d492a5833edc67a26a5e6693866af97436..0000000000000000000000000000000000000000
Binary files a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/demos.opt and /dev/null differ
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/falling/Makefile b/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/falling/Makefile
deleted file mode 100644
index 89b45db8bb5354413b38ac4e5572525223e67533..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/falling/Makefile
+++ /dev/null
@@ -1,33 +0,0 @@
-# Must set these gl and glut locations to build 'falling'
-
-GL_INCPATH = -I/usr/local/include/
-GL_LIBPATH = -L/usr/local/lib/ -L/usr/X11R6/lib/
-GL_LIBS  =  -lglut -lGLU -lGL -lXext -lXmu -lXi -lX11
-
-.SUFFIXES: .cpp
-
-CC = g++
-CFLAGS  = -O2 -I. -I../../include $(GL_INCPATH)
-LDFLAGS	= -L. -L../../lib $(GL_LIBPATH)
-LDLIBS  = -lPQP -lm       $(GL_LIBS) 
-
-SRCS    = main.cpp model.cpp 
-
-OBJECTS	= main.o model.o
-
-TARGET = falling
-
-CLEAN   = $(OBJECTS) $(TARGET)
-
-.cpp.o:
-	$(CC) ${CFLAGS} -c $<
-
-$(TARGET): $(OBJECTS)
-	$(CC) $(CFLAGS) -o $(TARGET) $(OBJECTS) -L. $(LDFLAGS) $(LDLIBS)
-
-run: $(TARGET)
-	$(TARGET)
-
-clean:
-	/bin/rm -f $(CLEAN)
-
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/falling/MatVec.h b/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/falling/MatVec.h
deleted file mode 100644
index 3d90522f84c19bd070f0d18fb1aff5078bdaa753..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/falling/MatVec.h
+++ /dev/null
@@ -1,881 +0,0 @@
-/*************************************************************************\
-
-  Copyright 1999 The University of North Carolina at Chapel Hill.
-  All Rights Reserved.
-
-  Permission to use, copy, modify and distribute this software and its
-  documentation for educational, research and non-profit purposes, without
-  fee, and without a written agreement is hereby granted, provided that the
-  above copyright notice and the following three paragraphs appear in all
-  copies.
-
-  IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE
-  LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
-  CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE
-  USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY
-  OF NORTH CAROLINA HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
-  DAMAGES.
-
-  THE UNIVERSITY OF NORTH CAROLINA SPECIFICALLY DISCLAIM ANY
-  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE
-  PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
-  NORTH CAROLINA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
-  UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-
-  The authors may be contacted via:
-
-  US Mail:             S. Gottschalk
-                       Department of Computer Science
-                       Sitterson Hall, CB #3175
-                       University of N. Carolina
-                       Chapel Hill, NC 27599-3175
-
-  Phone:               (919)962-1749
-
-  EMail:               geom@cs.unc.edu
-
-
-\**************************************************************************/
-
-#ifndef PQP_MATVEC_H
-#define PQP_MATVEC_H
-
-#include <math.h>
-#include <stdio.h>
-#include "PQP_Compile.h"
-
-#ifndef M_PI
-const double M_PI =  3.14159265359;
-#endif
-
-#ifdef gnu
-#include "zzzz.h"
-
-#ifdef hppa
-#define myfabs(x) \
- ({double __value, __arg = (x); \
-   asm("fabs,dbl %1, %0": "=f" (__value): "f" (__arg)); \
-   __value; \
-});
-#endif
-
-#ifdef mips
-#define myfabs(x) \
- ({double __value, __arg = (x); \
-   asm("abs.d %0, %1": "=f" (__value): "f" (__arg)); \
-   __value; \
-});
-#endif
-
-#else  
-
-#define myfabs(x) ((x < 0) ? -x : x)
-
-#endif
-
-
-inline
-void
-Mprintg(const PQP_REAL M[3][3])
-{
-  printf("%g %g %g\n%g %g %g\n%g %g %g\n",
-	 M[0][0], M[0][1], M[0][2],
-	 M[1][0], M[1][1], M[1][2],
-	 M[2][0], M[2][1], M[2][2]);
-}
-
-
-inline
-void
-Mfprint(FILE *f, const PQP_REAL M[3][3])
-{
-  fprintf(f, "%g %g %g\n%g %g %g\n%g %g %g\n",
-	 M[0][0], M[0][1], M[0][2],
-	 M[1][0], M[1][1], M[1][2],
-	 M[2][0], M[2][1], M[2][2]);
-}
-
-inline
-void
-Mprint(const PQP_REAL M[3][3])
-{
-  printf("%g %g %g\n%g %g %g\n%g %g %g\n",
-	 M[0][0], M[0][1], M[0][2],
-	 M[1][0], M[1][1], M[1][2],
-	 M[2][0], M[2][1], M[2][2]);
-}
-
-inline
-void
-Vprintg(const PQP_REAL V[3])
-{
-  printf("%g %g %g\n", V[0], V[1], V[2]);
-}
-
-inline
-void
-Vfprint(FILE *f, const PQP_REAL V[3])
-{
-  fprintf(f, "%g %g %g\n", V[0], V[1], V[2]);
-}
-
-inline
-void
-Vprint(const PQP_REAL V[3])
-{
-  printf("%g %g %g\n", V[0], V[1], V[2]);
-}
-
-inline
-void
-Midentity(PQP_REAL M[3][3])
-{
-  M[0][0] = M[1][1] = M[2][2] = 1.0;
-  M[0][1] = M[1][2] = M[2][0] = 0.0;
-  M[0][2] = M[1][0] = M[2][1] = 0.0;
-}
-
-inline
-void
-Videntity(PQP_REAL T[3])
-{
-  T[0] = T[1] = T[2] = 0.0;
-}
-
-inline
-void
-McM(PQP_REAL Mr[3][3], const PQP_REAL M[3][3])
-{
-  Mr[0][0] = M[0][0];  Mr[0][1] = M[0][1];  Mr[0][2] = M[0][2];
-  Mr[1][0] = M[1][0];  Mr[1][1] = M[1][1];  Mr[1][2] = M[1][2];
-  Mr[2][0] = M[2][0];  Mr[2][1] = M[2][1];  Mr[2][2] = M[2][2];
-}
-
-inline
-void
-MTcM(PQP_REAL Mr[3][3], const PQP_REAL M[3][3])
-{
-  Mr[0][0] = M[0][0];  Mr[1][0] = M[0][1];  Mr[2][0] = M[0][2];
-  Mr[0][1] = M[1][0];  Mr[1][1] = M[1][1];  Mr[2][1] = M[1][2];
-  Mr[0][2] = M[2][0];  Mr[1][2] = M[2][1];  Mr[2][2] = M[2][2];
-}
-
-inline
-void
-VcV(PQP_REAL Vr[3], const PQP_REAL V[3])
-{
-  Vr[0] = V[0];  Vr[1] = V[1];  Vr[2] = V[2];
-}
-
-inline
-void
-McolcV(PQP_REAL Vr[3], const PQP_REAL M[3][3], int c)
-{
-  Vr[0] = M[0][c];
-  Vr[1] = M[1][c];
-  Vr[2] = M[2][c];
-}
-
-inline
-void
-McolcMcol(PQP_REAL Mr[3][3], int cr, const PQP_REAL M[3][3], int c)
-{
-  Mr[0][cr] = M[0][c];
-  Mr[1][cr] = M[1][c];
-  Mr[2][cr] = M[2][c];
-}
-
-inline
-void
-MxMpV(PQP_REAL Mr[3][3], const PQP_REAL M1[3][3], const PQP_REAL M2[3][3], const PQP_REAL T[3])
-{
-  Mr[0][0] = (M1[0][0] * M2[0][0] +
-	      M1[0][1] * M2[1][0] +
-	      M1[0][2] * M2[2][0] +
-	      T[0]);
-  Mr[1][0] = (M1[1][0] * M2[0][0] +
-	      M1[1][1] * M2[1][0] +
-	      M1[1][2] * M2[2][0] +
-	      T[1]);
-  Mr[2][0] = (M1[2][0] * M2[0][0] +
-	      M1[2][1] * M2[1][0] +
-	      M1[2][2] * M2[2][0] +
-	      T[2]);
-  Mr[0][1] = (M1[0][0] * M2[0][1] +
-	      M1[0][1] * M2[1][1] +
-	      M1[0][2] * M2[2][1] +
-	      T[0]);
-  Mr[1][1] = (M1[1][0] * M2[0][1] +
-	      M1[1][1] * M2[1][1] +
- 	      M1[1][2] * M2[2][1] +
-	      T[1]);
-  Mr[2][1] = (M1[2][0] * M2[0][1] +
-	      M1[2][1] * M2[1][1] +
-	      M1[2][2] * M2[2][1] +
-	      T[2]);
-  Mr[0][2] = (M1[0][0] * M2[0][2] +
-	      M1[0][1] * M2[1][2] +
-	      M1[0][2] * M2[2][2] +
-	      T[0]);
-  Mr[1][2] = (M1[1][0] * M2[0][2] +
-	      M1[1][1] * M2[1][2] +
-	      M1[1][2] * M2[2][2] +
-	      T[1]);
-  Mr[2][2] = (M1[2][0] * M2[0][2] +
-	      M1[2][1] * M2[1][2] +
-	      M1[2][2] * M2[2][2] +
-	      T[2]);
-}
-
-inline
-void
-MxM(PQP_REAL Mr[3][3], const PQP_REAL M1[3][3], const PQP_REAL M2[3][3])
-{
-  Mr[0][0] = (M1[0][0] * M2[0][0] +
-	      M1[0][1] * M2[1][0] +
-	      M1[0][2] * M2[2][0]);
-  Mr[1][0] = (M1[1][0] * M2[0][0] +
-	      M1[1][1] * M2[1][0] +
-	      M1[1][2] * M2[2][0]);
-  Mr[2][0] = (M1[2][0] * M2[0][0] +
-	      M1[2][1] * M2[1][0] +
-	      M1[2][2] * M2[2][0]);
-  Mr[0][1] = (M1[0][0] * M2[0][1] +
-	      M1[0][1] * M2[1][1] +
-	      M1[0][2] * M2[2][1]);
-  Mr[1][1] = (M1[1][0] * M2[0][1] +
-	      M1[1][1] * M2[1][1] +
- 	      M1[1][2] * M2[2][1]);
-  Mr[2][1] = (M1[2][0] * M2[0][1] +
-	      M1[2][1] * M2[1][1] +
-	      M1[2][2] * M2[2][1]);
-  Mr[0][2] = (M1[0][0] * M2[0][2] +
-	      M1[0][1] * M2[1][2] +
-	      M1[0][2] * M2[2][2]);
-  Mr[1][2] = (M1[1][0] * M2[0][2] +
-	      M1[1][1] * M2[1][2] +
-	      M1[1][2] * M2[2][2]);
-  Mr[2][2] = (M1[2][0] * M2[0][2] +
-	      M1[2][1] * M2[1][2] +
-	      M1[2][2] * M2[2][2]);
-}
-
-
-inline
-void
-MxMT(PQP_REAL Mr[3][3], const PQP_REAL M1[3][3], const PQP_REAL M2[3][3])
-{
-  Mr[0][0] = (M1[0][0] * M2[0][0] +
-	      M1[0][1] * M2[0][1] +
-	      M1[0][2] * M2[0][2]);
-  Mr[1][0] = (M1[1][0] * M2[0][0] +
-	      M1[1][1] * M2[0][1] +
-	      M1[1][2] * M2[0][2]);
-  Mr[2][0] = (M1[2][0] * M2[0][0] +
-	      M1[2][1] * M2[0][1] +
-	      M1[2][2] * M2[0][2]);
-  Mr[0][1] = (M1[0][0] * M2[1][0] +
-	      M1[0][1] * M2[1][1] +
-	      M1[0][2] * M2[1][2]);
-  Mr[1][1] = (M1[1][0] * M2[1][0] +
-	      M1[1][1] * M2[1][1] +
- 	      M1[1][2] * M2[1][2]);
-  Mr[2][1] = (M1[2][0] * M2[1][0] +
-	      M1[2][1] * M2[1][1] +
-	      M1[2][2] * M2[1][2]);
-  Mr[0][2] = (M1[0][0] * M2[2][0] +
-	      M1[0][1] * M2[2][1] +
-	      M1[0][2] * M2[2][2]);
-  Mr[1][2] = (M1[1][0] * M2[2][0] +
-	      M1[1][1] * M2[2][1] +
-	      M1[1][2] * M2[2][2]);
-  Mr[2][2] = (M1[2][0] * M2[2][0] +
-	      M1[2][1] * M2[2][1] +
-	      M1[2][2] * M2[2][2]);
-}
-
-inline
-void
-MTxM(PQP_REAL Mr[3][3], const PQP_REAL M1[3][3], const PQP_REAL M2[3][3])
-{
-  Mr[0][0] = (M1[0][0] * M2[0][0] +
-	      M1[1][0] * M2[1][0] +
-	      M1[2][0] * M2[2][0]);
-  Mr[1][0] = (M1[0][1] * M2[0][0] +
-	      M1[1][1] * M2[1][0] +
-	      M1[2][1] * M2[2][0]);
-  Mr[2][0] = (M1[0][2] * M2[0][0] +
-	      M1[1][2] * M2[1][0] +
-	      M1[2][2] * M2[2][0]);
-  Mr[0][1] = (M1[0][0] * M2[0][1] +
-	      M1[1][0] * M2[1][1] +
-	      M1[2][0] * M2[2][1]);
-  Mr[1][1] = (M1[0][1] * M2[0][1] +
-	      M1[1][1] * M2[1][1] +
- 	      M1[2][1] * M2[2][1]);
-  Mr[2][1] = (M1[0][2] * M2[0][1] +
-	      M1[1][2] * M2[1][1] +
-	      M1[2][2] * M2[2][1]);
-  Mr[0][2] = (M1[0][0] * M2[0][2] +
-	      M1[1][0] * M2[1][2] +
-	      M1[2][0] * M2[2][2]);
-  Mr[1][2] = (M1[0][1] * M2[0][2] +
-	      M1[1][1] * M2[1][2] +
-	      M1[2][1] * M2[2][2]);
-  Mr[2][2] = (M1[0][2] * M2[0][2] +
-	      M1[1][2] * M2[1][2] +
-	      M1[2][2] * M2[2][2]);
-}
-
-inline
-void
-MxV(PQP_REAL Vr[3], const PQP_REAL M1[3][3], const PQP_REAL V1[3])
-{
-  Vr[0] = (M1[0][0] * V1[0] +
-	   M1[0][1] * V1[1] + 
-	   M1[0][2] * V1[2]);
-  Vr[1] = (M1[1][0] * V1[0] +
-	   M1[1][1] * V1[1] + 
-	   M1[1][2] * V1[2]);
-  Vr[2] = (M1[2][0] * V1[0] +
-	   M1[2][1] * V1[1] + 
-	   M1[2][2] * V1[2]);
-}
-
-
-inline
-void
-MxVpV(PQP_REAL Vr[3], const PQP_REAL M1[3][3], const PQP_REAL V1[3], const PQP_REAL V2[3])
-{
-  Vr[0] = (M1[0][0] * V1[0] +
-	   M1[0][1] * V1[1] + 
-	   M1[0][2] * V1[2] + 
-	   V2[0]);
-  Vr[1] = (M1[1][0] * V1[0] +
-	   M1[1][1] * V1[1] + 
-	   M1[1][2] * V1[2] + 
-	   V2[1]);
-  Vr[2] = (M1[2][0] * V1[0] +
-	   M1[2][1] * V1[1] + 
-	   M1[2][2] * V1[2] + 
-	   V2[2]);
-}
-
-
-inline
-void
-sMxVpV(PQP_REAL Vr[3], PQP_REAL s1, const PQP_REAL M1[3][3], const PQP_REAL V1[3], const PQP_REAL V2[3])
-{
-  Vr[0] = s1 * (M1[0][0] * V1[0] +
-		M1[0][1] * V1[1] + 
-		M1[0][2] * V1[2]) +
-		V2[0];
-  Vr[1] = s1 * (M1[1][0] * V1[0] +
-		M1[1][1] * V1[1] + 
-		M1[1][2] * V1[2]) + 
-		V2[1];
-  Vr[2] = s1 * (M1[2][0] * V1[0] +
-		M1[2][1] * V1[1] + 
-		M1[2][2] * V1[2]) + 
-		V2[2];
-}
-
-inline
-void
-MTxV(PQP_REAL Vr[3], const PQP_REAL M1[3][3], const PQP_REAL V1[3])
-{
-  Vr[0] = (M1[0][0] * V1[0] +
-	   M1[1][0] * V1[1] + 
-	   M1[2][0] * V1[2]); 
-  Vr[1] = (M1[0][1] * V1[0] +
-	   M1[1][1] * V1[1] + 
-	   M1[2][1] * V1[2]);
-  Vr[2] = (M1[0][2] * V1[0] +
-	   M1[1][2] * V1[1] + 
-	   M1[2][2] * V1[2]); 
-}
-
-inline
-void
-sMTxV(PQP_REAL Vr[3], PQP_REAL s1, const PQP_REAL M1[3][3], const PQP_REAL V1[3])
-{
-  Vr[0] = s1*(M1[0][0] * V1[0] +
-	      M1[1][0] * V1[1] + 
-	      M1[2][0] * V1[2]); 
-  Vr[1] = s1*(M1[0][1] * V1[0] +
-	      M1[1][1] * V1[1] + 
-	      M1[2][1] * V1[2]);
-  Vr[2] = s1*(M1[0][2] * V1[0] +
-	      M1[1][2] * V1[1] + 
-	      M1[2][2] * V1[2]); 
-}
-
-inline
-void
-sMxV(PQP_REAL Vr[3], PQP_REAL s1, const PQP_REAL M1[3][3], const PQP_REAL V1[3])
-{
-  Vr[0] = s1*(M1[0][0] * V1[0] +
-	      M1[0][1] * V1[1] + 
-	      M1[0][2] * V1[2]); 
-  Vr[1] = s1*(M1[1][0] * V1[0] +
-	      M1[1][1] * V1[1] + 
-	      M1[1][2] * V1[2]);
-  Vr[2] = s1*(M1[2][0] * V1[0] +
-	      M1[2][1] * V1[1] + 
-	      M1[2][2] * V1[2]); 
-}
-
-
-inline
-void
-VmV(PQP_REAL Vr[3], const PQP_REAL V1[3], const PQP_REAL V2[3])
-{
-  Vr[0] = V1[0] - V2[0];
-  Vr[1] = V1[1] - V2[1];
-  Vr[2] = V1[2] - V2[2];
-}
-
-inline
-void
-VpV(PQP_REAL Vr[3], const PQP_REAL V1[3], const PQP_REAL V2[3])
-{
-  Vr[0] = V1[0] + V2[0];
-  Vr[1] = V1[1] + V2[1];
-  Vr[2] = V1[2] + V2[2];
-}
-
-inline
-void
-VpVxS(PQP_REAL Vr[3], const PQP_REAL V1[3], const PQP_REAL V2[3], PQP_REAL s)
-{
-  Vr[0] = V1[0] + V2[0] * s;
-  Vr[1] = V1[1] + V2[1] * s;
-  Vr[2] = V1[2] + V2[2] * s;
-}
-
-inline 
-void
-MskewV(PQP_REAL M[3][3], const PQP_REAL v[3])
-{
-  M[0][0] = M[1][1] = M[2][2] = 0.0;
-  M[1][0] = v[2];
-  M[0][1] = -v[2];
-  M[0][2] = v[1];
-  M[2][0] = -v[1];
-  M[1][2] = -v[0];
-  M[2][1] = v[0];
-}
-
-
-inline
-void
-VcrossV(PQP_REAL Vr[3], const PQP_REAL V1[3], const PQP_REAL V2[3])
-{
-  Vr[0] = V1[1]*V2[2] - V1[2]*V2[1];
-  Vr[1] = V1[2]*V2[0] - V1[0]*V2[2];
-  Vr[2] = V1[0]*V2[1] - V1[1]*V2[0];
-}
-
-
-inline
-PQP_REAL
-Vlength(PQP_REAL V[3])
-{
-  return sqrt(V[0]*V[0] + V[1]*V[1] + V[2]*V[2]);
-}
-
-inline
-void
-Vnormalize(PQP_REAL V[3])
-{
-  PQP_REAL d = (PQP_REAL)1.0 / sqrt(V[0]*V[0] + V[1]*V[1] + V[2]*V[2]);
-  V[0] *= d;
-  V[1] *= d;
-  V[2] *= d;
-}
-
-
-inline
-PQP_REAL
-VdotV(const PQP_REAL V1[3], const PQP_REAL V2[3])
-{
-  return (V1[0]*V2[0] + V1[1]*V2[1] + V1[2]*V2[2]);
-}
-
-
-inline
-PQP_REAL
-VdistV2(const PQP_REAL V1[3], const PQP_REAL V2[3])
-{
-  return ( (V1[0]-V2[0]) * (V1[0]-V2[0]) + 
-	   (V1[1]-V2[1]) * (V1[1]-V2[1]) + 
-	   (V1[2]-V2[2]) * (V1[2]-V2[2]));
-}
-
-inline
-void
-VxS(PQP_REAL Vr[3], const PQP_REAL V[3], PQP_REAL s)
-{
-  Vr[0] = V[0] * s;
-  Vr[1] = V[1] * s;
-  Vr[2] = V[2] * s;
-}
-
-inline
-void
-MRotZ(PQP_REAL Mr[3][3], PQP_REAL t)
-{
-  Mr[0][0] = cos(t);
-  Mr[1][0] = sin(t);
-  Mr[0][1] = -Mr[1][0];
-  Mr[1][1] = Mr[0][0];
-  Mr[2][0] = Mr[2][1] = 0.0;
-  Mr[0][2] = Mr[1][2] = 0.0;
-  Mr[2][2] = 1.0;
-}
-
-
-inline
-void
-MRotX(PQP_REAL Mr[3][3], PQP_REAL t)
-{
-  Mr[1][1] = cos(t);
-  Mr[2][1] = sin(t);
-  Mr[1][2] = -Mr[2][1];
-  Mr[2][2] = Mr[1][1];
-  Mr[0][1] = Mr[0][2] = 0.0;
-  Mr[1][0] = Mr[2][0] = 0.0;
-  Mr[0][0] = 1.0;
-}
-
-inline
-void
-MRotY(PQP_REAL Mr[3][3], PQP_REAL t)
-{
-  Mr[2][2] = cos(t);
-  Mr[0][2] = sin(t);
-  Mr[2][0] = -Mr[0][2];
-  Mr[0][0] = Mr[2][2];
-  Mr[1][2] = Mr[1][0] = 0.0;
-  Mr[2][1] = Mr[0][1] = 0.0;
-  Mr[1][1] = 1.0;
-}
-
-inline
-void
-MVtoOGL(double oglm[16], const PQP_REAL R[3][3], const PQP_REAL T[3])
-{
-  oglm[0] = (double)R[0][0]; 
-  oglm[1] = (double)R[1][0]; 
-  oglm[2] = (double)R[2][0]; 
-  oglm[3] = 0.0;
-  oglm[4] = (double)R[0][1]; 
-  oglm[5] = (double)R[1][1];
-  oglm[6] = (double)R[2][1];
-  oglm[7] = 0.0;
-  oglm[8] = (double)R[0][2];
-  oglm[9] = (double)R[1][2];
-  oglm[10] = (double)R[2][2];
-  oglm[11] = 0.0;
-  oglm[12] = (double)T[0];
-  oglm[13] = (double)T[1];
-  oglm[14] = (double)T[2];
-  oglm[15] = 1.0;
-}
-
-inline 
-void
-OGLtoMV(PQP_REAL R[3][3], PQP_REAL T[3], const double oglm[16])
-{
-  R[0][0] = (PQP_REAL)oglm[0];
-  R[1][0] = (PQP_REAL)oglm[1];
-  R[2][0] = (PQP_REAL)oglm[2];
-
-  R[0][1] = (PQP_REAL)oglm[4];
-  R[1][1] = (PQP_REAL)oglm[5];
-  R[2][1] = (PQP_REAL)oglm[6];
-
-  R[0][2] = (PQP_REAL)oglm[8];
-  R[1][2] = (PQP_REAL)oglm[9];
-  R[2][2] = (PQP_REAL)oglm[10];
-
-  T[0] = (PQP_REAL)oglm[12];
-  T[1] = (PQP_REAL)oglm[13];
-  T[2] = (PQP_REAL)oglm[14];
-}
-
-// taken from quatlib, written by Richard Holloway
-const int QX = 0;
-const int QY = 1;
-const int QZ = 2;
-const int QW = 3;
-
-inline
-void 
-MRotQ(PQP_REAL destMatrix[3][3], PQP_REAL srcQuat[4])
-{
-  PQP_REAL  s;
-  PQP_REAL  xs, ys, zs,
-    	    wx, wy, wz,
-	        xx, xy, xz,
-	        yy, yz, zz;
-
-  /* 
-   * For unit srcQuat, just set s = 2.0; or set xs = srcQuat[QX] + 
-   *   srcQuat[QX], etc. 
-   */
-
-  s = (PQP_REAL)2.0 / (srcQuat[QX]*srcQuat[QX] + srcQuat[QY]*srcQuat[QY] + 
-    	     srcQuat[QZ]*srcQuat[QZ] + srcQuat[QW]*srcQuat[QW]);
-
-  xs = srcQuat[QX] * s;   ys = srcQuat[QY] * s;   zs = srcQuat[QZ] * s;
-  wx = srcQuat[QW] * xs;  wy = srcQuat[QW] * ys;  wz = srcQuat[QW] * zs;
-  xx = srcQuat[QX] * xs;  xy = srcQuat[QX] * ys;  xz = srcQuat[QX] * zs;
-  yy = srcQuat[QY] * ys;  yz = srcQuat[QY] * zs;  zz = srcQuat[QZ] * zs;
-
-  destMatrix[QX][QX] = (PQP_REAL)1.0 - (yy + zz);
-  destMatrix[QX][QY] = xy + wz;
-  destMatrix[QX][QZ] = xz - wy;
-
-  destMatrix[QY][QX] = xy - wz;
-  destMatrix[QY][QY] = (PQP_REAL)1.0 - (xx + zz);
-  destMatrix[QY][QZ] = yz + wx;
-
-  destMatrix[QZ][QX] = xz + wy;
-  destMatrix[QZ][QY] = yz - wx;
-  destMatrix[QZ][QZ] = (PQP_REAL)1.0 - (xx + yy);
-} 
-
-inline
-void
-Mqinverse(PQP_REAL Mr[3][3], PQP_REAL m[3][3])
-{
-  int i,j;
-
-  for(i=0; i<3; i++)
-    for(j=0; j<3; j++)
-    {
-      int i1 = (i+1)%3;
-      int i2 = (i+2)%3;
-      int j1 = (j+1)%3;
-      int j2 = (j+2)%3;
-      Mr[i][j] = (m[j1][i1]*m[j2][i2] - m[j1][i2]*m[j2][i1]);
-    }
-}
-
-// Meigen from Numerical Recipes in C
-
-#if 0
-
-#define rfabs(x) ((x < 0) ? -x : x)
-
-#define ROT(a,i,j,k,l) g=a[i][j]; h=a[k][l]; a[i][j]=g-s*(h+g*tau); a[k][l]=h+s*(g-h*tau);
-
-int
-inline
-Meigen(PQP_REAL vout[3][3], PQP_REAL dout[3], PQP_REAL a[3][3])
-{
-  int i;
-  PQP_REAL tresh,theta,tau,t,sm,s,h,g,c;
-  int nrot;
-  PQP_REAL b[3];
-  PQP_REAL z[3];
-  PQP_REAL v[3][3];
-  PQP_REAL d[3];
-
-  v[0][0] = v[1][1] = v[2][2] = 1.0;
-  v[0][1] = v[1][2] = v[2][0] = 0.0;
-  v[0][2] = v[1][0] = v[2][1] = 0.0;
-  
-  b[0] = a[0][0]; d[0] = a[0][0]; z[0] = 0.0;
-  b[1] = a[1][1]; d[1] = a[1][1]; z[1] = 0.0;
-  b[2] = a[2][2]; d[2] = a[2][2]; z[2] = 0.0;
-
-  nrot = 0;
-
-  
-  for(i=0; i<50; i++)
-    {
-
-      printf("2\n");
-
-      sm=0.0; sm+=fabs(a[0][1]); sm+=fabs(a[0][2]); sm+=fabs(a[1][2]);
-      if (sm == 0.0) { McM(vout,v); VcV(dout,d); return i; }
-      
-      if (i < 3) tresh=0.2*sm/(3*3); else tresh=0.0;
-      
-      {
-	g = 100.0*rfabs(a[0][1]);  
-	if (i>3 && rfabs(d[0])+g==rfabs(d[0]) && rfabs(d[1])+g==rfabs(d[1]))
-	  a[0][1]=0.0;
-	else if (rfabs(a[0][1])>tresh)
-	  {
-	    h = d[1]-d[0];
-	    if (rfabs(h)+g == rfabs(h)) t=(a[0][1])/h;
-	    else
-	      {
-		theta=0.5*h/(a[0][1]);
-		t=1.0/(rfabs(theta)+sqrt(1.0+theta*theta));
-		if (theta < 0.0) t = -t;
-	      }
-	    c=1.0/sqrt(1+t*t); s=t*c; tau=s/(1.0+c); h=t*a[0][1];
-	    z[0] -= h; z[1] += h; d[0] -= h; d[1] += h;
-	    a[0][1]=0.0;
-	    ROT(a,0,2,1,2); ROT(v,0,0,0,1); ROT(v,1,0,1,1); ROT(v,2,0,2,1); 
-	    nrot++;
-	  }
-      }
-
-      {
-	g = 100.0*rfabs(a[0][2]);
-	if (i>3 && rfabs(d[0])+g==rfabs(d[0]) && rfabs(d[2])+g==rfabs(d[2]))
-	  a[0][2]=0.0;
-	else if (rfabs(a[0][2])>tresh)
-	  {
-	    h = d[2]-d[0];
-	    if (rfabs(h)+g == rfabs(h)) t=(a[0][2])/h;
-	    else
-	      {
-		theta=0.5*h/(a[0][2]);
-		t=1.0/(rfabs(theta)+sqrt(1.0+theta*theta));
-		if (theta < 0.0) t = -t;
-	      }
-	    c=1.0/sqrt(1+t*t); s=t*c; tau=s/(1.0+c); h=t*a[0][2];
-	    z[0] -= h; z[2] += h; d[0] -= h; d[2] += h;
-	    a[0][2]=0.0;
-	    ROT(a,0,1,1,2); ROT(v,0,0,0,2); ROT(v,1,0,1,2); ROT(v,2,0,2,2); 
-	    nrot++;
-	  }
-      }
-
-
-      {
-	g = 100.0*rfabs(a[1][2]);
-	if (i>3 && rfabs(d[1])+g==rfabs(d[1]) && rfabs(d[2])+g==rfabs(d[2]))
-	  a[1][2]=0.0;
-	else if (rfabs(a[1][2])>tresh)
-	  {
-	    h = d[2]-d[1];
-	    if (rfabs(h)+g == rfabs(h)) t=(a[1][2])/h;
-	    else
-	      {
-		theta=0.5*h/(a[1][2]);
-		t=1.0/(rfabs(theta)+sqrt(1.0+theta*theta));
-		if (theta < 0.0) t = -t;
-	      }
-	    c=1.0/sqrt(1+t*t); s=t*c; tau=s/(1.0+c); h=t*a[1][2];
-	    z[1] -= h; z[2] += h; d[1] -= h; d[2] += h;
-	    a[1][2]=0.0;
-	    ROT(a,0,1,0,2); ROT(v,0,1,0,2); ROT(v,1,1,1,2); ROT(v,2,1,2,2); 
-	    nrot++;
-	  }
-      }
-
-      b[0] += z[0]; d[0] = b[0]; z[0] = 0.0;
-      b[1] += z[1]; d[1] = b[1]; z[1] = 0.0;
-      b[2] += z[2]; d[2] = b[2]; z[2] = 0.0;
-      
-    }
-
-  fprintf(stderr, "eigen: too many iterations in Jacobi transform (%d).\n", i);
-
-  return i;
-}
-
-#else
-
-
-
-#define ROTATE(a,i,j,k,l) g=a[i][j]; h=a[k][l]; a[i][j]=g-s*(h+g*tau); a[k][l]=h+s*(g-h*tau);
-
-void
-inline
-Meigen(PQP_REAL vout[3][3], PQP_REAL dout[3], PQP_REAL a[3][3])
-{
-  int n = 3;
-  int j,iq,ip,i;
-  PQP_REAL tresh,theta,tau,t,sm,s,h,g,c;
-  int nrot;
-  PQP_REAL b[3];
-  PQP_REAL z[3];
-  PQP_REAL v[3][3];
-  PQP_REAL d[3];
-  
-  Midentity(v);
-  for(ip=0; ip<n; ip++) 
-    {
-      b[ip] = a[ip][ip];
-      d[ip] = a[ip][ip];
-      z[ip] = 0.0;
-    }
-  
-  nrot = 0;
-  
-  for(i=0; i<50; i++)
-    {
-
-      sm=0.0;
-      for(ip=0;ip<n;ip++) for(iq=ip+1;iq<n;iq++) sm+=fabs(a[ip][iq]);
-      if (sm == 0.0)
-	{
-	  McM(vout, v);
-	  VcV(dout, d);
-	  return;
-	}
-      
-      
-      if (i < 3) tresh=(PQP_REAL)0.2*sm/(n*n);
-      else tresh=0.0;
-      
-      for(ip=0; ip<n; ip++) for(iq=ip+1; iq<n; iq++)
-	{
-	  g = (PQP_REAL)100.0*fabs(a[ip][iq]);
-	  if (i>3 && 
-	      fabs(d[ip])+g==fabs(d[ip]) && 
-	      fabs(d[iq])+g==fabs(d[iq]))
-	    a[ip][iq]=0.0;
-	  else if (fabs(a[ip][iq])>tresh)
-	    {
-	      h = d[iq]-d[ip];
-	      if (fabs(h)+g == fabs(h)) t=(a[ip][iq])/h;
-	      else
-		{
-		  theta=(PQP_REAL)0.5*h/(a[ip][iq]);
-		  t=(PQP_REAL)(1.0/(fabs(theta)+sqrt(1.0+theta*theta)));
-		  if (theta < 0.0) t = -t;
-		}
-	      c=(PQP_REAL)1.0/sqrt(1+t*t);
-	      s=t*c;
-	      tau=s/((PQP_REAL)1.0+c);
-	      h=t*a[ip][iq];
-	      z[ip] -= h;
-	      z[iq] += h;
-	      d[ip] -= h;
-	      d[iq] += h;
-	      a[ip][iq]=0.0;
-	      for(j=0;j<ip;j++) { ROTATE(a,j,ip,j,iq); } 
-	      for(j=ip+1;j<iq;j++) { ROTATE(a,ip,j,j,iq); } 
-	      for(j=iq+1;j<n;j++) { ROTATE(a,ip,j,iq,j); } 
-	      for(j=0;j<n;j++) { ROTATE(v,j,ip,j,iq); } 
-	      nrot++;
-	    }
-	}
-      for(ip=0;ip<n;ip++)
-	{
-	  b[ip] += z[ip];
-	  d[ip] = b[ip];
-	  z[ip] = 0.0;
-	}
-    }
-
-  fprintf(stderr, "eigen: too many iterations in Jacobi transform.\n");
-
-  return;
-}
-
-
-#endif
-
-#endif
-/* MATVEC_H */
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/falling/falling.dsp b/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/falling/falling.dsp
deleted file mode 100644
index f7108cdd472bd3eb69b2e77497978756cf28b4b1..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/falling/falling.dsp
+++ /dev/null
@@ -1,95 +0,0 @@
-# Microsoft Developer Studio Project File - Name="falling" - Package Owner=<4>
-# Microsoft Developer Studio Generated Build File, Format Version 5.00
-# ** DO NOT EDIT **
-
-# TARGTYPE "Win32 (x86) Console Application" 0x0103
-
-CFG=falling - Win32 Debug
-!MESSAGE This is not a valid makefile. To build this project using NMAKE,
-!MESSAGE use the Export Makefile command and run
-!MESSAGE 
-!MESSAGE NMAKE /f "falling.mak".
-!MESSAGE 
-!MESSAGE You can specify a configuration when running NMAKE
-!MESSAGE by defining the macro CFG on the command line. For example:
-!MESSAGE 
-!MESSAGE NMAKE /f "falling.mak" CFG="falling - Win32 Debug"
-!MESSAGE 
-!MESSAGE Possible choices for configuration are:
-!MESSAGE 
-!MESSAGE "falling - Win32 Release" (based on "Win32 (x86) Console Application")
-!MESSAGE "falling - Win32 Debug" (based on "Win32 (x86) Console Application")
-!MESSAGE 
-
-# Begin Project
-# PROP Scc_ProjName ""
-# PROP Scc_LocalPath ""
-CPP=xicl5.exe
-RSC=rc.exe
-
-!IF  "$(CFG)" == "falling - Win32 Release"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir "Release"
-# PROP BASE Intermediate_Dir "Release"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 0
-# PROP Output_Dir "./"
-# PROP Intermediate_Dir "Release"
-# PROP Target_Dir ""
-# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
-# ADD CPP /nologo /W3 /GX /O2 /I "..\..\include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
-# ADD BASE RSC /l 0x409 /d "NDEBUG"
-# ADD RSC /l 0x409 /d "NDEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-LINK32=xilink5.exe
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
-# ADD LINK32 glut32.lib opengl32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib pqp.lib /nologo /subsystem:console /machine:I386 /libpath:"..\..\lib"
-
-!ELSEIF  "$(CFG)" == "falling - Win32 Debug"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir "Debug"
-# PROP BASE Intermediate_Dir "Debug"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 1
-# PROP Output_Dir "./"
-# PROP Intermediate_Dir "Debug"
-# PROP Target_Dir ""
-# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
-# ADD CPP /nologo /W3 /Gm /GX /Zi /Od /I "..\..\include" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
-# ADD BASE RSC /l 0x409 /d "_DEBUG"
-# ADD RSC /l 0x409 /d "_DEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-LINK32=xilink5.exe
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
-# ADD LINK32 glut32.lib opengl32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib pqp.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept /libpath:"..\..\lib"
-
-!ENDIF 
-
-# Begin Target
-
-# Name "falling - Win32 Release"
-# Name "falling - Win32 Debug"
-# Begin Source File
-
-SOURCE=.\main.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=.\model.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=.\model.h
-# End Source File
-# End Target
-# End Project
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/falling/falling.plg b/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/falling/falling.plg
deleted file mode 100644
index b133bcb0471035b149a109f3cdd2904a302b85a1..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/falling/falling.plg
+++ /dev/null
@@ -1,21 +0,0 @@
---------------------Configuration: falling - Win32 Release--------------------
-Begining build with project "C:\WIN95\DESKTOP\PQP_v1.2.1\demos\falling\falling.dsp", at root.
-Active configuration is Win32 (x86) Console Application (based on Win32 (x86) Console Application)
-
-Project's tools are:
-			"32-bit C/C++ Compiler for 80x86" with flags "/nologo /ML /W3 /GX /O2 /I "..\..\include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /Fp"Release/falling.pch" /YX /Fo"Release/" /Fd"Release/" /FD /c "
-			"Win32 Resource Compiler" with flags "/l 0x409 /d "NDEBUG" "
-			"Browser Database Maker" with flags "/nologo /o"./falling.bsc" "
-			"COFF Linker for 80x86" with flags "glut32.lib opengl32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib pqp.lib /nologo /subsystem:console /incremental:no /pdb:"./falling.pdb" /machine:I386 /out:"./falling.exe" /libpath:"..\..\lib" "
-			"Custom Build" with flags ""
-			"<Component 0xa>" with flags ""
-
-Creating temp file "C:\WIN95\TEMP\RSP4360.TMP" with contents <glut32.lib opengl32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib pqp.lib /nologo /subsystem:console /incremental:no /pdb:"./falling.pdb" /machine:I386 /out:"./falling.exe" /libpath:"..\..\lib" 
-.\Release\main.obj
-.\Release\model.obj>
-Creating command line "link.exe @C:\WIN95\TEMP\RSP4360.TMP" 
-Linking...
-
-
-
-falling.exe - 0 error(s), 0 warning(s)
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/falling/main.cpp b/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/falling/main.cpp
deleted file mode 100644
index ee0ea92e25150f7d6d3523a8f5c6ab71934f599e..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/falling/main.cpp
+++ /dev/null
@@ -1,537 +0,0 @@
-/*************************************************************************\
-
-  Copyright 1999 The University of North Carolina at Chapel Hill.
-  All Rights Reserved.
-
-  Permission to use, copy, modify and distribute this software and its
-  documentation for educational, research and non-profit purposes, without
-  fee, and without a written agreement is hereby granted, provided that the
-  above copyright notice and the following three paragraphs appear in all
-  copies.
-
-  IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE
-  LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
-  CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE
-  USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY
-  OF NORTH CAROLINA HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
-  DAMAGES.
-
-  THE UNIVERSITY OF NORTH CAROLINA SPECIFICALLY DISCLAIM ANY
-  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE
-  PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
-  NORTH CAROLINA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
-  UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-
-  The authors may be contacted via:
-
-  US Mail:             E. Larsen
-                       Department of Computer Science
-                       Sitterson Hall, CB #3175
-                       University of N. Carolina
-                       Chapel Hill, NC 27599-3175
-
-  Phone:               (919)962-1749
-
-  EMail:               geom@cs.unc.edu
-
-
-\**************************************************************************/
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <math.h>
-#include <GL/glut.h>
-#include "model.h"
-#include "PQP.h"
-#include "MatVec.h"
-
-PQP_Model *torus1_tested,*torus2_tested;
-Model     *torus1_drawn, *torus2_drawn;
-
-int mode;
-double beginx, beginy;
-double dis = 10.0, azim = 0.0, elev = 0.0;
-double ddis = 0.0, dazim = 0.0, delev = 0.0;
-
-int animating = 1;
-int step = 0;
-int number_of_steps;
-int query_type = 0;
-double tolerance = .05;
-
-PQP_REAL (*R1)[3][3];
-PQP_REAL (*T1)[3];
-PQP_REAL (*R2)[3][3];
-PQP_REAL (*T2)[3];
-
-void
-init_viewer_window()
-{
-  GLfloat Ambient[] = { 0.2f, 0.2f, 0.2f, 1.0f };  
-  GLfloat Diffuse[] = { 0.8f, 0.8f, 0.8f, 1.0f };  
-  GLfloat Specular[] = { 0.1f, 0.1f, 0.1f, 1.0f };   
-  GLfloat SpecularExp[] = { 50 };              
-  GLfloat Emission[] = { 0.1f, 0.1f, 0.1f, 1.0f };   
-
-  glMaterialfv(GL_FRONT, GL_AMBIENT, Ambient);
-  glMaterialfv(GL_FRONT, GL_DIFFUSE, Diffuse);
-  glMaterialfv(GL_FRONT, GL_SPECULAR, Specular);
-  glMaterialfv(GL_FRONT, GL_SHININESS, SpecularExp);
-  glMaterialfv(GL_FRONT, GL_EMISSION, Emission);
-
-  glMaterialfv(GL_BACK, GL_AMBIENT, Ambient);
-  glMaterialfv(GL_BACK, GL_DIFFUSE, Diffuse);
-  glMaterialfv(GL_BACK, GL_SPECULAR, Specular);
-  glMaterialfv(GL_BACK, GL_SHININESS, SpecularExp);
-  glMaterialfv(GL_BACK, GL_EMISSION, Emission);
-
-  glColorMaterial(GL_FRONT_AND_BACK, GL_DIFFUSE);
-
-  glEnable(GL_COLOR_MATERIAL);
-
-  GLfloat light_position[] = { 1.0, 1.0, 1.0, 0.0 };
-  glLightfv(GL_LIGHT0, GL_POSITION, light_position);
-  glEnable(GL_LIGHT0);
-  glEnable(GL_LIGHTING);
-  glLightModeli(GL_LIGHT_MODEL_TWO_SIDE, GL_TRUE);
-
-  glDepthFunc(GL_LEQUAL);
-  glEnable(GL_DEPTH_TEST);
-  glEnable(GL_CULL_FACE);
-  glCullFace(GL_BACK);
-
-  glShadeModel(GL_FLAT);
-  glClearColor(0.0, 0.0, 0.0, 0.0);
-
-  glMatrixMode(GL_PROJECTION);
-  glLoadIdentity();
-  glFrustum(-0.004,0.004,-0.004,0.004,.01,100.0);
-
-  glMatrixMode(GL_MODELVIEW);
-}
-
-void
-cb_mouse(int _b, int _s, int _x, int _y)
-{
-  if (_s == GLUT_UP)
-  {
-    dis += ddis;
-    if (dis < .1) dis = .1;
-    azim += dazim;
-    elev += delev;
-    ddis = 0.0;
-    dazim = 0.0;
-    delev = 0.0;
-    return;
-  }
-
-  if (_b == GLUT_RIGHT_BUTTON)
-  {
-    mode = 0;
-    beginy = _y;
-    return;
-  }
-  else
-  {
-    mode = 1;
-    beginx = _x;
-    beginy = _y;
-  }
-}
-
-void
-cb_motion(int _x, int _y)
-{
-  if (mode == 0)
-  {
-    ddis = dis * (double)(_y - beginy)/200.0;
-  }
-  else
-  {
-    dazim = (_x - beginx)/5;
-    delev = (_y - beginy)/5;      
-  }
-  
-  glutPostRedisplay();
-}
-
-void cb_keyboard(unsigned char key, int x, int y) 
-{
-  switch(key) 
-  {
-  case 'q': 
-    delete torus1_drawn; 
-    delete torus2_drawn; 
-    delete torus1_tested;
-    delete torus2_tested;
-    delete [] R1;
-    delete [] T1;
-    delete [] R2;
-    delete [] T2;
-    exit(0);
-  case '0': query_type = 0; break;
-  case '1': query_type = 1; break;
-  case '2': query_type = 2; break;
-  case '3': query_type = 3; break;
-  case '-': 
-    tolerance -= .01; 
-    if (tolerance < 0.0) tolerance = 0.0; 
-    break;
-  case '=': 
-    tolerance += .01;
-    break;
-  default: animating = 1 - animating;
-  }
-
-  glutPostRedisplay();
-}
-
-void cb_idle()
-{
-  if (animating)
-  {
-    step = (step + 1) % number_of_steps;
-    glutPostRedisplay();
-  }
-}
-
-void
-BeginDraw()
-{
-  glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
-
-  glLoadIdentity(); 
-  glTranslatef(0.0, 0.0, -(dis+ddis));
-  glRotated(elev+delev, 1.0, 0.0, 0.0);
-  glRotated(azim+dazim, 0.0, 1.0, 0.0);
-  glRotated(90.0,-1.0,0.0,0.0);
-}
-
-void
-EndDraw()
-{
-  glFlush();
-  glutSwapBuffers();
-}
-
-inline void glVertex3v(float V[3]) { glVertex3fv(V); }
-inline void glVertex3v(double V[3]) { glVertex3dv(V); }
-
-void
-cb_display()
-{
-  BeginDraw();
-
-  int i;
-  PQP_CollideResult cres;
-  PQP_DistanceResult dres;
-  PQP_ToleranceResult tres;
-  double oglm[16];
-
-  switch(query_type)
-  {
-  case 0:
-
-    // draw model 1
-
-    glColor3f(1,1,1);                 // setup color and transform
-    MVtoOGL(oglm,R1[step],T1[step]);
-    glPushMatrix();
-    glMultMatrixd(oglm);
-    torus1_drawn->Draw();             // do gl rendering
-    glPopMatrix();                    // restore transform
-
-    // draw model 2
-
-    MVtoOGL(oglm,R2[step],T2[step]);
-    glPushMatrix();
-    glMultMatrixd(oglm);
-    torus2_drawn->Draw();
-    glPopMatrix();
-
-    break;
-
-  case 1:
-
-    // perform collision query
-    
-    PQP_Collide(&cres,R1[step],T1[step],torus1_tested,
-                      R2[step],T2[step],torus2_tested,
-		                  PQP_ALL_CONTACTS);
-
-    // draw model 1 and its overlapping tris
-
-    MVtoOGL(oglm,R1[step],T1[step]);
-    glPushMatrix();
-    glMultMatrixd(oglm);
-    glColor3f(1,1,1);
-    torus1_drawn->Draw();
-    glColor3f(1,0,0);
-    for(i = 0; i < cres.NumPairs(); i++)
-    {
-      torus1_drawn->DrawTri(cres.Id1(i));
-    }
-    glPopMatrix();
-
-    // draw model 2 and its overlapping tris
-
-    MVtoOGL(oglm,R2[step],T2[step]);
-    glPushMatrix();
-    glMultMatrixd(oglm);
-    glColor3f(1,1,1);
-    torus2_drawn->Draw();
-    glColor3f(1,0,0);
-    for(i = 0; i < cres.NumPairs(); i++)
-    {
-      torus2_drawn->DrawTri(cres.Id2(i));
-    }
-    glPopMatrix();
-    
-    break;
-
-  case 2:
-
-    // perform distance query
-    
-    PQP_Distance(&dres,R1[step],T1[step],torus1_tested,
-                       R2[step],T2[step],torus2_tested,
-                       0.0,0.0);
-
-    // draw models
-
-    glColor3f(1,1,1);
-
-    MVtoOGL(oglm,R1[step],T1[step]);
-    glPushMatrix();
-    glMultMatrixd(oglm);
-    torus1_drawn->Draw();
-    glPopMatrix();
-
-    MVtoOGL(oglm,R2[step],T2[step]);
-    glPushMatrix();
-    glMultMatrixd(oglm);
-    torus2_drawn->Draw();
-    glPopMatrix();
-
-    // draw the closest points as small spheres
-    
-    glColor3f(0,1,0);
-    
-    PQP_REAL P1[3],P2[3],V1[3],V2[3];
-    VcV(P1,dres.P1());
-    VcV(P2,dres.P2());
-
-    // each point is in the space of its model;
-    // transform to world space
-    
-    MxVpV(V1,R1[step],P1,T1[step]);
-    
-    glPushMatrix();
-    glTranslated(V1[0],V1[1],V1[2]);
-    glutSolidSphere(.01,15,15);
-    glPopMatrix();                                                               
-    
-    MxVpV(V2,R2[step],P2,T2[step]);
-    
-    glPushMatrix();
-    glTranslated(V2[0],V2[1],V2[2]);
-    glutSolidSphere(.01,15,15);
-    glPopMatrix();
-    
-    // draw the line between the closest points
-    
-    glDisable(GL_LIGHTING);
-    glBegin(GL_LINES);
-    glVertex3v(V1);
-    glVertex3v(V2);
-    glEnd();
-    glEnable(GL_LIGHTING);
-    break;
-
-  case 3:
-
-    // perform tolerance query
-    
-    PQP_Tolerance(&tres,R1[step],T1[step],torus1_tested,
-                        R2[step],T2[step],torus2_tested,
-                        tolerance);
-    
-    if (tres.CloserThanTolerance())
-      glColor3f(0,0,1);
-    else 
-      glColor3f(1,1,1);
-
-    // draw models
-
-    MVtoOGL(oglm,R1[step],T1[step]);
-    glPushMatrix();
-    glMultMatrixd(oglm);
-    torus1_drawn->Draw();
-    glPopMatrix();
-
-    MVtoOGL(oglm,R2[step],T2[step]);
-    glPushMatrix();
-    glMultMatrixd(oglm);
-    torus2_drawn->Draw();
-    glPopMatrix();
-
-    break;
-
-  }
-
-  EndDraw();
-}
-
-void LoadPath(PQP_REAL (* &R)[3][3], PQP_REAL (* &T)[3], char *filename) 
-{
-  FILE *fp;
-  if ( (fp = fopen(filename, "r")) == NULL ) 
-  {
-    fprintf(stderr, "Error opening file %s\n", filename);
-    exit(1);
-  }
-  fscanf(fp, "%d", &number_of_steps);
-
-  R = new PQP_REAL[number_of_steps][3][3];
-  T = new PQP_REAL[number_of_steps][3];
-
-  for (int i = 0; i < number_of_steps; i++) 
-  {
-    double a, b, c;
-    fscanf(fp,"%lf %lf %lf",&a,&b,&c);
-    R[i][0][0] = (PQP_REAL)a;
-    R[i][0][1] = (PQP_REAL)b;
-    R[i][0][2] = (PQP_REAL)c;
-    fscanf(fp,"%lf %lf %lf",&a,&b,&c);
-    R[i][1][0] = (PQP_REAL)a;
-    R[i][1][1] = (PQP_REAL)b;
-    R[i][1][2] = (PQP_REAL)c;
-    fscanf(fp,"%lf %lf %lf",&a,&b,&c);
-    R[i][2][0] = (PQP_REAL)a;
-    R[i][2][1] = (PQP_REAL)b;
-    R[i][2][2] = (PQP_REAL)c;
-    fscanf(fp,"%lf %lf %lf",&a,&b,&c);
-    T[i][0] = (PQP_REAL)a;
-    T[i][1] = (PQP_REAL)b;
-    T[i][2] = (PQP_REAL)c;
-  }
-
-  fclose(fp);
-}
-
-void main(int argc, char **argv)
-{
-  // init glut
-
-  glutInit(&argc, argv);
-  glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB | GLUT_DEPTH | GLUT_MULTISAMPLE);
-
-  // create the window
-
-  glutCreateWindow("PQP Demo - Falling");
-
-  // set OpenGL graphics state -- material props, perspective, etc.
-
-  init_viewer_window();
-
-  // set the callbacks
-
-  glutDisplayFunc(cb_display);
-  glutMouseFunc(cb_mouse);
-  glutMotionFunc(cb_motion);  
-  glutKeyboardFunc(cb_keyboard);
-  glutIdleFunc(cb_idle);
-
-  // create models
-
-  FILE *fp;
-  int ntris, i;
-  double a,b,c;
-  PQP_REAL p1[3],p2[3],p3[3];
-
-  // model 1
-
-  torus1_drawn = new Model("torus1.tris");
-
-  torus1_tested = new PQP_Model();
-
-  fp = fopen("torus1.tris","r");
-  fscanf(fp,"%d",&ntris);
-
-  torus1_tested->BeginModel();
-  for (i = 0; i < ntris; i++)
-  {
-    fscanf(fp,"%lf %lf %lf",&a,&b,&c);
-    p1[0] = (PQP_REAL)a;
-    p1[1] = (PQP_REAL)b;
-    p1[2] = (PQP_REAL)c;
-    fscanf(fp,"%lf %lf %lf",&a,&b,&c);
-    p2[0] = (PQP_REAL)a;
-    p2[1] = (PQP_REAL)b;
-    p2[2] = (PQP_REAL)c;
-    fscanf(fp,"%lf %lf %lf",&a,&b,&c);
-    p3[0] = (PQP_REAL)a;
-    p3[1] = (PQP_REAL)b;
-    p3[2] = (PQP_REAL)c;
-    torus1_tested->AddTri(p1,p2,p3,i);
-  }
-  torus1_tested->EndModel();  
-
-  fclose(fp);
-
-  // model 2
-
-  torus2_drawn = new Model("torus2.tris");
-
-  torus2_tested = new PQP_Model();
-
-  fp = fopen("torus2.tris","r");
-  fscanf(fp,"%d",&ntris);
-
-  torus2_tested->BeginModel();
-  for (i = 0; i < ntris; i++)
-  {
-    fscanf(fp,"%lf %lf %lf",&a,&b,&c);
-    p1[0] = (PQP_REAL)a;
-    p1[1] = (PQP_REAL)b;
-    p1[2] = (PQP_REAL)c;
-    fscanf(fp,"%lf %lf %lf",&a,&b,&c);
-    p2[0] = (PQP_REAL)a;
-    p2[1] = (PQP_REAL)b;
-    p2[2] = (PQP_REAL)c;
-    fscanf(fp,"%lf %lf %lf",&a,&b,&c);
-    p3[0] = (PQP_REAL)a;
-    p3[1] = (PQP_REAL)b;
-    p3[2] = (PQP_REAL)c;
-    torus2_tested->AddTri(p1,p2,p3,i);
-  }
-  torus2_tested->EndModel();  
-
-  fclose(fp);
-
-  // load paths
-
-  LoadPath(R1,T1,"torus1.path");
-  LoadPath(R2,T2,"torus2.path");
-
-  // print instructions
-
-  printf("PQP Demo - Falling:\n"
-         "Press:\n"
-         "0 - no proximity query, just animation\n"
-         "1 - collision query\n"
-         "    overlapping triangles shown in red.\n"
-         "2 - distance query\n"
-         "    closest points connected by a line.\n"
-         "3 - tolerance query\n"
-         "    reduce/increase tolerance with -/= keys.\n"
-         "    models turn blue when closer than the tolerance.\n"
-         "any other key to toggle animation on/off\n");
-
-  // Enter the main loop.
-
-  glutMainLoop();
-}
-
-
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/falling/model.cpp b/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/falling/model.cpp
deleted file mode 100644
index e145b31baebd18fa43a6ca0a86314a3b230c1fb8..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/falling/model.cpp
+++ /dev/null
@@ -1,144 +0,0 @@
-/*************************************************************************\
-
-  Copyright 1999 The University of North Carolina at Chapel Hill.
-  All Rights Reserved.
-
-  Permission to use, copy, modify and distribute this software and its
-  documentation for educational, research and non-profit purposes, without
-  fee, and without a written agreement is hereby granted, provided that the
-  above copyright notice and the following three paragraphs appear in all
-  copies.
-
-  IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE
-  LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
-  CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE
-  USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY
-  OF NORTH CAROLINA HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
-  DAMAGES.
-
-  THE UNIVERSITY OF NORTH CAROLINA SPECIFICALLY DISCLAIM ANY
-  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE
-  PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
-  NORTH CAROLINA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
-  UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-
-  The authors may be contacted via:
-
-  US Mail:             E. Larsen
-                       Department of Computer Science
-                       Sitterson Hall, CB #3175
-                       University of N. Carolina
-                       Chapel Hill, NC 27599-3175
-
-  Phone:               (919)962-1749
-
-  EMail:               geom@cs.unc.edu
-
-
-\**************************************************************************/
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <math.h>
-#include "GL/glut.h"
-#include "model.h"
-
-inline
-void
-VmV(double Vr[3], const double V1[3], const double V2[3])
-{
-  Vr[0] = V1[0] - V2[0];
-  Vr[1] = V1[1] - V2[1];
-  Vr[2] = V1[2] - V2[2];
-}
-
-inline
-void
-VcrossV(double Vr[3], const double V1[3], const double V2[3])
-{
-  Vr[0] = V1[1]*V2[2] - V1[2]*V2[1];
-  Vr[1] = V1[2]*V2[0] - V1[0]*V2[2];
-  Vr[2] = V1[0]*V2[1] - V1[1]*V2[0];
-}
-
-inline
-void
-Vnormalize(double V[3])
-{
-  double d = 1.0 / sqrt(V[0]*V[0] + V[1]*V[1] + V[2]*V[2]);
-  V[0] *= d;
-  V[1] *= d;
-  V[2] *= d;
-}
-
-Model::Model(char *tris_file)
-{
-  FILE *fp = fopen(tris_file,"r");
-  if (fp == NULL)
-  { 
-    fprintf(stderr,"Model Constructor: Couldn't open %s\n",tris_file); 
-    exit(-1); 
-  }
-
-  fscanf(fp,"%d",&ntris);
-  tri = new ModelTri[ntris];
-
-  int i;
-
-  for (i = 0; i < ntris; i++)
-  {
-    // read the tri verts
-
-    fscanf(fp,"%lf %lf %lf %lf %lf %lf %lf %lf %lf",
-           &tri[i].p0[0], &tri[i].p0[1], &tri[i].p0[2],
-           &tri[i].p1[0], &tri[i].p1[1], &tri[i].p1[2],
-           &tri[i].p2[0], &tri[i].p2[1], &tri[i].p2[2]);
-
-    // set the normal
-
-    double a[3],b[3];
-    VmV(a,tri[i].p1,tri[i].p0);
-    VmV(b,tri[i].p2,tri[i].p0);
-    VcrossV(tri[i].n,a,b);
-    Vnormalize(tri[i].n);
-  }
-  
-  fclose(fp);
-
-  // generate display list
-
-  display_list = glGenLists(1);
-  glNewList(display_list,GL_COMPILE);
-  glBegin(GL_TRIANGLES);
-  for (i = 0; i < ntris; i++)
-  {
-    glNormal3dv(tri[i].n);
-    glVertex3dv(tri[i].p0);
-    glVertex3dv(tri[i].p1);
-    glVertex3dv(tri[i].p2);
-  }
-  glEnd();
-  glEndList();  
-}
-
-Model::~Model()
-{
-  delete [] tri;
-}
-
-void
-Model::Draw()
-{
-  glCallList(display_list);
-}
-
-void
-Model::DrawTri(int index)
-{
-  glBegin(GL_TRIANGLES);
-  glVertex3dv(tri[index].p0);
-  glVertex3dv(tri[index].p1);
-  glVertex3dv(tri[index].p2);
-  glEnd();
-}
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/falling/model.h b/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/falling/model.h
deleted file mode 100644
index df352e4e8959b4902e5cab308060d13bac9c3c86..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/falling/model.h
+++ /dev/null
@@ -1,63 +0,0 @@
-/*************************************************************************\
-
-  Copyright 1999 The University of North Carolina at Chapel Hill.
-  All Rights Reserved.
-
-  Permission to use, copy, modify and distribute this software and its
-  documentation for educational, research and non-profit purposes, without
-  fee, and without a written agreement is hereby granted, provided that the
-  above copyright notice and the following three paragraphs appear in all
-  copies.
-
-  IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE
-  LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
-  CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE
-  USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY
-  OF NORTH CAROLINA HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
-  DAMAGES.
-
-  THE UNIVERSITY OF NORTH CAROLINA SPECIFICALLY DISCLAIM ANY
-  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE
-  PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
-  NORTH CAROLINA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
-  UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-
-  The authors may be contacted via:
-
-  US Mail:             E. Larsen
-                       Department of Computer Science
-                       Sitterson Hall, CB #3175
-                       University of N. Carolina
-                       Chapel Hill, NC 27599-3175
-
-  Phone:               (919)962-1749
-
-  EMail:               geom@cs.unc.edu
-
-
-\**************************************************************************/
-
-#ifndef MODEL_H
-#define MODEL_H
-
-struct ModelTri
-{
-  double p0[3], p1[3], p2[3];
-  double n[3];
-};
-
-class Model
-{
-  int ntris;
-  ModelTri *tri;
-  int display_list;
-
-public:
-  Model(char *tris_file);
-  ~Model();
-  void Draw();
-  void DrawTri(int index);
-};
-
-#endif
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/falling/torus1.path b/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/falling/torus1.path
deleted file mode 100644
index 3cc39f84bbb1106f2e57985b60de7a0827cc315e..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/falling/torus1.path
+++ /dev/null
@@ -1,11991 +0,0 @@
-2398
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.559976
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.559927
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.559855
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.559758
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.559637
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.559492
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.559323
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.559129
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.558912
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.55867
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.558404
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.558114
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.557799
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.557461
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.557098
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.556711
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.5563
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.555864
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.555405
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.554921
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.554413
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.553881
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.553325
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.552744
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.55214
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.551511
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.550858
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.550181
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.549479
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.548754
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.548004
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.54723
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.546432
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.54561
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.544763
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.543892
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.542998
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.542079
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.541135
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.540168
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.539176
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.53816
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.537121
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.536056
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.534968
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.533855
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.532719
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.531558
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.530373
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.529163
-
-0.990268 0.139173 0
--0.139173 0.990268 0
-0 0 1
-0 0 0.52793
-
-0.989936 0.141515 0.000593893
--0.141515 0.989936 -0.000519689
--0.00066146 0.000430414 1
-7.91318e-05 -5.04108e-06 0.526793
-
-0.989158 0.146842 0.00196527
--0.146839 0.989159 -0.00174679
--0.00220047 0.00143928 0.999997
-0.000262615 -2.14122e-05 0.525795
-
-0.987984 0.154504 0.00392549
--0.154491 0.987988 -0.00349908
--0.00441897 0.00285059 0.999986
-0.000525427 -4.36487e-05 0.524893
-
-0.986747 0.16216 0.00588377
--0.16213 0.986755 -0.00525338
--0.00665773 0.00422982 0.999969
-0.000788239 -6.58851e-05 0.523967
-
-0.985446 0.169809 0.00784009
--0.169755 0.985461 -0.00700965
--0.00891641 0.00557674 0.999945
-0.00105105 -8.81216e-05 0.523016
-
-0.984081 0.177449 0.00979444
--0.177366 0.984106 -0.0087679
--0.0111946 0.00689113 0.999914
-0.00131386 -0.000110358 0.522042
-
-0.982653 0.185082 0.0117468
--0.184963 0.982689 -0.0105281
--0.013492 0.00817276 0.999876
-0.00157667 -0.000132595 0.521043
-
-0.981161 0.192706 0.0136971
--0.192544 0.981211 -0.0122903
--0.0158082 0.00942143 0.999831
-0.00183949 -0.000154831 0.52002
-
-0.979606 0.20032 0.0156455
--0.200109 0.979673 -0.0140543
--0.0181428 0.0106369 0.999779
-0.0021023 -0.000177067 0.518973
-
-0.977987 0.207924 0.0175917
--0.207658 0.978073 -0.0158203
--0.0204955 0.011819 0.99972
-0.00236511 -0.000199304 0.517902
-
-0.976304 0.215518 0.019536
--0.215191 0.976414 -0.0175882
--0.0228658 0.0129675 0.999654
-0.00262792 -0.00022154 0.516807
-
-0.974559 0.223101 0.0214781
--0.222706 0.974694 -0.019358
--0.0252534 0.0140822 0.999582
-0.00289073 -0.000243777 0.515687
-
-0.97275 0.230673 0.0234182
--0.230203 0.972913 -0.0211297
--0.0276579 0.015163 0.999502
-0.00315355 -0.000266013 0.514543
-
-0.970877 0.238232 0.0253562
--0.237682 0.971073 -0.0229032
--0.030079 0.0162095 0.999416
-0.00341636 -0.00028825 0.513375
-
-0.970015 0.241539 0.0270236
--0.240942 0.970254 -0.0235414
--0.0319059 0.0163244 0.999358
-0.00374567 -0.000166828 0.512364
-
-0.970626 0.238937 0.028192
--0.238356 0.970918 -0.0224596
--0.0327385 0.0150802 0.99935
-0.00415481 0.00018866 0.511615
-
-0.972572 0.230798 0.0289044
--0.230293 0.972921 -0.0197626
--0.0326829 0.012564 0.999387
-0.00464566 0.000736041 0.511103
-
-0.975424 0.218374 0.0293345
--0.217984 0.975822 -0.015928
--0.0321035 0.00914215 0.999443
-0.00520252 0.00142812 0.510747
-
-0.978118 0.205913 0.0297574
--0.205637 0.978554 -0.0120928
--0.0316093 0.00570899 0.999484
-0.00575937 0.0021202 0.510367
-
-0.980652 0.193418 0.0301732
--0.193255 0.981114 -0.00825704
--0.0312004 0.00226616 0.999511
-0.00631622 0.00281228 0.509962
-
-0.983028 0.18089 0.0305819
--0.18084 0.983503 -0.00442071
--0.030877 -0.00118475 0.999522
-0.00687307 0.00350436 0.509534
-
-0.984714 0.17126 0.0317495
--0.171305 0.985217 -0.00132122
--0.0315065 -0.00413782 0.999495
-0.00753812 0.00418046 0.50924
-
-0.985627 0.165506 0.0338726
--0.16563 0.986188 0.000877665
--0.0332595 -0.00647538 0.999426
-0.00834163 0.00484375 0.50912
-
-0.985859 0.163451 0.0369643
--0.163642 0.986517 0.00216961
--0.0361113 -0.00818783 0.999314
-0.00928208 0.00549153 0.509174
-
-0.985392 0.165289 0.0410211
--0.165532 0.986201 0.00256789
--0.0400306 -0.00932065 0.999155
-0.0103621 0.00612824 0.509401
-
-0.984357 0.170116 0.0458363
--0.170396 0.985373 0.00223921
--0.0447849 -0.0100145 0.998946
-0.0115527 0.00675158 0.509761
-
-0.983276 0.174935 0.0506501
--0.175254 0.984521 0.00190724
--0.0495325 -0.010752 0.998715
-0.0127432 0.00737492 0.510097
-
-0.982149 0.179744 0.0554625
--0.180107 0.983646 0.00157196
--0.0542729 -0.0115331 0.99846
-0.0139338 0.00799827 0.510409
-
-0.980974 0.184545 0.0602734
--0.184954 0.982746 0.00123339
--0.0590058 -0.0123577 0.998181
-0.0151243 0.00862161 0.510697
-
-0.979753 0.189335 0.0650825
--0.189794 0.981823 0.000891545
--0.0637307 -0.0132258 0.997879
-0.0163149 0.00924495 0.510961
-
-0.978486 0.194116 0.0698898
--0.194629 0.980877 0.00054642
--0.0684472 -0.0141372 0.997555
-0.0175054 0.0098683 0.5112
-
-0.977172 0.198885 0.0746952
--0.199457 0.979907 0.000198027
--0.0731549 -0.015092 0.997206
-0.018696 0.0104916 0.511415
-
-0.975812 0.203644 0.0794986
--0.204279 0.978913 -0.000153627
--0.0778534 -0.01609 0.996835
-0.0198865 0.011115 0.511606
-
-0.974406 0.208392 0.0842998
--0.209094 0.977895 -0.000508535
--0.0825423 -0.0171311 0.99644
-0.0210771 0.0117383 0.511773
-
-0.972953 0.213127 0.0890987
--0.213902 0.976855 -0.000866689
--0.0872212 -0.0182152 0.996022
-0.0222677 0.0123617 0.511916
-
-0.971455 0.21785 0.0938953
--0.218704 0.97579 -0.00122808
--0.0918897 -0.0193422 0.995581
-0.0234582 0.012985 0.512034
-
-0.969911 0.222561 0.0986894
--0.223498 0.974703 -0.0015927
--0.0965473 -0.0205121 0.995117
-0.0246488 0.0136084 0.512128
-
-0.968321 0.227258 0.103481
--0.228286 0.973592 -0.00196055
--0.101194 -0.0217248 0.99463
-0.0258393 0.0142317 0.512199
-
-0.966685 0.231942 0.10827
--0.233066 0.972458 -0.00233161
--0.105828 -0.0229801 0.994119
-0.0270299 0.014855 0.512244
-
-0.965004 0.236612 0.113056
--0.237839 0.971301 -0.00270588
--0.110451 -0.0242778 0.993585
-0.0282204 0.0154784 0.512266
-
-0.963278 0.241268 0.117839
--0.242604 0.97012 -0.00308334
--0.115061 -0.025618 0.993028
-0.029411 0.0161017 0.512264
-
-0.961506 0.245909 0.122618
--0.247362 0.968917 -0.003464
--0.119659 -0.0270005 0.992448
-0.0306015 0.0167251 0.512237
-
-0.959689 0.250534 0.127395
--0.252112 0.96769 -0.00384784
--0.124243 -0.0284251 0.991845
-0.0317921 0.0173484 0.512186
-
-0.957827 0.255144 0.132169
--0.256854 0.966441 -0.00423486
--0.128814 -0.0298918 0.991218
-0.0329826 0.0179718 0.512111
-
-0.95592 0.259738 0.136939
--0.261589 0.965168 -0.00462504
--0.13337 -0.0314004 0.990569
-0.0341732 0.0185951 0.512012
-
-0.953969 0.264316 0.141705
--0.266315 0.963873 -0.00501838
--0.137912 -0.0329508 0.989896
-0.0353637 0.0192184 0.511889
-
-0.951973 0.268877 0.146468
--0.271033 0.962555 -0.00541486
--0.14244 -0.0345428 0.989201
-0.0365543 0.0198418 0.511741
-
-0.949932 0.27342 0.151227
--0.275742 0.961214 -0.00581449
--0.146952 -0.0361763 0.988482
-0.0377448 0.0204651 0.511569
-
-0.947848 0.277946 0.155983
--0.280443 0.959851 -0.00621725
--0.151448 -0.0378512 0.98774
-0.0389354 0.0210885 0.511373
-
-0.945719 0.282454 0.160734
--0.285135 0.958464 -0.00662314
--0.155928 -0.0395673 0.986976
-0.040126 0.0217118 0.511153
-
-0.943546 0.286944 0.165481
--0.289819 0.957056 -0.00703213
--0.160393 -0.0413245 0.986188
-0.0413165 0.0223352 0.510909
-
-0.941329 0.291415 0.170224
--0.294494 0.955624 -0.00744424
--0.16484 -0.0431225 0.985377
-0.0425071 0.0229585 0.51064
-
-0.939069 0.295866 0.174963
--0.29916 0.954171 -0.00785944
--0.16927 -0.0449614 0.984544
-0.0436976 0.0235818 0.510348
-
-0.936766 0.300298 0.179697
--0.303817 0.952695 -0.00827773
--0.173683 -0.0468408 0.983687
-0.0448882 0.0242052 0.510031
-
-0.934419 0.30471 0.184427
--0.308464 0.951196 -0.00869909
--0.178077 -0.0487606 0.982808
-0.0460787 0.0248285 0.50969
-
-0.932029 0.309102 0.189152
--0.313103 0.949676 -0.00912353
--0.182454 -0.0507207 0.981905
-0.0472693 0.0254519 0.509325
-
-0.929596 0.313472 0.193873
--0.317731 0.948133 -0.00955103
--0.186811 -0.0527209 0.98098
-0.0484598 0.0260752 0.508935
-
-0.92712 0.317822 0.198588
--0.322351 0.946568 -0.00998157
--0.19115 -0.054761 0.980032
-0.0496504 0.0266986 0.508522
-
-0.924602 0.32215 0.203299
--0.32696 0.944981 -0.0104152
--0.195469 -0.0568408 0.979061
-0.0508409 0.0273219 0.508084
-
-0.922042 0.326456 0.208004
--0.33156 0.943372 -0.0108518
--0.199768 -0.0589602 0.978068
-0.0520315 0.0279453 0.507622
-
-0.919439 0.33074 0.212705
--0.33615 0.941741 -0.0112914
--0.204047 -0.0611189 0.977051
-0.053222 0.0285686 0.507136
-
-0.916794 0.335001 0.2174
--0.34073 0.940088 -0.0117341
--0.208306 -0.0633168 0.976012
-0.0544126 0.0291919 0.506625
-
-0.914108 0.339239 0.222089
--0.345299 0.938414 -0.0121797
--0.212543 -0.0655537 0.97495
-0.0556031 0.0298153 0.506091
-
-0.91138 0.343453 0.226773
--0.349859 0.936717 -0.0126284
--0.21676 -0.0678294 0.973866
-0.0567937 0.0304386 0.505532
-
-0.908611 0.347644 0.231452
--0.354408 0.934999 -0.01308
--0.220954 -0.0701437 0.972758
-0.0579843 0.031062 0.504949
-
-0.905801 0.35181 0.236124
--0.358947 0.93326 -0.0135346
--0.225127 -0.0724963 0.971629
-0.0591748 0.0316853 0.504342
-
-0.90295 0.355952 0.240791
--0.363475 0.931499 -0.0139922
--0.229277 -0.0748872 0.970476
-0.0603654 0.0323087 0.503711
-
-0.900058 0.360068 0.245452
--0.367992 0.929717 -0.0144528
--0.233405 -0.077316 0.969301
-0.0615559 0.032932 0.503055
-
-0.897126 0.36416 0.250106
--0.372499 0.927913 -0.0149162
--0.237509 -0.0797826 0.968103
-0.0627465 0.0335553 0.502376
-
-0.894153 0.368226 0.254755
--0.376994 0.926088 -0.0153826
--0.24159 -0.0822867 0.966883
-0.063937 0.0341787 0.501672
-
-0.891141 0.372265 0.259397
--0.381479 0.924242 -0.015852
--0.245647 -0.0848281 0.965641
-0.0651276 0.034802 0.500944
-
-0.888088 0.376278 0.264033
--0.385952 0.922374 -0.0163242
--0.24968 -0.0874067 0.964376
-0.0663181 0.0354254 0.500191
-
-0.884997 0.380265 0.268662
--0.390414 0.920486 -0.0167994
--0.253688 -0.0900221 0.963088
-0.0675087 0.0360487 0.499415
-
-0.882963 0.382894 0.271603
--0.393034 0.919341 -0.0183206
--0.256711 -0.090573 0.962235
-0.0686088 0.0366123 0.49888
-
-0.882191 0.384232 0.272222
--0.39373 0.918983 -0.021151
--0.258294 -0.0885226 0.962002
-0.0695979 0.0370989 0.498681
-
-0.882693 0.384285 0.270516
--0.392514 0.919398 -0.0252899
--0.25843 -0.0838582 0.962383
-0.0704762 0.0375077 0.498817
-
-0.884286 0.383 0.267114
--0.389492 0.920526 -0.0304723
--0.257556 -0.0770925 0.963183
-0.0712643 0.0378552 0.499194
-
-0.886629 0.380739 0.262538
--0.385207 0.922113 -0.0363728
--0.255939 -0.0688823 0.964236
-0.0719974 0.038164 0.49973
-
-0.888961 0.378431 0.257951
--0.380927 0.923638 -0.0422742
--0.254251 -0.0606805 0.965233
-0.0727305 0.0384729 0.500241
-
-0.891279 0.376077 0.253353
--0.376654 0.925101 -0.048176
--0.252495 -0.0524879 0.966174
-0.0734636 0.0387818 0.500729
-
-0.893584 0.373676 0.248744
--0.372387 0.926501 -0.0540781
--0.250669 -0.0443056 0.967059
-0.0741968 0.0390906 0.501192
-
-0.895876 0.371228 0.244124
--0.368128 0.927838 -0.0599799
--0.248774 -0.0361343 0.967887
-0.0749299 0.0393995 0.501631
-
-0.898153 0.368733 0.239494
--0.363877 0.929114 -0.0658813
--0.24681 -0.0279749 0.96866
-0.075663 0.0397083 0.502046
-
-0.901867 0.362712 0.234682
--0.356305 0.93169 -0.0707163
--0.244301 -0.0198416 0.969497
-0.0764947 0.0402186 0.502622
-
-0.905528 0.356625 0.229864
--0.348728 0.934174 -0.0755532
--0.241677 -0.0117446 0.970286
-0.0773265 0.0407288 0.503173
-
-0.909134 0.350473 0.225041
--0.341148 0.936566 -0.0803919
--0.238941 -0.00368536 0.971027
-0.0781582 0.0412391 0.503701
-
-0.912685 0.344256 0.220212
--0.333567 0.938866 -0.0852321
--0.236092 0.00433451 0.971721
-0.07899 0.0417494 0.504204
-
-0.916179 0.337975 0.215379
--0.325984 0.941074 -0.0900735
--0.23313 0.0123134 0.972368
-0.0798217 0.0422596 0.504684
-
-0.919616 0.331631 0.21054
--0.318402 0.943192 -0.0949161
--0.230057 0.0202498 0.972966
-0.0806534 0.0427699 0.505139
-
-0.922994 0.325223 0.205697
--0.310822 0.945218 -0.0997594
--0.226873 0.0281422 0.973518
-0.0814852 0.0432801 0.505569
-
-0.926313 0.318753 0.20085
--0.303244 0.947154 -0.104603
--0.223579 0.0359888 0.974021
-0.0823169 0.0437904 0.505976
-
-0.929571 0.312222 0.195999
--0.295671 0.949 -0.109448
--0.220175 0.0437883 0.974477
-0.0831486 0.0443006 0.506358
-
-0.932767 0.305629 0.191143
--0.288102 0.950755 -0.114292
--0.216661 0.0515391 0.974885
-0.0839804 0.0448109 0.506717
-
-0.935901 0.298976 0.186285
--0.28054 0.95242 -0.119136
--0.21304 0.0592397 0.975246
-0.0848121 0.0453211 0.507051
-
-0.938972 0.292263 0.181422
--0.272985 0.953996 -0.12398
--0.209311 0.0668885 0.975559
-0.0856438 0.0458314 0.507361
-
-0.941978 0.285492 0.176557
--0.265439 0.955482 -0.128824
--0.205475 0.074484 0.975824
-0.0864756 0.0463416 0.507646
-
-0.944918 0.278662 0.171688
--0.257902 0.95688 -0.133666
--0.201533 0.0820248 0.976041
-0.0873073 0.0468519 0.507908
-
-0.947793 0.271774 0.166817
--0.250377 0.958189 -0.138508
--0.197485 0.0895094 0.976211
-0.088139 0.0473621 0.508145
-
-0.9506 0.264829 0.161944
--0.242863 0.959411 -0.143348
--0.193334 0.0969362 0.976333
-0.0889708 0.0478724 0.508358
-
-0.953338 0.257829 0.157068
--0.235363 0.960544 -0.148187
--0.189078 0.104304 0.976407
-0.0898025 0.0483826 0.508547
-
-0.956008 0.250773 0.152191
--0.227877 0.96159 -0.153024
--0.184719 0.111611 0.976433
-0.0906342 0.0488929 0.508712
-
-0.958607 0.243662 0.147311
--0.220406 0.96255 -0.157859
--0.180259 0.118856 0.976412
-0.091466 0.0494031 0.508853
-
-0.961136 0.236498 0.142431
--0.212952 0.963423 -0.162691
--0.175697 0.126038 0.976343
-0.0922977 0.0499134 0.508969
-
-0.963593 0.229281 0.137549
--0.205515 0.96421 -0.167522
--0.171035 0.133154 0.976226
-0.0931294 0.0504236 0.509061
-
-0.965977 0.222012 0.132666
--0.198097 0.964911 -0.172349
--0.166274 0.140205 0.976061
-0.0939612 0.0509339 0.509129
-
-0.968287 0.214691 0.127782
--0.190698 0.965528 -0.177174
--0.161415 0.147188 0.975849
-0.0947929 0.0514441 0.509173
-
-0.970523 0.20732 0.122897
--0.18332 0.96606 -0.181996
--0.156458 0.154101 0.975589
-0.0956246 0.0519544 0.509193
-
-0.972684 0.199899 0.118013
--0.175964 0.966508 -0.186814
--0.151404 0.160945 0.975281
-0.0964564 0.0524646 0.509188
-
-0.974768 0.19243 0.113128
--0.168631 0.966872 -0.191628
--0.146256 0.167716 0.974926
-0.0972881 0.0529749 0.509159
-
-0.976776 0.184912 0.108244
--0.161322 0.967154 -0.196439
--0.141012 0.174415 0.974523
-0.0981199 0.0534851 0.509107
-
-0.978705 0.177348 0.10336
--0.154038 0.967353 -0.201246
--0.135676 0.181039 0.974072
-0.0989516 0.0539954 0.509029
-
-0.980557 0.169738 0.0984764
--0.146779 0.967471 -0.206048
--0.130247 0.187588 0.973574
-0.0997833 0.0545056 0.508928
-
-0.982329 0.162082 0.0935939
--0.139548 0.967507 -0.210846
--0.124727 0.194059 0.973028
-0.100615 0.0550159 0.508803
-
-0.98402 0.154383 0.0887126
--0.132344 0.967463 -0.215639
--0.119117 0.200453 0.972435
-0.101447 0.0555261 0.508653
-
-0.985631 0.14664 0.0838327
--0.12517 0.967339 -0.220428
--0.113418 0.206767 0.971794
-0.102279 0.0560364 0.508479
-
-0.98716 0.138854 0.0789544
--0.118025 0.967135 -0.22521
--0.107631 0.213 0.971106
-0.10311 0.0565466 0.508281
-
-0.988607 0.131028 0.074078
--0.110911 0.966853 -0.229988
--0.101757 0.219152 0.97037
-0.103942 0.0570569 0.508059
-
-0.989971 0.123161 0.0692036
--0.103829 0.966492 -0.23476
--0.095798 0.22522 0.969587
-0.104774 0.0575671 0.507813
-
-0.991251 0.115255 0.0643316
--0.0967799 0.966054 -0.239526
--0.0897543 0.231204 0.968756
-0.105605 0.0580774 0.507542
-
-0.992446 0.10731 0.0594622
--0.0897644 0.96554 -0.244285
--0.0836274 0.237102 0.967879
-0.106437 0.0585876 0.507247
-
-0.993556 0.0993281 0.0545956
--0.0827835 0.964949 -0.249039
--0.0774185 0.242914 0.966953
-0.107269 0.0590979 0.506928
-
-0.99458 0.0913098 0.049732
--0.0758382 0.964283 -0.253786
--0.0711288 0.248639 0.965981
-0.108101 0.0596081 0.506585
-
-0.995517 0.0832562 0.0448717
--0.0689293 0.963542 -0.258526
--0.0647597 0.254274 0.964962
-0.108932 0.0601184 0.506218
-
-0.996368 0.0751683 0.040015
--0.0620577 0.962727 -0.263259
--0.0583122 0.259819 0.963895
-0.109764 0.0606286 0.505826
-
-0.99713 0.0670473 0.035162
--0.0552244 0.961839 -0.267984
--0.0517878 0.265274 0.962781
-0.110596 0.0611389 0.505411
-
-0.997804 0.0588941 0.030313
--0.0484301 0.960879 -0.272703
--0.0451877 0.270636 0.961621
-0.111428 0.0616491 0.504971
-
-0.998389 0.0507099 0.0254682
--0.0416757 0.959846 -0.277413
--0.0385132 0.275905 0.960413
-0.112259 0.0621594 0.504507
-
-0.998884 0.0424957 0.0206279
--0.0349621 0.958743 -0.282116
--0.0317656 0.28108 0.959159
-0.113091 0.0626696 0.504019
-
-0.999288 0.0342527 0.0157923
--0.02829 0.95757 -0.28681
--0.0249462 0.286159 0.957857
-0.113923 0.0631799 0.503506
-
-0.999602 0.0259818 0.0109616
--0.0216604 0.956327 -0.291496
--0.0180565 0.291143 0.956509
-0.114755 0.0636901 0.50297
-
-0.999825 0.0176843 0.00613613
--0.015074 0.955015 -0.296174
--0.0110977 0.296029 0.955114
-0.115586 0.0642004 0.502409
-
-0.999955 0.00936119 0.00131605
--0.00853163 0.953636 -0.300842
--0.00407127 0.300818 0.953673
-0.116418 0.0647106 0.501824
-
-0.999993 0.00101369 -0.00349839
--0.002034 0.952189 -0.305502
-0.00302145 0.305507 0.952185
-0.11725 0.0652209 0.501215
-
-0.999938 -0.0073571 -0.00830696
-0.00441808 0.950677 -0.310152
-0.0101791 0.310096 0.950651
-0.118081 0.0657311 0.500581
-
-0.99979 -0.01575 -0.0131094
-0.0108239 0.949099 -0.314793
-0.0174001 0.314585 0.94907
-0.118913 0.0662414 0.499924
-
-0.999548 -0.024164 -0.0179055
-0.0171826 0.947456 -0.319424
-0.0246832 0.318972 0.947443
-0.119745 0.0667516 0.499242
-
-0.999211 -0.0325977 -0.022695
-0.0234936 0.94575 -0.324045
-0.032027 0.323256 0.945769
-0.120577 0.0672619 0.498536
-
-0.998779 -0.0410502 -0.0274778
-0.0297562 0.943981 -0.328656
-0.0394298 0.327437 0.94405
-0.121408 0.0677721 0.497806
-
-0.998252 -0.0495201 -0.0322534
-0.0359695 0.94215 -0.333256
-0.0468904 0.331514 0.942284
-0.12224 0.0682824 0.497052
-
-0.99763 -0.0580063 -0.0370218
-0.0421331 0.940258 -0.337846
-0.0544073 0.335485 0.940473
-0.123072 0.0687926 0.496273
-
-0.996911 -0.0665076 -0.0417827
-0.0482461 0.938306 -0.342425
-0.0619788 0.339352 0.938616
-0.123904 0.0693029 0.495471
-
-0.996095 -0.0750229 -0.0465359
-0.0543079 0.936294 -0.346993
-0.0696037 0.343111 0.936712
-0.124735 0.0698131 0.494644
-
-0.995183 -0.0835509 -0.051281
-0.0603179 0.934224 -0.35155
-0.0772803 0.346764 0.934763
-0.125567 0.0703234 0.493793
-
-0.994174 -0.0920904 -0.056018
-0.0662755 0.932096 -0.356095
-0.0850072 0.350308 0.932769
-0.126399 0.0708336 0.492917
-
-0.993067 -0.10064 -0.0607466
-0.07218 0.929912 -0.360629
-0.0927828 0.353744 0.930729
-0.127231 0.0713439 0.492018
-
-0.991862 -0.109199 -0.0654665
-0.0780309 0.927672 -0.365151
-0.100606 0.357071 0.928644
-0.128062 0.0718541 0.491094
-
-0.990559 -0.117766 -0.0701775
-0.0838275 0.925378 -0.369661
-0.108474 0.360288 0.926513
-0.128894 0.0723644 0.490147
-
-0.989157 -0.126339 -0.0748793
-0.0895693 0.923029 -0.374158
-0.116387 0.363394 0.924337
-0.129726 0.0728746 0.489175
-
-0.987657 -0.134918 -0.0795719
-0.0952557 0.920628 -0.378643
-0.124342 0.366389 0.922116
-0.130558 0.0733849 0.488179
-
-0.986057 -0.143501 -0.0842548
-0.100886 0.918175 -0.383115
-0.132338 0.369273 0.91985
-0.131389 0.0738951 0.487158
-
-0.984358 -0.152087 -0.088928
-0.10646 0.915671 -0.387574
-0.140374 0.372044 0.917539
-0.132221 0.0744054 0.486114
-
-0.98256 -0.160674 -0.0935911
-0.111977 0.913117 -0.392019
-0.148447 0.374703 0.915184
-0.133053 0.0749156 0.485045
-
-0.980662 -0.169262 -0.098244
-0.117437 0.910513 -0.396452
-0.156557 0.377248 0.912784
-0.133884 0.0754259 0.483952
-
-0.978664 -0.177849 -0.102886
-0.122839 0.907862 -0.400871
-0.164701 0.379679 0.910339
-0.134716 0.0759361 0.482835
-
-0.976567 -0.186434 -0.107518
-0.128182 0.905163 -0.405276
-0.172879 0.381997 0.90785
-0.135548 0.0764464 0.481694
-
-0.974368 -0.195015 -0.112139
-0.133467 0.902419 -0.409667
-0.181087 0.3842 0.905317
-0.13638 0.0769566 0.480528
-
-0.97207 -0.203592 -0.116748
-0.138692 0.899629 -0.414044
-0.189326 0.386287 0.902739
-0.137211 0.0774669 0.479339
-
-0.969671 -0.212163 -0.121347
-0.143858 0.896795 -0.418406
-0.197593 0.388259 0.900118
-0.138043 0.0779771 0.478125
-
-0.967171 -0.220727 -0.125933
-0.148963 0.893918 -0.422754
-0.205887 0.390116 0.897452
-0.138875 0.0784874 0.476887
-
-0.964571 -0.229282 -0.130508
-0.154008 0.890999 -0.427086
-0.214206 0.391856 0.894743
-0.139707 0.0789976 0.475625
-
-0.96187 -0.237827 -0.135071
-0.158992 0.888038 -0.431404
-0.222548 0.39348 0.89199
-0.140538 0.0795079 0.474338
-
-0.959068 -0.246361 -0.139621
-0.163914 0.885038 -0.435707
-0.230912 0.394986 0.889194
-0.14137 0.0800181 0.473028
-
-0.956166 -0.254883 -0.144159
-0.168776 0.881998 -0.439994
-0.239295 0.396376 0.886354
-0.142202 0.0805284 0.471693
-
-0.953162 -0.263392 -0.148685
-0.173575 0.87892 -0.444265
-0.247698 0.397649 0.883471
-0.143034 0.0810386 0.470334
-
-0.950057 -0.271885 -0.153197
-0.178312 0.875805 -0.448521
-0.256117 0.398803 0.880545
-0.143865 0.0815489 0.468951
-
-0.946852 -0.280363 -0.157696
-0.182986 0.872654 -0.45276
-0.264551 0.39984 0.877576
-0.144697 0.0820592 0.467544
-
-0.943546 -0.288822 -0.162182
-0.187598 0.869467 -0.456983
-0.272999 0.400759 0.874565
-0.145529 0.0825694 0.466112
-
-0.940139 -0.297263 -0.166655
-0.192146 0.866247 -0.46119
-0.281459 0.40156 0.87151
-0.14636 0.0830797 0.464657
-
-0.937184 -0.303427 -0.172101
-0.194251 0.863729 -0.465015
-0.289747 0.402374 0.868414
-0.147179 0.0834856 0.463277
-
-0.93481 -0.306825 -0.178852
-0.193376 0.862145 -0.468307
-0.297885 0.403193 0.865275
-0.147988 0.0837531 0.462008
-
-0.933022 -0.307466 -0.186907
-0.189534 0.861501 -0.471054
-0.305854 0.404079 0.862075
-0.148787 0.0838815 0.460849
-
-0.931795 -0.305351 -0.196261
-0.182729 0.861775 -0.473238
-0.313636 0.405098 0.858794
-0.149575 0.0838704 0.4598
-
-0.930469 -0.303247 -0.205595
-0.175903 0.862022 -0.475369
-0.321381 0.406152 0.855427
-0.150362 0.0838593 0.458726
-
-0.929043 -0.301154 -0.214909
-0.169056 0.862243 -0.477449
-0.329089 0.407239 0.851972
-0.15115 0.0838482 0.457628
-
-0.927518 -0.299073 -0.224202
-0.162188 0.862437 -0.479476
-0.336758 0.40836 0.848431
-0.151938 0.0838371 0.456506
-
-0.925894 -0.297004 -0.233473
-0.1553 0.862604 -0.481451
-0.344388 0.409515 0.844805
-0.152725 0.083826 0.45536
-
-0.924171 -0.294948 -0.242721
-0.148392 0.862745 -0.483374
-0.351977 0.410702 0.841092
-0.153513 0.0838148 0.45419
-
-0.92235 -0.292905 -0.251945
-0.141466 0.862859 -0.485244
-0.359524 0.411923 0.837295
-0.154301 0.0838037 0.452995
-
-0.920465 -0.29082 -0.261091
-0.134587 0.863057 -0.486846
-0.366921 0.412985 0.833554
-0.155122 0.0839105 0.451855
-
-0.918571 -0.28857 -0.2701
-0.127758 0.863443 -0.488
-0.374038 0.413755 0.830001
-0.156001 0.0842083 0.45083
-
-0.91673 -0.286029 -0.278913
-0.120983 0.864122 -0.488524
-0.380747 0.414101 0.826772
-0.156958 0.0847693 0.449982
-
-0.914948 -0.283188 -0.287531
-0.114266 0.865093 -0.488424
-0.387057 0.414028 0.823874
-0.157994 0.0855925 0.449312
-
-0.913188 -0.28018 -0.29595
-0.10776 0.866349 -0.487676
-0.393033 0.413448 0.821332
-0.159121 0.0867206 0.448842
-
-0.911449 -0.277018 -0.304175
-0.101481 0.867876 -0.486306
-0.398701 0.412375 0.819136
-0.160329 0.0881093 0.448551
-
-0.909666 -0.273879 -0.312247
-0.0955343 0.8696 -0.484426
-0.404204 0.410836 0.817211
-0.161606 0.0897242 0.448407
-
-0.907851 -0.270654 -0.32024
-0.0896604 0.871406 -0.482299
-0.409595 0.409142 0.815374
-0.162919 0.0914543 0.44832
-
-0.905963 -0.267413 -0.328209
-0.0837959 0.873184 -0.480134
-0.414981 0.407481 0.81348
-0.164231 0.0931844 0.448209
-
-0.904003 -0.264156 -0.336155
-0.0779415 0.874932 -0.477933
-0.420361 0.405852 0.81153
-0.165544 0.0949145 0.448074
-
-0.901971 -0.260884 -0.344076
-0.0720973 0.876651 -0.475695
-0.425736 0.404256 0.809522
-0.166857 0.0966446 0.447915
-
-0.899866 -0.257598 -0.351972
-0.0662638 0.878341 -0.47342
-0.431103 0.402692 0.807459
-0.168169 0.0983747 0.447731
-
-0.897689 -0.254298 -0.359842
-0.0604415 0.880002 -0.471109
-0.436464 0.40116 0.805338
-0.169482 0.100105 0.447524
-
-0.89544 -0.250984 -0.367687
-0.0546307 0.881634 -0.468762
-0.441817 0.399661 0.803162
-0.170794 0.101835 0.447292
-
-0.89312 -0.247657 -0.375504
-0.0488319 0.883236 -0.466379
-0.447161 0.398195 0.800929
-0.172107 0.103565 0.447036
-
-0.890727 -0.244318 -0.383295
-0.0430454 0.88481 -0.463959
-0.452496 0.396762 0.798641
-0.17342 0.105295 0.446756
-
-0.888262 -0.240966 -0.391057
-0.0372716 0.886355 -0.461505
-0.457822 0.395362 0.796296
-0.174732 0.107025 0.446452
-
-0.885726 -0.237603 -0.398791
-0.0315109 0.88787 -0.459014
-0.463138 0.393994 0.793896
-0.176045 0.108755 0.446123
-
-0.883118 -0.234229 -0.406497
-0.0257637 0.889356 -0.456488
-0.468443 0.39266 0.791441
-0.177358 0.110485 0.445771
-
-0.880438 -0.230845 -0.414172
-0.0200304 0.890813 -0.453927
-0.473737 0.391359 0.78893
-0.17867 0.112216 0.445394
-
-0.877688 -0.227451 -0.421818
-0.0143115 0.892242 -0.451332
-0.479019 0.390091 0.786365
-0.179983 0.113946 0.444993
-
-0.874866 -0.224047 -0.429433
-0.00860718 0.893641 -0.448701
-0.484289 0.388857 0.783744
-0.181296 0.115676 0.444567
-
-0.871973 -0.220634 -0.437017
-0.00291798 0.89501 -0.446036
-0.489545 0.387656 0.781069
-0.182608 0.117406 0.444118
-
-0.869009 -0.217213 -0.444569
--0.00275575 0.896351 -0.443336
-0.494789 0.386488 0.778339
-0.183921 0.119136 0.443644
-
-0.865974 -0.213783 -0.452089
--0.00841363 0.897663 -0.440602
-0.500017 0.385354 0.775555
-0.185233 0.120866 0.443147
-
-0.862869 -0.210347 -0.459577
--0.0140553 0.898946 -0.437834
-0.505232 0.384253 0.772716
-0.186546 0.122596 0.442625
-
-0.859694 -0.206903 -0.467031
--0.0196803 0.9002 -0.435032
-0.510431 0.383186 0.769824
-0.187859 0.124326 0.442078
-
-0.856448 -0.203453 -0.474451
--0.0252883 0.901425 -0.432197
-0.515614 0.382152 0.766878
-0.189171 0.126056 0.441508
-
-0.853132 -0.199998 -0.481837
--0.0308789 0.902621 -0.429328
-0.52078 0.381152 0.763879
-0.190484 0.127787 0.440914
-
-0.849747 -0.196536 -0.489187
--0.0364518 0.903788 -0.426426
-0.52593 0.380185 0.760827
-0.191797 0.129517 0.440295
-
-0.846291 -0.19307 -0.496503
--0.0420065 0.904926 -0.42349
-0.531062 0.379253 0.757721
-0.193109 0.131247 0.439652
-
-0.842767 -0.1896 -0.503782
--0.0475427 0.906036 -0.420522
-0.536176 0.378353 0.754562
-0.194422 0.132977 0.438985
-
-0.839173 -0.186126 -0.511025
--0.05306 0.907116 -0.417522
-0.541271 0.377488 0.751351
-0.195734 0.134707 0.438294
-
-0.83551 -0.182648 -0.518231
--0.058558 0.908168 -0.414489
-0.546347 0.376656 0.748088
-0.197047 0.136437 0.437578
-
-0.831778 -0.179168 -0.525399
--0.0640364 0.909192 -0.411424
-0.551403 0.375858 0.744772
-0.19836 0.138167 0.436839
-
-0.827978 -0.175685 -0.53253
--0.0694947 0.910187 -0.408327
-0.556438 0.375093 0.741405
-0.199672 0.139897 0.436075
-
-0.824109 -0.1722 -0.539622
--0.0749327 0.911153 -0.405198
-0.561453 0.374362 0.737986
-0.200985 0.141627 0.435287
-
-0.820172 -0.168714 -0.546674
--0.08035 0.912091 -0.402038
-0.566446 0.373665 0.734515
-0.202298 0.143358 0.434474
-
-0.816168 -0.165228 -0.553688
--0.0857461 0.913 -0.398846
-0.571417 0.373002 0.730994
-0.20361 0.145088 0.433638
-
-0.812096 -0.16174 -0.560661
--0.0911208 0.913881 -0.395623
-0.576366 0.372372 0.727421
-0.204923 0.146818 0.432777
-
-0.807957 -0.158254 -0.567593
--0.0964736 0.914734 -0.39237
-0.581291 0.371776 0.723798
-0.206235 0.148548 0.431893
-
-0.80375 -0.154767 -0.574485
--0.101804 0.915559 -0.389086
-0.586192 0.371213 0.720125
-0.207548 0.150278 0.430984
-
-0.799477 -0.151282 -0.581335
--0.107112 0.916355 -0.385771
-0.59107 0.370684 0.716401
-0.208861 0.152008 0.430051
-
-0.795138 -0.147799 -0.588142
--0.112398 0.917124 -0.382427
-0.595922 0.370188 0.712628
-0.210173 0.153738 0.429093
-
-0.790732 -0.144318 -0.594908
--0.11766 0.917865 -0.379052
-0.600749 0.369726 0.708805
-0.211486 0.155468 0.428112
-
-0.786261 -0.140839 -0.60163
--0.122898 0.918577 -0.375648
-0.60555 0.369297 0.704932
-0.212799 0.157198 0.427106
-
-0.781724 -0.137364 -0.608309
--0.128112 0.919262 -0.372215
-0.610324 0.368901 0.701011
-0.214111 0.158928 0.426076
-
-0.777121 -0.133892 -0.614944
--0.133302 0.91992 -0.368752
-0.615072 0.368539 0.697041
-0.215424 0.160659 0.425022
-
-0.772454 -0.130424 -0.621534
--0.138468 0.920549 -0.365261
-0.619791 0.36821 0.693022
-0.216736 0.162389 0.423944
-
-0.767722 -0.126961 -0.628079
--0.143608 0.921152 -0.361741
-0.624483 0.367914 0.688956
-0.218049 0.164119 0.422842
-
-0.762926 -0.123503 -0.634579
--0.148724 0.921726 -0.358192
-0.629146 0.367651 0.684841
-0.219362 0.165849 0.421715
-
-0.758066 -0.120051 -0.641033
--0.153813 0.922274 -0.354616
-0.63378 0.367422 0.680679
-0.220674 0.167579 0.420564
-
-0.753143 -0.116605 -0.647441
--0.158877 0.922794 -0.351011
-0.638384 0.367225 0.67647
-0.221987 0.169309 0.419389
-
-0.748156 -0.113165 -0.653802
--0.163914 0.923288 -0.347379
-0.642958 0.367061 0.672214
-0.2233 0.171039 0.41819
-
-0.743106 -0.109732 -0.660115
--0.168925 0.923754 -0.34372
-0.647501 0.36693 0.667911
-0.224612 0.172769 0.416967
-
-0.737994 -0.106307 -0.666381
--0.173908 0.924193 -0.340033
-0.652013 0.366831 0.663561
-0.225925 0.174499 0.415719
-
-0.732819 -0.10289 -0.672599
--0.178864 0.924606 -0.33632
-0.656493 0.366766 0.659166
-0.227238 0.17623 0.414447
-
-0.727583 -0.0994813 -0.678768
--0.183793 0.924992 -0.332579
-0.660941 0.366732 0.654725
-0.22855 0.17796 0.413151
-
-0.722286 -0.0960816 -0.684888
--0.188694 0.925352 -0.328813
-0.665356 0.366731 0.650239
-0.229863 0.17969 0.411831
-
-0.716927 -0.0926912 -0.690959
--0.193566 0.925685 -0.325021
-0.669737 0.366763 0.645707
-0.231175 0.18142 0.410487
-
-0.711508 -0.0893107 -0.696979
--0.19841 0.925993 -0.321203
-0.674085 0.366826 0.641131
-0.232488 0.18315 0.409119
-
-0.706028 -0.0859406 -0.70295
--0.203225 0.926274 -0.317359
-0.678398 0.366922 0.63651
-0.233801 0.18488 0.407726
-
-0.700489 -0.0825812 -0.708869
--0.208011 0.926529 -0.31349
-0.682676 0.367049 0.631845
-0.235113 0.18661 0.406309
-
-0.69489 -0.0792332 -0.714737
--0.212767 0.926758 -0.309596
-0.686919 0.367208 0.627137
-0.236426 0.18834 0.404868
-
-0.689233 -0.0758968 -0.720554
--0.217494 0.926961 -0.305678
-0.691126 0.367399 0.622385
-0.237739 0.19007 0.403403
-
-0.683516 -0.0725726 -0.726318
--0.22219 0.927139 -0.301735
-0.695296 0.367622 0.61759
-0.239051 0.191801 0.401913
-
-0.677742 -0.069261 -0.73203
--0.226856 0.927292 -0.297768
-0.69943 0.367876 0.612752
-0.240364 0.193531 0.4004
-
-0.67191 -0.0659626 -0.73769
--0.231492 0.927419 -0.293777
-0.703526 0.368161 0.607872
-0.241676 0.195261 0.398862
-
-0.66602 -0.0626776 -0.743296
--0.236096 0.927521 -0.289763
-0.707584 0.368477 0.60295
-0.242989 0.196991 0.3973
-
-0.660074 -0.0594067 -0.748848
--0.240669 0.927599 -0.285726
-0.711604 0.368825 0.597987
-0.244302 0.198721 0.395714
-
-0.654071 -0.0561501 -0.754346
--0.245211 0.927651 -0.281665
-0.715585 0.369203 0.592981
-0.245614 0.200451 0.394104
-
-0.648013 -0.0529085 -0.759789
--0.24972 0.927679 -0.277582
-0.719527 0.369612 0.587935
-0.246927 0.202181 0.392469
-
-0.641899 -0.0496821 -0.765178
--0.254198 0.927682 -0.273477
-0.723429 0.370051 0.582849
-0.24824 0.203911 0.39081
-
-0.636342 -0.0469435 -0.769977
--0.258604 0.927406 -0.270263
-0.726768 0.3711 0.578008
-0.249431 0.205625 0.389206
-
-0.632721 -0.0455115 -0.773041
--0.263187 0.926209 -0.269943
-0.728283 0.374253 0.574054
-0.250255 0.207244 0.387854
-
-0.632129 -0.0448178 -0.773566
--0.269659 0.923198 -0.273842
-0.726427 0.381703 0.571495
-0.250536 0.208776 0.386888
-
-0.634605 -0.0446989 -0.771543
--0.278155 0.918213 -0.281983
-0.721045 0.393557 0.57027
-0.250276 0.210225 0.386309
-
-0.639578 -0.0450972 -0.767402
--0.287971 0.911531 -0.293571
-0.71275 0.408751 0.570009
-0.249587 0.211568 0.38605
-
-0.645059 -0.0453201 -0.762788
--0.297999 0.904281 -0.305732
-0.703631 0.424525 0.569809
-0.248821 0.212902 0.385824
-
-0.65061 -0.0453565 -0.758057
--0.30782 0.896784 -0.317846
-0.694229 0.440139 0.569494
-0.248055 0.214235 0.385575
-
-0.656226 -0.0452036 -0.753209
--0.317428 0.889043 -0.329912
-0.684549 0.455587 0.569064
-0.247289 0.215569 0.385301
-
-0.661902 -0.0448589 -0.748247
--0.326818 0.881065 -0.341926
-0.674593 0.470863 0.568518
-0.246522 0.216903 0.385003
-
-0.667634 -0.0443198 -0.743169
--0.335984 0.872856 -0.353888
-0.664364 0.485961 0.567858
-0.245756 0.218237 0.384681
-
-0.673415 -0.0435839 -0.737979
--0.34492 0.864421 -0.365795
-0.653867 0.500876 0.567081
-0.24499 0.219571 0.384335
-
-0.679241 -0.0426491 -0.732675
--0.353621 0.855767 -0.377645
-0.643105 0.515601 0.56619
-0.244223 0.220905 0.383964
-
-0.685106 -0.0415131 -0.72726
--0.362081 0.846898 -0.389436
-0.632082 0.530132 0.565184
-0.243457 0.222239 0.383569
-
-0.691004 -0.0401742 -0.721733
--0.370296 0.837823 -0.401166
-0.620801 0.544462 0.564063
-0.242691 0.223573 0.383151
-
-0.696931 -0.0386304 -0.716097
--0.37826 0.828546 -0.412832
-0.609268 0.558586 0.562827
-0.241925 0.224907 0.382707
-
-0.70288 -0.0368802 -0.710352
--0.385969 0.819075 -0.424434
-0.597485 0.572499 0.561477
-0.241158 0.226241 0.38224
-
-0.708136 -0.0346436 -0.705226
--0.39332 0.810124 -0.43474
-0.586381 0.585234 0.560052
-0.240329 0.227422 0.381852
-
-0.711334 -0.0327033 -0.702093
--0.398653 0.803922 -0.441346
-0.578862 0.593835 0.558819
-0.239272 0.228218 0.381777
-
-0.712106 -0.0301868 -0.701423
--0.403051 0.800459 -0.443638
-0.574853 0.598626 0.557845
-0.237992 0.228481 0.382041
-
-0.710434 -0.0270889 -0.703243
--0.406665 0.799742 -0.441629
-0.574376 0.599732 0.557147
-0.236482 0.228214 0.382644
-
-0.706452 -0.0232477 -0.707379
--0.409781 0.801464 -0.435585
-0.577065 0.59759 0.55667
-0.234745 0.227458 0.383563
-
-0.700685 -0.019316 -0.71321
--0.411863 0.805306 -0.42644
-0.582589 0.592545 0.55631
-0.232829 0.226345 0.384719
-
-0.694884 -0.0153254 -0.718958
--0.413857 0.809091 -0.417246
-0.588097 0.587484 0.555882
-0.230914 0.225232 0.385852
-
-0.689053 -0.0112765 -0.724623
--0.415764 0.812818 -0.408004
-0.593588 0.582408 0.555386
-0.228998 0.224119 0.38696
-
-0.683191 -0.00716952 -0.730204
--0.417583 0.816487 -0.398714
-0.599061 0.577319 0.554823
-0.227082 0.223006 0.388044
-
-0.677301 -0.00300493 -0.7357
--0.419314 0.820097 -0.389379
-0.604516 0.572216 0.554192
-0.225167 0.221893 0.389104
-
-0.671381 0.00121689 -0.741111
--0.420958 0.823648 -0.379998
-0.609952 0.5671 0.553494
-0.223251 0.22078 0.390139
-
-0.665435 0.00549552 -0.746436
--0.422513 0.827138 -0.370574
-0.615369 0.561971 0.552729
-0.221335 0.219667 0.391151
-
-0.659462 0.00983053 -0.751674
--0.42398 0.830568 -0.361106
-0.620766 0.556831 0.551896
-0.21942 0.218554 0.392138
-
-0.653463 0.0142215 -0.756825
--0.42536 0.833936 -0.351597
-0.626143 0.551679 0.550996
-0.217504 0.217441 0.393101
-
-0.64744 0.018668 -0.761887
--0.426651 0.837241 -0.342047
-0.631498 0.546515 0.550028
-0.215588 0.216328 0.39404
-
-0.641394 0.0231695 -0.766862
--0.427854 0.840483 -0.332458
-0.636832 0.541342 0.548994
-0.213673 0.215214 0.394955
-
-0.635325 0.0277256 -0.771747
--0.428969 0.843662 -0.322831
-0.642143 0.536158 0.547893
-0.211757 0.214101 0.395845
-
-0.629234 0.0323359 -0.776543
--0.429996 0.846777 -0.313166
-0.647432 0.530965 0.546725
-0.209841 0.212988 0.396711
-
-0.623123 0.0369999 -0.781248
--0.430935 0.849826 -0.303465
-0.652697 0.525763 0.54549
-0.207926 0.211875 0.397553
-
-0.616992 0.041717 -0.785863
--0.431785 0.85281 -0.29373
-0.657938 0.520553 0.544189
-0.20601 0.210762 0.398371
-
-0.610842 0.0464868 -0.790386
--0.432547 0.855727 -0.28396
-0.663155 0.515334 0.542822
-0.204094 0.209649 0.399165
-
-0.604675 0.0513087 -0.794818
--0.433222 0.858578 -0.274158
-0.668347 0.510109 0.541389
-0.202179 0.208536 0.399935
-
-0.598491 0.0561824 -0.799157
--0.433808 0.861361 -0.264325
-0.673513 0.504877 0.539889
-0.200263 0.207423 0.40068
-
-0.592291 0.0611072 -0.803403
--0.434306 0.864076 -0.254461
-0.678652 0.499638 0.538324
-0.198347 0.20631 0.401401
-
-0.586077 0.0660826 -0.807556
--0.434717 0.866722 -0.244568
-0.683766 0.494394 0.536693
-0.196432 0.205197 0.402098
-
-0.579848 0.0711081 -0.811615
--0.43504 0.869299 -0.234647
-0.688851 0.489145 0.534997
-0.194516 0.204084 0.402771
-
-0.573607 0.0761831 -0.81558
--0.435275 0.871806 -0.224699
-0.69391 0.483891 0.533235
-0.1926 0.202971 0.40342
-
-0.567354 0.0813071 -0.81945
--0.435423 0.874243 -0.214726
-0.698939 0.478633 0.531408
-0.190685 0.201857 0.404044
-
-0.561091 0.0864795 -0.823225
--0.435483 0.876608 -0.204728
-0.70394 0.473371 0.529517
-0.188769 0.200744 0.404645
-
-0.554817 0.0916998 -0.826903
--0.435456 0.878901 -0.194706
-0.708912 0.468107 0.52756
-0.186854 0.199631 0.405221
-
-0.548534 0.0969673 -0.830486
--0.435342 0.881122 -0.184663
-0.713854 0.46284 0.52554
-0.184938 0.198518 0.405772
-
-0.542244 0.102282 -0.833972
--0.435142 0.883271 -0.174599
-0.718765 0.457571 0.523455
-0.183022 0.197405 0.4063
-
-0.535947 0.107642 -0.837361
--0.434854 0.885345 -0.164515
-0.723645 0.452302 0.521307
-0.181107 0.196292 0.406804
-
-0.529644 0.113048 -0.840653
--0.43448 0.887346 -0.154413
-0.728495 0.447031 0.519094
-0.179191 0.195179 0.407283
-
-0.523336 0.118498 -0.843847
--0.43402 0.889273 -0.144293
-0.733312 0.44176 0.516819
-0.177275 0.194066 0.407738
-
-0.517023 0.123993 -0.846943
--0.433474 0.891124 -0.134157
-0.738097 0.43649 0.51448
-0.17536 0.192953 0.408169
-
-0.510708 0.129532 -0.84994
--0.432842 0.8929 -0.124006
-0.742849 0.431221 0.512078
-0.173444 0.19184 0.408576
-
-0.504391 0.135113 -0.852839
--0.432125 0.894599 -0.113841
-0.747568 0.425953 0.509614
-0.171528 0.190727 0.408959
-
-0.498073 0.140737 -0.855638
--0.431322 0.896223 -0.103664
-0.752253 0.420688 0.507087
-0.169613 0.189614 0.409317
-
-0.491755 0.146403 -0.858338
--0.430435 0.897768 -0.0934748
-0.756903 0.415425 0.504499
-0.167697 0.188501 0.409651
-
-0.485438 0.152109 -0.860937
--0.429463 0.899237 -0.0832759
-0.76152 0.410166 0.501849
-0.165781 0.187387 0.409961
-
-0.479122 0.157856 -0.863437
--0.428406 0.900627 -0.073068
-0.766101 0.40491 0.499137
-0.163866 0.186274 0.410247
-
-0.47281 0.163642 -0.865836
--0.427266 0.901939 -0.0628523
-0.770646 0.399659 0.496364
-0.16195 0.185161 0.410509
-
-0.468566 0.168641 -0.867183
--0.428821 0.90163 -0.056365
-0.772372 0.398277 0.494789
-0.159582 0.184 0.411088
-
-0.466335 0.172795 -0.867568
--0.433146 0.899727 -0.0536244
-0.771308 0.40079 0.49442
-0.156762 0.182792 0.411985
-
-0.464077 0.176933 -0.867944
--0.437458 0.897798 -0.050883
-0.770236 0.403303 0.494048
-0.153942 0.181585 0.412858
-
-0.46179 0.181056 -0.868314
--0.441757 0.895842 -0.0481409
-0.769156 0.405814 0.493674
-0.151121 0.180377 0.413707
-
-0.459476 0.185163 -0.868675
--0.446043 0.89386 -0.0453981
-0.768068 0.408326 0.493297
-0.148301 0.179169 0.414532
-
-0.457133 0.189254 -0.869029
--0.450315 0.89185 -0.0426546
-0.766972 0.410836 0.492918
-0.145481 0.177962 0.415332
-
-0.454763 0.193329 -0.869376
--0.454574 0.889814 -0.0399105
-0.765867 0.413346 0.492537
-0.142661 0.176754 0.416108
-
-0.452366 0.197387 -0.869715
--0.45882 0.887752 -0.0371657
-0.764755 0.415855 0.492154
-0.139841 0.175547 0.41686
-
-0.449941 0.201429 -0.870046
--0.463051 0.885663 -0.0344203
-0.763634 0.418363 0.491768
-0.13702 0.174339 0.417588
-
-0.447488 0.205455 -0.870369
--0.467269 0.883548 -0.0316744
-0.762505 0.42087 0.49138
-0.1342 0.173132 0.418292
-
-0.44485 0.207233 -0.8713
--0.468428 0.883021 -0.0291398
-0.763337 0.421104 0.489885
-0.131658 0.171882 0.419024
-
-0.441911 0.205936 -0.873101
--0.465429 0.884676 -0.0269057
-0.766871 0.418256 0.486797
-0.129488 0.170569 0.419777
-
-0.438724 0.201618 -0.875712
--0.458221 0.888487 -0.0250052
-0.773017 0.41224 0.482186
-0.127685 0.169196 0.420561
-
-0.435194 0.194802 -0.87901
--0.447416 0.89402 -0.023385
-0.781297 0.40346 0.47623
-0.126205 0.167773 0.421377
-
-0.431223 0.18554 -0.882962
--0.432941 0.901152 -0.0220783
-0.791587 0.391791 0.468925
-0.125047 0.166302 0.422227
-
-0.426853 0.174992 -0.887228
--0.416265 0.909001 -0.0209824
-0.80282 0.378278 0.460853
-0.124075 0.164805 0.423092
-
-0.422213 0.164637 -0.891421
--0.39943 0.916547 -0.0199091
-0.813751 0.364466 0.452739
-0.123103 0.163309 0.423934
-
-0.417308 0.154482 -0.895539
--0.382443 0.923787 -0.0188586
-0.824373 0.350362 0.444584
-0.12213 0.161812 0.424752
-
-0.412144 0.144533 -0.899582
--0.365308 0.930716 -0.0178308
-0.834678 0.335974 0.436388
-0.121158 0.160316 0.425545
-
-0.406726 0.134798 -0.90355
--0.348032 0.937332 -0.016826
-0.844658 0.321308 0.428151
-0.120186 0.158819 0.426314
-
-0.401062 0.125284 -0.907443
--0.33062 0.943631 -0.0158441
-0.854307 0.306373 0.419876
-0.119213 0.157323 0.427059
-
-0.395158 0.115996 -0.91126
--0.313078 0.949611 -0.0148853
-0.863616 0.291178 0.411562
-0.118241 0.155827 0.42778
-
-0.389019 0.106941 -0.915001
--0.295412 0.955268 -0.0139496
-0.87258 0.275729 0.403209
-0.117269 0.15433 0.428477
-
-0.382654 0.0981249 -0.918666
--0.277628 0.9606 -0.0130371
-0.881191 0.260036 0.39482
-0.116296 0.152834 0.429149
-
-0.376069 0.089554 -0.922254
--0.259732 0.965604 -0.012148
-0.889444 0.244107 0.386394
-0.115324 0.151337 0.429798
-
-0.369272 0.081234 -0.925764
--0.24173 0.970278 -0.0112822
-0.897332 0.227951 0.377933
-0.114351 0.149841 0.430422
-
-0.362269 0.0731703 -0.929197
--0.223629 0.974618 -0.0104399
-0.904849 0.211578 0.369437
-0.113379 0.148345 0.431022
-
-0.355067 0.0653683 -0.932552
--0.205435 0.978624 -0.00962109
-0.911989 0.194995 0.360906
-0.112407 0.146848 0.431597
-
-0.347676 0.0578332 -0.93583
--0.187153 0.982291 -0.00882591
-0.918747 0.178212 0.352343
-0.111434 0.145352 0.432149
-
-0.340101 0.05057 -0.939028
--0.168791 0.985619 -0.00805438
-0.925117 0.161239 0.343746
-0.110462 0.143855 0.432676
-
-0.332352 0.0435835 -0.942148
--0.150355 0.988605 -0.00730659
-0.931094 0.144085 0.335118
-0.10949 0.142359 0.433179
-
-0.324436 0.0368782 -0.945189
--0.131851 0.991248 -0.0065826
-0.936673 0.12676 0.326458
-0.108517 0.140862 0.433658
-
-0.31636 0.0304585 -0.94815
--0.113287 0.993545 -0.00588246
-0.94185 0.109274 0.317769
-0.107545 0.139366 0.434113
-
-0.308134 0.0243286 -0.951032
--0.0946674 0.995495 -0.00520623
-0.946621 0.0916359 0.309049
-0.106573 0.13787 0.434544
-
-0.299766 0.0184922 -0.953833
--0.0760003 0.997097 -0.00455398
-0.950981 0.0738568 0.300301
-0.1056 0.136373 0.43495
-
-0.291264 0.0129533 -0.956555
--0.0572921 0.99835 -0.00392576
-0.954926 0.0559465 0.291525
-0.104628 0.134877 0.435332
-
-0.282636 0.00771517 -0.959196
--0.0385494 0.999251 -0.00332162
-0.958452 0.0379153 0.282722
-0.103656 0.13338 0.43569
-
-0.273892 0.00278114 -0.961756
--0.0197791 0.999801 -0.00274161
-0.961557 0.0197736 0.273892
-0.102683 0.131884 0.436024
-
-0.26504 -0.00184578 -0.964236
--0.00098787 0.999997 -0.00218577
-0.964237 0.00153186 0.265037
-0.101711 0.130388 0.436334
-
-0.256088 -0.0061628 -0.966634
-0.0178174 0.99984 -0.00165416
-0.966489 -0.0167993 0.256157
-0.100739 0.128891 0.436619
-
-0.247046 -0.0101674 -0.96895
-0.03663 0.999328 -0.00114682
-0.968311 -0.0352093 0.247253
-0.0997663 0.127395 0.436881
-
-0.237923 -0.0138571 -0.971185
-0.0554429 0.998462 -0.000663794
-0.9697 -0.0536874 0.238325
-0.098794 0.125898 0.437118
-
-0.230184 -0.018568 -0.97297
-0.0738513 0.997268 -0.00156006
-0.970341 -0.071496 0.230927
-0.0975447 0.124407 0.437402
-
-0.224051 -0.0245159 -0.974269
-0.0915416 0.995793 -0.00400585
-0.970269 -0.0882886 0.225353
-0.0959736 0.122926 0.437742
-
-0.219473 -0.0318306 -0.975099
-0.108742 0.994038 -0.00797353
-0.96954 -0.104284 0.221626
-0.0940799 0.121444 0.438144
-
-0.214713 -0.0390071 -0.975898
-0.125896 0.991971 -0.0119505
-0.968529 -0.120295 0.2179
-0.0921862 0.119962 0.438521
-
-0.209777 -0.0460413 -0.976665
-0.142998 0.989595 -0.0159366
-0.967236 -0.136318 0.214178
-0.0902925 0.11848 0.438874
-
-0.204666 -0.0529292 -0.9774
-0.160042 0.986909 -0.0199317
-0.96566 -0.152345 0.210457
-0.0883988 0.116999 0.439202
-
-0.199384 -0.0596666 -0.978103
-0.177022 0.983916 -0.0239357
-0.963799 -0.168373 0.20674
-0.0865051 0.115517 0.439507
-
-0.193936 -0.0662498 -0.978775
-0.193933 0.980617 -0.0279483
-0.961654 -0.184397 0.203025
-0.0846114 0.114035 0.439787
-
-0.188324 -0.0726749 -0.979414
-0.210769 0.977013 -0.0319696
-0.959224 -0.200409 0.199313
-0.0827177 0.112553 0.440043
-
-0.182553 -0.0789381 -0.980022
-0.227524 0.973107 -0.0359993
-0.956508 -0.216407 0.195604
-0.080824 0.111071 0.440275
-
-0.176626 -0.0850358 -0.980598
-0.244192 0.9689 -0.0400373
-0.953506 -0.232383 0.191898
-0.0789302 0.10959 0.440483
-
-0.170547 -0.0909644 -0.981142
-0.260769 0.964394 -0.0440835
-0.950217 -0.248333 0.188195
-0.0770365 0.108108 0.440667
-
-0.164321 -0.0967203 -0.981654
-0.277248 0.959592 -0.0481377
-0.946643 -0.264251 0.184496
-0.0751428 0.106626 0.440826
-
-0.15795 -0.1023 -0.982134
-0.293624 0.954495 -0.0521997
-0.942781 -0.280133 0.180801
-0.0732491 0.105144 0.440961
-
-0.151441 -0.107701 -0.982581
-0.309891 0.949106 -0.0562695
-0.938634 -0.295971 0.177109
-0.0713554 0.103662 0.441072
-
-0.145715 -0.111971 -0.98297
-0.326326 0.943408 -0.0590901
-0.933958 -0.312159 0.174008
-0.0693565 0.102413 0.441301
-
-0.141095 -0.114846 -0.983312
-0.343025 0.937391 -0.0602626
-0.928669 -0.328798 0.171656
-0.0672365 0.10153 0.441711
-
-0.137566 -0.116456 -0.983623
-0.359663 0.931155 -0.0599428
-0.922886 -0.345527 0.16998
-0.0650016 0.10097 0.442278
-
-0.135236 -0.116805 -0.983904
-0.376178 0.924726 -0.0580741
-0.916625 -0.362269 0.168995
-0.0626428 0.100733 0.442999
-
-0.133788 -0.116324 -0.984159
-0.392656 0.918032 -0.05513
-0.909902 -0.37906 0.168497
-0.0602082 0.100742 0.443832
-
-0.132857 -0.115431 -0.98439
-0.408871 0.911129 -0.051657
-0.902869 -0.395626 0.168247
-0.0577362 0.100873 0.444711
-
-0.131993 -0.114538 -0.984611
-0.424961 0.903928 -0.0481837
-0.895537 -0.412062 0.167986
-0.0552642 0.101005 0.445566
-
-0.131193 -0.113647 -0.984821
-0.44092 0.896432 -0.04471
-0.887906 -0.428362 0.167715
-0.0527921 0.101137 0.446396
-
-0.130459 -0.112761 -0.985021
-0.456743 0.888643 -0.0412362
-0.879981 -0.444521 0.167434
-0.0503201 0.101269 0.447203
-
-0.129788 -0.111882 -0.985209
-0.472423 0.880563 -0.0377623
-0.871763 -0.460535 0.167142
-0.0478481 0.1014 0.447985
-
-0.129182 -0.11101 -0.985388
-0.487956 0.872194 -0.0342882
-0.863256 -0.476396 0.16684
-0.0453761 0.101532 0.448743
-
-0.12864 -0.110149 -0.985555
-0.503336 0.863541 -0.0308141
-0.854462 -0.492102 0.166528
-0.0429041 0.101664 0.449476
-
-0.128161 -0.1093 -0.985712
-0.518558 0.854605 -0.0273401
-0.845383 -0.507645 0.166205
-0.040432 0.101795 0.450186
-
-0.127744 -0.108465 -0.985858
-0.533616 0.84539 -0.0238662
-0.836024 -0.523021 0.165872
-0.03796 0.101927 0.450871
-
-0.127389 -0.107645 -0.985994
-0.548505 0.835899 -0.0203925
-0.826386 -0.538225 0.165529
-0.035488 0.102059 0.451532
-
-0.127096 -0.106844 -0.986119
-0.56322 0.826134 -0.0169189
-0.816474 -0.553252 0.165175
-0.033016 0.102191 0.452169
-
-0.126863 -0.106061 -0.986234
-0.577756 0.816099 -0.0134457
-0.80629 -0.568096 0.16481
-0.0305439 0.102322 0.452782
-
-0.12669 -0.1053 -0.986337
-0.592107 0.805798 -0.00997286
-0.795838 -0.582754 0.164436
-0.0280719 0.102454 0.453371
-
-0.126577 -0.104563 -0.98643
-0.606269 0.795233 -0.00650042
-0.785122 -0.59722 0.164051
-0.0255999 0.102586 0.453935
-
-0.126521 -0.10385 -0.986513
-0.620237 0.784409 -0.00302846
-0.774144 -0.611489 0.163656
-0.0231279 0.102717 0.454475
-
-0.126523 -0.103163 -0.986585
-0.634005 0.773328 0.000442957
-0.762908 -0.625556 0.16325
-0.0206559 0.102849 0.454991
-
-0.126581 -0.102506 -0.986646
-0.64757 0.761996 0.00391376
-0.751419 -0.639417 0.162834
-0.0181838 0.102981 0.455483
-
-0.126695 -0.101878 -0.986696
-0.660925 0.750415 0.0073839
-0.73968 -0.653068 0.162408
-0.0157118 0.103112 0.455951
-
-0.126864 -0.101282 -0.986736
-0.674068 0.73859 0.0108533
-0.727694 -0.666504 0.161971
-0.0132398 0.103244 0.456394
-
-0.127086 -0.100719 -0.986765
-0.686992 0.726524 0.0143219
-0.715466 -0.679719 0.161524
-0.0107678 0.103376 0.456813
-
-0.127361 -0.100191 -0.986783
-0.699693 0.714222 0.0177897
-0.703 -0.692711 0.161067
-0.00829575 0.103508 0.457209
-
-0.127686 -0.0997003 -0.986791
-0.712168 0.701688 0.0212565
-0.690299 -0.705475 0.160599
-0.00582373 0.103639 0.457579
-
-0.128062 -0.0992475 -0.986788
-0.724411 0.688925 0.0247223
-0.677369 -0.718006 0.160121
-0.0033517 0.103771 0.457926
-
-0.128487 -0.0988345 -0.986774
-0.736418 0.675939 0.0281871
-0.664213 -0.7303 0.159633
-0.000879681 0.103903 0.458249
-
-0.12896 -0.0984628 -0.986749
-0.748185 0.662734 0.0316508
-0.650836 -0.742353 0.159135
--0.00159234 0.104034 0.458547
-
-0.129479 -0.0981339 -0.986714
-0.759709 0.649315 0.0351133
-0.637242 -0.754162 0.158626
--0.00406436 0.104166 0.458821
-
-0.130044 -0.0978491 -0.986668
-0.770984 0.635685 0.0385746
-0.623436 -0.765722 0.158107
--0.00653639 0.104298 0.459071
-
-0.130652 -0.0976101 -0.986612
-0.782007 0.62185 0.0420345
-0.609422 -0.777029 0.157578
--0.00900841 0.10443 0.459297
-
-0.131302 -0.097418 -0.986544
-0.792775 0.607815 0.0454931
-0.595204 -0.788081 0.157038
--0.0114804 0.104561 0.459499
-
-0.131994 -0.0972744 -0.986466
-0.803282 0.593584 0.0489503
-0.580788 -0.798872 0.156488
--0.0139525 0.104693 0.459676
-
-0.132725 -0.0971805 -0.986377
-0.813527 0.579161 0.052406
-0.566179 -0.8094 0.155928
--0.0164245 0.104825 0.459829
-
-0.133494 -0.0971375 -0.986278
-0.823504 0.564553 0.0558601
-0.55138 -0.819661 0.155358
--0.0188965 0.104956 0.459958
-
-0.1343 -0.0971468 -0.986167
-0.833211 0.549764 0.0593127
-0.536398 -0.829651 0.154777
--0.0213685 0.105088 0.460063
-
-0.13514 -0.0972096 -0.986046
-0.842645 0.5348 0.0627635
-0.521236 -0.839368 0.154186
--0.0238405 0.10522 0.460144
-
-0.136015 -0.097327 -0.985915
-0.851801 0.519665 0.0662126
-0.505901 -0.848809 0.153585
--0.0263126 0.105352 0.460201
-
-0.136921 -0.0975002 -0.985772
-0.860677 0.504364 0.0696599
-0.490396 -0.857969 0.152974
--0.0287846 0.105483 0.460233
-
-0.137857 -0.0977302 -0.985619
-0.869269 0.488903 0.0731053
-0.474728 -0.866846 0.152352
--0.0312566 0.105615 0.460241
-
-0.138821 -0.0980181 -0.985455
-0.877576 0.473288 0.0765488
-0.458901 -0.875438 0.151721
--0.0337286 0.105747 0.460225
-
-0.139813 -0.098365 -0.98528
-0.885593 0.457523 0.0799903
-0.44292 -0.88374 0.151079
--0.0362007 0.105878 0.460185
-
-0.140829 -0.0987718 -0.985095
-0.893317 0.441615 0.0834297
-0.426792 -0.891751 0.150427
--0.0386727 0.10601 0.46012
-
-0.141869 -0.0992394 -0.984898
-0.900748 0.425568 0.0868671
-0.41052 -0.899469 0.149765
--0.0411447 0.106142 0.460032
-
-0.142931 -0.0997688 -0.984691
-0.90788 0.409388 0.0903022
-0.394112 -0.906889 0.149092
--0.0436167 0.106274 0.459919
-
-0.144012 -0.100361 -0.984474
-0.914714 0.393081 0.0937351
-0.377571 -0.91401 0.14841
--0.0460887 0.106405 0.459782
-
-0.145111 -0.101016 -0.984245
-0.921244 0.376653 0.0971657
-0.360904 -0.92083 0.147717
--0.0485608 0.106537 0.459621
-
-0.146227 -0.101736 -0.984006
-0.927471 0.360109 0.100594
-0.344115 -0.927346 0.147014
--0.0510328 0.106669 0.459435
-
-0.147356 -0.10252 -0.983756
-0.933391 0.343455 0.10402
-0.327212 -0.933557 0.146301
--0.0535048 0.1068 0.459226
-
-0.148498 -0.10337 -0.983495
-0.939002 0.326697 0.107443
-0.310198 -0.939459 0.145578
--0.0559768 0.106932 0.458992
-
-0.149651 -0.104286 -0.983224
-0.944303 0.30984 0.110864
-0.293081 -0.945052 0.144845
--0.0584489 0.107064 0.458734
-
-0.150812 -0.105269 -0.982942
-0.949292 0.292891 0.114282
-0.275864 -0.950333 0.144102
--0.0609209 0.107196 0.458452
-
-0.15198 -0.106319 -0.982649
-0.953966 0.275855 0.117697
-0.258555 -0.955301 0.143349
--0.0633929 0.107327 0.458146
-
-0.15422 -0.105785 -0.982357
-0.957264 0.262203 0.122046
-0.244666 -0.959197 0.141701
--0.0656746 0.107471 0.457855
-
-0.158443 -0.102205 -0.982064
-0.958356 0.255259 0.128053
-0.237593 -0.961456 0.138393
--0.0675955 0.107608 0.457658
-
-0.16534 -0.0941131 -0.981736
-0.956417 0.258233 0.13632
-0.240687 -0.961488 0.132707
--0.0690151 0.107766 0.457587
-
-0.173448 -0.0838426 -0.981268
-0.953042 0.265444 0.145779
-0.248249 -0.960474 0.125946
--0.0701972 0.107937 0.457542
-
-0.181395 -0.0734487 -0.980664
-0.949541 0.272538 0.155226
-0.255867 -0.959337 0.11918
--0.0713792 0.108107 0.457473
-
-0.189178 -0.0629346 -0.979924
-0.945917 0.279514 0.164661
-0.263539 -0.958077 0.112409
--0.0725612 0.108278 0.45738
-
-0.196793 -0.0523033 -0.979049
-0.942172 0.286369 0.174082
-0.271264 -0.956691 0.105634
--0.0737433 0.108449 0.457263
-
-0.204238 -0.0415581 -0.978039
-0.938309 0.293102 0.183487
-0.279039 -0.955178 0.0988568
--0.0749253 0.108619 0.457122
-
-0.211511 -0.030702 -0.976893
-0.93433 0.29971 0.192876
-0.286863 -0.953536 0.0920779
--0.0761073 0.10879 0.456956
-
-0.21861 -0.0197385 -0.975613
-0.930238 0.306192 0.202248
-0.294733 -0.951765 0.0852982
--0.0772894 0.108961 0.456766
-
-0.225532 -0.00867086 -0.974197
-0.926035 0.312546 0.2116
-0.302647 -0.949863 0.0785187
--0.0784714 0.109131 0.456553
-
-0.232274 0.00249758 -0.972647
-0.921723 0.318771 0.220932
-0.310603 -0.947829 0.0717402
--0.0796534 0.109302 0.456314
-
-0.238836 0.0137634 -0.970962
-0.917307 0.324864 0.230242
-0.3186 -0.945661 0.0649638
--0.0808355 0.109472 0.456052
-
-0.245213 0.0251231 -0.969144
-0.912787 0.330824 0.23953
-0.326634 -0.943358 0.0581903
--0.0820175 0.109643 0.455766
-
-0.251405 0.0365732 -0.967191
-0.908168 0.336649 0.248793
-0.334703 -0.94092 0.0514208
--0.0831995 0.109814 0.455455
-
-0.257409 0.0481102 -0.965104
-0.903451 0.342339 0.258031
-0.342807 -0.938344 0.044656
--0.0843816 0.109984 0.45512
-
-0.263224 0.0597305 -0.962884
-0.89864 0.347891 0.267242
-0.350941 -0.93563 0.037897
--0.0855636 0.110155 0.454761
-
-0.268847 0.0714304 -0.960531
-0.893737 0.353304 0.276426
-0.359104 -0.932778 0.0311447
--0.0867456 0.110326 0.454378
-
-0.274277 0.0832063 -0.958044
-0.888745 0.358576 0.28558
-0.367294 -0.929785 0.0244
--0.0879277 0.110496 0.453971
-
-0.279511 0.0950544 -0.955426
-0.883667 0.363707 0.294703
-0.375508 -0.926651 0.0176638
--0.0891097 0.110667 0.453539
-
-0.284549 0.106971 -0.952675
-0.878506 0.368695 0.303795
-0.383744 -0.923375 0.0109371
--0.0902917 0.110838 0.453083
-
-0.289388 0.118953 -0.949792
-0.873265 0.373539 0.312854
-0.391999 -0.919956 0.00422077
--0.0914738 0.111008 0.452603
-
-0.294028 0.130995 -0.946778
-0.867946 0.378238 0.321878
-0.400272 -0.916393 -0.00248425
--0.0926558 0.111179 0.452099
-
-0.298465 0.143095 -0.943633
-0.862553 0.38279 0.330868
-0.408559 -0.912686 -0.00917704
--0.0938378 0.11135 0.451571
-
-0.3027 0.155247 -0.940357
-0.857089 0.387195 0.33982
-0.416858 -0.908833 -0.0158567
--0.0950199 0.11152 0.451018
-
-0.306731 0.167449 -0.936951
-0.851557 0.391452 0.348735
-0.425167 -0.904835 -0.0225222
--0.0962019 0.111691 0.450442
-
-0.310556 0.179697 -0.933415
-0.845959 0.39556 0.35761
-0.433483 -0.900689 -0.0291728
--0.0973839 0.111862 0.449841
-
-0.314175 0.191986 -0.92975
-0.8403 0.399518 0.366445
-0.441804 -0.896397 -0.0358075
--0.098566 0.112032 0.449216
-
-0.317585 0.204312 -0.925957
-0.834581 0.403325 0.375239
-0.450127 -0.891956 -0.0424253
--0.099748 0.112203 0.448567
-
-0.320787 0.216672 -0.922035
-0.828806 0.40698 0.383989
-0.45845 -0.887367 -0.0490254
--0.10093 0.112373 0.447893
-
-0.323779 0.229062 -0.917986
-0.822978 0.410483 0.392696
-0.466769 -0.882629 -0.0556069
--0.102112 0.112544 0.447195
-
-0.326561 0.241476 -0.913809
-0.817101 0.413833 0.401357
-0.475083 -0.877742 -0.0621688
--0.103294 0.112715 0.446474
-
-0.329131 0.253912 -0.909506
-0.811177 0.417031 0.409973
-0.483389 -0.872705 -0.0687103
--0.104476 0.112885 0.445728
-
-0.331489 0.266366 -0.905077
-0.805209 0.420074 0.41854
-0.491684 -0.867518 -0.0752304
--0.105658 0.113056 0.444958
-
-0.333634 0.278832 -0.900523
-0.799202 0.422963 0.427059
-0.499965 -0.86218 -0.0817283
--0.10684 0.113227 0.444163
-
-0.335565 0.291307 -0.895844
-0.793157 0.425697 0.435528
-0.508231 -0.856692 -0.088203
--0.108022 0.113397 0.443345
-
-0.337283 0.303787 -0.891041
-0.787078 0.428277 0.443945
-0.516477 -0.851054 -0.0946537
--0.109204 0.113568 0.442502
-
-0.338787 0.316268 -0.886114
-0.780968 0.430701 0.452311
-0.524702 -0.845264 -0.101079
--0.110386 0.113739 0.441635
-
-0.340076 0.328746 -0.881064
-0.774831 0.432971 0.460623
-0.532903 -0.839323 -0.107479
--0.111568 0.113909 0.440744
-
-0.34115 0.341215 -0.875893
-0.768669 0.435085 0.468881
-0.541077 -0.833231 -0.113853
--0.11275 0.11408 0.439829
-
-0.342009 0.353673 -0.8706
-0.762486 0.437043 0.477082
-0.549221 -0.826988 -0.120198
--0.113932 0.114251 0.438889
-
-0.342654 0.366115 -0.865187
-0.756286 0.438846 0.485227
-0.557333 -0.820593 -0.126516
--0.115114 0.114421 0.437925
-
-0.343083 0.378537 -0.859653
-0.75007 0.440494 0.493315
-0.56541 -0.814048 -0.132803
--0.116296 0.114592 0.436938
-
-0.343297 0.390934 -0.854001
-0.743843 0.441987 0.501343
-0.573449 -0.807352 -0.139061
--0.117479 0.114763 0.435926
-
-0.343296 0.403303 -0.84823
-0.737608 0.443325 0.509311
-0.581448 -0.800506 -0.145288
--0.118661 0.114933 0.434889
-
-0.343081 0.415639 -0.842342
-0.731368 0.444508 0.517217
-0.589404 -0.793509 -0.151483
--0.119843 0.115104 0.433829
-
-0.342652 0.427938 -0.836336
-0.725125 0.445537 0.525062
-0.597313 -0.786362 -0.157645
--0.121025 0.115274 0.432744
-
-0.342009 0.440196 -0.830215
-0.718884 0.446413 0.532842
-0.605174 -0.779066 -0.163773
--0.122207 0.115445 0.431636
-
-0.341153 0.452409 -0.823979
-0.712648 0.447135 0.540559
-0.612983 -0.77162 -0.169867
--0.123389 0.115616 0.430503
-
-0.340084 0.464572 -0.817629
-0.706419 0.447704 0.54821
-0.620738 -0.764025 -0.175925
--0.124571 0.115786 0.429346
-
-0.338803 0.476681 -0.811165
-0.700201 0.448121 0.555794
-0.628436 -0.756283 -0.181948
--0.125753 0.115957 0.428164
-
-0.337311 0.488732 -0.804588
-0.693997 0.448386 0.563311
-0.636074 -0.748392 -0.187933
--0.126935 0.116128 0.426959
-
-0.335608 0.500722 -0.7979
-0.68781 0.4485 0.570758
-0.64365 -0.740355 -0.193881
--0.128117 0.116298 0.425729
-
-0.333696 0.512645 -0.791102
-0.681643 0.448465 0.578137
-0.65116 -0.732171 -0.19979
--0.129299 0.116469 0.424475
-
-0.331576 0.524498 -0.784194
-0.6755 0.44828 0.585444
-0.658603 -0.723841 -0.205659
--0.130481 0.11664 0.423197
-
-0.329248 0.536277 -0.777176
-0.669383 0.447948 0.59268
-0.665975 -0.715367 -0.211489
--0.131663 0.11681 0.421895
-
-0.326714 0.547977 -0.770052
-0.663296 0.447468 0.599843
-0.673273 -0.706749 -0.217277
--0.132845 0.116981 0.420568
-
-0.323975 0.559595 -0.76282
-0.657241 0.446842 0.606932
-0.680496 -0.697987 -0.223023
--0.134027 0.117152 0.419218
-
-0.321032 0.571126 -0.755482
-0.651223 0.44607 0.613946
-0.687639 -0.689084 -0.228727
--0.135209 0.117322 0.417843
-
-0.317887 0.582567 -0.74804
-0.645243 0.445155 0.620885
-0.694701 -0.680039 -0.234387
--0.136391 0.117493 0.416444
-
-0.314542 0.593913 -0.740494
-0.639304 0.444098 0.627748
-0.701679 -0.670854 -0.240003
--0.137573 0.117663 0.415021
-
-0.310997 0.60516 -0.732845
-0.633411 0.442899 0.634532
-0.70857 -0.66153 -0.245574
--0.138755 0.117834 0.413573
-
-0.307255 0.616305 -0.725095
-0.627565 0.44156 0.641239
-0.715371 -0.652068 -0.2511
--0.139937 0.118005 0.412102
-
-0.303318 0.627344 -0.717243
-0.62177 0.440083 0.647865
-0.722081 -0.642469 -0.256578
--0.141119 0.118175 0.410606
-
-0.299186 0.638272 -0.709293
-0.616028 0.438468 0.654412
-0.728695 -0.632735 -0.26201
--0.142301 0.118346 0.409086
-
-0.294863 0.649087 -0.701243
-0.610343 0.436719 0.660877
-0.735213 -0.622867 -0.267393
--0.143483 0.118517 0.407542
-
-0.29035 0.659783 -0.693097
-0.604717 0.434835 0.66726
-0.74163 -0.612866 -0.272728
--0.144665 0.118687 0.405974
-
-0.285648 0.670358 -0.684854
-0.599153 0.432819 0.67356
-0.747944 -0.602734 -0.278013
--0.145847 0.118858 0.404381
-
-0.280761 0.680807 -0.676517
-0.593654 0.430673 0.679777
-0.754154 -0.592472 -0.283248
--0.147029 0.119029 0.402765
-
-0.275691 0.691127 -0.668085
-0.588222 0.428398 0.685908
-0.760256 -0.582081 -0.288431
--0.148211 0.119199 0.401124
-
-0.270439 0.701315 -0.65956
-0.582861 0.425996 0.691954
-0.766248 -0.571564 -0.293563
--0.149393 0.11937 0.399459
-
-0.265009 0.711366 -0.650944
-0.577573 0.423469 0.697914
-0.772127 -0.560921 -0.298643
--0.150575 0.119541 0.39777
-
-0.259402 0.721277 -0.642238
-0.57236 0.420819 0.703786
-0.777891 -0.550155 -0.303669
--0.151758 0.119711 0.396056
-
-0.253621 0.731045 -0.633443
-0.567226 0.418048 0.709571
-0.783538 -0.539267 -0.308642
--0.15294 0.119882 0.394319
-
-0.247669 0.740666 -0.624559
-0.562172 0.415158 0.715266
-0.789064 -0.528259 -0.31356
--0.154122 0.120053 0.392557
-
-0.242405 0.748854 -0.616813
-0.559174 0.411709 0.719597
-0.79282 -0.51934 -0.318939
--0.155205 0.120025 0.390868
-
-0.238742 0.75448 -0.61136
-0.559959 0.407397 0.721439
-0.793378 -0.514575 -0.325215
--0.156057 0.119643 0.389368
-
-0.237198 0.756785 -0.609109
-0.565723 0.402112 0.719906
-0.789743 -0.515347 -0.33275
--0.156609 0.118756 0.388122
-
-0.237592 0.756058 -0.609858
-0.575937 0.395928 0.715219
-0.782207 -0.52117 -0.341372
--0.156853 0.117419 0.387133
-
-0.239718 0.753131 -0.612642
-0.589314 0.388603 0.708306
-0.771521 -0.530832 -0.350675
--0.156891 0.115772 0.386324
-
-0.241913 0.749801 -0.615854
-0.603126 0.380994 0.700773
-0.760077 -0.540963 -0.360057
--0.156886 0.114047 0.38553
-
-0.244027 0.746529 -0.618988
-0.616745 0.373103 0.693123
-0.748382 -0.550898 -0.369371
--0.156882 0.112322 0.384712
-
-0.246062 0.743315 -0.622042
-0.630166 0.364933 0.685357
-0.73644 -0.560631 -0.378616
--0.156877 0.110597 0.383869
-
-0.248022 0.740161 -0.625017
-0.643383 0.356491 0.677475
-0.724254 -0.570154 -0.38779
--0.156872 0.108871 0.383003
-
-0.249908 0.73707 -0.627912
-0.656389 0.347779 0.66948
-0.711828 -0.579463 -0.396892
--0.156868 0.107146 0.382112
-
-0.251724 0.734043 -0.630727
-0.669178 0.338804 0.661372
-0.699168 -0.588551 -0.40592
--0.156863 0.105421 0.381197
-
-0.253472 0.731081 -0.63346
-0.681744 0.329571 0.653152
-0.686278 -0.597414 -0.414873
--0.156859 0.103696 0.380258
-
-0.255156 0.728187 -0.636113
-0.694082 0.320084 0.644823
-0.673161 -0.606044 -0.42375
--0.156854 0.101971 0.379294
-
-0.256778 0.725362 -0.638683
-0.706185 0.310349 0.636385
-0.659824 -0.614438 -0.432549
--0.15685 0.100245 0.378307
-
-0.258341 0.722606 -0.641171
-0.718049 0.300372 0.627839
-0.64627 -0.622589 -0.441269
--0.156845 0.0985202 0.377295
-
-0.259848 0.719922 -0.643577
-0.729668 0.290158 0.619187
-0.632505 -0.630492 -0.449908
--0.156841 0.096795 0.376259
-
-0.261303 0.717311 -0.645899
-0.741037 0.279713 0.61043
-0.618534 -0.638142 -0.458464
--0.156836 0.0950698 0.375199
-
-0.262708 0.714774 -0.648138
-0.75215 0.269042 0.60157
-0.604363 -0.645535 -0.466938
--0.156832 0.0933446 0.374115
-
-0.264067 0.712311 -0.650293
-0.763003 0.258152 0.592608
-0.589996 -0.652664 -0.475326
--0.156827 0.0916194 0.373007
-
-0.265382 0.709925 -0.652364
-0.773591 0.247049 0.583545
-0.575439 -0.659525 -0.483628
--0.156823 0.0898941 0.371874
-
-0.266658 0.707615 -0.654351
-0.783908 0.235739 0.574382
-0.560698 -0.666114 -0.491843
--0.156818 0.0881689 0.370717
-
-0.267114 0.705583 -0.656356
-0.793398 0.225565 0.565368
-0.546965 -0.671769 -0.499556
--0.15687 0.0865726 0.369573
-
-0.264576 0.704458 -0.658589
-0.800628 0.22024 0.557216
-0.537582 -0.67471 -0.505738
--0.157075 0.0853706 0.368448
-
-0.258688 0.704298 -0.661093
-0.805475 0.220491 0.550085
-0.533189 -0.674795 -0.510256
--0.157463 0.0846317 0.367363
-
-0.248952 0.705192 -0.663872
-0.807781 0.226984 0.544029
-0.534334 -0.671701 -0.513133
--0.158038 0.0843957 0.366333
-
-0.235364 0.706957 -0.666945
-0.807434 0.23973 0.539055
-0.540975 -0.665388 -0.514398
--0.158804 0.084661 0.365359
-
-0.218248 0.709257 -0.670315
-0.80436 0.25821 0.535101
-0.552606 -0.655959 -0.514144
--0.159756 0.0853834 0.364424
-
-0.19784 0.711762 -0.673984
-0.798388 0.281913 0.532073
-0.568715 -0.643366 -0.512488
--0.160883 0.0865224 0.363523
-
-0.175326 0.714012 -0.677826
-0.790158 0.308652 0.529512
-0.587291 -0.628427 -0.510068
--0.162135 0.0879543 0.362692
-
-0.151032 0.715775 -0.681803
-0.779577 0.337846 0.52737
-0.607823 -0.611167 -0.506977
--0.163474 0.0896062 0.361883
-
-0.126793 0.716697 -0.685762
-0.767936 0.366667 0.525195
-0.627852 -0.593212 -0.503886
--0.164813 0.0912581 0.36105
-
-0.102641 0.716782 -0.689702
-0.755248 0.395078 0.522986
-0.647353 -0.574575 -0.500797
--0.166152 0.0929101 0.360192
-
-0.078603 0.716037 -0.693623
-0.741527 0.423041 0.520743
-0.666302 -0.555273 -0.497708
--0.167491 0.094562 0.359311
-
-0.0547093 0.714468 -0.697526
-0.726791 0.450519 0.518467
-0.684677 -0.53532 -0.494621
--0.16883 0.0962139 0.358405
-
-0.0309882 0.712085 -0.701409
-0.711055 0.477475 0.516157
-0.702453 -0.514735 -0.491535
--0.170169 0.0978658 0.357475
-
-0.00746794 0.708896 -0.705273
-0.694339 0.503874 0.513814
-0.719609 -0.493536 -0.488451
--0.171508 0.0995177 0.356521
-
--0.0148007 0.704709 -0.709342
-0.677224 0.528991 0.511405
-0.735628 -0.472815 -0.485076
--0.172943 0.101169 0.355557
-
--0.0357923 0.699623 -0.713615
-0.659816 0.552852 0.508918
-0.750574 -0.452639 -0.48141
--0.174475 0.102817 0.354581
-
--0.0554881 0.693735 -0.71809
-0.642213 0.575484 0.50634
-0.764515 -0.433071 -0.477458
--0.176104 0.10446 0.353593
-
--0.0734221 0.687098 -0.722845
-0.62482 0.596611 0.503641
-0.777309 -0.41467 -0.473117
--0.177876 0.106089 0.352605
-
--0.0893401 0.679742 -0.72799
-0.607831 0.616233 0.500798
-0.789025 -0.397753 -0.468222
--0.179839 0.107717 0.351623
-
--0.103367 0.671772 -0.733511
-0.591254 0.634522 0.497795
-0.799833 -0.382236 -0.462777
--0.181993 0.109342 0.35065
-
--0.117069 0.663473 -0.738985
-0.574168 0.652355 0.494736
-0.810325 -0.366383 -0.457316
--0.184147 0.110967 0.349652
-
--0.130438 0.654856 -0.744412
-0.556584 0.669718 0.491622
-0.820488 -0.350201 -0.451839
--0.186301 0.112593 0.34863
-
--0.143466 0.645933 -0.749792
-0.538515 0.686598 0.488452
-0.830313 -0.333698 -0.446348
--0.188456 0.114218 0.347584
-
--0.156144 0.636714 -0.755125
-0.519974 0.702981 0.485227
-0.839789 -0.31688 -0.440842
--0.19061 0.115843 0.346513
-
--0.168466 0.627213 -0.760409
-0.500976 0.718853 0.481947
-0.848906 -0.299755 -0.435322
--0.192764 0.117468 0.345418
-
--0.180424 0.617442 -0.765646
-0.481535 0.734203 0.478612
-0.857654 -0.282332 -0.429788
--0.194918 0.119093 0.3443
-
--0.192012 0.607411 -0.770833
-0.461665 0.749019 0.475223
-0.866024 -0.264618 -0.424241
--0.197073 0.120719 0.343157
-
--0.203223 0.597135 -0.775971
-0.44138 0.763288 0.471779
-0.874004 -0.246622 -0.418681
--0.199227 0.122344 0.341989
-
--0.214052 0.586625 -0.781059
-0.420697 0.776998 0.468281
-0.881587 -0.228353 -0.41311
--0.201381 0.123969 0.340798
-
--0.224493 0.575894 -0.786097
-0.399631 0.79014 0.46473
-0.888762 -0.20982 -0.407526
--0.203535 0.125594 0.339582
-
--0.234541 0.564956 -0.791085
-0.378196 0.802703 0.461125
-0.895521 -0.191033 -0.40193
--0.205689 0.12722 0.338343
-
--0.244191 0.553823 -0.796022
-0.35641 0.814675 0.457467
-0.901855 -0.172002 -0.396324
--0.207844 0.128845 0.337079
-
--0.253439 0.542508 -0.800908
-0.334289 0.826049 0.453755
-0.907755 -0.152736 -0.390707
--0.209998 0.13047 0.335791
-
--0.262281 0.531025 -0.805742
-0.31185 0.836814 0.449992
-0.913213 -0.133246 -0.38508
--0.212152 0.132095 0.334478
-
--0.270714 0.519388 -0.810525
-0.289108 0.846962 0.446175
-0.918221 -0.113544 -0.379444
--0.214306 0.133721 0.333142
-
--0.278735 0.507609 -0.815255
-0.266082 0.856484 0.442306
-0.922771 -0.0936387 -0.373798
--0.21646 0.135346 0.331781
-
--0.286341 0.495702 -0.819932
-0.242789 0.865373 0.438386
-0.926856 -0.0735429 -0.368143
--0.218615 0.136971 0.330396
-
--0.29353 0.48368 -0.824556
-0.219247 0.873622 0.434414
-0.930468 -0.0532676 -0.36248
--0.220769 0.138596 0.328987
-
--0.300301 0.471558 -0.829127
-0.195472 0.881224 0.43039
-0.933601 -0.0328247 -0.356809
--0.222923 0.140222 0.327554
-
--0.30368 0.462147 -0.833186
-0.182623 0.886504 0.425159
-0.935108 -0.0230462 -0.353612
--0.224833 0.14144 0.326115
-
--0.303294 0.456114 -0.836644
-0.183996 0.889509 0.418234
-0.934964 -0.0270914 -0.353706
--0.226407 0.14211 0.324631
-
--0.299136 0.453764 -0.839414
-0.200933 0.889925 0.409463
-0.932815 -0.0461807 -0.357385
--0.227617 0.142195 0.323122
-
--0.29236 0.454167 -0.841581
-0.229086 0.887668 0.399455
-0.928464 -0.0760094 -0.363562
--0.228574 0.14188 0.321615
-
--0.285231 0.455083 -0.84353
-0.259346 0.883904 0.38917
-0.922704 -0.107763 -0.37014
--0.229479 0.141485 0.320076
-
--0.278295 0.455947 -0.845378
-0.289491 0.879036 0.378801
-0.915831 -0.13931 -0.376624
--0.230383 0.14109 0.318512
-
--0.271551 0.456773 -0.847124
-0.319479 0.873069 0.368352
-0.907851 -0.170612 -0.383013
--0.231287 0.140694 0.316924
-
--0.264994 0.457573 -0.848767
-0.34927 0.86601 0.357823
-0.898771 -0.201628 -0.389304
--0.232192 0.140299 0.315312
-
--0.25862 0.458359 -0.850307
-0.378821 0.857867 0.347216
-0.8886 -0.232317 -0.395498
--0.233096 0.139904 0.313675
-
--0.252423 0.459145 -0.851744
-0.408093 0.848649 0.336534
-0.87735 -0.262642 -0.401593
--0.234 0.139508 0.312015
-
--0.246398 0.459941 -0.853078
-0.437045 0.838368 0.325777
-0.865032 -0.292563 -0.407587
--0.234904 0.139113 0.31033
-
--0.240538 0.46076 -0.854308
-0.465636 0.827037 0.314948
-0.85166 -0.32204 -0.413481
--0.235809 0.138718 0.308621
-
--0.234837 0.461612 -0.855433
-0.493828 0.814671 0.304048
-0.837249 -0.351036 -0.419272
--0.236713 0.138322 0.306888
-
--0.229286 0.462508 -0.856454
-0.521582 0.801284 0.293079
-0.821815 -0.379512 -0.424959
--0.237617 0.137927 0.305131
-
--0.224827 0.464736 -0.856431
-0.542954 0.789585 0.285929
-0.809107 -0.400718 -0.42985
--0.238088 0.137587 0.303711
-
--0.221166 0.468896 -0.855115
-0.55689 0.780536 0.283967
-0.800599 -0.413402 -0.433751
--0.237986 0.137293 0.302746
-
--0.218363 0.475308 -0.852291
-0.562491 0.774991 0.288085
-0.797447 -0.416499 -0.436586
--0.237214 0.137062 0.30232
-
--0.216344 0.484016 -0.847894
-0.560016 0.772908 0.29832
-0.799736 -0.410294 -0.438271
--0.235766 0.136882 0.302428
-
--0.215186 0.494484 -0.842129
-0.550954 0.773461 0.31338
-0.806315 -0.396539 -0.438876
--0.233777 0.136757 0.302947
-
--0.215066 0.505768 -0.835431
-0.537708 0.775432 0.331022
-0.81524 -0.378026 -0.438725
--0.231497 0.136661 0.303689
-
--0.215338 0.517012 -0.828449
-0.524338 0.776904 0.348553
-0.823832 -0.359331 -0.438386
--0.229218 0.136566 0.304407
-
--0.216003 0.528201 -0.821186
-0.51086 0.777875 0.365967
-0.832084 -0.340461 -0.43786
--0.226939 0.13647 0.305101
-
--0.21706 0.539322 -0.813644
-0.49729 0.778342 0.383258
-0.839993 -0.321427 -0.437146
--0.22466 0.136375 0.305771
-
--0.218509 0.550362 -0.805826
-0.483642 0.778303 0.400419
-0.847552 -0.302236 -0.436244
--0.22238 0.136279 0.306416
-
--0.220351 0.561306 -0.797735
-0.469932 0.777756 0.417444
-0.854757 -0.282897 -0.435155
--0.220101 0.136184 0.307038
-
--0.222584 0.572142 -0.789373
-0.456176 0.776701 0.434326
-0.861603 -0.263419 -0.433879
--0.217822 0.136088 0.307635
-
--0.225207 0.582856 -0.780744
-0.442391 0.775135 0.45106
-0.868085 -0.243812 -0.432416
--0.215543 0.135992 0.308208
-
--0.228218 0.593434 -0.77185
-0.428592 0.77306 0.46764
-0.8742 -0.224084 -0.430767
--0.213263 0.135897 0.308757
-
--0.231615 0.603863 -0.762695
-0.414794 0.770476 0.484059
-0.879943 -0.204246 -0.428933
--0.210984 0.135801 0.309281
-
--0.235395 0.61413 -0.753282
-0.401014 0.767382 0.500312
-0.885312 -0.184306 -0.426913
--0.208705 0.135706 0.309782
-
--0.239554 0.624221 -0.743615
-0.387269 0.763782 0.516392
-0.890302 -0.164275 -0.424708
--0.206426 0.13561 0.310258
-
--0.244089 0.634122 -0.733696
-0.373573 0.759675 0.532294
-0.89491 -0.144161 -0.422319
--0.204146 0.135514 0.31071
-
--0.248997 0.643821 -0.72353
-0.359943 0.755066 0.548012
-0.899134 -0.123976 -0.419748
--0.201867 0.135419 0.311138
-
--0.254272 0.653305 -0.713119
-0.346395 0.749956 0.56354
-0.902971 -0.103729 -0.416994
--0.199588 0.135323 0.311542
-
--0.259909 0.662559 -0.702469
-0.332945 0.744349 0.578872
-0.906419 -0.0834292 -0.414059
--0.197309 0.135228 0.311921
-
--0.268702 0.668737 -0.693246
-0.319552 0.740844 0.590794
-0.908673 -0.0627805 -0.412762
--0.194904 0.134723 0.312371
-
--0.27864 0.671707 -0.686418
-0.306614 0.739539 0.599225
-0.910136 -0.0434971 -0.41202
--0.192738 0.133913 0.312882
-
--0.290101 0.671185 -0.682167
-0.29338 0.740873 0.604182
-0.910917 -0.0248611 -0.41184
--0.190921 0.132811 0.313516
-
--0.303026 0.66727 -0.680387
-0.279915 0.744784 0.60576
-0.910946 -0.00688984 -0.412468
--0.189474 0.131379 0.314304
-
--0.317476 0.659585 -0.68129
-0.266127 0.751559 0.603602
-0.910157 0.01032 -0.414135
--0.188459 0.129579 0.31527
-
--0.329685 0.650936 -0.683805
-0.252306 0.758705 0.60059
-0.909752 0.025477 -0.414369
--0.188185 0.127823 0.316356
-
--0.339519 0.641415 -0.687978
-0.238507 0.766228 0.596665
-0.909858 0.0384915 -0.413131
--0.188657 0.126107 0.31755
-
--0.347212 0.631037 -0.693712
-0.224577 0.77416 0.591813
-0.910499 0.0496932 -0.410514
--0.189833 0.124425 0.318833
-
--0.353394 0.619728 -0.70075
-0.210023 0.782523 0.58613
-0.911594 0.0599616 -0.406696
--0.191634 0.122773 0.320218
-
--0.358672 0.607386 -0.708828
-0.194369 0.791303 0.579707
-0.913003 0.0701504 -0.401875
--0.193933 0.121162 0.321687
-
--0.363067 0.593992 -0.717882
-0.177574 0.800445 0.572499
-0.914686 0.080378 -0.396093
--0.196604 0.119616 0.32317
-
--0.367087 0.580502 -0.726818
-0.160596 0.809186 0.565178
-0.916218 0.0907459 -0.390268
--0.199274 0.118069 0.324628
-
--0.370729 0.566925 -0.735633
-0.143442 0.817523 0.557746
-0.917597 0.101252 -0.384401
--0.201945 0.116523 0.326062
-
--0.373991 0.553273 -0.744325
-0.126124 0.825451 0.550203
-0.918816 0.111893 -0.378492
--0.204616 0.114977 0.327472
-
--0.37687 0.539555 -0.752894
-0.108652 0.832966 0.542552
-0.919872 0.122668 -0.372544
--0.207287 0.113431 0.328857
-
--0.379365 0.525783 -0.761337
-0.0910347 0.840066 0.534792
-0.920758 0.133573 -0.366556
--0.209957 0.111884 0.330219
-
--0.37961 0.513644 -0.769459
-0.0791384 0.846695 0.52616
-0.921756 0.138842 -0.362063
--0.2125 0.110078 0.331531
-
--0.377106 0.503831 -0.777139
-0.0753685 0.853 0.51644
-0.923098 0.136181 -0.359645
--0.214869 0.107929 0.332815
-
--0.372068 0.496317 -0.784369
-0.0799169 0.859029 0.50565
-0.924759 0.125452 -0.359282
--0.21706 0.105441 0.334072
-
--0.367118 0.488672 -0.79147
-0.0845723 0.864895 0.494778
-0.926322 0.114706 -0.358847
--0.219252 0.102953 0.335305
-
--0.362259 0.480897 -0.79844
-0.0893323 0.870594 0.483824
-0.927787 0.103943 -0.35834
--0.221443 0.100465 0.336513
-
--0.357492 0.472995 -0.805279
-0.0941947 0.876125 0.472791
-0.929154 0.0931663 -0.357762
--0.223634 0.0979768 0.337698
-
--0.352821 0.464969 -0.811986
-0.099157 0.881486 0.461681
-0.930422 0.0823768 -0.357112
--0.225825 0.0954886 0.338858
-
--0.348247 0.45682 -0.818559
-0.104217 0.886675 0.450496
-0.931592 0.0715764 -0.35639
--0.228017 0.0930004 0.339994
-
--0.343773 0.448552 -0.824998
-0.109371 0.891689 0.439237
-0.932662 0.0607667 -0.355597
--0.230208 0.0905122 0.341106
-
--0.339401 0.440166 -0.831301
-0.114618 0.896526 0.427906
-0.933632 0.0499495 -0.354733
--0.232399 0.0880241 0.342194
-
--0.335133 0.431666 -0.837466
-0.119955 0.901184 0.416506
-0.934503 0.0391265 -0.353798
--0.234591 0.0855359 0.343258
-
--0.330972 0.423054 -0.843494
-0.125379 0.905662 0.405038
-0.935274 0.0282995 -0.352791
--0.236782 0.0830477 0.344297
-
--0.326919 0.414333 -0.849383
-0.130888 0.909958 0.393504
-0.935945 0.01747 -0.351714
--0.238973 0.0805596 0.345312
-
--0.322977 0.405505 -0.855133
-0.136478 0.914069 0.381906
-0.936515 0.00664 -0.350566
--0.241165 0.0780714 0.346303
-
--0.319147 0.396573 -0.860741
-0.142147 0.917993 0.370246
-0.936984 -0.00418893 -0.349347
--0.243356 0.0755832 0.34727
-
--0.315432 0.387541 -0.866207
-0.147893 0.92173 0.358526
-0.937353 -0.015015 -0.348058
--0.245547 0.073095 0.348213
-
--0.311834 0.37841 -0.87153
-0.153712 0.925277 0.346748
-0.93762 -0.0258365 -0.346699
--0.247739 0.0706069 0.349131
-
--0.308354 0.369184 -0.87671
-0.159601 0.928633 0.334914
-0.937787 -0.0366517 -0.34527
--0.24993 0.0681187 0.350025
-
--0.304995 0.359866 -0.881745
-0.165558 0.931796 0.323027
-0.937853 -0.0474589 -0.343772
--0.252121 0.0656305 0.350895
-
--0.301757 0.350458 -0.886635
-0.17158 0.934765 0.311087
-0.937818 -0.0582562 -0.342203
--0.254312 0.0631424 0.351741
-
--0.298643 0.340964 -0.891379
-0.177663 0.937538 0.299097
-0.937682 -0.069042 -0.340566
--0.256504 0.0606542 0.352563
-
--0.295655 0.331387 -0.895975
-0.183805 0.940113 0.287059
-0.937445 -0.0798145 -0.33886
--0.258695 0.058166 0.353361
-
--0.292794 0.321729 -0.900423
-0.190003 0.94249 0.274976
-0.937107 -0.090572 -0.337085
--0.260886 0.0556778 0.354134
-
--0.290062 0.311994 -0.904723
-0.196253 0.944667 0.262848
-0.936669 -0.101313 -0.335242
--0.263078 0.0531897 0.354883
-
--0.28746 0.302185 -0.908873
-0.202553 0.946643 0.250679
-0.93613 -0.112035 -0.333331
--0.265269 0.0507015 0.355608
-
--0.28499 0.292305 -0.912874
-0.208899 0.948416 0.23847
-0.93549 -0.122737 -0.331352
--0.26746 0.0482133 0.356309
-
--0.282653 0.282358 -0.916723
-0.215289 0.949986 0.226223
-0.93475 -0.133417 -0.329305
--0.269652 0.0457252 0.356985
-
--0.280451 0.272345 -0.920421
-0.221718 0.951352 0.213941
-0.93391 -0.144074 -0.327191
--0.271843 0.043237 0.357638
-
--0.278991 0.262288 -0.92378
-0.222757 0.953413 0.203426
-0.9341 -0.149025 -0.32442
--0.273836 0.0408039 0.358475
-
--0.278833 0.252179 -0.926638
-0.212712 0.957157 0.196478
-0.936486 -0.142322 -0.320528
--0.275427 0.0384417 0.359693
-
--0.279551 0.242186 -0.929084
-0.192336 0.962175 0.19294
-0.940669 -0.12476 -0.315558
--0.276639 0.0361987 0.361277
-
--0.28109 0.232126 -0.931185
-0.162111 0.967848 0.192329
-0.94589 -0.0968939 -0.309682
--0.277523 0.0340301 0.363182
-
--0.28244 0.222153 -0.933207
-0.129838 0.972716 0.192262
-0.950458 -0.066863 -0.303578
--0.278343 0.0318856 0.365132
-
--0.283436 0.212304 -0.935196
-0.0974171 0.976517 0.19216
-0.95403 -0.036639 -0.297462
--0.279163 0.029741 0.367058
-
--0.284086 0.20259 -0.937151
-0.0648842 0.979244 0.192021
-0.956601 -0.00625577 -0.291335
--0.279983 0.0275965 0.36896
-
--0.284683 0.194509 -0.938681
-0.0364446 0.980687 0.19216
-0.957929 0.0204949 -0.286274
--0.280635 0.0253554 0.370828
-
--0.285788 0.190211 -0.939226
-0.0192841 0.981046 0.192813
-0.958099 0.0369914 -0.284039
--0.280897 0.0228399 0.372714
-
--0.2876 0.1896 -0.938796
-0.0135443 0.980916 0.193957
-0.957655 0.0430668 -0.28468
--0.280779 0.0200481 0.374629
-
--0.290203 0.19267 -0.937369
-0.0192183 0.980498 0.195586
-0.956772 0.0387449 -0.288246
--0.280274 0.0169804 0.376563
-
--0.29317 0.197639 -0.935409
-0.0301464 0.979824 0.197575
-0.955585 0.0297237 -0.293213
--0.27956 0.0137908 0.378461
-
--0.296058 0.202676 -0.93342
-0.0410755 0.979026 0.199551
-0.954286 0.0207378 -0.298173
--0.278845 0.0106012 0.380335
-
--0.298866 0.207781 -0.9314
-0.0520041 0.978104 0.201513
-0.952877 0.0117886 -0.303127
--0.278131 0.00741154 0.382185
-
--0.301593 0.212952 -0.929351
-0.0629307 0.977058 0.203461
-0.951358 0.00287774 -0.308075
--0.277417 0.00422193 0.38401
-
--0.304237 0.218188 -0.927272
-0.0738537 0.975888 0.205396
-0.949729 -0.00599335 -0.313015
--0.276702 0.00103232 0.385812
-
--0.306798 0.223488 -0.925164
-0.0847717 0.974594 0.207317
-0.947992 -0.0148232 -0.317949
--0.275988 -0.00215729 0.387589
-
--0.309274 0.228851 -0.923026
-0.0956832 0.973175 0.209225
-0.946147 -0.0236102 -0.322875
--0.275273 -0.00534691 0.389342
-
--0.311665 0.234275 -0.920858
-0.106587 0.971632 0.211118
-0.944195 -0.032353 -0.327794
--0.274559 -0.00853652 0.391071
-
--0.313969 0.23976 -0.918661
-0.117481 0.969964 0.212998
-0.942137 -0.0410502 -0.332705
--0.273845 -0.0117261 0.392775
-
--0.316185 0.245303 -0.916435
-0.128363 0.968172 0.214863
-0.939973 -0.0497002 -0.337609
--0.27313 -0.0149157 0.394455
-
--0.318312 0.250903 -0.91418
-0.139234 0.966255 0.216715
-0.937705 -0.0583017 -0.342505
--0.272416 -0.0181054 0.396112
-
--0.32035 0.25656 -0.911895
-0.15009 0.964214 0.218552
-0.935333 -0.0668532 -0.347393
--0.271702 -0.021295 0.397744
-
--0.322297 0.262271 -0.909582
-0.160931 0.962048 0.220376
-0.932859 -0.0753534 -0.352273
--0.270987 -0.0244846 0.399351
-
--0.324152 0.268035 -0.907239
-0.171755 0.959757 0.222184
-0.930283 -0.0838008 -0.357144
--0.270273 -0.0276742 0.400935
-
--0.325915 0.273852 -0.904867
-0.18256 0.957343 0.223979
-0.927605 -0.0921941 -0.362007
--0.269559 -0.0308638 0.402495
-
--0.327584 0.279719 -0.902467
-0.193345 0.954804 0.225759
-0.924828 -0.100532 -0.366861
--0.268844 -0.0340534 0.40403
-
--0.329159 0.285635 -0.900037
-0.204108 0.952141 0.227525
-0.921951 -0.108813 -0.371706
--0.26813 -0.037243 0.405541
-
--0.330638 0.291599 -0.897579
-0.214848 0.949354 0.229276
-0.918977 -0.117036 -0.376542
--0.267416 -0.0404326 0.407028
-
--0.332021 0.297609 -0.895093
-0.225564 0.946443 0.231013
-0.915906 -0.125199 -0.381369
--0.266701 -0.0436222 0.40849
-
--0.333307 0.303663 -0.892578
-0.236253 0.943408 0.232735
-0.912738 -0.133302 -0.386186
--0.265987 -0.0468119 0.409929
-
--0.334496 0.309761 -0.890034
-0.246915 0.94025 0.234442
-0.909475 -0.141343 -0.390994
--0.265273 -0.0500015 0.411343
-
--0.335586 0.315901 -0.887462
-0.257547 0.936969 0.236134
-0.906119 -0.14932 -0.395793
--0.264558 -0.0531911 0.412733
-
--0.336576 0.322081 -0.884862
-0.268149 0.933564 0.237812
-0.90267 -0.157233 -0.400581
--0.263844 -0.0563807 0.414099
-
--0.337466 0.3283 -0.882233
-0.278718 0.930036 0.239475
-0.899129 -0.16508 -0.405359
--0.263129 -0.0595703 0.415441
-
--0.338256 0.334556 -0.879577
-0.289254 0.926386 0.241123
-0.895497 -0.17286 -0.410127
--0.262415 -0.0627599 0.416759
-
--0.338944 0.340847 -0.876892
-0.299755 0.922614 0.242756
-0.891776 -0.180572 -0.414885
--0.261701 -0.0659495 0.418052
-
--0.338589 0.348025 -0.874206
-0.309607 0.918555 0.245766
-0.888539 -0.187447 -0.418763
--0.261081 -0.0687217 0.419527
-
--0.33698 0.356162 -0.871546
-0.318348 0.914269 0.250533
-0.886058 -0.19303 -0.421474
--0.260591 -0.0709582 0.42125
-
--0.333985 0.36533 -0.8689
-0.325666 0.909789 0.257343
-0.884531 -0.197023 -0.422832
--0.260259 -0.0726189 0.423215
-
--0.329636 0.375379 -0.866274
-0.330798 0.905314 0.26642
-0.884258 -0.19874 -0.422598
--0.260113 -0.0736649 0.425422
-
--0.323963 0.386338 -0.863592
-0.334239 0.900694 0.277552
-0.88506 -0.19873 -0.420921
--0.260125 -0.0741353 0.427873
-
--0.317637 0.397629 -0.860813
-0.336464 0.896016 0.289736
-0.886509 -0.197602 -0.418396
--0.260225 -0.0743092 0.43044
-
--0.311243 0.408843 -0.85789
-0.338592 0.891195 0.301873
-0.887966 -0.196519 -0.415809
--0.260326 -0.0744831 0.432983
-
--0.304782 0.419979 -0.854825
-0.340622 0.88623 0.313962
-0.889429 -0.195483 -0.413161
--0.260427 -0.0746569 0.435502
-
--0.298256 0.431035 -0.851617
-0.342553 0.881125 0.326
-0.890899 -0.194493 -0.410453
--0.260528 -0.0748308 0.437996
-
--0.291667 0.442009 -0.848268
-0.344383 0.875881 0.337985
-0.892374 -0.19355 -0.407685
--0.260628 -0.0750047 0.440467
-
--0.285015 0.452899 -0.844778
-0.34611 0.870498 0.349916
-0.893854 -0.192655 -0.404858
--0.260729 -0.0751786 0.442913
-
--0.278302 0.463704 -0.841146
-0.347734 0.864979 0.361791
-0.895337 -0.191809 -0.401971
--0.26083 -0.0753525 0.445335
-
--0.27153 0.474421 -0.837375
-0.349254 0.859325 0.373607
-0.896824 -0.191012 -0.399026
--0.260931 -0.0755264 0.447733
-
--0.264699 0.485048 -0.833464
-0.350669 0.853538 0.385362
-0.898313 -0.190264 -0.396022
--0.261031 -0.0757003 0.450107
-
--0.257813 0.495585 -0.829414
-0.351976 0.84762 0.397056
-0.899803 -0.189568 -0.392961
--0.261132 -0.0758742 0.452456
-
--0.250871 0.506028 -0.825226
-0.353176 0.841572 0.408685
-0.901294 -0.188922 -0.389843
--0.261233 -0.0760481 0.454782
-
--0.243876 0.516377 -0.820901
-0.354266 0.835396 0.420248
-0.902784 -0.188329 -0.386668
--0.261334 -0.076222 0.457083
-
--0.23683 0.52663 -0.816439
-0.355247 0.829094 0.431744
-0.904274 -0.187787 -0.383438
--0.261434 -0.0763958 0.45936
-
--0.229733 0.536784 -0.811841
-0.356116 0.822668 0.44317
-0.905762 -0.187299 -0.380151
--0.261535 -0.0765697 0.461612
-
--0.222588 0.546838 -0.807107
-0.356873 0.816119 0.454524
-0.907246 -0.186864 -0.37681
--0.261636 -0.0767436 0.463841
-
--0.215396 0.556791 -0.802239
-0.357517 0.809449 0.465804
-0.908728 -0.186482 -0.373414
--0.261737 -0.0769175 0.466046
-
--0.208158 0.566641 -0.797238
-0.358048 0.802661 0.477009
-0.910204 -0.186156 -0.369965
--0.261837 -0.0770914 0.468226
-
--0.200877 0.576386 -0.792103
-0.358463 0.795755 0.488137
-0.911676 -0.185884 -0.366462
--0.261938 -0.0772653 0.470382
-
--0.193554 0.586025 -0.786836
-0.358762 0.788735 0.499187
-0.913141 -0.185668 -0.362906
--0.262039 -0.0774392 0.472514
-
--0.186191 0.595556 -0.781439
-0.358945 0.781601 0.510155
-0.914599 -0.185507 -0.359299
--0.26214 -0.0776131 0.474621
-
--0.178789 0.604977 -0.77591
-0.35901 0.774356 0.521041
-0.916049 -0.185404 -0.355639
--0.26224 -0.077787 0.476705
-
--0.17135 0.614288 -0.770253
-0.358957 0.767003 0.531843
-0.91749 -0.185357 -0.351929
--0.262341 -0.0779609 0.478764
-
--0.163876 0.623487 -0.764467
-0.358785 0.759542 0.542558
-0.918922 -0.185367 -0.348169
--0.262442 -0.0781348 0.480799
-
--0.156369 0.632571 -0.758553
-0.358493 0.751976 0.553186
-0.920343 -0.185435 -0.344358
--0.262543 -0.0783086 0.48281
-
--0.148831 0.641541 -0.752513
-0.358081 0.744307 0.563724
-0.921752 -0.185561 -0.340499
--0.262643 -0.0784825 0.484797
-
--0.141262 0.650394 -0.746347
-0.357548 0.736537 0.574172
-0.923149 -0.185746 -0.336591
--0.262744 -0.0786564 0.48676
-
--0.133666 0.659129 -0.740056
-0.356892 0.728668 0.584526
-0.924533 -0.185989 -0.332636
--0.262845 -0.0788303 0.488698
-
--0.126043 0.667744 -0.733642
-0.356115 0.720703 0.594785
-0.925903 -0.186292 -0.328633
--0.262946 -0.0790042 0.490612
-
--0.118396 0.67624 -0.727105
-0.355214 0.712643 0.604949
-0.927257 -0.186654 -0.324584
--0.263046 -0.0791781 0.492502
-
--0.110727 0.684613 -0.720447
-0.35419 0.704491 0.615014
-0.928595 -0.187077 -0.320489
--0.263147 -0.079352 0.494368
-
--0.103036 0.692864 -0.713669
-0.353042 0.696248 0.62498
-0.929917 -0.187559 -0.316349
--0.263248 -0.0795259 0.49621
-
--0.0953275 0.70099 -0.706771
-0.351769 0.687918 0.634845
-0.93122 -0.188102 -0.312164
--0.263349 -0.0796998 0.498027
-
--0.0876016 0.708991 -0.699755
-0.350372 0.679501 0.644607
-0.932505 -0.188706 -0.307936
--0.263449 -0.0798737 0.49982
-
--0.0798606 0.716865 -0.692623
-0.348849 0.671001 0.654264
-0.93377 -0.189371 -0.303664
--0.26355 -0.0800475 0.501589
-
--0.0721064 0.724612 -0.685374
-0.3472 0.66242 0.663816
-0.935015 -0.190097 -0.29935
--0.263651 -0.0802214 0.503334
-
--0.0643409 0.732231 -0.678011
-0.345426 0.65376 0.67326
-0.936238 -0.190884 -0.294995
--0.263752 -0.0803953 0.505055
-
--0.056566 0.739719 -0.670534
-0.343525 0.645022 0.682596
-0.937439 -0.191733 -0.290598
--0.263852 -0.0805692 0.506751
-
--0.0487837 0.747077 -0.662945
-0.341497 0.636211 0.691821
-0.938616 -0.192644 -0.286161
--0.263953 -0.0807431 0.508424
-
--0.0409958 0.754303 -0.655245
-0.339343 0.627327 0.700933
-0.939769 -0.193617 -0.281685
--0.264054 -0.080917 0.510072
-
--0.0332042 0.761397 -0.647435
-0.337061 0.618373 0.709933
-0.940897 -0.194653 -0.27717
--0.264155 -0.0810909 0.511696
-
--0.025411 0.768357 -0.639517
-0.334653 0.609352 0.718817
-0.941999 -0.19575 -0.272617
--0.264255 -0.0812648 0.513296
-
--0.0176179 0.775183 -0.631492
-0.332117 0.600265 0.727585
-0.943074 -0.19691 -0.268027
--0.264356 -0.0814387 0.514871
-
--0.00982712 0.781873 -0.62336
-0.329453 0.591116 0.736235
-0.944121 -0.198133 -0.2634
--0.264457 -0.0816126 0.516423
-
--0.00204042 0.788427 -0.615125
-0.326662 0.581906 0.744766
-0.945139 -0.199418 -0.258737
--0.264558 -0.0817865 0.51795
-
-0.0057402 0.794845 -0.606786
-0.323744 0.572638 0.753177
-0.946127 -0.200767 -0.254039
--0.264658 -0.0819603 0.519453
-
-0.0135128 0.801125 -0.598345
-0.320698 0.563315 0.761465
-0.947085 -0.202178 -0.249307
--0.264759 -0.0821342 0.520932
-
-0.0212753 0.807267 -0.589803
-0.317525 0.553938 0.769631
-0.948011 -0.203651 -0.244542
--0.26486 -0.0823081 0.522386
-
-0.0290259 0.813269 -0.581163
-0.314224 0.54451 0.777671
-0.948905 -0.205188 -0.239744
--0.26496 -0.082482 0.523817
-
-0.0367626 0.819133 -0.572425
-0.310796 0.535034 0.785586
-0.949765 -0.206787 -0.234914
--0.265061 -0.0826559 0.525223
-
-0.0444833 0.824856 -0.563591
-0.307241 0.525511 0.793373
-0.950592 -0.20845 -0.230053
--0.265162 -0.0828298 0.526605
-
-0.0521861 0.830438 -0.554662
-0.303559 0.515945 0.801032
-0.951383 -0.210175 -0.225161
--0.265263 -0.0830037 0.527963
-
-0.0598691 0.835879 -0.545639
-0.29975 0.506338 0.808562
-0.952137 -0.211963 -0.22024
--0.265363 -0.0831776 0.529297
-
-0.0675303 0.841178 -0.536525
-0.295814 0.496692 0.81596
-0.952855 -0.213814 -0.215291
--0.265464 -0.0833515 0.530607
-
-0.0751676 0.846335 -0.52732
-0.291753 0.48701 0.823226
-0.953536 -0.215727 -0.210313
--0.265565 -0.0835254 0.531892
-
-0.0827792 0.85135 -0.518026
-0.287566 0.477294 0.83036
-0.954177 -0.217703 -0.205309
--0.265666 -0.0836992 0.533153
-
-0.090363 0.856221 -0.508645
-0.283253 0.467546 0.837358
-0.954779 -0.219741 -0.200278
--0.265766 -0.0838731 0.53439
-
-0.0979171 0.860949 -0.499178
-0.278815 0.45777 0.844221
-0.95534 -0.221842 -0.195222
--0.265867 -0.084047 0.535603
-
-0.10544 0.865533 -0.489627
-0.274252 0.447967 0.850947
-0.95586 -0.224005 -0.190141
--0.265968 -0.0842209 0.536792
-
-0.112928 0.869973 -0.479993
-0.269565 0.43814 0.857536
-0.956338 -0.22623 -0.185036
--0.266069 -0.0843948 0.537956
-
-0.120381 0.874269 -0.470278
-0.264755 0.428291 0.863986
-0.956772 -0.228516 -0.179909
--0.266169 -0.0845687 0.539096
-
-0.127797 0.878421 -0.460483
-0.259821 0.418424 0.870296
-0.957163 -0.230864 -0.174759
--0.26627 -0.0847426 0.540212
-
-0.135173 0.882428 -0.45061
-0.254765 0.40854 0.876465
-0.957509 -0.233274 -0.169588
--0.266371 -0.0849165 0.541304
-
-0.142507 0.88629 -0.440661
-0.249587 0.398641 0.882492
-0.957809 -0.235745 -0.164397
--0.266472 -0.0850904 0.542372
-
-0.149798 0.890007 -0.430637
-0.244288 0.388731 0.888376
-0.958063 -0.238277 -0.159186
--0.266572 -0.0852643 0.543415
-
-0.157044 0.893579 -0.42054
-0.238867 0.378812 0.894116
-0.958269 -0.240869 -0.153957
--0.266673 -0.0854381 0.544435
-
-0.164242 0.897006 -0.410371
-0.233327 0.368886 0.899712
-0.958427 -0.243522 -0.148709
--0.266774 -0.085612 0.54543
-
-0.171392 0.900288 -0.400132
-0.227668 0.358956 0.905162
-0.958536 -0.246234 -0.143445
--0.266875 -0.0857859 0.546401
-
-0.17849 0.903426 -0.389825
-0.221891 0.349024 0.910465
-0.958596 -0.249007 -0.138165
--0.266975 -0.0859598 0.547348
-
-0.185534 0.906418 -0.379452
-0.215995 0.339092 0.915621
-0.958605 -0.251839 -0.132869
--0.267076 -0.0861337 0.54827
-
-0.192524 0.909265 -0.369013
-0.209983 0.329164 0.920629
-0.958562 -0.25473 -0.127559
--0.267177 -0.0863076 0.549169
-
-0.199457 0.911968 -0.358512
-0.203856 0.319241 0.925488
-0.958467 -0.25768 -0.122235
--0.267278 -0.0864815 0.550043
-
-0.206331 0.914527 -0.347949
-0.197613 0.309326 0.930197
-0.95832 -0.260688 -0.116899
--0.267378 -0.0866554 0.550893
-
-0.213145 0.916941 -0.337326
-0.191256 0.299422 0.934755
-0.958118 -0.263754 -0.111551
--0.267479 -0.0868293 0.551719
-
-0.219896 0.919211 -0.326646
-0.184787 0.28953 0.939162
-0.957862 -0.266878 -0.106192
--0.26758 -0.0870032 0.55252
-
-0.226582 0.921337 -0.315909
-0.178205 0.279654 0.943417
-0.957551 -0.270059 -0.100822
--0.267681 -0.0871771 0.553298
-
-0.233203 0.92332 -0.305117
-0.171513 0.269795 0.94752
-0.957183 -0.273296 -0.0954443
--0.267781 -0.0873509 0.554051
-
-0.239755 0.92516 -0.294273
-0.164711 0.259957 0.951469
-0.956759 -0.27659 -0.0900578
--0.267882 -0.0875248 0.55478
-
-0.246238 0.926857 -0.283378
-0.1578 0.25014 0.955264
-0.956277 -0.279939 -0.0846639
--0.267983 -0.0876987 0.555485
-
-0.252648 0.928412 -0.272433
-0.150781 0.240349 0.958904
-0.955737 -0.283343 -0.0792635
--0.268084 -0.0878726 0.556166
-
-0.258986 0.929825 -0.261441
-0.143657 0.230585 0.962389
-0.955138 -0.286803 -0.0738575
--0.268184 -0.0880465 0.556822
-
-0.265247 0.931097 -0.250404
-0.136427 0.22085 0.965719
-0.95448 -0.290316 -0.0684468
--0.268285 -0.0882204 0.557455
-
-0.271432 0.932228 -0.239322
-0.129093 0.211147 0.968892
-0.953761 -0.293883 -0.0630322
--0.268386 -0.0883943 0.558063
-
-0.277538 0.933219 -0.228198
-0.121657 0.201478 0.971908
-0.952981 -0.297504 -0.0576146
--0.268487 -0.0885682 0.558647
-
-0.283564 0.93407 -0.217035
-0.114119 0.191846 0.974768
-0.952139 -0.301177 -0.0521949
--0.268587 -0.0887421 0.559207
-
-0.289507 0.934783 -0.205832
-0.106482 0.182253 0.977469
-0.951235 -0.304902 -0.046774
--0.268688 -0.088916 0.559742
-
-0.30059 0.93341 -0.195938
-0.101288 0.173035 0.979694
-0.94836 -0.314332 -0.0425304
--0.268654 -0.0893457 0.560497
-
-0.316784 0.929807 -0.187367
-0.0984063 0.164257 0.981497
-0.943379 -0.329361 -0.039465
--0.268485 -0.0900341 0.561466
-
-0.337988 0.923756 -0.180107
-0.0976895 0.155901 0.98293
-0.936067 -0.349814 -0.0375484
--0.268176 -0.0909779 0.562652
-
-0.359051 0.917176 -0.172832
-0.0966682 0.147639 0.984306
-0.928298 -0.370124 -0.0356518
--0.267866 -0.0919218 0.563813
-
-0.379959 0.91007 -0.165543
-0.095346 0.139479 0.985624
-0.920076 -0.39028 -0.0337752
--0.267557 -0.0928657 0.56495
-
-0.400698 0.902442 -0.15824
-0.0937267 0.131431 0.986885
-0.911404 -0.410274 -0.0319188
--0.267247 -0.0938096 0.566062
-
-0.421254 0.894297 -0.150924
-0.0918143 0.123504 0.988087
-0.902283 -0.430093 -0.0300827
--0.266938 -0.0947535 0.567151
-
-0.441614 0.885639 -0.143596
-0.0896134 0.115707 0.989233
-0.892718 -0.449727 -0.0282671
--0.266628 -0.0956974 0.568215
-
-0.461765 0.876475 -0.136255
-0.0871284 0.10805 0.99032
-0.882713 -0.469167 -0.0264721
--0.266319 -0.0966413 0.569255
-
-0.481694 0.866808 -0.128902
-0.0843643 0.100541 0.99135
-0.872269 -0.488401 -0.0246978
--0.266009 -0.0975851 0.570271
-
-0.501386 0.856645 -0.121539
-0.0813263 0.0931885 0.992321
-0.861393 -0.507421 -0.0229443
--0.2657 -0.098529 0.571263
-
-0.52083 0.845992 -0.114164
-0.0780198 0.0860018 0.993235
-0.850088 -0.526214 -0.0212118
--0.26539 -0.0994729 0.572231
-
-0.540013 0.834856 -0.10678
-0.0744506 0.0789891 0.994091
-0.838358 -0.544772 -0.0195004
--0.265081 -0.100417 0.573174
-
-0.558921 0.823243 -0.0993856
-0.0706245 0.0721587 0.99489
-0.826208 -0.563084 -0.0178102
--0.264771 -0.101361 0.574094
-
-0.577543 0.811162 -0.0919823
-0.0665478 0.0655185 0.99563
-0.813643 -0.58114 -0.0161413
--0.264462 -0.102305 0.574989
-
-0.595866 0.798618 -0.0845704
-0.0622269 0.0590766 0.996312
-0.800669 -0.598931 -0.0144938
--0.264152 -0.103248 0.575859
-
-0.613879 0.785621 -0.0771504
-0.0576684 0.0528405 0.996936
-0.787291 -0.616447 -0.0128679
--0.263843 -0.104192 0.576706
-
-0.631569 0.772178 -0.0697227
-0.0528793 0.0468178 0.997503
-0.773514 -0.633679 -0.0112636
--0.263533 -0.105136 0.577529
-
-0.648925 0.758298 -0.0622879
-0.0478668 0.0410157 0.998011
-0.759345 -0.650616 -0.00968118
--0.263224 -0.10608 0.578327
-
-0.665936 0.74399 -0.0548466
-0.042638 0.0354413 0.998462
-0.74479 -0.66725 -0.00812062
--0.262914 -0.107024 0.579101
-
-0.68259 0.729263 -0.0473991
-0.0372007 0.0301016 0.998854
-0.729854 -0.683571 -0.00658206
--0.262605 -0.107968 0.579851
-
-0.698876 0.714126 -0.039946
-0.0315625 0.025003 0.999189
-0.714546 -0.69957 -0.00506562
--0.262295 -0.108912 0.580577
-
-0.714785 0.698589 -0.0324878
-0.0257315 0.020152 0.999466
-0.698871 -0.715239 -0.00357141
--0.261986 -0.109856 0.581278
-
-0.730305 0.682663 -0.025025
-0.0197157 0.0155547 0.999685
-0.682837 -0.730568 -0.00209952
--0.261676 -0.1108 0.581956
-
-0.745427 0.666356 -0.0175581
-0.0135236 0.0112171 0.999846
-0.66645 -0.745549 -0.000650061
--0.261367 -0.111743 0.582609
-
-0.76014 0.649681 -0.0100877
-0.00716369 0.0071447 0.999949
-0.64972 -0.760173 0.00077686
--0.261057 -0.112687 0.583238
-
-0.774436 0.632647 -0.00261415
-0.000644591 0.00334301 0.999994
-0.632652 -0.774433 0.00218114
--0.260748 -0.113631 0.583843
-
-0.788304 0.615266 0.00486197
--0.00602479 -0.000182871 0.999982
-0.615256 -0.788319 0.00356269
--0.260438 -0.114575 0.584424
-
-0.801737 0.597549 0.0123402
--0.0128354 -0.00342806 0.999912
-0.597539 -0.801825 0.0049214
--0.260129 -0.115519 0.58498
-
-0.814725 0.579508 0.01982
--0.0197782 -0.00638797 0.999784
-0.579509 -0.814941 0.00625718
--0.259819 -0.116463 0.585512
-
-0.827261 0.561154 0.0273008
--0.0268438 -0.00905827 0.999599
-0.561176 -0.827662 0.00756994
--0.25951 -0.117407 0.58602
-
-0.839335 0.5425 0.0347823
--0.0340227 -0.0114349 0.999356
-0.542548 -0.839978 0.00885957
--0.2592 -0.118351 0.586504
-
-0.850942 0.523557 0.0422638
--0.0413054 -0.0135141 0.999055
-0.523634 -0.851883 0.010126
--0.258891 -0.119295 0.586964
-
-0.862072 0.504339 0.0497449
--0.0486822 -0.0152925 0.998697
-0.504442 -0.863371 0.0113691
--0.258581 -0.120238 0.5874
-
-0.872719 0.484857 0.0572251
--0.0561433 -0.0167667 0.998282
-0.484983 -0.874433 0.0125888
--0.258272 -0.121182 0.587811
-
-0.882878 0.465124 0.0647039
--0.0636789 -0.017934 0.997809
-0.465266 -0.885064 0.0137851
--0.257962 -0.122126 0.588198
-
-0.89254 0.445154 0.0721808
--0.0712789 -0.0187917 0.997279
-0.445299 -0.895257 0.0149578
--0.257653 -0.12307 0.588561
-
-0.901701 0.42496 0.0796553
--0.0789333 -0.0193375 0.996692
-0.425094 -0.905006 0.0161068
--0.257343 -0.124014 0.5889
-
-0.910354 0.404554 0.087127
--0.0866319 -0.0195695 0.996048
-0.40466 -0.914305 0.0172321
--0.257034 -0.124958 0.589215
-
-0.918495 0.383951 0.0945952
--0.0943645 -0.019486 0.995347
-0.384008 -0.923148 0.0183336
--0.256724 -0.125902 0.589505
-
-0.926119 0.363163 0.10206
--0.102121 -0.0190855 0.994589
-0.363146 -0.93153 0.0194112
--0.256415 -0.126846 0.589771
-
-0.933221 0.342206 0.10952
--0.109891 -0.018367 0.993774
-0.342087 -0.939446 0.0204648
--0.256105 -0.12779 0.590013
-
-0.939796 0.321091 0.116975
--0.117664 -0.0173298 0.992902
-0.320839 -0.94689 0.0214944
--0.255796 -0.128733 0.590231
-
-0.945842 0.299834 0.124424
--0.125429 -0.0159733 0.991974
-0.299415 -0.953858 0.0224998
--0.255486 -0.129677 0.590425
-
-0.951355 0.278448 0.131868
--0.133177 -0.0142975 0.990989
-0.277825 -0.960345 0.0234811
--0.255177 -0.130621 0.590594
-
-0.956332 0.256948 0.139306
--0.140897 -0.0123025 0.989948
-0.256079 -0.966347 0.0244381
--0.254867 -0.131565 0.59074
-
-0.96077 0.235347 0.146737
--0.148579 -0.00998877 0.98885
-0.234189 -0.97186 0.0253707
--0.254558 -0.132509 0.590861
-
-0.964668 0.213661 0.154161
--0.156211 -0.00735718 0.987696
-0.212166 -0.97688 0.026279
--0.254248 -0.133453 0.590958
-
-0.968022 0.191902 0.161576
--0.163784 -0.0044088 0.986486
-0.190021 -0.981404 0.0271627
--0.253939 -0.134397 0.59103
-
-0.970832 0.170086 0.168984
--0.171288 -0.00114507 0.98522
-0.167766 -0.985429 0.028022
--0.253629 -0.135341 0.591079
-
-0.973097 0.148227 0.176383
--0.178711 0.00243228 0.983899
-0.145411 -0.98895 0.0288566
--0.25332 -0.136285 0.591103
-
-0.974816 0.126339 0.183772
--0.186044 0.00632118 0.982521
-0.122969 -0.991967 0.0296666
--0.25301 -0.137228 0.591104
-
-0.975989 0.104437 0.191152
--0.193277 0.0105193 0.981088
-0.100451 -0.994476 0.0304518
--0.252701 -0.138172 0.59108
-
-0.976615 0.0825344 0.198522
--0.200398 0.0150239 0.979599
-0.077868 -0.996475 0.0312123
--0.252391 -0.139116 0.591031
-
-0.976696 0.0606467 0.205881
--0.207399 0.019832 0.978055
-0.0552328 -0.997962 0.0319479
--0.252082 -0.14006 0.590959
-
-0.976232 0.0387879 0.213229
--0.214269 0.0249404 0.976456
-0.0325567 -0.998936 0.0326587
--0.251772 -0.141004 0.590863
-
-0.975224 0.0169724 0.220566
--0.220998 0.0303454 0.974802
-0.00985155 -0.999395 0.0333444
--0.251463 -0.141948 0.590742
-
-0.973675 -0.00478566 0.22789
--0.227577 0.0360432 0.973093
--0.0128708 -0.999339 0.0340052
--0.251153 -0.142892 0.590597
-
-0.971586 -0.0264719 0.235202
--0.233995 0.0420295 0.971329
--0.0355983 -0.998766 0.034641
--0.250844 -0.143836 0.590428
-
-0.968959 -0.0480722 0.242501
--0.240243 0.0482998 0.969511
--0.0583192 -0.997675 0.0352516
--0.250534 -0.14478 0.590235
-
-0.965798 -0.0695724 0.249786
--0.246311 0.0548495 0.967638
--0.0810215 -0.996068 0.0358371
--0.250225 -0.145723 0.590017
-
-0.962106 -0.0909584 0.257058
--0.25219 0.0616733 0.96571
--0.103693 -0.993943 0.0363974
--0.249915 -0.146667 0.589775
-
-0.957886 -0.112216 0.264315
--0.257871 0.0687659 0.963729
--0.126322 -0.991302 0.0369324
--0.249606 -0.147611 0.58951
-
-0.953142 -0.133333 0.271557
--0.263345 0.0761216 0.961694
--0.148896 -0.988144 0.0374422
--0.249296 -0.148555 0.58922
-
-0.947878 -0.154293 0.278784
--0.268603 0.0837347 0.959605
--0.171404 -0.98447 0.0379266
--0.248987 -0.149499 0.588905
-
-0.9421 -0.175084 0.285996
--0.273636 0.0915987 0.957462
--0.193833 -0.980283 0.0383857
--0.248677 -0.150443 0.588567
-
-0.935812 -0.195693 0.293191
--0.278435 0.0997073 0.955266
--0.216172 -0.975583 0.0388194
--0.248368 -0.151387 0.588204
-
-0.929019 -0.216106 0.300369
--0.282992 0.108054 0.953016
--0.238408 -0.970372 0.0392277
--0.248058 -0.152331 0.587818
-
-0.921728 -0.236309 0.30753
--0.2873 0.116631 0.950714
--0.26053 -0.964653 0.0396105
--0.247749 -0.153275 0.587407
-
-0.913945 -0.256291 0.314674
--0.291348 0.125432 0.948358
--0.282525 -0.958427 0.0399677
--0.24744 -0.154218 0.586971
-
-0.905676 -0.276037 0.321799
--0.295131 0.134448 0.94595
--0.304383 -0.951697 0.0402995
--0.24713 -0.155162 0.586512
-
-0.896927 -0.295536 0.328907
--0.298641 0.143674 0.943489
--0.32609 -0.944466 0.0406057
--0.246821 -0.156106 0.586029
-
-0.887707 -0.314775 0.335995
--0.301869 0.153099 0.940976
--0.347636 -0.936738 0.0408863
--0.246511 -0.15705 0.585521
-
-0.878023 -0.333742 0.343064
--0.304809 0.162717 0.938411
--0.369009 -0.928515 0.0411413
--0.246202 -0.157994 0.584989
-
-0.867882 -0.352424 0.350113
--0.307454 0.172518 0.935794
--0.390197 -0.919802 0.0413706
--0.245892 -0.158938 0.584433
-
-0.857292 -0.370811 0.357141
--0.309797 0.182494 0.933125
--0.411189 -0.910602 0.0415743
--0.245583 -0.159882 0.583853
-
-0.846263 -0.388889 0.36415
--0.311833 0.192636 0.930404
--0.431973 -0.90092 0.0417523
--0.245273 -0.160826 0.583248
-
-0.834802 -0.406649 0.371136
--0.313553 0.202935 0.927632
--0.452537 -0.89076 0.0419046
--0.244964 -0.161769 0.58262
-
-0.822919 -0.424079 0.378102
--0.314953 0.213382 0.924809
--0.472872 -0.880128 0.0420311
--0.244654 -0.162713 0.581967
-
-0.810624 -0.441168 0.385045
--0.316028 0.223967 0.921936
--0.492966 -0.869028 0.0421319
--0.244345 -0.163657 0.58129
-
-0.797926 -0.457905 0.391966
--0.316771 0.234681 0.919011
--0.512807 -0.857466 0.042207
--0.244035 -0.164601 0.580589
-
-0.784835 -0.474281 0.398864
--0.317177 0.245513 0.916036
--0.532385 -0.845447 0.0422563
--0.243726 -0.165545 0.579863
-
-0.77136 -0.490285 0.405739
--0.317242 0.256454 0.913011
--0.551689 -0.832978 0.0422798
--0.243416 -0.166489 0.579114
-
-0.757514 -0.505907 0.41259
--0.316962 0.267494 0.909935
--0.570708 -0.820064 0.0422775
--0.243107 -0.167433 0.57834
-
-0.743306 -0.521138 0.419417
--0.316331 0.278622 0.90681
--0.589432 -0.806712 0.0422495
--0.242797 -0.168377 0.577542
-
-0.735017 -0.528839 0.424358
--0.315826 0.286793 0.904436
--0.600003 -0.798799 0.0437763
--0.242406 -0.168991 0.576993
-
-0.73475 -0.527186 0.42687
--0.315892 0.290969 0.903078
--0.600296 -0.798381 0.0472553
--0.241928 -0.169177 0.576796
-
-0.74326 -0.515311 0.426637
--0.316809 0.290569 0.902885
--0.589234 -0.806241 0.0527129
--0.24135 -0.168901 0.576982
-
-0.757578 -0.49596 0.424382
--0.318243 0.287006 0.90352
--0.56991 -0.819543 0.0595933
--0.240689 -0.168299 0.57742
-
-0.771391 -0.476235 0.422085
--0.319672 0.283519 0.904117
--0.550241 -0.832356 0.0664645
--0.240029 -0.167697 0.577835
-
-0.784691 -0.45615 0.419746
--0.321099 0.280105 0.904675
--0.530241 -0.84467 0.0733261
--0.239368 -0.167094 0.578225
-
-0.797468 -0.435719 0.417366
--0.322529 0.276763 0.905195
--0.509922 -0.856476 0.0801777
--0.238707 -0.166492 0.578591
-
-0.809713 -0.414953 0.414945
--0.323966 0.273492 0.905676
--0.489297 -0.867765 0.0870189
--0.238047 -0.16589 0.578933
-
-0.821417 -0.393869 0.412482
--0.325413 0.270288 0.906118
--0.468381 -0.878528 0.0938491
--0.237386 -0.165288 0.579251
-
-0.832572 -0.37248 0.409979
--0.326875 0.267151 0.906523
--0.447187 -0.888757 0.100668
--0.236726 -0.164685 0.579545
-
-0.843171 -0.3508 0.407435
--0.328355 0.264077 0.906888
--0.42573 -0.898445 0.107475
--0.236065 -0.164083 0.579814
-
-0.853205 -0.328844 0.40485
--0.329858 0.261065 0.907215
--0.404024 -0.907583 0.11427
--0.235404 -0.163481 0.580059
-
-0.862668 -0.306627 0.402224
--0.331386 0.258111 0.907503
--0.382083 -0.916165 0.121052
--0.234744 -0.162879 0.580281
-
-0.871553 -0.284163 0.399559
--0.332944 0.255214 0.907752
--0.359923 -0.924185 0.127822
--0.234083 -0.162276 0.580477
-
-0.879853 -0.261469 0.396853
--0.334534 0.252369 0.907963
--0.337558 -0.931635 0.134577
--0.233422 -0.161674 0.58065
-
-0.887563 -0.238559 0.394107
--0.336161 0.249575 0.908135
--0.315003 -0.93851 0.141319
--0.232762 -0.161072 0.580799
-
-0.894678 -0.215449 0.391322
--0.337826 0.246827 0.908267
--0.292275 -0.944806 0.148047
--0.232101 -0.16047 0.580923
-
-0.901192 -0.192155 0.388496
--0.339534 0.244124 0.908361
--0.269388 -0.950516 0.154759
--0.231441 -0.159867 0.581023
-
-0.9071 -0.168692 0.385632
--0.341287 0.241461 0.908416
--0.246358 -0.955636 0.161457
--0.23078 -0.159265 0.581099
-
-0.912399 -0.145077 0.382728
--0.343088 0.238835 0.908432
--0.223201 -0.960162 0.168139
--0.230119 -0.158663 0.581151
-
-0.917084 -0.121324 0.379785
--0.344939 0.236242 0.908409
--0.199933 -0.96409 0.174804
--0.229459 -0.158061 0.581178
-
-0.921153 -0.0974515 0.376803
--0.346843 0.233679 0.908347
--0.176571 -0.967418 0.181453
--0.228798 -0.157458 0.581182
-
-0.924602 -0.0734742 0.373783
--0.348803 0.231141 0.908246
--0.153129 -0.970142 0.188086
--0.228137 -0.156856 0.581161
-
-0.927428 -0.0494088 0.370724
--0.35082 0.228626 0.908106
--0.129625 -0.97226 0.194701
--0.227477 -0.156254 0.581116
-
-0.92963 -0.0252717 0.367626
--0.352896 0.226129 0.907926
--0.106076 -0.97377 0.201298
--0.226816 -0.155652 0.581047
-
-0.931206 -0.00107911 0.364491
--0.355034 0.223645 0.907708
--0.082496 -0.97467 0.207876
--0.226156 -0.155049 0.580954
-
-0.932155 0.0231524 0.361317
--0.357235 0.221171 0.907451
--0.0589033 -0.97496 0.214437
--0.225495 -0.154447 0.580836
-
-0.932476 0.0474065 0.358106
--0.3595 0.218703 0.907154
--0.0353139 -0.974639 0.220978
--0.224834 -0.153845 0.580694
-
-0.932169 0.0716666 0.354858
--0.361832 0.216236 0.906819
--0.0117443 -0.973707 0.227499
--0.224174 -0.153243 0.580528
-
-0.931234 0.0959163 0.351572
--0.364231 0.213765 0.906444
-0.0117888 -0.972165 0.234001
--0.223513 -0.15264 0.580338
-
-0.929671 0.120139 0.348249
--0.366697 0.211287 0.90603
-0.035269 -0.970012 0.240483
--0.222852 -0.152038 0.580124
-
-0.927482 0.144319 0.34489
--0.369233 0.208797 0.905577
-0.0586797 -0.967252 0.246943
--0.222192 -0.151436 0.579886
-
-0.924668 0.168439 0.341493
--0.371839 0.206291 0.905085
-0.0820043 -0.963884 0.253383
--0.221531 -0.150834 0.579623
-
-0.921231 0.192482 0.33806
--0.374515 0.203763 0.904555
-0.105227 -0.959912 0.2598
--0.220871 -0.150231 0.579336
-
-0.917172 0.216434 0.334591
--0.377262 0.20121 0.903985
-0.12833 -0.955338 0.266196
--0.22021 -0.149629 0.579025
-
-0.912496 0.240277 0.331086
--0.380079 0.198626 0.903376
-0.151298 -0.950166 0.27257
--0.219549 -0.149027 0.57869
-
-0.907205 0.263995 0.327546
--0.382967 0.196007 0.902728
-0.174114 -0.944398 0.27892
--0.218889 -0.148425 0.57833
-
-0.901302 0.287573 0.323969
--0.385925 0.193349 0.902041
-0.196763 -0.93804 0.285247
--0.218228 -0.147822 0.577947
-
-0.894793 0.310994 0.320358
--0.388954 0.190646 0.901315
-0.219228 -0.931095 0.291551
--0.217568 -0.14722 0.577539
-
-0.88768 0.334242 0.316711
--0.392052 0.187894 0.90055
-0.241494 -0.923568 0.29783
--0.216907 -0.146618 0.577107
-
-0.87997 0.357302 0.31303
--0.395218 0.185089 0.899747
-0.263543 -0.915466 0.304085
--0.216246 -0.146016 0.576651
-
-0.871667 0.380159 0.309314
--0.398453 0.182225 0.898905
-0.285362 -0.906793 0.310315
--0.215586 -0.145413 0.576171
-
-0.862778 0.402796 0.305564
--0.401754 0.179298 0.898023
-0.306934 -0.897556 0.31652
--0.214925 -0.144811 0.575666
-
-0.853308 0.4252 0.301779
--0.40512 0.176304 0.897104
-0.328243 -0.887762 0.322699
--0.214264 -0.144209 0.575138
-
-0.843264 0.447354 0.297961
--0.408549 0.173238 0.896145
-0.349276 -0.877419 0.328851
--0.213604 -0.143607 0.574585
-
-0.832653 0.469243 0.294109
--0.412041 0.170095 0.895148
-0.370016 -0.866532 0.334978
--0.212943 -0.143004 0.574008
-
-0.821482 0.490854 0.290224
--0.415593 0.166871 0.894112
-0.390449 -0.855112 0.341077
--0.212283 -0.142402 0.573406
-
-0.809759 0.512172 0.286306
--0.419203 0.163561 0.893038
-0.410561 -0.843165 0.347149
--0.211622 -0.1418 0.572781
-
-0.797492 0.533182 0.282354
--0.422868 0.160161 0.891925
-0.430336 -0.830702 0.353193
--0.210961 -0.141198 0.572131
-
-0.784689 0.55387 0.278371
--0.426587 0.156667 0.890774
-0.449762 -0.817731 0.359209
--0.210301 -0.140595 0.571458
-
-0.77136 0.574224 0.274354
--0.430357 0.153074 0.889585
-0.468824 -0.804261 0.365196
--0.20964 -0.139993 0.57076
-
-0.759474 0.592015 0.269661
--0.432754 0.150274 0.888899
-0.485718 -0.791793 0.370327
--0.208856 -0.139638 0.570232
-
-0.750783 0.605555 0.26387
--0.432816 0.149216 0.889047
-0.498994 -0.781689 0.374123
--0.207937 -0.13966 0.569934
-
-0.745696 0.614745 0.256955
--0.430487 0.150173 0.890016
-0.508545 -0.774297 0.376623
--0.20685 -0.140084 0.569887
-
-0.744347 0.619661 0.248933
--0.425768 0.153194 0.89177
-0.51446 -0.769774 0.377862
--0.205593 -0.140908 0.570088
-
-0.745612 0.621615 0.240121
--0.419352 0.157651 0.89403
-0.517888 -0.767294 0.378222
--0.204163 -0.142043 0.570515
-
-0.746808 0.623525 0.231289
--0.412926 0.16213 0.896218
-0.521315 -0.764808 0.37855
--0.202733 -0.143178 0.570918
-
-0.747936 0.62539 0.222438
--0.406493 0.16663 0.898331
-0.524742 -0.762314 0.378845
--0.201303 -0.144312 0.571296
-
-0.748997 0.62721 0.213568
--0.400052 0.171151 0.90037
-0.528169 -0.759812 0.379108
--0.199873 -0.145447 0.571651
-
-0.749989 0.628985 0.204681
--0.393604 0.175693 0.902335
-0.531594 -0.757304 0.379339
--0.198443 -0.146582 0.571981
-
-0.750913 0.630715 0.195777
--0.38715 0.180255 0.904225
-0.535019 -0.754789 0.379537
--0.197013 -0.147716 0.572287
-
-0.751769 0.632399 0.186857
--0.38069 0.184837 0.906041
-0.538442 -0.752268 0.379703
--0.195583 -0.148851 0.572568
-
-0.752556 0.634037 0.177921
--0.374225 0.189439 0.907782
-0.541863 -0.74974 0.379836
--0.194153 -0.149986 0.572826
-
-0.753275 0.63563 0.168971
--0.367755 0.19406 0.909449
-0.545282 -0.747205 0.379937
--0.192723 -0.15112 0.573059
-
-0.753926 0.637176 0.160007
--0.361281 0.1987 0.91104
-0.548699 -0.744665 0.380005
--0.191293 -0.152255 0.573268
-
-0.754509 0.638675 0.151029
--0.354804 0.203359 0.912556
-0.552114 -0.742118 0.380041
--0.189863 -0.15339 0.573453
-
-0.755024 0.640128 0.14204
--0.348324 0.208036 0.913998
-0.555526 -0.739566 0.380044
--0.188433 -0.154524 0.573614
-
-0.755471 0.641533 0.133038
--0.341842 0.21273 0.915363
-0.558935 -0.737008 0.380015
--0.187003 -0.155659 0.573751
-
-0.755849 0.642892 0.124025
--0.335358 0.217442 0.916653
-0.562341 -0.734445 0.379953
--0.185573 -0.156794 0.573863
-
-0.756159 0.644203 0.115003
--0.328874 0.222172 0.917868
-0.565743 -0.731876 0.379859
--0.184143 -0.157928 0.573951
-
-0.756402 0.645467 0.105971
--0.322389 0.226917 0.919007
-0.569142 -0.729302 0.379732
--0.182713 -0.159063 0.574015
-
-0.756576 0.646682 0.0969296
--0.315904 0.23168 0.92007
-0.572536 -0.726723 0.379573
--0.181283 -0.160197 0.574055
-
-0.756682 0.64785 0.0878807
--0.30942 0.236458 0.921058
-0.575927 -0.72414 0.379381
--0.179853 -0.161332 0.574071
-
-0.75672 0.648969 0.0788246
--0.302937 0.241251 0.921969
-0.579313 -0.721552 0.379157
--0.178423 -0.162467 0.574062
-
-0.756691 0.65004 0.0697621
--0.296456 0.24606 0.922804
-0.582694 -0.718959 0.3789
--0.176993 -0.163601 0.57403
-
-0.756593 0.651063 0.0606938
--0.289978 0.250884 0.923564
-0.586071 -0.716362 0.378611
--0.175563 -0.164736 0.573973
-
-0.756428 0.652036 0.0516205
--0.283503 0.255722 0.924247
-0.589442 -0.713761 0.37829
--0.174133 -0.165871 0.573892
-
-0.756196 0.652961 0.0425431
--0.277032 0.260574 0.924854
-0.592808 -0.711156 0.377936
--0.172703 -0.167005 0.573787
-
-0.755896 0.653837 0.0334622
--0.270565 0.265439 0.925385
-0.596168 -0.708548 0.37755
--0.171273 -0.16814 0.573657
-
-0.755528 0.654663 0.0243786
--0.264103 0.270318 0.925839
-0.599522 -0.705936 0.377131
--0.169843 -0.169275 0.573504
-
-0.755093 0.655439 0.015293
--0.257647 0.275209 0.926217
-0.60287 -0.70332 0.376681
--0.168413 -0.170409 0.573326
-
-0.754591 0.656166 0.00620624
--0.251197 0.280113 0.926519
-0.606212 -0.700701 0.376198
--0.166983 -0.171544 0.573124
-
-0.754021 0.656843 -0.00288097
--0.244753 0.285029 0.926744
-0.609547 -0.69808 0.375682
--0.165552 -0.172679 0.572898
-
-0.753385 0.657471 -0.0119679
--0.238317 0.289956 0.926893
-0.612875 -0.695455 0.375135
--0.164122 -0.173813 0.572647
-
-0.752682 0.658048 -0.0210537
--0.231889 0.294895 0.926965
-0.616196 -0.692828 0.374556
--0.162692 -0.174948 0.572373
-
-0.751912 0.658574 -0.0301377
--0.225469 0.299844 0.926961
-0.619509 -0.690198 0.373944
--0.161262 -0.176083 0.572074
-
-0.751076 0.65905 -0.0392192
--0.219058 0.304803 0.926881
-0.622815 -0.687566 0.373301
--0.159832 -0.177217 0.571751
-
-0.750173 0.659476 -0.0482973
--0.212657 0.309773 0.926724
-0.626113 -0.684932 0.372625
--0.158402 -0.178352 0.571404
-
-0.749203 0.659851 -0.0573713
--0.206266 0.314752 0.926491
-0.629403 -0.682296 0.371918
--0.156972 -0.179486 0.571033
-
-0.748168 0.660175 -0.0664406
--0.199886 0.31974 0.926181
-0.632685 -0.679659 0.371179
--0.155542 -0.180621 0.570637
-
-0.747066 0.660447 -0.0755042
--0.193517 0.324737 0.925795
-0.635958 -0.677019 0.370408
--0.154112 -0.181756 0.570218
-
-0.745899 0.660669 -0.0845615
--0.18716 0.329742 0.925333
-0.639223 -0.674379 0.369605
--0.152682 -0.18289 0.569774
-
-0.744666 0.66084 -0.0936118
--0.180816 0.334755 0.924795
-0.642478 -0.671737 0.368771
--0.151252 -0.184025 0.569306
-
-0.743368 0.660959 -0.102654
--0.174484 0.339775 0.92418
-0.645724 -0.669094 0.367905
--0.149822 -0.18516 0.568813
-
-0.742004 0.661026 -0.111688
--0.168167 0.344802 0.923489
-0.64896 -0.66645 0.367007
--0.148392 -0.186294 0.568297
-
-0.740576 0.661042 -0.120712
--0.161863 0.349836 0.922722
-0.652187 -0.663806 0.366078
--0.146962 -0.187429 0.567756
-
-0.739082 0.661006 -0.129727
--0.155575 0.354876 0.921878
-0.655404 -0.661162 0.365118
--0.145532 -0.188564 0.567192
-
-0.737524 0.660918 -0.13873
--0.149301 0.359921 0.920959
-0.658611 -0.658517 0.364126
--0.144102 -0.189698 0.566603
-
-0.735901 0.660778 -0.147722
--0.143044 0.364972 0.919964
-0.661807 -0.655872 0.363104
--0.142672 -0.190833 0.56599
-
-0.734214 0.660586 -0.156702
--0.136803 0.370028 0.918893
-0.664992 -0.653227 0.36205
--0.141242 -0.191968 0.565352
-
-0.732463 0.660343 -0.165669
--0.130579 0.375088 0.917746
-0.668167 -0.650582 0.360965
--0.139812 -0.193102 0.564691
-
-0.730648 0.660046 -0.174622
--0.124373 0.380152 0.916524
-0.671331 -0.647938 0.359849
--0.138382 -0.194237 0.564005
-
-0.728769 0.659698 -0.18356
--0.118185 0.385219 0.915226
-0.674483 -0.645295 0.358702
--0.136952 -0.195372 0.563295
-
-0.726827 0.659297 -0.192483
--0.112015 0.39029 0.913853
-0.677624 -0.642652 0.357525
--0.135522 -0.196506 0.562561
-
-0.724822 0.658843 -0.20139
--0.105865 0.395363 0.912404
-0.680753 -0.640011 0.356316
--0.134092 -0.197641 0.561803
-
-0.722755 0.658337 -0.21028
--0.0997347 0.400438 0.91088
-0.68387 -0.63737 0.355078
--0.132662 -0.198776 0.56102
-
-0.720624 0.657779 -0.219153
--0.0936246 0.405515 0.909281
-0.686975 -0.634732 0.353809
--0.131232 -0.19991 0.560214
-
-0.718431 0.657168 -0.228007
--0.0875354 0.410594 0.907607
-0.690068 -0.632095 0.352509
--0.129802 -0.201045 0.559383
-
-0.716177 0.656503 -0.236843
--0.0814676 0.415673 0.905858
-0.693148 -0.629459 0.351179
--0.128372 -0.202179 0.558528
-
-0.71386 0.655787 -0.245658
--0.0754218 0.420753 0.904035
-0.696215 -0.626826 0.349819
--0.126942 -0.203314 0.557649
-
-0.711482 0.655017 -0.254454
--0.0693984 0.425833 0.902137
-0.699269 -0.624195 0.348429
--0.125512 -0.204449 0.556745
-
-0.709042 0.654194 -0.263228
--0.0633981 0.430912 0.900164
-0.70231 -0.621566 0.347009
--0.124082 -0.205583 0.555818
-
-0.706542 0.653319 -0.27198
--0.0574213 0.43599 0.898118
-0.705338 -0.61894 0.34556
--0.122652 -0.206718 0.554866
-
-0.703981 0.65239 -0.28071
--0.0514687 0.441067 0.895997
-0.708352 -0.616317 0.34408
--0.121222 -0.207853 0.55389
-
-0.701359 0.651409 -0.289416
--0.0455406 0.446142 0.893803
-0.711352 -0.613697 0.342572
--0.119792 -0.208987 0.55289
-
-0.698678 0.650374 -0.298098
--0.0396376 0.451215 0.891535
-0.714338 -0.61108 0.341033
--0.118362 -0.210122 0.551866
-
-0.695937 0.649287 -0.306756
--0.0337602 0.456285 0.889193
-0.717309 -0.608466 0.339466
--0.116932 -0.211257 0.550817
-
-0.693136 0.648146 -0.315387
--0.0279091 0.461352 0.886778
-0.720266 -0.605856 0.337869
--0.115502 -0.212391 0.549745
-
-0.690276 0.646952 -0.323993
--0.0220846 0.466415 0.88429
-0.723209 -0.603249 0.336243
--0.114071 -0.213526 0.548648
-
-0.687358 0.645705 -0.332572
--0.0162872 0.471474 0.881729
-0.726137 -0.600647 0.334588
--0.112641 -0.214661 0.547527
-
-0.68438 0.644406 -0.341123
--0.0105176 0.476529 0.879096
-0.729049 -0.598048 0.332905
--0.111211 -0.215795 0.546382
-
-0.681345 0.643052 -0.349646
--0.0047761 0.481579 0.87639
-0.731947 -0.595454 0.331193
--0.109781 -0.21693 0.545212
-
-0.678252 0.641646 -0.35814
-0.000936686 0.486623 0.873612
-0.734829 -0.592865 0.329452
--0.108351 -0.218065 0.544019
-
-0.675102 0.640187 -0.366604
-0.00662029 0.491661 0.870762
-0.737695 -0.59028 0.327683
--0.106921 -0.219199 0.542801
-
-0.67269 0.637839 -0.375032
-0.0117018 0.497618 0.867317
-0.739832 -0.587824 0.327279
--0.105572 -0.220158 0.54158
-
-0.671243 0.634374 -0.383408
-0.0160485 0.504695 0.863149
-0.741063 -0.585536 0.328592
--0.104328 -0.2209 0.540371
-
-0.670405 0.630191 -0.391685
-0.0190635 0.513077 0.858131
-0.741751 -0.582762 0.331956
--0.103195 -0.221377 0.539175
-
-0.670332 0.625118 -0.399855
-0.0208713 0.522747 0.852232
-0.741768 -0.579624 0.337367
--0.102182 -0.22159 0.537994
-
-0.671071 0.619063 -0.407952
-0.0221842 0.533237 0.845675
-0.741061 -0.576558 0.344107
--0.101257 -0.221635 0.536828
-
-0.671789 0.612908 -0.415985
-0.0235237 0.543642 0.838987
-0.740369 -0.573408 0.350795
--0.100332 -0.221679 0.535637
-
-0.672485 0.606654 -0.423952
-0.0248892 0.553961 0.83217
-0.739692 -0.570174 0.357431
--0.0994076 -0.221724 0.534422
-
-0.673158 0.600301 -0.431853
-0.0262803 0.564192 0.825225
-0.739031 -0.566856 0.364014
--0.0984829 -0.221769 0.533183
-
-0.673809 0.593851 -0.439685
-0.0276964 0.574332 0.818153
-0.738386 -0.563457 0.370543
--0.0975582 -0.221813 0.53192
-
-0.674437 0.587303 -0.447448
-0.0291372 0.584382 0.810956
-0.737758 -0.559976 0.377016
--0.0966334 -0.221858 0.530633
-
-0.675041 0.58066 -0.455141
-0.030602 0.594338 0.803633
-0.737146 -0.556413 0.383433
--0.0957087 -0.221902 0.529321
-
-0.675621 0.573923 -0.462762
-0.0320904 0.6042 0.796186
-0.73655 -0.55277 0.389793
--0.094784 -0.221947 0.527986
-
-0.676177 0.567091 -0.470311
-0.0336017 0.613965 0.788617
-0.735972 -0.549048 0.396094
--0.0938593 -0.221992 0.526626
-
-0.676709 0.560167 -0.477785
-0.0351356 0.623633 0.780927
-0.735412 -0.545247 0.402336
--0.0929346 -0.222036 0.525242
-
-0.677215 0.55315 -0.485184
-0.0366914 0.633202 0.773116
-0.734869 -0.541368 0.408518
--0.0920099 -0.222081 0.523833
-
-0.677697 0.546043 -0.492508
-0.0382685 0.64267 0.765187
-0.734345 -0.537412 0.414639
--0.0910852 -0.222126 0.522401
-
-0.678153 0.538847 -0.499753
-0.0398665 0.652036 0.757139
-0.733839 -0.533379 0.420698
--0.0901605 -0.22217 0.520944
-
-0.678583 0.531561 -0.506921
-0.0414847 0.661298 0.748975
-0.733352 -0.529271 0.426694
--0.0892358 -0.222215 0.519463
-
-0.678986 0.524188 -0.514008
-0.0431225 0.670455 0.740696
-0.732883 -0.525088 0.432625
--0.0883111 -0.22226 0.517958
-
-0.679364 0.516728 -0.521015
-0.0447795 0.679505 0.732303
-0.732434 -0.520831 0.438492
--0.0873864 -0.222304 0.516429
-
-0.679714 0.509183 -0.52794
-0.0464549 0.688447 0.723797
-0.732004 -0.516501 0.444293
--0.0864617 -0.222349 0.514876
-
-0.680038 0.501554 -0.534783
-0.0481482 0.69728 0.71518
-0.731594 -0.512098 0.450028
--0.085537 -0.222394 0.513298
-
-0.680334 0.493841 -0.541541
-0.0498588 0.706002 0.706453
-0.731204 -0.507624 0.455695
--0.0846122 -0.222438 0.511697
-
-0.680602 0.486046 -0.548215
-0.051586 0.714612 0.697617
-0.730835 -0.50308 0.461293
--0.0836875 -0.222483 0.510071
-
-0.680843 0.47817 -0.554803
-0.0533293 0.723108 0.688673
-0.730485 -0.498466 0.466823
--0.0827628 -0.222528 0.508421
-
-0.681056 0.470215 -0.561303
-0.055088 0.731489 0.679624
-0.730156 -0.493783 0.472282
--0.0818381 -0.222572 0.506746
-
-0.68124 0.462181 -0.567716
-0.0568616 0.739755 0.67047
-0.729849 -0.489032 0.47767
--0.0809134 -0.222617 0.505048
-
-0.681395 0.454069 -0.57404
-0.0586492 0.747902 0.661213
-0.729562 -0.484215 0.482986
--0.0799887 -0.222662 0.503325
-
-0.681522 0.445881 -0.580274
-0.0604504 0.755931 0.651854
-0.729296 -0.479331 0.48823
--0.079064 -0.222706 0.501578
-
-0.68162 0.437618 -0.586417
-0.0622645 0.76384 0.642395
-0.729052 -0.474382 0.493401
--0.0781393 -0.222751 0.499807
-
-0.681689 0.429282 -0.592468
-0.0640908 0.771628 0.632837
-0.72883 -0.46937 0.498497
--0.0772146 -0.222796 0.498012
-
-0.681728 0.420872 -0.598426
-0.0659286 0.779293 0.623182
-0.728629 -0.464294 0.503518
--0.0762899 -0.22284 0.496193
-
-0.681737 0.412392 -0.604291
-0.0677774 0.786835 0.613431
-0.728451 -0.459156 0.508464
--0.0753652 -0.222885 0.494349
-
-0.681717 0.403841 -0.610061
-0.0696363 0.794252 0.603585
-0.728295 -0.453957 0.513333
--0.0744405 -0.22293 0.492481
-
-0.681667 0.395222 -0.615736
-0.0715049 0.801542 0.593647
-0.728161 -0.448697 0.518124
--0.0735157 -0.222974 0.490589
-
-0.681586 0.386535 -0.621314
-0.0733823 0.808706 0.583617
-0.728049 -0.443379 0.522838
--0.072591 -0.223019 0.488673
-
-0.681475 0.377782 -0.626795
-0.075268 0.815742 0.573498
-0.72796 -0.438002 0.527473
--0.0716663 -0.223064 0.486733
-
-0.681334 0.368964 -0.632178
-0.0771611 0.822648 0.56329
-0.727894 -0.432569 0.532029
--0.0707416 -0.223108 0.484768
-
-0.681163 0.360082 -0.637463
-0.0790611 0.829424 0.552996
-0.727851 -0.427079 0.536504
--0.0698169 -0.223153 0.482779
-
-0.68096 0.351138 -0.642647
-0.0809673 0.836069 0.542617
-0.727831 -0.421534 0.540899
--0.0688922 -0.223198 0.480767
-
-0.680727 0.342133 -0.647731
-0.0828789 0.842581 0.532154
-0.727834 -0.415935 0.545212
--0.0679675 -0.223242 0.47873
-
-0.680463 0.333069 -0.652714
-0.0847953 0.84896 0.52161
-0.72786 -0.410283 0.549443
--0.0670428 -0.223287 0.476668
-
-0.680168 0.323946 -0.657595
-0.0867158 0.855204 0.510985
-0.727909 -0.404579 0.553591
--0.0661181 -0.223332 0.474583
-
-0.679842 0.314766 -0.662373
-0.0886397 0.861314 0.500282
-0.727982 -0.398825 0.557656
--0.0651934 -0.223376 0.472473
-
-0.679484 0.30553 -0.667047
-0.0905662 0.867287 0.489502
-0.728079 -0.393021 0.561637
--0.0642687 -0.223421 0.470339
-
-0.679096 0.296241 -0.671618
-0.0924947 0.873122 0.478646
-0.728199 -0.387168 0.565533
--0.063344 -0.223466 0.468181
-
-0.678676 0.286898 -0.676083
-0.0944245 0.87882 0.467717
-0.728343 -0.381267 0.569344
--0.0624193 -0.22351 0.465999
-
-0.678225 0.277504 -0.680443
-0.0963549 0.884379 0.456716
-0.72851 -0.37532 0.573069
--0.0614945 -0.223555 0.463793
-
-0.677742 0.26806 -0.684696
-0.0982851 0.889798 0.445645
-0.728701 -0.369328 0.576707
--0.0605698 -0.2236 0.461562
-
-0.677228 0.258568 -0.688843
-0.100214 0.895077 0.434505
-0.728916 -0.363291 0.580259
--0.0596451 -0.223644 0.459307
-
-0.676683 0.249028 -0.692882
-0.102142 0.900214 0.423299
-0.729155 -0.357212 0.583723
--0.0587204 -0.223689 0.457029
-
-0.676106 0.239442 -0.696813
-0.104068 0.905209 0.412028
-0.729418 -0.35109 0.587099
--0.0577957 -0.223734 0.454725
-
-0.675498 0.229812 -0.700635
-0.10599 0.910061 0.400693
-0.729705 -0.344928 0.590386
--0.056871 -0.223778 0.452398
-
-0.674858 0.220139 -0.704347
-0.107909 0.91477 0.389297
-0.730015 -0.338725 0.593585
--0.0559463 -0.223823 0.450047
-
-0.674187 0.210425 -0.70795
-0.109824 0.919334 0.37784
-0.73035 -0.332485 0.596694
--0.0550216 -0.223868 0.447671
-
-0.673485 0.20067 -0.711442
-0.111733 0.923754 0.366326
-0.730708 -0.326207 0.599712
--0.0540969 -0.223912 0.445271
-
-0.672751 0.190877 -0.714823
-0.113636 0.928028 0.354756
-0.73109 -0.319892 0.602641
--0.0531722 -0.223957 0.442847
-
-0.671986 0.181046 -0.718093
-0.115533 0.932155 0.343131
-0.731497 -0.313543 0.605478
--0.0522475 -0.224002 0.440399
-
-0.671189 0.17118 -0.72125
-0.117423 0.936136 0.331453
-0.731927 -0.307159 0.608224
--0.0513228 -0.224046 0.437926
-
-0.670362 0.161279 -0.724295
-0.119305 0.939969 0.319725
-0.732381 -0.300743 0.610878
--0.0503981 -0.224091 0.43543
-
-0.669503 0.151346 -0.727227
-0.121178 0.943655 0.307947
-0.732858 -0.294296 0.61344
--0.0494733 -0.224136 0.432909
-
-0.668614 0.141381 -0.730046
-0.123042 0.947192 0.296122
-0.73336 -0.287818 0.61591
--0.0485486 -0.22418 0.430364
-
-0.667693 0.131387 -0.73275
-0.124896 0.95058 0.284252
-0.733885 -0.281311 0.618286
--0.0476239 -0.224225 0.427795
-
-0.668726 0.114621 -0.734621
-0.140123 0.950911 0.275922
-0.730186 -0.287453 0.619838
--0.0468975 -0.224124 0.425726
-
-0.6714 0.091107 -0.735473
-0.168814 0.947523 0.271482
-0.721612 -0.306431 0.620787
--0.0464084 -0.223891 0.424192
-
-0.67474 0.0619723 -0.735449
-0.208431 0.939907 0.270427
-0.708013 -0.335758 0.621276
--0.0461226 -0.22354 0.423109
-
-0.677201 0.0338412 -0.735019
-0.246341 0.930866 0.269822
-0.693336 -0.363789 0.622047
--0.0458736 -0.223121 0.422062
-
-0.680357 0.0113884 -0.732792
-0.276513 0.921992 0.271055
-0.678716 -0.387041 0.624135
--0.0458147 -0.222405 0.421239
-
-0.685413 -0.00318407 -0.728148
-0.296014 0.914849 0.27464
-0.665271 -0.403783 0.627992
--0.0459716 -0.22126 0.420737
-
-0.692625 -0.0103399 -0.721224
-0.305435 0.91003 0.280277
-0.653438 -0.414414 0.633467
--0.0463295 -0.21973 0.420531
-
-0.701977 -0.010841 -0.712117
-0.305973 0.907498 0.2878
-0.643125 -0.419918 0.640359
--0.0468901 -0.217856 0.420568
-
-0.711217 -0.0114638 -0.702879
-0.306401 0.904947 0.295277
-0.632683 -0.425369 0.647127
--0.0474507 -0.215982 0.42058
-
-0.720343 -0.0122076 -0.693511
-0.306722 0.902381 0.302705
-0.622115 -0.430766 0.653768
--0.0480113 -0.214108 0.420569
-
-0.729351 -0.0130715 -0.684014
-0.306934 0.8998 0.310083
-0.611423 -0.436107 0.660282
--0.048572 -0.212234 0.420533
-
-0.73824 -0.0140545 -0.674392
-0.307039 0.897205 0.31741
-0.600607 -0.44139 0.666668
--0.0491326 -0.21036 0.420472
-
-0.747005 -0.0151558 -0.664645
-0.307037 0.8946 0.324684
-0.589671 -0.446612 0.672924
--0.0496932 -0.208485 0.420388
-
-0.755645 -0.0163743 -0.654776
-0.306928 0.891983 0.331905
-0.578615 -0.451771 0.679049
--0.0502538 -0.206611 0.420279
-
-0.764158 -0.017709 -0.644786
-0.306713 0.889359 0.33907
-0.567442 -0.456867 0.685042
--0.0508145 -0.204737 0.420147
-
-0.77254 -0.0191588 -0.634677
-0.306392 0.886727 0.346178
-0.556153 -0.461896 0.690902
--0.0513751 -0.202863 0.41999
-
-0.780788 -0.0207225 -0.624452
-0.305966 0.88409 0.353228
-0.544752 -0.466857 0.696628
--0.0519357 -0.200989 0.419809
-
-0.788902 -0.0223991 -0.614111
-0.305435 0.881449 0.360219
-0.533239 -0.471748 0.702218
--0.0524963 -0.199115 0.419603
-
-0.796877 -0.0241872 -0.603657
-0.3048 0.878805 0.367149
-0.521617 -0.476567 0.707672
--0.053057 -0.197241 0.419374
-
-0.804711 -0.0260856 -0.593093
-0.304062 0.876161 0.374017
-0.509888 -0.481313 0.712988
--0.0536176 -0.195367 0.41912
-
-0.812403 -0.0280929 -0.582419
-0.303221 0.873517 0.380822
-0.498054 -0.485983 0.718166
--0.0541782 -0.193493 0.418842
-
-0.81995 -0.0302079 -0.571638
-0.302278 0.870875 0.387563
-0.486118 -0.490575 0.723205
--0.0547388 -0.191619 0.41854
-
-0.827349 -0.032429 -0.560752
-0.301234 0.868237 0.394237
-0.474081 -0.495089 0.728103
--0.0552995 -0.189744 0.418214
-
-0.834598 -0.0347549 -0.549763
-0.300089 0.865604 0.400845
-0.461945 -0.499522 0.73286
--0.0558601 -0.18787 0.417864
-
-0.841694 -0.037184 -0.538673
-0.298845 0.862977 0.407385
-0.449714 -0.503873 0.737475
--0.0564207 -0.185996 0.417489
-
-0.848636 -0.0397148 -0.527484
-0.297501 0.860359 0.413855
-0.437389 -0.508139 0.741947
--0.0569813 -0.184122 0.41709
-
-0.855422 -0.0423457 -0.516198
-0.29606 0.85775 0.420254
-0.424973 -0.51232 0.746275
--0.057542 -0.182248 0.416667
-
-0.862048 -0.0450751 -0.504818
-0.294522 0.855152 0.426581
-0.412468 -0.516414 0.750458
--0.0581026 -0.180374 0.41622
-
-0.868514 -0.0479014 -0.493345
-0.292887 0.852567 0.432836
-0.399876 -0.520418 0.754496
--0.0586632 -0.1785 0.415749
-
-0.874816 -0.0508228 -0.481782
-0.291157 0.849995 0.439016
-0.3872 -0.524333 0.758387
--0.0592238 -0.176626 0.415253
-
-0.880953 -0.0538375 -0.47013
-0.289333 0.847439 0.445121
-0.374443 -0.528155 0.762132
--0.0597845 -0.174752 0.414734
-
-0.886923 -0.0569439 -0.458393
-0.287416 0.8449 0.45115
-0.361606 -0.531885 0.765728
--0.0603451 -0.172877 0.41419
-
-0.892651 -0.0573978 -0.44708
-0.283537 0.84255 0.457947
-0.350402 -0.535551 0.768377
--0.060717 -0.171209 0.413691
-
-0.898175 -0.054825 -0.436207
-0.277406 0.840412 0.465568
-0.341068 -0.539168 0.770045
--0.0608965 -0.169743 0.413221
-
-0.90345 -0.0477868 -0.426021
-0.26806 0.838496 0.474413
-0.334546 -0.542808 0.770349
--0.060793 -0.168582 0.412811
-
-0.908355 -0.0362333 -0.416628
-0.255613 0.836588 0.484544
-0.33099 -0.546633 0.76918
--0.0603766 -0.167755 0.412485
-
-0.91275 -0.0206592 -0.407995
-0.240528 0.834436 0.495846
-0.330202 -0.550718 0.7666
--0.0596741 -0.16723 0.412218
-
-0.916522 -0.00149687 -0.399981
-0.223131 0.831849 0.508173
-0.331964 -0.555 0.762742
--0.0587226 -0.166979 0.412004
-
-0.919859 0.0176757 -0.391852
-0.205747 0.828784 0.52037
-0.333958 -0.559289 0.758728
--0.0577711 -0.166727 0.411766
-
-0.922761 0.0368477 -0.383608
-0.188389 0.825241 0.532435
-0.336188 -0.563578 0.754558
--0.0568196 -0.166476 0.411504
-
-0.925229 0.0560085 -0.375253
-0.171071 0.821219 0.544366
-0.338654 -0.567858 0.750234
--0.0558681 -0.166224 0.411217
-
-0.927265 0.0751471 -0.366788
-0.153805 0.81672 0.556159
-0.341356 -0.572121 0.745757
--0.0549166 -0.165973 0.410906
-
-0.92887 0.094253 -0.358214
-0.136606 0.811744 0.567813
-0.344296 -0.576358 0.741128
--0.0539651 -0.165721 0.410571
-
-0.930045 0.113316 -0.349535
-0.119487 0.806292 0.579323
-0.347474 -0.580562 0.736349
--0.0530137 -0.16547 0.410212
-
-0.930794 0.132324 -0.340753
-0.102462 0.800368 0.590688
-0.35089 -0.584723 0.73142
--0.0520622 -0.165218 0.409829
-
-0.931118 0.151268 -0.331868
-0.0855427 0.793972 0.601906
-0.354543 -0.588834 0.726342
--0.0511107 -0.164967 0.409422
-
-0.93102 0.170138 -0.322884
-0.0687442 0.787108 0.612972
-0.358434 -0.592886 0.721118
--0.0501592 -0.164715 0.40899
-
-0.930503 0.188922 -0.313803
-0.0520791 0.779779 0.623885
-0.362562 -0.59687 0.715748
--0.0492077 -0.164464 0.408534
-
-0.92957 0.20761 -0.304626
-0.0355609 0.771987 0.634643
-0.366925 -0.600778 0.710233
--0.0482562 -0.164212 0.408054
-
-0.928225 0.226193 -0.295356
-0.0192025 0.763736 0.645243
-0.371523 -0.604602 0.704575
--0.0473047 -0.163961 0.40755
-
-0.926471 0.244661 -0.285995
-0.00301707 0.755031 0.655682
-0.376355 -0.608333 0.698776
--0.0463532 -0.163709 0.407021
-
-0.924312 0.263003 -0.276545
--0.0129824 0.745876 0.665958
-0.381417 -0.611963 0.692837
--0.0454017 -0.163458 0.406469
-
-0.921753 0.281209 -0.267009
--0.0287831 0.736276 0.676069
-0.386709 -0.615483 0.686758
--0.0444502 -0.163206 0.405892
-
-0.918797 0.299271 -0.257388
--0.0443724 0.726235 0.686013
-0.392228 -0.618885 0.680542
--0.0434987 -0.162955 0.405291
-
-0.915451 0.317178 -0.247686
--0.0597376 0.715761 0.695786
-0.397972 -0.622162 0.674191
--0.0425472 -0.162703 0.404666
-
-0.911718 0.334921 -0.237904
--0.0748662 0.704857 0.705388
-0.403937 -0.625304 0.667705
--0.0415958 -0.162452 0.404016
-
-0.907605 0.352491 -0.228044
--0.0897461 0.693531 0.714815
-0.410121 -0.628303 0.661087
--0.0406443 -0.1622 0.403343
-
-0.903116 0.369879 -0.21811
--0.104365 0.681789 0.724066
-0.416521 -0.631152 0.654337
--0.0396928 -0.161949 0.402645
-
-0.898269 0.386885 -0.208403
--0.11851 0.669944 0.732892
-0.423164 -0.633637 0.64764
--0.0389186 -0.161829 0.402024
-
-0.893115 0.403459 -0.198916
--0.132151 0.658021 0.741312
-0.42998 -0.63579 0.641006
--0.0383501 -0.161876 0.401499
-
-0.887662 0.419632 -0.189645
--0.145313 0.646038 0.749345
-0.436967 -0.637608 0.634442
--0.0379878 -0.162086 0.401075
-
-0.882066 0.435043 -0.180823
--0.157701 0.634313 0.756821
-0.443948 -0.63905 0.628112
--0.0379708 -0.162549 0.400851
-
-0.875661 0.45123 -0.172074
--0.170544 0.622298 0.763977
-0.45181 -0.639638 0.621876
--0.0383214 -0.163369 0.400838
-
-0.868585 0.467797 -0.163479
--0.183516 0.610104 0.770776
-0.460306 -0.639484 0.615775
--0.0390729 -0.164562 0.401084
-
-0.860243 0.48584 -0.154733
--0.197436 0.597184 0.777425
-0.470108 -0.638224 0.609646
--0.0401167 -0.166074 0.40151
-
-0.851358 0.503854 -0.146018
--0.211146 0.583937 0.783859
-0.480216 -0.636513 0.603526
--0.0413162 -0.167724 0.402034
-
-0.842072 0.521608 -0.13726
--0.224474 0.570315 0.79016
-0.490435 -0.63456 0.597333
--0.0425156 -0.169375 0.402534
-
-0.832393 0.539092 -0.128459
--0.237408 0.556329 0.796326
-0.500758 -0.632359 0.591069
--0.043715 -0.171026 0.40301
-
-0.822329 0.556297 -0.119617
--0.249939 0.541991 0.802357
-0.51118 -0.629905 0.584735
--0.0449144 -0.172676 0.403462
-
-0.811889 0.573213 -0.110736
--0.262055 0.527311 0.808251
-0.521693 -0.627192 0.578332
--0.0461138 -0.174327 0.40389
-
-0.801081 0.589833 -0.101816
--0.273747 0.512302 0.814009
-0.53229 -0.624215 0.57186
--0.0473133 -0.175978 0.404294
-
-0.789913 0.606148 -0.0928603
--0.285004 0.496974 0.819628
-0.542965 -0.620969 0.565321
--0.0485127 -0.177628 0.404673
-
-0.778394 0.622148 -0.0838691
--0.295819 0.48134 0.825108
-0.553709 -0.617449 0.558715
--0.0497121 -0.179279 0.405028
-
-0.766535 0.637826 -0.074844
--0.306181 0.465412 0.830449
-0.564515 -0.613652 0.552045
--0.0509115 -0.18093 0.405359
-
-0.754344 0.653175 -0.0657867
--0.316081 0.449204 0.835649
-0.575376 -0.609572 0.54531
--0.0521109 -0.18258 0.405666
-
-0.741831 0.668186 -0.0566985
--0.325513 0.432727 0.840707
-0.586284 -0.605206 0.538513
--0.0533104 -0.184231 0.405949
-
-0.729005 0.682853 -0.0475809
--0.334467 0.415995 0.845624
-0.59723 -0.60055 0.531654
--0.0545098 -0.185882 0.406207
-
-0.715877 0.697168 -0.0384354
--0.342936 0.399022 0.850398
-0.608207 -0.595599 0.524734
--0.0557092 -0.187532 0.406441
-
-0.702456 0.711125 -0.0292634
--0.350913 0.38182 0.855028
-0.619205 -0.590351 0.517755
--0.0569086 -0.189183 0.406651
-
-0.688754 0.724717 -0.0200664
--0.358391 0.364405 0.859515
-0.630217 -0.584803 0.510717
--0.058108 -0.190834 0.406837
-
-0.674781 0.737939 -0.0108458
--0.365363 0.346789 0.863856
-0.641234 -0.57895 0.503622
--0.0593075 -0.192484 0.406999
-
-0.660546 0.750784 -0.00160326
--0.371824 0.328988 0.868052
-0.652247 -0.572792 0.496471
--0.0605069 -0.194135 0.407136
-
-0.646061 0.763247 0.00765989
--0.377768 0.311015 0.872102
-0.663247 -0.566325 0.489265
--0.0617063 -0.195786 0.40725
-
-0.631338 0.775323 0.0169421
--0.383189 0.292885 0.876005
-0.674224 -0.559547 0.482005
--0.0629057 -0.197436 0.407339
-
-0.616386 0.787007 0.026242
--0.388084 0.274613 0.87976
-0.685171 -0.552456 0.474692
--0.0641051 -0.199087 0.407404
-
-0.601217 0.798294 0.035558
--0.392447 0.256215 0.883368
-0.696078 -0.545051 0.467328
--0.0653046 -0.200738 0.407445
-
-0.585842 0.809181 0.0448887
--0.396274 0.237704 0.886828
-0.706934 -0.537329 0.459914
--0.066504 -0.202388 0.407461
-
-0.570273 0.819663 0.0542325
--0.399562 0.219096 0.890139
-0.717732 -0.529291 0.452451
--0.0677034 -0.204039 0.407454
-
-0.555082 0.829389 0.0632231
--0.403275 0.201861 0.892537
-0.727498 -0.520927 0.446521
--0.0688806 -0.205447 0.407416
-
-0.541949 0.837379 0.071336
--0.408103 0.188017 0.893365
-0.734672 -0.51327 0.443632
--0.0700284 -0.206379 0.407374
-
-0.530342 0.844157 0.0783368
--0.415034 0.177947 0.892234
-0.739246 -0.505702 0.444726
--0.0711125 -0.206701 0.407334
-
-0.51973 0.850172 0.0841915
--0.424318 0.171343 0.889155
-0.741509 -0.497844 0.449795
--0.0721164 -0.206415 0.407298
-
-0.51076 0.855116 0.0888893
--0.435654 0.168299 0.88424
-0.741168 -0.490359 0.458495
--0.0730546 -0.205567 0.407272
-
-0.502587 0.859534 0.0927803
--0.448465 0.167456 0.877973
-0.739111 -0.482867 0.469633
--0.0739404 -0.204338 0.407244
-
-0.494866 0.863635 0.0961387
--0.462167 0.167892 0.870755
-0.735873 -0.475339 0.482228
--0.0747867 -0.202868 0.40719
-
-0.489701 0.866267 0.0988697
--0.474685 0.169771 0.863627
-0.731347 -0.469851 0.49434
--0.0755749 -0.201575 0.407167
-
-0.489055 0.866423 0.100681
--0.485338 0.174392 0.856758
-0.724757 -0.467866 0.505795
--0.0762188 -0.200603 0.407253
-
-0.492997 0.86408 0.101589
--0.494068 0.181934 0.850175
-0.716136 -0.469325 0.516607
--0.0767225 -0.199955 0.407446
-
-0.501632 0.859097 0.101581
--0.500703 0.192576 0.843926
-0.705452 -0.474202 0.526754
--0.0770587 -0.199662 0.407767
-
-0.515829 0.850775 0.100507
--0.50465 0.206955 0.838152
-0.692278 -0.483064 0.536097
--0.0772311 -0.199776 0.408223
-
-0.535429 0.838833 0.0983566
--0.505657 0.225107 0.832849
-0.676481 -0.495667 0.544691
--0.0772336 -0.200295 0.408804
-
-0.559937 0.823057 0.0951154
--0.503465 0.246827 0.828009
-0.658022 -0.51152 0.552588
--0.07709 -0.20119 0.409481
-
-0.587565 0.804028 0.0911443
--0.49853 0.27097 0.823433
-0.637366 -0.529259 0.560045
--0.0768468 -0.20234 0.41022
-
-0.614564 0.784032 0.0872083
--0.492537 0.295004 0.818767
-0.616213 -0.546138 0.567464
--0.0766037 -0.20349 0.410935
-
-0.6409 0.763091 0.0833076
--0.485489 0.318883 0.814011
-0.594599 -0.562144 0.574844
--0.0763605 -0.20464 0.411625
-
-0.666538 0.741226 0.0794429
--0.47739 0.342562 0.809166
-0.572561 -0.577265 0.582185
--0.0761173 -0.20579 0.412292
-
-0.691445 0.718461 0.0756144
--0.468247 0.365998 0.804232
-0.550135 -0.591489 0.589485
--0.0758741 -0.20694 0.412934
-
-0.715588 0.69482 0.0718227
--0.458069 0.389147 0.799211
-0.527358 -0.604805 0.596744
--0.0756309 -0.20809 0.413552
-
-0.738935 0.670329 0.0680682
--0.446865 0.411964 0.794102
-0.504268 -0.617207 0.603961
--0.0753877 -0.209239 0.414146
-
-0.761456 0.645014 0.0643512
--0.434648 0.434406 0.788906
-0.480901 -0.628687 0.611135
--0.0751445 -0.210389 0.414716
-
-0.78312 0.618904 0.0606723
--0.421431 0.45643 0.783624
-0.457296 -0.639241 0.618265
--0.0749013 -0.211539 0.415261
-
-0.803897 0.592028 0.0570318
--0.40723 0.477994 0.778257
-0.433489 -0.648864 0.62535
--0.0746582 -0.212689 0.415782
-
-0.82376 0.564415 0.0534301
--0.392063 0.499057 0.772806
-0.409519 -0.657555 0.632389
--0.074415 -0.213839 0.416279
-
-0.842682 0.536097 0.0498677
--0.375949 0.519576 0.76727
-0.385422 -0.665313 0.639382
--0.0741718 -0.214989 0.416752
-
-0.860636 0.507107 0.0463449
--0.358907 0.539511 0.761652
-0.361235 -0.672138 0.646327
--0.0739286 -0.216139 0.417201
-
-0.877598 0.477478 0.0428621
--0.340962 0.558824 0.75595
-0.336997 -0.678034 0.653224
--0.0736854 -0.217288 0.417626
-
-0.893543 0.447244 0.0394196
--0.322137 0.577475 0.750167
-0.312744 -0.683005 0.660072
--0.0734422 -0.218438 0.418026
-
-0.90845 0.41644 0.036018
--0.302458 0.595426 0.744303
-0.288511 -0.687056 0.66687
--0.073199 -0.219588 0.418402
-
-0.922296 0.385102 0.0326575
--0.281951 0.612642 0.738359
-0.264336 -0.690193 0.673617
--0.0729559 -0.220738 0.418754
-
-0.935062 0.353268 0.0293385
--0.260647 0.629085 0.732335
-0.240254 -0.692426 0.680312
--0.0727127 -0.221888 0.419082
-
-0.946729 0.320974 0.0260614
--0.238575 0.644723 0.726233
-0.216299 -0.693763 0.686955
--0.0724695 -0.223038 0.419386
-
-0.95728 0.28826 0.0228265
--0.215768 0.659522 0.720052
-0.192508 -0.694217 0.693544
--0.0722263 -0.224187 0.419665
-
-0.966698 0.255164 0.0196342
--0.192257 0.67345 0.713795
-0.168912 -0.693799 0.70008
--0.0719831 -0.225337 0.41992
-
-0.97497 0.221726 0.0164849
--0.168079 0.686476 0.707461
-0.145546 -0.692524 0.70656
--0.0717399 -0.226487 0.420151
-
-0.98208 0.187986 0.0133788
--0.143268 0.698571 0.701051
-0.122442 -0.690406 0.712985
--0.0714967 -0.227637 0.420358
-
-0.988019 0.153986 0.0103163
--0.117863 0.709707 0.694568
-0.0996322 -0.687462 0.719354
--0.0712535 -0.228787 0.420541
-
-0.992775 0.119766 0.00729769
--0.0918997 0.719859 0.68801
-0.0771471 -0.68371 0.725665
--0.0710104 -0.229937 0.4207
-
-0.99634 0.0853687 0.00432335
--0.0654191 0.729001 0.681379
-0.0550167 -0.679168 0.731918
--0.0707672 -0.231087 0.420834
-
-0.998706 0.0508354 0.00139357
--0.0384613 0.737111 0.674676
-0.0332702 -0.673857 0.738112
--0.070524 -0.232236 0.420944
-
-0.999868 0.016209 -0.00149135
--0.0110676 0.744167 0.667902
-0.0119358 -0.667797 0.744247
--0.0702808 -0.233386 0.42103
-
-0.99982 -0.018468 -0.00433109
-0.0167199 0.750148 0.661058
--0.00895947 -0.661012 0.750322
--0.0700376 -0.234536 0.421092
-
-0.998561 -0.0531526 -0.00712537
-0.0448578 0.755038 0.654144
--0.0293896 -0.653523 0.756336
--0.0697944 -0.235686 0.421129
-
-0.996089 -0.0878018 -0.0098739
-0.0733025 0.75882 0.647162
--0.0493295 -0.645355 0.762288
--0.0695512 -0.236836 0.421143
-
-0.992405 -0.122372 -0.0125764
-0.102009 0.761479 0.640112
--0.0687555 -0.636533 0.768178
--0.0693081 -0.237986 0.421132
-
-0.98751 -0.156821 -0.0152326
-0.130933 0.763003 0.632996
--0.0876448 -0.627084 0.774005
--0.0690649 -0.239136 0.421097
-
-0.981407 -0.191105 -0.0178422
-0.160027 0.76338 0.625813
--0.105976 -0.617033 0.779769
--0.0688217 -0.240285 0.421038
-
-0.974103 -0.225182 -0.0204049
-0.189247 0.762602 0.618566
--0.123729 -0.606409 0.785468
--0.0685785 -0.241435 0.420955
-
-0.965603 -0.259007 -0.0229205
-0.218544 0.760661 0.611255
--0.140885 -0.595239 0.791102
--0.0683353 -0.242585 0.420847
-
-0.955917 -0.292539 -0.0253888
-0.247872 0.757553 0.603881
--0.157425 -0.583553 0.79667
--0.0680921 -0.243735 0.420715
-
-0.945052 -0.325734 -0.0278094
-0.277185 0.753274 0.596445
--0.173335 -0.57138 0.802172
--0.0678489 -0.244885 0.42056
-
-0.933022 -0.358552 -0.0301822
-0.306433 0.747822 0.588948
--0.188598 -0.55875 0.807607
--0.0676057 -0.246035 0.420379
-
-0.919838 -0.39095 -0.0325069
-0.335571 0.741199 0.581391
--0.203201 -0.545694 0.812975
--0.0673626 -0.247185 0.420175
-
-0.905515 -0.422886 -0.0347833
-0.36455 0.733407 0.573775
--0.217131 -0.532242 0.818274
--0.0671194 -0.248334 0.419947
-
-0.890069 -0.454321 -0.0370112
-0.393323 0.724449 0.566101
--0.230379 -0.518426 0.823505
--0.0668762 -0.249484 0.419694
-
-0.873517 -0.485213 -0.0391903
-0.421843 0.714333 0.55837
--0.242933 -0.504278 0.828666
--0.066633 -0.250634 0.419417
-
-0.855879 -0.515523 -0.0413205
-0.450062 0.703067 0.550582
--0.254787 -0.489828 0.833758
--0.0663898 -0.251784 0.419116
-
-0.837174 -0.545213 -0.0434015
-0.477933 0.690661 0.54274
--0.265933 -0.47511 0.838779
--0.0661466 -0.252934 0.418791
-
-0.817424 -0.574242 -0.0454332
-0.505411 0.677128 0.534843
--0.276366 -0.460156 0.843729
--0.0659034 -0.254084 0.418442
-
-0.796652 -0.602575 -0.0474153
-0.53245 0.66248 0.526894
--0.286082 -0.444997 0.848608
--0.0656602 -0.255234 0.418068
-
-0.774884 -0.630175 -0.0493477
-0.559003 0.646735 0.518892
--0.295078 -0.429667 0.853414
--0.0654171 -0.256383 0.41767
-
-0.752144 -0.657005 -0.0512302
-0.585027 0.62991 0.51084
--0.303354 -0.414196 0.858148
--0.0651739 -0.257533 0.417248
-
-0.72846 -0.68303 -0.0530627
-0.610477 0.612024 0.502737
--0.310909 -0.398617 0.862809
--0.0649307 -0.258683 0.416802
-
-0.70386 -0.708218 -0.0548449
-0.635309 0.5931 0.494586
--0.317746 -0.382963 0.867397
--0.0646875 -0.259833 0.416332
-
-0.678375 -0.732534 -0.0565767
-0.659482 0.573159 0.486386
--0.323867 -0.367264 0.87191
--0.0644443 -0.260983 0.415838
-
-0.652035 -0.755947 -0.058258
-0.682954 0.552228 0.47814
--0.329277 -0.351552 0.876349
--0.0642011 -0.262133 0.415319
-
-0.624873 -0.778426 -0.0598886
-0.705684 0.530332 0.469848
--0.333981 -0.335858 0.880713
--0.0639579 -0.263283 0.414776
-
-0.596921 -0.799942 -0.0614684
-0.727633 0.5075 0.461511
--0.337987 -0.320212 0.885002
--0.0637148 -0.264432 0.414209
-
-0.568213 -0.820466 -0.0629972
-0.748763 0.483763 0.453131
--0.341303 -0.304645 0.889215
--0.0634716 -0.265582 0.413618
-
-0.538786 -0.839972 -0.0644749
-0.769035 0.45915 0.444708
--0.343939 -0.289186 0.893352
--0.0632284 -0.266732 0.413002
-
-0.508676 -0.858432 -0.0659015
-0.788415 0.433696 0.436244
--0.345904 -0.273864 0.897412
--0.0629852 -0.267882 0.412363
-
-0.47792 -0.875823 -0.0672767
-0.806868 0.407435 0.427739
--0.347213 -0.258708 0.901395
--0.062742 -0.269032 0.411699
-
-0.446556 -0.892122 -0.0686006
-0.82436 0.380403 0.419194
--0.347877 -0.243745 0.905301
--0.0624988 -0.270182 0.411011
-
-0.414623 -0.907307 -0.0698729
-0.84086 0.352636 0.410612
--0.347911 -0.229002 0.909129
--0.0622556 -0.271332 0.410299
-
-0.382161 -0.921357 -0.0710936
-0.856337 0.324174 0.401992
--0.347331 -0.214506 0.912879
--0.0620124 -0.272481 0.409563
-
-0.349212 -0.934253 -0.0722627
-0.870763 0.295056 0.393336
--0.346154 -0.200281 0.916551
--0.0617693 -0.273631 0.408802
-
-0.315815 -0.945979 -0.07338
-0.884111 0.265324 0.384644
--0.344396 -0.186353 0.920143
--0.0615261 -0.274781 0.408017
-
-0.282014 -0.956518 -0.0744454
-0.896354 0.235018 0.375919
--0.342077 -0.172744 0.923657
--0.0612829 -0.275931 0.407208
-
-0.258169 -0.963345 -0.0729101
-0.904119 0.214321 0.369642
--0.340466 -0.16135 0.926309
--0.0613301 -0.27691 0.406779
-
-0.247294 -0.96652 -0.0684478
-0.907269 0.206175 0.366545
--0.340161 -0.152745 0.927879
--0.0617279 -0.277686 0.406832
-
-0.252394 -0.965751 -0.0601927
-0.90522 0.213681 0.36731
--0.341868 -0.147194 0.928149
--0.0625032 -0.278137 0.407507
-
-0.26761 -0.962253 -0.0495414
-0.899646 0.231127 0.37043
--0.344997 -0.1437 0.927538
--0.0635643 -0.278444 0.408565
-
-0.282717 -0.958415 -0.0388787
-0.893736 0.248487 0.373483
--0.348291 -0.140337 0.926822
--0.0646255 -0.27875 0.4096
-
-0.297706 -0.954241 -0.0282058
-0.887494 0.265755 0.376468
--0.351745 -0.137109 0.926
--0.0656866 -0.279057 0.41061
-
-0.31257 -0.949733 -0.0175242
-0.880921 0.282923 0.379386
--0.355357 -0.134022 0.925073
--0.0667478 -0.279363 0.411596
-
-0.327301 -0.944895 -0.00683523
-0.874017 0.299985 0.382235
--0.359121 -0.13108 0.92404
--0.0678089 -0.27967 0.412558
-
-0.341892 -0.939731 0.00385977
-0.866785 0.316934 0.385015
--0.363034 -0.128288 0.922902
--0.0688701 -0.279976 0.413495
-
-0.356334 -0.934245 0.0145594
-0.859227 0.333763 0.387727
--0.367091 -0.12565 0.921659
--0.0699312 -0.280283 0.414409
-
-0.37062 -0.928441 0.0252624
-0.851344 0.350465 0.390369
--0.371288 -0.123171 0.920312
--0.0709923 -0.280589 0.415298
-
-0.384742 -0.922323 0.0359672
-0.843139 0.367034 0.392941
--0.37562 -0.120856 0.91886
--0.0720535 -0.280896 0.416163
-
-0.398694 -0.915896 0.0466727
-0.834614 0.383463 0.395444
--0.380083 -0.118707 0.917304
--0.0731146 -0.281202 0.417004
-
-0.412468 -0.909164 0.0573774
-0.825772 0.399744 0.397876
--0.384671 -0.11673 0.915643
--0.0741758 -0.281509 0.417821
-
-0.426056 -0.902132 0.0680799
-0.816615 0.415873 0.400237
--0.389379 -0.114929 0.913879
--0.0752369 -0.281815 0.418613
-
-0.439453 -0.894805 0.0787789
-0.807146 0.431841 0.402528
--0.394204 -0.113306 0.912012
--0.0762981 -0.282122 0.419382
-
-0.452651 -0.887188 0.089473
-0.797368 0.447643 0.404747
--0.399139 -0.111866 0.910041
--0.0773592 -0.282428 0.420126
-
-0.465643 -0.879286 0.100161
-0.787284 0.463271 0.406895
--0.404179 -0.110613 0.907967
--0.0784203 -0.282734 0.420846
-
-0.478423 -0.871106 0.110841
-0.776897 0.47872 0.408972
--0.40932 -0.109549 0.905791
--0.0794815 -0.283041 0.421542
-
-0.490984 -0.862652 0.121513
-0.766211 0.493984 0.410976
--0.414554 -0.108678 0.903512
--0.0805426 -0.283347 0.422213
-
-0.503321 -0.853931 0.132174
-0.755228 0.509055 0.412907
--0.419878 -0.108003 0.901131
--0.0816038 -0.283654 0.422861
-
-0.515427 -0.844948 0.142824
-0.743954 0.523929 0.414767
--0.425286 -0.107528 0.898649
--0.0826649 -0.28396 0.423484
-
-0.527296 -0.835709 0.15346
-0.73239 0.538598 0.416553
--0.430771 -0.107254 0.896065
--0.083726 -0.284267 0.424083
-
-0.538922 -0.82622 0.164083
-0.720542 0.553056 0.418267
--0.436328 -0.107185 0.893381
--0.0847872 -0.284573 0.424658
-
-0.550299 -0.816489 0.17469
-0.708414 0.567299 0.419907
--0.441951 -0.107322 0.890596
--0.0858483 -0.28488 0.425209
-
-0.5561 -0.810629 0.183396
-0.700245 0.575842 0.421974
--0.447671 -0.106238 0.887865
--0.0867753 -0.284988 0.425904
-
-0.551883 -0.812448 0.188026
-0.700128 0.573899 0.424808
--0.453042 -0.102802 0.885542
--0.0873661 -0.284711 0.426928
-
-0.537549 -0.821878 0.188567
-0.708048 0.561385 0.428387
--0.45794 -0.0967645 0.883701
--0.0876187 -0.284049 0.428277
-
-0.51479 -0.836932 0.185837
-0.72199 0.540112 0.432445
--0.4623 -0.0884455 0.882302
--0.0876391 -0.283065 0.42988
-
-0.491615 -0.851348 0.183088
-0.735302 0.518472 0.436483
--0.466525 -0.0799563 0.880887
--0.0876596 -0.282081 0.431458
-
-0.468043 -0.865113 0.18032
-0.747973 0.496483 0.4405
--0.470608 -0.0712984 0.879457
--0.08768 -0.281098 0.433012
-
-0.444092 -0.878217 0.177532
-0.759994 0.474165 0.444497
--0.474544 -0.0624738 0.878012
--0.0877005 -0.280114 0.434542
-
-0.41978 -0.890649 0.174726
-0.771355 0.451535 0.448473
--0.478327 -0.0534845 0.876552
--0.087721 -0.27913 0.436048
-
-0.395128 -0.902399 0.1719
-0.782048 0.428615 0.452428
--0.481949 -0.0443325 0.875077
--0.0877414 -0.278147 0.437529
-
-0.370154 -0.913458 0.169056
-0.792065 0.405423 0.456361
--0.485406 -0.0350205 0.873587
--0.0877619 -0.277163 0.438987
-
-0.344878 -0.923818 0.166193
-0.801399 0.381979 0.460274
--0.488692 -0.025551 0.872082
--0.0877824 -0.276179 0.44042
-
-0.319319 -0.933469 0.163312
-0.810043 0.358304 0.464165
--0.491799 -0.0159268 0.870563
--0.0878028 -0.275196 0.441829
-
-0.293497 -0.942405 0.160412
-0.817991 0.334417 0.468035
--0.494723 -0.00615108 0.869029
--0.0878233 -0.274212 0.443214
-
-0.267433 -0.950618 0.157494
-0.825237 0.31034 0.471883
--0.497457 0.00377296 0.86748
--0.0878438 -0.273228 0.444574
-
-0.241147 -0.958102 0.154558
-0.831776 0.286092 0.475709
--0.499996 0.0138418 0.865917
--0.0878642 -0.272245 0.445911
-
-0.21466 -0.964851 0.151604
-0.837605 0.261695 0.479514
--0.502333 0.0240518 0.86434
--0.0878847 -0.271261 0.447223
-
-0.187992 -0.970859 0.148632
-0.842719 0.237169 0.483296
--0.504463 0.0343991 0.862748
--0.0879052 -0.270277 0.448511
-
-0.161164 -0.976122 0.145642
-0.847115 0.212536 0.487056
--0.506381 0.0448795 0.861141
--0.0879256 -0.269294 0.449775
-
-0.134198 -0.980636 0.142635
-0.850791 0.187816 0.490794
--0.50808 0.0554887 0.859521
--0.0879461 -0.26831 0.451015
-
-0.107114 -0.984396 0.13961
-0.853745 0.16303 0.49451
--0.509554 0.0662222 0.857886
--0.0879666 -0.267327 0.45223
-
-0.0799337 -0.987401 0.136567
-0.855976 0.138201 0.498203
--0.5108 0.0770752 0.856238
--0.087987 -0.266343 0.453421
-
-0.052678 -0.989647 0.133508
-0.857482 0.113348 0.501873
--0.51181 0.088043 0.854575
--0.0880075 -0.265359 0.454588
-
-0.0253686 -0.991133 0.130431
-0.858264 0.0884934 0.505521
--0.512581 0.0991202 0.852899
--0.088028 -0.264376 0.455731
-
--0.0019733 -0.991857 0.127338
-0.858323 0.0636581 0.509146
--0.513106 0.110302 0.851208
--0.0880484 -0.263392 0.45685
-
--0.0293262 -0.99182 0.124227
-0.85766 0.0388632 0.512747
--0.513381 0.121582 0.849504
--0.0880689 -0.262408 0.457945
-
--0.0566688 -0.991021 0.1211
-0.856276 0.01413 0.516326
--0.513401 0.132955 0.847787
--0.0880893 -0.261425 0.459015
-
--0.0839797 -0.989461 0.117957
-0.854174 -0.0105206 0.519881
--0.513161 0.144415 0.846055
--0.0881098 -0.260441 0.460061
-
--0.111237 -0.987141 0.114797
-0.851357 -0.0350676 0.523413
--0.512657 0.155956 0.844311
--0.0881303 -0.259457 0.461083
-
--0.138421 -0.984063 0.11162
-0.847829 -0.0594901 0.526921
--0.511884 0.167572 0.842553
--0.0881507 -0.258474 0.462081
-
--0.165508 -0.98023 0.108428
-0.843595 -0.0837672 0.530406
--0.510837 0.179256 0.840781
--0.0881712 -0.25749 0.463055
-
--0.192479 -0.975644 0.105219
-0.838658 -0.107878 0.533867
--0.509513 0.191001 0.838996
--0.0881917 -0.256506 0.464004
-
--0.219312 -0.970309 0.101995
-0.833026 -0.131803 0.537304
--0.507908 0.202802 0.837198
--0.0882121 -0.255523 0.464929
-
--0.245986 -0.96423 0.0987547
-0.826703 -0.155522 0.540718
--0.506018 0.21465 0.835387
--0.0882326 -0.254539 0.465831
-
--0.27248 -0.95741 0.095499
-0.819696 -0.179013 0.544107
--0.503838 0.226538 0.833563
--0.0882531 -0.253555 0.466707
-
--0.298773 -0.949857 0.0922278
-0.812014 -0.202258 0.547472
--0.501366 0.23846 0.831726
--0.0882735 -0.252572 0.46756
-
--0.324846 -0.941576 0.0889413
-0.803663 -0.225236 0.550813
--0.498599 0.250408 0.829876
--0.088294 -0.251588 0.468389
-
--0.350677 -0.932572 0.0856395
-0.794652 -0.247928 0.554129
--0.495533 0.262374 0.828014
--0.0883145 -0.250604 0.469193
-
--0.376247 -0.922855 0.0823228
-0.784991 -0.270316 0.557421
--0.492166 0.274351 0.826138
--0.0883349 -0.249621 0.469973
-
--0.401536 -0.91243 0.0789911
-0.774689 -0.29238 0.560688
--0.488494 0.28633 0.82425
--0.0883554 -0.248637 0.470729
-
--0.426524 -0.901308 0.0756446
-0.763756 -0.314101 0.563931
--0.484515 0.298304 0.82235
--0.0883759 -0.247653 0.471461
-
--0.451191 -0.889495 0.0722835
-0.752202 -0.335461 0.567149
--0.480228 0.310264 0.820437
--0.0883963 -0.24667 0.472169
-
--0.475518 -0.877003 0.068908
-0.74004 -0.356442 0.570342
--0.47563 0.322202 0.818512
--0.0884168 -0.245686 0.472852
-
--0.499487 -0.863841 0.0655181
-0.72728 -0.377028 0.57351
--0.470719 0.33411 0.816575
--0.0884372 -0.244702 0.473511
-
--0.523078 -0.850018 0.0621139
-0.713936 -0.397199 0.576653
--0.465494 0.34598 0.814625
--0.0884577 -0.243719 0.474146
-
--0.546274 -0.835547 0.0586958
-0.70002 -0.41694 0.57977
--0.459953 0.357802 0.812663
--0.0884782 -0.242735 0.474757
-
--0.569057 -0.820439 0.0552637
-0.685545 -0.436233 0.582862
--0.454095 0.369567 0.810689
--0.0884986 -0.241751 0.475344
-
--0.591408 -0.804706 0.0518178
-0.670525 -0.455064 0.585929
--0.44792 0.381268 0.808704
--0.0885191 -0.240768 0.475906
-
--0.613311 -0.78836 0.0483583
-0.654975 -0.473415 0.588971
--0.441427 0.392896 0.806706
--0.0885396 -0.239784 0.476445
-
--0.634748 -0.771414 0.0448852
-0.638908 -0.491272 0.591987
--0.434616 0.40444 0.804697
--0.08856 -0.2388 0.476959
-
--0.655704 -0.753882 0.0413989
-0.622341 -0.50862 0.594977
--0.427486 0.415893 0.802676
--0.0885805 -0.237817 0.477449
-
--0.676161 -0.735778 0.0378993
-0.605288 -0.525445 0.597941
--0.420038 0.427245 0.800644
--0.088601 -0.236833 0.477914
-
--0.696105 -0.717116 0.0343867
-0.587767 -0.541732 0.60088
--0.412272 0.438487 0.7986
--0.0886214 -0.235849 0.478356
-
--0.715519 -0.697911 0.0308612
-0.569792 -0.557469 0.603792
--0.404189 0.449609 0.796544
--0.0886419 -0.234866 0.478773
-
--0.73439 -0.678178 0.0273228
-0.551382 -0.572642 0.606679
--0.39579 0.460604 0.794477
--0.0886624 -0.233882 0.479167
-
--0.752701 -0.657933 0.0237719
-0.532553 -0.587239 0.609539
--0.387076 0.471461 0.7924
--0.0886828 -0.232898 0.479536
-
--0.770441 -0.637191 0.0202085
-0.513323 -0.601247 0.612373
--0.378049 0.482171 0.79031
--0.0887033 -0.231915 0.47988
-
--0.787594 -0.61597 0.0166327
-0.49371 -0.614657 0.615181
--0.36871 0.492724 0.78821
--0.0887238 -0.230931 0.480201
-
--0.804148 -0.594287 0.0130448
-0.473731 -0.627456 0.617963
--0.359062 0.503113 0.786099
--0.0887442 -0.229947 0.480497
-
--0.82009 -0.572157 0.00944478
-0.453406 -0.639634 0.620718
--0.349107 0.513327 0.783977
--0.0887647 -0.228964 0.48077
-
--0.835408 -0.549599 0.00583289
-0.432754 -0.651183 0.623446
--0.338847 0.523356 0.781845
--0.0887851 -0.22798 0.481018
-
--0.850091 -0.526631 0.00220924
-0.411793 -0.662092 0.626148
--0.328286 0.533193 0.779701
--0.0888056 -0.226996 0.481242
-
--0.864127 -0.503271 -0.00142601
-0.390543 -0.672352 0.628823
--0.317427 0.542826 0.777547
--0.0888261 -0.226013 0.481441
-
--0.877507 -0.479537 -0.00507272
-0.369023 -0.681957 0.631472
--0.306273 0.552249 0.775382
--0.0888465 -0.225029 0.481617
-
--0.890219 -0.455448 -0.00873074
-0.347254 -0.690898 0.634093
--0.294829 0.56145 0.773207
--0.088867 -0.224045 0.481768
-
--0.902255 -0.431023 -0.0123999
-0.325255 -0.699169 0.636688
--0.283097 0.570422 0.771022
--0.0888875 -0.223062 0.481895
-
--0.913606 -0.406282 -0.0160801
-0.303048 -0.706764 0.639255
--0.271083 0.579154 0.768827
--0.0889079 -0.222078 0.481998
-
--0.924263 -0.381244 -0.0197712
-0.280651 -0.713676 0.641796
--0.258791 0.587639 0.766621
--0.0889284 -0.221094 0.482077
-
--0.934219 -0.355928 -0.023473
-0.258086 -0.719901 0.644309
--0.246226 0.595867 0.764405
--0.0889489 -0.220111 0.482132
-
--0.943465 -0.330355 -0.0271854
-0.235374 -0.725434 0.646795
--0.233393 0.60383 0.762179
--0.0889693 -0.219127 0.482162
-
--0.951996 -0.304545 -0.0309082
-0.212536 -0.730273 0.649254
--0.220298 0.611518 0.759944
--0.0889898 -0.218143 0.482168
-
--0.959806 -0.278517 -0.0346412
-0.189592 -0.734412 0.651685
--0.206946 0.618924 0.757698
--0.0890103 -0.21716 0.48215
-
--0.966889 -0.252293 -0.0383844
-0.166563 -0.737851 0.654089
--0.193344 0.626038 0.755443
--0.0890307 -0.216176 0.482108
-
--0.97324 -0.225894 -0.0421376
-0.143471 -0.740587 0.656466
--0.179498 0.632853 0.753178
--0.0890512 -0.215192 0.482042
-
--0.978855 -0.199339 -0.0459006
-0.120338 -0.742619 0.658814
--0.165414 0.63936 0.750904
--0.0890717 -0.214209 0.481951
-
--0.98373 -0.17265 -0.0496733
-0.0971828 -0.743946 0.661136
--0.1511 0.645552 0.74862
--0.0890921 -0.213225 0.481837
-
--0.987862 -0.145848 -0.0534555
-0.0740284 -0.744568 0.663429
--0.136561 0.651419 0.746327
--0.0891126 -0.212241 0.481698
-
--0.991248 -0.118953 -0.0572471
-0.0508955 -0.744486 0.665695
--0.121806 0.656955 0.744025
--0.0891331 -0.211258 0.481535
-
--0.993887 -0.0919876 -0.061048
-0.0278054 -0.743702 0.667933
--0.106843 0.662152 0.741713
--0.0891535 -0.210274 0.481347
-
--0.995777 -0.0649717 -0.0648579
-0.00477916 -0.742217 0.670143
--0.0916789 0.667003 0.739393
--0.089174 -0.20929 0.481136
-
--0.996918 -0.0379266 -0.0686768
--0.0181621 -0.740033 0.672325
--0.0763221 0.6715 0.737064
--0.0891944 -0.208307 0.4809
-
--0.997309 -0.0108737 -0.0725045
--0.0409975 -0.737155 0.674479
--0.0607811 0.675636 0.734725
--0.0892149 -0.207323 0.48064
-
--0.996951 0.0161661 -0.0763407
--0.063706 -0.733585 0.676605
--0.0450644 0.679405 0.732378
--0.0892354 -0.206339 0.480356
-
--0.995845 0.0431717 -0.0801855
--0.086267 -0.729329 0.678703
--0.0291809 0.6828 0.730023
--0.0892558 -0.205356 0.480048
-
--0.993992 0.070122 -0.0840386
--0.10866 -0.724391 0.680772
--0.0131397 0.685814 0.727658
--0.0892763 -0.204372 0.479716
-
--0.991396 0.0969961 -0.0879
--0.130864 -0.718777 0.682814
-0.00304984 0.688442 0.725285
--0.0892968 -0.203388 0.479359
-
--0.988058 0.123773 -0.0917693
--0.152859 -0.712493 0.684827
-0.0193782 0.690676 0.722904
--0.0893172 -0.202405 0.478979
-
--0.983983 0.150432 -0.0956465
--0.174625 -0.705546 0.686812
-0.0358356 0.692513 0.720515
--0.0893377 -0.201421 0.478574
-
--0.979174 0.176953 -0.0995315
--0.196142 -0.697945 0.688768
-0.0524121 0.693946 0.718117
--0.0893582 -0.200437 0.478145
-
--0.973636 0.203315 -0.103424
--0.217391 -0.689696 0.690696
-0.0690975 0.69497 0.715711
--0.0893786 -0.199454 0.477691
-
--0.967374 0.229497 -0.107324
--0.238352 -0.680808 0.692595
-0.0858815 0.69558 0.713297
--0.0893991 -0.19847 0.477214
-
--0.960395 0.25548 -0.111231
--0.259006 -0.671292 0.694466
-0.102754 0.695771 0.710876
--0.0894196 -0.197486 0.476712
-
--0.952703 0.281243 -0.115146
--0.279334 -0.661156 0.696309
-0.119703 0.69554 0.708446
--0.08944 -0.196503 0.476186
-
--0.944308 0.306767 -0.119067
--0.299318 -0.650411 0.698122
-0.136718 0.694881 0.706009
--0.0894605 -0.195519 0.475636
-
--0.935215 0.332032 -0.122995
--0.318939 -0.639068 0.699907
-0.153789 0.693792 0.703564
--0.089481 -0.194535 0.475062
-
--0.925433 0.357019 -0.12693
--0.33818 -0.627139 0.701663
-0.170904 0.692268 0.701111
--0.0895014 -0.193552 0.474464
-
--0.915328 0.380831 -0.130928
--0.356429 -0.614801 0.703547
-0.187437 0.690643 0.698484
--0.0894758 -0.192644 0.47388
-
--0.905429 0.402432 -0.13508
--0.373001 -0.602324 0.705745
-0.202652 0.689387 0.69547
--0.0893501 -0.191889 0.473339
-
--0.896235 0.42109 -0.139451
--0.387434 -0.590018 0.70836
-0.216004 0.688885 0.691939
--0.0890729 -0.191355 0.472888
-
--0.888262 0.436152 -0.144089
--0.39933 -0.578227 0.711469
-0.226993 0.68951 0.687786
--0.0885977 -0.191111 0.472574
-
--0.881301 0.448485 -0.148898
--0.409258 -0.566843 0.71498
-0.236256 0.69105 0.683105
--0.0879014 -0.19121 0.472471
-
--0.875688 0.457699 -0.153887
--0.417026 -0.556177 0.718858
-0.243432 0.69367 0.67791
--0.0869727 -0.191685 0.472611
-
--0.87176 0.463377 -0.159113
--0.422422 -0.546377 0.723209
-0.248182 0.697677 0.67205
--0.0858474 -0.192455 0.47288
-
--0.869036 0.466606 -0.164483
--0.426197 -0.5372 0.727854
-0.251261 0.702634 0.665713
--0.0845783 -0.193444 0.47325
-
--0.867378 0.467717 -0.169987
--0.428621 -0.528567 0.732735
-0.252863 0.708419 0.658941
--0.0831815 -0.19461 0.473699
-
--0.865715 0.468769 -0.175478
--0.431001 -0.519877 0.737541
-0.254509 0.714132 0.652105
--0.0817848 -0.195776 0.474124
-
--0.864049 0.46976 -0.180955
--0.433339 -0.511129 0.74227
-0.256197 0.719773 0.645206
--0.080388 -0.196942 0.474525
-
--0.862379 0.470692 -0.186418
--0.435632 -0.502325 0.746923
-0.257928 0.725341 0.638243
--0.0789912 -0.198108 0.474902
-
--0.860706 0.471564 -0.191866
--0.437882 -0.493466 0.751499
-0.2597 0.730835 0.631218
--0.0775945 -0.199274 0.475255
-
--0.859031 0.472376 -0.197299
--0.440087 -0.484552 0.755998
-0.261514 0.736254 0.624132
--0.0761977 -0.20044 0.475583
-
--0.857354 0.473129 -0.202715
--0.442246 -0.475585 0.760419
-0.263368 0.741598 0.616984
--0.0748009 -0.201606 0.475887
-
--0.855675 0.473823 -0.208115
--0.44436 -0.466566 0.764762
-0.265262 0.746866 0.609777
--0.0734042 -0.202772 0.476167
-
--0.853996 0.474457 -0.213498
--0.446428 -0.457495 0.769026
-0.267195 0.752056 0.60251
--0.0720074 -0.203938 0.476423
-
--0.852316 0.475033 -0.218863
--0.448449 -0.448374 0.773211
-0.269168 0.757169 0.595184
--0.0706106 -0.205104 0.476655
-
--0.850636 0.47555 -0.224211
--0.450422 -0.439203 0.777316
-0.271179 0.762202 0.587801
--0.0692139 -0.20627 0.476862
-
--0.848957 0.476009 -0.229539
--0.452349 -0.429984 0.781341
-0.273227 0.767157 0.58036
--0.0678171 -0.207435 0.477045
-
--0.847278 0.476409 -0.234848
--0.454227 -0.420717 0.785286
-0.275313 0.772031 0.572862
--0.0664203 -0.208601 0.477204
-
--0.845602 0.476751 -0.240138
--0.456057 -0.411404 0.789151
-0.277435 0.776824 0.565309
--0.0650236 -0.209767 0.477339
-
--0.843927 0.477035 -0.245408
--0.457838 -0.402045 0.792934
-0.279593 0.781535 0.557701
--0.0636268 -0.210933 0.47745
-
--0.842254 0.477262 -0.250656
--0.45957 -0.392641 0.796636
-0.281786 0.786164 0.550039
--0.06223 -0.212099 0.477536
-
--0.840585 0.477431 -0.255884
--0.461252 -0.383194 0.800256
-0.284014 0.790709 0.542323
--0.0608333 -0.213265 0.477599
-
--0.838919 0.477543 -0.261089
--0.462884 -0.373705 0.803793
-0.286276 0.795171 0.534555
--0.0594365 -0.214431 0.477637
-
--0.837257 0.477599 -0.266272
--0.464465 -0.364174 0.807248
-0.288571 0.799548 0.526735
--0.0580397 -0.215597 0.477651
-
--0.835599 0.477597 -0.271433
--0.465996 -0.354602 0.81062
-0.290899 0.80384 0.518863
--0.056643 -0.216763 0.477641
-
--0.833946 0.477539 -0.276569
--0.467475 -0.344991 0.813909
-0.293259 0.808046 0.510942
--0.0552462 -0.217929 0.477606
-
--0.832298 0.477425 -0.281683
--0.468903 -0.335342 0.817114
-0.295651 0.812165 0.50297
--0.0538494 -0.219095 0.477548
-
--0.830656 0.477255 -0.286771
--0.470279 -0.325655 0.820236
-0.298073 0.816196 0.49495
--0.0524527 -0.220261 0.477465
-
--0.829021 0.477029 -0.291835
--0.471603 -0.315932 0.823273
-0.300525 0.82014 0.486882
--0.0510559 -0.221427 0.477358
-
--0.827392 0.476748 -0.296873
--0.472874 -0.306173 0.826225
-0.303007 0.823996 0.478767
--0.0496591 -0.222593 0.477227
-
--0.82577 0.476413 -0.301886
--0.474092 -0.296381 0.829093
-0.305517 0.827762 0.470606
--0.0482624 -0.223759 0.477071
-
--0.824156 0.476022 -0.306872
--0.475257 -0.286555 0.831876
-0.308056 0.831438 0.462399
--0.0468656 -0.224925 0.476892
-
--0.82255 0.475577 -0.311831
--0.476368 -0.276698 0.834573
-0.310621 0.835024 0.454147
--0.0454688 -0.226091 0.476688
-
--0.820952 0.475078 -0.316762
--0.477426 -0.266809 0.837184
-0.313213 0.838519 0.445852
--0.0440721 -0.227257 0.47646
-
--0.819363 0.474526 -0.321666
--0.478429 -0.25689 0.83971
-0.315831 0.841922 0.437514
--0.0426753 -0.228423 0.476208
-
--0.817784 0.47392 -0.326542
--0.479378 -0.246943 0.842149
-0.318474 0.845233 0.429133
--0.0412786 -0.229589 0.475932
-
--0.816214 0.473261 -0.331388
--0.480273 -0.236968 0.844502
-0.321142 0.848452 0.420711
--0.0398818 -0.230755 0.475631
-
--0.814655 0.47255 -0.336205
--0.481112 -0.226966 0.846769
-0.323833 0.851577 0.412249
--0.038485 -0.231921 0.475307
-
--0.813107 0.471786 -0.340992
--0.481897 -0.216939 0.848948
-0.326547 0.854609 0.403746
--0.0370883 -0.233087 0.474958
-
--0.811569 0.47097 -0.345749
--0.482626 -0.206887 0.851041
-0.329283 0.857546 0.395206
--0.0356915 -0.234253 0.474585
-
--0.810043 0.470103 -0.350476
--0.483299 -0.196812 0.853046
-0.332041 0.860389 0.386627
--0.0342947 -0.235419 0.474188
-
--0.80853 0.469184 -0.35517
--0.483917 -0.186715 0.854963
-0.33482 0.863136 0.378011
--0.032898 -0.236585 0.473766
-
--0.807028 0.468215 -0.359834
--0.484479 -0.176596 0.856793
-0.337618 0.865788 0.369358
--0.0315012 -0.237751 0.473321
-
--0.80554 0.467195 -0.364464
--0.484984 -0.166458 0.858535
-0.340435 0.868343 0.360671
--0.0301044 -0.238917 0.472851
-
--0.802535 0.470615 -0.366686
--0.484686 -0.155921 0.860679
-0.347874 0.868453 0.353232
--0.0288835 -0.23981 0.472556
-
--0.797867 0.478862 -0.366196
--0.483301 -0.145036 0.863357
-0.360317 0.865827 0.347154
--0.0278499 -0.240389 0.47246
-
--0.791088 0.492579 -0.362693
--0.48062 -0.133738 0.866671
-0.378398 0.85993 0.342542
--0.0270188 -0.240619 0.472593
-
--0.782152 0.510853 -0.356745
--0.476782 -0.122088 0.870502
-0.401144 0.850954 0.339057
--0.0263621 -0.240575 0.472901
-
--0.772009 0.530637 -0.349895
--0.472292 -0.110498 0.874489
-0.425374 0.840366 0.335921
--0.0257482 -0.240421 0.47327
-
--0.761304 0.550221 -0.343036
--0.467491 -0.0991868 0.878416
-0.449298 0.829108 0.332734
--0.0251343 -0.240267 0.473615
-
--0.750042 0.569586 -0.336167
--0.46239 -0.0881645 0.882283
-0.472898 0.81719 0.329498
--0.0245204 -0.240113 0.473935
-
--0.738228 0.588717 -0.32929
--0.456999 -0.0774393 0.88609
-0.496156 0.804621 0.326211
--0.0239064 -0.23996 0.474232
-
--0.725866 0.607597 -0.322404
--0.451333 -0.0670191 0.889836
-0.519054 0.791413 0.322875
--0.0232925 -0.239806 0.474504
-
--0.712962 0.626209 -0.315511
--0.445401 -0.0569115 0.893521
-0.541575 0.777575 0.31949
--0.0226786 -0.239652 0.474752
-
--0.699522 0.644538 -0.308611
--0.439216 -0.0471237 0.897145
-0.563701 0.763119 0.316056
--0.0220647 -0.239498 0.474976
-
--0.685552 0.662566 -0.301704
--0.432792 -0.0376624 0.900707
-0.585415 0.748056 0.312573
--0.0214507 -0.239344 0.475176
-
--0.671059 0.680278 -0.294792
--0.426139 -0.028534 0.904207
-0.606701 0.732399 0.309041
--0.0208368 -0.23919 0.475352
-
--0.656051 0.697657 -0.287875
--0.419272 -0.0197443 0.907646
-0.627542 0.71616 0.305461
--0.0202229 -0.239036 0.475503
-
--0.640535 0.714689 -0.280954
--0.412203 -0.0112988 0.911022
-0.647923 0.699351 0.301834
--0.0196089 -0.238882 0.47563
-
--0.624521 0.731357 -0.274028
--0.404944 -0.00320249 0.914336
-0.667828 0.681988 0.298159
--0.018995 -0.238728 0.475733
-
--0.608016 0.747645 -0.2671
--0.39751 0.00454014 0.917586
-0.687242 0.664083 0.294436
--0.0183811 -0.238575 0.475812
-
--0.591032 0.76354 -0.260169
--0.389914 0.011925 0.920774
-0.706151 0.64565 0.290667
--0.0177672 -0.238421 0.475867
-
--0.573576 0.779026 -0.253236
--0.382169 0.0189484 0.923898
-0.72454 0.626705 0.286851
--0.0171532 -0.238267 0.475897
-
--0.55566 0.794089 -0.246301
--0.374288 0.0256073 0.926959
-0.742395 0.607262 0.282989
--0.0165393 -0.238113 0.475904
-
--0.537295 0.808714 -0.239366
--0.366285 0.0318988 0.929956
-0.759704 0.587337 0.27908
--0.0159254 -0.237959 0.475886
-
--0.518491 0.822887 -0.232431
--0.358173 0.0378209 0.932889
-0.776453 0.566945 0.275126
--0.0153115 -0.237805 0.475844
-
--0.499261 0.836594 -0.225496
--0.349967 0.0433715 0.935757
-0.792629 0.546104 0.271127
--0.0146975 -0.237651 0.475777
-
--0.479617 0.849823 -0.218562
--0.34168 0.0485496 0.938561
-0.808222 0.524828 0.267082
--0.0140836 -0.237497 0.475687
-
--0.45957 0.862559 -0.21163
--0.333326 0.0533541 0.941301
-0.823219 0.503135 0.262993
--0.0134697 -0.237343 0.475572
-
--0.439135 0.874791 -0.2047
--0.324917 0.0577848 0.943975
-0.837609 0.481043 0.258859
--0.0128557 -0.23719 0.475434
-
--0.418324 0.886505 -0.197773
--0.316469 0.0618416 0.946585
-0.851383 0.458568 0.254682
--0.0122418 -0.237036 0.475271
-
--0.397151 0.89769 -0.19085
--0.307994 0.065525 0.949129
-0.864529 0.435728 0.25046
--0.0116279 -0.236882 0.475083
-
--0.37563 0.908334 -0.183931
--0.299507 0.0688362 0.951608
-0.877039 0.412541 0.246195
--0.011014 -0.236728 0.474872
-
--0.353776 0.918427 -0.177016
--0.29102 0.0717765 0.954021
-0.888904 0.389025 0.241887
--0.0104 -0.236574 0.474636
-
--0.331604 0.927956 -0.170107
--0.282547 0.0743478 0.956368
-0.900114 0.365199 0.237537
--0.00978611 -0.23642 0.474377
-
--0.309129 0.936912 -0.163204
--0.274101 0.0765524 0.958649
-0.910663 0.341081 0.233144
--0.00917219 -0.236266 0.474093
-
--0.286366 0.945284 -0.156307
--0.265696 0.0783932 0.960864
-0.920543 0.316689 0.228709
--0.00855826 -0.236112 0.473785
-
--0.263332 0.953064 -0.149418
--0.257345 0.0798733 0.963013
-0.929747 0.292044 0.224233
--0.00794433 -0.235958 0.473452
-
--0.240042 0.960241 -0.142536
--0.24906 0.0809965 0.965095
-0.938269 0.267163 0.219715
--0.00733041 -0.235805 0.473096
-
--0.216513 0.966808 -0.135663
--0.240855 0.0817668 0.967111
-0.946103 0.242067 0.215157
--0.00671648 -0.235651 0.472715
-
--0.192762 0.972756 -0.128798
--0.232741 0.0821887 0.96906
-0.953244 0.216775 0.210558
--0.00610255 -0.235497 0.47231
-
--0.168806 0.978077 -0.121944
--0.224733 0.0822673 0.970941
-0.959687 0.191305 0.205919
--0.00548862 -0.235343 0.471881
-
--0.144662 0.982764 -0.115099
--0.216841 0.0820079 0.972756
-0.965429 0.165679 0.20124
--0.0048747 -0.235189 0.471428
-
--0.120348 0.986811 -0.108265
--0.209077 0.0814162 0.974504
-0.970465 0.139916 0.196522
--0.00426077 -0.235035 0.470951
-
--0.0958818 0.99021 -0.101442
--0.201455 0.0804984 0.976184
-0.974794 0.114034 0.191764
--0.00364684 -0.234881 0.470449
-
--0.0761349 0.992567 -0.0949439
--0.19559 0.0785036 0.977539
-0.977726 0.0929949 0.18816
--0.00295799 -0.234556 0.469966
-
--0.0668634 0.9938 -0.0888262
--0.193424 0.0744261 0.978288
-0.978834 0.0825929 0.187249
--0.0021043 -0.233847 0.469536
-
--0.0693505 0.994119 -0.083177
--0.19523 0.0682407 0.978381
-0.978302 0.0840898 0.189349
--0.00106004 -0.23271 0.469155
-
--0.0826554 0.993524 -0.0779646
--0.20048 0.0600563 0.977855
-0.976205 0.0964554 0.194218
-0.000154671 -0.231192 0.468852
-
--0.0959815 0.99272 -0.0727579
--0.20555 0.0517525 0.977277
-0.973929 0.108756 0.199086
-0.00136938 -0.229674 0.468526
-
--0.109325 0.991708 -0.0675571
--0.210436 0.0433328 0.976647
-0.971476 0.120989 0.203954
-0.0025841 -0.228156 0.468175
-
--0.122683 0.990485 -0.0623624
--0.215137 0.0348009 0.975964
-0.968847 0.133151 0.208821
-0.00379881 -0.226638 0.4678
-
--0.136051 0.989051 -0.0571742
--0.219651 0.0261605 0.975228
-0.966045 0.145239 0.213687
-0.00501352 -0.22512 0.467401
-
--0.149427 0.987405 -0.0519927
--0.223975 0.0174153 0.974439
-0.963072 0.157252 0.218551
-0.00622823 -0.223602 0.466978
-
--0.162805 0.985547 -0.0468182
--0.228107 0.00856909 0.973598
-0.959928 0.169186 0.223415
-0.00744294 -0.222084 0.466531
-
--0.176183 0.983476 -0.0416511
--0.232045 -0.000374304 0.972705
-0.956616 0.181039 0.228276
-0.00865766 -0.220566 0.466059
-
--0.189557 0.981191 -0.0364915
--0.235786 -0.00941103 0.971759
-0.953138 0.192808 0.233136
-0.00987237 -0.219048 0.465563
-
--0.202923 0.978693 -0.0313399
--0.23933 -0.0185372 0.970761
-0.949496 0.204491 0.237993
-0.0110871 -0.21753 0.465043
-
--0.216278 0.97598 -0.0261964
--0.242675 -0.0277489 0.969711
-0.945692 0.216085 0.242847
-0.0123018 -0.216012 0.464499
-
--0.229618 0.973053 -0.0210613
--0.245817 -0.0370421 0.968608
-0.941727 0.227587 0.247699
-0.0135165 -0.214494 0.463931
-
--0.242939 0.969911 -0.015935
--0.248757 -0.0464128 0.967453
-0.937604 0.238996 0.252547
-0.0147312 -0.212976 0.463338
-
--0.256237 0.966553 -0.0108178
--0.251491 -0.055857 0.966246
-0.933324 0.250309 0.257392
-0.0159459 -0.211458 0.462722
-
--0.269509 0.962981 -0.00570979
--0.254019 -0.0653707 0.964987
-0.928891 0.261523 0.262234
-0.0171606 -0.20994 0.462081
-
--0.282751 0.959193 -0.000611417
--0.25634 -0.0749496 0.963677
-0.924306 0.272637 0.267071
-0.0183754 -0.208422 0.461416
-
--0.295959 0.95519 0.00447709
--0.258451 -0.0845897 0.962314
-0.919571 0.283648 0.271905
-0.0195901 -0.206904 0.460726
-
--0.30913 0.950972 0.00955545
--0.260351 -0.0942868 0.960899
-0.914689 0.294555 0.276733
-0.0208048 -0.205386 0.460013
-
--0.322258 0.946539 0.0146234
--0.26204 -0.104037 0.959433
-0.909662 0.305353 0.281558
-0.0220195 -0.203868 0.459275
-
--0.335342 0.941891 0.0196806
--0.263516 -0.113835 0.957915
-0.904492 0.316043 0.286377
-0.0232342 -0.20235 0.458513
-
--0.348377 0.937028 0.0247268
--0.264778 -0.123678 0.956345
-0.899181 0.326622 0.291191
-0.0244489 -0.200832 0.457727
-
--0.361359 0.931952 0.0297618
--0.265824 -0.133561 0.954724
-0.893732 0.337087 0.295999
-0.0256636 -0.199314 0.456917
-
--0.374284 0.926661 0.0347852
--0.266656 -0.14348 0.953052
-0.888148 0.347437 0.300802
-0.0268783 -0.197796 0.456083
-
--0.387149 0.921158 0.0397967
--0.26727 -0.15343 0.951329
-0.88243 0.35767 0.305598
-0.028093 -0.196278 0.455224
-
--0.39995 0.915442 0.0447962
--0.267667 -0.163407 0.949554
-0.876581 0.367784 0.310388
-0.0293078 -0.19476 0.454341
-
--0.412683 0.909513 0.0497833
--0.267846 -0.173408 0.947728
-0.870604 0.377777 0.315172
-0.0305225 -0.193242 0.453435
-
--0.425344 0.903374 0.0547578
--0.267807 -0.183426 0.945851
-0.864501 0.387648 0.319949
-0.0317372 -0.191724 0.452503
-
--0.43793 0.897024 0.0597193
--0.267548 -0.193459 0.943923
-0.858275 0.397394 0.324719
-0.0329519 -0.190206 0.451548
-
--0.450436 0.890464 0.0646677
--0.26707 -0.203502 0.941945
-0.851928 0.407015 0.329481
-0.0341666 -0.188688 0.450569
-
--0.462859 0.883695 0.0696025
--0.266372 -0.21355 0.939916
-0.845463 0.416509 0.334236
-0.0353813 -0.18717 0.449565
-
--0.475196 0.876719 0.0745236
--0.265455 -0.223599 0.937836
-0.838882 0.425873 0.338982
-0.036596 -0.185652 0.448537
-
--0.487441 0.869535 0.0794308
--0.264317 -0.233645 0.935706
-0.832188 0.435107 0.343721
-0.0378107 -0.184134 0.447485
-
--0.499593 0.862146 0.0843236
--0.262959 -0.243683 0.933526
-0.825385 0.444209 0.348451
-0.0390255 -0.182616 0.446409
-
--0.511646 0.854553 0.0892019
--0.261381 -0.253709 0.931296
-0.818473 0.453179 0.353173
-0.0402402 -0.181098 0.445308
-
--0.523598 0.846757 0.0940653
--0.259583 -0.263718 0.929015
-0.811457 0.462013 0.357886
-0.0414549 -0.17958 0.444184
-
--0.535444 0.838758 0.0989137
--0.257565 -0.273706 0.926685
-0.804338 0.470712 0.362589
-0.0426696 -0.178062 0.443035
-
--0.547182 0.830559 0.103747
--0.255327 -0.283669 0.924305
-0.79712 0.479273 0.367283
-0.0438843 -0.176544 0.441862
-
--0.558806 0.822161 0.108564
--0.252871 -0.293602 0.921875
-0.789805 0.487697 0.371967
-0.045099 -0.175026 0.440665
-
--0.570314 0.813566 0.113366
--0.250196 -0.303501 0.919396
-0.782396 0.495981 0.376642
-0.0463137 -0.173508 0.439444
-
--0.581702 0.804775 0.118151
--0.247302 -0.313361 0.916868
-0.774896 0.504125 0.381306
-0.0475284 -0.17199 0.438198
-
--0.592967 0.79579 0.12292
--0.244192 -0.323178 0.91429
-0.767308 0.512127 0.385959
-0.0487432 -0.170472 0.436928
-
--0.604104 0.786612 0.127672
--0.240864 -0.332948 0.911663
-0.759633 0.519988 0.390602
-0.0499579 -0.168954 0.435634
-
--0.615111 0.777243 0.132408
--0.237321 -0.342667 0.908987
-0.751876 0.527705 0.395234
-0.0511726 -0.167436 0.434316
-
--0.625983 0.767686 0.137126
--0.233563 -0.352329 0.906263
-0.744039 0.535278 0.399855
-0.0523873 -0.165918 0.432974
-
--0.636717 0.757942 0.141827
--0.22959 -0.361931 0.90349
-0.736125 0.542706 0.404464
-0.053602 -0.1644 0.431608
-
--0.647311 0.748013 0.14651
--0.225405 -0.371469 0.900669
-0.728136 0.549988 0.409061
-0.0548167 -0.162882 0.430217
-
--0.657759 0.737902 0.151175
--0.221007 -0.380937 0.897799
-0.720075 0.557125 0.413647
-0.0560314 -0.161364 0.428802
-
--0.66806 0.727609 0.155822
--0.216399 -0.390332 0.894881
-0.711946 0.564114 0.41822
-0.0572461 -0.159846 0.427363
-
--0.674445 0.720622 0.160708
--0.212543 -0.397951 0.892447
-0.707071 0.567749 0.421559
-0.0582775 -0.15859 0.42599
-
--0.675602 0.718333 0.166011
--0.20982 -0.403193 0.890736
-0.70678 0.566951 0.423118
-0.0590674 -0.15767 0.42466
-
--0.67186 0.720507 0.171678
--0.208226 -0.406173 0.889756
-0.710806 0.562044 0.42292
-0.0596244 -0.157091 0.423378
-
--0.662116 0.728009 0.17778
--0.208124 -0.406531 0.889616
-0.719921 0.552029 0.420687
-0.059886 -0.156919 0.422184
-
--0.64689 0.739996 0.184225
--0.209377 -0.404647 0.890181
-0.733276 0.537277 0.4167
-0.0599034 -0.157081 0.421037
-
--0.626671 0.755528 0.190946
--0.211701 -0.400865 0.891341
-0.749977 0.518154 0.411157
-0.0597087 -0.157542 0.419942
-
--0.60602 0.770508 0.197632
--0.213958 -0.397191 0.892447
-0.766135 0.498556 0.405561
-0.059514 -0.158003 0.418822
-
--0.584951 0.784922 0.204281
--0.216153 -0.393624 0.893498
-0.781736 0.478496 0.399914
-0.0593193 -0.158464 0.417679
-
--0.56348 0.798758 0.210895
--0.218294 -0.390166 0.894493
-0.796767 0.457992 0.394214
-0.0591246 -0.158925 0.416511
-
--0.541624 0.812004 0.217471
--0.220386 -0.386818 0.895434
-0.811217 0.437061 0.388464
-0.0589298 -0.159386 0.415319
-
--0.519398 0.824649 0.22401
--0.222438 -0.383579 0.896319
-0.825074 0.415718 0.382663
-0.0587351 -0.159847 0.414103
-
--0.49682 0.836681 0.23051
--0.224455 -0.38045 0.89715
-0.838326 0.393983 0.376813
-0.0585404 -0.160308 0.412862
-
--0.473906 0.84809 0.236971
--0.226444 -0.377431 0.897925
-0.850962 0.371872 0.370912
-0.0583457 -0.160769 0.411598
-
--0.450675 0.858866 0.243394
--0.228412 -0.374521 0.898644
-0.862972 0.349403 0.364963
-0.058151 -0.16123 0.410309
-
--0.427143 0.869 0.249776
--0.230365 -0.37172 0.899309
-0.874346 0.326594 0.358965
-0.0579562 -0.161691 0.408996
-
--0.403329 0.878481 0.256117
--0.232311 -0.369026 0.899918
-0.885075 0.303464 0.352919
-0.0577615 -0.162152 0.407659
-
--0.379251 0.887302 0.262418
--0.234254 -0.366437 0.900471
-0.89515 0.280033 0.346826
-0.0575668 -0.162612 0.406298
-
--0.354928 0.895455 0.268676
--0.236203 -0.363954 0.900969
-0.904563 0.256317 0.340686
-0.0573721 -0.163073 0.404912
-
--0.330378 0.902931 0.274893
--0.238162 -0.361573 0.901412
-0.913307 0.232338 0.3345
-0.0571774 -0.163534 0.403503
-
--0.305621 0.909724 0.281067
--0.240139 -0.359293 0.901799
-0.921373 0.208114 0.328268
-0.0569826 -0.163995 0.402069
-
--0.280676 0.915827 0.287198
--0.242139 -0.357112 0.902131
-0.928757 0.183664 0.32199
-0.0567879 -0.164456 0.400611
-
--0.255562 0.921234 0.293284
--0.244169 -0.355026 0.902407
-0.935452 0.15901 0.315668
-0.0565932 -0.164917 0.399129
-
--0.230299 0.925941 0.299327
--0.246234 -0.353033 0.902627
-0.941452 0.134169 0.309301
-0.0563985 -0.165378 0.397622
-
--0.205633 0.929806 0.305249
--0.247967 -0.35124 0.902853
-0.946693 0.109964 0.302787
-0.0562952 -0.165941 0.396141
-
--0.182052 0.932811 0.311001
--0.249142 -0.349725 0.903117
-0.951202 0.0869306 0.296071
-0.0563439 -0.166673 0.394716
-
--0.159582 0.935046 0.316579
--0.249766 -0.348498 0.903419
-0.955066 0.0650989 0.289157
-0.056547 -0.167574 0.393345
-
--0.138156 0.936608 0.32199
--0.249873 -0.347553 0.903753
-0.958372 0.0444026 0.28205
-0.056904 -0.168646 0.392027
-
--0.11756 0.937552 0.327378
--0.249673 -0.346979 0.904029
-0.961167 0.0245403 0.274872
-0.0574211 -0.169871 0.390788
-
--0.0978071 0.937932 0.332742
--0.249174 -0.346775 0.904245
-0.963507 0.00553099 0.267625
-0.0581005 -0.17125 0.389623
-
--0.07862 0.937812 0.338124
--0.248545 -0.346903 0.904369
-0.965424 -0.0129375 0.260362
-0.0588832 -0.172713 0.388498
-
--0.0594208 0.937285 0.343462
--0.24799 -0.347144 0.904429
-0.966939 -0.0314331 0.253064
-0.0596658 -0.174177 0.387349
-
--0.0402184 0.936351 0.348755
--0.247512 -0.347495 0.904425
-0.96805 -0.0499465 0.245734
-0.0604485 -0.175641 0.386175
-
--0.0210218 0.935008 0.354002
--0.247116 -0.347953 0.904357
-0.968758 -0.0684684 0.238371
-0.0612312 -0.177104 0.384978
-
--0.00191559 0.934076 0.357068
--0.249015 -0.346266 0.904484
-0.968498 -0.0871827 0.233262
-0.0621564 -0.178178 0.383841
-
-0.0174172 0.933731 0.357551
--0.253712 -0.341773 0.904887
-0.967123 -0.106476 0.230946
-0.0632541 -0.178777 0.382776
-
-0.0356611 0.934142 0.355115
--0.261242 -0.334271 0.905547
-0.964614 -0.125064 0.232117
-0.06459 -0.178826 0.381788
-
-0.0525532 0.935517 0.349352
--0.271895 -0.323214 0.906425
-0.960891 -0.142622 0.237376
-0.0662096 -0.178241 0.38089
-
-0.0690899 0.936828 0.342899
--0.282877 -0.311216 0.907263
-0.956665 -0.159681 0.243505
-0.0678971 -0.177528 0.379982
-
-0.0857292 0.937797 0.336434
--0.293515 -0.298919 0.908018
-0.952103 -0.176592 0.249631
-0.0695846 -0.176816 0.37905
-
-0.102463 0.938419 0.329957
--0.303802 -0.286333 0.90869
-0.947209 -0.193349 0.255755
-0.0712722 -0.176103 0.378093
-
-0.119284 0.93869 0.32347
--0.31373 -0.273467 0.909279
-0.94199 -0.209945 0.261875
-0.0729597 -0.17539 0.377113
-
-0.136184 0.938607 0.316971
--0.323292 -0.260331 0.909786
-0.936449 -0.226373 0.267991
-0.0746473 -0.174677 0.376108
-
-0.153155 0.938166 0.310463
--0.33248 -0.246934 0.910209
-0.930591 -0.242626 0.274103
-0.0763348 -0.173965 0.37508
-
-0.170189 0.937365 0.303946
--0.341288 -0.233286 0.910549
-0.924423 -0.258698 0.280209
-0.0780223 -0.173252 0.374027
-
-0.187277 0.936199 0.297419
--0.349709 -0.219397 0.910807
-0.917949 -0.274583 0.28631
-0.0797099 -0.172539 0.372949
-
-0.20441 0.934667 0.290885
--0.357737 -0.205276 0.910981
-0.911175 -0.290274 0.292404
-0.0813974 -0.171826 0.371848
-
-0.221581 0.932765 0.284342
--0.365365 -0.190936 0.911072
-0.904107 -0.305765 0.298492
-0.0830849 -0.171113 0.370723
-
-0.23878 0.930492 0.277793
--0.372589 -0.176385 0.91108
-0.896751 -0.321051 0.304573
-0.0847725 -0.170401 0.369573
-
-0.256 0.927844 0.271238
--0.379401 -0.161635 0.911004
-0.889111 -0.336125 0.310646
-0.08646 -0.169688 0.368399
-
-0.27323 0.92482 0.264676
--0.385797 -0.146697 0.910846
-0.881196 -0.350982 0.316711
-0.0881476 -0.168975 0.367201
-
-0.290462 0.921418 0.25811
--0.391772 -0.131581 0.910605
-0.87301 -0.365617 0.322767
-0.0898351 -0.168262 0.365979
-
-0.307688 0.917636 0.251538
--0.397322 -0.116298 0.91028
-0.86456 -0.380024 0.328813
-0.0915226 -0.16755 0.364732
-
-0.324897 0.913474 0.244963
--0.402441 -0.10086 0.909873
-0.855852 -0.394198 0.33485
-0.0932102 -0.166837 0.363462
-
-0.342082 0.90893 0.238384
--0.407125 -0.0852785 0.909382
-0.846894 -0.408135 0.340876
-0.0948977 -0.166124 0.362167
-
-0.359232 0.904002 0.231803
--0.411372 -0.0695643 0.908809
-0.837691 -0.42183 0.346891
-0.0965853 -0.165411 0.360848
-
-0.376339 0.898691 0.225219
--0.415176 -0.0537291 0.908153
-0.82825 -0.435279 0.352895
-0.0982728 -0.164698 0.359504
-
-0.393393 0.892996 0.218633
--0.418536 -0.0377845 0.907414
-0.818578 -0.448476 0.358887
-0.0999603 -0.163986 0.358137
-
-0.410385 0.886916 0.212046
--0.421447 -0.0217424 0.906592
-0.808682 -0.461418 0.364866
-0.101648 -0.163273 0.356746
-
-0.427306 0.880452 0.205459
--0.423908 -0.00561455 0.905688
-0.798569 -0.474101 0.370832
-0.103335 -0.16256 0.35533
-
-0.444145 0.873604 0.198872
--0.425916 0.0105872 0.904701
-0.788245 -0.486521 0.376784
-0.105023 -0.161847 0.35389
-
-0.460895 0.866373 0.192285
--0.427468 0.026851 0.903631
-0.777719 -0.498675 0.382723
-0.10671 -0.161134 0.352426
-
-0.477545 0.858759 0.1857
--0.428564 0.0431646 0.90248
-0.766996 -0.510559 0.388646
-0.108398 -0.160422 0.350937
-
-0.494086 0.850762 0.179117
--0.429202 0.0595162 0.901246
-0.756085 -0.52217 0.394555
-0.110086 -0.159709 0.349425
-
-0.510508 0.842385 0.172536
--0.42938 0.0758935 0.89993
-0.744993 -0.533505 0.400447
-0.111773 -0.158996 0.347888
-
-0.526803 0.833629 0.165958
--0.429098 0.0922845 0.898531
-0.733726 -0.544561 0.406324
-0.113461 -0.158283 0.346327
-
-0.54296 0.824495 0.159384
--0.428355 0.108677 0.897052
-0.722293 -0.555336 0.412184
-0.115148 -0.157571 0.344742
-
-0.55897 0.814985 0.152814
--0.427151 0.125059 0.89549
-0.7107 -0.565826 0.418026
-0.116836 -0.156858 0.343133
-
-0.574824 0.805102 0.146249
--0.425487 0.141418 0.893847
-0.698955 -0.576031 0.423851
-0.118523 -0.156145 0.3415
-
-0.590512 0.794848 0.139689
--0.423363 0.157742 0.892122
-0.687066 -0.585948 0.429657
-0.120211 -0.155432 0.339842
-
-0.603342 0.786164 0.133884
--0.421468 0.171818 0.890418
-0.677011 -0.593654 0.435008
-0.121792 -0.154869 0.338226
-
-0.611863 0.780335 0.129231
--0.420392 0.182434 0.888813
-0.669996 -0.598159 0.439671
-0.123136 -0.154555 0.336738
-
-0.612113 0.780527 0.126867
--0.421619 0.186407 0.887406
-0.668996 -0.596683 0.443187
-0.124019 -0.154734 0.335488
-
-0.604145 0.78674 0.126686
--0.425254 0.183853 0.886204
-0.67392 -0.589269 0.445638
-0.124487 -0.155386 0.334456
-
-0.587768 0.79873 0.128683
--0.431203 0.174702 0.88518
-0.684539 -0.575768 0.447099
-0.124537 -0.156511 0.333638
-
-0.564054 0.815033 0.132531
--0.438693 0.159807 0.884313
-0.699565 -0.556941 0.447689
-0.124266 -0.158032 0.332999
-
-0.535655 0.83318 0.137426
--0.446587 0.141387 0.883498
-0.716683 -0.534623 0.447822
-0.123737 -0.159788 0.332482
-
-0.506647 0.850327 0.142313
--0.453747 0.122631 0.882652
-0.733091 -0.511768 0.447964
-0.123208 -0.161544 0.331942
-
-0.477067 0.866453 0.147192
--0.46016 0.103568 0.881775
-0.748772 -0.488397 0.448116
-0.122678 -0.1633 0.331377
-
-0.44695 0.88154 0.152061
--0.465813 0.0842271 0.880866
-0.763711 -0.464535 0.448278
-0.122149 -0.165057 0.330788
-
-0.416333 0.895568 0.156922
--0.470695 0.0646365 0.879925
-0.77789 -0.440205 0.44845
-0.12162 -0.166813 0.330175
-
-0.385255 0.90852 0.161773
--0.474795 0.0448265 0.878954
-0.791295 -0.41543 0.448631
-0.12109 -0.168569 0.329538
-
-0.353751 0.92038 0.166615
--0.478106 0.0248272 0.877951
-0.803912 -0.390236 0.448822
-0.120561 -0.170325 0.328876
-
-0.321863 0.931134 0.171448
--0.480618 0.00466912 0.876918
-0.815727 -0.364648 0.449022
-0.120032 -0.172081 0.32819
-
-0.289628 0.940768 0.17627
--0.482324 -0.0156169 0.875853
-0.826728 -0.338691 0.449232
-0.119502 -0.173837 0.327481
-
-0.257087 0.949271 0.181082
--0.483221 -0.0359998 0.874758
-0.836902 -0.312391 0.449452
-0.118973 -0.175593 0.326747
-
-0.224279 0.956633 0.185884
--0.483301 -0.0564482 0.873632
-0.846238 -0.285775 0.449682
-0.118443 -0.17735 0.325988
-
-0.191245 0.962844 0.190676
--0.482564 -0.0769305 0.872476
-0.854727 -0.258869 0.449921
-0.117914 -0.179106 0.325206
-
-0.158025 0.967897 0.195456
--0.481006 -0.0974151 0.871289
-0.862358 -0.231701 0.45017
-0.117385 -0.180862 0.324399
-
-0.124661 0.971787 0.200226
--0.478626 -0.11787 0.870071
-0.869124 -0.204298 0.450429
-0.116855 -0.182618 0.323568
-
-0.0911946 0.974507 0.204985
--0.475426 -0.138264 0.868823
-0.875016 -0.176687 0.450697
-0.116326 -0.184374 0.322713
-
-0.0576662 0.976057 0.209732
--0.471406 -0.158564 0.867545
-0.880029 -0.148897 0.450975
-0.115797 -0.18613 0.321834
-
-0.0241175 0.976433 0.214468
--0.466569 -0.17874 0.866236
-0.884156 -0.120956 0.451263
-0.115267 -0.187886 0.320931
-
--0.00940982 0.975636 0.219192
--0.460919 -0.198758 0.864898
-0.887392 -0.0928913 0.45156
-0.114738 -0.189643 0.320003
-
--0.0428742 0.973668 0.223904
--0.454462 -0.218588 0.863529
-0.889734 -0.0647328 0.451867
-0.114209 -0.191399 0.319052
-
--0.0762342 0.97053 0.228604
--0.447204 -0.238199 0.862131
-0.891177 -0.0365088 0.452184
-0.113679 -0.193155 0.318076
-
--0.109448 0.966228 0.233292
--0.439152 -0.257558 0.860703
-0.891721 -0.00824795 0.45251
-0.11315 -0.194911 0.317076
-
--0.142476 0.960767 0.237967
--0.430315 -0.276635 0.859245
-0.891364 0.0200207 0.452846
-0.11262 -0.196667 0.316051
-
--0.175275 0.954154 0.24263
--0.420703 -0.295399 0.857758
-0.890106 0.0482684 0.453191
-0.112091 -0.198423 0.315003
-
--0.207805 0.946399 0.247279
--0.410327 -0.31382 0.856241
-0.887947 0.076466 0.453546
-0.111562 -0.20018 0.31393
-
--0.240026 0.937511 0.251915
--0.399199 -0.331867 0.854695
-0.884888 0.104585 0.453911
-0.111032 -0.201936 0.312833
-
--0.271898 0.927502 0.256539
--0.387334 -0.349512 0.85312
-0.880934 0.132595 0.454285
-0.110503 -0.203692 0.311712
-
--0.303381 0.916385 0.261148
--0.374745 -0.366726 0.851515
-0.876086 0.160469 0.454668
-0.109974 -0.205448 0.310567
-
--0.334435 0.904175 0.265744
--0.361448 -0.383479 0.849882
-0.870349 0.188178 0.455062
-0.109444 -0.207204 0.309398
-
--0.363313 0.892129 0.268534
--0.349486 -0.397684 0.848356
-0.863634 0.21437 0.45627
-0.108875 -0.208669 0.308356
-
--0.389632 0.880805 0.269017
--0.339587 -0.408922 0.847032
-0.856077 0.238676 0.458439
-0.10825 -0.20976 0.307478
-
--0.412929 0.870946 0.26635
--0.332834 -0.416525 0.846007
-0.847768 0.260691 0.461876
-0.107509 -0.21033 0.306859
-
--0.43389 0.86249 0.260481
--0.329166 -0.420879 0.845287
-0.838683 0.28102 0.466518
-0.10666 -0.210383 0.306506
-
--0.453206 0.85521 0.251437
--0.328392 -0.42241 0.844825
-0.828712 0.30031 0.472282
-0.105746 -0.209954 0.306402
-
--0.471824 0.848205 0.240689
--0.329098 -0.422679 0.844415
-0.817971 0.319205 0.478572
-0.104803 -0.209278 0.306418
-
--0.490229 0.840729 0.229892
--0.329884 -0.423112 0.843891
-0.806754 0.337862 0.484765
-0.10386 -0.208601 0.30641
-
--0.508408 0.83279 0.219047
--0.330744 -0.423715 0.843252
-0.795066 0.356268 0.49086
-0.102917 -0.207925 0.306378
-
--0.524713 0.82543 0.208184
--0.332071 -0.423648 0.842764
-0.78384 0.373078 0.496395
-0.101919 -0.207328 0.30632
-
--0.535206 0.82133 0.197414
--0.334814 -0.420821 0.843095
-0.775535 0.385132 0.500219
-0.100725 -0.20701 0.306229
-
--0.538508 0.82167 0.186726
--0.339444 -0.414366 0.84444
-0.771224 0.391355 0.502051
-0.0992853 -0.207047 0.306119
-
--0.533555 0.827205 0.17621
--0.346112 -0.403655 0.846917
-0.771703 0.390889 0.501678
-0.0975659 -0.207474 0.305973
-
--0.524589 0.835059 0.165778
--0.35346 -0.390773 0.849919
-0.774514 0.387262 0.500156
-0.095714 -0.208104 0.3058
-
--0.51383 0.84371 0.155345
--0.36091 -0.376865 0.853063
-0.778282 0.382264 0.498148
-0.0938099 -0.208816 0.3056
-
--0.502902 0.852113 0.144888
--0.368078 -0.362798 0.856094
-0.782054 0.377201 0.496096
-0.0919058 -0.209528 0.305375
-
--0.491811 0.860265 0.134408
--0.374963 -0.348576 0.85901
-0.785827 0.372073 0.494001
-0.0900017 -0.210239 0.305125
-
--0.480563 0.868163 0.123906
--0.381559 -0.334208 0.861811
-0.789602 0.366877 0.491863
-0.0880976 -0.210951 0.304852
-
--0.469164 0.875802 0.113384
--0.387863 -0.319698 0.864497
-0.793377 0.361613 0.489682
-0.0861935 -0.211663 0.304554
-
--0.457619 0.883181 0.102844
--0.393873 -0.305052 0.867068
-0.797151 0.35628 0.487458
-0.0842893 -0.212375 0.304233
-
--0.445935 0.890295 0.0922857
--0.399584 -0.290278 0.869524
-0.800921 0.350875 0.485192
-0.0823852 -0.213087 0.303887
-
--0.434117 0.897143 0.0817114
--0.404994 -0.27538 0.871863
-0.804688 0.345398 0.482885
-0.0804811 -0.213798 0.303517
-
--0.422171 0.903722 0.0711222
--0.4101 -0.260367 0.874087
-0.808449 0.339847 0.480535
-0.078577 -0.21451 0.303122
-
--0.410104 0.910028 0.0605195
--0.414898 -0.245243 0.876194
-0.812203 0.334221 0.478145
-0.0766729 -0.215222 0.302704
-
--0.397923 0.916061 0.0499045
--0.419387 -0.230016 0.878184
-0.815949 0.32852 0.475713
-0.0747688 -0.215934 0.302261
-
--0.385632 0.921816 0.0392787
--0.423564 -0.214693 0.880057
-0.819684 0.322741 0.473241
-0.0728646 -0.216645 0.301794
-
--0.373238 0.927293 0.0286434
--0.427426 -0.199279 0.881813
-0.823408 0.316884 0.470728
-0.0709605 -0.217357 0.301303
-
--0.360749 0.932489 0.0179999
--0.430971 -0.183782 0.883452
-0.827118 0.310947 0.468175
-0.0690564 -0.218069 0.300788
-
--0.34817 0.937403 0.00734948
--0.434198 -0.168208 0.884974
-0.830813 0.30493 0.465583
-0.0671523 -0.218781 0.300249
-
--0.335507 0.942032 -0.00330644
--0.437103 -0.152564 0.886378
-0.834492 0.298831 0.462951
-0.0652482 -0.219493 0.299685
-
--0.322767 0.946375 -0.0139665
--0.439686 -0.136857 0.887664
-0.838151 0.29265 0.460281
-0.0633441 -0.220204 0.299097
-
--0.309957 0.950431 -0.0246295
--0.441944 -0.121095 0.888832
-0.841791 0.286385 0.457572
-0.06144 -0.220916 0.298485
-
--0.297083 0.954199 -0.0352939
--0.443876 -0.105283 0.889882
-0.845408 0.280035 0.454824
-0.0595358 -0.221628 0.297849
-
--0.284152 0.957677 -0.0459586
--0.445482 -0.089429 0.890813
-0.849002 0.2736 0.452039
-0.0576317 -0.22234 0.297189
-
--0.27117 0.960865 -0.056622
--0.446759 -0.07354 0.891627
-0.852569 0.267079 0.449216
-0.0557276 -0.223051 0.296504
-
--0.258144 0.963761 -0.067283
--0.447706 -0.0576229 0.892322
-0.856108 0.260471 0.446357
-0.0538235 -0.223763 0.295796
-
--0.245081 0.966365 -0.0779402
--0.448323 -0.041685 0.892899
-0.859617 0.253775 0.44346
-0.0519194 -0.224475 0.295063
-
--0.231987 0.968676 -0.0885922
--0.448609 -0.0257332 0.893357
-0.863094 0.246991 0.440527
-0.0500153 -0.225187 0.294306
-
--0.218869 0.970695 -0.0992377
--0.448564 -0.00977484 0.893697
-0.866537 0.240117 0.437558
-0.0481111 -0.225899 0.293524
-
--0.205734 0.97242 -0.109875
--0.448187 0.00618308 0.893919
-0.869944 0.233154 0.434554
-0.046207 -0.22661 0.292719
-
--0.192587 0.973853 -0.120504
--0.447477 0.0221333 0.894022
-0.873312 0.2261 0.431514
-0.0443029 -0.227322 0.291889
-
--0.179437 0.974992 -0.131122
--0.446435 0.0380688 0.894006
-0.87664 0.218955 0.42844
-0.0423988 -0.228034 0.291035
-
--0.16629 0.975839 -0.141728
--0.445061 0.0539821 0.893872
-0.879925 0.211719 0.425331
-0.0404947 -0.228746 0.290157
-
--0.153152 0.976393 -0.152321
--0.443354 0.0698663 0.893619
-0.883166 0.204392 0.422188
-0.0385906 -0.229457 0.289255
-
--0.140029 0.976655 -0.1629
--0.441317 0.085714 0.893248
-0.886359 0.196972 0.419012
-0.0366865 -0.230169 0.288329
-
--0.12693 0.976627 -0.173463
--0.438948 0.101518 0.892759
-0.889502 0.189459 0.415802
-0.0347823 -0.230881 0.287378
-
--0.11386 0.976308 -0.184009
--0.436248 0.117271 0.892152
-0.892594 0.181854 0.41256
-0.0328782 -0.231593 0.286404
-
--0.100825 0.9757 -0.194537
--0.433219 0.132967 0.891426
-0.895631 0.174155 0.409285
-0.0309741 -0.232305 0.285405
-
--0.0863614 0.97523 -0.203639
--0.428616 0.148149 0.891258
-0.89935 0.164253 0.405205
-0.0289455 -0.232887 0.284545
-
--0.0705999 0.974918 -0.211071
--0.422176 0.16251 0.891828
-0.90376 0.152072 0.400114
-0.0267647 -0.233314 0.283855
-
--0.053518 0.974734 -0.216862
--0.41387 0.17599 0.893162
-0.908761 0.137553 0.393995
-0.0244319 -0.233586 0.283335
-
--0.0361891 0.974408 -0.221854
--0.404477 0.188721 0.894864
-0.913832 0.122119 0.387296
-0.0220221 -0.233777 0.282884
-
--0.0189198 0.973747 -0.226847
--0.39475 0.20118 0.896493
-0.918594 0.106509 0.38058
-0.0196122 -0.233968 0.282409
-
--0.00171713 0.972752 -0.231841
--0.384696 0.213357 0.898047
-0.923042 0.0907301 0.373847
-0.0172024 -0.23416 0.28191
-
-0.0154121 0.971428 -0.236834
--0.374321 0.225243 0.899527
-0.927171 0.0747884 0.367097
-0.0147925 -0.234351 0.281387
-
-0.0324611 0.969776 -0.241827
--0.363634 0.236832 0.900933
-0.930976 0.0586913 0.360332
-0.0123827 -0.234542 0.280839
-
-0.0494231 0.9678 -0.246819
--0.352642 0.248114 0.902265
-0.934452 0.0424461 0.35355
-0.00997283 -0.234734 0.280268
-
-0.0662917 0.965504 -0.25181
--0.341354 0.259083 0.903523
-0.937594 0.0260603 0.346753
-0.00756298 -0.234925 0.279672
-
-0.0830603 0.962889 -0.2568
--0.329777 0.26973 0.904706
-0.940398 0.00954144 0.339942
-0.00515314 -0.235116 0.279052
-
-0.0997225 0.95996 -0.261787
--0.31792 0.280047 0.905815
-0.942859 -0.00710283 0.333117
-0.00274329 -0.235307 0.278408
-
-0.116272 0.95672 -0.266772
--0.305791 0.290029 0.906849
-0.944972 -0.0238647 0.326278
-0.000333447 -0.235499 0.277739
-
-0.132703 0.953173 -0.271755
--0.293399 0.299668 0.907808
-0.946735 -0.0407361 0.319427
--0.0020764 -0.23569 0.277047
-
-0.149008 0.949323 -0.276734
--0.280753 0.308958 0.908693
-0.948142 -0.0577091 0.312563
--0.00448624 -0.235881 0.27633
-
-0.159357 0.946123 -0.28188
--0.27139 0.316512 0.908937
-0.949185 -0.0683464 0.307207
--0.00683254 -0.235791 0.275549
-
-0.162205 0.944007 -0.287299
--0.266578 0.322251 0.908345
-0.950066 -0.0707509 0.303922
--0.00909708 -0.235326 0.274676
-
-0.157643 0.943042 -0.292952
--0.266474 0.326281 0.906936
-0.950863 -0.0649079 0.302732
--0.0112835 -0.234487 0.273708
-
-0.145722 0.943101 -0.298873
--0.271178 0.328604 0.9047
-0.951435 -0.0507866 0.303633
--0.0133911 -0.233273 0.272649
-
-0.128299 0.943681 -0.304967
--0.279567 0.329452 0.901833
-0.951515 -0.0304459 0.306091
--0.0154415 -0.231778 0.271515
-
-0.110916 0.943898 -0.311052
--0.288067 0.330081 0.898924
-0.951165 -0.010101 0.308517
--0.0174919 -0.230282 0.270357
-
-0.0935792 0.943754 -0.317129
--0.296671 0.330489 0.895971
-0.950384 0.0102385 0.310911
--0.0195423 -0.228787 0.269175
-
-0.0762974 0.943251 -0.323196
--0.305372 0.33067 0.892975
-0.949171 0.0305635 0.313272
--0.0215927 -0.227291 0.267968
-
-0.0590785 0.942391 -0.329255
--0.314167 0.330623 0.889937
-0.947528 0.0508647 0.315601
--0.0236431 -0.225796 0.266738
-
-0.0419303 0.941177 -0.335303
--0.323047 0.330343 0.886856
-0.945453 0.0711327 0.317896
--0.0256935 -0.2243 0.265483
-
-0.0248607 0.93961 -0.341342
--0.332009 0.329827 0.883733
-0.942949 0.0913583 0.320159
--0.0277439 -0.222805 0.264204
-
-0.00787739 0.937695 -0.34737
--0.341045 0.329072 0.880568
-0.940014 0.111532 0.322388
--0.0297943 -0.221309 0.262901
-
--0.00901191 0.935434 -0.353388
--0.350149 0.328076 0.877361
-0.936651 0.131645 0.324584
--0.0318447 -0.219814 0.261573
-
--0.0239634 0.933268 -0.358381
--0.357832 0.326726 0.874761
-0.933479 0.149202 0.326123
--0.0340058 -0.218225 0.260352
-
--0.0325674 0.932186 -0.360511
--0.361216 0.325344 0.873884
-0.931913 0.158683 0.326125
--0.0364237 -0.216342 0.259454
-
--0.0342085 0.932431 -0.359726
--0.360104 0.324261 0.874746
-0.932285 0.159463 0.324679
--0.0390894 -0.214159 0.258881
-
--0.0341696 0.933134 -0.357901
--0.35755 0.322994 0.876261
-0.933269 0.157909 0.322606
--0.0418702 -0.211883 0.258411
-
--0.0341246 0.933835 -0.356072
--0.354996 0.32172 0.877767
-0.934245 0.156357 0.320529
--0.0446511 -0.209608 0.257917
-
--0.0340737 0.934534 -0.354239
--0.35244 0.320439 0.879264
-0.935214 0.154808 0.318448
--0.0474319 -0.207333 0.257399
-
--0.0340168 0.93523 -0.352404
--0.349883 0.31915 0.880752
-0.936176 0.153261 0.316365
--0.0502127 -0.205057 0.256857
-
--0.0339539 0.935923 -0.350565
--0.347325 0.317854 0.882232
-0.93713 0.151715 0.314277
--0.0529936 -0.202782 0.25629
-
--0.033885 0.936613 -0.348724
--0.344767 0.316551 0.883703
-0.938077 0.150173 0.312186
--0.0557744 -0.200506 0.2557
-
--0.0338101 0.9373 -0.346879
--0.342207 0.31524 0.885166
-0.939016 0.148632 0.310092
--0.0585552 -0.198231 0.255085
-
--0.0337293 0.937985 -0.345031
--0.339646 0.313923 0.886619
-0.939948 0.147093 0.307995
--0.0613361 -0.195955 0.254446
-
--0.0336424 0.938667 -0.34318
--0.337085 0.312597 0.888064
-0.940873 0.145557 0.305894
--0.0641169 -0.19368 0.253782
-
--0.0335496 0.939346 -0.341325
--0.334522 0.311265 0.889499
-0.94179 0.144023 0.30379
--0.0668977 -0.191405 0.253095
-
--0.0334507 0.940023 -0.339468
--0.331959 0.309925 0.890926
-0.9427 0.142492 0.301682
--0.0696785 -0.189129 0.252383
-
--0.0333459 0.940696 -0.337608
--0.329396 0.308578 0.892344
-0.943603 0.140962 0.299571
--0.0724594 -0.186854 0.251647
-
--0.0332351 0.941367 -0.335744
--0.326831 0.307224 0.893753
-0.944498 0.139436 0.297457
--0.0752402 -0.184578 0.250887
-
--0.0331183 0.942034 -0.333878
--0.324266 0.305862 0.895154
-0.945386 0.137911 0.29534
--0.078021 -0.182303 0.250103
-
--0.0329956 0.942699 -0.332008
--0.3217 0.304494 0.896545
-0.946267 0.136389 0.293219
--0.0808019 -0.180027 0.249295
-
--0.0328668 0.943361 -0.330136
--0.319133 0.303118 0.897927
-0.94714 0.134869 0.291095
--0.0835827 -0.177752 0.248462
-
--0.0327321 0.94402 -0.328261
--0.316566 0.301734 0.899301
-0.948005 0.133352 0.288968
--0.0863635 -0.175477 0.247605
-
--0.0325914 0.944676 -0.326383
--0.313999 0.300344 0.900665
-0.948864 0.131838 0.286838
--0.0891443 -0.173201 0.246725
-
--0.0324447 0.945329 -0.324501
--0.311431 0.298947 0.902021
-0.949715 0.130325 0.284705
--0.0919252 -0.170926 0.245819
-
--0.0334242 0.945755 -0.323157
--0.308704 0.297758 0.903351
-0.950571 0.129954 0.282006
--0.094602 -0.168752 0.24489
-
--0.0358703 0.94549 -0.323671
--0.304493 0.298139 0.904653
-0.951839 0.131006 0.2772
--0.0969965 -0.166959 0.24394
-
--0.0402045 0.944436 -0.326228
--0.298704 0.300201 0.9059
-0.953499 0.133867 0.270037
--0.0990861 -0.165584 0.242957
-
--0.0471117 0.942436 -0.331051
--0.291327 0.304047 0.907019
-0.955463 0.139175 0.260233
--0.100848 -0.164662 0.241924
-
--0.0567694 0.939402 -0.338084
--0.28247 0.309682 0.907914
-0.957595 0.14704 0.247773
--0.102271 -0.164191 0.24085
-
--0.0680597 0.935853 -0.345755
--0.273463 0.315787 0.908569
-0.959472 0.156388 0.234429
--0.103557 -0.163857 0.239754
-
--0.0793989 0.932123 -0.35333
--0.264548 0.322036 0.909014
-0.961098 0.165648 0.221022
--0.104844 -0.163524 0.238634
-
--0.0907833 0.928211 -0.36081
--0.255731 0.328428 0.909251
-0.962476 0.174815 0.207556
--0.106131 -0.16319 0.237489
-
--0.102209 0.924115 -0.368191
--0.247015 0.334959 0.909278
-0.963606 0.183885 0.194034
--0.107418 -0.162857 0.236321
-
--0.113673 0.919836 -0.375472
--0.238404 0.341626 0.909096
-0.964491 0.192854 0.180459
--0.108705 -0.162523 0.235128
-
--0.125171 0.915374 -0.382652
--0.229902 0.348426 0.908705
-0.965131 0.201716 0.166834
--0.109992 -0.16219 0.233911
-
--0.1367 0.910728 -0.389728
--0.221514 0.355357 0.908104
-0.965528 0.210468 0.153162
--0.111279 -0.161856 0.23267
-
--0.148255 0.905897 -0.3967
--0.213243 0.362413 0.907295
-0.965685 0.219105 0.139447
--0.112565 -0.161523 0.231405
-
--0.159833 0.900882 -0.403564
--0.205094 0.369593 0.906277
-0.965603 0.227621 0.125692
--0.113852 -0.161189 0.230115
-
--0.17143 0.895683 -0.410321
--0.197069 0.376893 0.90505
-0.965285 0.236014 0.1119
--0.115139 -0.160856 0.228802
-
--0.183043 0.8903 -0.416967
--0.189173 0.38431 0.903615
-0.964733 0.244279 0.0980753
--0.116426 -0.160522 0.227464
-
--0.194667 0.884732 -0.423502
--0.181409 0.391839 0.901972
-0.963948 0.252411 0.08422
--0.117713 -0.160189 0.226102
-
--0.206299 0.87898 -0.429924
--0.17378 0.399477 0.900121
-0.962934 0.260406 0.0703379
--0.119 -0.159855 0.224716
-
--0.217934 0.873045 -0.436231
--0.166291 0.407221 0.898063
-0.961692 0.26826 0.0564322
--0.120287 -0.159522 0.223305
-
--0.22957 0.866926 -0.442422
--0.158945 0.415067 0.895799
-0.960226 0.27597 0.0425063
--0.121573 -0.159189 0.221871
-
--0.241203 0.860624 -0.448495
--0.151744 0.42301 0.893329
-0.958538 0.28353 0.0285635
--0.12286 -0.158855 0.220412
-
--0.252827 0.854139 -0.45445
--0.144693 0.431047 0.890653
-0.956631 0.290937 0.0146072
--0.124147 -0.158522 0.218929
-
--0.258613 0.850094 -0.458758
--0.134775 0.438516 0.88856
-0.956533 0.291623 0.0011655
--0.125288 -0.157849 0.217641
-
--0.254749 0.850401 -0.46035
--0.119799 0.444635 0.887665
-0.959558 0.281281 -0.0113936
--0.126227 -0.156619 0.216689
-
--0.24512 0.85328 -0.46025
--0.101767 0.449464 0.887483
-0.964137 0.264378 -0.0233368
--0.12695 -0.155003 0.215975
-
--0.230347 0.858258 -0.458622
--0.0810607 0.452734 0.887953
-0.969726 0.241714 -0.0347151
--0.127469 -0.153034 0.215473
-
--0.211769 0.864449 -0.455942
--0.0583959 0.454497 0.888832
-0.975574 0.214852 -0.0457679
--0.12793 -0.150862 0.215069
-
--0.192995 0.870245 -0.45324
--0.0356913 0.455392 0.889575
-0.98055 0.187861 -0.0568283
--0.128391 -0.148691 0.21464
-
--0.174035 0.875641 -0.450516
--0.0129782 0.455418 0.890183
-0.984654 0.16077 -0.0678946
--0.128852 -0.146519 0.214188
-
--0.154897 0.880629 -0.447771
-0.0097122 0.454577 0.890655
-0.987883 0.13361 -0.0789652
--0.129312 -0.144348 0.213711
-
--0.135588 0.885204 -0.445005
-0.0323486 0.452869 0.89099
-0.990237 0.106412 -0.0900385
--0.129773 -0.142176 0.21321
-
--0.116117 0.889359 -0.442219
-0.0549 0.450297 0.891189
-0.991717 0.0792043 -0.101113
--0.130234 -0.140005 0.212685
-
--0.101835 0.892087 -0.440239
-0.0726686 0.448028 0.891061
-0.992144 0.05875 -0.110452
--0.130669 -0.137553 0.21208
-
--0.0959101 0.893112 -0.439492
-0.0829893 0.447165 0.890593
-0.991924 0.0489438 -0.117006
--0.131042 -0.134653 0.211304
-
--0.0992741 0.892403 -0.440183
-0.0851638 0.448365 0.889784
-0.991409 0.0508449 -0.120512
--0.131364 -0.131252 0.210387
-
--0.108812 0.890528 -0.441724
-0.0819769 0.450887 0.888808
-0.990676 0.0605018 -0.122065
--0.131651 -0.127529 0.209361
-
--0.118326 0.888549 -0.44326
-0.0787488 0.453387 0.887828
-0.989847 0.0701468 -0.12362
--0.131939 -0.123806 0.20831
-
--0.127815 0.886467 -0.444792
-0.0754796 0.455864 0.886843
-0.988922 0.0797791 -0.125176
--0.132226 -0.120083 0.207236
-
--0.137278 0.884282 -0.446319
-0.0721695 0.458317 0.885854
-0.9879 0.0893976 -0.126735
--0.132514 -0.11636 0.206137
-
--0.146714 0.881994 -0.447842
-0.0688186 0.460745 0.88486
-0.986782 0.0990013 -0.128295
--0.132801 -0.112637 0.205014
-
--0.156121 0.879603 -0.44936
-0.0654272 0.463148 0.883863
-0.985569 0.108589 -0.129857
--0.133089 -0.108914 0.203867
-
--0.165499 0.877111 -0.450873
-0.0619955 0.465526 0.88286
-0.984259 0.118161 -0.131421
--0.133376 -0.105191 0.202696
-
--0.174847 0.874517 -0.452381
-0.0585235 0.467877 0.881854
-0.982855 0.127714 -0.132987
--0.133664 -0.101468 0.2015
-
--0.187641 0.871649 -0.45279
-0.0533981 0.469349 0.881397
-0.980785 0.141208 -0.134614
--0.134053 -0.0979454 0.200374
-
--0.204946 0.86828 -0.45176
-0.046074 0.469604 0.881674
-0.977688 0.159881 -0.136248
--0.134651 -0.0947225 0.199335
-
--0.227074 0.86418 -0.449033
-0.0366062 0.468325 0.882798
-0.973189 0.184023 -0.137979
--0.135425 -0.0918104 0.19841
-
--0.253677 0.859023 -0.444665
-0.0252847 0.465434 0.884721
-0.966958 0.21319 -0.13979
--0.136338 -0.0891812 0.197589
-
--0.284016 0.852512 -0.438815
-0.0126027 0.460941 0.887341
-0.958737 0.246488 -0.141658
--0.137364 -0.0867967 0.196854
-
--0.314176 0.844899 -0.432941
-0.00023174 0.456101 0.889928
-0.949365 0.279494 -0.143492
--0.138391 -0.0844121 0.196095
-
--0.344119 0.83619 -0.427045
--0.0118187 0.450929 0.892481
-0.938852 0.312167 -0.145291
--0.139417 -0.0820275 0.195311
-
--0.373803 0.826392 -0.421127
--0.0235396 0.445442 0.895001
-0.927209 0.344467 -0.147055
--0.140444 -0.0796429 0.194504
-
--0.403188 0.815512 -0.415186
--0.034923 0.439655 0.897488
-0.914451 0.376355 -0.148783
--0.141471 -0.0772583 0.193672
-
--0.432233 0.803561 -0.409224
--0.0459613 0.433584 0.89994
-0.90059 0.407793 -0.150477
--0.142497 -0.0748737 0.192816
-
--0.4609 0.790549 -0.403241
--0.0566478 0.427247 0.902359
-0.885642 0.43874 -0.152135
--0.143524 -0.0724891 0.191936
-
--0.489149 0.776489 -0.397238
--0.0669765 0.420658 0.904743
-0.869625 0.46916 -0.153758
--0.14455 -0.0701046 0.191032
-
--0.516941 0.761396 -0.391214
--0.076942 0.413836 0.907094
-0.852556 0.499015 -0.155345
--0.145577 -0.06772 0.190103
-
--0.544237 0.745285 -0.38517
--0.0865398 0.406797 0.90941
-0.834456 0.528267 -0.156897
--0.146603 -0.0653354 0.189151
-
--0.571 0.728173 -0.379107
--0.0957659 0.399557 0.911692
-0.815345 0.556882 -0.158413
--0.14763 -0.0629508 0.188174
-
--0.597193 0.710079 -0.373026
--0.104617 0.392134 0.91394
-0.795246 0.584824 -0.159893
--0.148656 -0.0605662 0.187173
-
--0.622779 0.691022 -0.366925
--0.113092 0.384544 0.916153
-0.774181 0.612057 -0.161337
--0.149683 -0.0581816 0.186148
-
--0.647722 0.671024 -0.360807
--0.121187 0.376805 0.918331
-0.752176 0.638549 -0.162746
--0.150709 -0.055797 0.185098
-
--0.671988 0.650108 -0.354672
--0.128902 0.368932 0.920475
-0.729257 0.664266 -0.164118
--0.151736 -0.0534125 0.184025
-
--0.695542 0.628297 -0.348519
--0.136237 0.360943 0.922583
-0.705451 0.689176 -0.165453
--0.152762 -0.0510279 0.182927
-
--0.71835 0.605616 -0.342349
--0.143192 0.352854 0.924657
-0.680786 0.713249 -0.166753
--0.153789 -0.0486433 0.181805
-
--0.74038 0.582092 -0.336164
--0.149768 0.344681 0.926695
-0.655291 0.736454 -0.168016
--0.154815 -0.0462587 0.180659
-
--0.761601 0.557753 -0.329962
--0.155967 0.336441 0.928699
-0.628997 0.758762 -0.169243
--0.155842 -0.0438741 0.179488
-
--0.781983 0.532627 -0.323746
--0.161792 0.32815 0.930667
-0.601935 0.780145 -0.170433
--0.156869 -0.0414895 0.178294
-
--0.801495 0.506745 -0.317514
--0.167244 0.319823 0.9326
-0.574138 0.800577 -0.171586
--0.157895 -0.0391049 0.177075
-
--0.82011 0.480137 -0.311268
--0.172329 0.311476 0.934498
-0.545639 0.820031 -0.172703
--0.158922 -0.0367203 0.175832
-
--0.8378 0.452836 -0.305008
--0.17705 0.303124 0.93636
-0.516473 0.838484 -0.173783
--0.159948 -0.0343358 0.174565
-
--0.85454 0.424875 -0.298735
--0.181412 0.294782 0.938186
-0.486674 0.855912 -0.174826
--0.160975 -0.0319512 0.173274
-
--0.868839 0.400481 -0.29109
--0.18273 0.287047 0.940326
-0.46014 0.870183 -0.176218
--0.162163 -0.0298064 0.171981
-
--0.880145 0.382263 -0.281461
--0.179658 0.280581 0.942867
-0.439395 0.880426 -0.178275
--0.163593 -0.0280218 0.170704
-
--0.888825 0.370364 -0.269852
--0.172361 0.275437 0.945741
-0.424596 0.887111 -0.180979
--0.165273 -0.0265905 0.16944
-
--0.895441 0.363692 -0.256737
--0.161759 0.27148 0.948753
-0.414753 0.891082 -0.184264
--0.167153 -0.0254303 0.168187
-
--0.899794 0.361677 -0.244051
--0.149572 0.269762 0.95124
-0.409877 0.892423 -0.188633
--0.16871 -0.024463 0.167117
-
--0.903033 0.359988 -0.234392
--0.139479 0.270364 0.952601
-0.406297 0.892923 -0.193937
--0.169497 -0.0234946 0.166311
-
--0.90486 0.359365 -0.228222
--0.131667 0.273563 0.9528
-0.404836 0.8922 -0.200219
--0.16949 -0.0225905 0.165778
-
--0.905356 0.359416 -0.226164
--0.126664 0.279782 0.951671
-0.405322 0.890249 -0.207777
--0.16865 -0.0218277 0.165561
-
--0.904486 0.360465 -0.22797
--0.124184 0.288771 0.94931
-0.408024 0.886948 -0.216426
--0.167004 -0.0211824 0.165636
-
--0.902441 0.362393 -0.232964
--0.123673 0.300074 0.945865
-0.412681 0.882398 -0.225981
--0.164634 -0.0205949 0.165969
-
--0.899123 0.365348 -0.241036
--0.124935 0.313559 0.941314
-0.419486 0.876471 -0.236284
--0.161648 -0.0201124 0.166516
-
--0.895776 0.36817 -0.249072
--0.126014 0.32701 0.936581
-0.42627 0.870353 -0.246533
--0.158662 -0.0196298 0.167039
-
--0.890564 0.376284 -0.255552
--0.123352 0.340983 0.931941
-0.437814 0.861476 -0.257252
--0.155812 -0.0194025 0.16755
-
--0.8831 0.39052 -0.260054
--0.115988 0.355355 0.927507
-0.454622 0.849245 -0.268519
--0.153083 -0.0194862 0.168045
-
--0.873345 0.410136 -0.262787
--0.104097 0.369878 0.92323
-0.475849 0.833654 -0.280337
--0.150441 -0.0198477 0.16852
-
--0.863166 0.42947 -0.26552
--0.091585 0.383972 0.918791
-0.496545 0.817387 -0.292099
--0.147799 -0.0202092 0.168971
-
--0.852572 0.448511 -0.268252
--0.0784673 0.397614 0.914191
-0.516686 0.800463 -0.303801
--0.145156 -0.0205706 0.169398
-
--0.841572 0.467252 -0.270982
--0.0647609 0.410781 0.909431
-0.536248 0.782901 -0.315442
--0.142514 -0.0209321 0.1698
-
--0.830176 0.485685 -0.273711
--0.0504834 0.423451 0.904511
-0.555211 0.764721 -0.32702
--0.139872 -0.0212936 0.170178
-
--0.818393 0.503802 -0.276437
--0.0356533 0.435603 0.899432
-0.573552 0.745945 -0.338532
--0.13723 -0.021655 0.170532
-
--0.806232 0.521594 -0.27916
--0.0202897 0.447216 0.894196
-0.591252 0.726593 -0.349977
--0.134588 -0.0220165 0.170862
-
--0.793702 0.539055 -0.28188
--0.00441256 0.458271 0.888802
-0.60829 0.706688 -0.361352
--0.131946 -0.022378 0.171168
-
--0.780815 0.556177 -0.284596
-0.0119573 0.468747 0.883252
-0.624648 0.686253 -0.372655
--0.129303 -0.0227394 0.17145
-
--0.767579 0.572954 -0.287308
-0.0287987 0.478626 0.877546
-0.640307 0.665312 -0.383884
--0.126661 -0.0231009 0.171707
-
--0.754005 0.58938 -0.290015
-0.0460895 0.487892 0.871687
-0.65525 0.643889 -0.395037
--0.124019 -0.0234623 0.17194
-
--0.740102 0.605447 -0.292716
-0.063807 0.496526 0.865673
-0.669461 0.622009 -0.406112
--0.121377 -0.0238238 0.172149
-
--0.725881 0.621151 -0.295412
-0.081928 0.504513 0.859508
-0.682923 0.599698 -0.417106
--0.118735 -0.0241853 0.172334
-
--0.711352 0.636485 -0.298101
-0.100429 0.511839 0.853191
-0.695624 0.576982 -0.428019
--0.116092 -0.0245467 0.172495
-
--0.698348 0.650404 -0.298806
-0.119149 0.517279 0.847482
-0.705771 0.556235 -0.438736
--0.113613 -0.0251775 0.172748
-
--0.688496 0.661893 -0.296429
-0.137345 0.520334 0.842846
-0.712116 0.539583 -0.449156
--0.111379 -0.0262308 0.17317
-
--0.681902 0.671078 -0.29097
-0.154802 0.521199 0.839278
-0.714875 0.527263 -0.459291
--0.109392 -0.0277033 0.173764
-
--0.678586 0.677798 -0.283038
-0.170926 0.520473 0.836595
-0.714356 0.519324 -0.469039
--0.107618 -0.0295153 0.174497
-
--0.678597 0.682052 -0.272601
-0.185659 0.518357 0.834767
-0.710659 0.51586 -0.478385
--0.106061 -0.0316626 0.175373
-
--0.681186 0.684288 -0.26026
-0.199203 0.515321 0.833524
-0.704488 0.515941 -0.487342
--0.104692 -0.0340669 0.176346
-
--0.683584 0.686497 -0.24786
-0.212716 0.512238 0.832084
-0.698187 0.516076 -0.496187
--0.103322 -0.0364712 0.177294
-
--0.68579 0.688678 -0.235404
-0.226194 0.50911 0.830447
-0.691757 0.516265 -0.504918
--0.101952 -0.0388755 0.178219
-
--0.687804 0.690828 -0.222895
-0.239635 0.505938 0.828615
-0.685201 0.516511 -0.513533
--0.100583 -0.0412798 0.179119
-
--0.689624 0.692948 -0.210335
-0.253036 0.502721 0.826586
-0.678521 0.516812 -0.52203
--0.0992132 -0.0436841 0.179995
-
--0.691252 0.695036 -0.197728
-0.266393 0.499462 0.824362
-0.671718 0.517168 -0.530407
--0.0978435 -0.0460884 0.180847
-
--0.692686 0.697089 -0.185077
-0.279703 0.496161 0.821943
-0.664795 0.517582 -0.538661
--0.0964739 -0.0484927 0.181674
-
--0.693925 0.699108 -0.172384
-0.292963 0.492819 0.81933
-0.657754 0.518052 -0.546793
--0.0951042 -0.050897 0.182478
-
--0.695887 0.700136 -0.159846
-0.30495 0.489599 0.816883
-0.65019 0.519713 -0.554212
--0.0937306 -0.0532104 0.183223
-
--0.701231 0.69739 -0.148062
-0.311691 0.486671 0.816089
-0.64119 0.526117 -0.558638
--0.0923667 -0.055058 0.183855
-
--0.710785 0.689894 -0.137226
-0.312024 0.48408 0.817501
-0.630418 0.53825 -0.55934
--0.0910027 -0.0563243 0.184308
-
--0.724869 0.676988 -0.127484
-0.305515 0.481784 0.821307
-0.617434 0.556392 -0.55606
--0.0896362 -0.0569611 0.184573
-
--0.742111 0.659689 -0.118663
-0.293658 0.479135 0.827161
-0.602524 0.578999 -0.549295
--0.0882797 -0.0570485 0.184687
-
--0.761053 0.639202 -0.11054
-0.278264 0.475619 0.834479
-0.585976 0.604324 -0.539838
--0.0869418 -0.0567198 0.184697
-
--0.779882 0.617453 -0.102644
-0.26217 0.471141 0.842196
-0.568376 0.629903 -0.529312
--0.085611 -0.056253 0.184636
-
--0.798093 0.595033 -0.0947803
-0.24654 0.466024 0.849729
-0.549787 0.654796 -0.51863
--0.0842802 -0.0557862 0.184551
-
--0.815661 0.571958 -0.086951
-0.2314 0.460293 0.857079
-0.530236 0.678966 -0.507794
--0.0829493 -0.0553194 0.184441
-
--0.830354 0.551503 -0.0797292
-0.217762 0.452857 0.864581
-0.512925 0.700546 -0.496128
--0.0815555 -0.054932 0.184415
-
--0.840487 0.536799 -0.0736772
-0.20634 0.442833 0.872538
-0.501004 0.718154 -0.482959
--0.080023 -0.0547232 0.184549
-
--0.846491 0.527939 -0.0688002
-0.196848 0.430422 0.880902
-0.494676 0.732132 -0.468272
--0.0783572 -0.0546994 0.184841
-
--0.849864 0.523013 -0.0647224
-0.188514 0.416389 0.889428
-0.492132 0.743692 -0.452469
--0.0766204 -0.0547961 0.185247
-
--0.853232 0.517994 -0.0606398
-0.180327 0.402118 0.897654
-0.489363 0.754973 -0.436509
--0.0748837 -0.0548928 0.185629
-
--0.856595 0.51288 -0.0565538
-0.172294 0.387616 0.905576
-0.486373 0.765969 -0.420396
--0.0731469 -0.0549895 0.185987
-
--0.859951 0.507673 -0.0524658
-0.16442 0.372887 0.913193
-0.483167 0.776674 -0.404137
--0.0714101 -0.0550862 0.186321
-
--0.863298 0.502371 -0.0483771
-0.156711 0.35794 0.9205
-0.479749 0.787084 -0.387736
--0.0696734 -0.0551829 0.18663
-
--0.866634 0.496975 -0.0442892
-0.14917 0.342781 0.927496
-0.476124 0.797193 -0.371199
--0.0679366 -0.0552796 0.186916
-
--0.869958 0.491485 -0.0402034
-0.141803 0.327416 0.934179
-0.472298 0.806995 -0.354533
--0.0661998 -0.0553763 0.187177
-
--0.873268 0.485899 -0.0361211
-0.134616 0.311853 0.940546
-0.468275 0.816486 -0.337741
--0.0644631 -0.055473 0.187414
-
--0.876563 0.480219 -0.0320438
-0.127612 0.296099 0.946594
-0.464061 0.82566 -0.320831
--0.0627263 -0.0555697 0.187627
-
--0.879841 0.474444 -0.0279728
-0.120796 0.280161 0.952323
-0.459661 0.834513 -0.303808
--0.0609895 -0.0556664 0.187815
-
--0.8831 0.468575 -0.0239095
-0.114173 0.264046 0.957729
-0.45508 0.843041 -0.286678
--0.0592528 -0.0557631 0.18798
-
--0.886339 0.46261 -0.0198553
-0.107747 0.247762 0.962811
-0.450325 0.851238 -0.269446
--0.057516 -0.0558598 0.18812
-
--0.889557 0.456551 -0.0158116
-0.101521 0.231316 0.967567
-0.445401 0.859101 -0.252118
--0.0557792 -0.0559565 0.188236
-
--0.89275 0.450398 -0.0117797
-0.0955003 0.214716 0.971996
-0.440314 0.866625 -0.234701
--0.0540425 -0.0560532 0.188328
-
--0.895919 0.44415 -0.00776104
-0.0896878 0.19797 0.976096
-0.43507 0.873807 -0.2172
--0.0523057 -0.0561499 0.188396
-
--0.89906 0.437808 -0.003757
-0.0840873 0.181086 0.979866
-0.429674 0.880643 -0.199621
--0.0505689 -0.0562466 0.188439
-
--0.902174 0.431373 0.000231085
-0.0787023 0.164071 0.983304
-0.424133 0.887129 -0.181971
--0.0488322 -0.0563433 0.188458
-
--0.905257 0.424845 0.00420184
-0.0735358 0.146934 0.986409
-0.418453 0.893262 -0.164254
--0.0470954 -0.0564401 0.188454
-
--0.908308 0.418223 0.00815392
-0.0685911 0.129682 0.98918
-0.412641 0.899039 -0.146478
--0.0453586 -0.0565368 0.188425
-
--0.911325 0.411509 0.012086
-0.0638709 0.112324 0.991617
-0.406702 0.904457 -0.128648
--0.0436219 -0.0566335 0.188371
-
--0.914308 0.404703 0.0159967
-0.059378 0.0948687 0.993717
-0.400643 0.909514 -0.11077
--0.0418851 -0.0567302 0.188294
-
--0.917254 0.397806 0.0198846
-0.055115 0.0773232 0.995482
-0.394471 0.914205 -0.0928501
--0.0401483 -0.0568269 0.188192
-
--0.920162 0.390818 0.0237486
-0.0510841 0.0596965 0.996909
-0.388192 0.91853 -0.074895
--0.0384116 -0.0569236 0.188066
-
--0.923029 0.38374 0.0275872
-0.0472876 0.0419969 0.997998
-0.381813 0.922486 -0.0569105
--0.0366748 -0.0570203 0.187916
-
--0.925855 0.376572 0.0313991
-0.0437275 0.0242329 0.99875
-0.37534 0.92607 -0.0389027
--0.034938 -0.057117 0.187742
-
--0.928638 0.369315 0.0351831
-0.0404055 0.00641299 0.999163
-0.36878 0.929282 -0.0208777
--0.0332013 -0.0572137 0.187544
-
--0.928479 0.369179 0.040417
-0.0393824 -0.0103414 0.999171
-0.369291 0.929301 -0.00493734
--0.0316171 -0.057663 0.187276
-
--0.924199 0.378901 0.0478505
-0.0411831 -0.0256866 0.998821
-0.379683 0.925081 0.00813521
--0.0302225 -0.0585942 0.186884
-
--0.915484 0.398226 0.0574968
-0.0454191 -0.0397053 0.998179
-0.399783 0.916428 0.0182625
--0.029007 -0.0600023 0.186352
-
--0.902951 0.424237 0.068574
-0.0509077 -0.0528525 0.997304
-0.426718 0.904007 0.0261262
--0.0279528 -0.061758 0.185741
-
--0.889597 0.449745 0.0796659
-0.0556925 -0.0663105 0.996244
-0.453338 0.890692 0.0339422
--0.0268986 -0.0635137 0.185105
-
--0.875443 0.474721 0.0907704
-0.0597592 -0.0800483 0.994998
-0.479613 0.876489 0.0417088
--0.0258443 -0.0652693 0.184446
-
--0.860512 0.499138 0.101885
-0.0630948 -0.0940341 0.993568
-0.505508 0.861405 0.0494244
--0.0247901 -0.067025 0.183762
-
--0.844826 0.52297 0.113008
-0.0656878 -0.108236 0.991953
-0.530993 0.845451 0.0570875
--0.0237359 -0.0687807 0.183054
-
--0.828411 0.546192 0.124137
-0.0675279 -0.12262 0.990154
-0.556035 0.828637 0.0646966
--0.0226817 -0.0705363 0.182322
-
--0.811291 0.568779 0.13527
-0.0686062 -0.137154 0.988171
-0.580604 0.810974 0.07225
--0.0216274 -0.072292 0.181565
-
--0.793492 0.590709 0.146404
-0.0689153 -0.151804 0.986005
-0.604666 0.792476 0.0797463
--0.0205732 -0.0740477 0.180785
-
--0.775041 0.611959 0.157538
-0.0684491 -0.166536 0.983657
-0.628193 0.773157 0.0871839
--0.019519 -0.0758033 0.17998
-
--0.755965 0.632508 0.16867
-0.067203 -0.181315 0.981126
-0.651153 0.753033 0.0945613
--0.0184648 -0.077559 0.179151
-
--0.736294 0.652338 0.179796
-0.0651739 -0.196107 0.978414
-0.673516 0.732118 0.101877
--0.0174105 -0.0793147 0.178298
-
--0.716055 0.671428 0.190916
-0.0623602 -0.210877 0.975521
-0.695253 0.710433 0.10913
--0.0163563 -0.0810703 0.177421
-
--0.706871 0.678795 0.198921
-0.0624046 -0.220281 0.973438
-0.704584 0.700509 0.11335
--0.0149716 -0.0835053 0.176444
-
--0.709076 0.675109 0.203566
-0.0657442 -0.224138 0.972337
-0.702061 0.702844 0.114546
--0.0132197 -0.0866432 0.175382
-
--0.720306 0.662419 0.205819
-0.0721623 -0.223546 0.972018
-0.689893 0.715003 0.11322
--0.0112604 -0.0903053 0.174195
-
--0.731304 0.649539 0.208073
-0.0785769 -0.222803 0.971692
-0.67751 0.726951 0.111898
--0.00930107 -0.0939675 0.172983
-
--0.742067 0.636474 0.210328
-0.0849848 -0.221908 0.971357
-0.664917 0.738686 0.11058
--0.00734178 -0.0976296 0.171748
-
--0.752591 0.623229 0.212584
-0.0913828 -0.220863 0.971014
-0.652116 0.750203 0.109267
--0.00538249 -0.101292 0.170488
-
--0.762875 0.609808 0.214841
-0.0977675 -0.219666 0.970664
-0.639112 0.761499 0.107958
--0.0034232 -0.104954 0.169204
-
--0.772913 0.596215 0.2171
-0.104136 -0.218319 0.970305
-0.625908 0.77257 0.106655
--0.00146391 -0.108616 0.167896
-
--0.782705 0.582455 0.219359
-0.110484 -0.216822 0.969939
-0.612508 0.783412 0.105355
-0.000495381 -0.112278 0.166563
-
--0.792246 0.568533 0.22162
-0.116809 -0.215174 0.969565
-0.598917 0.794022 0.104061
-0.00245467 -0.11594 0.165207
-
--0.801535 0.554453 0.223882
-0.123109 -0.213376 0.969183
-0.585137 0.804396 0.10277
-0.00441396 -0.119602 0.163826
-
--0.810568 0.54022 0.226145
-0.129378 -0.211429 0.968793
-0.571174 0.814531 0.101485
-0.00637325 -0.123264 0.162421
-
--0.819344 0.525838 0.228409
-0.135615 -0.209333 0.968395
-0.557032 0.824424 0.100204
-0.00833254 -0.126927 0.160992
-
--0.827859 0.511312 0.230674
-0.141816 -0.207088 0.967989
-0.542714 0.834071 0.098928
-0.0102918 -0.130589 0.159539
-
--0.836111 0.496647 0.23294
-0.147977 -0.204696 0.967575
-0.528225 0.84347 0.0976565
-0.0122511 -0.134251 0.158061
-
--0.844097 0.481848 0.235207
-0.154096 -0.202157 0.967154
-0.51357 0.852617 0.0963897
-0.0142104 -0.137913 0.156559
-
--0.851817 0.466919 0.237475
-0.160169 -0.199472 0.966725
-0.498752 0.861509 0.0951277
-0.0161697 -0.141575 0.155034
-
--0.859267 0.451867 0.239743
-0.166194 -0.196642 0.966287
-0.483777 0.870143 0.0938704
-0.018129 -0.145237 0.153484
-
--0.866446 0.436694 0.242013
-0.172167 -0.193667 0.965843
-0.468648 0.878516 0.0926178
-0.0200883 -0.148899 0.151909
-
--0.873351 0.421407 0.244283
-0.178084 -0.190549 0.96539
-0.45337 0.886627 0.09137
-0.0220476 -0.152562 0.150311
-
--0.879981 0.406011 0.246554
-0.183943 -0.187288 0.964929
-0.437948 0.894471 0.090127
-0.0240069 -0.156224 0.148688
-
--0.886334 0.39051 0.248826
-0.189741 -0.183886 0.964461
-0.422387 0.902047 0.0888887
-0.0259662 -0.159886 0.147041
-
--0.892408 0.374909 0.251099
-0.195474 -0.180344 0.963984
-0.406691 0.909351 0.0876553
-0.0279254 -0.163548 0.14537
-
--0.898202 0.359215 0.253372
-0.20114 -0.176663 0.9635
-0.390865 0.916381 0.0864267
-0.0298847 -0.16721 0.143675
-
--0.903715 0.34343 0.255646
-0.206735 -0.172844 0.963008
-0.374914 0.923136 0.085203
-0.031844 -0.170872 0.141956
-
--0.91083 0.323509 0.25638
-0.211711 -0.167069 0.962947
-0.354355 0.931359 0.0836816
-0.0338208 -0.174315 0.140313
-
--0.919276 0.299351 0.255579
-0.215946 -0.159316 0.96332
-0.329089 0.940748 0.0818114
-0.0358136 -0.177539 0.138746
-
--0.928144 0.272222 0.253858
-0.219568 -0.150305 0.963949
-0.300565 0.950423 0.0797334
-0.0378165 -0.180633 0.13722
-
--0.936206 0.244829 0.252144
-0.222854 -0.141216 0.964569
-0.271761 0.959227 0.0776466
-0.0398194 -0.183727 0.13567
-
--0.943455 0.217195 0.250438
-0.225802 -0.132062 0.96518
-0.242705 0.967154 0.075551
-0.0418222 -0.186821 0.134095
-
--0.949883 0.189344 0.248738
-0.228413 -0.122852 0.965782
-0.213423 0.974195 0.0734469
-0.0438251 -0.189916 0.132496
-
--0.955484 0.161301 0.247046
-0.230684 -0.113601 0.966375
-0.183942 0.980345 0.0713341
-0.045828 -0.19301 0.130874
-
--0.960252 0.133091 0.245361
-0.232616 -0.104318 0.966958
-0.154289 0.985599 0.0692127
-0.0478308 -0.196104 0.129226
-
--0.964183 0.104738 0.243684
-0.234209 -0.0950166 0.967532
-0.124491 0.98995 0.0670828
-0.0498337 -0.199198 0.127555
-
--0.967271 0.0762679 0.242014
-0.235462 -0.0857079 0.968097
-0.0945771 0.993397 0.0649445
-0.0518366 -0.202292 0.12586
-
--0.969513 0.0477053 0.240351
-0.236378 -0.0764036 0.968653
-0.0645736 0.995935 0.0627978
-0.0538394 -0.205386 0.12414
-
--0.970565 0.0262406 0.239405
-0.237076 -0.0709322 0.968898
-0.042406 0.997136 0.0626233
-0.0557031 -0.208159 0.122233
-
--0.970826 0.0128127 0.239444
-0.238005 -0.0699991 0.968738
-0.029173 0.997465 0.0649075
-0.0573994 -0.210539 0.120094
-
--0.970533 0.00965439 0.240775
-0.239408 -0.0749041 0.968025
-0.0273807 0.997144 0.0703855
-0.0588808 -0.21241 0.117683
-
--0.969791 0.0166851 0.243367
-0.241121 -0.0856411 0.966709
-0.0369718 0.996186 0.0790308
-0.0601482 -0.213771 0.114996
-
--0.968538 0.0313436 0.246885
-0.242684 -0.1008 0.964854
-0.0551281 0.994413 0.0900224
-0.061248 -0.214743 0.112071
-
--0.966618 0.0514627 0.251001
-0.243599 -0.119118 0.962533
-0.0794333 0.991546 0.102605
-0.062224 -0.215443 0.108968
-
--0.967215 0.0497953 0.249029
-0.240993 -0.129357 0.961868
-0.0801103 0.990347 0.113116
-0.0633086 -0.215282 0.106378
-
--0.970538 0.022965 0.239853
-0.23496 -0.130368 0.963223
-0.0533896 0.9912 0.121131
-0.0644592 -0.214128 0.104394
-
--0.973352 -0.00902488 0.22914
-0.228352 -0.129757 0.964893
-0.0210244 0.991505 0.12836
-0.0656721 -0.212782 0.102521
-
--0.975001 -0.0411024 0.218364
-0.221906 -0.129643 0.966411
--0.0114124 0.990708 0.135523
-0.0668849 -0.211437 0.100625
-
--0.975485 -0.0732229 0.207528
-0.215647 -0.130017 0.967777
--0.0438813 0.988804 0.14262
-0.0680978 -0.210092 0.0987047
-
--0.974802 -0.105342 0.196632
-0.209602 -0.130866 0.96899
--0.0763424 0.985788 0.149649
-0.0693107 -0.208747 0.09676
-
--0.972954 -0.137414 0.18568
-0.203794 -0.132178 0.97005
--0.108755 0.981655 0.156608
-0.0705235 -0.207402 0.0947912
-
--0.970064 -0.168457 0.174922
-0.198434 -0.134605 0.970827
--0.139997 0.976475 0.164004
-0.0717013 -0.20598 0.0927488
-
--0.966323 -0.1979 0.164485
-0.193681 -0.138471 0.971243
--0.169433 0.970392 0.172138
-0.0728298 -0.204439 0.0906146
-
--0.96189 -0.225708 0.154346
-0.189576 -0.143708 0.971292
--0.197048 0.963537 0.18102
-0.0739105 -0.202778 0.0883875
-
--0.956582 -0.25332 0.144151
-0.185869 -0.14923 0.971176
--0.224507 0.955803 0.189835
-0.0749913 -0.201117 0.0861361
-
--0.95111 -0.277612 0.135354
-0.183285 -0.154601 0.970827
--0.248588 0.948172 0.197925
-0.0757862 -0.1997 0.0838478
-
--0.946434 -0.296106 0.128777
-0.181978 -0.159689 0.970249
--0.266733 0.941712 0.20502
-0.0759278 -0.19868 0.081525
-
--0.942826 -0.308999 0.124898
-0.182178 -0.163995 0.969493
--0.27909 0.936817 0.210911
-0.075365 -0.198142 0.0791609
-
--0.940623 -0.316011 0.123958
-0.183863 -0.167336 0.968604
--0.285347 0.933882 0.215503
-0.0739933 -0.198139 0.0767646
-
--0.942395 -0.31023 0.1251
-0.183964 -0.168321 0.968414
--0.279374 0.935642 0.215696
-0.0721486 -0.198356 0.0747142
-
--0.948261 -0.290716 0.127614
-0.181481 -0.166517 0.969194
--0.260511 0.942208 0.210661
-0.0699926 -0.198635 0.0730666
-
--0.95734 -0.257535 0.13106
-0.176507 -0.162059 0.970867
--0.228793 0.952582 0.200602
-0.0677218 -0.198886 0.0717877
-
--0.966577 -0.218223 0.134567
-0.17079 -0.156617 0.972781
--0.191208 0.96325 0.188653
-0.0653713 -0.199108 0.0706184
-
--0.97421 -0.178535 0.137985
-0.165699 -0.15096 0.974554
--0.153162 0.972284 0.17665
-0.0630208 -0.199329 0.0694248
-
--0.980223 -0.138538 0.141314
-0.161243 -0.145128 0.976186
--0.11473 0.979666 0.164596
-0.0606703 -0.19955 0.0682071
-
--0.984602 -0.0982978 0.144554
-0.15743 -0.139162 0.977676
--0.0759871 0.985379 0.152494
-0.0583198 -0.199771 0.0669651
-
--0.987337 -0.0578816 0.147703
-0.154262 -0.133101 0.979024
--0.037008 0.989411 0.140345
-0.0559693 -0.199992 0.065699
-
--0.988418 -0.0173573 0.150761
-0.151742 -0.126988 0.980229
-0.0021308 0.991752 0.128151
-0.0536187 -0.200213 0.0644087
-
--0.987841 0.0232069 0.153728
-0.149869 -0.120863 0.981291
-0.0413528 0.992398 0.115916
-0.0512682 -0.200435 0.0630942
-
--0.985603 0.0637425 0.156602
-0.148641 -0.114767 0.982209
-0.0805813 0.991345 0.10364
-0.0489177 -0.200656 0.0617556
-
--0.981704 0.104181 0.159385
-0.148052 -0.108741 0.982983
-0.11974 0.988596 0.0913269
-0.0465672 -0.200877 0.0603927
-
--0.976148 0.144453 0.162074
-0.148097 -0.102824 0.983613
-0.158751 0.984155 0.0789781
-0.0442167 -0.201098 0.0590057
-
--0.971191 0.175032 0.161714
-0.147024 -0.0939496 0.984661
-0.18754 0.98007 0.065509
-0.0419028 -0.200894 0.0578148
-
--0.968846 0.191523 0.157024
-0.1439 -0.080699 0.986296
-0.20157 0.978165 0.0506248
-0.039552 -0.200057 0.0568944
-
--0.96946 0.195321 0.148316
-0.138438 -0.0633685 0.988342
-0.202443 0.97869 0.0343934
-0.0372455 -0.198663 0.0562264
-
--0.97002 0.198964 0.139554
-0.133001 -0.0459936 0.990048
-0.203403 0.978927 0.0181522
-0.034939 -0.197269 0.0555341
-
--0.970526 0.202452 0.13074
-0.127592 -0.0285803 0.991415
-0.20445 0.978875 0.00190659
-0.0326325 -0.195875 0.0548177
-
--0.970979 0.205783 0.121878
-0.122212 -0.0111346 0.992442
-0.205584 0.978534 -0.0143377
-0.030326 -0.194481 0.0540771
-
--0.971378 0.208956 0.11297
-0.116863 0.00633735 0.993128
-0.206804 0.977905 -0.0305752
-0.0280194 -0.193087 0.0533123
-
--0.971724 0.211971 0.104021
-0.111547 0.0238294 0.993473
-0.208108 0.976985 -0.0468002
-0.0257129 -0.191693 0.0525233
-
--0.972018 0.214826 0.0950317
-0.106265 0.0413353 0.993478
-0.209497 0.975777 -0.0630073
-0.0234064 -0.190299 0.0517101
-
--0.972259 0.217522 0.0860066
-0.10102 0.0588492 0.993142
-0.210969 0.97428 -0.0791908
-0.0210999 -0.188905 0.0508728
-
--0.972447 0.220058 0.0769485
-0.0958133 0.0763647 0.992466
-0.212524 0.972493 -0.0953451
-0.0187933 -0.187511 0.0500113
-
--0.972584 0.222432 0.0678605
-0.0906464 0.0938759 0.991449
-0.21416 0.970418 -0.111465
-0.0164868 -0.186116 0.0491255
-
--0.972668 0.224646 0.0587457
-0.0855213 0.111376 0.990092
-0.215877 0.968055 -0.127544
-0.0141803 -0.184722 0.0482156
-
--0.972701 0.226697 0.0496072
-0.0804397 0.12886 0.988395
-0.217674 0.965403 -0.143578
-0.0118738 -0.183328 0.0472815
-
--0.972683 0.228586 0.0404482
-0.0754034 0.146322 0.986359
-0.21955 0.962465 -0.159561
-0.00956725 -0.181934 0.0463233
-
--0.972614 0.230313 0.0312718
-0.070414 0.163754 0.983985
-0.221504 0.95924 -0.175486
-0.00726072 -0.18054 0.0453408
-
--0.972494 0.231877 0.0220812
-0.0654733 0.181151 0.981273
-0.223535 0.955729 -0.19135
-0.0049542 -0.179146 0.0443342
-
--0.972325 0.233278 0.0128795
-0.060583 0.198507 0.978225
-0.225642 0.951933 -0.207146
-0.00264768 -0.177752 0.0433033
-
--0.97057 0.24067 0.00843772
-0.0608034 0.211003 0.975592
-0.233016 0.947394 -0.219427
-5.07454e-05 -0.175651 0.0420046
-
--0.967123 0.254157 0.00876584
-0.0662905 0.218672 0.973544
-0.245516 0.942118 -0.228331
--0.0028259 -0.172842 0.0404392
-
--0.962892 0.269603 0.0123942
-0.0750216 0.223262 0.971867
-0.259251 0.936733 -0.235203
--0.00584945 -0.169559 0.0386868
-
--0.958394 0.285001 0.016006
-0.083893 0.22763 0.970127
-0.272843 0.931106 -0.242069
--0.008873 -0.166276 0.0369102
-
--0.953629 0.300346 0.0196009
-0.0928997 0.231772 0.968324
-0.286289 0.925243 -0.248927
--0.0118966 -0.162993 0.0351095
-
--0.948598 0.315634 0.0231787
-0.102036 0.235686 0.966458
-0.299584 0.919145 -0.255777
--0.0149201 -0.15971 0.0332845
-
--0.943301 0.330859 0.0267391
-0.111298 0.239368 0.964529
-0.312722 0.912817 -0.26262
--0.0179437 -0.156428 0.0314354
-
--0.93774 0.346017 0.0302819
-0.120679 0.242814 0.962537
-0.325701 0.906264 -0.269454
--0.0209672 -0.153145 0.0295621
-
--0.931913 0.361102 0.0338068
-0.130174 0.246023 0.960483
-0.338515 0.899487 -0.276278
--0.0239908 -0.149862 0.0276646
-
--0.925823 0.376111 0.0373137
-0.139777 0.248992 0.958366
-0.351161 0.892493 -0.283094
--0.0270143 -0.146579 0.0257429
-
--0.91947 0.391037 0.0408023
-0.149483 0.251716 0.956187
-0.363634 0.885285 -0.289899
--0.0300379 -0.143296 0.023797
-
--0.912855 0.405876 0.0442722
-0.159286 0.254195 0.953946
-0.37593 0.877866 -0.296694
--0.0330614 -0.140014 0.021827
-
--0.905979 0.420623 0.0477234
-0.169181 0.256426 0.951643
-0.388046 0.870242 -0.303478
--0.036085 -0.136731 0.0198327
-
--0.895509 0.442244 0.0498384
-0.179318 0.256059 0.949884
-0.407318 0.859566 -0.308605
--0.0389347 -0.133765 0.017916
-
--0.880566 0.471231 0.05044
-0.189535 0.252614 0.948822
-0.434373 0.84506 -0.311758
--0.0416017 -0.131163 0.016101
-
--0.859985 0.507918 0.0494485
-0.199617 0.245633 0.948587
-0.469658 0.825642 -0.31263
--0.0440712 -0.128967 0.0144001
-
--0.833944 0.549821 0.0472654
-0.209287 0.235858 0.948984
-0.510623 0.801291 -0.311763
--0.0464191 -0.127057 0.0128131
-
--0.80586 0.590387 0.0450911
-0.218481 0.22571 0.949379
-0.550324 0.774918 -0.310879
--0.0487669 -0.125147 0.0112019
-
--0.775801 0.629515 0.0429256
-0.227184 0.215213 0.949774
-0.588659 0.746588 -0.309978
--0.0511148 -0.123237 0.00956646
-
--0.743843 0.66711 0.0407692
-0.235384 0.204391 0.950168
-0.625534 0.716372 -0.309061
--0.0534626 -0.121327 0.00790687
-
--0.710062 0.70308 0.0386219
-0.243069 0.193266 0.950561
-0.660855 0.684344 -0.308128
--0.0558105 -0.119417 0.00622309
-
--0.674541 0.737335 0.0364837
-0.250229 0.181865 0.950952
-0.694535 0.650586 -0.307178
--0.0581584 -0.117506 0.00451513
-
--0.637369 0.769793 0.0343549
-0.256855 0.170212 0.951343
-0.726489 0.615181 -0.306213
--0.0605062 -0.115596 0.00278298
-
--0.598635 0.800373 0.0322356
-0.262937 0.158331 0.951733
-0.756637 0.578216 -0.30523
--0.0628541 -0.113686 0.00102665
-
--0.558435 0.829001 0.0301257
-0.26847 0.146248 0.952121
-0.784904 0.539786 -0.304232
--0.065202 -0.111776 -0.000753867
-
--0.516867 0.855607 0.0280255
-0.273447 0.133989 0.952509
-0.811218 0.499984 -0.303218
--0.0675498 -0.109866 -0.00255857
-
--0.474034 0.880125 0.025935
-0.277864 0.121578 0.952896
-0.835514 0.458911 -0.302187
--0.0698977 -0.107956 -0.00438746
-
--0.43004 0.902495 0.0238543
-0.281717 0.109042 0.953281
-0.85773 0.416669 -0.301141
--0.0722456 -0.106045 -0.00624054
-
--0.384992 0.922663 0.0217835
-0.285004 0.0964059 0.953666
-0.877812 0.373362 -0.300078
--0.0745934 -0.104135 -0.0081178
-
--0.340357 0.940104 0.0190091
-0.287345 0.0847395 0.954071
-0.895315 0.330187 -0.298976
--0.0767607 -0.102296 -0.0100135
-
--0.299842 0.953887 0.0139433
-0.28799 0.0765726 0.954567
-0.909482 0.290234 -0.29767
--0.0784753 -0.100712 -0.0119413
-
--0.264263 0.964429 0.00650153
-0.287353 0.0722991 0.955092
-0.920648 0.254264 -0.296237
--0.0796638 -0.0993982 -0.0139041
-
--0.241834 0.970314 -0.00268097
-0.284062 0.0734388 0.955989
-0.927807 0.230429 -0.293389
--0.0803765 -0.098718 -0.0158427
-
--0.238306 0.971106 -0.0127552
-0.277127 0.0805818 0.957448
-0.930812 0.224631 -0.288323
--0.0806789 -0.0989003 -0.0176681
-
--0.253754 0.966988 -0.0232948
-0.266271 0.092986 0.959403
-0.929897 0.237249 -0.281077
--0.0806285 -0.0999462 -0.0193827
-
--0.285709 0.957721 -0.033771
-0.251425 0.108918 0.961729
-0.924746 0.266284 -0.271914
--0.0803722 -0.101729 -0.0209924
-
--0.323835 0.945108 -0.0436087
-0.234248 0.12475 0.96414
-0.916656 0.302006 -0.261788
--0.0801389 -0.103792 -0.0225622
-
--0.361309 0.930911 -0.0534878
-0.216215 0.139442 0.966337
-0.907032 0.337582 -0.251658
--0.0799056 -0.105856 -0.0241563
-
--0.398065 0.915163 -0.0634059
-0.197389 0.152946 0.968321
-0.895869 0.372939 -0.241526
--0.0796723 -0.107919 -0.0257745
-
--0.434035 0.897904 -0.0733607
-0.177837 0.165223 0.97009
-0.883169 0.408007 -0.231393
--0.0794389 -0.109983 -0.0274169
-
--0.469155 0.879174 -0.08335
-0.157628 0.176232 0.971646
-0.868935 0.442714 -0.221262
--0.0792056 -0.112046 -0.0290835
-
--0.50336 0.859017 -0.0933715
-0.136833 0.18594 0.972987
-0.853174 0.476986 -0.211136
--0.0789723 -0.11411 -0.0307743
-
--0.536591 0.83748 -0.103423
-0.115524 0.194315 0.974113
-0.835897 0.510753 -0.201017
--0.0787389 -0.116173 -0.0324893
-
--0.568791 0.814613 -0.113502
-0.0937768 0.20133 0.975024
-0.817119 0.543941 -0.190907
--0.0785056 -0.118237 -0.0342284
-
--0.599902 0.790468 -0.123606
-0.0716664 0.206963 0.97572
-0.796857 0.576478 -0.180808
--0.0782723 -0.1203 -0.0359918
-
--0.629873 0.765098 -0.133733
-0.04927 0.211194 0.976202
-0.775134 0.608294 -0.170722
--0.0780389 -0.122364 -0.0377793
-
--0.658654 0.738562 -0.143881
-0.026666 0.214009 0.976468
-0.751973 0.639318 -0.160652
--0.0778056 -0.124428 -0.039591
-
--0.686197 0.710917 -0.154048
-0.0039332 0.215397 0.976519
-0.727405 0.669478 -0.150601
--0.0775723 -0.126491 -0.0414269
-
--0.712337 0.682596 -0.16321
--0.0180745 0.214628 0.976529
-0.701604 0.698568 -0.14055
--0.0772701 -0.128375 -0.0433055
-
--0.737245 0.653795 -0.170359
--0.0385126 0.211073 0.976711
-0.674527 0.726637 -0.130433
--0.0767802 -0.129875 -0.0452488
-
--0.762541 0.622765 -0.175203
--0.0574042 0.204616 0.977158
-0.644389 0.75518 -0.120279
--0.0760484 -0.130931 -0.0473149
-
--0.788856 0.588636 -0.176678
--0.0739573 0.194466 0.978117
-0.610112 0.78466 -0.109872
--0.0751018 -0.131395 -0.0495273
-
--0.815816 0.551194 -0.175011
--0.0879464 0.180857 0.979569
-0.571585 0.81454 -0.0990707
--0.0739541 -0.131306 -0.0518686
-
--0.84099 0.512512 -0.173397
--0.100849 0.166378 0.980891
-0.531568 0.842407 -0.0882357
--0.0728064 -0.131216 -0.054234
-
--0.86432 0.472676 -0.171835
--0.112614 0.1511 0.982083
-0.490172 0.868185 -0.0773685
--0.0716587 -0.131126 -0.0566237
-
--0.885754 0.431775 -0.170325
--0.123196 0.135099 0.983143
-0.447507 0.891806 -0.0664709
--0.070511 -0.131036 -0.0590375
-
--0.905242 0.389899 -0.168868
--0.132555 0.118452 0.984072
-0.403692 0.913207 -0.0555447
--0.0693633 -0.130946 -0.0614755
-
--0.922739 0.347142 -0.167464
--0.140653 0.10124 0.984869
-0.358844 0.932332 -0.0445916
--0.0682156 -0.130856 -0.0639377
-
--0.938207 0.3036 -0.166113
--0.147458 0.0835442 0.985534
-0.313086 0.94913 -0.0336135
--0.0670679 -0.130766 -0.0664241
-
--0.951611 0.25937 -0.164816
--0.152945 0.0654484 0.986065
-0.266542 0.963558 -0.0226122
--0.0659202 -0.130676 -0.0689347
-
--0.962919 0.21455 -0.163572
--0.157091 0.0470375 0.986463
-0.219339 0.97558 -0.0115894
--0.0647725 -0.130586 -0.0714694
-
--0.972106 0.16924 -0.162382
--0.159881 0.0283975 0.986728
-0.171606 0.985166 -0.00054709
--0.0636248 -0.130496 -0.0740284
-
--0.979151 0.123543 -0.161246
--0.161302 0.00961533 0.986858
-0.12347 0.992293 0.0105129
--0.0624772 -0.130406 -0.0766115
-
--0.984039 0.0775601 -0.160164
--0.161349 -0.00922168 0.986854
-0.0750636 0.996945 0.0215887
--0.0613295 -0.130316 -0.0792188
-
--0.986757 0.0313939 -0.159136
--0.160021 -0.028026 0.986716
-0.0265169 0.999114 0.0326785
--0.0601818 -0.130226 -0.0818503
-
--0.987301 -0.0148523 -0.158163
--0.157322 -0.0467101 0.986442
--0.0220387 0.998798 0.0437803
--0.0590341 -0.130136 -0.084506
-
--0.985669 -0.0610751 -0.157244
--0.153263 -0.0651869 0.986033
--0.0704723 0.996002 0.0548922
--0.0578864 -0.130046 -0.0871858
-
--0.981865 -0.107171 -0.156379
--0.147857 -0.0833702 0.985489
--0.118654 0.990739 0.0660124
--0.0567387 -0.129956 -0.0898899
-
--0.977573 -0.144507 -0.153194
--0.139807 -0.0986966 0.985248
--0.157495 0.984569 0.07628
--0.0557854 -0.130291 -0.0927365
-
--0.976365 -0.156564 -0.148993
--0.133317 -0.106311 0.985355
--0.17011 0.98193 0.0829252
--0.0545726 -0.131084 -0.0956326
-
--0.979501 -0.140795 -0.144062
--0.129901 -0.105107 0.98594
--0.153957 0.984444 0.0846629
--0.0530278 -0.132182 -0.0984333
-
--0.984539 -0.107019 -0.138671
--0.12852 -0.0965616 0.986995
--0.119018 0.989557 0.0813145
--0.0513939 -0.13307 -0.101023
-
--0.988914 -0.0629051 -0.134505
--0.129073 -0.0836618 0.9881
--0.0734095 0.994507 0.074615
--0.0495523 -0.1335 -0.103401
-
--0.991285 -0.014173 -0.130973
--0.129706 -0.0689191 0.989154
--0.0230458 0.997522 0.0664801
--0.0476137 -0.13373 -0.105701
-
--0.991234 0.0346574 -0.12749
--0.129246 -0.0543043 0.990124
-0.0273919 0.997923 0.0583076
--0.0456752 -0.13396 -0.108026
-
--0.988758 0.083465 -0.124058
--0.127707 -0.0398876 0.99101
-0.0777663 0.995712 0.0500983
--0.0437366 -0.13419 -0.110375
-
--0.98386 0.132128 -0.120675
--0.125107 -0.0257385 0.991809
-0.12794 0.990898 0.0418532
--0.041798 -0.13442 -0.112748
-
--0.976545 0.180527 -0.117344
--0.121468 -0.011925 0.992524
-0.177778 0.983498 0.0335736
--0.0398594 -0.13465 -0.115145
-
--0.96683 0.228539 -0.114064
--0.116818 0.00148639 0.993152
-0.227143 0.973534 0.0252603
--0.0379208 -0.13488 -0.117566
-
--0.954733 0.276044 -0.110835
--0.111186 0.014431 0.993695
-0.275903 0.961037 0.0169144
--0.0359822 -0.13511 -0.120012
-
--0.940281 0.322925 -0.107659
--0.104607 0.0268463 0.994151
-0.323927 0.946044 0.00853703
--0.0340436 -0.13534 -0.122482
-
--0.923507 0.369063 -0.104535
--0.0971184 0.0386717 0.994521
-0.371084 0.928599 0.000129252
--0.032105 -0.13557 -0.124976
-
--0.904448 0.414342 -0.101463
--0.088763 0.0498494 0.994805
-0.417247 0.908755 -0.00830787
--0.0301664 -0.135801 -0.127494
-
--0.883148 0.458649 -0.0984454
--0.0795855 0.060324 0.995001
-0.462295 0.886568 -0.0167732
--0.0282278 -0.136031 -0.130036
-
--0.859656 0.501871 -0.0954811
--0.0696343 0.0700433 0.995111
-0.506105 0.862102 -0.0252657
--0.0262892 -0.136261 -0.132603
-
--0.834029 0.543899 -0.0925707
--0.0589609 0.0789578 0.995133
-0.548561 0.835428 -0.0337843
--0.0243506 -0.136491 -0.135194
-
--0.806327 0.584627 -0.0897147
--0.0476198 0.0870214 0.995068
-0.589551 0.806622 -0.0423278
--0.0224121 -0.136721 -0.137808
-
--0.776615 0.623952 -0.0869133
--0.0356683 0.0941913 0.994915
-0.628965 0.775766 -0.0508951
--0.0204735 -0.136951 -0.140447
-
--0.744965 0.661773 -0.084167
--0.023166 0.100429 0.994675
-0.666701 0.742947 -0.0594851
--0.0185349 -0.137181 -0.143111
-
--0.711453 0.697994 -0.081476
--0.0101751 0.105697 0.994346
-0.70266 0.70826 -0.0680966
--0.0165963 -0.137411 -0.145798
-
--0.676161 0.732524 -0.0788407
-0.0032402 0.109966 0.99393
-0.736747 0.671801 -0.0767285
--0.0146577 -0.137641 -0.14851
-
--0.639173 0.765273 -0.0762614
-0.0170139 0.113208 0.993426
-0.768875 0.633673 -0.0853796
--0.0127191 -0.137871 -0.151246
-
--0.60058 0.796157 -0.0737384
-0.0310782 0.115398 0.992833
-0.79896 0.593984 -0.0940488
--0.0107805 -0.138101 -0.154006
-
--0.560477 0.825098 -0.071272
-0.0453639 0.116517 0.992152
-0.826927 0.552845 -0.102735
--0.00884191 -0.138332 -0.15679
-
--0.518961 0.85202 -0.0688626
-0.0598008 0.116551 0.991383
-0.852704 0.510371 -0.111437
--0.00690332 -0.138562 -0.159598
-
--0.476135 0.876854 -0.0665104
-0.0743176 0.115487 0.990525
-0.876226 0.46668 -0.120153
--0.00496473 -0.138792 -0.162431
-
--0.432103 0.899535 -0.0642157
-0.0888423 0.11332 0.989578
-0.897437 0.421895 -0.128883
--0.00302614 -0.139022 -0.165288
-
--0.386975 0.920005 -0.0619787
-0.103303 0.110048 0.988543
-0.916285 0.376139 -0.137625
--0.00108754 -0.139252 -0.168168
-
--0.340862 0.938209 -0.0597998
-0.117626 0.105671 0.98742
-0.932726 0.32954 -0.146377
-0.000851048 -0.139482 -0.171074
-
--0.301223 0.951905 -0.0560577
-0.129424 0.099058 0.986629
-0.94473 0.28994 -0.153038
-0.00262781 -0.140104 -0.173928
-
--0.269768 0.961622 -0.0500891
-0.1378 0.0900353 0.986359
-0.953014 0.259186 -0.1568
-0.00417783 -0.141289 -0.176746
-
--0.246876 0.968154 -0.0415926
-0.142487 0.0787213 0.986661
-0.958514 0.237656 -0.157383
-0.00550381 -0.143083 -0.179507
-
--0.232165 0.972192 -0.0306764
-0.143894 0.0655197 0.987422
-0.961974 0.224831 -0.155104
-0.00660755 -0.145437 -0.182222
-
--0.225148 0.974168 -0.0174803
-0.142423 0.0506543 0.988509
-0.963859 0.220071 -0.150149
-0.00749814 -0.148306 -0.184896
-
--0.223334 0.974739 -0.00243456
-0.138689 0.0342486 0.989744
-0.964825 0.220705 -0.142834
-0.00821727 -0.151619 -0.187567
-
--0.221575 0.975062 0.0126141
-0.134896 0.0178377 0.990699
-0.965768 0.221216 -0.135484
-0.0089364 -0.154931 -0.190262
-
--0.219874 0.975136 0.0276614
-0.131045 0.00142614 0.991375
-0.966686 0.221603 -0.128101
-0.00965553 -0.158244 -0.192981
-
--0.218232 0.974962 0.0427031
-0.127138 -0.0149813 0.991772
-0.96758 0.221865 -0.120685
-0.0103747 -0.161556 -0.195724
-
--0.216648 0.974541 0.0577349
-0.123175 -0.0313799 0.991889
-0.968448 0.222003 -0.113241
-0.0110938 -0.164868 -0.198492
-
--0.215126 0.973873 0.0727528
-0.119157 -0.047765 0.991726
-0.96929 0.222015 -0.105769
-0.0118129 -0.168181 -0.201284
-
--0.213665 0.972958 0.0877523
-0.115086 -0.0641319 0.991283
-0.970104 0.221901 -0.0982712
-0.012532 -0.171493 -0.2041
-
--0.212266 0.971797 0.102729
-0.110962 -0.0804758 0.990561
-0.970892 0.221662 -0.0907507
-0.0132512 -0.174805 -0.20694
-
--0.210931 0.970391 0.11768
-0.106787 -0.0967922 0.989559
-0.97165 0.221296 -0.0832092
-0.0139703 -0.178118 -0.209804
-
--0.209661 0.968741 0.132599
-0.102562 -0.113076 0.988279
-0.97238 0.220803 -0.0756487
-0.0146894 -0.18143 -0.212693
-
--0.208456 0.966848 0.147484
-0.0982883 -0.129324 0.986719
-0.97308 0.220184 -0.0680716
-0.0154086 -0.184743 -0.215606
-
--0.207318 0.964712 0.162329
-0.0939665 -0.145529 0.984881
-0.97375 0.219437 -0.0604798
-0.0161277 -0.188055 -0.218542
-
--0.206247 0.962334 0.17713
-0.0895981 -0.161689 0.982766
-0.974389 0.218563 -0.0528755
-0.0168468 -0.191367 -0.221504
-
--0.205244 0.959716 0.191885
-0.0851843 -0.177797 0.980373
-0.974997 0.217562 -0.0452609
-0.0175659 -0.19468 -0.224489
-
--0.204311 0.956859 0.206587
-0.0807265 -0.19385 0.977704
-0.975572 0.216433 -0.0376381
-0.0182851 -0.197992 -0.227498
-
--0.203448 0.953764 0.221233
-0.0762258 -0.209844 0.974759
-0.976114 0.215176 -0.0300093
-0.0190042 -0.201304 -0.230532
-
--0.21053 0.948639 0.236136
-0.0756968 -0.225006 0.971413
-0.974652 0.222386 -0.0244385
-0.0196158 -0.204268 -0.233494
-
--0.2262 0.941116 0.251265
-0.0799555 -0.239142 0.967687
-0.970794 0.238981 -0.0211536
-0.0201132 -0.206838 -0.236363
-
--0.251182 0.93049 0.266637
-0.0899627 -0.251834 0.96358
-0.96375 0.266021 -0.0204532
-0.0204913 -0.208962 -0.239147
-
--0.284953 0.916045 0.282247
-0.10599 -0.262538 0.959083
-0.952663 0.303209 -0.022281
-0.0207566 -0.210641 -0.241842
-
--0.319813 0.899454 0.29783
-0.124009 -0.271898 0.954302
-0.93933 0.342132 -0.024584
-0.0210038 -0.212226 -0.24455
-
--0.353754 0.881295 0.313333
-0.142853 -0.280157 0.949265
-0.924365 0.380567 -0.0267893
-0.021251 -0.21381 -0.247282
-
--0.374454 0.868347 0.325204
-0.157383 -0.286112 0.945183
-0.913791 0.405109 -0.0295268
-0.021653 -0.214891 -0.250338
-
--0.377559 0.864513 0.331763
-0.164865 -0.289797 0.942782
-0.911191 0.410652 -0.0331126
-0.0222568 -0.215229 -0.253865
-
--0.36314 0.870321 0.332672
-0.164543 -0.291531 0.942303
-0.91709 0.396927 -0.0373382
-0.0230364 -0.214777 -0.2579
-
--0.333717 0.883422 0.328936
-0.157585 -0.291749 0.943424
-0.929408 0.366672 -0.0418528
-0.0240052 -0.213709 -0.262327
-
--0.297506 0.898316 0.323292
-0.148059 -0.291116 0.945161
-0.94317 0.329057 -0.0463951
-0.0250514 -0.212401 -0.266927
-
--0.260652 0.911693 0.317611
-0.138797 -0.290178 0.946854
-0.955404 0.290883 -0.0509052
-0.0260976 -0.211093 -0.271552
-
--0.227806 0.922332 0.312102
-0.132814 -0.288101 0.948345
-0.964606 0.25749 -0.0568679
-0.0271029 -0.209548 -0.27616
-
--0.202454 0.929919 0.307023
-0.132125 -0.284711 0.949464
-0.970338 0.232788 -0.0652245
-0.0280361 -0.207622 -0.280762
-
--0.184937 0.935093 0.302322
-0.136653 -0.280171 0.950174
-0.973203 0.217035 -0.0759697
-0.0288935 -0.205316 -0.285359
-
--0.175496 0.938304 0.297972
-0.146304 -0.274451 0.950406
-0.973548 0.210387 -0.0891126
-0.0296726 -0.202631 -0.289954
-
--0.166077 0.941406 0.293554
-0.156027 -0.268852 0.95046
-0.973691 0.203652 -0.102235
-0.0304517 -0.199945 -0.294573
-
--0.156683 0.944399 0.289069
-0.16582 -0.263375 0.950335
-0.973629 0.196835 -0.115334
-0.0312309 -0.19726 -0.299216
-
--0.147314 0.947285 0.284518
-0.175679 -0.258023 0.950032
-0.973363 0.189937 -0.128408
-0.03201 -0.194574 -0.303884
-
--0.137974 0.950062 0.279901
-0.185601 -0.252796 0.949551
-0.97289 0.182963 -0.141453
-0.0327891 -0.191889 -0.308575
-
--0.128664 0.952733 0.27522
-0.195582 -0.247697 0.948891
-0.97221 0.175916 -0.154468
-0.0335683 -0.189203 -0.313291
-
--0.119385 0.955296 0.270475
-0.20562 -0.242728 0.948053
-0.971323 0.168798 -0.16745
-0.0343474 -0.186518 -0.318031
-
--0.11014 0.957752 0.265668
-0.21571 -0.237889 0.947036
-0.970226 0.161614 -0.180396
-0.0351265 -0.183832 -0.322795
-
--0.10093 0.960103 0.260799
-0.22585 -0.233183 0.945842
-0.968919 0.154366 -0.193304
-0.0359057 -0.181147 -0.327583
-
--0.091758 0.962347 0.255869
-0.236035 -0.228611 0.944471
-0.967403 0.147057 -0.206171
-0.0366848 -0.178461 -0.332395
-
--0.0826248 0.964486 0.250879
-0.246263 -0.224173 0.942921
-0.965675 0.139691 -0.218995
-0.0374639 -0.175776 -0.337232
-
--0.0735325 0.96652 0.245831
-0.25653 -0.219873 0.941195
-0.963735 0.132271 -0.231774
-0.0382431 -0.17309 -0.342093
-
--0.0644828 0.968449 0.240724
-0.266833 -0.21571 0.939292
-0.961583 0.124801 -0.244504
-0.0390222 -0.170405 -0.346978
-
--0.0554776 0.970275 0.235561
-0.277167 -0.211686 0.937213
-0.959219 0.117284 -0.257184
-0.0398013 -0.167719 -0.351887
-
--0.0465186 0.971997 0.230341
-0.28753 -0.207803 0.934957
-0.956641 0.109723 -0.269811
-0.0405805 -0.165034 -0.35682
-
--0.0376076 0.973617 0.225067
-0.297917 -0.204061 0.932526
-0.953851 0.102121 -0.282383
-0.0413596 -0.162348 -0.361778
-
--0.0287462 0.975135 0.219739
-0.308326 -0.200461 0.92992
-0.950846 0.0944828 -0.294897
-0.0421387 -0.159663 -0.366759
-
--0.0199362 0.976552 0.214358
-0.318752 -0.197004 0.927139
-0.947628 0.0868106 -0.307351
-0.0429179 -0.156977 -0.371765
-
--0.0100919 0.977739 0.209582
-0.328226 -0.194741 0.924307
-0.944545 0.0781183 -0.318954
-0.0436216 -0.154466 -0.376831
-
-0.00335289 0.978403 0.206679
-0.334769 -0.195852 0.921722
-0.942294 0.0660991 -0.328196
-0.0441257 -0.152464 -0.382012
-
-0.0206299 0.978401 0.205682
-0.33829 -0.200423 0.919451
-0.940816 0.050612 -0.335118
-0.0444395 -0.150972 -0.387296
-
-0.0426871 0.977489 0.206625
-0.338461 -0.208733 0.917537
-0.940012 0.0307676 -0.339752
-0.0445532 -0.150014 -0.392709
-
-0.0693838 0.975332 0.209556
-0.335112 -0.220643 0.915978
-0.93962 0.00667072 -0.342155
-0.0444602 -0.149587 -0.398247
-
-0.0999077 0.971701 0.214045
-0.328676 -0.235275 0.914668
-0.939143 -0.0210311 -0.342881
-0.0441981 -0.149573 -0.403887
-
-0.133505 0.966343 0.219902
-0.319342 -0.252 0.913519
-0.938188 -0.0517352 -0.342237
-0.0437911 -0.149907 -0.40962
-
-0.166863 0.959789 0.225749
-0.309266 -0.268353 0.912327
-0.936222 -0.0824172 -0.341608
-0.0433841 -0.150241 -0.415377
-
-0.199939 0.952047 0.231585
-0.298463 -0.284303 0.911094
-0.933244 -0.113043 -0.340994
-0.0429771 -0.150575 -0.421158
-
-0.232689 0.943129 0.23741
-0.286948 -0.299821 0.909818
-0.929256 -0.14358 -0.340394
-0.0425701 -0.150909 -0.426964
-
-0.26507 0.933049 0.243224
-0.274738 -0.314875 0.9085
-0.92426 -0.173993 -0.339808
-0.0421631 -0.151243 -0.432794
-
-0.297041 0.92182 0.249027
-0.261852 -0.329438 0.907141
-0.91826 -0.20425 -0.339237
-0.0417561 -0.151577 -0.438648
-
-0.328559 0.90946 0.254817
-0.248308 -0.343481 0.90574
-0.911259 -0.234316 -0.33868
-0.0413491 -0.151911 -0.444526
-
-0.359584 0.895985 0.260595
-0.234128 -0.356975 0.904297
-0.903263 -0.264158 -0.338138
-0.0409421 -0.152245 -0.450428
-
-0.390074 0.881416 0.266361
-0.219334 -0.369894 0.902813
-0.894279 -0.293742 -0.33761
-0.0405351 -0.152579 -0.456354
-
-0.419992 0.865772 0.272114
-0.203947 -0.382213 0.901288
-0.884315 -0.323036 -0.337098
-0.0401281 -0.152913 -0.462305
-
-0.449296 0.849076 0.277854
-0.187992 -0.393905 0.899721
-0.873379 -0.352007 -0.3366
-0.0397211 -0.153247 -0.46828
-
-0.477951 0.831352 0.28358
-0.171494 -0.404946 0.898114
-0.861483 -0.380622 -0.336116
-0.0393141 -0.153581 -0.474279
-
-0.505917 0.812624 0.289292
-0.154479 -0.415314 0.896466
-0.848637 -0.408848 -0.335648
-0.0389071 -0.153915 -0.480302
-
-0.53316 0.792919 0.294991
-0.136973 -0.424986 0.894777
-0.834852 -0.436653 -0.335194
-0.0385001 -0.154249 -0.486349
-
-0.559644 0.772265 0.300675
-0.119005 -0.433941 0.893047
-0.820144 -0.464007 -0.334756
-0.0380931 -0.154583 -0.492421
-
-0.585335 0.75069 0.306344
-0.100602 -0.442158 0.891277
-0.804526 -0.490877 -0.334332
-0.0376861 -0.154917 -0.498517
-
-0.6102 0.728226 0.311999
-0.0817953 -0.449619 0.889468
-0.788014 -0.517233 -0.333923
-0.0372791 -0.155251 -0.504637
-
-0.634207 0.704903 0.317638
-0.0626139 -0.456306 0.887617
-0.770624 -0.543045 -0.333529
-0.0368721 -0.155585 -0.510781
-
-0.657325 0.680754 0.323261
-0.0430894 -0.462201 0.885727
-0.752374 -0.568282 -0.33315
-0.0364651 -0.155918 -0.516949
-
-0.679526 0.655812 0.328869
-0.0232533 -0.467291 0.883798
-0.733283 -0.592916 -0.332786
-0.0360581 -0.156252 -0.523141
-
-0.70078 0.630114 0.334461
-0.00313824 -0.47156 0.881828
-0.713371 -0.616918 -0.332437
-0.0356511 -0.156586 -0.529358
-
-0.721061 0.603694 0.340036
--0.0172229 -0.474996 0.87982
-0.692658 -0.64026 -0.332103
-0.0352441 -0.15692 -0.535599
-
-0.740344 0.57659 0.345595
--0.0377965 -0.477586 0.877772
-0.671165 -0.662915 -0.331785
-0.0348371 -0.157254 -0.541864
-
-0.758604 0.548838 0.351137
--0.0585484 -0.479321 0.875684
-0.648917 -0.684856 -0.331481
-0.0344301 -0.157588 -0.548153
-
-0.775818 0.520479 0.356661
--0.0794442 -0.480192 0.873558
-0.625935 -0.706057 -0.331193
-0.0340231 -0.157922 -0.554467
-
-0.791967 0.491551 0.362168
--0.100449 -0.480191 0.871393
-0.602245 -0.726494 -0.33092
-0.0336162 -0.158256 -0.560804
-
-0.807029 0.462095 0.367657
--0.121527 -0.479312 0.86919
-0.577871 -0.746142 -0.330662
-0.0332092 -0.15859 -0.567166
-
-0.820987 0.432152 0.373128
--0.142643 -0.47755 0.866948
-0.552841 -0.764977 -0.330419
-0.0328022 -0.158924 -0.573552
-
-0.833825 0.401763 0.378581
--0.163762 -0.474902 0.864668
-0.52718 -0.782978 -0.330192
-0.0323952 -0.159258 -0.579962
-
-0.845526 0.37097 0.384015
--0.184846 -0.471366 0.862349
-0.500917 -0.800122 -0.32998
-0.0319882 -0.159592 -0.586396
-
-0.856078 0.339817 0.38943
--0.20586 -0.466941 0.859993
-0.474081 -0.816389 -0.329783
-0.0315812 -0.159926 -0.592855
-
-0.865468 0.308346 0.394825
--0.226768 -0.461628 0.857599
-0.4467 -0.831759 -0.329601
-0.0311742 -0.16026 -0.599338
-
-0.873688 0.276601 0.400202
--0.247533 -0.45543 0.855167
-0.418804 -0.846212 -0.329435
-0.0307672 -0.160594 -0.605845
-
-0.880727 0.244627 0.405558
--0.26812 -0.44835 0.852698
-0.390425 -0.859733 -0.329285
-0.0303602 -0.160928 -0.612376
-
-0.886579 0.212467 0.410895
--0.288491 -0.440394 0.850192
-0.361593 -0.872302 -0.329149
-0.0299532 -0.161262 -0.618931
-
-0.89124 0.180166 0.416211
--0.308612 -0.431568 0.847648
-0.332341 -0.883906 -0.329029
-0.0295462 -0.161596 -0.62551
-
-0.894705 0.147768 0.421507
--0.328446 -0.421881 0.845068
-0.3027 -0.894528 -0.328925
-0.0291392 -0.16193 -0.632114
-
-0.896972 0.115319 0.426782
--0.347957 -0.411342 0.842451
-0.272704 -0.904157 -0.328836
-0.0287322 -0.162264 -0.638742
-
-0.898041 0.0828634 0.432036
--0.367111 -0.399962 0.839798
-0.242387 -0.912778 -0.328762
-0.0283252 -0.162598 -0.645394
-
-0.897915 0.0504456 0.437269
--0.385873 -0.387754 0.837108
-0.211781 -0.920382 -0.328704
-0.0279182 -0.162932 -0.65207
-
-0.896595 0.0181105 0.44248
--0.404208 -0.374731 0.834382
-0.180922 -0.926957 -0.328662
-0.0275112 -0.163266 -0.65877
-
-0.894088 -0.0140973 0.447669
--0.422082 -0.360909 0.83162
-0.149844 -0.932495 -0.328635
-0.0271042 -0.1636 -0.665495
-
-0.890399 -0.0461336 0.452837
--0.439463 -0.346304 0.828822
-0.118583 -0.936987 -0.328623
-0.0266972 -0.163934 -0.672244
-
-0.885537 -0.0779543 0.457981
--0.456316 -0.330935 0.825989
-0.0871727 -0.940428 -0.328627
-0.0262902 -0.164268 -0.679017
-
-0.879512 -0.109516 0.463104
--0.472612 -0.31482 0.82312
-0.0556498 -0.942812 -0.328647
-0.0258832 -0.164602 -0.685814
-
-0.872335 -0.140774 0.468203
--0.488317 -0.297981 0.820216
-0.02405 -0.944135 -0.328682
-0.0254762 -0.164935 -0.692635
-
-0.86402 -0.171688 0.473279
--0.503401 -0.280439 0.817277
--0.00759084 -0.944393 -0.328732
-0.0250692 -0.165269 -0.699481
-
-0.854581 -0.202214 0.478332
--0.517835 -0.262217 0.814303
--0.0392366 -0.943585 -0.328799
-0.0246622 -0.165603 -0.70635
-
-0.844034 -0.23231 0.483362
--0.531589 -0.24334 0.811295
--0.0708511 -0.94171 -0.32888
-0.0242552 -0.165937 -0.713244
-
-0.832398 -0.261936 0.488367
--0.544635 -0.223833 0.808252
--0.102398 -0.93877 -0.328978
-0.0238482 -0.166271 -0.720162
-
-0.819693 -0.291052 0.493349
--0.556947 -0.203723 0.805175
--0.133841 -0.934765 -0.329091
-0.0234412 -0.166605 -0.727104
-
-0.805938 -0.319617 0.498306
--0.568499 -0.183038 0.802064
--0.165144 -0.9297 -0.329219
-0.0230342 -0.166939 -0.734071
-
-0.791157 -0.347593 0.503238
--0.579265 -0.161807 0.798919
--0.196271 -0.923578 -0.329363
-0.0226272 -0.167273 -0.741061
-
-0.775374 -0.374943 0.508146
--0.589221 -0.14006 0.79574
--0.227186 -0.916406 -0.329523
-0.0222202 -0.167607 -0.748076
-
-0.758614 -0.401629 0.513029
--0.598344 -0.117828 0.792528
--0.257853 -0.908191 -0.329699
-0.0218132 -0.167941 -0.755115
-
-0.740904 -0.427616 0.517886
--0.606614 -0.0951429 0.789283
--0.288237 -0.89894 -0.32989
-0.0214062 -0.168275 -0.762178
-
-0.722272 -0.452868 0.522718
--0.61401 -0.0720375 0.786004
--0.318301 -0.888662 -0.330096
-0.0209992 -0.168609 -0.769266
-
-0.702746 -0.477353 0.527524
--0.620512 -0.0485457 0.782693
--0.348012 -0.87737 -0.330319
-0.0205922 -0.168943 -0.776377
-
-0.682359 -0.501037 0.532304
--0.626103 -0.0247021 0.779349
--0.377334 -0.865073 -0.330557
-0.0201852 -0.169277 -0.783513
-
-0.661142 -0.523889 0.537058
--0.630766 -0.000542091 0.775973
--0.406232 -0.851786 -0.33081
-0.0197782 -0.169611 -0.790673
-
-0.639128 -0.545879 0.541785
--0.634487 0.0238983 0.772564
--0.434674 -0.837523 -0.331079
-0.0193712 -0.169945 -0.797857
-
-0.616351 -0.566978 0.546486
--0.637251 0.0485823 0.769123
--0.462626 -0.822299 -0.331364
-0.0189642 -0.170279 -0.805065
-
-0.592846 -0.587159 0.55116
--0.639046 0.0734724 0.765651
--0.490054 -0.80613 -0.331664
-0.0185572 -0.170613 -0.812298
-
-0.56865 -0.606396 0.555807
--0.639862 0.0985308 0.762147
--0.516927 -0.789035 -0.33198
-0.0181502 -0.170947 -0.819554
-
-0.5438 -0.624663 0.560426
--0.639689 0.123719 0.758612
--0.543212 -0.771032 -0.332312
-0.0177432 -0.171281 -0.826835
-
-0.518334 -0.641938 0.565018
--0.638519 0.148998 0.755045
--0.568878 -0.752141 -0.332659
-0.0173362 -0.171615 -0.83414
-
-0.492292 -0.658198 0.569582
--0.636346 0.174329 0.751447
--0.593896 -0.732383 -0.333021
-0.0169292 -0.171949 -0.841469
-
-0.465712 -0.673425 0.574118
--0.633165 0.199671 0.747819
--0.618234 -0.71178 -0.3334
-0.0165222 -0.172283 -0.848823
-
-0.438636 -0.687598 0.578626
--0.628973 0.224986 0.74416
--0.641865 -0.690356 -0.333794
-0.0161152 -0.172617 -0.8562
-
-0.411105 -0.700701 0.583105
--0.623768 0.250232 0.740471
--0.66476 -0.668134 -0.334203
-0.0157082 -0.172951 -0.863602
-
-0.383161 -0.712718 0.587555
--0.617551 0.27537 0.736752
--0.686891 -0.64514 -0.334628
-0.0153012 -0.173285 -0.871028
-
-0.354846 -0.723635 0.591977
--0.610321 0.300359 0.733002
--0.708232 -0.621399 -0.335069
-0.0148942 -0.173619 -0.878478
-
-0.326203 -0.733441 0.596369
--0.602084 0.325159 0.729223
--0.728757 -0.596939 -0.335525
-0.0144872 -0.173952 -0.885952
-
-0.297276 -0.742124 0.600733
--0.592843 0.349729 0.725415
--0.748441 -0.571788 -0.335996
-0.0140802 -0.174286 -0.893451
-
-0.268108 -0.749675 0.605066
--0.582604 0.37403 0.721577
--0.767261 -0.545975 -0.336484
-0.0136732 -0.17462 -0.900974
-
-0.238744 -0.756088 0.60937
--0.571377 0.39802 0.717711
--0.785194 -0.519529 -0.336986
-0.0132662 -0.174954 -0.90852
-
-0.209227 -0.761357 0.613644
--0.559169 0.421661 0.713815
--0.802218 -0.49248 -0.337504
-0.0128592 -0.175288 -0.916091
-
-0.179603 -0.765479 0.617888
--0.545992 0.444912 0.709891
--0.818312 -0.464861 -0.338038
-0.0124522 -0.175622 -0.923687
-
-0.149916 -0.76845 0.622101
--0.53186 0.467735 0.705939
--0.833457 -0.436702 -0.338587
-0.0120452 -0.175956 -0.931306
-
-0.12021 -0.770272 0.626284
--0.516785 0.49009 0.701958
--0.847634 -0.408036 -0.339151
-0.0116382 -0.17629 -0.93895
-
-0.0905299 -0.770945 0.630435
--0.500784 0.511939 0.69795
--0.860825 -0.378898 -0.339731
-0.0112312 -0.176624 -0.946618
-
-0.0609206 -0.770472 0.634556
--0.483875 0.533244 0.693914
--0.873014 -0.34932 -0.340326
-0.0108242 -0.176958 -0.95431
-
-0.0314264 -0.768859 0.638646
--0.466076 0.553968 0.68985
--0.884187 -0.319337 -0.340937
-0.0104172 -0.177292 -0.962026
-
-0.00209117 -0.766111 0.642704
--0.447407 0.574074 0.685759
--0.894328 -0.288984 -0.341563
-0.0100102 -0.177626 -0.969766
-
--0.0270411 -0.762239 0.646731
--0.427891 0.593527 0.681641
--0.903426 -0.258298 -0.342205
-0.00960321 -0.17796 -0.977531
-
--0.0559269 -0.75725 0.650726
--0.40755 0.612291 0.677497
--0.911469 -0.227313 -0.342861
-0.00919621 -0.178294 -0.985319
-
--0.0845233 -0.751158 0.654689
--0.38641 0.630333 0.673326
--0.918446 -0.196067 -0.343533
-0.00878921 -0.178628 -0.993132
-
--0.112788 -0.743975 0.658619
--0.364497 0.647618 0.669128
--0.924349 -0.164596 -0.34422
-0.00838221 -0.178962 -1.00097
-
--0.140678 -0.735717 0.662518
--0.341839 0.664114 0.664905
--0.92917 -0.132937 -0.344923
-0.00797521 -0.179296 -1.00883
-
--0.168153 -0.726401 0.666383
--0.318463 0.679791 0.660656
--0.932902 -0.101127 -0.345641
-0.00756822 -0.17963 -1.01672
-
--0.195172 -0.716043 0.670216
--0.294401 0.694617 0.656381
--0.935541 -0.0692049 -0.346374
-0.00716122 -0.179964 -1.02463
-
--0.221695 -0.704666 0.674016
--0.269683 0.708563 0.65208
--0.937082 -0.0372079 -0.347122
-0.00675422 -0.180298 -1.03256
-
--0.247683 -0.692289 0.677783
--0.244344 0.721602 0.647755
--0.937523 -0.00517393 -0.347885
-0.00634722 -0.180632 -1.04052
-
--0.273097 -0.678936 0.681516
--0.218415 0.733706 0.643405
--0.936863 0.0268589 -0.348663
-0.00594022 -0.180966 -1.0485
-
--0.297901 -0.664631 0.685216
--0.191933 0.744851 0.63903
--0.935102 0.0588523 -0.349457
-0.00553322 -0.1813 -1.05651
-
--0.322058 -0.6494 0.688882
--0.164933 0.755011 0.634631
--0.932242 0.0907684 -0.350265
-0.00512622 -0.181634 -1.06454
-
--0.345533 -0.63327 0.692514
--0.137453 0.764163 0.630207
--0.928285 0.122569 -0.351088
-0.00471922 -0.181968 -1.07259
-
--0.368291 -0.616271 0.696112
--0.109531 0.772287 0.62576
--0.923236 0.154216 -0.351927
-0.00431222 -0.182302 -1.08067
-
--0.390299 -0.598431 0.699676
--0.081205 0.779363 0.621289
--0.9171 0.185671 -0.35278
-0.00390522 -0.182636 -1.08877
-
--0.411526 -0.579783 0.703205
--0.0525158 0.785371 0.616794
--0.909884 0.216898 -0.353649
-0.00349823 -0.18297 -1.0969
-
--0.431942 -0.560358 0.7067
--0.023504 0.790294 0.612276
--0.901595 0.247857 -0.354532
-0.00309123 -0.183303 -1.10505
-
--0.451516 -0.540191 0.71016
-0.00578903 0.794118 0.607736
--0.892244 0.278513 -0.35543
-0.00268423 -0.183637 -1.11323
-
--0.470221 -0.519316 0.713585
-0.035321 0.796829 0.603172
--0.881842 0.308829 -0.356343
-0.00227723 -0.183971 -1.12143
-
--0.488031 -0.497769 0.716974
-0.0650492 0.798413 0.598586
--0.870399 0.338767 -0.357271
-0.00187023 -0.184305 -1.12965
-
--0.50492 -0.475587 0.720329
-0.09493 0.79886 0.593978
--0.85793 0.368292 -0.358213
-0.00146323 -0.184639 -1.1379
-
--0.520865 -0.452808 0.723647
-0.12492 0.798163 0.589348
--0.84445 0.397368 -0.35917
-0.00105623 -0.184973 -1.14617
-
--0.535843 -0.42947 0.72693
-0.154974 0.796312 0.584697
--0.829973 0.425961 -0.360142
-0.000649232 -0.185307 -1.15447
-
--0.549835 -0.405614 0.730178
-0.185047 0.793303 0.580023
--0.814518 0.454034 -0.361128
-0.000242233 -0.185641 -1.16279
-
--0.562821 -0.381279 0.733389
-0.215095 0.789133 0.575329
--0.798102 0.481556 -0.362129
--0.000164766 -0.185975 -1.17114
-
--0.574784 -0.356507 0.736564
-0.245072 0.783798 0.570614
--0.780745 0.508491 -0.363145
--0.000571764 -0.186309 -1.1795
-
--0.585709 -0.33134 0.739702
-0.274933 0.777299 0.565878
--0.762468 0.534808 -0.364175
--0.000978763 -0.186643 -1.1879
-
--0.595581 -0.30582 0.742804
-0.304632 0.769638 0.561121
--0.743292 0.560475 -0.365219
--0.00138576 -0.186977 -1.19632
-
--0.604388 -0.279989 0.745869
-0.334123 0.760817 0.556345
--0.723241 0.58546 -0.366278
--0.00179276 -0.187311 -1.20476
-
--0.61212 -0.253892 0.748898
-0.36336 0.750842 0.551548
--0.702338 0.609733 -0.367351
--0.00219976 -0.187645 -1.21322
-
--0.618768 -0.227573 0.751889
-0.392298 0.73972 0.546732
--0.680609 0.633265 -0.368439
--0.00260676 -0.187979 -1.22171
-
--0.624324 -0.201074 0.754843
-0.420892 0.72746 0.541896
--0.65808 0.656027 -0.36954
--0.00301376 -0.188313 -1.23023
-
--0.628784 -0.174441 0.75776
-0.449096 0.714072 0.537041
--0.634778 0.677991 -0.370656
--0.00342076 -0.188647 -1.23877
-
--0.632145 -0.147719 0.760639
-0.476866 0.699569 0.532168
--0.610731 0.69913 -0.371787
--0.00382776 -0.188981 -1.24733
-
--0.634403 -0.120951 0.763481
-0.504157 0.683964 0.527275
--0.585968 0.719419 -0.372931
--0.00423476 -0.189315 -1.25592
-
--0.635561 -0.0941826 0.766285
-0.530924 0.667274 0.522365
--0.56052 0.738834 -0.374089
--0.00464175 -0.189649 -1.26453
-
--0.635618 -0.0674586 0.769051
-0.557125 0.649516 0.517436
--0.534417 0.757349 -0.375262
--0.00504875 -0.189983 -1.27316
-
--0.63458 -0.0408234 0.771778
-0.582717 0.630711 0.512489
--0.50769 0.774943 -0.376448
--0.00545575 -0.190317 -1.28182
-
--0.632452 -0.0143215 0.774468
-0.607656 0.610878 0.507525
--0.480374 0.791595 -0.377648
--0.00586275 -0.190651 -1.2905
-
--0.62924 0.0120031 0.777118
-0.631903 0.590041 0.502544
--0.4525 0.807284 -0.378862
--0.00626975 -0.190985 -1.29921
-
--0.624954 0.0381064 0.779731
-0.655415 0.568225 0.497545
--0.424103 0.82199 -0.38009
--0.00667675 -0.191319 -1.30794
-
--0.619605 0.063945 0.782304
-0.678154 0.545456 0.49253
--0.395218 0.835697 -0.381332
--0.00708375 -0.191653 -1.3167
-
--0.613206 0.089476 0.784839
-0.700079 0.521761 0.487498
--0.365879 0.848387 -0.382587
--0.00749075 -0.191987 -1.32548
-
--0.60577 0.114657 0.787335
-0.721154 0.49717 0.48245
--0.336123 0.860044 -0.383856
--0.00789775 -0.19232 -1.33429
-
--0.597314 0.139446 0.789791
-0.741342 0.471714 0.477387
--0.305986 0.870655 -0.385139
--0.00830475 -0.192654 -1.34311
-
--0.587856 0.163801 0.792209
-0.760606 0.445426 0.472307
--0.275506 0.880207 -0.386435
--0.00871174 -0.192988 -1.35197
-
--0.577415 0.187683 0.794586
-0.778913 0.418339 0.467212
--0.244719 0.888688 -0.387744
--0.00911874 -0.193322 -1.36084
-
--0.566011 0.211052 0.796924
-0.796228 0.39049 0.462102
--0.213663 0.896089 -0.389067
--0.00952574 -0.193656 -1.36975
-
--0.553668 0.233869 0.799223
-0.812521 0.361914 0.456977
--0.182377 0.902399 -0.390403
--0.00993274 -0.19399 -1.37867
-
--0.54041 0.256095 0.801481
-0.82776 0.33265 0.451838
--0.1509 0.907612 -0.391753
--0.0103397 -0.194324 -1.38762
-
--0.526262 0.277695 0.8037
-0.841916 0.302738 0.446684
--0.119268 0.911721 -0.393116
--0.0107467 -0.194658 -1.39659
-
--0.511252 0.298633 0.805878
-0.854963 0.272218 0.441516
--0.0875232 0.914722 -0.394491
--0.0111537 -0.194992 -1.40559
-
--0.495408 0.318873 0.808017
-0.866872 0.241131 0.436335
--0.0557029 0.916611 -0.39588
--0.0115607 -0.195326 -1.41461
-
--0.478761 0.338382 0.810114
-0.877621 0.209522 0.43114
--0.0238467 0.917387 -0.397282
--0.0119677 -0.19566 -1.42366
-
--0.461342 0.357129 0.812172
-0.887186 0.177433 0.425932
-0.00800599 0.917048 -0.398697
--0.0123747 -0.195994 -1.43273
-
--0.443183 0.375081 0.814188
-0.895546 0.144911 0.420711
-0.0398159 0.915595 -0.400125
--0.0127817 -0.196328 -1.44183
-
--0.424319 0.392211 0.816164
-0.902682 0.112001 0.415477
-0.0715437 0.913032 -0.401566
--0.0131887 -0.196662 -1.45094
-
--0.404785 0.408488 0.818099
-0.908575 0.0787489 0.410231
-0.10315 0.90936 -0.403019
--0.0135957 -0.196996 -1.46009
-
--0.384617 0.423888 0.819993
-0.91321 0.0452037 0.404973
-0.134597 0.904586 -0.404485
--0.0140027 -0.19733 -1.46926
-
--0.363853 0.438384 0.821846
-0.916573 0.0114134 0.399704
-0.165844 0.898716 -0.405963
--0.0144097 -0.197664 -1.47845
-
--0.342532 0.451952 0.823657
-0.918652 -0.0225731 0.394423
-0.196853 0.891757 -0.407455
--0.0148167 -0.197998 -1.48766
-
--0.320691 0.464571 0.825427
-0.919436 -0.0567062 0.389131
-0.227586 0.883718 -0.408958
--0.0152237 -0.198332 -1.4969
-
--0.298373 0.476221 0.827156
-0.918916 -0.0909356 0.383828
-0.258005 0.874611 -0.410474
--0.0156307 -0.198666 -1.50617
-
--0.275618 0.486882 0.828843
-0.917087 -0.125211 0.378514
-0.288072 0.864447 -0.412003
--0.0160377 -0.199 -1.51545
-
--0.252468 0.496537 0.830488
-0.913945 -0.159481 0.37319
-0.31775 0.853239 -0.413543
--0.0164447 -0.199334 -1.52477
-
--0.228966 0.505171 0.832092
-0.909486 -0.193695 0.367857
-0.347002 0.841002 -0.415096
--0.0168517 -0.199668 -1.5341
-
--0.205155 0.51277 0.833654
-0.90371 -0.227801 0.362513
-0.375793 0.827752 -0.416661
--0.0172587 -0.200002 -1.54346
-
--0.181079 0.519323 0.835173
-0.896618 -0.261748 0.35716
-0.404086 0.813506 -0.418237
--0.0176657 -0.200336 -1.55285
-
--0.156783 0.524819 0.83665
-0.888216 -0.295484 0.351798
-0.431847 0.798282 -0.419826
--0.0180727 -0.20067 -1.56226
-
--0.13231 0.529251 0.838085
-0.878507 -0.328957 0.346428
-0.459041 0.7821 -0.421427
--0.0184797 -0.201004 -1.57169
-
--0.107706 0.532612 0.839478
-0.867501 -0.362117 0.341049
-0.485636 0.764981 -0.423039
--0.0188867 -0.201338 -1.58115
-
--0.0830171 0.534898 0.840828
-0.855206 -0.394911 0.335661
-0.511597 0.746947 -0.424663
--0.0192937 -0.201671 -1.59063
-
--0.0582878 0.536106 0.842136
-0.841634 -0.427289 0.330266
-0.536893 0.728021 -0.426299
--0.0197007 -0.202005 -1.60014
-
--0.0335642 0.536235 0.843401
-0.8268 -0.459201 0.324864
-0.561494 0.708228 -0.427946
--0.0201077 -0.202339 -1.60967
-
--0.00889178 0.535287 0.844623
-0.810719 -0.490596 0.319454
-0.585368 0.687593 -0.429605
--0.0205147 -0.202673 -1.61922
-
-0.0156838 0.533265 0.845803
-0.793409 -0.521424 0.314037
-0.608487 0.666143 -0.431275
--0.0209217 -0.203007 -1.6288
-
-0.040117 0.530174 0.846939
-0.77489 -0.551636 0.308613
-0.630821 0.643905 -0.432957
--0.0213287 -0.203341 -1.6384
-
-0.0643626 0.526021 0.848033
-0.755184 -0.581185 0.303184
-0.652345 0.620908 -0.434649
--0.0217357 -0.203675 -1.64803
-
-0.0883756 0.520814 0.849083
-0.734315 -0.610022 0.297748
-0.673031 0.597181 -0.436353
--0.0221427 -0.204009 -1.65768
-
-0.112111 0.514565 0.85009
-0.712309 -0.638101 0.292306
-0.692855 0.572756 -0.438068
--0.0225497 -0.204343 -1.66736
-
-0.135526 0.507286 0.851054
-0.689192 -0.665376 0.28686
-0.711791 0.547663 -0.439793
--0.0229567 -0.204677 -1.67705
-
-0.158575 0.498992 0.851975
-0.664995 -0.691803 0.281408
-0.729819 0.521935 -0.44153
--0.0233637 -0.205011 -1.68678
-
-0.181216 0.489698 0.852852
-0.63975 -0.717336 0.275951
-0.746914 0.495605 -0.443277
--0.0237707 -0.205345 -1.69653
-
-0.203407 0.479424 0.853685
-0.613488 -0.741935 0.27049
-0.763058 0.468707 -0.445035
--0.0241777 -0.205679 -1.7063
-
-0.225105 0.468188 0.854475
-0.586246 -0.765557 0.265025
-0.778231 0.441274 -0.446804
--0.0245847 -0.206013 -1.71609
-
-0.246271 0.456012 0.855222
-0.55806 -0.788163 0.259556
-0.792414 0.413344 -0.448583
--0.0249917 -0.206347 -1.72591
-
-0.266863 0.44292 0.855924
-0.528967 -0.809713 0.254083
-0.805592 0.38495 -0.450373
--0.0253987 -0.206681 -1.73576
-
-0.286844 0.428936 0.856583
-0.499009 -0.830171 0.248608
-0.817747 0.356131 -0.452172
--0.0258057 -0.207015 -1.74563
-
-0.306174 0.414089 0.857198
-0.468226 -0.849501 0.24313
-0.828868 0.326922 -0.453982
--0.0262127 -0.207349 -1.75552
-
-0.324818 0.398404 0.857769
-0.436661 -0.867669 0.237649
-0.83894 0.297362 -0.455803
--0.0266197 -0.207683 -1.76544
-
-0.34274 0.381913 0.858296
-0.404359 -0.884643 0.232166
-0.847952 0.267487 -0.457633
--0.0270267 -0.208017 -1.77538
-
-0.359905 0.364647 0.858778
-0.371366 -0.900391 0.226681
-0.855895 0.237337 -0.459473
--0.0274337 -0.208351 -1.78534
-
-0.376281 0.346639 0.859217
-0.337728 -0.914884 0.221194
-0.862759 0.20695 -0.461323
--0.0278407 -0.208685 -1.79533
-
-0.391835 0.327922 0.859612
-0.303494 -0.928096 0.215707
-0.868537 0.176365 -0.463183
--0.0282477 -0.209019 -1.80535
-
-0.406537 0.308533 0.859962
-0.268713 -0.940001 0.210219
-0.873224 0.145621 -0.465052
--0.0286547 -0.209353 -1.81539
-
-0.420359 0.288509 0.860268
-0.233436 -0.950575 0.20473
-0.876816 0.114757 -0.466931
--0.0290617 -0.209687 -1.82545
-
-0.433273 0.267886 0.86053
-0.197714 -0.959798 0.199241
-0.879309 0.0838135 -0.468819
--0.0294687 -0.210021 -1.83553
-
-0.445254 0.246705 0.860747
-0.161601 -0.967649 0.193752
-0.880701 0.0528288 -0.470717
--0.0298757 -0.210355 -1.84564
-
-0.456277 0.225007 0.86092
-0.125149 -0.974112 0.188263
-0.880993 0.0218428 -0.472624
--0.0302827 -0.210688 -1.85578
-
-0.46632 0.202832 0.861049
-0.0884121 -0.979171 0.182776
-0.880187 -0.00910486 -0.47454
--0.0306897 -0.211022 -1.86594
-
-0.475364 0.180222 0.861133
-0.051446 -0.982813 0.177289
-0.878284 -0.0399749 -0.476465
--0.0310967 -0.211356 -1.87612
-
-0.483388 0.157222 0.861172
-0.014306 -0.985027 0.171804
-0.875289 -0.0707281 -0.478399
--0.0315037 -0.21169 -1.88633
-
-0.490376 0.133876 0.861167
--0.0229519 -0.985805 0.166321
-0.871209 -0.101325 -0.480342
--0.0319107 -0.212024 -1.89656
-
-0.496314 0.110227 0.861117
--0.0602713 -0.985138 0.16084
-0.866049 -0.131728 -0.482294
--0.0323177 -0.212358 -1.90682
-
-0.501187 0.0863219 0.861023
--0.0975953 -0.983025 0.155362
-0.859818 -0.161897 -0.484254
--0.0327247 -0.212692 -1.9171
-
-0.504984 0.0622067 0.860884
--0.134867 -0.979462 0.149886
-0.852527 -0.191795 -0.486223
--0.0331317 -0.213026 -1.9274
-
-0.507697 0.0379279 0.8607
--0.172028 -0.974449 0.144414
-0.844186 -0.221383 -0.4882
--0.0335387 -0.21336 -1.93773
-
-0.509318 0.0135326 0.860472
--0.209023 -0.96799 0.138945
-0.834808 -0.250625 -0.490186
--0.0339457 -0.213694 -1.94808
-
-0.509841 -0.0109318 0.860199
--0.245792 -0.960088 0.13348
-0.824408 -0.279484 -0.492179
--0.0343527 -0.214028 -1.95846
-
-0.509264 -0.0354176 0.859881
--0.28228 -0.950752 0.12802
-0.813 -0.307923 -0.494181
--0.0347597 -0.214362 -1.96886
-
-0.507584 -0.059877 0.859519
--0.318429 -0.93999 0.122563
-0.800601 -0.335907 -0.496191
--0.0351667 -0.214696 -1.97928
-
-0.504804 -0.0842621 0.859112
--0.354182 -0.927815 0.117112
-0.787228 -0.3634 -0.498208
--0.0355737 -0.21503 -1.98973
-
-0.500925 -0.108525 0.85866
--0.389482 -0.91424 0.111667
-0.772902 -0.390369 -0.500234
--0.0359807 -0.215364 -2.0002
-
-0.495952 -0.132617 0.858163
--0.424275 -0.899281 0.106226
-0.757643 -0.41678 -0.502266
--0.0363877 -0.215698 -2.0107
-
-0.489893 -0.156492 0.857622
--0.458504 -0.882958 0.100792
-0.741471 -0.4426 -0.504307
--0.0367947 -0.216032 -2.02122
-
-0.482755 -0.180102 0.857036
--0.492114 -0.865291 0.0953642
-0.724411 -0.467797 -0.506355
--0.0372017 -0.216366 -2.03177
-
-0.474552 -0.203398 0.856405
--0.525052 -0.846304 0.089943
-0.706485 -0.49234 -0.50841
--0.0376087 -0.2167 -2.04234
-
-0.465294 -0.226336 0.85573
--0.557265 -0.826021 0.0845289
-0.687718 -0.516199 -0.510472
--0.0380157 -0.217034 -2.05293
-
-0.454998 -0.248869 0.855009
--0.588701 -0.80447 0.0791221
-0.668138 -0.539345 -0.512541
--0.0384227 -0.217368 -2.06355
-
-0.44368 -0.270951 0.854244
--0.619307 -0.78168 0.0737231
-0.647771 -0.561749 -0.514618
--0.0388297 -0.217702 -2.0742
-
-0.43136 -0.292537 0.853435
--0.649035 -0.757684 0.0683321
-0.626644 -0.583384 -0.516701
--0.0392367 -0.218036 -2.08486
-
-0.418057 -0.313583 0.852581
--0.677834 -0.732515 0.0629497
-0.604788 -0.604225 -0.51879
--0.0396437 -0.21837 -2.09555
-
-0.403796 -0.334046 0.851682
--0.705659 -0.706208 0.057576
-0.582232 -0.624246 -0.520887
--0.0400507 -0.218704 -2.10627
-
-0.388601 -0.353884 0.850738
--0.732462 -0.678803 0.0522115
-0.559007 -0.643423 -0.52299
--0.0404577 -0.219038 -2.11701
-
-0.372498 -0.373054 0.84975
--0.758199 -0.650337 0.0468565
-0.535144 -0.661734 -0.525099
--0.0408647 -0.219372 -2.12777
-
-0.355515 -0.391518 0.848718
--0.782827 -0.620854 0.0415114
-0.510677 -0.679157 -0.527214
--0.0412717 -0.219705 -2.13856
-
-0.337684 -0.409236 0.847641
--0.806303 -0.590395 0.0361765
-0.485638 -0.695672 -0.529336
--0.0416787 -0.220039 -2.14937
-
-0.319035 -0.42617 0.846519
--0.828589 -0.559007 0.0308522
-0.460062 -0.71126 -0.531463
--0.0420857 -0.220373 -2.16021
-
-0.299603 -0.442284 0.845354
--0.849646 -0.526735 0.0255388
-0.433982 -0.725903 -0.533596
--0.0424927 -0.220707 -2.17107
-
-0.279421 -0.457543 0.844144
--0.869437 -0.493629 0.0202368
-0.407434 -0.739584 -0.535735
--0.0428997 -0.221041 -2.18195
-
-0.258528 -0.471913 0.842889
--0.887929 -0.459738 0.0149463
-0.380455 -0.75229 -0.53788
--0.0433067 -0.221375 -2.19286
-
-0.23696 -0.485361 0.84159
--0.905089 -0.425113 0.00966796
-0.353079 -0.764005 -0.54003
--0.0437137 -0.221709 -2.20379
-
-0.214758 -0.497859 0.840247
--0.920886 -0.389808 0.00440195
-0.325343 -0.774717 -0.542185
--0.0441207 -0.222043 -2.21475
-
-0.191963 -0.509376 0.83886
--0.935292 -0.353876 -0.000851335
-0.297286 -0.784416 -0.544346
--0.0445277 -0.222377 -2.22573
-
-0.168616 -0.519885 0.837429
--0.948282 -0.317372 -0.00609153
-0.268943 -0.793092 -0.546512
--0.0449347 -0.222711 -2.23674
-
-0.144762 -0.529362 0.835954
--0.95983 -0.280353 -0.0113183
-0.240354 -0.800736 -0.548682
--0.0453417 -0.223045 -2.24777
-
-0.120444 -0.537783 0.834435
--0.969917 -0.242876 -0.0165312
-0.211554 -0.807341 -0.550858
--0.0457487 -0.223379 -2.25882
-
-0.0957082 -0.545127 0.832872
--0.978521 -0.205 -0.02173
-0.182584 -0.812903 -0.553038
--0.0461557 -0.223713 -2.2699
-
-0.0706016 -0.551373 0.831266
--0.985626 -0.166783 -0.0269142
-0.153481 -0.817417 -0.555223
--0.0465627 -0.224047 -2.281
-
-0.0451714 -0.556505 0.829616
--0.991218 -0.128286 -0.0320836
-0.124283 -0.820881 -0.557412
--0.0469696 -0.224381 -2.29213
-
-0.0194661 -0.560506 0.827922
--0.995284 -0.0895695 -0.0372377
-0.0950285 -0.823293 -0.559606
--0.0473766 -0.224715 -2.30328
-
--0.00646536 -0.563363 0.826184
--0.997815 -0.0506945 -0.0423762
-0.0657562 -0.824653 -0.561804
--0.0477836 -0.225049 -2.31445
-
--0.0325732 -0.565064 0.824404
--0.998803 -0.0117226 -0.0474988
-0.0365041 -0.824964 -0.564006
--0.0481906 -0.225383 -2.32565
-
--0.058807 -0.565601 0.82258
--0.998243 0.027284 -0.0526051
-0.00731026 -0.824227 -0.566212
--0.0485976 -0.225717 -2.33687
-
--0.0851162 -0.564966 0.820712
--0.996133 0.066263 -0.0576947
--0.0217873 -0.822449 -0.568421
--0.0490046 -0.226051 -2.34812
-
--0.11145 -0.563154 0.818802
--0.992473 0.105152 -0.0627672
--0.050751 -0.819634 -0.570635
--0.0494116 -0.226385 -2.35939
-
--0.137756 -0.560163 0.816848
--0.987267 0.143888 -0.0678224
--0.0795435 -0.81579 -0.572851
--0.0498186 -0.226719 -2.37069
-
--0.163983 -0.555991 0.814852
--0.980519 0.18241 -0.0728598
--0.108128 -0.810926 -0.575072
--0.0502256 -0.227053 -2.38201
-
--0.190079 -0.55064 0.812813
--0.972238 0.220654 -0.0778792
--0.136467 -0.805051 -0.577295
--0.0506326 -0.227387 -2.39335
-
--0.215993 -0.544116 0.810731
--0.962434 0.258559 -0.0828801
--0.164525 -0.798176 -0.579522
--0.0510396 -0.227721 -2.40472
-
--0.241674 -0.536422 0.808607
--0.951119 0.296062 -0.0878621
--0.192267 -0.790315 -0.581752
--0.0514466 -0.228055 -2.41611
-
--0.267068 -0.527569 0.80644
--0.93831 0.333103 -0.0928251
--0.219656 -0.781482 -0.583984
--0.0518536 -0.228389 -2.42753
-
--0.292126 -0.517566 0.804231
--0.924024 0.369622 -0.0977685
--0.24666 -0.77169 -0.58622
--0.0522606 -0.228723 -2.43897
-
--0.316797 -0.506426 0.80198
--0.908283 0.405557 -0.102692
--0.273242 -0.760957 -0.588458
--0.0526676 -0.229056 -2.45043
-
--0.34103 -0.494165 0.799687
--0.891109 0.440849 -0.107595
--0.299372 -0.749301 -0.590698
--0.0530746 -0.22939 -2.46192
-
--0.364776 -0.4808 0.797352
--0.872527 0.475442 -0.112478
--0.325015 -0.73674 -0.592941
--0.0534816 -0.229724 -2.47344
-
--0.387985 -0.46635 0.794975
--0.852566 0.509276 -0.11734
--0.35014 -0.723295 -0.595186
--0.0538886 -0.230058 -2.48497
-
--0.41061 -0.450836 0.792557
--0.831256 0.542297 -0.12218
--0.374717 -0.708986 -0.597433
--0.0542956 -0.230392 -2.49654
-
--0.432602 -0.434283 0.790097
--0.808629 0.574448 -0.126999
--0.398716 -0.693836 -0.599682
--0.0547026 -0.230726 -2.50812
-
--0.453916 -0.416717 0.787596
--0.784721 0.605676 -0.131796
--0.422106 -0.677867 -0.601932
--0.0551096 -0.23106 -2.51973
-
--0.474506 -0.398164 0.785054
--0.759568 0.635929 -0.136571
--0.44486 -0.661105 -0.604185
--0.0555166 -0.231394 -2.53137
-
--0.494328 -0.378656 0.78247
--0.733209 0.665155 -0.141323
--0.466952 -0.643574 -0.606439
--0.0559236 -0.231728 -2.54302
-
--0.513338 -0.358223 0.779846
--0.705687 0.693307 -0.146052
--0.488354 -0.625302 -0.608694
--0.0563306 -0.232062 -2.55471
-
--0.531495 -0.3369 0.777182
--0.677045 0.720335 -0.150757
--0.509041 -0.606314 -0.610951
--0.0567376 -0.232396 -2.56641
-
--0.548759 -0.314721 0.774477
--0.647328 0.746193 -0.155439
--0.528989 -0.586639 -0.613208
--0.0571446 -0.23273 -2.57814
-
--0.56509 -0.291726 0.771731
--0.616584 0.770839 -0.160097
--0.548176 -0.566307 -0.615467
--0.0575516 -0.233064 -2.5899
-
--0.580452 -0.267952 0.768946
--0.584862 0.794229 -0.164731
--0.56658 -0.545345 -0.617726
--0.0579586 -0.233398 -2.60168
-
--0.594808 -0.24344 0.766121
--0.552213 0.816324 -0.169339
--0.584179 -0.523786 -0.619987
--0.0583656 -0.233732 -2.61348
-
--0.608124 -0.218233 0.763255
--0.518689 0.837086 -0.173923
--0.600954 -0.501659 -0.622247
--0.0587726 -0.234066 -2.62531
-
--0.62037 -0.192375 0.760351
--0.484346 0.856477 -0.178482
--0.616888 -0.478997 -0.624509
--0.0591796 -0.2344 -2.63716
-
--0.631513 -0.165912 0.757407
--0.449239 0.874466 -0.183014
--0.631962 -0.455832 -0.62677
--0.0595866 -0.234734 -2.64904
-
--0.641525 -0.138889 0.754424
--0.413425 0.891019 -0.187521
--0.646162 -0.432197 -0.629032
--0.0599936 -0.235068 -2.66094
-
--0.650381 -0.111356 0.751402
--0.376964 0.906109 -0.192001
--0.659472 -0.408125 -0.631293
--0.0604006 -0.235402 -2.67286
-
--0.658055 -0.0833609 0.748341
--0.339914 0.919709 -0.196454
--0.671879 -0.38365 -0.633555
--0.0608076 -0.235736 -2.68481
-
--0.664526 -0.0549551 0.745242
--0.302338 0.931793 -0.200881
--0.683372 -0.358805 -0.635816
--0.0612146 -0.23607 -2.69678
-
--0.669773 -0.02619 0.742104
--0.264297 0.942342 -0.20528
--0.693939 -0.333626 -0.638077
--0.0616216 -0.236404 -2.70878
-
--0.673778 0.00288213 0.738928
--0.225854 0.951334 -0.209651
--0.703572 -0.308148 -0.640337
--0.0620286 -0.236738 -2.7208
-
--0.676525 0.0322078 0.735715
--0.187073 0.958755 -0.213994
--0.712262 -0.282404 -0.642596
--0.0624356 -0.237072 -2.73285
-
--0.678001 0.0617328 0.732464
--0.148018 0.964589 -0.218309
--0.720003 -0.256432 -0.644855
--0.0628426 -0.237406 -2.74492
-
--0.678196 0.0914025 0.729175
--0.108756 0.968826 -0.222595
--0.726789 -0.230265 -0.647113
--0.0632496 -0.23774 -2.75701
-
--0.677099 0.121161 0.725849
--0.0693511 0.971457 -0.226852
--0.732617 -0.20394 -0.649369
--0.0636566 -0.238073 -2.76913
-
--0.674704 0.150954 0.722487
--0.0298702 0.972476 -0.23108
--0.737483 -0.177492 -0.651625
--0.0640636 -0.238407 -2.78127
-
--0.671009 0.180723 0.719087
-0.00962062 0.97188 -0.235279
--0.741387 -0.150956 -0.653879
--0.0644706 -0.238741 -2.79344
-
--0.66601 0.210413 0.715651
-0.0490547 0.969669 -0.239447
--0.744328 -0.124368 -0.656131
--0.0648776 -0.239075 -2.80563
-
--0.659709 0.239968 0.712179
-0.0883653 0.965846 -0.243585
--0.746308 -0.0977635 -0.658382
--0.0652846 -0.239409 -2.81784
-
--0.65211 0.269329 0.708671
-0.127486 0.960414 -0.247693
--0.747329 -0.0711772 -0.660631
--0.0656916 -0.239743 -2.83008
-
--0.643217 0.298441 0.705127
-0.16635 0.953383 -0.25177
--0.747395 -0.0446443 -0.662878
--0.0660986 -0.240077 -2.84234
-
--0.63304 0.327248 0.701548
-0.204892 0.944763 -0.255815
--0.746512 -0.0181993 -0.665123
--0.0665056 -0.240411 -2.85463
-
--0.621588 0.355692 0.697934
-0.243046 0.934568 -0.259829
--0.744685 0.00812338 -0.667366
--0.0669126 -0.240745 -2.86694
-
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/falling/torus1.tris b/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/falling/torus1.tris
deleted file mode 100644
index cfb261e314c2ecc53768821833210de385db29d7..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/falling/torus1.tris
+++ /dev/null
@@ -1,5329 +0,0 @@
-1332
-0.46 0 0
-0.453383 0.0777404 0.033314
-0.453969 0 0.034202
-
-0.447439 0.0767212 0.067516
-0.453969 0 0.034202
-0.453383 0.0777404 0.033314
-
-0.453969 0 0.034202
-0.447439 0.0767212 0.067516
-0.436604 0 0.0642788
-
-0.430324 0.0737865 0.0975927
-0.436604 0 0.0642788
-0.447439 0.0767212 0.067516
-
-0.436604 0 0.0642788
-0.430324 0.0737865 0.0975927
-0.41 0 0.0866025
-
-0.404103 0.0692903 0.119917
-0.41 0 0.0866025
-0.430324 0.0737865 0.0975927
-
-0.41 0 0.0866025
-0.404103 0.0692903 0.119917
-0.377365 0 0.0984808
-
-0.371937 0.063775 0.131795
-0.377365 0 0.0984808
-0.404103 0.0692903 0.119917
-
-0.377365 0 0.0984808
-0.371937 0.063775 0.131795
-0.342635 0 0.0984808
-
-0.337707 0.0579056 0.131795
-0.342635 0 0.0984808
-0.371937 0.063775 0.131795
-
-0.342635 0 0.0984808
-0.337707 0.0579056 0.131795
-0.31 0 0.0866025
-
-0.305541 0.0523903 0.119917
-0.31 0 0.0866025
-0.337707 0.0579056 0.131795
-
-0.31 0 0.0866025
-0.305541 0.0523903 0.119917
-0.283396 0 0.0642788
-
-0.279319 0.0478941 0.0975927
-0.283396 0 0.0642788
-0.305541 0.0523903 0.119917
-
-0.283396 0 0.0642788
-0.279319 0.0478941 0.0975927
-0.266031 0 0.034202
-
-0.262204 0.0449594 0.067516
-0.266031 0 0.034202
-0.279319 0.0478941 0.0975927
-
-0.266031 0 0.034202
-0.262204 0.0449594 0.067516
-0.26 0 0
-
-0.25626 0.0439402 0.033314
-0.26 0 0
-0.262204 0.0449594 0.067516
-
-0.26 0 0
-0.25626 0.0439402 0.033314
-0.266031 0 -0.034202
-
-0.262204 0.0449594 -0.000888035
-0.266031 0 -0.034202
-0.25626 0.0439402 0.033314
-
-0.266031 0 -0.034202
-0.262204 0.0449594 -0.000888035
-0.283396 0 -0.0642788
-
-0.279319 0.0478941 -0.0309648
-0.283396 0 -0.0642788
-0.262204 0.0449594 -0.000888035
-
-0.283396 0 -0.0642788
-0.279319 0.0478941 -0.0309648
-0.31 0 -0.0866025
-
-0.305541 0.0523903 -0.0532886
-0.31 0 -0.0866025
-0.279319 0.0478941 -0.0309648
-
-0.31 0 -0.0866025
-0.305541 0.0523903 -0.0532886
-0.342635 0 -0.0984808
-
-0.337707 0.0579056 -0.0651668
-0.342635 0 -0.0984808
-0.305541 0.0523903 -0.0532886
-
-0.342635 0 -0.0984808
-0.337707 0.0579056 -0.0651668
-0.377365 0 -0.0984808
-
-0.371937 0.063775 -0.0651668
-0.377365 0 -0.0984808
-0.337707 0.0579056 -0.0651668
-
-0.377365 0 -0.0984808
-0.371937 0.063775 -0.0651668
-0.41 0 -0.0866025
-
-0.404103 0.0692903 -0.0532886
-0.41 0 -0.0866025
-0.371937 0.063775 -0.0651668
-
-0.41 0 -0.0866025
-0.404103 0.0692903 -0.0532886
-0.436604 0 -0.0642788
-
-0.430324 0.0737865 -0.0309648
-0.436604 0 -0.0642788
-0.404103 0.0692903 -0.0532886
-
-0.436604 0 -0.0642788
-0.430324 0.0737865 -0.0309648
-0.453969 0 -0.034202
-
-0.447439 0.0767212 -0.000888035
-0.453969 0 -0.034202
-0.430324 0.0737865 -0.0309648
-
-0.453969 0 -0.034202
-0.447439 0.0767212 -0.000888035
-0.46 0 0
-
-0.453383 0.0777404 0.033314
-0.46 0 0
-0.447439 0.0767212 -0.000888035
-
-0.453383 0.0777404 0.033314
-0.433724 0.153244 0.062822
-0.447439 0.0767212 0.067516
-
-0.428037 0.151235 0.097024
-0.447439 0.0767212 0.067516
-0.433724 0.153244 0.062822
-
-0.447439 0.0767212 0.067516
-0.428037 0.151235 0.097024
-0.430324 0.0737865 0.0975927
-
-0.411664 0.14545 0.127101
-0.430324 0.0737865 0.0975927
-0.428037 0.151235 0.097024
-
-0.430324 0.0737865 0.0975927
-0.411664 0.14545 0.127101
-0.404103 0.0692903 0.119917
-
-0.38658 0.136587 0.149425
-0.404103 0.0692903 0.119917
-0.411664 0.14545 0.127101
-
-0.404103 0.0692903 0.119917
-0.38658 0.136587 0.149425
-0.371937 0.063775 0.131795
-
-0.355809 0.125715 0.161303
-0.371937 0.063775 0.131795
-0.38658 0.136587 0.149425
-
-0.371937 0.063775 0.131795
-0.355809 0.125715 0.161303
-0.337707 0.0579056 0.131795
-
-0.323063 0.114145 0.161303
-0.337707 0.0579056 0.131795
-0.355809 0.125715 0.161303
-
-0.337707 0.0579056 0.131795
-0.323063 0.114145 0.161303
-0.305541 0.0523903 0.119917
-
-0.292292 0.103273 0.149425
-0.305541 0.0523903 0.119917
-0.323063 0.114145 0.161303
-
-0.305541 0.0523903 0.119917
-0.292292 0.103273 0.149425
-0.279319 0.0478941 0.0975927
-
-0.267207 0.0944103 0.127101
-0.279319 0.0478941 0.0975927
-0.292292 0.103273 0.149425
-
-0.279319 0.0478941 0.0975927
-0.267207 0.0944103 0.127101
-0.262204 0.0449594 0.067516
-
-0.250834 0.0886254 0.097024
-0.262204 0.0449594 0.067516
-0.267207 0.0944103 0.127101
-
-0.262204 0.0449594 0.067516
-0.250834 0.0886254 0.097024
-0.25626 0.0439402 0.033314
-
-0.245148 0.0866163 0.062822
-0.25626 0.0439402 0.033314
-0.250834 0.0886254 0.097024
-
-0.25626 0.0439402 0.033314
-0.245148 0.0866163 0.062822
-0.262204 0.0449594 -0.000888035
-
-0.250834 0.0886254 0.02862
-0.262204 0.0449594 -0.000888035
-0.245148 0.0866163 0.062822
-
-0.262204 0.0449594 -0.000888035
-0.250834 0.0886254 0.02862
-0.279319 0.0478941 -0.0309648
-
-0.267207 0.0944103 -0.00145676
-0.279319 0.0478941 -0.0309648
-0.250834 0.0886254 0.02862
-
-0.279319 0.0478941 -0.0309648
-0.267207 0.0944103 -0.00145676
-0.305541 0.0523903 -0.0532886
-
-0.292292 0.103273 -0.0237805
-0.305541 0.0523903 -0.0532886
-0.267207 0.0944103 -0.00145676
-
-0.305541 0.0523903 -0.0532886
-0.292292 0.103273 -0.0237805
-0.337707 0.0579056 -0.0651668
-
-0.323063 0.114145 -0.0356588
-0.337707 0.0579056 -0.0651668
-0.292292 0.103273 -0.0237805
-
-0.337707 0.0579056 -0.0651668
-0.323063 0.114145 -0.0356588
-0.371937 0.063775 -0.0651668
-
-0.355809 0.125715 -0.0356588
-0.371937 0.063775 -0.0651668
-0.323063 0.114145 -0.0356588
-
-0.371937 0.063775 -0.0651668
-0.355809 0.125715 -0.0356588
-0.404103 0.0692903 -0.0532886
-
-0.38658 0.136587 -0.0237805
-0.404103 0.0692903 -0.0532886
-0.355809 0.125715 -0.0356588
-
-0.404103 0.0692903 -0.0532886
-0.38658 0.136587 -0.0237805
-0.430324 0.0737865 -0.0309648
-
-0.411664 0.14545 -0.00145676
-0.430324 0.0737865 -0.0309648
-0.38658 0.136587 -0.0237805
-
-0.430324 0.0737865 -0.0309648
-0.411664 0.14545 -0.00145676
-0.447439 0.0767212 -0.000888035
-
-0.428037 0.151235 0.02862
-0.447439 0.0767212 -0.000888035
-0.411664 0.14545 -0.00145676
-
-0.447439 0.0767212 -0.000888035
-0.428037 0.151235 0.02862
-0.453383 0.0777404 0.033314
-
-0.433724 0.153244 0.062822
-0.453383 0.0777404 0.033314
-0.428037 0.151235 0.02862
-
-0.433724 0.153244 0.062822
-0.401586 0.22434 0.0851529
-0.428037 0.151235 0.097024
-
-0.396322 0.221399 0.119355
-0.428037 0.151235 0.097024
-0.401586 0.22434 0.0851529
-
-0.428037 0.151235 0.097024
-0.396322 0.221399 0.119355
-0.411664 0.14545 0.127101
-
-0.381162 0.21293 0.149432
-0.411664 0.14545 0.127101
-0.396322 0.221399 0.119355
-
-0.411664 0.14545 0.127101
-0.381162 0.21293 0.149432
-0.38658 0.136587 0.149425
-
-0.357936 0.199955 0.171755
-0.38658 0.136587 0.149425
-0.381162 0.21293 0.149432
-
-0.38658 0.136587 0.149425
-0.357936 0.199955 0.171755
-0.355809 0.125715 0.161303
-
-0.329445 0.184039 0.183634
-0.355809 0.125715 0.161303
-0.357936 0.199955 0.171755
-
-0.355809 0.125715 0.161303
-0.329445 0.184039 0.183634
-0.323063 0.114145 0.161303
-
-0.299125 0.167101 0.183634
-0.323063 0.114145 0.161303
-0.329445 0.184039 0.183634
-
-0.323063 0.114145 0.161303
-0.299125 0.167101 0.183634
-0.292292 0.103273 0.149425
-
-0.270634 0.151185 0.171755
-0.292292 0.103273 0.149425
-0.299125 0.167101 0.183634
-
-0.292292 0.103273 0.149425
-0.270634 0.151185 0.171755
-0.267207 0.0944103 0.127101
-
-0.247408 0.138211 0.149432
-0.267207 0.0944103 0.127101
-0.270634 0.151185 0.171755
-
-0.267207 0.0944103 0.127101
-0.247408 0.138211 0.149432
-0.250834 0.0886254 0.097024
-
-0.232249 0.129742 0.119355
-0.250834 0.0886254 0.097024
-0.247408 0.138211 0.149432
-
-0.250834 0.0886254 0.097024
-0.232249 0.129742 0.119355
-0.245148 0.0866163 0.062822
-
-0.226984 0.126801 0.0851529
-0.245148 0.0866163 0.062822
-0.232249 0.129742 0.119355
-
-0.245148 0.0866163 0.062822
-0.226984 0.126801 0.0851529
-0.250834 0.0886254 0.02862
-
-0.232249 0.129742 0.0509509
-0.250834 0.0886254 0.02862
-0.226984 0.126801 0.0851529
-
-0.250834 0.0886254 0.02862
-0.232249 0.129742 0.0509509
-0.267207 0.0944103 -0.00145676
-
-0.247408 0.138211 0.0208742
-0.267207 0.0944103 -0.00145676
-0.232249 0.129742 0.0509509
-
-0.267207 0.0944103 -0.00145676
-0.247408 0.138211 0.0208742
-0.292292 0.103273 -0.0237805
-
-0.270634 0.151185 -0.00144963
-0.292292 0.103273 -0.0237805
-0.247408 0.138211 0.0208742
-
-0.292292 0.103273 -0.0237805
-0.270634 0.151185 -0.00144963
-0.323063 0.114145 -0.0356588
-
-0.299125 0.167101 -0.0133279
-0.323063 0.114145 -0.0356588
-0.270634 0.151185 -0.00144963
-
-0.323063 0.114145 -0.0356588
-0.299125 0.167101 -0.0133279
-0.355809 0.125715 -0.0356588
-
-0.329445 0.184039 -0.0133279
-0.355809 0.125715 -0.0356588
-0.299125 0.167101 -0.0133279
-
-0.355809 0.125715 -0.0356588
-0.329445 0.184039 -0.0133279
-0.38658 0.136587 -0.0237805
-
-0.357936 0.199955 -0.00144963
-0.38658 0.136587 -0.0237805
-0.329445 0.184039 -0.0133279
-
-0.38658 0.136587 -0.0237805
-0.357936 0.199955 -0.00144963
-0.411664 0.14545 -0.00145676
-
-0.381162 0.21293 0.0208742
-0.411664 0.14545 -0.00145676
-0.357936 0.199955 -0.00144963
-
-0.411664 0.14545 -0.00145676
-0.381162 0.21293 0.0208742
-0.428037 0.151235 0.02862
-
-0.396322 0.221399 0.0509509
-0.428037 0.151235 0.02862
-0.381162 0.21293 0.0208742
-
-0.428037 0.151235 0.02862
-0.396322 0.221399 0.0509509
-0.433724 0.153244 0.062822
-
-0.401586 0.22434 0.0851529
-0.433724 0.153244 0.062822
-0.396322 0.221399 0.0509509
-
-0.401586 0.22434 0.0851529
-0.357896 0.288981 0.0977555
-0.396322 0.221399 0.119355
-
-0.353204 0.285193 0.131958
-0.396322 0.221399 0.119355
-0.357896 0.288981 0.0977555
-
-0.396322 0.221399 0.119355
-0.353204 0.285193 0.131958
-0.381162 0.21293 0.149432
-
-0.339694 0.274284 0.162034
-0.381162 0.21293 0.149432
-0.353204 0.285193 0.131958
-
-0.381162 0.21293 0.149432
-0.339694 0.274284 0.162034
-0.357936 0.199955 0.171755
-
-0.318995 0.25757 0.184358
-0.357936 0.199955 0.171755
-0.339694 0.274284 0.162034
-
-0.357936 0.199955 0.171755
-0.318995 0.25757 0.184358
-0.329445 0.184039 0.183634
-
-0.293603 0.237068 0.196236
-0.329445 0.184039 0.183634
-0.318995 0.25757 0.184358
-
-0.329445 0.184039 0.183634
-0.293603 0.237068 0.196236
-0.299125 0.167101 0.183634
-
-0.266582 0.21525 0.196236
-0.299125 0.167101 0.183634
-0.293603 0.237068 0.196236
-
-0.299125 0.167101 0.183634
-0.266582 0.21525 0.196236
-0.270634 0.151185 0.171755
-
-0.241191 0.194748 0.184358
-0.270634 0.151185 0.171755
-0.266582 0.21525 0.196236
-
-0.270634 0.151185 0.171755
-0.241191 0.194748 0.184358
-0.247408 0.138211 0.149432
-
-0.220492 0.178035 0.162034
-0.247408 0.138211 0.149432
-0.241191 0.194748 0.184358
-
-0.247408 0.138211 0.149432
-0.220492 0.178035 0.162034
-0.232249 0.129742 0.119355
-
-0.206981 0.167126 0.131958
-0.232249 0.129742 0.119355
-0.220492 0.178035 0.162034
-
-0.232249 0.129742 0.119355
-0.206981 0.167126 0.131958
-0.226984 0.126801 0.0851529
-
-0.202289 0.163337 0.0977555
-0.226984 0.126801 0.0851529
-0.206981 0.167126 0.131958
-
-0.226984 0.126801 0.0851529
-0.202289 0.163337 0.0977555
-0.232249 0.129742 0.0509509
-
-0.206981 0.167126 0.0635535
-0.232249 0.129742 0.0509509
-0.202289 0.163337 0.0977555
-
-0.232249 0.129742 0.0509509
-0.206981 0.167126 0.0635535
-0.247408 0.138211 0.0208742
-
-0.220492 0.178035 0.0334768
-0.247408 0.138211 0.0208742
-0.206981 0.167126 0.0635535
-
-0.247408 0.138211 0.0208742
-0.220492 0.178035 0.0334768
-0.270634 0.151185 -0.00144963
-
-0.241191 0.194748 0.011153
-0.270634 0.151185 -0.00144963
-0.220492 0.178035 0.0334768
-
-0.270634 0.151185 -0.00144963
-0.241191 0.194748 0.011153
-0.299125 0.167101 -0.0133279
-
-0.266582 0.21525 -0.000725251
-0.299125 0.167101 -0.0133279
-0.241191 0.194748 0.011153
-
-0.299125 0.167101 -0.0133279
-0.266582 0.21525 -0.000725251
-0.329445 0.184039 -0.0133279
-
-0.293603 0.237068 -0.000725251
-0.329445 0.184039 -0.0133279
-0.266582 0.21525 -0.000725251
-
-0.329445 0.184039 -0.0133279
-0.293603 0.237068 -0.000725251
-0.357936 0.199955 -0.00144963
-
-0.318995 0.25757 0.011153
-0.357936 0.199955 -0.00144963
-0.293603 0.237068 -0.000725251
-
-0.357936 0.199955 -0.00144963
-0.318995 0.25757 0.011153
-0.381162 0.21293 0.0208742
-
-0.339694 0.274284 0.0334768
-0.381162 0.21293 0.0208742
-0.318995 0.25757 0.011153
-
-0.381162 0.21293 0.0208742
-0.339694 0.274284 0.0334768
-0.396322 0.221399 0.0509509
-
-0.353204 0.285193 0.0635535
-0.396322 0.221399 0.0509509
-0.339694 0.274284 0.0334768
-
-0.396322 0.221399 0.0509509
-0.353204 0.285193 0.0635535
-0.401586 0.22434 0.0851529
-
-0.357896 0.288981 0.0977555
-0.401586 0.22434 0.0851529
-0.353204 0.285193 0.0635535
-
-0.357896 0.288981 0.0977555
-0.30391 0.345309 0.09919
-0.353204 0.285193 0.131958
-
-0.299926 0.340782 0.133392
-0.353204 0.285193 0.131958
-0.30391 0.345309 0.09919
-
-0.353204 0.285193 0.131958
-0.299926 0.340782 0.133392
-0.339694 0.274284 0.162034
-
-0.288454 0.327747 0.163469
-0.339694 0.274284 0.162034
-0.299926 0.340782 0.133392
-
-0.339694 0.274284 0.162034
-0.288454 0.327747 0.163469
-0.318995 0.25757 0.184358
-
-0.270877 0.307776 0.185793
-0.318995 0.25757 0.184358
-0.288454 0.327747 0.163469
-
-0.318995 0.25757 0.184358
-0.270877 0.307776 0.185793
-0.293603 0.237068 0.196236
-
-0.249315 0.283277 0.197671
-0.293603 0.237068 0.196236
-0.270877 0.307776 0.185793
-
-0.293603 0.237068 0.196236
-0.249315 0.283277 0.197671
-0.266582 0.21525 0.196236
-
-0.22637 0.257207 0.197671
-0.266582 0.21525 0.196236
-0.249315 0.283277 0.197671
-
-0.266582 0.21525 0.196236
-0.22637 0.257207 0.197671
-0.241191 0.194748 0.184358
-
-0.204809 0.232708 0.185793
-0.241191 0.194748 0.184358
-0.22637 0.257207 0.197671
-
-0.241191 0.194748 0.184358
-0.204809 0.232708 0.185793
-0.220492 0.178035 0.162034
-
-0.187232 0.212737 0.163469
-0.220492 0.178035 0.162034
-0.204809 0.232708 0.185793
-
-0.220492 0.178035 0.162034
-0.187232 0.212737 0.163469
-0.206981 0.167126 0.131958
-
-0.17576 0.199702 0.133392
-0.206981 0.167126 0.131958
-0.187232 0.212737 0.163469
-
-0.206981 0.167126 0.131958
-0.17576 0.199702 0.133392
-0.202289 0.163337 0.0977555
-
-0.171775 0.195175 0.09919
-0.202289 0.163337 0.0977555
-0.17576 0.199702 0.133392
-
-0.202289 0.163337 0.0977555
-0.171775 0.195175 0.09919
-0.206981 0.167126 0.0635535
-
-0.17576 0.199702 0.064988
-0.206981 0.167126 0.0635535
-0.171775 0.195175 0.09919
-
-0.206981 0.167126 0.0635535
-0.17576 0.199702 0.064988
-0.220492 0.178035 0.0334768
-
-0.187232 0.212737 0.0349113
-0.220492 0.178035 0.0334768
-0.17576 0.199702 0.064988
-
-0.220492 0.178035 0.0334768
-0.187232 0.212737 0.0349113
-0.241191 0.194748 0.011153
-
-0.204809 0.232708 0.0125875
-0.241191 0.194748 0.011153
-0.187232 0.212737 0.0349113
-
-0.241191 0.194748 0.011153
-0.204809 0.232708 0.0125875
-0.266582 0.21525 -0.000725251
-
-0.22637 0.257207 0.000709268
-0.266582 0.21525 -0.000725251
-0.204809 0.232708 0.0125875
-
-0.266582 0.21525 -0.000725251
-0.22637 0.257207 0.000709268
-0.293603 0.237068 -0.000725251
-
-0.249315 0.283277 0.000709268
-0.293603 0.237068 -0.000725251
-0.22637 0.257207 0.000709268
-
-0.293603 0.237068 -0.000725251
-0.249315 0.283277 0.000709268
-0.318995 0.25757 0.011153
-
-0.270877 0.307776 0.0125875
-0.318995 0.25757 0.011153
-0.249315 0.283277 0.000709268
-
-0.318995 0.25757 0.011153
-0.270877 0.307776 0.0125875
-0.339694 0.274284 0.0334768
-
-0.288454 0.327747 0.0349113
-0.339694 0.274284 0.0334768
-0.270877 0.307776 0.0125875
-
-0.339694 0.274284 0.0334768
-0.288454 0.327747 0.0349113
-0.353204 0.285193 0.0635535
-
-0.299926 0.340782 0.064988
-0.353204 0.285193 0.0635535
-0.288454 0.327747 0.0349113
-
-0.353204 0.285193 0.0635535
-0.299926 0.340782 0.064988
-0.357896 0.288981 0.0977555
-
-0.30391 0.345309 0.09919
-0.357896 0.288981 0.0977555
-0.299926 0.340782 0.064988
-
-0.30391 0.345309 0.09919
-0.241181 0.391703 0.0892926
-0.299926 0.340782 0.133392
-
-0.238019 0.386568 0.123495
-0.299926 0.340782 0.133392
-0.241181 0.391703 0.0892926
-
-0.299926 0.340782 0.133392
-0.238019 0.386568 0.123495
-0.288454 0.327747 0.163469
-
-0.228915 0.371781 0.153571
-0.288454 0.327747 0.163469
-0.238019 0.386568 0.123495
-
-0.288454 0.327747 0.163469
-0.228915 0.371781 0.153571
-0.270877 0.307776 0.185793
-
-0.214966 0.349127 0.175895
-0.270877 0.307776 0.185793
-0.228915 0.371781 0.153571
-
-0.270877 0.307776 0.185793
-0.214966 0.349127 0.175895
-0.249315 0.283277 0.197671
-
-0.197855 0.321337 0.187773
-0.249315 0.283277 0.197671
-0.214966 0.349127 0.175895
-
-0.249315 0.283277 0.197671
-0.197855 0.321337 0.187773
-0.22637 0.257207 0.197671
-
-0.179646 0.291764 0.187773
-0.22637 0.257207 0.197671
-0.197855 0.321337 0.187773
-
-0.22637 0.257207 0.197671
-0.179646 0.291764 0.187773
-0.204809 0.232708 0.185793
-
-0.162535 0.263974 0.175895
-0.204809 0.232708 0.185793
-0.179646 0.291764 0.187773
-
-0.204809 0.232708 0.185793
-0.162535 0.263974 0.175895
-0.187232 0.212737 0.163469
-
-0.148586 0.24132 0.153571
-0.187232 0.212737 0.163469
-0.162535 0.263974 0.175895
-
-0.187232 0.212737 0.163469
-0.148586 0.24132 0.153571
-0.17576 0.199702 0.133392
-
-0.139482 0.226533 0.123495
-0.17576 0.199702 0.133392
-0.148586 0.24132 0.153571
-
-0.17576 0.199702 0.133392
-0.139482 0.226533 0.123495
-0.171775 0.195175 0.09919
-
-0.13632 0.221398 0.0892926
-0.171775 0.195175 0.09919
-0.139482 0.226533 0.123495
-
-0.171775 0.195175 0.09919
-0.13632 0.221398 0.0892926
-0.17576 0.199702 0.064988
-
-0.139482 0.226533 0.0550906
-0.17576 0.199702 0.064988
-0.13632 0.221398 0.0892926
-
-0.17576 0.199702 0.064988
-0.139482 0.226533 0.0550906
-0.187232 0.212737 0.0349113
-
-0.148586 0.24132 0.0250138
-0.187232 0.212737 0.0349113
-0.139482 0.226533 0.0550906
-
-0.187232 0.212737 0.0349113
-0.148586 0.24132 0.0250138
-0.204809 0.232708 0.0125875
-
-0.162535 0.263974 0.00269005
-0.204809 0.232708 0.0125875
-0.148586 0.24132 0.0250138
-
-0.204809 0.232708 0.0125875
-0.162535 0.263974 0.00269005
-0.22637 0.257207 0.000709268
-
-0.179646 0.291764 -0.00918819
-0.22637 0.257207 0.000709268
-0.162535 0.263974 0.00269005
-
-0.22637 0.257207 0.000709268
-0.179646 0.291764 -0.00918819
-0.249315 0.283277 0.000709268
-
-0.197855 0.321337 -0.00918819
-0.249315 0.283277 0.000709268
-0.179646 0.291764 -0.00918819
-
-0.249315 0.283277 0.000709268
-0.197855 0.321337 -0.00918819
-0.270877 0.307776 0.0125875
-
-0.214966 0.349127 0.00269005
-0.270877 0.307776 0.0125875
-0.197855 0.321337 -0.00918819
-
-0.270877 0.307776 0.0125875
-0.214966 0.349127 0.00269005
-0.288454 0.327747 0.0349113
-
-0.228915 0.371781 0.0250138
-0.288454 0.327747 0.0349113
-0.214966 0.349127 0.00269005
-
-0.288454 0.327747 0.0349113
-0.228915 0.371781 0.0250138
-0.299926 0.340782 0.064988
-
-0.238019 0.386568 0.0550906
-0.299926 0.340782 0.064988
-0.228915 0.371781 0.0250138
-
-0.299926 0.340782 0.064988
-0.238019 0.386568 0.0550906
-0.30391 0.345309 0.09919
-
-0.241181 0.391703 0.0892926
-0.30391 0.345309 0.09919
-0.238019 0.386568 0.0550906
-
-0.241181 0.391703 0.0892926
-0.171514 0.426829 0.0691939
-0.238019 0.386568 0.123495
-
-0.169265 0.421233 0.103396
-0.238019 0.386568 0.123495
-0.171514 0.426829 0.0691939
-
-0.238019 0.386568 0.123495
-0.169265 0.421233 0.103396
-0.228915 0.371781 0.153571
-
-0.162791 0.40512 0.133473
-0.228915 0.371781 0.153571
-0.169265 0.421233 0.103396
-
-0.228915 0.371781 0.153571
-0.162791 0.40512 0.133473
-0.214966 0.349127 0.175895
-
-0.152871 0.380435 0.155796
-0.214966 0.349127 0.175895
-0.162791 0.40512 0.133473
-
-0.214966 0.349127 0.175895
-0.152871 0.380435 0.155796
-0.197855 0.321337 0.187773
-
-0.140703 0.350153 0.167675
-0.197855 0.321337 0.187773
-0.152871 0.380435 0.155796
-
-0.197855 0.321337 0.187773
-0.140703 0.350153 0.167675
-0.179646 0.291764 0.187773
-
-0.127754 0.317927 0.167675
-0.179646 0.291764 0.187773
-0.140703 0.350153 0.167675
-
-0.179646 0.291764 0.187773
-0.127754 0.317927 0.167675
-0.162535 0.263974 0.175895
-
-0.115586 0.287646 0.155796
-0.162535 0.263974 0.175895
-0.127754 0.317927 0.167675
-
-0.162535 0.263974 0.175895
-0.115586 0.287646 0.155796
-0.148586 0.24132 0.153571
-
-0.105666 0.26296 0.133473
-0.148586 0.24132 0.153571
-0.115586 0.287646 0.155796
-
-0.148586 0.24132 0.153571
-0.105666 0.26296 0.133473
-0.139482 0.226533 0.123495
-
-0.0991913 0.246847 0.103396
-0.139482 0.226533 0.123495
-0.105666 0.26296 0.133473
-
-0.139482 0.226533 0.123495
-0.0991913 0.246847 0.103396
-0.13632 0.221398 0.0892926
-
-0.0969427 0.241251 0.0691939
-0.13632 0.221398 0.0892926
-0.0991913 0.246847 0.103396
-
-0.13632 0.221398 0.0892926
-0.0969427 0.241251 0.0691939
-0.139482 0.226533 0.0550906
-
-0.0991913 0.246847 0.0349919
-0.139482 0.226533 0.0550906
-0.0969427 0.241251 0.0691939
-
-0.139482 0.226533 0.0550906
-0.0991913 0.246847 0.0349919
-0.148586 0.24132 0.0250138
-
-0.105666 0.26296 0.00491513
-0.148586 0.24132 0.0250138
-0.0991913 0.246847 0.0349919
-
-0.148586 0.24132 0.0250138
-0.105666 0.26296 0.00491513
-0.162535 0.263974 0.00269005
-
-0.115586 0.287646 -0.0174087
-0.162535 0.263974 0.00269005
-0.105666 0.26296 0.00491513
-
-0.162535 0.263974 0.00269005
-0.115586 0.287646 -0.0174087
-0.179646 0.291764 -0.00918819
-
-0.127754 0.317927 -0.0292869
-0.179646 0.291764 -0.00918819
-0.115586 0.287646 -0.0174087
-
-0.179646 0.291764 -0.00918819
-0.127754 0.317927 -0.0292869
-0.197855 0.321337 -0.00918819
-
-0.140703 0.350153 -0.0292869
-0.197855 0.321337 -0.00918819
-0.127754 0.317927 -0.0292869
-
-0.197855 0.321337 -0.00918819
-0.140703 0.350153 -0.0292869
-0.214966 0.349127 0.00269005
-
-0.152871 0.380435 -0.0174087
-0.214966 0.349127 0.00269005
-0.140703 0.350153 -0.0292869
-
-0.214966 0.349127 0.00269005
-0.152871 0.380435 -0.0174087
-0.228915 0.371781 0.0250138
-
-0.162791 0.40512 0.00491513
-0.228915 0.371781 0.0250138
-0.152871 0.380435 -0.0174087
-
-0.228915 0.371781 0.0250138
-0.162791 0.40512 0.00491513
-0.238019 0.386568 0.0550906
-
-0.169265 0.421233 0.0349919
-0.238019 0.386568 0.0550906
-0.162791 0.40512 0.00491513
-
-0.238019 0.386568 0.0550906
-0.169265 0.421233 0.0349919
-0.241181 0.391703 0.0892926
-
-0.171514 0.426829 0.0691939
-0.241181 0.391703 0.0892926
-0.169265 0.421233 0.0349919
-
-0.171514 0.426829 0.0691939
-0.0969125 0.449675 0.0411901
-0.169265 0.421233 0.103396
-
-0.0956419 0.44378 0.0753921
-0.169265 0.421233 0.103396
-0.0969125 0.449675 0.0411901
-
-0.169265 0.421233 0.103396
-0.0956419 0.44378 0.0753921
-0.162791 0.40512 0.133473
-
-0.0919835 0.426805 0.105469
-0.162791 0.40512 0.133473
-0.0956419 0.44378 0.0753921
-
-0.162791 0.40512 0.133473
-0.0919835 0.426805 0.105469
-0.152871 0.380435 0.155796
-
-0.0863785 0.400798 0.127793
-0.152871 0.380435 0.155796
-0.0919835 0.426805 0.105469
-
-0.152871 0.380435 0.155796
-0.0863785 0.400798 0.127793
-0.140703 0.350153 0.167675
-
-0.0795029 0.368895 0.139671
-0.140703 0.350153 0.167675
-0.0863785 0.400798 0.127793
-
-0.140703 0.350153 0.167675
-0.0795029 0.368895 0.139671
-0.127754 0.317927 0.167675
-
-0.0721861 0.334945 0.139671
-0.127754 0.317927 0.167675
-0.0795029 0.368895 0.139671
-
-0.127754 0.317927 0.167675
-0.0721861 0.334945 0.139671
-0.115586 0.287646 0.155796
-
-0.0653106 0.303042 0.127793
-0.115586 0.287646 0.155796
-0.0721861 0.334945 0.139671
-
-0.115586 0.287646 0.155796
-0.0653106 0.303042 0.127793
-0.105666 0.26296 0.133473
-
-0.0597056 0.277035 0.105469
-0.105666 0.26296 0.133473
-0.0653106 0.303042 0.127793
-
-0.105666 0.26296 0.133473
-0.0597056 0.277035 0.105469
-0.0991913 0.246847 0.103396
-
-0.0560472 0.26006 0.0753921
-0.0991913 0.246847 0.103396
-0.0597056 0.277035 0.105469
-
-0.0991913 0.246847 0.103396
-0.0560472 0.26006 0.0753921
-0.0969427 0.241251 0.0691939
-
-0.0547766 0.254164 0.0411901
-0.0969427 0.241251 0.0691939
-0.0560472 0.26006 0.0753921
-
-0.0969427 0.241251 0.0691939
-0.0547766 0.254164 0.0411901
-0.0991913 0.246847 0.0349919
-
-0.0560472 0.26006 0.00698811
-0.0991913 0.246847 0.0349919
-0.0547766 0.254164 0.0411901
-
-0.0991913 0.246847 0.0349919
-0.0560472 0.26006 0.00698811
-0.105666 0.26296 0.00491513
-
-0.0597056 0.277035 -0.0230886
-0.105666 0.26296 0.00491513
-0.0560472 0.26006 0.00698811
-
-0.105666 0.26296 0.00491513
-0.0597056 0.277035 -0.0230886
-0.115586 0.287646 -0.0174087
-
-0.0653106 0.303042 -0.0454124
-0.115586 0.287646 -0.0174087
-0.0597056 0.277035 -0.0230886
-
-0.115586 0.287646 -0.0174087
-0.0653106 0.303042 -0.0454124
-0.127754 0.317927 -0.0292869
-
-0.0721861 0.334945 -0.0572907
-0.127754 0.317927 -0.0292869
-0.0653106 0.303042 -0.0454124
-
-0.127754 0.317927 -0.0292869
-0.0721861 0.334945 -0.0572907
-0.140703 0.350153 -0.0292869
-
-0.0795029 0.368895 -0.0572907
-0.140703 0.350153 -0.0292869
-0.0721861 0.334945 -0.0572907
-
-0.140703 0.350153 -0.0292869
-0.0795029 0.368895 -0.0572907
-0.152871 0.380435 -0.0174087
-
-0.0863785 0.400798 -0.0454124
-0.152871 0.380435 -0.0174087
-0.0795029 0.368895 -0.0572907
-
-0.152871 0.380435 -0.0174087
-0.0863785 0.400798 -0.0454124
-0.162791 0.40512 0.00491513
-
-0.0919835 0.426805 -0.0230886
-0.162791 0.40512 0.00491513
-0.0863785 0.400798 -0.0454124
-
-0.162791 0.40512 0.00491513
-0.0919835 0.426805 -0.0230886
-0.169265 0.421233 0.0349919
-
-0.0956419 0.44378 0.00698811
-0.169265 0.421233 0.0349919
-0.0919835 0.426805 -0.0230886
-
-0.169265 0.421233 0.0349919
-0.0956419 0.44378 0.00698811
-0.171514 0.426829 0.0691939
-
-0.0969125 0.449675 0.0411901
-0.171514 0.426829 0.0691939
-0.0956419 0.44378 0.00698811
-
-0.0969125 0.449675 0.0411901
-0.019523 0.459586 0.00848059
-0.0956419 0.44378 0.0753921
-
-0.019267 0.45356 0.0426826
-0.0956419 0.44378 0.0753921
-0.019523 0.459586 0.00848059
-
-0.0956419 0.44378 0.0753921
-0.019267 0.45356 0.0426826
-0.0919835 0.426805 0.105469
-
-0.01853 0.436211 0.0727594
-0.0919835 0.426805 0.105469
-0.019267 0.45356 0.0426826
-
-0.0919835 0.426805 0.105469
-0.01853 0.436211 0.0727594
-0.0863785 0.400798 0.127793
-
-0.0174009 0.409631 0.0950831
-0.0863785 0.400798 0.127793
-0.01853 0.436211 0.0727594
-
-0.0863785 0.400798 0.127793
-0.0174009 0.409631 0.0950831
-0.0795029 0.368895 0.139671
-
-0.0160158 0.377025 0.106961
-0.0795029 0.368895 0.139671
-0.0174009 0.409631 0.0950831
-
-0.0795029 0.368895 0.139671
-0.0160158 0.377025 0.106961
-0.0721861 0.334945 0.139671
-
-0.0145418 0.342326 0.106961
-0.0721861 0.334945 0.139671
-0.0160158 0.377025 0.106961
-
-0.0721861 0.334945 0.139671
-0.0145418 0.342326 0.106961
-0.0653106 0.303042 0.127793
-
-0.0131568 0.309721 0.0950831
-0.0653106 0.303042 0.127793
-0.0145418 0.342326 0.106961
-
-0.0653106 0.303042 0.127793
-0.0131568 0.309721 0.0950831
-0.0597056 0.277035 0.105469
-
-0.0120276 0.28314 0.0727594
-0.0597056 0.277035 0.105469
-0.0131568 0.309721 0.0950831
-
-0.0597056 0.277035 0.105469
-0.0120276 0.28314 0.0727594
-0.0560472 0.26006 0.0753921
-
-0.0112907 0.265791 0.0426826
-0.0560472 0.26006 0.0753921
-0.0120276 0.28314 0.0727594
-
-0.0560472 0.26006 0.0753921
-0.0112907 0.265791 0.0426826
-0.0547766 0.254164 0.0411901
-
-0.0110347 0.259766 0.00848059
-0.0547766 0.254164 0.0411901
-0.0112907 0.265791 0.0426826
-
-0.0547766 0.254164 0.0411901
-0.0110347 0.259766 0.00848059
-0.0560472 0.26006 0.00698811
-
-0.0112907 0.265791 -0.0257214
-0.0560472 0.26006 0.00698811
-0.0110347 0.259766 0.00848059
-
-0.0560472 0.26006 0.00698811
-0.0112907 0.265791 -0.0257214
-0.0597056 0.277035 -0.0230886
-
-0.0120276 0.28314 -0.0557982
-0.0597056 0.277035 -0.0230886
-0.0112907 0.265791 -0.0257214
-
-0.0597056 0.277035 -0.0230886
-0.0120276 0.28314 -0.0557982
-0.0653106 0.303042 -0.0454124
-
-0.0131568 0.309721 -0.0781219
-0.0653106 0.303042 -0.0454124
-0.0120276 0.28314 -0.0557982
-
-0.0653106 0.303042 -0.0454124
-0.0131568 0.309721 -0.0781219
-0.0721861 0.334945 -0.0572907
-
-0.0145418 0.342326 -0.0900002
-0.0721861 0.334945 -0.0572907
-0.0131568 0.309721 -0.0781219
-
-0.0721861 0.334945 -0.0572907
-0.0145418 0.342326 -0.0900002
-0.0795029 0.368895 -0.0572907
-
-0.0160158 0.377025 -0.0900002
-0.0795029 0.368895 -0.0572907
-0.0145418 0.342326 -0.0900002
-
-0.0795029 0.368895 -0.0572907
-0.0160158 0.377025 -0.0900002
-0.0863785 0.400798 -0.0454124
-
-0.0174009 0.409631 -0.0781219
-0.0863785 0.400798 -0.0454124
-0.0160158 0.377025 -0.0900002
-
-0.0863785 0.400798 -0.0454124
-0.0174009 0.409631 -0.0781219
-0.0919835 0.426805 -0.0230886
-
-0.01853 0.436211 -0.0557982
-0.0919835 0.426805 -0.0230886
-0.0174009 0.409631 -0.0781219
-
-0.0919835 0.426805 -0.0230886
-0.01853 0.436211 -0.0557982
-0.0956419 0.44378 0.00698811
-
-0.019267 0.45356 -0.0257214
-0.0956419 0.44378 0.00698811
-0.01853 0.436211 -0.0557982
-
-0.0956419 0.44378 0.00698811
-0.019267 0.45356 -0.0257214
-0.0969125 0.449675 0.0411901
-
-0.019523 0.459586 0.00848059
-0.0969125 0.449675 0.0411901
-0.019267 0.45356 -0.0257214
-
-0.019523 0.459586 0.00848059
--0.0584282 0.456274 -0.0251978
-0.019267 0.45356 0.0426826
-
--0.0576622 0.450292 0.00900421
-0.019267 0.45356 0.0426826
--0.0584282 0.456274 -0.0251978
-
-0.019267 0.45356 0.0426826
--0.0576622 0.450292 0.00900421
-0.01853 0.436211 0.0727594
-
--0.0554565 0.433068 0.039081
-0.01853 0.436211 0.0727594
--0.0576622 0.450292 0.00900421
-
-0.01853 0.436211 0.0727594
--0.0554565 0.433068 0.039081
-0.0174009 0.409631 0.0950831
-
--0.0520773 0.406679 0.0614047
-0.0174009 0.409631 0.0950831
--0.0554565 0.433068 0.039081
-
-0.0174009 0.409631 0.0950831
--0.0520773 0.406679 0.0614047
-0.0160158 0.377025 0.106961
-
--0.0479321 0.374308 0.073283
-0.0160158 0.377025 0.106961
--0.0520773 0.406679 0.0614047
-
-0.0160158 0.377025 0.106961
--0.0479321 0.374308 0.073283
-0.0145418 0.342326 0.106961
-
--0.0435208 0.33986 0.073283
-0.0145418 0.342326 0.106961
--0.0479321 0.374308 0.073283
-
-0.0145418 0.342326 0.106961
--0.0435208 0.33986 0.073283
-0.0131568 0.309721 0.0950831
-
--0.0393755 0.307489 0.0614047
-0.0131568 0.309721 0.0950831
--0.0435208 0.33986 0.073283
-
-0.0131568 0.309721 0.0950831
--0.0393755 0.307489 0.0614047
-0.0120276 0.28314 0.0727594
-
--0.0359963 0.2811 0.039081
-0.0120276 0.28314 0.0727594
--0.0393755 0.307489 0.0614047
-
-0.0120276 0.28314 0.0727594
--0.0359963 0.2811 0.039081
-0.0112907 0.265791 0.0426826
-
--0.0337906 0.263876 0.00900421
-0.0112907 0.265791 0.0426826
--0.0359963 0.2811 0.039081
-
-0.0112907 0.265791 0.0426826
--0.0337906 0.263876 0.00900421
-0.0110347 0.259766 0.00848059
-
--0.0330246 0.257894 -0.0251978
-0.0110347 0.259766 0.00848059
--0.0337906 0.263876 0.00900421
-
-0.0110347 0.259766 0.00848059
--0.0330246 0.257894 -0.0251978
-0.0112907 0.265791 -0.0257214
-
--0.0337906 0.263876 -0.0593998
-0.0112907 0.265791 -0.0257214
--0.0330246 0.257894 -0.0251978
-
-0.0112907 0.265791 -0.0257214
--0.0337906 0.263876 -0.0593998
-0.0120276 0.28314 -0.0557982
-
--0.0359963 0.2811 -0.0894766
-0.0120276 0.28314 -0.0557982
--0.0337906 0.263876 -0.0593998
-
-0.0120276 0.28314 -0.0557982
--0.0359963 0.2811 -0.0894766
-0.0131568 0.309721 -0.0781219
-
--0.0393755 0.307489 -0.1118
-0.0131568 0.309721 -0.0781219
--0.0359963 0.2811 -0.0894766
-
-0.0131568 0.309721 -0.0781219
--0.0393755 0.307489 -0.1118
-0.0145418 0.342326 -0.0900002
-
--0.0435208 0.33986 -0.123679
-0.0145418 0.342326 -0.0900002
--0.0393755 0.307489 -0.1118
-
-0.0145418 0.342326 -0.0900002
--0.0435208 0.33986 -0.123679
-0.0160158 0.377025 -0.0900002
-
--0.0479321 0.374308 -0.123679
-0.0160158 0.377025 -0.0900002
--0.0435208 0.33986 -0.123679
-
-0.0160158 0.377025 -0.0900002
--0.0479321 0.374308 -0.123679
-0.0174009 0.409631 -0.0781219
-
--0.0520773 0.406679 -0.1118
-0.0174009 0.409631 -0.0781219
--0.0479321 0.374308 -0.123679
-
-0.0174009 0.409631 -0.0781219
--0.0520773 0.406679 -0.1118
-0.01853 0.436211 -0.0557982
-
--0.0554565 0.433068 -0.0894766
-0.01853 0.436211 -0.0557982
--0.0520773 0.406679 -0.1118
-
-0.01853 0.436211 -0.0557982
--0.0554565 0.433068 -0.0894766
-0.019267 0.45356 -0.0257214
-
--0.0576622 0.450292 -0.0593998
-0.019267 0.45356 -0.0257214
--0.0554565 0.433068 -0.0894766
-
-0.019267 0.45356 -0.0257214
--0.0576622 0.450292 -0.0593998
-0.019523 0.459586 0.00848059
-
--0.0584282 0.456274 -0.0251978
-0.019523 0.459586 0.00848059
--0.0576622 0.450292 -0.0593998
-
--0.0584282 0.456274 -0.0251978
--0.134698 0.439837 -0.0559975
--0.0576622 0.450292 0.00900421
-
--0.132933 0.43407 -0.0217955
--0.0576622 0.450292 0.00900421
--0.134698 0.439837 -0.0559975
-
--0.0576622 0.450292 0.00900421
--0.132933 0.43407 -0.0217955
--0.0554565 0.433068 0.039081
-
--0.127848 0.417467 0.00828128
--0.0554565 0.433068 0.039081
--0.132933 0.43407 -0.0217955
-
--0.0554565 0.433068 0.039081
--0.127848 0.417467 0.00828128
--0.0520773 0.406679 0.0614047
-
--0.120057 0.392028 0.0306051
--0.0520773 0.406679 0.0614047
--0.127848 0.417467 0.00828128
-
--0.0520773 0.406679 0.0614047
--0.120057 0.392028 0.0306051
--0.0479321 0.374308 0.073283
-
--0.110501 0.360824 0.0424833
--0.0479321 0.374308 0.073283
--0.120057 0.392028 0.0306051
-
--0.0479321 0.374308 0.073283
--0.110501 0.360824 0.0424833
--0.0435208 0.33986 0.073283
-
--0.100331 0.327616 0.0424833
--0.0435208 0.33986 0.073283
--0.110501 0.360824 0.0424833
-
--0.0435208 0.33986 0.073283
--0.100331 0.327616 0.0424833
--0.0393755 0.307489 0.0614047
-
--0.0907751 0.296412 0.0306051
--0.0393755 0.307489 0.0614047
--0.100331 0.327616 0.0424833
-
--0.0393755 0.307489 0.0614047
--0.0907751 0.296412 0.0306051
--0.0359963 0.2811 0.039081
-
--0.0829847 0.270973 0.00828128
--0.0359963 0.2811 0.039081
--0.0907751 0.296412 0.0306051
-
--0.0359963 0.2811 0.039081
--0.0829847 0.270973 0.00828128
--0.0337906 0.263876 0.00900421
-
--0.0778999 0.25437 -0.0217955
--0.0337906 0.263876 0.00900421
--0.0829847 0.270973 0.00828128
-
--0.0337906 0.263876 0.00900421
--0.0778999 0.25437 -0.0217955
--0.0330246 0.257894 -0.0251978
-
--0.0761339 0.248603 -0.0559975
--0.0330246 0.257894 -0.0251978
--0.0778999 0.25437 -0.0217955
-
--0.0330246 0.257894 -0.0251978
--0.0761339 0.248603 -0.0559975
--0.0337906 0.263876 -0.0593998
-
--0.0778999 0.25437 -0.0901995
--0.0337906 0.263876 -0.0593998
--0.0761339 0.248603 -0.0559975
-
--0.0337906 0.263876 -0.0593998
--0.0778999 0.25437 -0.0901995
--0.0359963 0.2811 -0.0894766
-
--0.0829847 0.270973 -0.120276
--0.0359963 0.2811 -0.0894766
--0.0778999 0.25437 -0.0901995
-
--0.0359963 0.2811 -0.0894766
--0.0829847 0.270973 -0.120276
--0.0393755 0.307489 -0.1118
-
--0.0907751 0.296412 -0.1426
--0.0393755 0.307489 -0.1118
--0.0829847 0.270973 -0.120276
-
--0.0393755 0.307489 -0.1118
--0.0907751 0.296412 -0.1426
--0.0435208 0.33986 -0.123679
-
--0.100331 0.327616 -0.154478
--0.0435208 0.33986 -0.123679
--0.0907751 0.296412 -0.1426
-
--0.0435208 0.33986 -0.123679
--0.100331 0.327616 -0.154478
--0.0479321 0.374308 -0.123679
-
--0.110501 0.360824 -0.154478
--0.0479321 0.374308 -0.123679
--0.100331 0.327616 -0.154478
-
--0.0479321 0.374308 -0.123679
--0.110501 0.360824 -0.154478
--0.0520773 0.406679 -0.1118
-
--0.120057 0.392028 -0.1426
--0.0520773 0.406679 -0.1118
--0.110501 0.360824 -0.154478
-
--0.0520773 0.406679 -0.1118
--0.120057 0.392028 -0.1426
--0.0554565 0.433068 -0.0894766
-
--0.127848 0.417467 -0.120276
--0.0554565 0.433068 -0.0894766
--0.120057 0.392028 -0.1426
-
--0.0554565 0.433068 -0.0894766
--0.127848 0.417467 -0.120276
--0.0576622 0.450292 -0.0593998
-
--0.132933 0.43407 -0.0901995
--0.0576622 0.450292 -0.0593998
--0.127848 0.417467 -0.120276
-
--0.0576622 0.450292 -0.0593998
--0.132933 0.43407 -0.0901995
--0.0584282 0.456274 -0.0251978
-
--0.134698 0.439837 -0.0559975
--0.0584282 0.456274 -0.0251978
--0.132933 0.43407 -0.0901995
-
--0.134698 0.439837 -0.0559975
--0.207094 0.410746 -0.0803997
--0.132933 0.43407 -0.0217955
-
--0.204379 0.405361 -0.0461977
--0.132933 0.43407 -0.0217955
--0.207094 0.410746 -0.0803997
-
--0.132933 0.43407 -0.0217955
--0.204379 0.405361 -0.0461977
--0.127848 0.417467 0.00828128
-
--0.196561 0.389855 -0.016121
--0.127848 0.417467 0.00828128
--0.204379 0.405361 -0.0461977
-
--0.127848 0.417467 0.00828128
--0.196561 0.389855 -0.016121
--0.120057 0.392028 0.0306051
-
--0.184584 0.3661 0.00620283
--0.120057 0.392028 0.0306051
--0.196561 0.389855 -0.016121
-
--0.120057 0.392028 0.0306051
--0.184584 0.3661 0.00620283
--0.110501 0.360824 0.0424833
-
--0.169891 0.336959 0.0180811
--0.110501 0.360824 0.0424833
--0.184584 0.3661 0.00620283
-
--0.110501 0.360824 0.0424833
--0.169891 0.336959 0.0180811
--0.100331 0.327616 0.0424833
-
--0.154256 0.305948 0.0180811
--0.100331 0.327616 0.0424833
--0.169891 0.336959 0.0180811
-
--0.100331 0.327616 0.0424833
--0.154256 0.305948 0.0180811
--0.0907751 0.296412 0.0306051
-
--0.139563 0.276807 0.00620283
--0.0907751 0.296412 0.0306051
--0.154256 0.305948 0.0180811
-
--0.0907751 0.296412 0.0306051
--0.139563 0.276807 0.00620283
--0.0829847 0.270973 0.00828128
-
--0.127586 0.253051 -0.016121
--0.0829847 0.270973 0.00828128
--0.139563 0.276807 0.00620283
-
--0.0829847 0.270973 0.00828128
--0.127586 0.253051 -0.016121
--0.0778999 0.25437 -0.0217955
-
--0.119768 0.237546 -0.0461977
--0.0778999 0.25437 -0.0217955
--0.127586 0.253051 -0.016121
-
--0.0778999 0.25437 -0.0217955
--0.119768 0.237546 -0.0461977
--0.0761339 0.248603 -0.0559975
-
--0.117053 0.232161 -0.0803997
--0.0761339 0.248603 -0.0559975
--0.119768 0.237546 -0.0461977
-
--0.0761339 0.248603 -0.0559975
--0.117053 0.232161 -0.0803997
--0.0778999 0.25437 -0.0901995
-
--0.119768 0.237546 -0.114602
--0.0778999 0.25437 -0.0901995
--0.117053 0.232161 -0.0803997
-
--0.0778999 0.25437 -0.0901995
--0.119768 0.237546 -0.114602
--0.0829847 0.270973 -0.120276
-
--0.127586 0.253051 -0.144678
--0.0829847 0.270973 -0.120276
--0.119768 0.237546 -0.114602
-
--0.0829847 0.270973 -0.120276
--0.127586 0.253051 -0.144678
--0.0907751 0.296412 -0.1426
-
--0.139563 0.276807 -0.167002
--0.0907751 0.296412 -0.1426
--0.127586 0.253051 -0.144678
-
--0.0907751 0.296412 -0.1426
--0.139563 0.276807 -0.167002
--0.100331 0.327616 -0.154478
-
--0.154256 0.305948 -0.17888
--0.100331 0.327616 -0.154478
--0.139563 0.276807 -0.167002
-
--0.100331 0.327616 -0.154478
--0.154256 0.305948 -0.17888
--0.110501 0.360824 -0.154478
-
--0.169891 0.336959 -0.17888
--0.110501 0.360824 -0.154478
--0.154256 0.305948 -0.17888
-
--0.110501 0.360824 -0.154478
--0.169891 0.336959 -0.17888
--0.120057 0.392028 -0.1426
-
--0.184584 0.3661 -0.167002
--0.120057 0.392028 -0.1426
--0.169891 0.336959 -0.17888
-
--0.120057 0.392028 -0.1426
--0.184584 0.3661 -0.167002
--0.127848 0.417467 -0.120276
-
--0.196561 0.389855 -0.144678
--0.127848 0.417467 -0.120276
--0.184584 0.3661 -0.167002
-
--0.127848 0.417467 -0.120276
--0.196561 0.389855 -0.144678
--0.132933 0.43407 -0.0901995
-
--0.204379 0.405361 -0.114602
--0.132933 0.43407 -0.0901995
--0.196561 0.389855 -0.144678
-
--0.132933 0.43407 -0.0901995
--0.204379 0.405361 -0.114602
--0.134698 0.439837 -0.0559975
-
--0.207094 0.410746 -0.0803997
--0.134698 0.439837 -0.0559975
--0.204379 0.405361 -0.114602
-
--0.207094 0.410746 -0.0803997
--0.273531 0.369839 -0.0956167
--0.204379 0.405361 -0.0461977
-
--0.269945 0.36499 -0.0614147
--0.204379 0.405361 -0.0461977
--0.273531 0.369839 -0.0956167
-
--0.204379 0.405361 -0.0461977
--0.269945 0.36499 -0.0614147
--0.196561 0.389855 -0.016121
-
--0.259619 0.351029 -0.0313379
--0.196561 0.389855 -0.016121
--0.269945 0.36499 -0.0614147
-
--0.196561 0.389855 -0.016121
--0.259619 0.351029 -0.0313379
--0.184584 0.3661 0.00620283
-
--0.2438 0.329639 -0.00901413
--0.184584 0.3661 0.00620283
--0.259619 0.351029 -0.0313379
-
--0.184584 0.3661 0.00620283
--0.2438 0.329639 -0.00901413
--0.169891 0.336959 0.0180811
-
--0.224394 0.3034 0.0028641
--0.169891 0.336959 0.0180811
--0.2438 0.329639 -0.00901413
-
--0.169891 0.336959 0.0180811
--0.224394 0.3034 0.0028641
--0.154256 0.305948 0.0180811
-
--0.203742 0.275478 0.0028641
--0.154256 0.305948 0.0180811
--0.224394 0.3034 0.0028641
-
--0.154256 0.305948 0.0180811
--0.203742 0.275478 0.0028641
--0.139563 0.276807 0.00620283
-
--0.184336 0.249239 -0.00901413
--0.139563 0.276807 0.00620283
--0.203742 0.275478 0.0028641
-
--0.139563 0.276807 0.00620283
--0.184336 0.249239 -0.00901413
--0.127586 0.253051 -0.016121
-
--0.168516 0.227849 -0.0313379
--0.127586 0.253051 -0.016121
--0.184336 0.249239 -0.00901413
-
--0.127586 0.253051 -0.016121
--0.168516 0.227849 -0.0313379
--0.119768 0.237546 -0.0461977
-
--0.158191 0.213888 -0.0614147
--0.119768 0.237546 -0.0461977
--0.168516 0.227849 -0.0313379
-
--0.119768 0.237546 -0.0461977
--0.158191 0.213888 -0.0614147
--0.117053 0.232161 -0.0803997
-
--0.154605 0.209039 -0.0956167
--0.117053 0.232161 -0.0803997
--0.158191 0.213888 -0.0614147
-
--0.117053 0.232161 -0.0803997
--0.154605 0.209039 -0.0956167
--0.119768 0.237546 -0.114602
-
--0.158191 0.213888 -0.129819
--0.119768 0.237546 -0.114602
--0.154605 0.209039 -0.0956167
-
--0.119768 0.237546 -0.114602
--0.158191 0.213888 -0.129819
--0.127586 0.253051 -0.144678
-
--0.168516 0.227849 -0.159895
--0.127586 0.253051 -0.144678
--0.158191 0.213888 -0.129819
-
--0.127586 0.253051 -0.144678
--0.168516 0.227849 -0.159895
--0.139563 0.276807 -0.167002
-
--0.184336 0.249239 -0.182219
--0.139563 0.276807 -0.167002
--0.168516 0.227849 -0.159895
-
--0.139563 0.276807 -0.167002
--0.184336 0.249239 -0.182219
--0.154256 0.305948 -0.17888
-
--0.203742 0.275478 -0.194097
--0.154256 0.305948 -0.17888
--0.184336 0.249239 -0.182219
-
--0.154256 0.305948 -0.17888
--0.203742 0.275478 -0.194097
--0.169891 0.336959 -0.17888
-
--0.224394 0.3034 -0.194097
--0.169891 0.336959 -0.17888
--0.203742 0.275478 -0.194097
-
--0.169891 0.336959 -0.17888
--0.224394 0.3034 -0.194097
--0.184584 0.3661 -0.167002
-
--0.2438 0.329639 -0.182219
--0.184584 0.3661 -0.167002
--0.224394 0.3034 -0.194097
-
--0.184584 0.3661 -0.167002
--0.2438 0.329639 -0.182219
--0.196561 0.389855 -0.144678
-
--0.259619 0.351029 -0.159895
--0.196561 0.389855 -0.144678
--0.2438 0.329639 -0.182219
-
--0.196561 0.389855 -0.144678
--0.259619 0.351029 -0.159895
--0.204379 0.405361 -0.114602
-
--0.269945 0.36499 -0.129819
--0.204379 0.405361 -0.114602
--0.259619 0.351029 -0.159895
-
--0.204379 0.405361 -0.114602
--0.269945 0.36499 -0.129819
--0.207094 0.410746 -0.0803997
-
--0.273531 0.369839 -0.0956167
--0.207094 0.410746 -0.0803997
--0.269945 0.36499 -0.129819
-
--0.273531 0.369839 -0.0956167
--0.3321 0.318292 -0.0999099
--0.269945 0.36499 -0.0614147
-
--0.327746 0.314119 -0.0657079
--0.269945 0.36499 -0.0614147
--0.3321 0.318292 -0.0999099
-
--0.269945 0.36499 -0.0614147
--0.327746 0.314119 -0.0657079
--0.259619 0.351029 -0.0313379
-
--0.315209 0.302104 -0.0356311
--0.259619 0.351029 -0.0313379
--0.327746 0.314119 -0.0657079
-
--0.259619 0.351029 -0.0313379
--0.315209 0.302104 -0.0356311
--0.2438 0.329639 -0.00901413
-
--0.296002 0.283695 -0.0133074
--0.2438 0.329639 -0.00901413
--0.315209 0.302104 -0.0356311
-
--0.2438 0.329639 -0.00901413
--0.296002 0.283695 -0.0133074
--0.224394 0.3034 0.0028641
-
--0.272441 0.261113 -0.00142912
--0.224394 0.3034 0.0028641
--0.296002 0.283695 -0.0133074
-
--0.224394 0.3034 0.0028641
--0.272441 0.261113 -0.00142912
--0.203742 0.275478 0.0028641
-
--0.247368 0.237083 -0.00142912
--0.203742 0.275478 0.0028641
--0.272441 0.261113 -0.00142912
-
--0.203742 0.275478 0.0028641
--0.247368 0.237083 -0.00142912
--0.184336 0.249239 -0.00901413
-
--0.223806 0.214501 -0.0133074
--0.184336 0.249239 -0.00901413
--0.247368 0.237083 -0.00142912
-
--0.184336 0.249239 -0.00901413
--0.223806 0.214501 -0.0133074
--0.168516 0.227849 -0.0313379
-
--0.204599 0.196092 -0.0356311
--0.168516 0.227849 -0.0313379
--0.223806 0.214501 -0.0133074
-
--0.168516 0.227849 -0.0313379
--0.204599 0.196092 -0.0356311
--0.158191 0.213888 -0.0614147
-
--0.192063 0.184077 -0.0657079
--0.158191 0.213888 -0.0614147
--0.204599 0.196092 -0.0356311
-
--0.158191 0.213888 -0.0614147
--0.192063 0.184077 -0.0657079
--0.154605 0.209039 -0.0956167
-
--0.187709 0.179904 -0.0999099
--0.154605 0.209039 -0.0956167
--0.192063 0.184077 -0.0657079
-
--0.154605 0.209039 -0.0956167
--0.187709 0.179904 -0.0999099
--0.158191 0.213888 -0.129819
-
--0.192063 0.184077 -0.134112
--0.158191 0.213888 -0.129819
--0.187709 0.179904 -0.0999099
-
--0.158191 0.213888 -0.129819
--0.192063 0.184077 -0.134112
--0.168516 0.227849 -0.159895
-
--0.204599 0.196092 -0.164189
--0.168516 0.227849 -0.159895
--0.192063 0.184077 -0.134112
-
--0.168516 0.227849 -0.159895
--0.204599 0.196092 -0.164189
--0.184336 0.249239 -0.182219
-
--0.223806 0.214501 -0.186512
--0.184336 0.249239 -0.182219
--0.204599 0.196092 -0.164189
-
--0.184336 0.249239 -0.182219
--0.223806 0.214501 -0.186512
--0.203742 0.275478 -0.194097
-
--0.247368 0.237083 -0.198391
--0.203742 0.275478 -0.194097
--0.223806 0.214501 -0.186512
-
--0.203742 0.275478 -0.194097
--0.247368 0.237083 -0.198391
--0.224394 0.3034 -0.194097
-
--0.272441 0.261113 -0.198391
--0.224394 0.3034 -0.194097
--0.247368 0.237083 -0.198391
-
--0.224394 0.3034 -0.194097
--0.272441 0.261113 -0.198391
--0.2438 0.329639 -0.182219
-
--0.296002 0.283695 -0.186512
--0.2438 0.329639 -0.182219
--0.272441 0.261113 -0.198391
-
--0.2438 0.329639 -0.182219
--0.296002 0.283695 -0.186512
--0.259619 0.351029 -0.159895
-
--0.315209 0.302104 -0.164189
--0.259619 0.351029 -0.159895
--0.296002 0.283695 -0.186512
-
--0.259619 0.351029 -0.159895
--0.315209 0.302104 -0.164189
--0.269945 0.36499 -0.129819
-
--0.327746 0.314119 -0.134112
--0.269945 0.36499 -0.129819
--0.315209 0.302104 -0.164189
-
--0.269945 0.36499 -0.129819
--0.327746 0.314119 -0.134112
--0.273531 0.369839 -0.0956167
-
--0.3321 0.318292 -0.0999099
--0.273531 0.369839 -0.0956167
--0.327746 0.314119 -0.134112
-
--0.3321 0.318292 -0.0999099
--0.381114 0.257588 -0.0927889
--0.327746 0.314119 -0.0657079
-
--0.376118 0.254211 -0.0585869
--0.327746 0.314119 -0.0657079
--0.381114 0.257588 -0.0927889
-
--0.327746 0.314119 -0.0657079
--0.376118 0.254211 -0.0585869
--0.315209 0.302104 -0.0356311
-
--0.361731 0.244487 -0.0285101
--0.315209 0.302104 -0.0356311
--0.376118 0.254211 -0.0585869
-
--0.315209 0.302104 -0.0356311
--0.361731 0.244487 -0.0285101
--0.296002 0.283695 -0.0133074
-
--0.339689 0.22959 -0.00618636
--0.296002 0.283695 -0.0133074
--0.361731 0.244487 -0.0285101
-
--0.296002 0.283695 -0.0133074
--0.339689 0.22959 -0.00618636
--0.272441 0.261113 -0.00142912
-
--0.31265 0.211315 0.00569187
--0.272441 0.261113 -0.00142912
--0.339689 0.22959 -0.00618636
-
--0.272441 0.261113 -0.00142912
--0.31265 0.211315 0.00569187
--0.247368 0.237083 -0.00142912
-
--0.283877 0.191867 0.00569187
--0.247368 0.237083 -0.00142912
--0.31265 0.211315 0.00569187
-
--0.247368 0.237083 -0.00142912
--0.283877 0.191867 0.00569187
--0.223806 0.214501 -0.0133074
-
--0.256838 0.173592 -0.00618636
--0.223806 0.214501 -0.0133074
--0.283877 0.191867 0.00569187
-
--0.223806 0.214501 -0.0133074
--0.256838 0.173592 -0.00618636
--0.204599 0.196092 -0.0356311
-
--0.234796 0.158694 -0.0285101
--0.204599 0.196092 -0.0356311
--0.256838 0.173592 -0.00618636
-
--0.204599 0.196092 -0.0356311
--0.234796 0.158694 -0.0285101
--0.192063 0.184077 -0.0657079
-
--0.220409 0.148971 -0.0585869
--0.192063 0.184077 -0.0657079
--0.234796 0.158694 -0.0285101
-
--0.192063 0.184077 -0.0657079
--0.220409 0.148971 -0.0585869
--0.187709 0.179904 -0.0999099
-
--0.215413 0.145593 -0.0927889
--0.187709 0.179904 -0.0999099
--0.220409 0.148971 -0.0585869
-
--0.187709 0.179904 -0.0999099
--0.215413 0.145593 -0.0927889
--0.192063 0.184077 -0.134112
-
--0.220409 0.148971 -0.126991
--0.192063 0.184077 -0.134112
--0.215413 0.145593 -0.0927889
-
--0.192063 0.184077 -0.134112
--0.220409 0.148971 -0.126991
--0.204599 0.196092 -0.164189
-
--0.234796 0.158694 -0.157068
--0.204599 0.196092 -0.164189
--0.220409 0.148971 -0.126991
-
--0.204599 0.196092 -0.164189
--0.234796 0.158694 -0.157068
--0.223806 0.214501 -0.186512
-
--0.256838 0.173592 -0.179391
--0.223806 0.214501 -0.186512
--0.234796 0.158694 -0.157068
-
--0.223806 0.214501 -0.186512
--0.256838 0.173592 -0.179391
--0.247368 0.237083 -0.198391
-
--0.283877 0.191867 -0.19127
--0.247368 0.237083 -0.198391
--0.256838 0.173592 -0.179391
-
--0.247368 0.237083 -0.198391
--0.283877 0.191867 -0.19127
--0.272441 0.261113 -0.198391
-
--0.31265 0.211315 -0.19127
--0.272441 0.261113 -0.198391
--0.283877 0.191867 -0.19127
-
--0.272441 0.261113 -0.198391
--0.31265 0.211315 -0.19127
--0.296002 0.283695 -0.186512
-
--0.339689 0.22959 -0.179391
--0.296002 0.283695 -0.186512
--0.31265 0.211315 -0.19127
-
--0.296002 0.283695 -0.186512
--0.339689 0.22959 -0.179391
--0.315209 0.302104 -0.164189
-
--0.361731 0.244487 -0.157068
--0.315209 0.302104 -0.164189
--0.339689 0.22959 -0.179391
-
--0.315209 0.302104 -0.164189
--0.361731 0.244487 -0.157068
--0.327746 0.314119 -0.134112
-
--0.376118 0.254211 -0.126991
--0.327746 0.314119 -0.134112
--0.361731 0.244487 -0.157068
-
--0.327746 0.314119 -0.134112
--0.376118 0.254211 -0.126991
--0.3321 0.318292 -0.0999099
-
--0.381114 0.257588 -0.0927889
--0.3321 0.318292 -0.0999099
--0.376118 0.254211 -0.126991
-
--0.381114 0.257588 -0.0927889
--0.419165 0.189475 -0.0750672
--0.376118 0.254211 -0.0585869
-
--0.41367 0.186991 -0.0408652
--0.376118 0.254211 -0.0585869
--0.419165 0.189475 -0.0750672
-
--0.376118 0.254211 -0.0585869
--0.41367 0.186991 -0.0408652
--0.361731 0.244487 -0.0285101
-
--0.397846 0.179838 -0.0107885
--0.361731 0.244487 -0.0285101
--0.41367 0.186991 -0.0408652
-
--0.361731 0.244487 -0.0285101
--0.397846 0.179838 -0.0107885
--0.339689 0.22959 -0.00618636
-
--0.373604 0.16888 0.0115353
--0.339689 0.22959 -0.00618636
--0.397846 0.179838 -0.0107885
-
--0.339689 0.22959 -0.00618636
--0.373604 0.16888 0.0115353
--0.31265 0.211315 0.00569187
-
--0.343866 0.155437 0.0234135
--0.31265 0.211315 0.00569187
--0.373604 0.16888 0.0115353
-
--0.31265 0.211315 0.00569187
--0.343866 0.155437 0.0234135
--0.283877 0.191867 0.00569187
-
--0.312219 0.141132 0.0234135
--0.283877 0.191867 0.00569187
--0.343866 0.155437 0.0234135
-
--0.283877 0.191867 0.00569187
--0.312219 0.141132 0.0234135
--0.256838 0.173592 -0.00618636
-
--0.282481 0.127689 0.0115353
--0.256838 0.173592 -0.00618636
--0.312219 0.141132 0.0234135
-
--0.256838 0.173592 -0.00618636
--0.282481 0.127689 0.0115353
--0.234796 0.158694 -0.0285101
-
--0.258238 0.116731 -0.0107885
--0.234796 0.158694 -0.0285101
--0.282481 0.127689 0.0115353
-
--0.234796 0.158694 -0.0285101
--0.258238 0.116731 -0.0107885
--0.220409 0.148971 -0.0585869
-
--0.242415 0.109578 -0.0408652
--0.220409 0.148971 -0.0585869
--0.258238 0.116731 -0.0107885
-
--0.220409 0.148971 -0.0585869
--0.242415 0.109578 -0.0408652
--0.215413 0.145593 -0.0927889
-
--0.236919 0.107094 -0.0750672
--0.215413 0.145593 -0.0927889
--0.242415 0.109578 -0.0408652
-
--0.215413 0.145593 -0.0927889
--0.236919 0.107094 -0.0750672
--0.220409 0.148971 -0.126991
-
--0.242415 0.109578 -0.109269
--0.220409 0.148971 -0.126991
--0.236919 0.107094 -0.0750672
-
--0.220409 0.148971 -0.126991
--0.242415 0.109578 -0.109269
--0.234796 0.158694 -0.157068
-
--0.258238 0.116731 -0.139346
--0.234796 0.158694 -0.157068
--0.242415 0.109578 -0.109269
-
--0.234796 0.158694 -0.157068
--0.258238 0.116731 -0.139346
--0.256838 0.173592 -0.179391
-
--0.282481 0.127689 -0.16167
--0.256838 0.173592 -0.179391
--0.258238 0.116731 -0.139346
-
--0.256838 0.173592 -0.179391
--0.282481 0.127689 -0.16167
--0.283877 0.191867 -0.19127
-
--0.312219 0.141132 -0.173548
--0.283877 0.191867 -0.19127
--0.282481 0.127689 -0.16167
-
--0.283877 0.191867 -0.19127
--0.312219 0.141132 -0.173548
--0.31265 0.211315 -0.19127
-
--0.343866 0.155437 -0.173548
--0.31265 0.211315 -0.19127
--0.312219 0.141132 -0.173548
-
--0.31265 0.211315 -0.19127
--0.343866 0.155437 -0.173548
--0.339689 0.22959 -0.179391
-
--0.373604 0.16888 -0.16167
--0.339689 0.22959 -0.179391
--0.343866 0.155437 -0.173548
-
--0.339689 0.22959 -0.179391
--0.373604 0.16888 -0.16167
--0.361731 0.244487 -0.157068
-
--0.397846 0.179838 -0.139346
--0.361731 0.244487 -0.157068
--0.373604 0.16888 -0.16167
-
--0.361731 0.244487 -0.157068
--0.397846 0.179838 -0.139346
--0.376118 0.254211 -0.126991
-
--0.41367 0.186991 -0.109269
--0.376118 0.254211 -0.126991
--0.397846 0.179838 -0.139346
-
--0.376118 0.254211 -0.126991
--0.41367 0.186991 -0.109269
--0.381114 0.257588 -0.0927889
-
--0.419165 0.189475 -0.0750672
--0.381114 0.257588 -0.0927889
--0.41367 0.186991 -0.109269
-
--0.419165 0.189475 -0.0750672
--0.445157 0.11591 -0.0487695
--0.41367 0.186991 -0.0408652
-
--0.439321 0.11439 -0.0145675
--0.41367 0.186991 -0.0408652
--0.445157 0.11591 -0.0487695
-
--0.41367 0.186991 -0.0408652
--0.439321 0.11439 -0.0145675
--0.397846 0.179838 -0.0107885
-
--0.422517 0.110015 0.0155093
--0.397846 0.179838 -0.0107885
--0.439321 0.11439 -0.0145675
-
--0.397846 0.179838 -0.0107885
--0.422517 0.110015 0.0155093
--0.373604 0.16888 0.0115353
-
--0.396771 0.103311 0.037833
--0.373604 0.16888 0.0115353
--0.422517 0.110015 0.0155093
-
--0.373604 0.16888 0.0115353
--0.396771 0.103311 0.037833
--0.343866 0.155437 0.0234135
-
--0.365188 0.0950877 0.0497113
--0.343866 0.155437 0.0234135
--0.396771 0.103311 0.037833
-
--0.343866 0.155437 0.0234135
--0.365188 0.0950877 0.0497113
--0.312219 0.141132 0.0234135
-
--0.331579 0.0863365 0.0497113
--0.312219 0.141132 0.0234135
--0.365188 0.0950877 0.0497113
-
--0.312219 0.141132 0.0234135
--0.331579 0.0863365 0.0497113
--0.282481 0.127689 0.0115353
-
--0.299997 0.0781132 0.037833
--0.282481 0.127689 0.0115353
--0.331579 0.0863365 0.0497113
-
--0.282481 0.127689 0.0115353
--0.299997 0.0781132 0.037833
--0.258238 0.116731 -0.0107885
-
--0.274251 0.0714095 0.0155093
--0.258238 0.116731 -0.0107885
--0.299997 0.0781132 0.037833
-
--0.258238 0.116731 -0.0107885
--0.274251 0.0714095 0.0155093
--0.242415 0.109578 -0.0408652
-
--0.257447 0.0670339 -0.0145675
--0.242415 0.109578 -0.0408652
--0.274251 0.0714095 0.0155093
-
--0.242415 0.109578 -0.0408652
--0.257447 0.0670339 -0.0145675
--0.236919 0.107094 -0.0750672
-
--0.251611 0.0655143 -0.0487695
--0.236919 0.107094 -0.0750672
--0.257447 0.0670339 -0.0145675
-
--0.236919 0.107094 -0.0750672
--0.251611 0.0655143 -0.0487695
--0.242415 0.109578 -0.109269
-
--0.257447 0.0670339 -0.0829715
--0.242415 0.109578 -0.109269
--0.251611 0.0655143 -0.0487695
-
--0.242415 0.109578 -0.109269
--0.257447 0.0670339 -0.0829715
--0.258238 0.116731 -0.139346
-
--0.274251 0.0714095 -0.113048
--0.258238 0.116731 -0.139346
--0.257447 0.0670339 -0.0829715
-
--0.258238 0.116731 -0.139346
--0.274251 0.0714095 -0.113048
--0.282481 0.127689 -0.16167
-
--0.299997 0.0781132 -0.135372
--0.282481 0.127689 -0.16167
--0.274251 0.0714095 -0.113048
-
--0.282481 0.127689 -0.16167
--0.299997 0.0781132 -0.135372
--0.312219 0.141132 -0.173548
-
--0.331579 0.0863365 -0.14725
--0.312219 0.141132 -0.173548
--0.299997 0.0781132 -0.135372
-
--0.312219 0.141132 -0.173548
--0.331579 0.0863365 -0.14725
--0.343866 0.155437 -0.173548
-
--0.365188 0.0950877 -0.14725
--0.343866 0.155437 -0.173548
--0.331579 0.0863365 -0.14725
-
--0.343866 0.155437 -0.173548
--0.365188 0.0950877 -0.14725
--0.373604 0.16888 -0.16167
-
--0.396771 0.103311 -0.135372
--0.373604 0.16888 -0.16167
--0.365188 0.0950877 -0.14725
-
--0.373604 0.16888 -0.16167
--0.396771 0.103311 -0.135372
--0.397846 0.179838 -0.139346
-
--0.422517 0.110015 -0.113048
--0.397846 0.179838 -0.139346
--0.396771 0.103311 -0.135372
-
--0.397846 0.179838 -0.139346
--0.422517 0.110015 -0.113048
--0.41367 0.186991 -0.109269
-
--0.439321 0.11439 -0.0829715
--0.41367 0.186991 -0.109269
--0.422517 0.110015 -0.113048
-
--0.41367 0.186991 -0.109269
--0.439321 0.11439 -0.0829715
--0.419165 0.189475 -0.0750672
-
--0.445157 0.11591 -0.0487695
--0.419165 0.189475 -0.0750672
--0.439321 0.11439 -0.0829715
-
--0.445157 0.11591 -0.0487695
--0.458343 0.0390107 -0.0169001
--0.439321 0.11439 -0.0145675
-
--0.452334 0.0384993 0.0173019
--0.439321 0.11439 -0.0145675
--0.458343 0.0390107 -0.0169001
-
--0.439321 0.11439 -0.0145675
--0.452334 0.0384993 0.0173019
--0.422517 0.110015 0.0155093
-
--0.435032 0.0370266 0.0473787
--0.422517 0.110015 0.0155093
--0.452334 0.0384993 0.0173019
-
--0.422517 0.110015 0.0155093
--0.435032 0.0370266 0.0473787
--0.396771 0.103311 0.037833
-
--0.408523 0.0347704 0.0697025
--0.396771 0.103311 0.037833
--0.435032 0.0370266 0.0473787
-
--0.396771 0.103311 0.037833
--0.408523 0.0347704 0.0697025
--0.365188 0.0950877 0.0497113
-
--0.376005 0.0320028 0.0815807
--0.365188 0.0950877 0.0497113
--0.408523 0.0347704 0.0697025
-
--0.365188 0.0950877 0.0497113
--0.376005 0.0320028 0.0815807
--0.331579 0.0863365 0.0497113
-
--0.341401 0.0290575 0.0815807
--0.331579 0.0863365 0.0497113
--0.376005 0.0320028 0.0815807
-
--0.331579 0.0863365 0.0497113
--0.341401 0.0290575 0.0815807
--0.299997 0.0781132 0.037833
-
--0.308883 0.0262898 0.0697025
--0.299997 0.0781132 0.037833
--0.341401 0.0290575 0.0815807
-
--0.299997 0.0781132 0.037833
--0.308883 0.0262898 0.0697025
--0.274251 0.0714095 0.0155093
-
--0.282375 0.0240336 0.0473787
--0.274251 0.0714095 0.0155093
--0.308883 0.0262898 0.0697025
-
--0.274251 0.0714095 0.0155093
--0.282375 0.0240336 0.0473787
--0.257447 0.0670339 -0.0145675
-
--0.265072 0.022561 0.0173019
--0.257447 0.0670339 -0.0145675
--0.282375 0.0240336 0.0473787
-
--0.257447 0.0670339 -0.0145675
--0.265072 0.022561 0.0173019
--0.251611 0.0655143 -0.0487695
-
--0.259063 0.0220495 -0.0169001
--0.251611 0.0655143 -0.0487695
--0.265072 0.022561 0.0173019
-
--0.251611 0.0655143 -0.0487695
--0.259063 0.0220495 -0.0169001
--0.257447 0.0670339 -0.0829715
-
--0.265072 0.022561 -0.0511021
--0.257447 0.0670339 -0.0829715
--0.259063 0.0220495 -0.0169001
-
--0.257447 0.0670339 -0.0829715
--0.265072 0.022561 -0.0511021
--0.274251 0.0714095 -0.113048
-
--0.282375 0.0240336 -0.0811788
--0.274251 0.0714095 -0.113048
--0.265072 0.022561 -0.0511021
-
--0.274251 0.0714095 -0.113048
--0.282375 0.0240336 -0.0811788
--0.299997 0.0781132 -0.135372
-
--0.308883 0.0262898 -0.103503
--0.299997 0.0781132 -0.135372
--0.282375 0.0240336 -0.0811788
-
--0.299997 0.0781132 -0.135372
--0.308883 0.0262898 -0.103503
--0.331579 0.0863365 -0.14725
-
--0.341401 0.0290575 -0.115381
--0.331579 0.0863365 -0.14725
--0.308883 0.0262898 -0.103503
-
--0.331579 0.0863365 -0.14725
--0.341401 0.0290575 -0.115381
--0.365188 0.0950877 -0.14725
-
--0.376005 0.0320028 -0.115381
--0.365188 0.0950877 -0.14725
--0.341401 0.0290575 -0.115381
-
--0.365188 0.0950877 -0.14725
--0.376005 0.0320028 -0.115381
--0.396771 0.103311 -0.135372
-
--0.408523 0.0347704 -0.103503
--0.396771 0.103311 -0.135372
--0.376005 0.0320028 -0.115381
-
--0.396771 0.103311 -0.135372
--0.408523 0.0347704 -0.103503
--0.422517 0.110015 -0.113048
-
--0.435032 0.0370266 -0.0811788
--0.422517 0.110015 -0.113048
--0.408523 0.0347704 -0.103503
-
--0.422517 0.110015 -0.113048
--0.435032 0.0370266 -0.0811788
--0.439321 0.11439 -0.0829715
-
--0.452334 0.0384993 -0.0511021
--0.439321 0.11439 -0.0829715
--0.435032 0.0370266 -0.0811788
-
--0.439321 0.11439 -0.0829715
--0.452334 0.0384993 -0.0511021
--0.445157 0.11591 -0.0487695
-
--0.458343 0.0390107 -0.0169001
--0.445157 0.11591 -0.0487695
--0.452334 0.0384993 -0.0511021
-
--0.458343 0.0390107 -0.0169001
--0.458343 -0.0390107 0.0169001
--0.452334 0.0384993 0.0173019
-
--0.452334 -0.0384993 0.0511021
--0.452334 0.0384993 0.0173019
--0.458343 -0.0390107 0.0169001
-
--0.452334 0.0384993 0.0173019
--0.452334 -0.0384993 0.0511021
--0.435032 0.0370266 0.0473787
-
--0.435032 -0.0370266 0.0811788
--0.435032 0.0370266 0.0473787
--0.452334 -0.0384993 0.0511021
-
--0.435032 0.0370266 0.0473787
--0.435032 -0.0370266 0.0811788
--0.408523 0.0347704 0.0697025
-
--0.408523 -0.0347704 0.103503
--0.408523 0.0347704 0.0697025
--0.435032 -0.0370266 0.0811788
-
--0.408523 0.0347704 0.0697025
--0.408523 -0.0347704 0.103503
--0.376005 0.0320028 0.0815807
-
--0.376005 -0.0320028 0.115381
--0.376005 0.0320028 0.0815807
--0.408523 -0.0347704 0.103503
-
--0.376005 0.0320028 0.0815807
--0.376005 -0.0320028 0.115381
--0.341401 0.0290575 0.0815807
-
--0.341401 -0.0290575 0.115381
--0.341401 0.0290575 0.0815807
--0.376005 -0.0320028 0.115381
-
--0.341401 0.0290575 0.0815807
--0.341401 -0.0290575 0.115381
--0.308883 0.0262898 0.0697025
-
--0.308883 -0.0262898 0.103503
--0.308883 0.0262898 0.0697025
--0.341401 -0.0290575 0.115381
-
--0.308883 0.0262898 0.0697025
--0.308883 -0.0262898 0.103503
--0.282375 0.0240336 0.0473787
-
--0.282375 -0.0240336 0.0811788
--0.282375 0.0240336 0.0473787
--0.308883 -0.0262898 0.103503
-
--0.282375 0.0240336 0.0473787
--0.282375 -0.0240336 0.0811788
--0.265072 0.022561 0.0173019
-
--0.265072 -0.022561 0.0511021
--0.265072 0.022561 0.0173019
--0.282375 -0.0240336 0.0811788
-
--0.265072 0.022561 0.0173019
--0.265072 -0.022561 0.0511021
--0.259063 0.0220495 -0.0169001
-
--0.259063 -0.0220495 0.0169001
--0.259063 0.0220495 -0.0169001
--0.265072 -0.022561 0.0511021
-
--0.259063 0.0220495 -0.0169001
--0.259063 -0.0220495 0.0169001
--0.265072 0.022561 -0.0511021
-
--0.265072 -0.022561 -0.0173019
--0.265072 0.022561 -0.0511021
--0.259063 -0.0220495 0.0169001
-
--0.265072 0.022561 -0.0511021
--0.265072 -0.022561 -0.0173019
--0.282375 0.0240336 -0.0811788
-
--0.282375 -0.0240336 -0.0473787
--0.282375 0.0240336 -0.0811788
--0.265072 -0.022561 -0.0173019
-
--0.282375 0.0240336 -0.0811788
--0.282375 -0.0240336 -0.0473787
--0.308883 0.0262898 -0.103503
-
--0.308883 -0.0262898 -0.0697025
--0.308883 0.0262898 -0.103503
--0.282375 -0.0240336 -0.0473787
-
--0.308883 0.0262898 -0.103503
--0.308883 -0.0262898 -0.0697025
--0.341401 0.0290575 -0.115381
-
--0.341401 -0.0290575 -0.0815807
--0.341401 0.0290575 -0.115381
--0.308883 -0.0262898 -0.0697025
-
--0.341401 0.0290575 -0.115381
--0.341401 -0.0290575 -0.0815807
--0.376005 0.0320028 -0.115381
-
--0.376005 -0.0320028 -0.0815807
--0.376005 0.0320028 -0.115381
--0.341401 -0.0290575 -0.0815807
-
--0.376005 0.0320028 -0.115381
--0.376005 -0.0320028 -0.0815807
--0.408523 0.0347704 -0.103503
-
--0.408523 -0.0347704 -0.0697025
--0.408523 0.0347704 -0.103503
--0.376005 -0.0320028 -0.0815807
-
--0.408523 0.0347704 -0.103503
--0.408523 -0.0347704 -0.0697025
--0.435032 0.0370266 -0.0811788
-
--0.435032 -0.0370266 -0.0473787
--0.435032 0.0370266 -0.0811788
--0.408523 -0.0347704 -0.0697025
-
--0.435032 0.0370266 -0.0811788
--0.435032 -0.0370266 -0.0473787
--0.452334 0.0384993 -0.0511021
-
--0.452334 -0.0384993 -0.0173019
--0.452334 0.0384993 -0.0511021
--0.435032 -0.0370266 -0.0473787
-
--0.452334 0.0384993 -0.0511021
--0.452334 -0.0384993 -0.0173019
--0.458343 0.0390107 -0.0169001
-
--0.458343 -0.0390107 0.0169001
--0.458343 0.0390107 -0.0169001
--0.452334 -0.0384993 -0.0173019
-
--0.458343 -0.0390107 0.0169001
--0.445157 -0.11591 0.0487695
--0.452334 -0.0384993 0.0511021
-
--0.439321 -0.11439 0.0829715
--0.452334 -0.0384993 0.0511021
--0.445157 -0.11591 0.0487695
-
--0.452334 -0.0384993 0.0511021
--0.439321 -0.11439 0.0829715
--0.435032 -0.0370266 0.0811788
-
--0.422517 -0.110015 0.113048
--0.435032 -0.0370266 0.0811788
--0.439321 -0.11439 0.0829715
-
--0.435032 -0.0370266 0.0811788
--0.422517 -0.110015 0.113048
--0.408523 -0.0347704 0.103503
-
--0.396771 -0.103311 0.135372
--0.408523 -0.0347704 0.103503
--0.422517 -0.110015 0.113048
-
--0.408523 -0.0347704 0.103503
--0.396771 -0.103311 0.135372
--0.376005 -0.0320028 0.115381
-
--0.365188 -0.0950877 0.14725
--0.376005 -0.0320028 0.115381
--0.396771 -0.103311 0.135372
-
--0.376005 -0.0320028 0.115381
--0.365188 -0.0950877 0.14725
--0.341401 -0.0290575 0.115381
-
--0.331579 -0.0863365 0.14725
--0.341401 -0.0290575 0.115381
--0.365188 -0.0950877 0.14725
-
--0.341401 -0.0290575 0.115381
--0.331579 -0.0863365 0.14725
--0.308883 -0.0262898 0.103503
-
--0.299997 -0.0781132 0.135372
--0.308883 -0.0262898 0.103503
--0.331579 -0.0863365 0.14725
-
--0.308883 -0.0262898 0.103503
--0.299997 -0.0781132 0.135372
--0.282375 -0.0240336 0.0811788
-
--0.274251 -0.0714095 0.113048
--0.282375 -0.0240336 0.0811788
--0.299997 -0.0781132 0.135372
-
--0.282375 -0.0240336 0.0811788
--0.274251 -0.0714095 0.113048
--0.265072 -0.022561 0.0511021
-
--0.257447 -0.0670339 0.0829715
--0.265072 -0.022561 0.0511021
--0.274251 -0.0714095 0.113048
-
--0.265072 -0.022561 0.0511021
--0.257447 -0.0670339 0.0829715
--0.259063 -0.0220495 0.0169001
-
--0.251611 -0.0655143 0.0487695
--0.259063 -0.0220495 0.0169001
--0.257447 -0.0670339 0.0829715
-
--0.259063 -0.0220495 0.0169001
--0.251611 -0.0655143 0.0487695
--0.265072 -0.022561 -0.0173019
-
--0.257447 -0.0670339 0.0145675
--0.265072 -0.022561 -0.0173019
--0.251611 -0.0655143 0.0487695
-
--0.265072 -0.022561 -0.0173019
--0.257447 -0.0670339 0.0145675
--0.282375 -0.0240336 -0.0473787
-
--0.274251 -0.0714095 -0.0155093
--0.282375 -0.0240336 -0.0473787
--0.257447 -0.0670339 0.0145675
-
--0.282375 -0.0240336 -0.0473787
--0.274251 -0.0714095 -0.0155093
--0.308883 -0.0262898 -0.0697025
-
--0.299997 -0.0781132 -0.037833
--0.308883 -0.0262898 -0.0697025
--0.274251 -0.0714095 -0.0155093
-
--0.308883 -0.0262898 -0.0697025
--0.299997 -0.0781132 -0.037833
--0.341401 -0.0290575 -0.0815807
-
--0.331579 -0.0863365 -0.0497113
--0.341401 -0.0290575 -0.0815807
--0.299997 -0.0781132 -0.037833
-
--0.341401 -0.0290575 -0.0815807
--0.331579 -0.0863365 -0.0497113
--0.376005 -0.0320028 -0.0815807
-
--0.365188 -0.0950877 -0.0497113
--0.376005 -0.0320028 -0.0815807
--0.331579 -0.0863365 -0.0497113
-
--0.376005 -0.0320028 -0.0815807
--0.365188 -0.0950877 -0.0497113
--0.408523 -0.0347704 -0.0697025
-
--0.396771 -0.103311 -0.037833
--0.408523 -0.0347704 -0.0697025
--0.365188 -0.0950877 -0.0497113
-
--0.408523 -0.0347704 -0.0697025
--0.396771 -0.103311 -0.037833
--0.435032 -0.0370266 -0.0473787
-
--0.422517 -0.110015 -0.0155093
--0.435032 -0.0370266 -0.0473787
--0.396771 -0.103311 -0.037833
-
--0.435032 -0.0370266 -0.0473787
--0.422517 -0.110015 -0.0155093
--0.452334 -0.0384993 -0.0173019
-
--0.439321 -0.11439 0.0145675
--0.452334 -0.0384993 -0.0173019
--0.422517 -0.110015 -0.0155093
-
--0.452334 -0.0384993 -0.0173019
--0.439321 -0.11439 0.0145675
--0.458343 -0.0390107 0.0169001
-
--0.445157 -0.11591 0.0487695
--0.458343 -0.0390107 0.0169001
--0.439321 -0.11439 0.0145675
-
--0.445157 -0.11591 0.0487695
--0.419165 -0.189475 0.0750672
--0.439321 -0.11439 0.0829715
-
--0.41367 -0.186991 0.109269
--0.439321 -0.11439 0.0829715
--0.419165 -0.189475 0.0750672
-
--0.439321 -0.11439 0.0829715
--0.41367 -0.186991 0.109269
--0.422517 -0.110015 0.113048
-
--0.397846 -0.179838 0.139346
--0.422517 -0.110015 0.113048
--0.41367 -0.186991 0.109269
-
--0.422517 -0.110015 0.113048
--0.397846 -0.179838 0.139346
--0.396771 -0.103311 0.135372
-
--0.373604 -0.16888 0.16167
--0.396771 -0.103311 0.135372
--0.397846 -0.179838 0.139346
-
--0.396771 -0.103311 0.135372
--0.373604 -0.16888 0.16167
--0.365188 -0.0950877 0.14725
-
--0.343866 -0.155437 0.173548
--0.365188 -0.0950877 0.14725
--0.373604 -0.16888 0.16167
-
--0.365188 -0.0950877 0.14725
--0.343866 -0.155437 0.173548
--0.331579 -0.0863365 0.14725
-
--0.312219 -0.141132 0.173548
--0.331579 -0.0863365 0.14725
--0.343866 -0.155437 0.173548
-
--0.331579 -0.0863365 0.14725
--0.312219 -0.141132 0.173548
--0.299997 -0.0781132 0.135372
-
--0.282481 -0.127689 0.16167
--0.299997 -0.0781132 0.135372
--0.312219 -0.141132 0.173548
-
--0.299997 -0.0781132 0.135372
--0.282481 -0.127689 0.16167
--0.274251 -0.0714095 0.113048
-
--0.258238 -0.116731 0.139346
--0.274251 -0.0714095 0.113048
--0.282481 -0.127689 0.16167
-
--0.274251 -0.0714095 0.113048
--0.258238 -0.116731 0.139346
--0.257447 -0.0670339 0.0829715
-
--0.242415 -0.109578 0.109269
--0.257447 -0.0670339 0.0829715
--0.258238 -0.116731 0.139346
-
--0.257447 -0.0670339 0.0829715
--0.242415 -0.109578 0.109269
--0.251611 -0.0655143 0.0487695
-
--0.236919 -0.107094 0.0750672
--0.251611 -0.0655143 0.0487695
--0.242415 -0.109578 0.109269
-
--0.251611 -0.0655143 0.0487695
--0.236919 -0.107094 0.0750672
--0.257447 -0.0670339 0.0145675
-
--0.242415 -0.109578 0.0408652
--0.257447 -0.0670339 0.0145675
--0.236919 -0.107094 0.0750672
-
--0.257447 -0.0670339 0.0145675
--0.242415 -0.109578 0.0408652
--0.274251 -0.0714095 -0.0155093
-
--0.258238 -0.116731 0.0107885
--0.274251 -0.0714095 -0.0155093
--0.242415 -0.109578 0.0408652
-
--0.274251 -0.0714095 -0.0155093
--0.258238 -0.116731 0.0107885
--0.299997 -0.0781132 -0.037833
-
--0.282481 -0.127689 -0.0115353
--0.299997 -0.0781132 -0.037833
--0.258238 -0.116731 0.0107885
-
--0.299997 -0.0781132 -0.037833
--0.282481 -0.127689 -0.0115353
--0.331579 -0.0863365 -0.0497113
-
--0.312219 -0.141132 -0.0234135
--0.331579 -0.0863365 -0.0497113
--0.282481 -0.127689 -0.0115353
-
--0.331579 -0.0863365 -0.0497113
--0.312219 -0.141132 -0.0234135
--0.365188 -0.0950877 -0.0497113
-
--0.343866 -0.155437 -0.0234135
--0.365188 -0.0950877 -0.0497113
--0.312219 -0.141132 -0.0234135
-
--0.365188 -0.0950877 -0.0497113
--0.343866 -0.155437 -0.0234135
--0.396771 -0.103311 -0.037833
-
--0.373604 -0.16888 -0.0115353
--0.396771 -0.103311 -0.037833
--0.343866 -0.155437 -0.0234135
-
--0.396771 -0.103311 -0.037833
--0.373604 -0.16888 -0.0115353
--0.422517 -0.110015 -0.0155093
-
--0.397846 -0.179838 0.0107885
--0.422517 -0.110015 -0.0155093
--0.373604 -0.16888 -0.0115353
-
--0.422517 -0.110015 -0.0155093
--0.397846 -0.179838 0.0107885
--0.439321 -0.11439 0.0145675
-
--0.41367 -0.186991 0.0408652
--0.439321 -0.11439 0.0145675
--0.397846 -0.179838 0.0107885
-
--0.439321 -0.11439 0.0145675
--0.41367 -0.186991 0.0408652
--0.445157 -0.11591 0.0487695
-
--0.419165 -0.189475 0.0750672
--0.445157 -0.11591 0.0487695
--0.41367 -0.186991 0.0408652
-
--0.419165 -0.189475 0.0750672
--0.381114 -0.257588 0.0927889
--0.41367 -0.186991 0.109269
-
--0.376118 -0.254211 0.126991
--0.41367 -0.186991 0.109269
--0.381114 -0.257588 0.0927889
-
--0.41367 -0.186991 0.109269
--0.376118 -0.254211 0.126991
--0.397846 -0.179838 0.139346
-
--0.361731 -0.244487 0.157068
--0.397846 -0.179838 0.139346
--0.376118 -0.254211 0.126991
-
--0.397846 -0.179838 0.139346
--0.361731 -0.244487 0.157068
--0.373604 -0.16888 0.16167
-
--0.339689 -0.22959 0.179391
--0.373604 -0.16888 0.16167
--0.361731 -0.244487 0.157068
-
--0.373604 -0.16888 0.16167
--0.339689 -0.22959 0.179391
--0.343866 -0.155437 0.173548
-
--0.31265 -0.211315 0.19127
--0.343866 -0.155437 0.173548
--0.339689 -0.22959 0.179391
-
--0.343866 -0.155437 0.173548
--0.31265 -0.211315 0.19127
--0.312219 -0.141132 0.173548
-
--0.283877 -0.191867 0.19127
--0.312219 -0.141132 0.173548
--0.31265 -0.211315 0.19127
-
--0.312219 -0.141132 0.173548
--0.283877 -0.191867 0.19127
--0.282481 -0.127689 0.16167
-
--0.256838 -0.173592 0.179391
--0.282481 -0.127689 0.16167
--0.283877 -0.191867 0.19127
-
--0.282481 -0.127689 0.16167
--0.256838 -0.173592 0.179391
--0.258238 -0.116731 0.139346
-
--0.234796 -0.158694 0.157068
--0.258238 -0.116731 0.139346
--0.256838 -0.173592 0.179391
-
--0.258238 -0.116731 0.139346
--0.234796 -0.158694 0.157068
--0.242415 -0.109578 0.109269
-
--0.220409 -0.148971 0.126991
--0.242415 -0.109578 0.109269
--0.234796 -0.158694 0.157068
-
--0.242415 -0.109578 0.109269
--0.220409 -0.148971 0.126991
--0.236919 -0.107094 0.0750672
-
--0.215413 -0.145593 0.0927889
--0.236919 -0.107094 0.0750672
--0.220409 -0.148971 0.126991
-
--0.236919 -0.107094 0.0750672
--0.215413 -0.145593 0.0927889
--0.242415 -0.109578 0.0408652
-
--0.220409 -0.148971 0.0585869
--0.242415 -0.109578 0.0408652
--0.215413 -0.145593 0.0927889
-
--0.242415 -0.109578 0.0408652
--0.220409 -0.148971 0.0585869
--0.258238 -0.116731 0.0107885
-
--0.234796 -0.158694 0.0285101
--0.258238 -0.116731 0.0107885
--0.220409 -0.148971 0.0585869
-
--0.258238 -0.116731 0.0107885
--0.234796 -0.158694 0.0285101
--0.282481 -0.127689 -0.0115353
-
--0.256838 -0.173592 0.00618636
--0.282481 -0.127689 -0.0115353
--0.234796 -0.158694 0.0285101
-
--0.282481 -0.127689 -0.0115353
--0.256838 -0.173592 0.00618636
--0.312219 -0.141132 -0.0234135
-
--0.283877 -0.191867 -0.00569187
--0.312219 -0.141132 -0.0234135
--0.256838 -0.173592 0.00618636
-
--0.312219 -0.141132 -0.0234135
--0.283877 -0.191867 -0.00569187
--0.343866 -0.155437 -0.0234135
-
--0.31265 -0.211315 -0.00569187
--0.343866 -0.155437 -0.0234135
--0.283877 -0.191867 -0.00569187
-
--0.343866 -0.155437 -0.0234135
--0.31265 -0.211315 -0.00569187
--0.373604 -0.16888 -0.0115353
-
--0.339689 -0.22959 0.00618636
--0.373604 -0.16888 -0.0115353
--0.31265 -0.211315 -0.00569187
-
--0.373604 -0.16888 -0.0115353
--0.339689 -0.22959 0.00618636
--0.397846 -0.179838 0.0107885
-
--0.361731 -0.244487 0.0285101
--0.397846 -0.179838 0.0107885
--0.339689 -0.22959 0.00618636
-
--0.397846 -0.179838 0.0107885
--0.361731 -0.244487 0.0285101
--0.41367 -0.186991 0.0408652
-
--0.376118 -0.254211 0.0585869
--0.41367 -0.186991 0.0408652
--0.361731 -0.244487 0.0285101
-
--0.41367 -0.186991 0.0408652
--0.376118 -0.254211 0.0585869
--0.419165 -0.189475 0.0750672
-
--0.381114 -0.257588 0.0927889
--0.419165 -0.189475 0.0750672
--0.376118 -0.254211 0.0585869
-
--0.381114 -0.257588 0.0927889
--0.3321 -0.318292 0.0999099
--0.376118 -0.254211 0.126991
-
--0.327746 -0.314119 0.134112
--0.376118 -0.254211 0.126991
--0.3321 -0.318292 0.0999099
-
--0.376118 -0.254211 0.126991
--0.327746 -0.314119 0.134112
--0.361731 -0.244487 0.157068
-
--0.315209 -0.302104 0.164189
--0.361731 -0.244487 0.157068
--0.327746 -0.314119 0.134112
-
--0.361731 -0.244487 0.157068
--0.315209 -0.302104 0.164189
--0.339689 -0.22959 0.179391
-
--0.296002 -0.283695 0.186512
--0.339689 -0.22959 0.179391
--0.315209 -0.302104 0.164189
-
--0.339689 -0.22959 0.179391
--0.296002 -0.283695 0.186512
--0.31265 -0.211315 0.19127
-
--0.272441 -0.261113 0.198391
--0.31265 -0.211315 0.19127
--0.296002 -0.283695 0.186512
-
--0.31265 -0.211315 0.19127
--0.272441 -0.261113 0.198391
--0.283877 -0.191867 0.19127
-
--0.247368 -0.237083 0.198391
--0.283877 -0.191867 0.19127
--0.272441 -0.261113 0.198391
-
--0.283877 -0.191867 0.19127
--0.247368 -0.237083 0.198391
--0.256838 -0.173592 0.179391
-
--0.223806 -0.214501 0.186512
--0.256838 -0.173592 0.179391
--0.247368 -0.237083 0.198391
-
--0.256838 -0.173592 0.179391
--0.223806 -0.214501 0.186512
--0.234796 -0.158694 0.157068
-
--0.204599 -0.196092 0.164189
--0.234796 -0.158694 0.157068
--0.223806 -0.214501 0.186512
-
--0.234796 -0.158694 0.157068
--0.204599 -0.196092 0.164189
--0.220409 -0.148971 0.126991
-
--0.192063 -0.184077 0.134112
--0.220409 -0.148971 0.126991
--0.204599 -0.196092 0.164189
-
--0.220409 -0.148971 0.126991
--0.192063 -0.184077 0.134112
--0.215413 -0.145593 0.0927889
-
--0.187709 -0.179904 0.0999099
--0.215413 -0.145593 0.0927889
--0.192063 -0.184077 0.134112
-
--0.215413 -0.145593 0.0927889
--0.187709 -0.179904 0.0999099
--0.220409 -0.148971 0.0585869
-
--0.192063 -0.184077 0.0657079
--0.220409 -0.148971 0.0585869
--0.187709 -0.179904 0.0999099
-
--0.220409 -0.148971 0.0585869
--0.192063 -0.184077 0.0657079
--0.234796 -0.158694 0.0285101
-
--0.204599 -0.196092 0.0356311
--0.234796 -0.158694 0.0285101
--0.192063 -0.184077 0.0657079
-
--0.234796 -0.158694 0.0285101
--0.204599 -0.196092 0.0356311
--0.256838 -0.173592 0.00618636
-
--0.223806 -0.214501 0.0133074
--0.256838 -0.173592 0.00618636
--0.204599 -0.196092 0.0356311
-
--0.256838 -0.173592 0.00618636
--0.223806 -0.214501 0.0133074
--0.283877 -0.191867 -0.00569187
-
--0.247368 -0.237083 0.00142912
--0.283877 -0.191867 -0.00569187
--0.223806 -0.214501 0.0133074
-
--0.283877 -0.191867 -0.00569187
--0.247368 -0.237083 0.00142912
--0.31265 -0.211315 -0.00569187
-
--0.272441 -0.261113 0.00142912
--0.31265 -0.211315 -0.00569187
--0.247368 -0.237083 0.00142912
-
--0.31265 -0.211315 -0.00569187
--0.272441 -0.261113 0.00142912
--0.339689 -0.22959 0.00618636
-
--0.296002 -0.283695 0.0133074
--0.339689 -0.22959 0.00618636
--0.272441 -0.261113 0.00142912
-
--0.339689 -0.22959 0.00618636
--0.296002 -0.283695 0.0133074
--0.361731 -0.244487 0.0285101
-
--0.315209 -0.302104 0.0356311
--0.361731 -0.244487 0.0285101
--0.296002 -0.283695 0.0133074
-
--0.361731 -0.244487 0.0285101
--0.315209 -0.302104 0.0356311
--0.376118 -0.254211 0.0585869
-
--0.327746 -0.314119 0.0657079
--0.376118 -0.254211 0.0585869
--0.315209 -0.302104 0.0356311
-
--0.376118 -0.254211 0.0585869
--0.327746 -0.314119 0.0657079
--0.381114 -0.257588 0.0927889
-
--0.3321 -0.318292 0.0999099
--0.381114 -0.257588 0.0927889
--0.327746 -0.314119 0.0657079
-
--0.3321 -0.318292 0.0999099
--0.273531 -0.369839 0.0956167
--0.327746 -0.314119 0.134112
-
--0.269945 -0.36499 0.129819
--0.327746 -0.314119 0.134112
--0.273531 -0.369839 0.0956167
-
--0.327746 -0.314119 0.134112
--0.269945 -0.36499 0.129819
--0.315209 -0.302104 0.164189
-
--0.259619 -0.351029 0.159895
--0.315209 -0.302104 0.164189
--0.269945 -0.36499 0.129819
-
--0.315209 -0.302104 0.164189
--0.259619 -0.351029 0.159895
--0.296002 -0.283695 0.186512
-
--0.2438 -0.329639 0.182219
--0.296002 -0.283695 0.186512
--0.259619 -0.351029 0.159895
-
--0.296002 -0.283695 0.186512
--0.2438 -0.329639 0.182219
--0.272441 -0.261113 0.198391
-
--0.224394 -0.3034 0.194097
--0.272441 -0.261113 0.198391
--0.2438 -0.329639 0.182219
-
--0.272441 -0.261113 0.198391
--0.224394 -0.3034 0.194097
--0.247368 -0.237083 0.198391
-
--0.203742 -0.275478 0.194097
--0.247368 -0.237083 0.198391
--0.224394 -0.3034 0.194097
-
--0.247368 -0.237083 0.198391
--0.203742 -0.275478 0.194097
--0.223806 -0.214501 0.186512
-
--0.184336 -0.249239 0.182219
--0.223806 -0.214501 0.186512
--0.203742 -0.275478 0.194097
-
--0.223806 -0.214501 0.186512
--0.184336 -0.249239 0.182219
--0.204599 -0.196092 0.164189
-
--0.168516 -0.227849 0.159895
--0.204599 -0.196092 0.164189
--0.184336 -0.249239 0.182219
-
--0.204599 -0.196092 0.164189
--0.168516 -0.227849 0.159895
--0.192063 -0.184077 0.134112
-
--0.158191 -0.213888 0.129819
--0.192063 -0.184077 0.134112
--0.168516 -0.227849 0.159895
-
--0.192063 -0.184077 0.134112
--0.158191 -0.213888 0.129819
--0.187709 -0.179904 0.0999099
-
--0.154605 -0.209039 0.0956167
--0.187709 -0.179904 0.0999099
--0.158191 -0.213888 0.129819
-
--0.187709 -0.179904 0.0999099
--0.154605 -0.209039 0.0956167
--0.192063 -0.184077 0.0657079
-
--0.158191 -0.213888 0.0614147
--0.192063 -0.184077 0.0657079
--0.154605 -0.209039 0.0956167
-
--0.192063 -0.184077 0.0657079
--0.158191 -0.213888 0.0614147
--0.204599 -0.196092 0.0356311
-
--0.168516 -0.227849 0.0313379
--0.204599 -0.196092 0.0356311
--0.158191 -0.213888 0.0614147
-
--0.204599 -0.196092 0.0356311
--0.168516 -0.227849 0.0313379
--0.223806 -0.214501 0.0133074
-
--0.184336 -0.249239 0.00901413
--0.223806 -0.214501 0.0133074
--0.168516 -0.227849 0.0313379
-
--0.223806 -0.214501 0.0133074
--0.184336 -0.249239 0.00901413
--0.247368 -0.237083 0.00142912
-
--0.203742 -0.275478 -0.0028641
--0.247368 -0.237083 0.00142912
--0.184336 -0.249239 0.00901413
-
--0.247368 -0.237083 0.00142912
--0.203742 -0.275478 -0.0028641
--0.272441 -0.261113 0.00142912
-
--0.224394 -0.3034 -0.0028641
--0.272441 -0.261113 0.00142912
--0.203742 -0.275478 -0.0028641
-
--0.272441 -0.261113 0.00142912
--0.224394 -0.3034 -0.0028641
--0.296002 -0.283695 0.0133074
-
--0.2438 -0.329639 0.00901413
--0.296002 -0.283695 0.0133074
--0.224394 -0.3034 -0.0028641
-
--0.296002 -0.283695 0.0133074
--0.2438 -0.329639 0.00901413
--0.315209 -0.302104 0.0356311
-
--0.259619 -0.351029 0.0313379
--0.315209 -0.302104 0.0356311
--0.2438 -0.329639 0.00901413
-
--0.315209 -0.302104 0.0356311
--0.259619 -0.351029 0.0313379
--0.327746 -0.314119 0.0657079
-
--0.269945 -0.36499 0.0614147
--0.327746 -0.314119 0.0657079
--0.259619 -0.351029 0.0313379
-
--0.327746 -0.314119 0.0657079
--0.269945 -0.36499 0.0614147
--0.3321 -0.318292 0.0999099
-
--0.273531 -0.369839 0.0956167
--0.3321 -0.318292 0.0999099
--0.269945 -0.36499 0.0614147
-
--0.273531 -0.369839 0.0956167
--0.207094 -0.410746 0.0803997
--0.269945 -0.36499 0.129819
-
--0.204379 -0.405361 0.114602
--0.269945 -0.36499 0.129819
--0.207094 -0.410746 0.0803997
-
--0.269945 -0.36499 0.129819
--0.204379 -0.405361 0.114602
--0.259619 -0.351029 0.159895
-
--0.196561 -0.389855 0.144678
--0.259619 -0.351029 0.159895
--0.204379 -0.405361 0.114602
-
--0.259619 -0.351029 0.159895
--0.196561 -0.389855 0.144678
--0.2438 -0.329639 0.182219
-
--0.184584 -0.3661 0.167002
--0.2438 -0.329639 0.182219
--0.196561 -0.389855 0.144678
-
--0.2438 -0.329639 0.182219
--0.184584 -0.3661 0.167002
--0.224394 -0.3034 0.194097
-
--0.169891 -0.336959 0.17888
--0.224394 -0.3034 0.194097
--0.184584 -0.3661 0.167002
-
--0.224394 -0.3034 0.194097
--0.169891 -0.336959 0.17888
--0.203742 -0.275478 0.194097
-
--0.154256 -0.305948 0.17888
--0.203742 -0.275478 0.194097
--0.169891 -0.336959 0.17888
-
--0.203742 -0.275478 0.194097
--0.154256 -0.305948 0.17888
--0.184336 -0.249239 0.182219
-
--0.139563 -0.276807 0.167002
--0.184336 -0.249239 0.182219
--0.154256 -0.305948 0.17888
-
--0.184336 -0.249239 0.182219
--0.139563 -0.276807 0.167002
--0.168516 -0.227849 0.159895
-
--0.127586 -0.253051 0.144678
--0.168516 -0.227849 0.159895
--0.139563 -0.276807 0.167002
-
--0.168516 -0.227849 0.159895
--0.127586 -0.253051 0.144678
--0.158191 -0.213888 0.129819
-
--0.119768 -0.237546 0.114602
--0.158191 -0.213888 0.129819
--0.127586 -0.253051 0.144678
-
--0.158191 -0.213888 0.129819
--0.119768 -0.237546 0.114602
--0.154605 -0.209039 0.0956167
-
--0.117053 -0.232161 0.0803997
--0.154605 -0.209039 0.0956167
--0.119768 -0.237546 0.114602
-
--0.154605 -0.209039 0.0956167
--0.117053 -0.232161 0.0803997
--0.158191 -0.213888 0.0614147
-
--0.119768 -0.237546 0.0461977
--0.158191 -0.213888 0.0614147
--0.117053 -0.232161 0.0803997
-
--0.158191 -0.213888 0.0614147
--0.119768 -0.237546 0.0461977
--0.168516 -0.227849 0.0313379
-
--0.127586 -0.253051 0.016121
--0.168516 -0.227849 0.0313379
--0.119768 -0.237546 0.0461977
-
--0.168516 -0.227849 0.0313379
--0.127586 -0.253051 0.016121
--0.184336 -0.249239 0.00901413
-
--0.139563 -0.276807 -0.00620283
--0.184336 -0.249239 0.00901413
--0.127586 -0.253051 0.016121
-
--0.184336 -0.249239 0.00901413
--0.139563 -0.276807 -0.00620283
--0.203742 -0.275478 -0.0028641
-
--0.154256 -0.305948 -0.0180811
--0.203742 -0.275478 -0.0028641
--0.139563 -0.276807 -0.00620283
-
--0.203742 -0.275478 -0.0028641
--0.154256 -0.305948 -0.0180811
--0.224394 -0.3034 -0.0028641
-
--0.169891 -0.336959 -0.0180811
--0.224394 -0.3034 -0.0028641
--0.154256 -0.305948 -0.0180811
-
--0.224394 -0.3034 -0.0028641
--0.169891 -0.336959 -0.0180811
--0.2438 -0.329639 0.00901413
-
--0.184584 -0.3661 -0.00620283
--0.2438 -0.329639 0.00901413
--0.169891 -0.336959 -0.0180811
-
--0.2438 -0.329639 0.00901413
--0.184584 -0.3661 -0.00620283
--0.259619 -0.351029 0.0313379
-
--0.196561 -0.389855 0.016121
--0.259619 -0.351029 0.0313379
--0.184584 -0.3661 -0.00620283
-
--0.259619 -0.351029 0.0313379
--0.196561 -0.389855 0.016121
--0.269945 -0.36499 0.0614147
-
--0.204379 -0.405361 0.0461977
--0.269945 -0.36499 0.0614147
--0.196561 -0.389855 0.016121
-
--0.269945 -0.36499 0.0614147
--0.204379 -0.405361 0.0461977
--0.273531 -0.369839 0.0956167
-
--0.207094 -0.410746 0.0803997
--0.273531 -0.369839 0.0956167
--0.204379 -0.405361 0.0461977
-
--0.207094 -0.410746 0.0803997
--0.134698 -0.439837 0.0559975
--0.204379 -0.405361 0.114602
-
--0.132933 -0.43407 0.0901995
--0.204379 -0.405361 0.114602
--0.134698 -0.439837 0.0559975
-
--0.204379 -0.405361 0.114602
--0.132933 -0.43407 0.0901995
--0.196561 -0.389855 0.144678
-
--0.127848 -0.417467 0.120276
--0.196561 -0.389855 0.144678
--0.132933 -0.43407 0.0901995
-
--0.196561 -0.389855 0.144678
--0.127848 -0.417467 0.120276
--0.184584 -0.3661 0.167002
-
--0.120057 -0.392028 0.1426
--0.184584 -0.3661 0.167002
--0.127848 -0.417467 0.120276
-
--0.184584 -0.3661 0.167002
--0.120057 -0.392028 0.1426
--0.169891 -0.336959 0.17888
-
--0.110501 -0.360824 0.154478
--0.169891 -0.336959 0.17888
--0.120057 -0.392028 0.1426
-
--0.169891 -0.336959 0.17888
--0.110501 -0.360824 0.154478
--0.154256 -0.305948 0.17888
-
--0.100331 -0.327616 0.154478
--0.154256 -0.305948 0.17888
--0.110501 -0.360824 0.154478
-
--0.154256 -0.305948 0.17888
--0.100331 -0.327616 0.154478
--0.139563 -0.276807 0.167002
-
--0.0907751 -0.296412 0.1426
--0.139563 -0.276807 0.167002
--0.100331 -0.327616 0.154478
-
--0.139563 -0.276807 0.167002
--0.0907751 -0.296412 0.1426
--0.127586 -0.253051 0.144678
-
--0.0829847 -0.270973 0.120276
--0.127586 -0.253051 0.144678
--0.0907751 -0.296412 0.1426
-
--0.127586 -0.253051 0.144678
--0.0829847 -0.270973 0.120276
--0.119768 -0.237546 0.114602
-
--0.0778999 -0.25437 0.0901995
--0.119768 -0.237546 0.114602
--0.0829847 -0.270973 0.120276
-
--0.119768 -0.237546 0.114602
--0.0778999 -0.25437 0.0901995
--0.117053 -0.232161 0.0803997
-
--0.0761339 -0.248603 0.0559975
--0.117053 -0.232161 0.0803997
--0.0778999 -0.25437 0.0901995
-
--0.117053 -0.232161 0.0803997
--0.0761339 -0.248603 0.0559975
--0.119768 -0.237546 0.0461977
-
--0.0778999 -0.25437 0.0217955
--0.119768 -0.237546 0.0461977
--0.0761339 -0.248603 0.0559975
-
--0.119768 -0.237546 0.0461977
--0.0778999 -0.25437 0.0217955
--0.127586 -0.253051 0.016121
-
--0.0829847 -0.270973 -0.00828128
--0.127586 -0.253051 0.016121
--0.0778999 -0.25437 0.0217955
-
--0.127586 -0.253051 0.016121
--0.0829847 -0.270973 -0.00828128
--0.139563 -0.276807 -0.00620283
-
--0.0907751 -0.296412 -0.0306051
--0.139563 -0.276807 -0.00620283
--0.0829847 -0.270973 -0.00828128
-
--0.139563 -0.276807 -0.00620283
--0.0907751 -0.296412 -0.0306051
--0.154256 -0.305948 -0.0180811
-
--0.100331 -0.327616 -0.0424833
--0.154256 -0.305948 -0.0180811
--0.0907751 -0.296412 -0.0306051
-
--0.154256 -0.305948 -0.0180811
--0.100331 -0.327616 -0.0424833
--0.169891 -0.336959 -0.0180811
-
--0.110501 -0.360824 -0.0424833
--0.169891 -0.336959 -0.0180811
--0.100331 -0.327616 -0.0424833
-
--0.169891 -0.336959 -0.0180811
--0.110501 -0.360824 -0.0424833
--0.184584 -0.3661 -0.00620283
-
--0.120057 -0.392028 -0.0306051
--0.184584 -0.3661 -0.00620283
--0.110501 -0.360824 -0.0424833
-
--0.184584 -0.3661 -0.00620283
--0.120057 -0.392028 -0.0306051
--0.196561 -0.389855 0.016121
-
--0.127848 -0.417467 -0.00828128
--0.196561 -0.389855 0.016121
--0.120057 -0.392028 -0.0306051
-
--0.196561 -0.389855 0.016121
--0.127848 -0.417467 -0.00828128
--0.204379 -0.405361 0.0461977
-
--0.132933 -0.43407 0.0217955
--0.204379 -0.405361 0.0461977
--0.127848 -0.417467 -0.00828128
-
--0.204379 -0.405361 0.0461977
--0.132933 -0.43407 0.0217955
--0.207094 -0.410746 0.0803997
-
--0.134698 -0.439837 0.0559975
--0.207094 -0.410746 0.0803997
--0.132933 -0.43407 0.0217955
-
--0.134698 -0.439837 0.0559975
--0.0584282 -0.456274 0.0251978
--0.132933 -0.43407 0.0901995
-
--0.0576622 -0.450292 0.0593998
--0.132933 -0.43407 0.0901995
--0.0584282 -0.456274 0.0251978
-
--0.132933 -0.43407 0.0901995
--0.0576622 -0.450292 0.0593998
--0.127848 -0.417467 0.120276
-
--0.0554565 -0.433068 0.0894766
--0.127848 -0.417467 0.120276
--0.0576622 -0.450292 0.0593998
-
--0.127848 -0.417467 0.120276
--0.0554565 -0.433068 0.0894766
--0.120057 -0.392028 0.1426
-
--0.0520773 -0.406679 0.1118
--0.120057 -0.392028 0.1426
--0.0554565 -0.433068 0.0894766
-
--0.120057 -0.392028 0.1426
--0.0520773 -0.406679 0.1118
--0.110501 -0.360824 0.154478
-
--0.0479321 -0.374308 0.123679
--0.110501 -0.360824 0.154478
--0.0520773 -0.406679 0.1118
-
--0.110501 -0.360824 0.154478
--0.0479321 -0.374308 0.123679
--0.100331 -0.327616 0.154478
-
--0.0435208 -0.33986 0.123679
--0.100331 -0.327616 0.154478
--0.0479321 -0.374308 0.123679
-
--0.100331 -0.327616 0.154478
--0.0435208 -0.33986 0.123679
--0.0907751 -0.296412 0.1426
-
--0.0393755 -0.307489 0.1118
--0.0907751 -0.296412 0.1426
--0.0435208 -0.33986 0.123679
-
--0.0907751 -0.296412 0.1426
--0.0393755 -0.307489 0.1118
--0.0829847 -0.270973 0.120276
-
--0.0359963 -0.2811 0.0894766
--0.0829847 -0.270973 0.120276
--0.0393755 -0.307489 0.1118
-
--0.0829847 -0.270973 0.120276
--0.0359963 -0.2811 0.0894766
--0.0778999 -0.25437 0.0901995
-
--0.0337906 -0.263876 0.0593998
--0.0778999 -0.25437 0.0901995
--0.0359963 -0.2811 0.0894766
-
--0.0778999 -0.25437 0.0901995
--0.0337906 -0.263876 0.0593998
--0.0761339 -0.248603 0.0559975
-
--0.0330246 -0.257894 0.0251978
--0.0761339 -0.248603 0.0559975
--0.0337906 -0.263876 0.0593998
-
--0.0761339 -0.248603 0.0559975
--0.0330246 -0.257894 0.0251978
--0.0778999 -0.25437 0.0217955
-
--0.0337906 -0.263876 -0.00900421
--0.0778999 -0.25437 0.0217955
--0.0330246 -0.257894 0.0251978
-
--0.0778999 -0.25437 0.0217955
--0.0337906 -0.263876 -0.00900421
--0.0829847 -0.270973 -0.00828128
-
--0.0359963 -0.2811 -0.039081
--0.0829847 -0.270973 -0.00828128
--0.0337906 -0.263876 -0.00900421
-
--0.0829847 -0.270973 -0.00828128
--0.0359963 -0.2811 -0.039081
--0.0907751 -0.296412 -0.0306051
-
--0.0393755 -0.307489 -0.0614047
--0.0907751 -0.296412 -0.0306051
--0.0359963 -0.2811 -0.039081
-
--0.0907751 -0.296412 -0.0306051
--0.0393755 -0.307489 -0.0614047
--0.100331 -0.327616 -0.0424833
-
--0.0435208 -0.33986 -0.073283
--0.100331 -0.327616 -0.0424833
--0.0393755 -0.307489 -0.0614047
-
--0.100331 -0.327616 -0.0424833
--0.0435208 -0.33986 -0.073283
--0.110501 -0.360824 -0.0424833
-
--0.0479321 -0.374308 -0.073283
--0.110501 -0.360824 -0.0424833
--0.0435208 -0.33986 -0.073283
-
--0.110501 -0.360824 -0.0424833
--0.0479321 -0.374308 -0.073283
--0.120057 -0.392028 -0.0306051
-
--0.0520773 -0.406679 -0.0614047
--0.120057 -0.392028 -0.0306051
--0.0479321 -0.374308 -0.073283
-
--0.120057 -0.392028 -0.0306051
--0.0520773 -0.406679 -0.0614047
--0.127848 -0.417467 -0.00828128
-
--0.0554565 -0.433068 -0.039081
--0.127848 -0.417467 -0.00828128
--0.0520773 -0.406679 -0.0614047
-
--0.127848 -0.417467 -0.00828128
--0.0554565 -0.433068 -0.039081
--0.132933 -0.43407 0.0217955
-
--0.0576622 -0.450292 -0.00900421
--0.132933 -0.43407 0.0217955
--0.0554565 -0.433068 -0.039081
-
--0.132933 -0.43407 0.0217955
--0.0576622 -0.450292 -0.00900421
--0.134698 -0.439837 0.0559975
-
--0.0584282 -0.456274 0.0251978
--0.134698 -0.439837 0.0559975
--0.0576622 -0.450292 -0.00900421
-
--0.0584282 -0.456274 0.0251978
-0.019523 -0.459586 -0.00848059
--0.0576622 -0.450292 0.0593998
-
-0.019267 -0.45356 0.0257214
--0.0576622 -0.450292 0.0593998
-0.019523 -0.459586 -0.00848059
-
--0.0576622 -0.450292 0.0593998
-0.019267 -0.45356 0.0257214
--0.0554565 -0.433068 0.0894766
-
-0.01853 -0.436211 0.0557982
--0.0554565 -0.433068 0.0894766
-0.019267 -0.45356 0.0257214
-
--0.0554565 -0.433068 0.0894766
-0.01853 -0.436211 0.0557982
--0.0520773 -0.406679 0.1118
-
-0.0174009 -0.409631 0.0781219
--0.0520773 -0.406679 0.1118
-0.01853 -0.436211 0.0557982
-
--0.0520773 -0.406679 0.1118
-0.0174009 -0.409631 0.0781219
--0.0479321 -0.374308 0.123679
-
-0.0160158 -0.377025 0.0900002
--0.0479321 -0.374308 0.123679
-0.0174009 -0.409631 0.0781219
-
--0.0479321 -0.374308 0.123679
-0.0160158 -0.377025 0.0900002
--0.0435208 -0.33986 0.123679
-
-0.0145418 -0.342326 0.0900002
--0.0435208 -0.33986 0.123679
-0.0160158 -0.377025 0.0900002
-
--0.0435208 -0.33986 0.123679
-0.0145418 -0.342326 0.0900002
--0.0393755 -0.307489 0.1118
-
-0.0131568 -0.309721 0.0781219
--0.0393755 -0.307489 0.1118
-0.0145418 -0.342326 0.0900002
-
--0.0393755 -0.307489 0.1118
-0.0131568 -0.309721 0.0781219
--0.0359963 -0.2811 0.0894766
-
-0.0120276 -0.28314 0.0557982
--0.0359963 -0.2811 0.0894766
-0.0131568 -0.309721 0.0781219
-
--0.0359963 -0.2811 0.0894766
-0.0120276 -0.28314 0.0557982
--0.0337906 -0.263876 0.0593998
-
-0.0112907 -0.265791 0.0257214
--0.0337906 -0.263876 0.0593998
-0.0120276 -0.28314 0.0557982
-
--0.0337906 -0.263876 0.0593998
-0.0112907 -0.265791 0.0257214
--0.0330246 -0.257894 0.0251978
-
-0.0110347 -0.259766 -0.00848059
--0.0330246 -0.257894 0.0251978
-0.0112907 -0.265791 0.0257214
-
--0.0330246 -0.257894 0.0251978
-0.0110347 -0.259766 -0.00848059
--0.0337906 -0.263876 -0.00900421
-
-0.0112907 -0.265791 -0.0426826
--0.0337906 -0.263876 -0.00900421
-0.0110347 -0.259766 -0.00848059
-
--0.0337906 -0.263876 -0.00900421
-0.0112907 -0.265791 -0.0426826
--0.0359963 -0.2811 -0.039081
-
-0.0120276 -0.28314 -0.0727594
--0.0359963 -0.2811 -0.039081
-0.0112907 -0.265791 -0.0426826
-
--0.0359963 -0.2811 -0.039081
-0.0120276 -0.28314 -0.0727594
--0.0393755 -0.307489 -0.0614047
-
-0.0131568 -0.309721 -0.0950831
--0.0393755 -0.307489 -0.0614047
-0.0120276 -0.28314 -0.0727594
-
--0.0393755 -0.307489 -0.0614047
-0.0131568 -0.309721 -0.0950831
--0.0435208 -0.33986 -0.073283
-
-0.0145418 -0.342326 -0.106961
--0.0435208 -0.33986 -0.073283
-0.0131568 -0.309721 -0.0950831
-
--0.0435208 -0.33986 -0.073283
-0.0145418 -0.342326 -0.106961
--0.0479321 -0.374308 -0.073283
-
-0.0160158 -0.377025 -0.106961
--0.0479321 -0.374308 -0.073283
-0.0145418 -0.342326 -0.106961
-
--0.0479321 -0.374308 -0.073283
-0.0160158 -0.377025 -0.106961
--0.0520773 -0.406679 -0.0614047
-
-0.0174009 -0.409631 -0.0950831
--0.0520773 -0.406679 -0.0614047
-0.0160158 -0.377025 -0.106961
-
--0.0520773 -0.406679 -0.0614047
-0.0174009 -0.409631 -0.0950831
--0.0554565 -0.433068 -0.039081
-
-0.01853 -0.436211 -0.0727594
--0.0554565 -0.433068 -0.039081
-0.0174009 -0.409631 -0.0950831
-
--0.0554565 -0.433068 -0.039081
-0.01853 -0.436211 -0.0727594
--0.0576622 -0.450292 -0.00900421
-
-0.019267 -0.45356 -0.0426826
--0.0576622 -0.450292 -0.00900421
-0.01853 -0.436211 -0.0727594
-
--0.0576622 -0.450292 -0.00900421
-0.019267 -0.45356 -0.0426826
--0.0584282 -0.456274 0.0251978
-
-0.019523 -0.459586 -0.00848059
--0.0584282 -0.456274 0.0251978
-0.019267 -0.45356 -0.0426826
-
-0.019523 -0.459586 -0.00848059
-0.0969125 -0.449675 -0.0411901
-0.019267 -0.45356 0.0257214
-
-0.0956419 -0.44378 -0.00698811
-0.019267 -0.45356 0.0257214
-0.0969125 -0.449675 -0.0411901
-
-0.019267 -0.45356 0.0257214
-0.0956419 -0.44378 -0.00698811
-0.01853 -0.436211 0.0557982
-
-0.0919835 -0.426805 0.0230886
-0.01853 -0.436211 0.0557982
-0.0956419 -0.44378 -0.00698811
-
-0.01853 -0.436211 0.0557982
-0.0919835 -0.426805 0.0230886
-0.0174009 -0.409631 0.0781219
-
-0.0863785 -0.400798 0.0454124
-0.0174009 -0.409631 0.0781219
-0.0919835 -0.426805 0.0230886
-
-0.0174009 -0.409631 0.0781219
-0.0863785 -0.400798 0.0454124
-0.0160158 -0.377025 0.0900002
-
-0.0795029 -0.368895 0.0572907
-0.0160158 -0.377025 0.0900002
-0.0863785 -0.400798 0.0454124
-
-0.0160158 -0.377025 0.0900002
-0.0795029 -0.368895 0.0572907
-0.0145418 -0.342326 0.0900002
-
-0.0721861 -0.334945 0.0572907
-0.0145418 -0.342326 0.0900002
-0.0795029 -0.368895 0.0572907
-
-0.0145418 -0.342326 0.0900002
-0.0721861 -0.334945 0.0572907
-0.0131568 -0.309721 0.0781219
-
-0.0653106 -0.303042 0.0454124
-0.0131568 -0.309721 0.0781219
-0.0721861 -0.334945 0.0572907
-
-0.0131568 -0.309721 0.0781219
-0.0653106 -0.303042 0.0454124
-0.0120276 -0.28314 0.0557982
-
-0.0597056 -0.277035 0.0230886
-0.0120276 -0.28314 0.0557982
-0.0653106 -0.303042 0.0454124
-
-0.0120276 -0.28314 0.0557982
-0.0597056 -0.277035 0.0230886
-0.0112907 -0.265791 0.0257214
-
-0.0560472 -0.26006 -0.00698811
-0.0112907 -0.265791 0.0257214
-0.0597056 -0.277035 0.0230886
-
-0.0112907 -0.265791 0.0257214
-0.0560472 -0.26006 -0.00698811
-0.0110347 -0.259766 -0.00848059
-
-0.0547766 -0.254164 -0.0411901
-0.0110347 -0.259766 -0.00848059
-0.0560472 -0.26006 -0.00698811
-
-0.0110347 -0.259766 -0.00848059
-0.0547766 -0.254164 -0.0411901
-0.0112907 -0.265791 -0.0426826
-
-0.0560472 -0.26006 -0.0753921
-0.0112907 -0.265791 -0.0426826
-0.0547766 -0.254164 -0.0411901
-
-0.0112907 -0.265791 -0.0426826
-0.0560472 -0.26006 -0.0753921
-0.0120276 -0.28314 -0.0727594
-
-0.0597056 -0.277035 -0.105469
-0.0120276 -0.28314 -0.0727594
-0.0560472 -0.26006 -0.0753921
-
-0.0120276 -0.28314 -0.0727594
-0.0597056 -0.277035 -0.105469
-0.0131568 -0.309721 -0.0950831
-
-0.0653106 -0.303042 -0.127793
-0.0131568 -0.309721 -0.0950831
-0.0597056 -0.277035 -0.105469
-
-0.0131568 -0.309721 -0.0950831
-0.0653106 -0.303042 -0.127793
-0.0145418 -0.342326 -0.106961
-
-0.0721861 -0.334945 -0.139671
-0.0145418 -0.342326 -0.106961
-0.0653106 -0.303042 -0.127793
-
-0.0145418 -0.342326 -0.106961
-0.0721861 -0.334945 -0.139671
-0.0160158 -0.377025 -0.106961
-
-0.0795029 -0.368895 -0.139671
-0.0160158 -0.377025 -0.106961
-0.0721861 -0.334945 -0.139671
-
-0.0160158 -0.377025 -0.106961
-0.0795029 -0.368895 -0.139671
-0.0174009 -0.409631 -0.0950831
-
-0.0863785 -0.400798 -0.127793
-0.0174009 -0.409631 -0.0950831
-0.0795029 -0.368895 -0.139671
-
-0.0174009 -0.409631 -0.0950831
-0.0863785 -0.400798 -0.127793
-0.01853 -0.436211 -0.0727594
-
-0.0919835 -0.426805 -0.105469
-0.01853 -0.436211 -0.0727594
-0.0863785 -0.400798 -0.127793
-
-0.01853 -0.436211 -0.0727594
-0.0919835 -0.426805 -0.105469
-0.019267 -0.45356 -0.0426826
-
-0.0956419 -0.44378 -0.0753921
-0.019267 -0.45356 -0.0426826
-0.0919835 -0.426805 -0.105469
-
-0.019267 -0.45356 -0.0426826
-0.0956419 -0.44378 -0.0753921
-0.019523 -0.459586 -0.00848059
-
-0.0969125 -0.449675 -0.0411901
-0.019523 -0.459586 -0.00848059
-0.0956419 -0.44378 -0.0753921
-
-0.0969125 -0.449675 -0.0411901
-0.171514 -0.426829 -0.0691939
-0.0956419 -0.44378 -0.00698811
-
-0.169265 -0.421233 -0.0349919
-0.0956419 -0.44378 -0.00698811
-0.171514 -0.426829 -0.0691939
-
-0.0956419 -0.44378 -0.00698811
-0.169265 -0.421233 -0.0349919
-0.0919835 -0.426805 0.0230886
-
-0.162791 -0.40512 -0.00491513
-0.0919835 -0.426805 0.0230886
-0.169265 -0.421233 -0.0349919
-
-0.0919835 -0.426805 0.0230886
-0.162791 -0.40512 -0.00491513
-0.0863785 -0.400798 0.0454124
-
-0.152871 -0.380435 0.0174087
-0.0863785 -0.400798 0.0454124
-0.162791 -0.40512 -0.00491513
-
-0.0863785 -0.400798 0.0454124
-0.152871 -0.380435 0.0174087
-0.0795029 -0.368895 0.0572907
-
-0.140703 -0.350153 0.0292869
-0.0795029 -0.368895 0.0572907
-0.152871 -0.380435 0.0174087
-
-0.0795029 -0.368895 0.0572907
-0.140703 -0.350153 0.0292869
-0.0721861 -0.334945 0.0572907
-
-0.127754 -0.317927 0.0292869
-0.0721861 -0.334945 0.0572907
-0.140703 -0.350153 0.0292869
-
-0.0721861 -0.334945 0.0572907
-0.127754 -0.317927 0.0292869
-0.0653106 -0.303042 0.0454124
-
-0.115586 -0.287646 0.0174087
-0.0653106 -0.303042 0.0454124
-0.127754 -0.317927 0.0292869
-
-0.0653106 -0.303042 0.0454124
-0.115586 -0.287646 0.0174087
-0.0597056 -0.277035 0.0230886
-
-0.105666 -0.26296 -0.00491513
-0.0597056 -0.277035 0.0230886
-0.115586 -0.287646 0.0174087
-
-0.0597056 -0.277035 0.0230886
-0.105666 -0.26296 -0.00491513
-0.0560472 -0.26006 -0.00698811
-
-0.0991913 -0.246847 -0.0349919
-0.0560472 -0.26006 -0.00698811
-0.105666 -0.26296 -0.00491513
-
-0.0560472 -0.26006 -0.00698811
-0.0991913 -0.246847 -0.0349919
-0.0547766 -0.254164 -0.0411901
-
-0.0969427 -0.241251 -0.0691939
-0.0547766 -0.254164 -0.0411901
-0.0991913 -0.246847 -0.0349919
-
-0.0547766 -0.254164 -0.0411901
-0.0969427 -0.241251 -0.0691939
-0.0560472 -0.26006 -0.0753921
-
-0.0991913 -0.246847 -0.103396
-0.0560472 -0.26006 -0.0753921
-0.0969427 -0.241251 -0.0691939
-
-0.0560472 -0.26006 -0.0753921
-0.0991913 -0.246847 -0.103396
-0.0597056 -0.277035 -0.105469
-
-0.105666 -0.26296 -0.133473
-0.0597056 -0.277035 -0.105469
-0.0991913 -0.246847 -0.103396
-
-0.0597056 -0.277035 -0.105469
-0.105666 -0.26296 -0.133473
-0.0653106 -0.303042 -0.127793
-
-0.115586 -0.287646 -0.155796
-0.0653106 -0.303042 -0.127793
-0.105666 -0.26296 -0.133473
-
-0.0653106 -0.303042 -0.127793
-0.115586 -0.287646 -0.155796
-0.0721861 -0.334945 -0.139671
-
-0.127754 -0.317927 -0.167675
-0.0721861 -0.334945 -0.139671
-0.115586 -0.287646 -0.155796
-
-0.0721861 -0.334945 -0.139671
-0.127754 -0.317927 -0.167675
-0.0795029 -0.368895 -0.139671
-
-0.140703 -0.350153 -0.167675
-0.0795029 -0.368895 -0.139671
-0.127754 -0.317927 -0.167675
-
-0.0795029 -0.368895 -0.139671
-0.140703 -0.350153 -0.167675
-0.0863785 -0.400798 -0.127793
-
-0.152871 -0.380435 -0.155796
-0.0863785 -0.400798 -0.127793
-0.140703 -0.350153 -0.167675
-
-0.0863785 -0.400798 -0.127793
-0.152871 -0.380435 -0.155796
-0.0919835 -0.426805 -0.105469
-
-0.162791 -0.40512 -0.133473
-0.0919835 -0.426805 -0.105469
-0.152871 -0.380435 -0.155796
-
-0.0919835 -0.426805 -0.105469
-0.162791 -0.40512 -0.133473
-0.0956419 -0.44378 -0.0753921
-
-0.169265 -0.421233 -0.103396
-0.0956419 -0.44378 -0.0753921
-0.162791 -0.40512 -0.133473
-
-0.0956419 -0.44378 -0.0753921
-0.169265 -0.421233 -0.103396
-0.0969125 -0.449675 -0.0411901
-
-0.171514 -0.426829 -0.0691939
-0.0969125 -0.449675 -0.0411901
-0.169265 -0.421233 -0.103396
-
-0.171514 -0.426829 -0.0691939
-0.241181 -0.391703 -0.0892926
-0.169265 -0.421233 -0.0349919
-
-0.238019 -0.386568 -0.0550906
-0.169265 -0.421233 -0.0349919
-0.241181 -0.391703 -0.0892926
-
-0.169265 -0.421233 -0.0349919
-0.238019 -0.386568 -0.0550906
-0.162791 -0.40512 -0.00491513
-
-0.228915 -0.371781 -0.0250138
-0.162791 -0.40512 -0.00491513
-0.238019 -0.386568 -0.0550906
-
-0.162791 -0.40512 -0.00491513
-0.228915 -0.371781 -0.0250138
-0.152871 -0.380435 0.0174087
-
-0.214966 -0.349127 -0.00269005
-0.152871 -0.380435 0.0174087
-0.228915 -0.371781 -0.0250138
-
-0.152871 -0.380435 0.0174087
-0.214966 -0.349127 -0.00269005
-0.140703 -0.350153 0.0292869
-
-0.197855 -0.321337 0.00918819
-0.140703 -0.350153 0.0292869
-0.214966 -0.349127 -0.00269005
-
-0.140703 -0.350153 0.0292869
-0.197855 -0.321337 0.00918819
-0.127754 -0.317927 0.0292869
-
-0.179646 -0.291764 0.00918819
-0.127754 -0.317927 0.0292869
-0.197855 -0.321337 0.00918819
-
-0.127754 -0.317927 0.0292869
-0.179646 -0.291764 0.00918819
-0.115586 -0.287646 0.0174087
-
-0.162535 -0.263974 -0.00269005
-0.115586 -0.287646 0.0174087
-0.179646 -0.291764 0.00918819
-
-0.115586 -0.287646 0.0174087
-0.162535 -0.263974 -0.00269005
-0.105666 -0.26296 -0.00491513
-
-0.148586 -0.24132 -0.0250138
-0.105666 -0.26296 -0.00491513
-0.162535 -0.263974 -0.00269005
-
-0.105666 -0.26296 -0.00491513
-0.148586 -0.24132 -0.0250138
-0.0991913 -0.246847 -0.0349919
-
-0.139482 -0.226533 -0.0550906
-0.0991913 -0.246847 -0.0349919
-0.148586 -0.24132 -0.0250138
-
-0.0991913 -0.246847 -0.0349919
-0.139482 -0.226533 -0.0550906
-0.0969427 -0.241251 -0.0691939
-
-0.13632 -0.221398 -0.0892926
-0.0969427 -0.241251 -0.0691939
-0.139482 -0.226533 -0.0550906
-
-0.0969427 -0.241251 -0.0691939
-0.13632 -0.221398 -0.0892926
-0.0991913 -0.246847 -0.103396
-
-0.139482 -0.226533 -0.123495
-0.0991913 -0.246847 -0.103396
-0.13632 -0.221398 -0.0892926
-
-0.0991913 -0.246847 -0.103396
-0.139482 -0.226533 -0.123495
-0.105666 -0.26296 -0.133473
-
-0.148586 -0.24132 -0.153571
-0.105666 -0.26296 -0.133473
-0.139482 -0.226533 -0.123495
-
-0.105666 -0.26296 -0.133473
-0.148586 -0.24132 -0.153571
-0.115586 -0.287646 -0.155796
-
-0.162535 -0.263974 -0.175895
-0.115586 -0.287646 -0.155796
-0.148586 -0.24132 -0.153571
-
-0.115586 -0.287646 -0.155796
-0.162535 -0.263974 -0.175895
-0.127754 -0.317927 -0.167675
-
-0.179646 -0.291764 -0.187773
-0.127754 -0.317927 -0.167675
-0.162535 -0.263974 -0.175895
-
-0.127754 -0.317927 -0.167675
-0.179646 -0.291764 -0.187773
-0.140703 -0.350153 -0.167675
-
-0.197855 -0.321337 -0.187773
-0.140703 -0.350153 -0.167675
-0.179646 -0.291764 -0.187773
-
-0.140703 -0.350153 -0.167675
-0.197855 -0.321337 -0.187773
-0.152871 -0.380435 -0.155796
-
-0.214966 -0.349127 -0.175895
-0.152871 -0.380435 -0.155796
-0.197855 -0.321337 -0.187773
-
-0.152871 -0.380435 -0.155796
-0.214966 -0.349127 -0.175895
-0.162791 -0.40512 -0.133473
-
-0.228915 -0.371781 -0.153571
-0.162791 -0.40512 -0.133473
-0.214966 -0.349127 -0.175895
-
-0.162791 -0.40512 -0.133473
-0.228915 -0.371781 -0.153571
-0.169265 -0.421233 -0.103396
-
-0.238019 -0.386568 -0.123495
-0.169265 -0.421233 -0.103396
-0.228915 -0.371781 -0.153571
-
-0.169265 -0.421233 -0.103396
-0.238019 -0.386568 -0.123495
-0.171514 -0.426829 -0.0691939
-
-0.241181 -0.391703 -0.0892926
-0.171514 -0.426829 -0.0691939
-0.238019 -0.386568 -0.123495
-
-0.241181 -0.391703 -0.0892926
-0.30391 -0.345309 -0.09919
-0.238019 -0.386568 -0.0550906
-
-0.299926 -0.340782 -0.064988
-0.238019 -0.386568 -0.0550906
-0.30391 -0.345309 -0.09919
-
-0.238019 -0.386568 -0.0550906
-0.299926 -0.340782 -0.064988
-0.228915 -0.371781 -0.0250138
-
-0.288454 -0.327747 -0.0349113
-0.228915 -0.371781 -0.0250138
-0.299926 -0.340782 -0.064988
-
-0.228915 -0.371781 -0.0250138
-0.288454 -0.327747 -0.0349113
-0.214966 -0.349127 -0.00269005
-
-0.270877 -0.307776 -0.0125875
-0.214966 -0.349127 -0.00269005
-0.288454 -0.327747 -0.0349113
-
-0.214966 -0.349127 -0.00269005
-0.270877 -0.307776 -0.0125875
-0.197855 -0.321337 0.00918819
-
-0.249315 -0.283277 -0.000709268
-0.197855 -0.321337 0.00918819
-0.270877 -0.307776 -0.0125875
-
-0.197855 -0.321337 0.00918819
-0.249315 -0.283277 -0.000709268
-0.179646 -0.291764 0.00918819
-
-0.22637 -0.257207 -0.000709268
-0.179646 -0.291764 0.00918819
-0.249315 -0.283277 -0.000709268
-
-0.179646 -0.291764 0.00918819
-0.22637 -0.257207 -0.000709268
-0.162535 -0.263974 -0.00269005
-
-0.204809 -0.232708 -0.0125875
-0.162535 -0.263974 -0.00269005
-0.22637 -0.257207 -0.000709268
-
-0.162535 -0.263974 -0.00269005
-0.204809 -0.232708 -0.0125875
-0.148586 -0.24132 -0.0250138
-
-0.187232 -0.212737 -0.0349113
-0.148586 -0.24132 -0.0250138
-0.204809 -0.232708 -0.0125875
-
-0.148586 -0.24132 -0.0250138
-0.187232 -0.212737 -0.0349113
-0.139482 -0.226533 -0.0550906
-
-0.17576 -0.199702 -0.064988
-0.139482 -0.226533 -0.0550906
-0.187232 -0.212737 -0.0349113
-
-0.139482 -0.226533 -0.0550906
-0.17576 -0.199702 -0.064988
-0.13632 -0.221398 -0.0892926
-
-0.171775 -0.195175 -0.09919
-0.13632 -0.221398 -0.0892926
-0.17576 -0.199702 -0.064988
-
-0.13632 -0.221398 -0.0892926
-0.171775 -0.195175 -0.09919
-0.139482 -0.226533 -0.123495
-
-0.17576 -0.199702 -0.133392
-0.139482 -0.226533 -0.123495
-0.171775 -0.195175 -0.09919
-
-0.139482 -0.226533 -0.123495
-0.17576 -0.199702 -0.133392
-0.148586 -0.24132 -0.153571
-
-0.187232 -0.212737 -0.163469
-0.148586 -0.24132 -0.153571
-0.17576 -0.199702 -0.133392
-
-0.148586 -0.24132 -0.153571
-0.187232 -0.212737 -0.163469
-0.162535 -0.263974 -0.175895
-
-0.204809 -0.232708 -0.185793
-0.162535 -0.263974 -0.175895
-0.187232 -0.212737 -0.163469
-
-0.162535 -0.263974 -0.175895
-0.204809 -0.232708 -0.185793
-0.179646 -0.291764 -0.187773
-
-0.22637 -0.257207 -0.197671
-0.179646 -0.291764 -0.187773
-0.204809 -0.232708 -0.185793
-
-0.179646 -0.291764 -0.187773
-0.22637 -0.257207 -0.197671
-0.197855 -0.321337 -0.187773
-
-0.249315 -0.283277 -0.197671
-0.197855 -0.321337 -0.187773
-0.22637 -0.257207 -0.197671
-
-0.197855 -0.321337 -0.187773
-0.249315 -0.283277 -0.197671
-0.214966 -0.349127 -0.175895
-
-0.270877 -0.307776 -0.185793
-0.214966 -0.349127 -0.175895
-0.249315 -0.283277 -0.197671
-
-0.214966 -0.349127 -0.175895
-0.270877 -0.307776 -0.185793
-0.228915 -0.371781 -0.153571
-
-0.288454 -0.327747 -0.163469
-0.228915 -0.371781 -0.153571
-0.270877 -0.307776 -0.185793
-
-0.228915 -0.371781 -0.153571
-0.288454 -0.327747 -0.163469
-0.238019 -0.386568 -0.123495
-
-0.299926 -0.340782 -0.133392
-0.238019 -0.386568 -0.123495
-0.288454 -0.327747 -0.163469
-
-0.238019 -0.386568 -0.123495
-0.299926 -0.340782 -0.133392
-0.241181 -0.391703 -0.0892926
-
-0.30391 -0.345309 -0.09919
-0.241181 -0.391703 -0.0892926
-0.299926 -0.340782 -0.133392
-
-0.30391 -0.345309 -0.09919
-0.357896 -0.288981 -0.0977555
-0.299926 -0.340782 -0.064988
-
-0.353204 -0.285193 -0.0635535
-0.299926 -0.340782 -0.064988
-0.357896 -0.288981 -0.0977555
-
-0.299926 -0.340782 -0.064988
-0.353204 -0.285193 -0.0635535
-0.288454 -0.327747 -0.0349113
-
-0.339694 -0.274284 -0.0334768
-0.288454 -0.327747 -0.0349113
-0.353204 -0.285193 -0.0635535
-
-0.288454 -0.327747 -0.0349113
-0.339694 -0.274284 -0.0334768
-0.270877 -0.307776 -0.0125875
-
-0.318995 -0.25757 -0.011153
-0.270877 -0.307776 -0.0125875
-0.339694 -0.274284 -0.0334768
-
-0.270877 -0.307776 -0.0125875
-0.318995 -0.25757 -0.011153
-0.249315 -0.283277 -0.000709268
-
-0.293603 -0.237068 0.000725251
-0.249315 -0.283277 -0.000709268
-0.318995 -0.25757 -0.011153
-
-0.249315 -0.283277 -0.000709268
-0.293603 -0.237068 0.000725251
-0.22637 -0.257207 -0.000709268
-
-0.266582 -0.21525 0.000725251
-0.22637 -0.257207 -0.000709268
-0.293603 -0.237068 0.000725251
-
-0.22637 -0.257207 -0.000709268
-0.266582 -0.21525 0.000725251
-0.204809 -0.232708 -0.0125875
-
-0.241191 -0.194748 -0.011153
-0.204809 -0.232708 -0.0125875
-0.266582 -0.21525 0.000725251
-
-0.204809 -0.232708 -0.0125875
-0.241191 -0.194748 -0.011153
-0.187232 -0.212737 -0.0349113
-
-0.220492 -0.178035 -0.0334768
-0.187232 -0.212737 -0.0349113
-0.241191 -0.194748 -0.011153
-
-0.187232 -0.212737 -0.0349113
-0.220492 -0.178035 -0.0334768
-0.17576 -0.199702 -0.064988
-
-0.206981 -0.167126 -0.0635535
-0.17576 -0.199702 -0.064988
-0.220492 -0.178035 -0.0334768
-
-0.17576 -0.199702 -0.064988
-0.206981 -0.167126 -0.0635535
-0.171775 -0.195175 -0.09919
-
-0.202289 -0.163337 -0.0977555
-0.171775 -0.195175 -0.09919
-0.206981 -0.167126 -0.0635535
-
-0.171775 -0.195175 -0.09919
-0.202289 -0.163337 -0.0977555
-0.17576 -0.199702 -0.133392
-
-0.206981 -0.167126 -0.131958
-0.17576 -0.199702 -0.133392
-0.202289 -0.163337 -0.0977555
-
-0.17576 -0.199702 -0.133392
-0.206981 -0.167126 -0.131958
-0.187232 -0.212737 -0.163469
-
-0.220492 -0.178035 -0.162034
-0.187232 -0.212737 -0.163469
-0.206981 -0.167126 -0.131958
-
-0.187232 -0.212737 -0.163469
-0.220492 -0.178035 -0.162034
-0.204809 -0.232708 -0.185793
-
-0.241191 -0.194748 -0.184358
-0.204809 -0.232708 -0.185793
-0.220492 -0.178035 -0.162034
-
-0.204809 -0.232708 -0.185793
-0.241191 -0.194748 -0.184358
-0.22637 -0.257207 -0.197671
-
-0.266582 -0.21525 -0.196236
-0.22637 -0.257207 -0.197671
-0.241191 -0.194748 -0.184358
-
-0.22637 -0.257207 -0.197671
-0.266582 -0.21525 -0.196236
-0.249315 -0.283277 -0.197671
-
-0.293603 -0.237068 -0.196236
-0.249315 -0.283277 -0.197671
-0.266582 -0.21525 -0.196236
-
-0.249315 -0.283277 -0.197671
-0.293603 -0.237068 -0.196236
-0.270877 -0.307776 -0.185793
-
-0.318995 -0.25757 -0.184358
-0.270877 -0.307776 -0.185793
-0.293603 -0.237068 -0.196236
-
-0.270877 -0.307776 -0.185793
-0.318995 -0.25757 -0.184358
-0.288454 -0.327747 -0.163469
-
-0.339694 -0.274284 -0.162034
-0.288454 -0.327747 -0.163469
-0.318995 -0.25757 -0.184358
-
-0.288454 -0.327747 -0.163469
-0.339694 -0.274284 -0.162034
-0.299926 -0.340782 -0.133392
-
-0.353204 -0.285193 -0.131958
-0.299926 -0.340782 -0.133392
-0.339694 -0.274284 -0.162034
-
-0.299926 -0.340782 -0.133392
-0.353204 -0.285193 -0.131958
-0.30391 -0.345309 -0.09919
-
-0.357896 -0.288981 -0.0977555
-0.30391 -0.345309 -0.09919
-0.353204 -0.285193 -0.131958
-
-0.357896 -0.288981 -0.0977555
-0.401586 -0.22434 -0.0851529
-0.353204 -0.285193 -0.0635535
-
-0.396322 -0.221399 -0.0509509
-0.353204 -0.285193 -0.0635535
-0.401586 -0.22434 -0.0851529
-
-0.353204 -0.285193 -0.0635535
-0.396322 -0.221399 -0.0509509
-0.339694 -0.274284 -0.0334768
-
-0.381162 -0.21293 -0.0208742
-0.339694 -0.274284 -0.0334768
-0.396322 -0.221399 -0.0509509
-
-0.339694 -0.274284 -0.0334768
-0.381162 -0.21293 -0.0208742
-0.318995 -0.25757 -0.011153
-
-0.357936 -0.199955 0.00144963
-0.318995 -0.25757 -0.011153
-0.381162 -0.21293 -0.0208742
-
-0.318995 -0.25757 -0.011153
-0.357936 -0.199955 0.00144963
-0.293603 -0.237068 0.000725251
-
-0.329445 -0.184039 0.0133279
-0.293603 -0.237068 0.000725251
-0.357936 -0.199955 0.00144963
-
-0.293603 -0.237068 0.000725251
-0.329445 -0.184039 0.0133279
-0.266582 -0.21525 0.000725251
-
-0.299125 -0.167101 0.0133279
-0.266582 -0.21525 0.000725251
-0.329445 -0.184039 0.0133279
-
-0.266582 -0.21525 0.000725251
-0.299125 -0.167101 0.0133279
-0.241191 -0.194748 -0.011153
-
-0.270634 -0.151185 0.00144963
-0.241191 -0.194748 -0.011153
-0.299125 -0.167101 0.0133279
-
-0.241191 -0.194748 -0.011153
-0.270634 -0.151185 0.00144963
-0.220492 -0.178035 -0.0334768
-
-0.247408 -0.138211 -0.0208742
-0.220492 -0.178035 -0.0334768
-0.270634 -0.151185 0.00144963
-
-0.220492 -0.178035 -0.0334768
-0.247408 -0.138211 -0.0208742
-0.206981 -0.167126 -0.0635535
-
-0.232249 -0.129742 -0.0509509
-0.206981 -0.167126 -0.0635535
-0.247408 -0.138211 -0.0208742
-
-0.206981 -0.167126 -0.0635535
-0.232249 -0.129742 -0.0509509
-0.202289 -0.163337 -0.0977555
-
-0.226984 -0.126801 -0.0851529
-0.202289 -0.163337 -0.0977555
-0.232249 -0.129742 -0.0509509
-
-0.202289 -0.163337 -0.0977555
-0.226984 -0.126801 -0.0851529
-0.206981 -0.167126 -0.131958
-
-0.232249 -0.129742 -0.119355
-0.206981 -0.167126 -0.131958
-0.226984 -0.126801 -0.0851529
-
-0.206981 -0.167126 -0.131958
-0.232249 -0.129742 -0.119355
-0.220492 -0.178035 -0.162034
-
-0.247408 -0.138211 -0.149432
-0.220492 -0.178035 -0.162034
-0.232249 -0.129742 -0.119355
-
-0.220492 -0.178035 -0.162034
-0.247408 -0.138211 -0.149432
-0.241191 -0.194748 -0.184358
-
-0.270634 -0.151185 -0.171755
-0.241191 -0.194748 -0.184358
-0.247408 -0.138211 -0.149432
-
-0.241191 -0.194748 -0.184358
-0.270634 -0.151185 -0.171755
-0.266582 -0.21525 -0.196236
-
-0.299125 -0.167101 -0.183634
-0.266582 -0.21525 -0.196236
-0.270634 -0.151185 -0.171755
-
-0.266582 -0.21525 -0.196236
-0.299125 -0.167101 -0.183634
-0.293603 -0.237068 -0.196236
-
-0.329445 -0.184039 -0.183634
-0.293603 -0.237068 -0.196236
-0.299125 -0.167101 -0.183634
-
-0.293603 -0.237068 -0.196236
-0.329445 -0.184039 -0.183634
-0.318995 -0.25757 -0.184358
-
-0.357936 -0.199955 -0.171755
-0.318995 -0.25757 -0.184358
-0.329445 -0.184039 -0.183634
-
-0.318995 -0.25757 -0.184358
-0.357936 -0.199955 -0.171755
-0.339694 -0.274284 -0.162034
-
-0.381162 -0.21293 -0.149432
-0.339694 -0.274284 -0.162034
-0.357936 -0.199955 -0.171755
-
-0.339694 -0.274284 -0.162034
-0.381162 -0.21293 -0.149432
-0.353204 -0.285193 -0.131958
-
-0.396322 -0.221399 -0.119355
-0.353204 -0.285193 -0.131958
-0.381162 -0.21293 -0.149432
-
-0.353204 -0.285193 -0.131958
-0.396322 -0.221399 -0.119355
-0.357896 -0.288981 -0.0977555
-
-0.401586 -0.22434 -0.0851529
-0.357896 -0.288981 -0.0977555
-0.396322 -0.221399 -0.119355
-
-0.401586 -0.22434 -0.0851529
-0.433724 -0.153244 -0.062822
-0.396322 -0.221399 -0.0509509
-
-0.428037 -0.151235 -0.02862
-0.396322 -0.221399 -0.0509509
-0.433724 -0.153244 -0.062822
-
-0.396322 -0.221399 -0.0509509
-0.428037 -0.151235 -0.02862
-0.381162 -0.21293 -0.0208742
-
-0.411664 -0.14545 0.00145676
-0.381162 -0.21293 -0.0208742
-0.428037 -0.151235 -0.02862
-
-0.381162 -0.21293 -0.0208742
-0.411664 -0.14545 0.00145676
-0.357936 -0.199955 0.00144963
-
-0.38658 -0.136587 0.0237805
-0.357936 -0.199955 0.00144963
-0.411664 -0.14545 0.00145676
-
-0.357936 -0.199955 0.00144963
-0.38658 -0.136587 0.0237805
-0.329445 -0.184039 0.0133279
-
-0.355809 -0.125715 0.0356588
-0.329445 -0.184039 0.0133279
-0.38658 -0.136587 0.0237805
-
-0.329445 -0.184039 0.0133279
-0.355809 -0.125715 0.0356588
-0.299125 -0.167101 0.0133279
-
-0.323063 -0.114145 0.0356588
-0.299125 -0.167101 0.0133279
-0.355809 -0.125715 0.0356588
-
-0.299125 -0.167101 0.0133279
-0.323063 -0.114145 0.0356588
-0.270634 -0.151185 0.00144963
-
-0.292292 -0.103273 0.0237805
-0.270634 -0.151185 0.00144963
-0.323063 -0.114145 0.0356588
-
-0.270634 -0.151185 0.00144963
-0.292292 -0.103273 0.0237805
-0.247408 -0.138211 -0.0208742
-
-0.267207 -0.0944103 0.00145676
-0.247408 -0.138211 -0.0208742
-0.292292 -0.103273 0.0237805
-
-0.247408 -0.138211 -0.0208742
-0.267207 -0.0944103 0.00145676
-0.232249 -0.129742 -0.0509509
-
-0.250834 -0.0886254 -0.02862
-0.232249 -0.129742 -0.0509509
-0.267207 -0.0944103 0.00145676
-
-0.232249 -0.129742 -0.0509509
-0.250834 -0.0886254 -0.02862
-0.226984 -0.126801 -0.0851529
-
-0.245148 -0.0866163 -0.062822
-0.226984 -0.126801 -0.0851529
-0.250834 -0.0886254 -0.02862
-
-0.226984 -0.126801 -0.0851529
-0.245148 -0.0866163 -0.062822
-0.232249 -0.129742 -0.119355
-
-0.250834 -0.0886254 -0.097024
-0.232249 -0.129742 -0.119355
-0.245148 -0.0866163 -0.062822
-
-0.232249 -0.129742 -0.119355
-0.250834 -0.0886254 -0.097024
-0.247408 -0.138211 -0.149432
-
-0.267207 -0.0944103 -0.127101
-0.247408 -0.138211 -0.149432
-0.250834 -0.0886254 -0.097024
-
-0.247408 -0.138211 -0.149432
-0.267207 -0.0944103 -0.127101
-0.270634 -0.151185 -0.171755
-
-0.292292 -0.103273 -0.149425
-0.270634 -0.151185 -0.171755
-0.267207 -0.0944103 -0.127101
-
-0.270634 -0.151185 -0.171755
-0.292292 -0.103273 -0.149425
-0.299125 -0.167101 -0.183634
-
-0.323063 -0.114145 -0.161303
-0.299125 -0.167101 -0.183634
-0.292292 -0.103273 -0.149425
-
-0.299125 -0.167101 -0.183634
-0.323063 -0.114145 -0.161303
-0.329445 -0.184039 -0.183634
-
-0.355809 -0.125715 -0.161303
-0.329445 -0.184039 -0.183634
-0.323063 -0.114145 -0.161303
-
-0.329445 -0.184039 -0.183634
-0.355809 -0.125715 -0.161303
-0.357936 -0.199955 -0.171755
-
-0.38658 -0.136587 -0.149425
-0.357936 -0.199955 -0.171755
-0.355809 -0.125715 -0.161303
-
-0.357936 -0.199955 -0.171755
-0.38658 -0.136587 -0.149425
-0.381162 -0.21293 -0.149432
-
-0.411664 -0.14545 -0.127101
-0.381162 -0.21293 -0.149432
-0.38658 -0.136587 -0.149425
-
-0.381162 -0.21293 -0.149432
-0.411664 -0.14545 -0.127101
-0.396322 -0.221399 -0.119355
-
-0.428037 -0.151235 -0.097024
-0.396322 -0.221399 -0.119355
-0.411664 -0.14545 -0.127101
-
-0.396322 -0.221399 -0.119355
-0.428037 -0.151235 -0.097024
-0.401586 -0.22434 -0.0851529
-
-0.433724 -0.153244 -0.062822
-0.401586 -0.22434 -0.0851529
-0.428037 -0.151235 -0.097024
-
-0.433724 -0.153244 -0.062822
-0.453383 -0.0777404 -0.033314
-0.428037 -0.151235 -0.02862
-
-0.447439 -0.0767212 0.000888035
-0.428037 -0.151235 -0.02862
-0.453383 -0.0777404 -0.033314
-
-0.428037 -0.151235 -0.02862
-0.447439 -0.0767212 0.000888035
-0.411664 -0.14545 0.00145676
-
-0.430324 -0.0737865 0.0309648
-0.411664 -0.14545 0.00145676
-0.447439 -0.0767212 0.000888035
-
-0.411664 -0.14545 0.00145676
-0.430324 -0.0737865 0.0309648
-0.38658 -0.136587 0.0237805
-
-0.404103 -0.0692903 0.0532886
-0.38658 -0.136587 0.0237805
-0.430324 -0.0737865 0.0309648
-
-0.38658 -0.136587 0.0237805
-0.404103 -0.0692903 0.0532886
-0.355809 -0.125715 0.0356588
-
-0.371937 -0.063775 0.0651668
-0.355809 -0.125715 0.0356588
-0.404103 -0.0692903 0.0532886
-
-0.355809 -0.125715 0.0356588
-0.371937 -0.063775 0.0651668
-0.323063 -0.114145 0.0356588
-
-0.337707 -0.0579056 0.0651668
-0.323063 -0.114145 0.0356588
-0.371937 -0.063775 0.0651668
-
-0.323063 -0.114145 0.0356588
-0.337707 -0.0579056 0.0651668
-0.292292 -0.103273 0.0237805
-
-0.305541 -0.0523903 0.0532886
-0.292292 -0.103273 0.0237805
-0.337707 -0.0579056 0.0651668
-
-0.292292 -0.103273 0.0237805
-0.305541 -0.0523903 0.0532886
-0.267207 -0.0944103 0.00145676
-
-0.279319 -0.0478941 0.0309648
-0.267207 -0.0944103 0.00145676
-0.305541 -0.0523903 0.0532886
-
-0.267207 -0.0944103 0.00145676
-0.279319 -0.0478941 0.0309648
-0.250834 -0.0886254 -0.02862
-
-0.262204 -0.0449594 0.000888035
-0.250834 -0.0886254 -0.02862
-0.279319 -0.0478941 0.0309648
-
-0.250834 -0.0886254 -0.02862
-0.262204 -0.0449594 0.000888035
-0.245148 -0.0866163 -0.062822
-
-0.25626 -0.0439402 -0.033314
-0.245148 -0.0866163 -0.062822
-0.262204 -0.0449594 0.000888035
-
-0.245148 -0.0866163 -0.062822
-0.25626 -0.0439402 -0.033314
-0.250834 -0.0886254 -0.097024
-
-0.262204 -0.0449594 -0.067516
-0.250834 -0.0886254 -0.097024
-0.25626 -0.0439402 -0.033314
-
-0.250834 -0.0886254 -0.097024
-0.262204 -0.0449594 -0.067516
-0.267207 -0.0944103 -0.127101
-
-0.279319 -0.0478941 -0.0975927
-0.267207 -0.0944103 -0.127101
-0.262204 -0.0449594 -0.067516
-
-0.267207 -0.0944103 -0.127101
-0.279319 -0.0478941 -0.0975927
-0.292292 -0.103273 -0.149425
-
-0.305541 -0.0523903 -0.119917
-0.292292 -0.103273 -0.149425
-0.279319 -0.0478941 -0.0975927
-
-0.292292 -0.103273 -0.149425
-0.305541 -0.0523903 -0.119917
-0.323063 -0.114145 -0.161303
-
-0.337707 -0.0579056 -0.131795
-0.323063 -0.114145 -0.161303
-0.305541 -0.0523903 -0.119917
-
-0.323063 -0.114145 -0.161303
-0.337707 -0.0579056 -0.131795
-0.355809 -0.125715 -0.161303
-
-0.371937 -0.063775 -0.131795
-0.355809 -0.125715 -0.161303
-0.337707 -0.0579056 -0.131795
-
-0.355809 -0.125715 -0.161303
-0.371937 -0.063775 -0.131795
-0.38658 -0.136587 -0.149425
-
-0.404103 -0.0692903 -0.119917
-0.38658 -0.136587 -0.149425
-0.371937 -0.063775 -0.131795
-
-0.38658 -0.136587 -0.149425
-0.404103 -0.0692903 -0.119917
-0.411664 -0.14545 -0.127101
-
-0.430324 -0.0737865 -0.0975927
-0.411664 -0.14545 -0.127101
-0.404103 -0.0692903 -0.119917
-
-0.411664 -0.14545 -0.127101
-0.430324 -0.0737865 -0.0975927
-0.428037 -0.151235 -0.097024
-
-0.447439 -0.0767212 -0.067516
-0.428037 -0.151235 -0.097024
-0.430324 -0.0737865 -0.0975927
-
-0.428037 -0.151235 -0.097024
-0.447439 -0.0767212 -0.067516
-0.433724 -0.153244 -0.062822
-
-0.453383 -0.0777404 -0.033314
-0.433724 -0.153244 -0.062822
-0.447439 -0.0767212 -0.067516
-
-0.453383 -0.0777404 -0.033314
-0.46 0 0
-0.447439 -0.0767212 0.000888035
-
-0.453969 0 0.034202
-0.447439 -0.0767212 0.000888035
-0.46 0 0
-
-0.447439 -0.0767212 0.000888035
-0.453969 0 0.034202
-0.430324 -0.0737865 0.0309648
-
-0.436604 0 0.0642788
-0.430324 -0.0737865 0.0309648
-0.453969 0 0.034202
-
-0.430324 -0.0737865 0.0309648
-0.436604 0 0.0642788
-0.404103 -0.0692903 0.0532886
-
-0.41 0 0.0866025
-0.404103 -0.0692903 0.0532886
-0.436604 0 0.0642788
-
-0.404103 -0.0692903 0.0532886
-0.41 0 0.0866025
-0.371937 -0.063775 0.0651668
-
-0.377365 0 0.0984808
-0.371937 -0.063775 0.0651668
-0.41 0 0.0866025
-
-0.371937 -0.063775 0.0651668
-0.377365 0 0.0984808
-0.337707 -0.0579056 0.0651668
-
-0.342635 0 0.0984808
-0.337707 -0.0579056 0.0651668
-0.377365 0 0.0984808
-
-0.337707 -0.0579056 0.0651668
-0.342635 0 0.0984808
-0.305541 -0.0523903 0.0532886
-
-0.31 0 0.0866025
-0.305541 -0.0523903 0.0532886
-0.342635 0 0.0984808
-
-0.305541 -0.0523903 0.0532886
-0.31 0 0.0866025
-0.279319 -0.0478941 0.0309648
-
-0.283396 0 0.0642788
-0.279319 -0.0478941 0.0309648
-0.31 0 0.0866025
-
-0.279319 -0.0478941 0.0309648
-0.283396 0 0.0642788
-0.262204 -0.0449594 0.000888035
-
-0.266031 0 0.034202
-0.262204 -0.0449594 0.000888035
-0.283396 0 0.0642788
-
-0.262204 -0.0449594 0.000888035
-0.266031 0 0.034202
-0.25626 -0.0439402 -0.033314
-
-0.26 0 0
-0.25626 -0.0439402 -0.033314
-0.266031 0 0.034202
-
-0.25626 -0.0439402 -0.033314
-0.26 0 0
-0.262204 -0.0449594 -0.067516
-
-0.266031 0 -0.034202
-0.262204 -0.0449594 -0.067516
-0.26 0 0
-
-0.262204 -0.0449594 -0.067516
-0.266031 0 -0.034202
-0.279319 -0.0478941 -0.0975927
-
-0.283396 0 -0.0642788
-0.279319 -0.0478941 -0.0975927
-0.266031 0 -0.034202
-
-0.279319 -0.0478941 -0.0975927
-0.283396 0 -0.0642788
-0.305541 -0.0523903 -0.119917
-
-0.31 0 -0.0866025
-0.305541 -0.0523903 -0.119917
-0.283396 0 -0.0642788
-
-0.305541 -0.0523903 -0.119917
-0.31 0 -0.0866025
-0.337707 -0.0579056 -0.131795
-
-0.342635 0 -0.0984808
-0.337707 -0.0579056 -0.131795
-0.31 0 -0.0866025
-
-0.337707 -0.0579056 -0.131795
-0.342635 0 -0.0984808
-0.371937 -0.063775 -0.131795
-
-0.377365 0 -0.0984808
-0.371937 -0.063775 -0.131795
-0.342635 0 -0.0984808
-
-0.371937 -0.063775 -0.131795
-0.377365 0 -0.0984808
-0.404103 -0.0692903 -0.119917
-
-0.41 0 -0.0866025
-0.404103 -0.0692903 -0.119917
-0.377365 0 -0.0984808
-
-0.404103 -0.0692903 -0.119917
-0.41 0 -0.0866025
-0.430324 -0.0737865 -0.0975927
-
-0.436604 0 -0.0642788
-0.430324 -0.0737865 -0.0975927
-0.41 0 -0.0866025
-
-0.430324 -0.0737865 -0.0975927
-0.436604 0 -0.0642788
-0.447439 -0.0767212 -0.067516
-
-0.453969 0 -0.034202
-0.447439 -0.0767212 -0.067516
-0.436604 0 -0.0642788
-
-0.447439 -0.0767212 -0.067516
-0.453969 0 -0.034202
-0.453383 -0.0777404 -0.033314
-
-0.46 0 0
-0.453383 -0.0777404 -0.033314
-0.453969 0 -0.034202
-
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/falling/torus2.path b/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/falling/torus2.path
deleted file mode 100644
index 54752acccd99324d9b6123e3fde05e3bde238f2f..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/falling/torus2.path
+++ /dev/null
@@ -1,11991 +0,0 @@
-2398
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
-1 0 0
-0 1 0
-0 0 1
-0 0 0
-
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/falling/torus2.tris b/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/falling/torus2.tris
deleted file mode 100644
index 115e4e2d5daf266621ecc3baf65258c16bf9f5b6..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/falling/torus2.tris
+++ /dev/null
@@ -1,12961 +0,0 @@
-3240
-1 0 0
-1.05291 0.110666 0
-0.992183 0 0.0668786
-
-1.04357 0.109683 0.0804188
-0.992183 0 0.0668786
-1.05291 0.110666 0
-
-0.992183 0 0.0668786
-1.04357 0.109683 0.0804188
-0.969153 0 0.130152
-
-1.01602 0.106789 0.156502
-0.969153 0 0.130152
-1.04357 0.109683 0.0804188
-
-0.969153 0 0.130152
-1.01602 0.106789 0.156502
-0.932153 0 0.186408
-
-0.971777 0.102138 0.224149
-0.932153 0 0.186408
-1.01602 0.106789 0.156502
-
-0.932153 0 0.186408
-0.971777 0.102138 0.224149
-0.883176 0 0.232616
-
-0.913207 0.0959819 0.279711
-0.883176 0 0.232616
-0.971777 0.102138 0.224149
-
-0.883176 0 0.232616
-0.913207 0.0959819 0.279711
-0.824863 0 0.266283
-
-0.843472 0.0886525 0.320194
-0.824863 0 0.266283
-0.913207 0.0959819 0.279711
-
-0.824863 0 0.266283
-0.843472 0.0886525 0.320194
-0.760358 0 0.285594
-
-0.766332 0.0805448 0.343415
-0.760358 0 0.285594
-0.843472 0.0886525 0.320194
-
-0.760358 0 0.285594
-0.766332 0.0805448 0.343415
-0.693138 0 0.289509
-
-0.685946 0.0720958 0.348123
-0.693138 0 0.289509
-0.766332 0.0805448 0.343415
-
-0.693138 0 0.289509
-0.685946 0.0720958 0.348123
-0.626827 0 0.277817
-
-0.606646 0.0637611 0.334064
-0.626827 0 0.277817
-0.685946 0.0720958 0.348123
-
-0.626827 0 0.277817
-0.606646 0.0637611 0.334064
-0.565 0 0.251147
-
-0.532709 0.05599 0.301995
-0.565 0 0.251147
-0.606646 0.0637611 0.334064
-
-0.565 0 0.251147
-0.532709 0.05599 0.301995
-0.51099 0 0.210938
-
-0.46812 0.0492014 0.253645
-0.51099 0 0.210938
-0.532709 0.05599 0.301995
-
-0.51099 0 0.210938
-0.46812 0.0492014 0.253645
-0.467709 0 0.159358
-
-0.416361 0.0437613 0.191621
-0.467709 0 0.159358
-0.46812 0.0492014 0.253645
-
-0.467709 0 0.159358
-0.416361 0.0437613 0.191621
-0.437489 0 0.0991858
-
-0.380222 0.039963 0.119267
-0.437489 0 0.0991858
-0.416361 0.0437613 0.191621
-
-0.437489 0 0.0991858
-0.380222 0.039963 0.119267
-0.421961 0 0.0336669
-
-0.361653 0.0380112 0.0404831
-0.421961 0 0.0336669
-0.380222 0.039963 0.119267
-
-0.421961 0 0.0336669
-0.361653 0.0380112 0.0404831
-0.421961 0 -0.0336669
-
-0.361653 0.0380112 -0.0404831
-0.421961 0 -0.0336669
-0.361653 0.0380112 0.0404831
-
-0.421961 0 -0.0336669
-0.361653 0.0380112 -0.0404831
-0.437489 0 -0.0991858
-
-0.380222 0.039963 -0.119267
-0.437489 0 -0.0991858
-0.361653 0.0380112 -0.0404831
-
-0.437489 0 -0.0991858
-0.380222 0.039963 -0.119267
-0.467709 0 -0.159358
-
-0.416361 0.0437613 -0.191621
-0.467709 0 -0.159358
-0.380222 0.039963 -0.119267
-
-0.467709 0 -0.159358
-0.416361 0.0437613 -0.191621
-0.51099 0 -0.210938
-
-0.46812 0.0492014 -0.253645
-0.51099 0 -0.210938
-0.416361 0.0437613 -0.191621
-
-0.51099 0 -0.210938
-0.46812 0.0492014 -0.253645
-0.565 0 -0.251147
-
-0.532709 0.05599 -0.301995
-0.565 0 -0.251147
-0.46812 0.0492014 -0.253645
-
-0.565 0 -0.251147
-0.532709 0.05599 -0.301995
-0.626827 0 -0.277817
-
-0.606646 0.0637611 -0.334064
-0.626827 0 -0.277817
-0.532709 0.05599 -0.301995
-
-0.626827 0 -0.277817
-0.606646 0.0637611 -0.334064
-0.693138 0 -0.289509
-
-0.685946 0.0720958 -0.348123
-0.693138 0 -0.289509
-0.606646 0.0637611 -0.334064
-
-0.693138 0 -0.289509
-0.685946 0.0720958 -0.348123
-0.760358 0 -0.285594
-
-0.766332 0.0805448 -0.343415
-0.760358 0 -0.285594
-0.685946 0.0720958 -0.348123
-
-0.760358 0 -0.285594
-0.766332 0.0805448 -0.343415
-0.824863 0 -0.266283
-
-0.843472 0.0886525 -0.320194
-0.824863 0 -0.266283
-0.766332 0.0805448 -0.343415
-
-0.824863 0 -0.266283
-0.843472 0.0886525 -0.320194
-0.883176 0 -0.232616
-
-0.913207 0.0959819 -0.279711
-0.883176 0 -0.232616
-0.843472 0.0886525 -0.320194
-
-0.883176 0 -0.232616
-0.913207 0.0959819 -0.279711
-0.932153 0 -0.186408
-
-0.971777 0.102138 -0.224149
-0.932153 0 -0.186408
-0.913207 0.0959819 -0.279711
-
-0.932153 0 -0.186408
-0.971777 0.102138 -0.224149
-0.969153 0 -0.130152
-
-1.01602 0.106789 -0.156502
-0.969153 0 -0.130152
-0.971777 0.102138 -0.224149
-
-0.969153 0 -0.130152
-1.01602 0.106789 -0.156502
-0.992183 0 -0.0668786
-
-1.04357 0.109683 -0.0804188
-0.992183 0 -0.0668786
-1.01602 0.106789 -0.156502
-
-0.992183 0 -0.0668786
-1.04357 0.109683 -0.0804188
-1 0 0
-
-1.05291 0.110666 0
-1 0 0
-1.04357 0.109683 -0.0804188
-
-1.05291 0.110666 0
-1.08739 0.231131 0
-1.04357 0.109683 0.0804188
-
-1.0768 0.22888 0.0926336
-1.04357 0.109683 0.0804188
-1.08739 0.231131 0
-
-1.04357 0.109683 0.0804188
-1.0768 0.22888 0.0926336
-1.01602 0.106789 0.156502
-
-1.04559 0.222248 0.180273
-1.01602 0.106789 0.156502
-1.0768 0.22888 0.0926336
-
-1.01602 0.106789 0.156502
-1.04559 0.222248 0.180273
-0.971777 0.102138 0.224149
-
-0.995465 0.211593 0.258194
-0.971777 0.102138 0.224149
-1.04559 0.222248 0.180273
-
-0.971777 0.102138 0.224149
-0.995465 0.211593 0.258194
-0.913207 0.0959819 0.279711
-
-0.929109 0.197488 0.322196
-0.913207 0.0959819 0.279711
-0.995465 0.211593 0.258194
-
-0.913207 0.0959819 0.279711
-0.929109 0.197488 0.322196
-0.843472 0.0886525 0.320194
-
-0.850105 0.180695 0.368828
-0.843472 0.0886525 0.320194
-0.929109 0.197488 0.322196
-
-0.843472 0.0886525 0.320194
-0.850105 0.180695 0.368828
-0.766332 0.0805448 0.343415
-
-0.762711 0.162119 0.395577
-0.766332 0.0805448 0.343415
-0.850105 0.180695 0.368828
-
-0.766332 0.0805448 0.343415
-0.762711 0.162119 0.395577
-0.685946 0.0720958 0.348123
-
-0.67164 0.142761 0.401
-0.685946 0.0720958 0.348123
-0.762711 0.162119 0.395577
-
-0.685946 0.0720958 0.348123
-0.67164 0.142761 0.401
-0.606646 0.0637611 0.334064
-
-0.581799 0.123665 0.384804
-0.606646 0.0637611 0.334064
-0.67164 0.142761 0.401
-
-0.606646 0.0637611 0.334064
-0.581799 0.123665 0.384804
-0.532709 0.05599 0.301995
-
-0.498034 0.10586 0.347864
-0.532709 0.05599 0.301995
-0.581799 0.123665 0.384804
-
-0.532709 0.05599 0.301995
-0.498034 0.10586 0.347864
-0.46812 0.0492014 0.253645
-
-0.424859 0.0903067 0.292171
-0.46812 0.0492014 0.253645
-0.498034 0.10586 0.347864
-
-0.46812 0.0492014 0.253645
-0.424859 0.0903067 0.292171
-0.416361 0.0437613 0.191621
-
-0.36622 0.0778425 0.220726
-0.416361 0.0437613 0.191621
-0.424859 0.0903067 0.292171
-
-0.416361 0.0437613 0.191621
-0.36622 0.0778425 0.220726
-0.380222 0.039963 0.119267
-
-0.325278 0.06914 0.137382
-0.380222 0.039963 0.119267
-0.36622 0.0778425 0.220726
-
-0.380222 0.039963 0.119267
-0.325278 0.06914 0.137382
-0.361653 0.0380112 0.0404831
-
-0.30424 0.0646682 0.0466321
-0.361653 0.0380112 0.0404831
-0.325278 0.06914 0.137382
-
-0.361653 0.0380112 0.0404831
-0.30424 0.0646682 0.0466321
-0.361653 0.0380112 -0.0404831
-
-0.30424 0.0646682 -0.0466321
-0.361653 0.0380112 -0.0404831
-0.30424 0.0646682 0.0466321
-
-0.361653 0.0380112 -0.0404831
-0.30424 0.0646682 -0.0466321
-0.380222 0.039963 -0.119267
-
-0.325278 0.06914 -0.137382
-0.380222 0.039963 -0.119267
-0.30424 0.0646682 -0.0466321
-
-0.380222 0.039963 -0.119267
-0.325278 0.06914 -0.137382
-0.416361 0.0437613 -0.191621
-
-0.36622 0.0778425 -0.220726
-0.416361 0.0437613 -0.191621
-0.325278 0.06914 -0.137382
-
-0.416361 0.0437613 -0.191621
-0.36622 0.0778425 -0.220726
-0.46812 0.0492014 -0.253645
-
-0.424859 0.0903067 -0.292171
-0.46812 0.0492014 -0.253645
-0.36622 0.0778425 -0.220726
-
-0.46812 0.0492014 -0.253645
-0.424859 0.0903067 -0.292171
-0.532709 0.05599 -0.301995
-
-0.498034 0.10586 -0.347864
-0.532709 0.05599 -0.301995
-0.424859 0.0903067 -0.292171
-
-0.532709 0.05599 -0.301995
-0.498034 0.10586 -0.347864
-0.606646 0.0637611 -0.334064
-
-0.581799 0.123665 -0.384804
-0.606646 0.0637611 -0.334064
-0.498034 0.10586 -0.347864
-
-0.606646 0.0637611 -0.334064
-0.581799 0.123665 -0.384804
-0.685946 0.0720958 -0.348123
-
-0.67164 0.142761 -0.401
-0.685946 0.0720958 -0.348123
-0.581799 0.123665 -0.384804
-
-0.685946 0.0720958 -0.348123
-0.67164 0.142761 -0.401
-0.766332 0.0805448 -0.343415
-
-0.762711 0.162119 -0.395577
-0.766332 0.0805448 -0.343415
-0.67164 0.142761 -0.401
-
-0.766332 0.0805448 -0.343415
-0.762711 0.162119 -0.395577
-0.843472 0.0886525 -0.320194
-
-0.850105 0.180695 -0.368828
-0.843472 0.0886525 -0.320194
-0.762711 0.162119 -0.395577
-
-0.843472 0.0886525 -0.320194
-0.850105 0.180695 -0.368828
-0.913207 0.0959819 -0.279711
-
-0.929109 0.197488 -0.322196
-0.913207 0.0959819 -0.279711
-0.850105 0.180695 -0.368828
-
-0.913207 0.0959819 -0.279711
-0.929109 0.197488 -0.322196
-0.971777 0.102138 -0.224149
-
-0.995465 0.211593 -0.258194
-0.971777 0.102138 -0.224149
-0.929109 0.197488 -0.322196
-
-0.971777 0.102138 -0.224149
-0.995465 0.211593 -0.258194
-1.01602 0.106789 -0.156502
-
-1.04559 0.222248 -0.180273
-1.01602 0.106789 -0.156502
-0.995465 0.211593 -0.258194
-
-1.01602 0.106789 -0.156502
-1.04559 0.222248 -0.180273
-1.04357 0.109683 -0.0804188
-
-1.0768 0.22888 -0.0926336
-1.04357 0.109683 -0.0804188
-1.04559 0.222248 -0.180273
-
-1.04357 0.109683 -0.0804188
-1.0768 0.22888 -0.0926336
-1.05291 0.110666 0
-
-1.08739 0.231131 0
-1.05291 0.110666 0
-1.0768 0.22888 -0.0926336
-
-1.08739 0.231131 0
-1.09725 0.356517 0
-1.0768 0.22888 0.0926336
-
-1.08587 0.352821 0.102327
-1.0768 0.22888 0.0926336
-1.09725 0.356517 0
-
-1.0768 0.22888 0.0926336
-1.08587 0.352821 0.102327
-1.04559 0.222248 0.180273
-
-1.05236 0.341932 0.199138
-1.04559 0.222248 0.180273
-1.08587 0.352821 0.102327
-
-1.04559 0.222248 0.180273
-1.05236 0.341932 0.199138
-0.995465 0.211593 0.258194
-
-0.998518 0.324438 0.285213
-0.995465 0.211593 0.258194
-1.05236 0.341932 0.199138
-
-0.995465 0.211593 0.258194
-0.998518 0.324438 0.285213
-0.929109 0.197488 0.322196
-
-0.927249 0.301281 0.355913
-0.929109 0.197488 0.322196
-0.998518 0.324438 0.285213
-
-0.929109 0.197488 0.322196
-0.927249 0.301281 0.355913
-0.850105 0.180695 0.368828
-
-0.842394 0.273711 0.407425
-0.850105 0.180695 0.368828
-0.927249 0.301281 0.355913
-
-0.850105 0.180695 0.368828
-0.842394 0.273711 0.407425
-0.762711 0.162119 0.395577
-
-0.748529 0.243212 0.436972
-0.762711 0.162119 0.395577
-0.842394 0.273711 0.407425
-
-0.762711 0.162119 0.395577
-0.748529 0.243212 0.436972
-0.67164 0.142761 0.401
-
-0.650713 0.21143 0.442963
-0.67164 0.142761 0.401
-0.748529 0.243212 0.436972
-
-0.67164 0.142761 0.401
-0.650713 0.21143 0.442963
-0.581799 0.123665 0.384804
-
-0.55422 0.180077 0.425073
-0.581799 0.123665 0.384804
-0.650713 0.21143 0.442963
-
-0.581799 0.123665 0.384804
-0.55422 0.180077 0.425073
-0.498034 0.10586 0.347864
-
-0.464252 0.150845 0.384267
-0.498034 0.10586 0.347864
-0.55422 0.180077 0.425073
-
-0.498034 0.10586 0.347864
-0.464252 0.150845 0.384267
-0.424859 0.0903067 0.292171
-
-0.385659 0.125308 0.322745
-0.424859 0.0903067 0.292171
-0.464252 0.150845 0.384267
-
-0.424859 0.0903067 0.292171
-0.385659 0.125308 0.322745
-0.36622 0.0778425 0.220726
-
-0.322677 0.104844 0.243824
-0.36622 0.0778425 0.220726
-0.385659 0.125308 0.322745
-
-0.36622 0.0778425 0.220726
-0.322677 0.104844 0.243824
-0.325278 0.06914 0.137382
-
-0.278703 0.0905562 0.151759
-0.325278 0.06914 0.137382
-0.322677 0.104844 0.243824
-
-0.325278 0.06914 0.137382
-0.278703 0.0905562 0.151759
-0.30424 0.0646682 0.0466321
-
-0.256107 0.0832143 0.051512
-0.30424 0.0646682 0.0466321
-0.278703 0.0905562 0.151759
-
-0.30424 0.0646682 0.0466321
-0.256107 0.0832143 0.051512
-0.30424 0.0646682 -0.0466321
-
-0.256107 0.0832143 -0.051512
-0.30424 0.0646682 -0.0466321
-0.256107 0.0832143 0.051512
-
-0.30424 0.0646682 -0.0466321
-0.256107 0.0832143 -0.051512
-0.325278 0.06914 -0.137382
-
-0.278703 0.0905562 -0.151759
-0.325278 0.06914 -0.137382
-0.256107 0.0832143 -0.051512
-
-0.325278 0.06914 -0.137382
-0.278703 0.0905562 -0.151759
-0.36622 0.0778425 -0.220726
-
-0.322677 0.104844 -0.243824
-0.36622 0.0778425 -0.220726
-0.278703 0.0905562 -0.151759
-
-0.36622 0.0778425 -0.220726
-0.322677 0.104844 -0.243824
-0.424859 0.0903067 -0.292171
-
-0.385659 0.125308 -0.322745
-0.424859 0.0903067 -0.292171
-0.322677 0.104844 -0.243824
-
-0.424859 0.0903067 -0.292171
-0.385659 0.125308 -0.322745
-0.498034 0.10586 -0.347864
-
-0.464252 0.150845 -0.384267
-0.498034 0.10586 -0.347864
-0.385659 0.125308 -0.322745
-
-0.498034 0.10586 -0.347864
-0.464252 0.150845 -0.384267
-0.581799 0.123665 -0.384804
-
-0.55422 0.180077 -0.425073
-0.581799 0.123665 -0.384804
-0.464252 0.150845 -0.384267
-
-0.581799 0.123665 -0.384804
-0.55422 0.180077 -0.425073
-0.67164 0.142761 -0.401
-
-0.650713 0.21143 -0.442963
-0.67164 0.142761 -0.401
-0.55422 0.180077 -0.425073
-
-0.67164 0.142761 -0.401
-0.650713 0.21143 -0.442963
-0.762711 0.162119 -0.395577
-
-0.748529 0.243212 -0.436972
-0.762711 0.162119 -0.395577
-0.650713 0.21143 -0.442963
-
-0.762711 0.162119 -0.395577
-0.748529 0.243212 -0.436972
-0.850105 0.180695 -0.368828
-
-0.842394 0.273711 -0.407425
-0.850105 0.180695 -0.368828
-0.748529 0.243212 -0.436972
-
-0.850105 0.180695 -0.368828
-0.842394 0.273711 -0.407425
-0.929109 0.197488 -0.322196
-
-0.927249 0.301281 -0.355913
-0.929109 0.197488 -0.322196
-0.842394 0.273711 -0.407425
-
-0.929109 0.197488 -0.322196
-0.927249 0.301281 -0.355913
-0.995465 0.211593 -0.258194
-
-0.998518 0.324438 -0.285213
-0.995465 0.211593 -0.258194
-0.927249 0.301281 -0.355913
-
-0.995465 0.211593 -0.258194
-0.998518 0.324438 -0.285213
-1.04559 0.222248 -0.180273
-
-1.05236 0.341932 -0.199138
-1.04559 0.222248 -0.180273
-0.998518 0.324438 -0.285213
-
-1.04559 0.222248 -0.180273
-1.05236 0.341932 -0.199138
-1.0768 0.22888 -0.0926336
-
-1.08587 0.352821 -0.102327
-1.0768 0.22888 -0.0926336
-1.05236 0.341932 -0.199138
-
-1.0768 0.22888 -0.0926336
-1.08587 0.352821 -0.102327
-1.08739 0.231131 0
-
-1.09725 0.356517 0
-1.08739 0.231131 0
-1.08587 0.352821 -0.102327
-
-1.09725 0.356517 0
-1.07862 0.480234 0
-1.08587 0.352821 0.102327
-
-1.06703 0.475074 0.108551
-1.08587 0.352821 0.102327
-1.07862 0.480234 0
-
-1.08587 0.352821 0.102327
-1.06703 0.475074 0.108551
-1.05236 0.341932 0.199138
-
-1.03289 0.45987 0.21125
-1.05236 0.341932 0.199138
-1.06703 0.475074 0.108551
-
-1.05236 0.341932 0.199138
-1.03289 0.45987 0.21125
-0.998518 0.324438 0.285213
-
-0.978021 0.435443 0.302561
-0.998518 0.324438 0.285213
-1.03289 0.45987 0.21125
-
-0.998518 0.324438 0.285213
-0.978021 0.435443 0.302561
-0.927249 0.301281 0.355913
-
-0.905399 0.40311 0.37756
-0.927249 0.301281 0.355913
-0.978021 0.435443 0.302561
-
-0.927249 0.301281 0.355913
-0.905399 0.40311 0.37756
-0.842394 0.273711 0.407425
-
-0.818934 0.364613 0.432205
-0.842394 0.273711 0.407425
-0.905399 0.40311 0.37756
-
-0.842394 0.273711 0.407425
-0.818934 0.364613 0.432205
-0.748529 0.243212 0.436972
-
-0.723287 0.322028 0.46355
-0.748529 0.243212 0.436972
-0.818934 0.364613 0.432205
-
-0.748529 0.243212 0.436972
-0.723287 0.322028 0.46355
-0.650713 0.21143 0.442963
-
-0.623615 0.277651 0.469904
-0.650713 0.21143 0.442963
-0.723287 0.322028 0.46355
-
-0.650713 0.21143 0.442963
-0.623615 0.277651 0.469904
-0.55422 0.180077 0.425073
-
-0.52529 0.233874 0.450926
-0.55422 0.180077 0.425073
-0.623615 0.277651 0.469904
-
-0.55422 0.180077 0.425073
-0.52529 0.233874 0.450926
-0.464252 0.150845 0.384267
-
-0.433614 0.193057 0.407639
-0.464252 0.150845 0.384267
-0.52529 0.233874 0.450926
-
-0.464252 0.150845 0.384267
-0.433614 0.193057 0.407639
-0.385659 0.125308 0.322745
-
-0.353529 0.157401 0.342375
-0.385659 0.125308 0.322745
-0.433614 0.193057 0.407639
-
-0.385659 0.125308 0.322745
-0.353529 0.157401 0.342375
-0.322677 0.104844 0.243824
-
-0.289352 0.128828 0.258654
-0.322677 0.104844 0.243824
-0.353529 0.157401 0.342375
-
-0.322677 0.104844 0.243824
-0.289352 0.128828 0.258654
-0.278703 0.0905562 0.151759
-
-0.244543 0.108878 0.160989
-0.278703 0.0905562 0.151759
-0.289352 0.128828 0.258654
-
-0.278703 0.0905562 0.151759
-0.244543 0.108878 0.160989
-0.256107 0.0832143 0.051512
-
-0.221518 0.0986263 0.054645
-0.256107 0.0832143 0.051512
-0.244543 0.108878 0.160989
-
-0.256107 0.0832143 0.051512
-0.221518 0.0986263 0.054645
-0.256107 0.0832143 -0.051512
-
-0.221518 0.0986263 -0.054645
-0.256107 0.0832143 -0.051512
-0.221518 0.0986263 0.054645
-
-0.256107 0.0832143 -0.051512
-0.221518 0.0986263 -0.054645
-0.278703 0.0905562 -0.151759
-
-0.244543 0.108878 -0.160989
-0.278703 0.0905562 -0.151759
-0.221518 0.0986263 -0.054645
-
-0.278703 0.0905562 -0.151759
-0.244543 0.108878 -0.160989
-0.322677 0.104844 -0.243824
-
-0.289352 0.128828 -0.258654
-0.322677 0.104844 -0.243824
-0.244543 0.108878 -0.160989
-
-0.322677 0.104844 -0.243824
-0.289352 0.128828 -0.258654
-0.385659 0.125308 -0.322745
-
-0.353529 0.157401 -0.342375
-0.385659 0.125308 -0.322745
-0.289352 0.128828 -0.258654
-
-0.385659 0.125308 -0.322745
-0.353529 0.157401 -0.342375
-0.464252 0.150845 -0.384267
-
-0.433614 0.193057 -0.407639
-0.464252 0.150845 -0.384267
-0.353529 0.157401 -0.342375
-
-0.464252 0.150845 -0.384267
-0.433614 0.193057 -0.407639
-0.55422 0.180077 -0.425073
-
-0.52529 0.233874 -0.450926
-0.55422 0.180077 -0.425073
-0.433614 0.193057 -0.407639
-
-0.55422 0.180077 -0.425073
-0.52529 0.233874 -0.450926
-0.650713 0.21143 -0.442963
-
-0.623615 0.277651 -0.469904
-0.650713 0.21143 -0.442963
-0.52529 0.233874 -0.450926
-
-0.650713 0.21143 -0.442963
-0.623615 0.277651 -0.469904
-0.748529 0.243212 -0.436972
-
-0.723287 0.322028 -0.46355
-0.748529 0.243212 -0.436972
-0.623615 0.277651 -0.469904
-
-0.748529 0.243212 -0.436972
-0.723287 0.322028 -0.46355
-0.842394 0.273711 -0.407425
-
-0.818934 0.364613 -0.432205
-0.842394 0.273711 -0.407425
-0.723287 0.322028 -0.46355
-
-0.842394 0.273711 -0.407425
-0.818934 0.364613 -0.432205
-0.927249 0.301281 -0.355913
-
-0.905399 0.40311 -0.37756
-0.927249 0.301281 -0.355913
-0.818934 0.364613 -0.432205
-
-0.927249 0.301281 -0.355913
-0.905399 0.40311 -0.37756
-0.998518 0.324438 -0.285213
-
-0.978021 0.435443 -0.302561
-0.998518 0.324438 -0.285213
-0.905399 0.40311 -0.37756
-
-0.998518 0.324438 -0.285213
-0.978021 0.435443 -0.302561
-1.05236 0.341932 -0.199138
-
-1.03289 0.45987 -0.21125
-1.05236 0.341932 -0.199138
-0.978021 0.435443 -0.302561
-
-1.05236 0.341932 -0.199138
-1.03289 0.45987 -0.21125
-1.08587 0.352821 -0.102327
-
-1.06703 0.475074 -0.108551
-1.08587 0.352821 -0.102327
-1.03289 0.45987 -0.21125
-
-1.08587 0.352821 -0.102327
-1.06703 0.475074 -0.108551
-1.09725 0.356517 0
-
-1.07862 0.480234 0
-1.09725 0.356517 0
-1.06703 0.475074 -0.108551
-
-1.07862 0.480234 0
-1.03057 0.595 0
-1.06703 0.475074 0.108551
-
-1.01937 0.588531 0.110696
-1.06703 0.475074 0.108551
-1.03057 0.595 0
-
-1.06703 0.475074 0.108551
-1.01937 0.588531 0.110696
-1.03289 0.45987 0.21125
-
-0.986354 0.569472 0.215424
-1.03289 0.45987 0.21125
-1.01937 0.588531 0.110696
-
-1.03289 0.45987 0.21125
-0.986354 0.569472 0.215424
-0.978021 0.435443 0.302561
-
-0.933317 0.538851 0.308538
-0.978021 0.435443 0.302561
-0.986354 0.569472 0.215424
-
-0.978021 0.435443 0.302561
-0.933317 0.538851 0.308538
-0.905399 0.40311 0.37756
-
-0.863112 0.498318 0.385019
-0.905399 0.40311 0.37756
-0.933317 0.538851 0.308538
-
-0.905399 0.40311 0.37756
-0.863112 0.498318 0.385019
-0.818934 0.364613 0.432205
-
-0.779525 0.450059 0.440744
-0.818934 0.364613 0.432205
-0.863112 0.498318 0.385019
-
-0.818934 0.364613 0.432205
-0.779525 0.450059 0.440744
-0.723287 0.322028 0.46355
-
-0.687062 0.396676 0.472708
-0.723287 0.322028 0.46355
-0.779525 0.450059 0.440744
-
-0.723287 0.322028 0.46355
-0.687062 0.396676 0.472708
-0.623615 0.277651 0.469904
-
-0.590708 0.341045 0.479188
-0.623615 0.277651 0.469904
-0.687062 0.396676 0.472708
-
-0.623615 0.277651 0.469904
-0.590708 0.341045 0.479188
-0.52529 0.233874 0.450926
-
-0.495656 0.286167 0.459835
-0.52529 0.233874 0.450926
-0.590708 0.341045 0.479188
-
-0.52529 0.233874 0.450926
-0.495656 0.286167 0.459835
-0.433614 0.193057 0.407639
-
-0.407032 0.235 0.415692
-0.433614 0.193057 0.407639
-0.495656 0.286167 0.459835
-
-0.433614 0.193057 0.407639
-0.407032 0.235 0.415692
-0.353529 0.157401 0.342375
-
-0.329613 0.190302 0.349139
-0.353529 0.157401 0.342375
-0.407032 0.235 0.415692
-
-0.353529 0.157401 0.342375
-0.329613 0.190302 0.349139
-0.289352 0.128828 0.258654
-
-0.267572 0.154483 0.263764
-0.289352 0.128828 0.258654
-0.329613 0.190302 0.349139
-
-0.289352 0.128828 0.258654
-0.267572 0.154483 0.263764
-0.244543 0.108878 0.160989
-
-0.224255 0.129474 0.16417
-0.244543 0.108878 0.160989
-0.267572 0.154483 0.263764
-
-0.244543 0.108878 0.160989
-0.224255 0.129474 0.16417
-0.221518 0.0986263 0.054645
-
-0.201997 0.116623 0.0557246
-0.221518 0.0986263 0.054645
-0.224255 0.129474 0.16417
-
-0.221518 0.0986263 0.054645
-0.201997 0.116623 0.0557246
-0.221518 0.0986263 -0.054645
-
-0.201997 0.116623 -0.0557246
-0.221518 0.0986263 -0.054645
-0.201997 0.116623 0.0557246
-
-0.221518 0.0986263 -0.054645
-0.201997 0.116623 -0.0557246
-0.244543 0.108878 -0.160989
-
-0.224255 0.129474 -0.16417
-0.244543 0.108878 -0.160989
-0.201997 0.116623 -0.0557246
-
-0.244543 0.108878 -0.160989
-0.224255 0.129474 -0.16417
-0.289352 0.128828 -0.258654
-
-0.267572 0.154483 -0.263764
-0.289352 0.128828 -0.258654
-0.224255 0.129474 -0.16417
-
-0.289352 0.128828 -0.258654
-0.267572 0.154483 -0.263764
-0.353529 0.157401 -0.342375
-
-0.329613 0.190302 -0.349139
-0.353529 0.157401 -0.342375
-0.267572 0.154483 -0.263764
-
-0.353529 0.157401 -0.342375
-0.329613 0.190302 -0.349139
-0.433614 0.193057 -0.407639
-
-0.407032 0.235 -0.415692
-0.433614 0.193057 -0.407639
-0.329613 0.190302 -0.349139
-
-0.433614 0.193057 -0.407639
-0.407032 0.235 -0.415692
-0.52529 0.233874 -0.450926
-
-0.495656 0.286167 -0.459835
-0.52529 0.233874 -0.450926
-0.407032 0.235 -0.415692
-
-0.52529 0.233874 -0.450926
-0.495656 0.286167 -0.459835
-0.623615 0.277651 -0.469904
-
-0.590708 0.341045 -0.479188
-0.623615 0.277651 -0.469904
-0.495656 0.286167 -0.459835
-
-0.623615 0.277651 -0.469904
-0.590708 0.341045 -0.479188
-0.723287 0.322028 -0.46355
-
-0.687062 0.396676 -0.472708
-0.723287 0.322028 -0.46355
-0.590708 0.341045 -0.479188
-
-0.723287 0.322028 -0.46355
-0.687062 0.396676 -0.472708
-0.818934 0.364613 -0.432205
-
-0.779525 0.450059 -0.440744
-0.818934 0.364613 -0.432205
-0.687062 0.396676 -0.472708
-
-0.818934 0.364613 -0.432205
-0.779525 0.450059 -0.440744
-0.905399 0.40311 -0.37756
-
-0.863112 0.498318 -0.385019
-0.905399 0.40311 -0.37756
-0.779525 0.450059 -0.440744
-
-0.905399 0.40311 -0.37756
-0.863112 0.498318 -0.385019
-0.978021 0.435443 -0.302561
-
-0.933317 0.538851 -0.308538
-0.978021 0.435443 -0.302561
-0.863112 0.498318 -0.385019
-
-0.978021 0.435443 -0.302561
-0.933317 0.538851 -0.308538
-1.03289 0.45987 -0.21125
-
-0.986354 0.569472 -0.215424
-1.03289 0.45987 -0.21125
-0.933317 0.538851 -0.308538
-
-1.03289 0.45987 -0.21125
-0.986354 0.569472 -0.215424
-1.06703 0.475074 -0.108551
-
-1.01937 0.588531 -0.110696
-1.06703 0.475074 -0.108551
-0.986354 0.569472 -0.215424
-
-1.06703 0.475074 -0.108551
-1.01937 0.588531 -0.110696
-1.07862 0.480234 0
-
-1.03057 0.595 0
-1.07862 0.480234 0
-1.01937 0.588531 -0.110696
-
-1.03057 0.595 0
-0.955207 0.693998 0
-1.01937 0.588531 0.110696
-
-0.944942 0.686541 0.108551
-1.01937 0.588531 0.110696
-0.955207 0.693998 0
-
-1.01937 0.588531 0.110696
-0.944942 0.686541 0.108551
-0.986354 0.569472 0.215424
-
-0.914702 0.66457 0.21125
-0.986354 0.569472 0.215424
-0.944942 0.686541 0.108551
-
-0.986354 0.569472 0.215424
-0.914702 0.66457 0.21125
-0.933317 0.538851 0.308538
-
-0.866116 0.62927 0.302561
-0.933317 0.538851 0.308538
-0.914702 0.66457 0.21125
-
-0.933317 0.538851 0.308538
-0.866116 0.62927 0.302561
-0.863112 0.498318 0.385019
-
-0.801803 0.582544 0.37756
-0.863112 0.498318 0.385019
-0.866116 0.62927 0.302561
-
-0.863112 0.498318 0.385019
-0.801803 0.582544 0.37756
-0.779525 0.450059 0.440744
-
-0.725231 0.526911 0.432205
-0.779525 0.450059 0.440744
-0.801803 0.582544 0.37756
-
-0.779525 0.450059 0.440744
-0.725231 0.526911 0.432205
-0.687062 0.396676 0.472708
-
-0.640528 0.465371 0.46355
-0.687062 0.396676 0.472708
-0.725231 0.526911 0.432205
-
-0.687062 0.396676 0.472708
-0.640528 0.465371 0.46355
-0.590708 0.341045 0.479188
-
-0.55226 0.401241 0.469904
-0.590708 0.341045 0.479188
-0.640528 0.465371 0.46355
-
-0.590708 0.341045 0.479188
-0.55226 0.401241 0.469904
-0.495656 0.286167 0.459835
-
-0.465186 0.337977 0.450926
-0.495656 0.286167 0.459835
-0.55226 0.401241 0.469904
-
-0.495656 0.286167 0.459835
-0.465186 0.337977 0.450926
-0.407032 0.235 0.415692
-
-0.384 0.278992 0.407639
-0.407032 0.235 0.415692
-0.465186 0.337977 0.450926
-
-0.407032 0.235 0.415692
-0.384 0.278992 0.407639
-0.329613 0.190302 0.349139
-
-0.313078 0.227464 0.342375
-0.329613 0.190302 0.349139
-0.384 0.278992 0.407639
-
-0.329613 0.190302 0.349139
-0.313078 0.227464 0.342375
-0.267572 0.154483 0.263764
-
-0.256244 0.186172 0.258654
-0.267572 0.154483 0.263764
-0.313078 0.227464 0.342375
-
-0.267572 0.154483 0.263764
-0.256244 0.186172 0.258654
-0.224255 0.129474 0.16417
-
-0.216563 0.157342 0.160989
-0.224255 0.129474 0.16417
-0.256244 0.186172 0.258654
-
-0.224255 0.129474 0.16417
-0.216563 0.157342 0.160989
-0.201997 0.116623 0.0557246
-
-0.196172 0.142527 0.054645
-0.201997 0.116623 0.0557246
-0.216563 0.157342 0.160989
-
-0.201997 0.116623 0.0557246
-0.196172 0.142527 0.054645
-0.201997 0.116623 -0.0557246
-
-0.196172 0.142527 -0.054645
-0.201997 0.116623 -0.0557246
-0.196172 0.142527 0.054645
-
-0.201997 0.116623 -0.0557246
-0.196172 0.142527 -0.054645
-0.224255 0.129474 -0.16417
-
-0.216563 0.157342 -0.160989
-0.224255 0.129474 -0.16417
-0.196172 0.142527 -0.054645
-
-0.224255 0.129474 -0.16417
-0.216563 0.157342 -0.160989
-0.267572 0.154483 -0.263764
-
-0.256244 0.186172 -0.258654
-0.267572 0.154483 -0.263764
-0.216563 0.157342 -0.160989
-
-0.267572 0.154483 -0.263764
-0.256244 0.186172 -0.258654
-0.329613 0.190302 -0.349139
-
-0.313078 0.227464 -0.342375
-0.329613 0.190302 -0.349139
-0.256244 0.186172 -0.258654
-
-0.329613 0.190302 -0.349139
-0.313078 0.227464 -0.342375
-0.407032 0.235 -0.415692
-
-0.384 0.278992 -0.407639
-0.407032 0.235 -0.415692
-0.313078 0.227464 -0.342375
-
-0.407032 0.235 -0.415692
-0.384 0.278992 -0.407639
-0.495656 0.286167 -0.459835
-
-0.465186 0.337977 -0.450926
-0.495656 0.286167 -0.459835
-0.384 0.278992 -0.407639
-
-0.495656 0.286167 -0.459835
-0.465186 0.337977 -0.450926
-0.590708 0.341045 -0.479188
-
-0.55226 0.401241 -0.469904
-0.590708 0.341045 -0.479188
-0.465186 0.337977 -0.450926
-
-0.590708 0.341045 -0.479188
-0.55226 0.401241 -0.469904
-0.687062 0.396676 -0.472708
-
-0.640528 0.465371 -0.46355
-0.687062 0.396676 -0.472708
-0.55226 0.401241 -0.469904
-
-0.687062 0.396676 -0.472708
-0.640528 0.465371 -0.46355
-0.779525 0.450059 -0.440744
-
-0.725231 0.526911 -0.432205
-0.779525 0.450059 -0.440744
-0.640528 0.465371 -0.46355
-
-0.779525 0.450059 -0.440744
-0.725231 0.526911 -0.432205
-0.863112 0.498318 -0.385019
-
-0.801803 0.582544 -0.37756
-0.863112 0.498318 -0.385019
-0.725231 0.526911 -0.432205
-
-0.863112 0.498318 -0.385019
-0.801803 0.582544 -0.37756
-0.933317 0.538851 -0.308538
-
-0.866116 0.62927 -0.302561
-0.933317 0.538851 -0.308538
-0.801803 0.582544 -0.37756
-
-0.933317 0.538851 -0.308538
-0.866116 0.62927 -0.302561
-0.986354 0.569472 -0.215424
-
-0.914702 0.66457 -0.21125
-0.986354 0.569472 -0.215424
-0.866116 0.62927 -0.302561
-
-0.986354 0.569472 -0.215424
-0.914702 0.66457 -0.21125
-1.01937 0.588531 -0.110696
-
-0.944942 0.686541 -0.108551
-1.01937 0.588531 -0.110696
-0.914702 0.66457 -0.21125
-
-1.01937 0.588531 -0.110696
-0.944942 0.686541 -0.108551
-1.03057 0.595 0
-
-0.955207 0.693998 0
-1.03057 0.595 0
-0.944942 0.686541 -0.108551
-
-0.955207 0.693998 0
-0.857376 0.771985 0
-0.944942 0.686541 0.108551
-
-0.848488 0.763982 0.102327
-0.944942 0.686541 0.108551
-0.857376 0.771985 0
-
-0.944942 0.686541 0.108551
-0.848488 0.763982 0.102327
-0.914702 0.66457 0.21125
-
-0.822302 0.740404 0.199138
-0.914702 0.66457 0.21125
-0.848488 0.763982 0.102327
-
-0.914702 0.66457 0.21125
-0.822302 0.740404 0.199138
-0.866116 0.62927 0.302561
-
-0.780231 0.702523 0.285213
-0.866116 0.62927 0.302561
-0.822302 0.740404 0.199138
-
-0.866116 0.62927 0.302561
-0.780231 0.702523 0.285213
-0.801803 0.582544 0.37756
-
-0.724542 0.65238 0.355913
-0.801803 0.582544 0.37756
-0.780231 0.702523 0.285213
-
-0.801803 0.582544 0.37756
-0.724542 0.65238 0.355913
-0.725231 0.526911 0.432205
-
-0.658237 0.59268 0.407425
-0.725231 0.526911 0.432205
-0.724542 0.65238 0.355913
-
-0.725231 0.526911 0.432205
-0.658237 0.59268 0.407425
-0.640528 0.465371 0.46355
-
-0.584892 0.526639 0.436972
-0.640528 0.465371 0.46355
-0.658237 0.59268 0.407425
-
-0.640528 0.465371 0.46355
-0.584892 0.526639 0.436972
-0.55226 0.401241 0.469904
-
-0.50846 0.457819 0.442963
-0.55226 0.401241 0.469904
-0.584892 0.526639 0.436972
-
-0.55226 0.401241 0.469904
-0.50846 0.457819 0.442963
-0.465186 0.337977 0.450926
-
-0.433061 0.38993 0.425073
-0.465186 0.337977 0.450926
-0.50846 0.457819 0.442963
-
-0.465186 0.337977 0.450926
-0.433061 0.38993 0.425073
-0.384 0.278992 0.407639
-
-0.362761 0.326632 0.384267
-0.384 0.278992 0.407639
-0.433061 0.38993 0.425073
-
-0.384 0.278992 0.407639
-0.362761 0.326632 0.384267
-0.313078 0.227464 0.342375
-
-0.301349 0.271336 0.322745
-0.313078 0.227464 0.342375
-0.362761 0.326632 0.384267
-
-0.313078 0.227464 0.342375
-0.301349 0.271336 0.322745
-0.256244 0.186172 0.258654
-
-0.252136 0.227025 0.243824
-0.256244 0.186172 0.258654
-0.301349 0.271336 0.322745
-
-0.256244 0.186172 0.258654
-0.252136 0.227025 0.243824
-0.216563 0.157342 0.160989
-
-0.217776 0.196086 0.151759
-0.216563 0.157342 0.160989
-0.252136 0.227025 0.243824
-
-0.216563 0.157342 0.160989
-0.217776 0.196086 0.151759
-0.196172 0.142527 0.054645
-
-0.200119 0.180188 0.051512
-0.196172 0.142527 0.054645
-0.217776 0.196086 0.151759
-
-0.196172 0.142527 0.054645
-0.200119 0.180188 0.051512
-0.196172 0.142527 -0.054645
-
-0.200119 0.180188 -0.051512
-0.196172 0.142527 -0.054645
-0.200119 0.180188 0.051512
-
-0.196172 0.142527 -0.054645
-0.200119 0.180188 -0.051512
-0.216563 0.157342 -0.160989
-
-0.217776 0.196086 -0.151759
-0.216563 0.157342 -0.160989
-0.200119 0.180188 -0.051512
-
-0.216563 0.157342 -0.160989
-0.217776 0.196086 -0.151759
-0.256244 0.186172 -0.258654
-
-0.252136 0.227025 -0.243824
-0.256244 0.186172 -0.258654
-0.217776 0.196086 -0.151759
-
-0.256244 0.186172 -0.258654
-0.252136 0.227025 -0.243824
-0.313078 0.227464 -0.342375
-
-0.301349 0.271336 -0.322745
-0.313078 0.227464 -0.342375
-0.252136 0.227025 -0.243824
-
-0.313078 0.227464 -0.342375
-0.301349 0.271336 -0.322745
-0.384 0.278992 -0.407639
-
-0.362761 0.326632 -0.384267
-0.384 0.278992 -0.407639
-0.301349 0.271336 -0.322745
-
-0.384 0.278992 -0.407639
-0.362761 0.326632 -0.384267
-0.465186 0.337977 -0.450926
-
-0.433061 0.38993 -0.425073
-0.465186 0.337977 -0.450926
-0.362761 0.326632 -0.384267
-
-0.465186 0.337977 -0.450926
-0.433061 0.38993 -0.425073
-0.55226 0.401241 -0.469904
-
-0.50846 0.457819 -0.442963
-0.55226 0.401241 -0.469904
-0.433061 0.38993 -0.425073
-
-0.55226 0.401241 -0.469904
-0.50846 0.457819 -0.442963
-0.640528 0.465371 -0.46355
-
-0.584892 0.526639 -0.436972
-0.640528 0.465371 -0.46355
-0.50846 0.457819 -0.442963
-
-0.640528 0.465371 -0.46355
-0.584892 0.526639 -0.436972
-0.725231 0.526911 -0.432205
-
-0.658237 0.59268 -0.407425
-0.725231 0.526911 -0.432205
-0.584892 0.526639 -0.436972
-
-0.725231 0.526911 -0.432205
-0.658237 0.59268 -0.407425
-0.801803 0.582544 -0.37756
-
-0.724542 0.65238 -0.355913
-0.801803 0.582544 -0.37756
-0.658237 0.59268 -0.407425
-
-0.801803 0.582544 -0.37756
-0.724542 0.65238 -0.355913
-0.866116 0.62927 -0.302561
-
-0.780231 0.702523 -0.285213
-0.866116 0.62927 -0.302561
-0.724542 0.65238 -0.355913
-
-0.866116 0.62927 -0.302561
-0.780231 0.702523 -0.285213
-0.914702 0.66457 -0.21125
-
-0.822302 0.740404 -0.199138
-0.914702 0.66457 -0.21125
-0.780231 0.702523 -0.285213
-
-0.914702 0.66457 -0.21125
-0.822302 0.740404 -0.199138
-0.944942 0.686541 -0.108551
-
-0.848488 0.763982 -0.102327
-0.944942 0.686541 -0.108551
-0.822302 0.740404 -0.199138
-
-0.944942 0.686541 -0.108551
-0.848488 0.763982 -0.102327
-0.955207 0.693998 0
-
-0.857376 0.771985 0
-0.955207 0.693998 0
-0.848488 0.763982 -0.102327
-
-0.857376 0.771985 0
-0.743859 0.826139 0
-0.848488 0.763982 0.102327
-
-0.736614 0.818092 0.0926336
-0.848488 0.763982 0.102327
-0.743859 0.826139 0
-
-0.848488 0.763982 0.102327
-0.736614 0.818092 0.0926336
-0.822302 0.740404 0.199138
-
-0.71527 0.794387 0.180273
-0.822302 0.740404 0.199138
-0.736614 0.818092 0.0926336
-
-0.822302 0.740404 0.199138
-0.71527 0.794387 0.180273
-0.780231 0.702523 0.285213
-
-0.680977 0.756302 0.258194
-0.780231 0.702523 0.285213
-0.71527 0.794387 0.180273
-
-0.780231 0.702523 0.285213
-0.680977 0.756302 0.258194
-0.724542 0.65238 0.355913
-
-0.635585 0.705888 0.322196
-0.724542 0.65238 0.355913
-0.680977 0.756302 0.258194
-
-0.724542 0.65238 0.355913
-0.635585 0.705888 0.322196
-0.658237 0.59268 0.407425
-
-0.581539 0.645865 0.368828
-0.658237 0.59268 0.407425
-0.635585 0.705888 0.322196
-
-0.658237 0.59268 0.407425
-0.581539 0.645865 0.368828
-0.584892 0.526639 0.436972
-
-0.521755 0.579468 0.395577
-0.584892 0.526639 0.436972
-0.581539 0.645865 0.368828
-
-0.584892 0.526639 0.436972
-0.521755 0.579468 0.395577
-0.50846 0.457819 0.442963
-
-0.459455 0.510276 0.401
-0.50846 0.457819 0.442963
-0.521755 0.579468 0.395577
-
-0.50846 0.457819 0.442963
-0.459455 0.510276 0.401
-0.433061 0.38993 0.425073
-
-0.397997 0.44202 0.384804
-0.433061 0.38993 0.425073
-0.459455 0.510276 0.401
-
-0.433061 0.38993 0.425073
-0.397997 0.44202 0.384804
-0.362761 0.326632 0.384267
-
-0.340695 0.37838 0.347864
-0.362761 0.326632 0.384267
-0.397997 0.44202 0.384804
-
-0.362761 0.326632 0.384267
-0.340695 0.37838 0.347864
-0.301349 0.271336 0.322745
-
-0.290638 0.322786 0.292171
-0.301349 0.271336 0.322745
-0.340695 0.37838 0.347864
-
-0.301349 0.271336 0.322745
-0.290638 0.322786 0.292171
-0.252136 0.227025 0.243824
-
-0.250524 0.278235 0.220726
-0.252136 0.227025 0.243824
-0.290638 0.322786 0.292171
-
-0.252136 0.227025 0.243824
-0.250524 0.278235 0.220726
-0.217776 0.196086 0.151759
-
-0.222516 0.247129 0.137382
-0.217776 0.196086 0.151759
-0.250524 0.278235 0.220726
-
-0.217776 0.196086 0.151759
-0.222516 0.247129 0.137382
-0.200119 0.180188 0.051512
-
-0.208124 0.231145 0.0466321
-0.200119 0.180188 0.051512
-0.222516 0.247129 0.137382
-
-0.200119 0.180188 0.051512
-0.208124 0.231145 0.0466321
-0.200119 0.180188 -0.051512
-
-0.208124 0.231145 -0.0466321
-0.200119 0.180188 -0.051512
-0.208124 0.231145 0.0466321
-
-0.200119 0.180188 -0.051512
-0.208124 0.231145 -0.0466321
-0.217776 0.196086 -0.151759
-
-0.222516 0.247129 -0.137382
-0.217776 0.196086 -0.151759
-0.208124 0.231145 -0.0466321
-
-0.217776 0.196086 -0.151759
-0.222516 0.247129 -0.137382
-0.252136 0.227025 -0.243824
-
-0.250524 0.278235 -0.220726
-0.252136 0.227025 -0.243824
-0.222516 0.247129 -0.137382
-
-0.252136 0.227025 -0.243824
-0.250524 0.278235 -0.220726
-0.301349 0.271336 -0.322745
-
-0.290638 0.322786 -0.292171
-0.301349 0.271336 -0.322745
-0.250524 0.278235 -0.220726
-
-0.301349 0.271336 -0.322745
-0.290638 0.322786 -0.292171
-0.362761 0.326632 -0.384267
-
-0.340695 0.37838 -0.347864
-0.362761 0.326632 -0.384267
-0.290638 0.322786 -0.292171
-
-0.362761 0.326632 -0.384267
-0.340695 0.37838 -0.347864
-0.433061 0.38993 -0.425073
-
-0.397997 0.44202 -0.384804
-0.433061 0.38993 -0.425073
-0.340695 0.37838 -0.347864
-
-0.433061 0.38993 -0.425073
-0.397997 0.44202 -0.384804
-0.50846 0.457819 -0.442963
-
-0.459455 0.510276 -0.401
-0.50846 0.457819 -0.442963
-0.397997 0.44202 -0.384804
-
-0.50846 0.457819 -0.442963
-0.459455 0.510276 -0.401
-0.584892 0.526639 -0.436972
-
-0.521755 0.579468 -0.395577
-0.584892 0.526639 -0.436972
-0.459455 0.510276 -0.401
-
-0.584892 0.526639 -0.436972
-0.521755 0.579468 -0.395577
-0.658237 0.59268 -0.407425
-
-0.581539 0.645865 -0.368828
-0.658237 0.59268 -0.407425
-0.521755 0.579468 -0.395577
-
-0.658237 0.59268 -0.407425
-0.581539 0.645865 -0.368828
-0.724542 0.65238 -0.355913
-
-0.635585 0.705888 -0.322196
-0.724542 0.65238 -0.355913
-0.581539 0.645865 -0.368828
-
-0.724542 0.65238 -0.355913
-0.635585 0.705888 -0.322196
-0.780231 0.702523 -0.285213
-
-0.680977 0.756302 -0.258194
-0.780231 0.702523 -0.285213
-0.635585 0.705888 -0.322196
-
-0.780231 0.702523 -0.285213
-0.680977 0.756302 -0.258194
-0.822302 0.740404 -0.199138
-
-0.71527 0.794387 -0.180273
-0.822302 0.740404 -0.199138
-0.680977 0.756302 -0.258194
-
-0.822302 0.740404 -0.199138
-0.71527 0.794387 -0.180273
-0.848488 0.763982 -0.102327
-
-0.736614 0.818092 -0.0926336
-0.848488 0.763982 -0.102327
-0.71527 0.794387 -0.180273
-
-0.848488 0.763982 -0.102327
-0.736614 0.818092 -0.0926336
-0.857376 0.771985 0
-
-0.743859 0.826139 0
-0.857376 0.771985 0
-0.736614 0.818092 -0.0926336
-
-0.743859 0.826139 0
-0.622296 0.856517 0
-0.736614 0.818092 0.0926336
-
-0.616771 0.848913 0.0804188
-0.736614 0.818092 0.0926336
-0.622296 0.856517 0
-
-0.736614 0.818092 0.0926336
-0.616771 0.848913 0.0804188
-0.71527 0.794387 0.180273
-
-0.600494 0.826509 0.156502
-0.71527 0.794387 0.180273
-0.616771 0.848913 0.0804188
-
-0.71527 0.794387 0.180273
-0.600494 0.826509 0.156502
-0.680977 0.756302 0.258194
-
-0.574343 0.790515 0.224149
-0.680977 0.756302 0.258194
-0.600494 0.826509 0.156502
-
-0.680977 0.756302 0.258194
-0.574343 0.790515 0.224149
-0.635585 0.705888 0.322196
-
-0.539726 0.742869 0.279711
-0.635585 0.705888 0.322196
-0.574343 0.790515 0.224149
-
-0.635585 0.705888 0.322196
-0.539726 0.742869 0.279711
-0.581539 0.645865 0.368828
-
-0.498511 0.686142 0.320194
-0.581539 0.645865 0.368828
-0.539726 0.742869 0.279711
-
-0.581539 0.645865 0.368828
-0.498511 0.686142 0.320194
-0.521755 0.579468 0.395577
-
-0.45292 0.623391 0.343415
-0.521755 0.579468 0.395577
-0.498511 0.686142 0.320194
-
-0.521755 0.579468 0.395577
-0.45292 0.623391 0.343415
-0.459455 0.510276 0.401
-
-0.40541 0.557999 0.348123
-0.459455 0.510276 0.401
-0.45292 0.623391 0.343415
-
-0.459455 0.510276 0.401
-0.40541 0.557999 0.348123
-0.397997 0.44202 0.384804
-
-0.358542 0.493491 0.334064
-0.397997 0.44202 0.384804
-0.40541 0.557999 0.348123
-
-0.397997 0.44202 0.384804
-0.358542 0.493491 0.334064
-0.340695 0.37838 0.347864
-
-0.314843 0.433345 0.301995
-0.340695 0.37838 0.347864
-0.358542 0.493491 0.334064
-
-0.340695 0.37838 0.347864
-0.314843 0.433345 0.301995
-0.290638 0.322786 0.292171
-
-0.27667 0.380803 0.253645
-0.290638 0.322786 0.292171
-0.314843 0.433345 0.301995
-
-0.290638 0.322786 0.292171
-0.27667 0.380803 0.253645
-0.250524 0.278235 0.220726
-
-0.246079 0.338698 0.191621
-0.250524 0.278235 0.220726
-0.27667 0.380803 0.253645
-
-0.250524 0.278235 0.220726
-0.246079 0.338698 0.191621
-0.222516 0.247129 0.137382
-
-0.22472 0.309301 0.119267
-0.222516 0.247129 0.137382
-0.246079 0.338698 0.191621
-
-0.222516 0.247129 0.137382
-0.22472 0.309301 0.119267
-0.208124 0.231145 0.0466321
-
-0.213745 0.294195 0.0404831
-0.208124 0.231145 0.0466321
-0.22472 0.309301 0.119267
-
-0.208124 0.231145 0.0466321
-0.213745 0.294195 0.0404831
-0.208124 0.231145 -0.0466321
-
-0.213745 0.294195 -0.0404831
-0.208124 0.231145 -0.0466321
-0.213745 0.294195 0.0404831
-
-0.208124 0.231145 -0.0466321
-0.213745 0.294195 -0.0404831
-0.222516 0.247129 -0.137382
-
-0.22472 0.309301 -0.119267
-0.222516 0.247129 -0.137382
-0.213745 0.294195 -0.0404831
-
-0.222516 0.247129 -0.137382
-0.22472 0.309301 -0.119267
-0.250524 0.278235 -0.220726
-
-0.246079 0.338698 -0.191621
-0.250524 0.278235 -0.220726
-0.22472 0.309301 -0.119267
-
-0.250524 0.278235 -0.220726
-0.246079 0.338698 -0.191621
-0.290638 0.322786 -0.292171
-
-0.27667 0.380803 -0.253645
-0.290638 0.322786 -0.292171
-0.246079 0.338698 -0.191621
-
-0.290638 0.322786 -0.292171
-0.27667 0.380803 -0.253645
-0.340695 0.37838 -0.347864
-
-0.314843 0.433345 -0.301995
-0.340695 0.37838 -0.347864
-0.27667 0.380803 -0.253645
-
-0.340695 0.37838 -0.347864
-0.314843 0.433345 -0.301995
-0.397997 0.44202 -0.384804
-
-0.358542 0.493491 -0.334064
-0.397997 0.44202 -0.384804
-0.314843 0.433345 -0.301995
-
-0.397997 0.44202 -0.384804
-0.358542 0.493491 -0.334064
-0.459455 0.510276 -0.401
-
-0.40541 0.557999 -0.348123
-0.459455 0.510276 -0.401
-0.358542 0.493491 -0.334064
-
-0.459455 0.510276 -0.401
-0.40541 0.557999 -0.348123
-0.521755 0.579468 -0.395577
-
-0.45292 0.623391 -0.343415
-0.521755 0.579468 -0.395577
-0.40541 0.557999 -0.348123
-
-0.521755 0.579468 -0.395577
-0.45292 0.623391 -0.343415
-0.581539 0.645865 -0.368828
-
-0.498511 0.686142 -0.320194
-0.581539 0.645865 -0.368828
-0.45292 0.623391 -0.343415
-
-0.581539 0.645865 -0.368828
-0.498511 0.686142 -0.320194
-0.635585 0.705888 -0.322196
-
-0.539726 0.742869 -0.279711
-0.635585 0.705888 -0.322196
-0.498511 0.686142 -0.320194
-
-0.635585 0.705888 -0.322196
-0.539726 0.742869 -0.279711
-0.680977 0.756302 -0.258194
-
-0.574343 0.790515 -0.224149
-0.680977 0.756302 -0.258194
-0.539726 0.742869 -0.279711
-
-0.680977 0.756302 -0.258194
-0.574343 0.790515 -0.224149
-0.71527 0.794387 -0.180273
-
-0.600494 0.826509 -0.156502
-0.71527 0.794387 -0.180273
-0.574343 0.790515 -0.224149
-
-0.71527 0.794387 -0.180273
-0.600494 0.826509 -0.156502
-0.736614 0.818092 -0.0926336
-
-0.616771 0.848913 -0.0804188
-0.736614 0.818092 -0.0926336
-0.600494 0.826509 -0.156502
-
-0.736614 0.818092 -0.0926336
-0.616771 0.848913 -0.0804188
-0.743859 0.826139 0
-
-0.622296 0.856517 0
-0.743859 0.826139 0
-0.616771 0.848913 -0.0804188
-
-0.622296 0.856517 0
-0.5 0.866025 0
-0.616771 0.848913 0.0804188
-
-0.496092 0.859256 0.0668786
-0.616771 0.848913 0.0804188
-0.5 0.866025 0
-
-0.616771 0.848913 0.0804188
-0.496092 0.859256 0.0668786
-0.600494 0.826509 0.156502
-
-0.484577 0.839312 0.130152
-0.600494 0.826509 0.156502
-0.496092 0.859256 0.0668786
-
-0.600494 0.826509 0.156502
-0.484577 0.839312 0.130152
-0.574343 0.790515 0.224149
-
-0.466076 0.807268 0.186408
-0.574343 0.790515 0.224149
-0.484577 0.839312 0.130152
-
-0.574343 0.790515 0.224149
-0.466076 0.807268 0.186408
-0.539726 0.742869 0.279711
-
-0.441588 0.764853 0.232616
-0.539726 0.742869 0.279711
-0.466076 0.807268 0.186408
-
-0.539726 0.742869 0.279711
-0.441588 0.764853 0.232616
-0.498511 0.686142 0.320194
-
-0.412432 0.714352 0.266283
-0.498511 0.686142 0.320194
-0.441588 0.764853 0.232616
-
-0.498511 0.686142 0.320194
-0.412432 0.714352 0.266283
-0.45292 0.623391 0.343415
-
-0.380179 0.658489 0.285594
-0.45292 0.623391 0.343415
-0.412432 0.714352 0.266283
-
-0.45292 0.623391 0.343415
-0.380179 0.658489 0.285594
-0.40541 0.557999 0.348123
-
-0.346569 0.600275 0.289509
-0.40541 0.557999 0.348123
-0.380179 0.658489 0.285594
-
-0.40541 0.557999 0.348123
-0.346569 0.600275 0.289509
-0.358542 0.493491 0.334064
-
-0.313414 0.542848 0.277817
-0.358542 0.493491 0.334064
-0.346569 0.600275 0.289509
-
-0.358542 0.493491 0.334064
-0.313414 0.542848 0.277817
-0.314843 0.433345 0.301995
-
-0.2825 0.489304 0.251147
-0.314843 0.433345 0.301995
-0.313414 0.542848 0.277817
-
-0.314843 0.433345 0.301995
-0.2825 0.489304 0.251147
-0.27667 0.380803 0.253645
-
-0.255495 0.44253 0.210938
-0.27667 0.380803 0.253645
-0.2825 0.489304 0.251147
-
-0.27667 0.380803 0.253645
-0.255495 0.44253 0.210938
-0.246079 0.338698 0.191621
-
-0.233854 0.405047 0.159358
-0.246079 0.338698 0.191621
-0.255495 0.44253 0.210938
-
-0.246079 0.338698 0.191621
-0.233854 0.405047 0.159358
-0.22472 0.309301 0.119267
-
-0.218745 0.378877 0.0991858
-0.22472 0.309301 0.119267
-0.233854 0.405047 0.159358
-
-0.22472 0.309301 0.119267
-0.218745 0.378877 0.0991858
-0.213745 0.294195 0.0404831
-
-0.21098 0.365429 0.0336669
-0.213745 0.294195 0.0404831
-0.218745 0.378877 0.0991858
-
-0.213745 0.294195 0.0404831
-0.21098 0.365429 0.0336669
-0.213745 0.294195 -0.0404831
-
-0.21098 0.365429 -0.0336669
-0.213745 0.294195 -0.0404831
-0.21098 0.365429 0.0336669
-
-0.213745 0.294195 -0.0404831
-0.21098 0.365429 -0.0336669
-0.22472 0.309301 -0.119267
-
-0.218745 0.378877 -0.0991858
-0.22472 0.309301 -0.119267
-0.21098 0.365429 -0.0336669
-
-0.22472 0.309301 -0.119267
-0.218745 0.378877 -0.0991858
-0.246079 0.338698 -0.191621
-
-0.233854 0.405047 -0.159358
-0.246079 0.338698 -0.191621
-0.218745 0.378877 -0.0991858
-
-0.246079 0.338698 -0.191621
-0.233854 0.405047 -0.159358
-0.27667 0.380803 -0.253645
-
-0.255495 0.44253 -0.210938
-0.27667 0.380803 -0.253645
-0.233854 0.405047 -0.159358
-
-0.27667 0.380803 -0.253645
-0.255495 0.44253 -0.210938
-0.314843 0.433345 -0.301995
-
-0.2825 0.489304 -0.251147
-0.314843 0.433345 -0.301995
-0.255495 0.44253 -0.210938
-
-0.314843 0.433345 -0.301995
-0.2825 0.489304 -0.251147
-0.358542 0.493491 -0.334064
-
-0.313414 0.542848 -0.277817
-0.358542 0.493491 -0.334064
-0.2825 0.489304 -0.251147
-
-0.358542 0.493491 -0.334064
-0.313414 0.542848 -0.277817
-0.40541 0.557999 -0.348123
-
-0.346569 0.600275 -0.289509
-0.40541 0.557999 -0.348123
-0.313414 0.542848 -0.277817
-
-0.40541 0.557999 -0.348123
-0.346569 0.600275 -0.289509
-0.45292 0.623391 -0.343415
-
-0.380179 0.658489 -0.285594
-0.45292 0.623391 -0.343415
-0.346569 0.600275 -0.289509
-
-0.45292 0.623391 -0.343415
-0.380179 0.658489 -0.285594
-0.498511 0.686142 -0.320194
-
-0.412432 0.714352 -0.266283
-0.498511 0.686142 -0.320194
-0.380179 0.658489 -0.285594
-
-0.498511 0.686142 -0.320194
-0.412432 0.714352 -0.266283
-0.539726 0.742869 -0.279711
-
-0.441588 0.764853 -0.232616
-0.539726 0.742869 -0.279711
-0.412432 0.714352 -0.266283
-
-0.539726 0.742869 -0.279711
-0.441588 0.764853 -0.232616
-0.574343 0.790515 -0.224149
-
-0.466076 0.807268 -0.186408
-0.574343 0.790515 -0.224149
-0.441588 0.764853 -0.232616
-
-0.574343 0.790515 -0.224149
-0.466076 0.807268 -0.186408
-0.600494 0.826509 -0.156502
-
-0.484577 0.839312 -0.130152
-0.600494 0.826509 -0.156502
-0.466076 0.807268 -0.186408
-
-0.600494 0.826509 -0.156502
-0.484577 0.839312 -0.130152
-0.616771 0.848913 -0.0804188
-
-0.496092 0.859256 -0.0668786
-0.616771 0.848913 -0.0804188
-0.484577 0.839312 -0.130152
-
-0.616771 0.848913 -0.0804188
-0.496092 0.859256 -0.0668786
-0.622296 0.856517 0
-
-0.5 0.866025 0
-0.622296 0.856517 0
-0.496092 0.859256 -0.0668786
-
-0.5 0.866025 0
-0.382856 0.859908 0
-0.496092 0.859256 0.0668786
-
-0.38032 0.854213 0.0533384
-0.496092 0.859256 0.0668786
-0.382856 0.859908 0
-
-0.496092 0.859256 0.0668786
-0.38032 0.854213 0.0533384
-0.484577 0.839312 0.130152
-
-0.37285 0.837434 0.103801
-0.484577 0.839312 0.130152
-0.38032 0.854213 0.0533384
-
-0.484577 0.839312 0.130152
-0.37285 0.837434 0.103801
-0.466076 0.807268 0.186408
-
-0.360847 0.810476 0.148668
-0.466076 0.807268 0.186408
-0.37285 0.837434 0.103801
-
-0.466076 0.807268 0.186408
-0.360847 0.810476 0.148668
-0.441588 0.764853 0.232616
-
-0.344959 0.774791 0.18552
-0.441588 0.764853 0.232616
-0.360847 0.810476 0.148668
-
-0.441588 0.764853 0.232616
-0.344959 0.774791 0.18552
-0.412432 0.714352 0.266283
-
-0.326043 0.732305 0.212371
-0.412432 0.714352 0.266283
-0.344959 0.774791 0.18552
-
-0.412432 0.714352 0.266283
-0.326043 0.732305 0.212371
-0.380179 0.658489 0.285594
-
-0.305119 0.685308 0.227773
-0.380179 0.658489 0.285594
-0.326043 0.732305 0.212371
-
-0.380179 0.658489 0.285594
-0.305119 0.685308 0.227773
-0.346569 0.600275 0.289509
-
-0.283313 0.636332 0.230895
-0.346569 0.600275 0.289509
-0.305119 0.685308 0.227773
-
-0.346569 0.600275 0.289509
-0.283313 0.636332 0.230895
-0.313414 0.542848 0.277817
-
-0.261803 0.588018 0.22157
-0.313414 0.542848 0.277817
-0.283313 0.636332 0.230895
-
-0.313414 0.542848 0.277817
-0.261803 0.588018 0.22157
-0.2825 0.489304 0.251147
-
-0.241747 0.542972 0.2003
-0.2825 0.489304 0.251147
-0.261803 0.588018 0.22157
-
-0.2825 0.489304 0.251147
-0.241747 0.542972 0.2003
-0.255495 0.44253 0.210938
-
-0.224226 0.503621 0.168232
-0.255495 0.44253 0.210938
-0.241747 0.542972 0.2003
-
-0.255495 0.44253 0.210938
-0.224226 0.503621 0.168232
-0.233854 0.405047 0.159358
-
-0.210186 0.472086 0.127094
-0.233854 0.405047 0.159358
-0.224226 0.503621 0.168232
-
-0.233854 0.405047 0.159358
-0.210186 0.472086 0.127094
-0.218745 0.378877 0.0991858
-
-0.200383 0.450069 0.0791047
-0.218745 0.378877 0.0991858
-0.210186 0.472086 0.127094
-
-0.218745 0.378877 0.0991858
-0.200383 0.450069 0.0791047
-0.21098 0.365429 0.0336669
-
-0.195346 0.438755 0.0268508
-0.21098 0.365429 0.0336669
-0.200383 0.450069 0.0791047
-
-0.21098 0.365429 0.0336669
-0.195346 0.438755 0.0268508
-0.21098 0.365429 -0.0336669
-
-0.195346 0.438755 -0.0268508
-0.21098 0.365429 -0.0336669
-0.195346 0.438755 0.0268508
-
-0.21098 0.365429 -0.0336669
-0.195346 0.438755 -0.0268508
-0.218745 0.378877 -0.0991858
-
-0.200383 0.450069 -0.0791047
-0.218745 0.378877 -0.0991858
-0.195346 0.438755 -0.0268508
-
-0.218745 0.378877 -0.0991858
-0.200383 0.450069 -0.0791047
-0.233854 0.405047 -0.159358
-
-0.210186 0.472086 -0.127094
-0.233854 0.405047 -0.159358
-0.200383 0.450069 -0.0791047
-
-0.233854 0.405047 -0.159358
-0.210186 0.472086 -0.127094
-0.255495 0.44253 -0.210938
-
-0.224226 0.503621 -0.168232
-0.255495 0.44253 -0.210938
-0.210186 0.472086 -0.127094
-
-0.255495 0.44253 -0.210938
-0.224226 0.503621 -0.168232
-0.2825 0.489304 -0.251147
-
-0.241747 0.542972 -0.2003
-0.2825 0.489304 -0.251147
-0.224226 0.503621 -0.168232
-
-0.2825 0.489304 -0.251147
-0.241747 0.542972 -0.2003
-0.313414 0.542848 -0.277817
-
-0.261803 0.588018 -0.22157
-0.313414 0.542848 -0.277817
-0.241747 0.542972 -0.2003
-
-0.313414 0.542848 -0.277817
-0.261803 0.588018 -0.22157
-0.346569 0.600275 -0.289509
-
-0.283313 0.636332 -0.230895
-0.346569 0.600275 -0.289509
-0.261803 0.588018 -0.22157
-
-0.346569 0.600275 -0.289509
-0.283313 0.636332 -0.230895
-0.380179 0.658489 -0.285594
-
-0.305119 0.685308 -0.227773
-0.380179 0.658489 -0.285594
-0.283313 0.636332 -0.230895
-
-0.380179 0.658489 -0.285594
-0.305119 0.685308 -0.227773
-0.412432 0.714352 -0.266283
-
-0.326043 0.732305 -0.212371
-0.412432 0.714352 -0.266283
-0.305119 0.685308 -0.227773
-
-0.412432 0.714352 -0.266283
-0.326043 0.732305 -0.212371
-0.441588 0.764853 -0.232616
-
-0.344959 0.774791 -0.18552
-0.441588 0.764853 -0.232616
-0.326043 0.732305 -0.212371
-
-0.441588 0.764853 -0.232616
-0.344959 0.774791 -0.18552
-0.466076 0.807268 -0.186408
-
-0.360847 0.810476 -0.148668
-0.466076 0.807268 -0.186408
-0.344959 0.774791 -0.18552
-
-0.466076 0.807268 -0.186408
-0.360847 0.810476 -0.148668
-0.484577 0.839312 -0.130152
-
-0.37285 0.837434 -0.103801
-0.484577 0.839312 -0.130152
-0.360847 0.810476 -0.148668
-
-0.484577 0.839312 -0.130152
-0.37285 0.837434 -0.103801
-0.496092 0.859256 -0.0668786
-
-0.38032 0.854213 -0.0533384
-0.496092 0.859256 -0.0668786
-0.37285 0.837434 -0.103801
-
-0.496092 0.859256 -0.0668786
-0.38032 0.854213 -0.0533384
-0.5 0.866025 0
-
-0.382856 0.859908 0
-0.5 0.866025 0
-0.38032 0.854213 -0.0533384
-
-0.382856 0.859908 0
-0.274506 0.844843 0
-0.38032 0.854213 0.0533384
-
-0.273021 0.840272 0.0411236
-0.38032 0.854213 0.0533384
-0.274506 0.844843 0
-
-0.38032 0.854213 0.0533384
-0.273021 0.840272 0.0411236
-0.37285 0.837434 0.103801
-
-0.268645 0.826804 0.0800302
-0.37285 0.837434 0.103801
-0.273021 0.840272 0.0411236
-
-0.37285 0.837434 0.103801
-0.268645 0.826804 0.0800302
-0.360847 0.810476 0.148668
-
-0.261614 0.805166 0.114622
-0.360847 0.810476 0.148668
-0.268645 0.826804 0.0800302
-
-0.360847 0.810476 0.148668
-0.261614 0.805166 0.114622
-0.344959 0.774791 0.18552
-
-0.252308 0.776524 0.143035
-0.344959 0.774791 0.18552
-0.261614 0.805166 0.114622
-
-0.344959 0.774791 0.18552
-0.252308 0.776524 0.143035
-0.326043 0.732305 0.212371
-
-0.241228 0.742423 0.163737
-0.326043 0.732305 0.212371
-0.252308 0.776524 0.143035
-
-0.326043 0.732305 0.212371
-0.241228 0.742423 0.163737
-0.305119 0.685308 0.227773
-
-0.228971 0.7047 0.175612
-0.305119 0.685308 0.227773
-0.241228 0.742423 0.163737
-
-0.305119 0.685308 0.227773
-0.228971 0.7047 0.175612
-0.283313 0.636332 0.230895
-
-0.216198 0.665389 0.178019
-0.283313 0.636332 0.230895
-0.228971 0.7047 0.175612
-
-0.283313 0.636332 0.230895
-0.216198 0.665389 0.178019
-0.261803 0.588018 0.22157
-
-0.203598 0.62661 0.170829
-0.261803 0.588018 0.22157
-0.216198 0.665389 0.178019
-
-0.261803 0.588018 0.22157
-0.203598 0.62661 0.170829
-0.241747 0.542972 0.2003
-
-0.19185 0.590454 0.15443
-0.241747 0.542972 0.2003
-0.203598 0.62661 0.170829
-
-0.241747 0.542972 0.2003
-0.19185 0.590454 0.15443
-0.224226 0.503621 0.168232
-
-0.181587 0.558868 0.129706
-0.224226 0.503621 0.168232
-0.19185 0.590454 0.15443
-
-0.224226 0.503621 0.168232
-0.181587 0.558868 0.129706
-0.210186 0.472086 0.127094
-
-0.173363 0.533557 0.0979889
-0.210186 0.472086 0.127094
-0.181587 0.558868 0.129706
-
-0.210186 0.472086 0.127094
-0.173363 0.533557 0.0979889
-0.200383 0.450069 0.0791047
-
-0.167621 0.515885 0.0609893
-0.200383 0.450069 0.0791047
-0.173363 0.533557 0.0979889
-
-0.200383 0.450069 0.0791047
-0.167621 0.515885 0.0609893
-0.195346 0.438755 0.0268508
-
-0.164671 0.506804 0.0207018
-0.195346 0.438755 0.0268508
-0.167621 0.515885 0.0609893
-
-0.195346 0.438755 0.0268508
-0.164671 0.506804 0.0207018
-0.195346 0.438755 -0.0268508
-
-0.164671 0.506804 -0.0207018
-0.195346 0.438755 -0.0268508
-0.164671 0.506804 0.0207018
-
-0.195346 0.438755 -0.0268508
-0.164671 0.506804 -0.0207018
-0.200383 0.450069 -0.0791047
-
-0.167621 0.515885 -0.0609893
-0.200383 0.450069 -0.0791047
-0.164671 0.506804 -0.0207018
-
-0.200383 0.450069 -0.0791047
-0.167621 0.515885 -0.0609893
-0.210186 0.472086 -0.127094
-
-0.173363 0.533557 -0.0979889
-0.210186 0.472086 -0.127094
-0.167621 0.515885 -0.0609893
-
-0.210186 0.472086 -0.127094
-0.173363 0.533557 -0.0979889
-0.224226 0.503621 -0.168232
-
-0.181587 0.558868 -0.129706
-0.224226 0.503621 -0.168232
-0.173363 0.533557 -0.0979889
-
-0.224226 0.503621 -0.168232
-0.181587 0.558868 -0.129706
-0.241747 0.542972 -0.2003
-
-0.19185 0.590454 -0.15443
-0.241747 0.542972 -0.2003
-0.181587 0.558868 -0.129706
-
-0.241747 0.542972 -0.2003
-0.19185 0.590454 -0.15443
-0.261803 0.588018 -0.22157
-
-0.203598 0.62661 -0.170829
-0.261803 0.588018 -0.22157
-0.19185 0.590454 -0.15443
-
-0.261803 0.588018 -0.22157
-0.203598 0.62661 -0.170829
-0.283313 0.636332 -0.230895
-
-0.216198 0.665389 -0.178019
-0.283313 0.636332 -0.230895
-0.203598 0.62661 -0.170829
-
-0.283313 0.636332 -0.230895
-0.216198 0.665389 -0.178019
-0.305119 0.685308 -0.227773
-
-0.228971 0.7047 -0.175612
-0.305119 0.685308 -0.227773
-0.216198 0.665389 -0.178019
-
-0.305119 0.685308 -0.227773
-0.228971 0.7047 -0.175612
-0.326043 0.732305 -0.212371
-
-0.241228 0.742423 -0.163737
-0.326043 0.732305 -0.212371
-0.228971 0.7047 -0.175612
-
-0.326043 0.732305 -0.212371
-0.241228 0.742423 -0.163737
-0.344959 0.774791 -0.18552
-
-0.252308 0.776524 -0.143035
-0.344959 0.774791 -0.18552
-0.241228 0.742423 -0.163737
-
-0.344959 0.774791 -0.18552
-0.252308 0.776524 -0.143035
-0.360847 0.810476 -0.148668
-
-0.261614 0.805166 -0.114622
-0.360847 0.810476 -0.148668
-0.252308 0.776524 -0.143035
-
-0.360847 0.810476 -0.148668
-0.261614 0.805166 -0.114622
-0.37285 0.837434 -0.103801
-
-0.268645 0.826804 -0.0800302
-0.37285 0.837434 -0.103801
-0.261614 0.805166 -0.114622
-
-0.37285 0.837434 -0.103801
-0.268645 0.826804 -0.0800302
-0.38032 0.854213 -0.0533384
-
-0.273021 0.840272 -0.0411236
-0.38032 0.854213 -0.0533384
-0.268645 0.826804 -0.0800302
-
-0.38032 0.854213 -0.0533384
-0.273021 0.840272 -0.0411236
-0.382856 0.859908 0
-
-0.274506 0.844843 0
-0.382856 0.859908 0
-0.273021 0.840272 -0.0411236
-
-0.274506 0.844843 0
-0.175953 0.827793 0
-0.273021 0.840272 0.0411236
-
-0.175189 0.8242 0.0314299
-0.273021 0.840272 0.0411236
-0.175953 0.827793 0
-
-0.273021 0.840272 0.0411236
-0.175189 0.8242 0.0314299
-0.268645 0.826804 0.0800302
-
-0.172939 0.813614 0.0611654
-0.268645 0.826804 0.0800302
-0.175189 0.8242 0.0314299
-
-0.268645 0.826804 0.0800302
-0.172939 0.813614 0.0611654
-0.261614 0.805166 0.114622
-
-0.169324 0.796605 0.0876034
-0.261614 0.805166 0.114622
-0.172939 0.813614 0.0611654
-
-0.261614 0.805166 0.114622
-0.169324 0.796605 0.0876034
-0.252308 0.776524 0.143035
-
-0.164538 0.774091 0.109319
-0.252308 0.776524 0.143035
-0.169324 0.796605 0.0876034
-
-0.252308 0.776524 0.143035
-0.164538 0.774091 0.109319
-0.241228 0.742423 0.163737
-
-0.15884 0.747286 0.125141
-0.241228 0.742423 0.163737
-0.164538 0.774091 0.109319
-
-0.241228 0.742423 0.163737
-0.15884 0.747286 0.125141
-0.228971 0.7047 0.175612
-
-0.152538 0.717634 0.134216
-0.228971 0.7047 0.175612
-0.15884 0.747286 0.125141
-
-0.228971 0.7047 0.175612
-0.152538 0.717634 0.134216
-0.216198 0.665389 0.178019
-
-0.14597 0.686734 0.136056
-0.216198 0.665389 0.178019
-0.152538 0.717634 0.134216
-
-0.216198 0.665389 0.178019
-0.14597 0.686734 0.136056
-0.203598 0.62661 0.170829
-
-0.139491 0.656251 0.130561
-0.203598 0.62661 0.170829
-0.14597 0.686734 0.136056
-
-0.203598 0.62661 0.170829
-0.139491 0.656251 0.130561
-0.19185 0.590454 0.15443
-
-0.133449 0.627831 0.118028
-0.19185 0.590454 0.15443
-0.139491 0.656251 0.130561
-
-0.19185 0.590454 0.15443
-0.133449 0.627831 0.118028
-0.181587 0.558868 0.129706
-
-0.128172 0.603003 0.0991314
-0.181587 0.558868 0.129706
-0.133449 0.627831 0.118028
-
-0.181587 0.558868 0.129706
-0.128172 0.603003 0.0991314
-0.173363 0.533557 0.0979889
-
-0.123943 0.583107 0.0748908
-0.173363 0.533557 0.0979889
-0.128172 0.603003 0.0991314
-
-0.173363 0.533557 0.0979889
-0.123943 0.583107 0.0748908
-0.167621 0.515885 0.0609893
-
-0.120991 0.569216 0.0466128
-0.167621 0.515885 0.0609893
-0.123943 0.583107 0.0748908
-
-0.167621 0.515885 0.0609893
-0.120991 0.569216 0.0466128
-0.164671 0.506804 0.0207018
-
-0.119473 0.562078 0.0158219
-0.164671 0.506804 0.0207018
-0.120991 0.569216 0.0466128
-
-0.164671 0.506804 0.0207018
-0.119473 0.562078 0.0158219
-0.164671 0.506804 -0.0207018
-
-0.119473 0.562078 -0.0158219
-0.164671 0.506804 -0.0207018
-0.119473 0.562078 0.0158219
-
-0.164671 0.506804 -0.0207018
-0.119473 0.562078 -0.0158219
-0.167621 0.515885 -0.0609893
-
-0.120991 0.569216 -0.0466128
-0.167621 0.515885 -0.0609893
-0.119473 0.562078 -0.0158219
-
-0.167621 0.515885 -0.0609893
-0.120991 0.569216 -0.0466128
-0.173363 0.533557 -0.0979889
-
-0.123943 0.583107 -0.0748908
-0.173363 0.533557 -0.0979889
-0.120991 0.569216 -0.0466128
-
-0.173363 0.533557 -0.0979889
-0.123943 0.583107 -0.0748908
-0.181587 0.558868 -0.129706
-
-0.128172 0.603003 -0.0991314
-0.181587 0.558868 -0.129706
-0.123943 0.583107 -0.0748908
-
-0.181587 0.558868 -0.129706
-0.128172 0.603003 -0.0991314
-0.19185 0.590454 -0.15443
-
-0.133449 0.627831 -0.118028
-0.19185 0.590454 -0.15443
-0.128172 0.603003 -0.0991314
-
-0.19185 0.590454 -0.15443
-0.133449 0.627831 -0.118028
-0.203598 0.62661 -0.170829
-
-0.139491 0.656251 -0.130561
-0.203598 0.62661 -0.170829
-0.133449 0.627831 -0.118028
-
-0.203598 0.62661 -0.170829
-0.139491 0.656251 -0.130561
-0.216198 0.665389 -0.178019
-
-0.14597 0.686734 -0.136056
-0.216198 0.665389 -0.178019
-0.139491 0.656251 -0.130561
-
-0.216198 0.665389 -0.178019
-0.14597 0.686734 -0.136056
-0.228971 0.7047 -0.175612
-
-0.152538 0.717634 -0.134216
-0.228971 0.7047 -0.175612
-0.14597 0.686734 -0.136056
-
-0.228971 0.7047 -0.175612
-0.152538 0.717634 -0.134216
-0.241228 0.742423 -0.163737
-
-0.15884 0.747286 -0.125141
-0.241228 0.742423 -0.163737
-0.152538 0.717634 -0.134216
-
-0.241228 0.742423 -0.163737
-0.15884 0.747286 -0.125141
-0.252308 0.776524 -0.143035
-
-0.164538 0.774091 -0.109319
-0.252308 0.776524 -0.143035
-0.15884 0.747286 -0.125141
-
-0.252308 0.776524 -0.143035
-0.164538 0.774091 -0.109319
-0.261614 0.805166 -0.114622
-
-0.169324 0.796605 -0.0876034
-0.261614 0.805166 -0.114622
-0.164538 0.774091 -0.109319
-
-0.261614 0.805166 -0.114622
-0.169324 0.796605 -0.0876034
-0.268645 0.826804 -0.0800302
-
-0.172939 0.813614 -0.0611654
-0.268645 0.826804 -0.0800302
-0.169324 0.796605 -0.0876034
-
-0.268645 0.826804 -0.0800302
-0.172939 0.813614 -0.0611654
-0.273021 0.840272 -0.0411236
-
-0.175189 0.8242 -0.0314299
-0.273021 0.840272 -0.0411236
-0.172939 0.813614 -0.0611654
-
-0.273021 0.840272 -0.0411236
-0.175189 0.8242 -0.0314299
-0.274506 0.844843 0
-
-0.175953 0.827793 0
-0.274506 0.844843 0
-0.175189 0.8242 -0.0314299
-
-0.175953 0.827793 0
-0.0856401 0.814811 0
-0.175189 0.8242 0.0314299
-
-0.0853321 0.811881 0.0252061
-0.175189 0.8242 0.0314299
-0.0856401 0.814811 0
-
-0.175189 0.8242 0.0314299
-0.0853321 0.811881 0.0252061
-0.172939 0.813614 0.0611654
-
-0.0844249 0.803249 0.0490534
-0.172939 0.813614 0.0611654
-0.0853321 0.811881 0.0252061
-
-0.172939 0.813614 0.0611654
-0.0844249 0.803249 0.0490534
-0.169324 0.796605 0.0876034
-
-0.0829672 0.78938 0.0702562
-0.169324 0.796605 0.0876034
-0.0844249 0.803249 0.0490534
-
-0.169324 0.796605 0.0876034
-0.0829672 0.78938 0.0702562
-0.164538 0.774091 0.109319
-
-0.0810377 0.771022 0.0876715
-0.164538 0.774091 0.109319
-0.0829672 0.78938 0.0702562
-
-0.164538 0.774091 0.109319
-0.0810377 0.771022 0.0876715
-0.15884 0.747286 0.125141
-
-0.0787404 0.749165 0.10036
-0.15884 0.747286 0.125141
-0.0810377 0.771022 0.0876715
-
-0.15884 0.747286 0.125141
-0.0787404 0.749165 0.10036
-0.152538 0.717634 0.134216
-
-0.0761991 0.724986 0.107639
-0.152538 0.717634 0.134216
-0.0787404 0.749165 0.10036
-
-0.152538 0.717634 0.134216
-0.0761991 0.724986 0.107639
-0.14597 0.686734 0.136056
-
-0.0735509 0.69979 0.109114
-0.14597 0.686734 0.136056
-0.0761991 0.724986 0.107639
-
-0.14597 0.686734 0.136056
-0.0735509 0.69979 0.109114
-0.139491 0.656251 0.130561
-
-0.0709385 0.674935 0.104708
-0.139491 0.656251 0.130561
-0.0735509 0.69979 0.109114
-
-0.139491 0.656251 0.130561
-0.0709385 0.674935 0.104708
-0.133449 0.627831 0.118028
-
-0.0685028 0.65176 0.0946559
-0.133449 0.627831 0.118028
-0.0709385 0.674935 0.104708
-
-0.133449 0.627831 0.118028
-0.0685028 0.65176 0.0946559
-0.128172 0.603003 0.0991314
-
-0.066375 0.631516 0.0795014
-0.128172 0.603003 0.0991314
-0.0685028 0.65176 0.0946559
-
-0.128172 0.603003 0.0991314
-0.066375 0.631516 0.0795014
-0.123943 0.583107 0.0748908
-
-0.0646699 0.615293 0.0600609
-0.123943 0.583107 0.0748908
-0.066375 0.631516 0.0795014
-
-0.123943 0.583107 0.0748908
-0.0646699 0.615293 0.0600609
-0.120991 0.569216 0.0466128
-
-0.0634793 0.603965 0.0373825
-0.120991 0.569216 0.0466128
-0.0646699 0.615293 0.0600609
-
-0.120991 0.569216 0.0466128
-0.0634793 0.603965 0.0373825
-0.119473 0.562078 0.0158219
-
-0.0628676 0.598145 0.0126889
-0.119473 0.562078 0.0158219
-0.0634793 0.603965 0.0373825
-
-0.119473 0.562078 0.0158219
-0.0628676 0.598145 0.0126889
-0.119473 0.562078 -0.0158219
-
-0.0628676 0.598145 -0.0126889
-0.119473 0.562078 -0.0158219
-0.0628676 0.598145 0.0126889
-
-0.119473 0.562078 -0.0158219
-0.0628676 0.598145 -0.0126889
-0.120991 0.569216 -0.0466128
-
-0.0634793 0.603965 -0.0373825
-0.120991 0.569216 -0.0466128
-0.0628676 0.598145 -0.0126889
-
-0.120991 0.569216 -0.0466128
-0.0634793 0.603965 -0.0373825
-0.123943 0.583107 -0.0748908
-
-0.0646699 0.615293 -0.0600609
-0.123943 0.583107 -0.0748908
-0.0634793 0.603965 -0.0373825
-
-0.123943 0.583107 -0.0748908
-0.0646699 0.615293 -0.0600609
-0.128172 0.603003 -0.0991314
-
-0.066375 0.631516 -0.0795014
-0.128172 0.603003 -0.0991314
-0.0646699 0.615293 -0.0600609
-
-0.128172 0.603003 -0.0991314
-0.066375 0.631516 -0.0795014
-0.133449 0.627831 -0.118028
-
-0.0685028 0.65176 -0.0946559
-0.133449 0.627831 -0.118028
-0.066375 0.631516 -0.0795014
-
-0.133449 0.627831 -0.118028
-0.0685028 0.65176 -0.0946559
-0.139491 0.656251 -0.130561
-
-0.0709385 0.674935 -0.104708
-0.139491 0.656251 -0.130561
-0.0685028 0.65176 -0.0946559
-
-0.139491 0.656251 -0.130561
-0.0709385 0.674935 -0.104708
-0.14597 0.686734 -0.136056
-
-0.0735509 0.69979 -0.109114
-0.14597 0.686734 -0.136056
-0.0709385 0.674935 -0.104708
-
-0.14597 0.686734 -0.136056
-0.0735509 0.69979 -0.109114
-0.152538 0.717634 -0.134216
-
-0.0761991 0.724986 -0.107639
-0.152538 0.717634 -0.134216
-0.0735509 0.69979 -0.109114
-
-0.152538 0.717634 -0.134216
-0.0761991 0.724986 -0.107639
-0.15884 0.747286 -0.125141
-
-0.0787404 0.749165 -0.10036
-0.15884 0.747286 -0.125141
-0.0761991 0.724986 -0.107639
-
-0.15884 0.747286 -0.125141
-0.0787404 0.749165 -0.10036
-0.164538 0.774091 -0.109319
-
-0.0810377 0.771022 -0.0876715
-0.164538 0.774091 -0.109319
-0.0787404 0.749165 -0.10036
-
-0.164538 0.774091 -0.109319
-0.0810377 0.771022 -0.0876715
-0.169324 0.796605 -0.0876034
-
-0.0829672 0.78938 -0.0702562
-0.169324 0.796605 -0.0876034
-0.0810377 0.771022 -0.0876715
-
-0.169324 0.796605 -0.0876034
-0.0829672 0.78938 -0.0702562
-0.172939 0.813614 -0.0611654
-
-0.0844249 0.803249 -0.0490534
-0.172939 0.813614 -0.0611654
-0.0829672 0.78938 -0.0702562
-
-0.172939 0.813614 -0.0611654
-0.0844249 0.803249 -0.0490534
-0.175189 0.8242 -0.0314299
-
-0.0853321 0.811881 -0.0252061
-0.175189 0.8242 -0.0314299
-0.0844249 0.803249 -0.0490534
-
-0.175189 0.8242 -0.0314299
-0.0853321 0.811881 -0.0252061
-0.175953 0.827793 0
-
-0.0856401 0.814811 0
-0.175953 0.827793 0
-0.0853321 0.811881 -0.0252061
-
-0.0856401 0.814811 0
-1.79856e-16 0.81 0
-0.0853321 0.811881 0.0252061
-
-1.79258e-16 0.807304 0.0230616
-0.0853321 0.811881 0.0252061
-1.79856e-16 0.81 0
-
-0.0853321 0.811881 0.0252061
-1.79258e-16 0.807304 0.0230616
-0.0844249 0.803249 0.0490534
-
-1.77494e-16 0.799363 0.0448799
-0.0844249 0.803249 0.0490534
-1.79258e-16 0.807304 0.0230616
-
-0.0844249 0.803249 0.0490534
-1.77494e-16 0.799363 0.0448799
-0.0829672 0.78938 0.0702562
-
-1.74661e-16 0.786604 0.0642788
-0.0829672 0.78938 0.0702562
-1.77494e-16 0.799363 0.0448799
-
-0.0829672 0.78938 0.0702562
-1.74661e-16 0.786604 0.0642788
-0.0810377 0.771022 0.0876715
-
-1.70911e-16 0.769716 0.0802123
-0.0810377 0.771022 0.0876715
-1.74661e-16 0.786604 0.0642788
-
-0.0810377 0.771022 0.0876715
-1.70911e-16 0.769716 0.0802123
-0.0787404 0.749165 0.10036
-
-1.66446e-16 0.749608 0.0918216
-0.0787404 0.749165 0.10036
-1.70911e-16 0.769716 0.0802123
-
-0.0787404 0.749165 0.10036
-1.66446e-16 0.749608 0.0918216
-0.0761991 0.724986 0.107639
-
-1.61507e-16 0.727365 0.0984808
-0.0761991 0.724986 0.107639
-1.66446e-16 0.749608 0.0918216
-
-0.0761991 0.724986 0.107639
-1.61507e-16 0.727365 0.0984808
-0.0735509 0.69979 0.109114
-
-1.56361e-16 0.704186 0.0998308
-0.0735509 0.69979 0.109114
-1.61507e-16 0.727365 0.0984808
-
-0.0735509 0.69979 0.109114
-1.56361e-16 0.704186 0.0998308
-0.0709385 0.674935 0.104708
-
-1.51283e-16 0.68132 0.095799
-0.0709385 0.674935 0.104708
-1.56361e-16 0.704186 0.0998308
-
-0.0709385 0.674935 0.104708
-1.51283e-16 0.68132 0.095799
-0.0685028 0.65176 0.0946559
-
-1.46549e-16 0.66 0.0866025
-0.0685028 0.65176 0.0946559
-1.51283e-16 0.68132 0.095799
-
-0.0685028 0.65176 0.0946559
-1.46549e-16 0.66 0.0866025
-0.066375 0.631516 0.0795014
-
-1.42414e-16 0.641376 0.0727374
-0.066375 0.631516 0.0795014
-1.46549e-16 0.66 0.0866025
-
-0.066375 0.631516 0.0795014
-1.42414e-16 0.641376 0.0727374
-0.0646699 0.615293 0.0600609
-
-1.391e-16 0.626451 0.0549509
-0.0646699 0.615293 0.0600609
-1.42414e-16 0.641376 0.0727374
-
-0.0646699 0.615293 0.0600609
-1.391e-16 0.626451 0.0549509
-0.0634793 0.603965 0.0373825
-
-1.36786e-16 0.616031 0.034202
-0.0634793 0.603965 0.0373825
-1.391e-16 0.626451 0.0549509
-
-0.0634793 0.603965 0.0373825
-1.36786e-16 0.616031 0.034202
-0.0628676 0.598145 0.0126889
-
-1.35597e-16 0.610676 0.0116093
-0.0628676 0.598145 0.0126889
-1.36786e-16 0.616031 0.034202
-
-0.0628676 0.598145 0.0126889
-1.35597e-16 0.610676 0.0116093
-0.0628676 0.598145 -0.0126889
-
-1.35597e-16 0.610676 -0.0116093
-0.0628676 0.598145 -0.0126889
-1.35597e-16 0.610676 0.0116093
-
-0.0628676 0.598145 -0.0126889
-1.35597e-16 0.610676 -0.0116093
-0.0634793 0.603965 -0.0373825
-
-1.36786e-16 0.616031 -0.034202
-0.0634793 0.603965 -0.0373825
-1.35597e-16 0.610676 -0.0116093
-
-0.0634793 0.603965 -0.0373825
-1.36786e-16 0.616031 -0.034202
-0.0646699 0.615293 -0.0600609
-
-1.391e-16 0.626451 -0.0549509
-0.0646699 0.615293 -0.0600609
-1.36786e-16 0.616031 -0.034202
-
-0.0646699 0.615293 -0.0600609
-1.391e-16 0.626451 -0.0549509
-0.066375 0.631516 -0.0795014
-
-1.42414e-16 0.641376 -0.0727374
-0.066375 0.631516 -0.0795014
-1.391e-16 0.626451 -0.0549509
-
-0.066375 0.631516 -0.0795014
-1.42414e-16 0.641376 -0.0727374
-0.0685028 0.65176 -0.0946559
-
-1.46549e-16 0.66 -0.0866025
-0.0685028 0.65176 -0.0946559
-1.42414e-16 0.641376 -0.0727374
-
-0.0685028 0.65176 -0.0946559
-1.46549e-16 0.66 -0.0866025
-0.0709385 0.674935 -0.104708
-
-1.51283e-16 0.68132 -0.095799
-0.0709385 0.674935 -0.104708
-1.46549e-16 0.66 -0.0866025
-
-0.0709385 0.674935 -0.104708
-1.51283e-16 0.68132 -0.095799
-0.0735509 0.69979 -0.109114
-
-1.56361e-16 0.704186 -0.0998308
-0.0735509 0.69979 -0.109114
-1.51283e-16 0.68132 -0.095799
-
-0.0735509 0.69979 -0.109114
-1.56361e-16 0.704186 -0.0998308
-0.0761991 0.724986 -0.107639
-
-1.61507e-16 0.727365 -0.0984808
-0.0761991 0.724986 -0.107639
-1.56361e-16 0.704186 -0.0998308
-
-0.0761991 0.724986 -0.107639
-1.61507e-16 0.727365 -0.0984808
-0.0787404 0.749165 -0.10036
-
-1.66446e-16 0.749608 -0.0918216
-0.0787404 0.749165 -0.10036
-1.61507e-16 0.727365 -0.0984808
-
-0.0787404 0.749165 -0.10036
-1.66446e-16 0.749608 -0.0918216
-0.0810377 0.771022 -0.0876715
-
-1.70911e-16 0.769716 -0.0802123
-0.0810377 0.771022 -0.0876715
-1.66446e-16 0.749608 -0.0918216
-
-0.0810377 0.771022 -0.0876715
-1.70911e-16 0.769716 -0.0802123
-0.0829672 0.78938 -0.0702562
-
-1.74661e-16 0.786604 -0.0642788
-0.0829672 0.78938 -0.0702562
-1.70911e-16 0.769716 -0.0802123
-
-0.0829672 0.78938 -0.0702562
-1.74661e-16 0.786604 -0.0642788
-0.0844249 0.803249 -0.0490534
-
-1.77494e-16 0.799363 -0.0448799
-0.0844249 0.803249 -0.0490534
-1.74661e-16 0.786604 -0.0642788
-
-0.0844249 0.803249 -0.0490534
-1.77494e-16 0.799363 -0.0448799
-0.0853321 0.811881 -0.0252061
-
-1.79258e-16 0.807304 -0.0230616
-0.0853321 0.811881 -0.0252061
-1.77494e-16 0.799363 -0.0448799
-
-0.0853321 0.811881 -0.0252061
-1.79258e-16 0.807304 -0.0230616
-0.0856401 0.814811 0
-
-1.79856e-16 0.81 0
-0.0856401 0.814811 0
-1.79258e-16 0.807304 -0.0230616
-
-1.79856e-16 0.81 0
--0.0856401 0.814811 0
-1.79258e-16 0.807304 0.0230616
-
--0.0853321 0.811881 0.0252061
-1.79258e-16 0.807304 0.0230616
--0.0856401 0.814811 0
-
-1.79258e-16 0.807304 0.0230616
--0.0853321 0.811881 0.0252061
-1.77494e-16 0.799363 0.0448799
-
--0.0844249 0.803249 0.0490534
-1.77494e-16 0.799363 0.0448799
--0.0853321 0.811881 0.0252061
-
-1.77494e-16 0.799363 0.0448799
--0.0844249 0.803249 0.0490534
-1.74661e-16 0.786604 0.0642788
-
--0.0829672 0.78938 0.0702562
-1.74661e-16 0.786604 0.0642788
--0.0844249 0.803249 0.0490534
-
-1.74661e-16 0.786604 0.0642788
--0.0829672 0.78938 0.0702562
-1.70911e-16 0.769716 0.0802123
-
--0.0810377 0.771022 0.0876715
-1.70911e-16 0.769716 0.0802123
--0.0829672 0.78938 0.0702562
-
-1.70911e-16 0.769716 0.0802123
--0.0810377 0.771022 0.0876715
-1.66446e-16 0.749608 0.0918216
-
--0.0787404 0.749165 0.10036
-1.66446e-16 0.749608 0.0918216
--0.0810377 0.771022 0.0876715
-
-1.66446e-16 0.749608 0.0918216
--0.0787404 0.749165 0.10036
-1.61507e-16 0.727365 0.0984808
-
--0.0761991 0.724986 0.107639
-1.61507e-16 0.727365 0.0984808
--0.0787404 0.749165 0.10036
-
-1.61507e-16 0.727365 0.0984808
--0.0761991 0.724986 0.107639
-1.56361e-16 0.704186 0.0998308
-
--0.0735509 0.69979 0.109114
-1.56361e-16 0.704186 0.0998308
--0.0761991 0.724986 0.107639
-
-1.56361e-16 0.704186 0.0998308
--0.0735509 0.69979 0.109114
-1.51283e-16 0.68132 0.095799
-
--0.0709385 0.674935 0.104708
-1.51283e-16 0.68132 0.095799
--0.0735509 0.69979 0.109114
-
-1.51283e-16 0.68132 0.095799
--0.0709385 0.674935 0.104708
-1.46549e-16 0.66 0.0866025
-
--0.0685028 0.65176 0.0946559
-1.46549e-16 0.66 0.0866025
--0.0709385 0.674935 0.104708
-
-1.46549e-16 0.66 0.0866025
--0.0685028 0.65176 0.0946559
-1.42414e-16 0.641376 0.0727374
-
--0.066375 0.631516 0.0795014
-1.42414e-16 0.641376 0.0727374
--0.0685028 0.65176 0.0946559
-
-1.42414e-16 0.641376 0.0727374
--0.066375 0.631516 0.0795014
-1.391e-16 0.626451 0.0549509
-
--0.0646699 0.615293 0.0600609
-1.391e-16 0.626451 0.0549509
--0.066375 0.631516 0.0795014
-
-1.391e-16 0.626451 0.0549509
--0.0646699 0.615293 0.0600609
-1.36786e-16 0.616031 0.034202
-
--0.0634793 0.603965 0.0373825
-1.36786e-16 0.616031 0.034202
--0.0646699 0.615293 0.0600609
-
-1.36786e-16 0.616031 0.034202
--0.0634793 0.603965 0.0373825
-1.35597e-16 0.610676 0.0116093
-
--0.0628676 0.598145 0.0126889
-1.35597e-16 0.610676 0.0116093
--0.0634793 0.603965 0.0373825
-
-1.35597e-16 0.610676 0.0116093
--0.0628676 0.598145 0.0126889
-1.35597e-16 0.610676 -0.0116093
-
--0.0628676 0.598145 -0.0126889
-1.35597e-16 0.610676 -0.0116093
--0.0628676 0.598145 0.0126889
-
-1.35597e-16 0.610676 -0.0116093
--0.0628676 0.598145 -0.0126889
-1.36786e-16 0.616031 -0.034202
-
--0.0634793 0.603965 -0.0373825
-1.36786e-16 0.616031 -0.034202
--0.0628676 0.598145 -0.0126889
-
-1.36786e-16 0.616031 -0.034202
--0.0634793 0.603965 -0.0373825
-1.391e-16 0.626451 -0.0549509
-
--0.0646699 0.615293 -0.0600609
-1.391e-16 0.626451 -0.0549509
--0.0634793 0.603965 -0.0373825
-
-1.391e-16 0.626451 -0.0549509
--0.0646699 0.615293 -0.0600609
-1.42414e-16 0.641376 -0.0727374
-
--0.066375 0.631516 -0.0795014
-1.42414e-16 0.641376 -0.0727374
--0.0646699 0.615293 -0.0600609
-
-1.42414e-16 0.641376 -0.0727374
--0.066375 0.631516 -0.0795014
-1.46549e-16 0.66 -0.0866025
-
--0.0685028 0.65176 -0.0946559
-1.46549e-16 0.66 -0.0866025
--0.066375 0.631516 -0.0795014
-
-1.46549e-16 0.66 -0.0866025
--0.0685028 0.65176 -0.0946559
-1.51283e-16 0.68132 -0.095799
-
--0.0709385 0.674935 -0.104708
-1.51283e-16 0.68132 -0.095799
--0.0685028 0.65176 -0.0946559
-
-1.51283e-16 0.68132 -0.095799
--0.0709385 0.674935 -0.104708
-1.56361e-16 0.704186 -0.0998308
-
--0.0735509 0.69979 -0.109114
-1.56361e-16 0.704186 -0.0998308
--0.0709385 0.674935 -0.104708
-
-1.56361e-16 0.704186 -0.0998308
--0.0735509 0.69979 -0.109114
-1.61507e-16 0.727365 -0.0984808
-
--0.0761991 0.724986 -0.107639
-1.61507e-16 0.727365 -0.0984808
--0.0735509 0.69979 -0.109114
-
-1.61507e-16 0.727365 -0.0984808
--0.0761991 0.724986 -0.107639
-1.66446e-16 0.749608 -0.0918216
-
--0.0787404 0.749165 -0.10036
-1.66446e-16 0.749608 -0.0918216
--0.0761991 0.724986 -0.107639
-
-1.66446e-16 0.749608 -0.0918216
--0.0787404 0.749165 -0.10036
-1.70911e-16 0.769716 -0.0802123
-
--0.0810377 0.771022 -0.0876715
-1.70911e-16 0.769716 -0.0802123
--0.0787404 0.749165 -0.10036
-
-1.70911e-16 0.769716 -0.0802123
--0.0810377 0.771022 -0.0876715
-1.74661e-16 0.786604 -0.0642788
-
--0.0829672 0.78938 -0.0702562
-1.74661e-16 0.786604 -0.0642788
--0.0810377 0.771022 -0.0876715
-
-1.74661e-16 0.786604 -0.0642788
--0.0829672 0.78938 -0.0702562
-1.77494e-16 0.799363 -0.0448799
-
--0.0844249 0.803249 -0.0490534
-1.77494e-16 0.799363 -0.0448799
--0.0829672 0.78938 -0.0702562
-
-1.77494e-16 0.799363 -0.0448799
--0.0844249 0.803249 -0.0490534
-1.79258e-16 0.807304 -0.0230616
-
--0.0853321 0.811881 -0.0252061
-1.79258e-16 0.807304 -0.0230616
--0.0844249 0.803249 -0.0490534
-
-1.79258e-16 0.807304 -0.0230616
--0.0853321 0.811881 -0.0252061
-1.79856e-16 0.81 0
-
--0.0856401 0.814811 0
-1.79856e-16 0.81 0
--0.0853321 0.811881 -0.0252061
-
--0.0856401 0.814811 0
--0.175953 0.827793 0
--0.0853321 0.811881 0.0252061
-
--0.175189 0.8242 0.0314299
--0.0853321 0.811881 0.0252061
--0.175953 0.827793 0
-
--0.0853321 0.811881 0.0252061
--0.175189 0.8242 0.0314299
--0.0844249 0.803249 0.0490534
-
--0.172939 0.813614 0.0611654
--0.0844249 0.803249 0.0490534
--0.175189 0.8242 0.0314299
-
--0.0844249 0.803249 0.0490534
--0.172939 0.813614 0.0611654
--0.0829672 0.78938 0.0702562
-
--0.169324 0.796605 0.0876034
--0.0829672 0.78938 0.0702562
--0.172939 0.813614 0.0611654
-
--0.0829672 0.78938 0.0702562
--0.169324 0.796605 0.0876034
--0.0810377 0.771022 0.0876715
-
--0.164538 0.774091 0.109319
--0.0810377 0.771022 0.0876715
--0.169324 0.796605 0.0876034
-
--0.0810377 0.771022 0.0876715
--0.164538 0.774091 0.109319
--0.0787404 0.749165 0.10036
-
--0.15884 0.747286 0.125141
--0.0787404 0.749165 0.10036
--0.164538 0.774091 0.109319
-
--0.0787404 0.749165 0.10036
--0.15884 0.747286 0.125141
--0.0761991 0.724986 0.107639
-
--0.152538 0.717634 0.134216
--0.0761991 0.724986 0.107639
--0.15884 0.747286 0.125141
-
--0.0761991 0.724986 0.107639
--0.152538 0.717634 0.134216
--0.0735509 0.69979 0.109114
-
--0.14597 0.686734 0.136056
--0.0735509 0.69979 0.109114
--0.152538 0.717634 0.134216
-
--0.0735509 0.69979 0.109114
--0.14597 0.686734 0.136056
--0.0709385 0.674935 0.104708
-
--0.139491 0.656251 0.130561
--0.0709385 0.674935 0.104708
--0.14597 0.686734 0.136056
-
--0.0709385 0.674935 0.104708
--0.139491 0.656251 0.130561
--0.0685028 0.65176 0.0946559
-
--0.133449 0.627831 0.118028
--0.0685028 0.65176 0.0946559
--0.139491 0.656251 0.130561
-
--0.0685028 0.65176 0.0946559
--0.133449 0.627831 0.118028
--0.066375 0.631516 0.0795014
-
--0.128172 0.603003 0.0991314
--0.066375 0.631516 0.0795014
--0.133449 0.627831 0.118028
-
--0.066375 0.631516 0.0795014
--0.128172 0.603003 0.0991314
--0.0646699 0.615293 0.0600609
-
--0.123943 0.583107 0.0748908
--0.0646699 0.615293 0.0600609
--0.128172 0.603003 0.0991314
-
--0.0646699 0.615293 0.0600609
--0.123943 0.583107 0.0748908
--0.0634793 0.603965 0.0373825
-
--0.120991 0.569216 0.0466128
--0.0634793 0.603965 0.0373825
--0.123943 0.583107 0.0748908
-
--0.0634793 0.603965 0.0373825
--0.120991 0.569216 0.0466128
--0.0628676 0.598145 0.0126889
-
--0.119473 0.562078 0.0158219
--0.0628676 0.598145 0.0126889
--0.120991 0.569216 0.0466128
-
--0.0628676 0.598145 0.0126889
--0.119473 0.562078 0.0158219
--0.0628676 0.598145 -0.0126889
-
--0.119473 0.562078 -0.0158219
--0.0628676 0.598145 -0.0126889
--0.119473 0.562078 0.0158219
-
--0.0628676 0.598145 -0.0126889
--0.119473 0.562078 -0.0158219
--0.0634793 0.603965 -0.0373825
-
--0.120991 0.569216 -0.0466128
--0.0634793 0.603965 -0.0373825
--0.119473 0.562078 -0.0158219
-
--0.0634793 0.603965 -0.0373825
--0.120991 0.569216 -0.0466128
--0.0646699 0.615293 -0.0600609
-
--0.123943 0.583107 -0.0748908
--0.0646699 0.615293 -0.0600609
--0.120991 0.569216 -0.0466128
-
--0.0646699 0.615293 -0.0600609
--0.123943 0.583107 -0.0748908
--0.066375 0.631516 -0.0795014
-
--0.128172 0.603003 -0.0991314
--0.066375 0.631516 -0.0795014
--0.123943 0.583107 -0.0748908
-
--0.066375 0.631516 -0.0795014
--0.128172 0.603003 -0.0991314
--0.0685028 0.65176 -0.0946559
-
--0.133449 0.627831 -0.118028
--0.0685028 0.65176 -0.0946559
--0.128172 0.603003 -0.0991314
-
--0.0685028 0.65176 -0.0946559
--0.133449 0.627831 -0.118028
--0.0709385 0.674935 -0.104708
-
--0.139491 0.656251 -0.130561
--0.0709385 0.674935 -0.104708
--0.133449 0.627831 -0.118028
-
--0.0709385 0.674935 -0.104708
--0.139491 0.656251 -0.130561
--0.0735509 0.69979 -0.109114
-
--0.14597 0.686734 -0.136056
--0.0735509 0.69979 -0.109114
--0.139491 0.656251 -0.130561
-
--0.0735509 0.69979 -0.109114
--0.14597 0.686734 -0.136056
--0.0761991 0.724986 -0.107639
-
--0.152538 0.717634 -0.134216
--0.0761991 0.724986 -0.107639
--0.14597 0.686734 -0.136056
-
--0.0761991 0.724986 -0.107639
--0.152538 0.717634 -0.134216
--0.0787404 0.749165 -0.10036
-
--0.15884 0.747286 -0.125141
--0.0787404 0.749165 -0.10036
--0.152538 0.717634 -0.134216
-
--0.0787404 0.749165 -0.10036
--0.15884 0.747286 -0.125141
--0.0810377 0.771022 -0.0876715
-
--0.164538 0.774091 -0.109319
--0.0810377 0.771022 -0.0876715
--0.15884 0.747286 -0.125141
-
--0.0810377 0.771022 -0.0876715
--0.164538 0.774091 -0.109319
--0.0829672 0.78938 -0.0702562
-
--0.169324 0.796605 -0.0876034
--0.0829672 0.78938 -0.0702562
--0.164538 0.774091 -0.109319
-
--0.0829672 0.78938 -0.0702562
--0.169324 0.796605 -0.0876034
--0.0844249 0.803249 -0.0490534
-
--0.172939 0.813614 -0.0611654
--0.0844249 0.803249 -0.0490534
--0.169324 0.796605 -0.0876034
-
--0.0844249 0.803249 -0.0490534
--0.172939 0.813614 -0.0611654
--0.0853321 0.811881 -0.0252061
-
--0.175189 0.8242 -0.0314299
--0.0853321 0.811881 -0.0252061
--0.172939 0.813614 -0.0611654
-
--0.0853321 0.811881 -0.0252061
--0.175189 0.8242 -0.0314299
--0.0856401 0.814811 0
-
--0.175953 0.827793 0
--0.0856401 0.814811 0
--0.175189 0.8242 -0.0314299
-
--0.175953 0.827793 0
--0.274506 0.844843 0
--0.175189 0.8242 0.0314299
-
--0.273021 0.840272 0.0411236
--0.175189 0.8242 0.0314299
--0.274506 0.844843 0
-
--0.175189 0.8242 0.0314299
--0.273021 0.840272 0.0411236
--0.172939 0.813614 0.0611654
-
--0.268645 0.826804 0.0800302
--0.172939 0.813614 0.0611654
--0.273021 0.840272 0.0411236
-
--0.172939 0.813614 0.0611654
--0.268645 0.826804 0.0800302
--0.169324 0.796605 0.0876034
-
--0.261614 0.805166 0.114622
--0.169324 0.796605 0.0876034
--0.268645 0.826804 0.0800302
-
--0.169324 0.796605 0.0876034
--0.261614 0.805166 0.114622
--0.164538 0.774091 0.109319
-
--0.252308 0.776524 0.143035
--0.164538 0.774091 0.109319
--0.261614 0.805166 0.114622
-
--0.164538 0.774091 0.109319
--0.252308 0.776524 0.143035
--0.15884 0.747286 0.125141
-
--0.241228 0.742423 0.163737
--0.15884 0.747286 0.125141
--0.252308 0.776524 0.143035
-
--0.15884 0.747286 0.125141
--0.241228 0.742423 0.163737
--0.152538 0.717634 0.134216
-
--0.228971 0.7047 0.175612
--0.152538 0.717634 0.134216
--0.241228 0.742423 0.163737
-
--0.152538 0.717634 0.134216
--0.228971 0.7047 0.175612
--0.14597 0.686734 0.136056
-
--0.216198 0.665389 0.178019
--0.14597 0.686734 0.136056
--0.228971 0.7047 0.175612
-
--0.14597 0.686734 0.136056
--0.216198 0.665389 0.178019
--0.139491 0.656251 0.130561
-
--0.203598 0.62661 0.170829
--0.139491 0.656251 0.130561
--0.216198 0.665389 0.178019
-
--0.139491 0.656251 0.130561
--0.203598 0.62661 0.170829
--0.133449 0.627831 0.118028
-
--0.19185 0.590454 0.15443
--0.133449 0.627831 0.118028
--0.203598 0.62661 0.170829
-
--0.133449 0.627831 0.118028
--0.19185 0.590454 0.15443
--0.128172 0.603003 0.0991314
-
--0.181587 0.558868 0.129706
--0.128172 0.603003 0.0991314
--0.19185 0.590454 0.15443
-
--0.128172 0.603003 0.0991314
--0.181587 0.558868 0.129706
--0.123943 0.583107 0.0748908
-
--0.173363 0.533557 0.0979889
--0.123943 0.583107 0.0748908
--0.181587 0.558868 0.129706
-
--0.123943 0.583107 0.0748908
--0.173363 0.533557 0.0979889
--0.120991 0.569216 0.0466128
-
--0.167621 0.515885 0.0609893
--0.120991 0.569216 0.0466128
--0.173363 0.533557 0.0979889
-
--0.120991 0.569216 0.0466128
--0.167621 0.515885 0.0609893
--0.119473 0.562078 0.0158219
-
--0.164671 0.506804 0.0207018
--0.119473 0.562078 0.0158219
--0.167621 0.515885 0.0609893
-
--0.119473 0.562078 0.0158219
--0.164671 0.506804 0.0207018
--0.119473 0.562078 -0.0158219
-
--0.164671 0.506804 -0.0207018
--0.119473 0.562078 -0.0158219
--0.164671 0.506804 0.0207018
-
--0.119473 0.562078 -0.0158219
--0.164671 0.506804 -0.0207018
--0.120991 0.569216 -0.0466128
-
--0.167621 0.515885 -0.0609893
--0.120991 0.569216 -0.0466128
--0.164671 0.506804 -0.0207018
-
--0.120991 0.569216 -0.0466128
--0.167621 0.515885 -0.0609893
--0.123943 0.583107 -0.0748908
-
--0.173363 0.533557 -0.0979889
--0.123943 0.583107 -0.0748908
--0.167621 0.515885 -0.0609893
-
--0.123943 0.583107 -0.0748908
--0.173363 0.533557 -0.0979889
--0.128172 0.603003 -0.0991314
-
--0.181587 0.558868 -0.129706
--0.128172 0.603003 -0.0991314
--0.173363 0.533557 -0.0979889
-
--0.128172 0.603003 -0.0991314
--0.181587 0.558868 -0.129706
--0.133449 0.627831 -0.118028
-
--0.19185 0.590454 -0.15443
--0.133449 0.627831 -0.118028
--0.181587 0.558868 -0.129706
-
--0.133449 0.627831 -0.118028
--0.19185 0.590454 -0.15443
--0.139491 0.656251 -0.130561
-
--0.203598 0.62661 -0.170829
--0.139491 0.656251 -0.130561
--0.19185 0.590454 -0.15443
-
--0.139491 0.656251 -0.130561
--0.203598 0.62661 -0.170829
--0.14597 0.686734 -0.136056
-
--0.216198 0.665389 -0.178019
--0.14597 0.686734 -0.136056
--0.203598 0.62661 -0.170829
-
--0.14597 0.686734 -0.136056
--0.216198 0.665389 -0.178019
--0.152538 0.717634 -0.134216
-
--0.228971 0.7047 -0.175612
--0.152538 0.717634 -0.134216
--0.216198 0.665389 -0.178019
-
--0.152538 0.717634 -0.134216
--0.228971 0.7047 -0.175612
--0.15884 0.747286 -0.125141
-
--0.241228 0.742423 -0.163737
--0.15884 0.747286 -0.125141
--0.228971 0.7047 -0.175612
-
--0.15884 0.747286 -0.125141
--0.241228 0.742423 -0.163737
--0.164538 0.774091 -0.109319
-
--0.252308 0.776524 -0.143035
--0.164538 0.774091 -0.109319
--0.241228 0.742423 -0.163737
-
--0.164538 0.774091 -0.109319
--0.252308 0.776524 -0.143035
--0.169324 0.796605 -0.0876034
-
--0.261614 0.805166 -0.114622
--0.169324 0.796605 -0.0876034
--0.252308 0.776524 -0.143035
-
--0.169324 0.796605 -0.0876034
--0.261614 0.805166 -0.114622
--0.172939 0.813614 -0.0611654
-
--0.268645 0.826804 -0.0800302
--0.172939 0.813614 -0.0611654
--0.261614 0.805166 -0.114622
-
--0.172939 0.813614 -0.0611654
--0.268645 0.826804 -0.0800302
--0.175189 0.8242 -0.0314299
-
--0.273021 0.840272 -0.0411236
--0.175189 0.8242 -0.0314299
--0.268645 0.826804 -0.0800302
-
--0.175189 0.8242 -0.0314299
--0.273021 0.840272 -0.0411236
--0.175953 0.827793 0
-
--0.274506 0.844843 0
--0.175953 0.827793 0
--0.273021 0.840272 -0.0411236
-
--0.274506 0.844843 0
--0.382856 0.859908 0
--0.273021 0.840272 0.0411236
-
--0.38032 0.854213 0.0533384
--0.273021 0.840272 0.0411236
--0.382856 0.859908 0
-
--0.273021 0.840272 0.0411236
--0.38032 0.854213 0.0533384
--0.268645 0.826804 0.0800302
-
--0.37285 0.837434 0.103801
--0.268645 0.826804 0.0800302
--0.38032 0.854213 0.0533384
-
--0.268645 0.826804 0.0800302
--0.37285 0.837434 0.103801
--0.261614 0.805166 0.114622
-
--0.360847 0.810476 0.148668
--0.261614 0.805166 0.114622
--0.37285 0.837434 0.103801
-
--0.261614 0.805166 0.114622
--0.360847 0.810476 0.148668
--0.252308 0.776524 0.143035
-
--0.344959 0.774791 0.18552
--0.252308 0.776524 0.143035
--0.360847 0.810476 0.148668
-
--0.252308 0.776524 0.143035
--0.344959 0.774791 0.18552
--0.241228 0.742423 0.163737
-
--0.326043 0.732305 0.212371
--0.241228 0.742423 0.163737
--0.344959 0.774791 0.18552
-
--0.241228 0.742423 0.163737
--0.326043 0.732305 0.212371
--0.228971 0.7047 0.175612
-
--0.305119 0.685308 0.227773
--0.228971 0.7047 0.175612
--0.326043 0.732305 0.212371
-
--0.228971 0.7047 0.175612
--0.305119 0.685308 0.227773
--0.216198 0.665389 0.178019
-
--0.283313 0.636332 0.230895
--0.216198 0.665389 0.178019
--0.305119 0.685308 0.227773
-
--0.216198 0.665389 0.178019
--0.283313 0.636332 0.230895
--0.203598 0.62661 0.170829
-
--0.261803 0.588018 0.22157
--0.203598 0.62661 0.170829
--0.283313 0.636332 0.230895
-
--0.203598 0.62661 0.170829
--0.261803 0.588018 0.22157
--0.19185 0.590454 0.15443
-
--0.241747 0.542972 0.2003
--0.19185 0.590454 0.15443
--0.261803 0.588018 0.22157
-
--0.19185 0.590454 0.15443
--0.241747 0.542972 0.2003
--0.181587 0.558868 0.129706
-
--0.224226 0.503621 0.168232
--0.181587 0.558868 0.129706
--0.241747 0.542972 0.2003
-
--0.181587 0.558868 0.129706
--0.224226 0.503621 0.168232
--0.173363 0.533557 0.0979889
-
--0.210186 0.472086 0.127094
--0.173363 0.533557 0.0979889
--0.224226 0.503621 0.168232
-
--0.173363 0.533557 0.0979889
--0.210186 0.472086 0.127094
--0.167621 0.515885 0.0609893
-
--0.200383 0.450069 0.0791047
--0.167621 0.515885 0.0609893
--0.210186 0.472086 0.127094
-
--0.167621 0.515885 0.0609893
--0.200383 0.450069 0.0791047
--0.164671 0.506804 0.0207018
-
--0.195346 0.438755 0.0268508
--0.164671 0.506804 0.0207018
--0.200383 0.450069 0.0791047
-
--0.164671 0.506804 0.0207018
--0.195346 0.438755 0.0268508
--0.164671 0.506804 -0.0207018
-
--0.195346 0.438755 -0.0268508
--0.164671 0.506804 -0.0207018
--0.195346 0.438755 0.0268508
-
--0.164671 0.506804 -0.0207018
--0.195346 0.438755 -0.0268508
--0.167621 0.515885 -0.0609893
-
--0.200383 0.450069 -0.0791047
--0.167621 0.515885 -0.0609893
--0.195346 0.438755 -0.0268508
-
--0.167621 0.515885 -0.0609893
--0.200383 0.450069 -0.0791047
--0.173363 0.533557 -0.0979889
-
--0.210186 0.472086 -0.127094
--0.173363 0.533557 -0.0979889
--0.200383 0.450069 -0.0791047
-
--0.173363 0.533557 -0.0979889
--0.210186 0.472086 -0.127094
--0.181587 0.558868 -0.129706
-
--0.224226 0.503621 -0.168232
--0.181587 0.558868 -0.129706
--0.210186 0.472086 -0.127094
-
--0.181587 0.558868 -0.129706
--0.224226 0.503621 -0.168232
--0.19185 0.590454 -0.15443
-
--0.241747 0.542972 -0.2003
--0.19185 0.590454 -0.15443
--0.224226 0.503621 -0.168232
-
--0.19185 0.590454 -0.15443
--0.241747 0.542972 -0.2003
--0.203598 0.62661 -0.170829
-
--0.261803 0.588018 -0.22157
--0.203598 0.62661 -0.170829
--0.241747 0.542972 -0.2003
-
--0.203598 0.62661 -0.170829
--0.261803 0.588018 -0.22157
--0.216198 0.665389 -0.178019
-
--0.283313 0.636332 -0.230895
--0.216198 0.665389 -0.178019
--0.261803 0.588018 -0.22157
-
--0.216198 0.665389 -0.178019
--0.283313 0.636332 -0.230895
--0.228971 0.7047 -0.175612
-
--0.305119 0.685308 -0.227773
--0.228971 0.7047 -0.175612
--0.283313 0.636332 -0.230895
-
--0.228971 0.7047 -0.175612
--0.305119 0.685308 -0.227773
--0.241228 0.742423 -0.163737
-
--0.326043 0.732305 -0.212371
--0.241228 0.742423 -0.163737
--0.305119 0.685308 -0.227773
-
--0.241228 0.742423 -0.163737
--0.326043 0.732305 -0.212371
--0.252308 0.776524 -0.143035
-
--0.344959 0.774791 -0.18552
--0.252308 0.776524 -0.143035
--0.326043 0.732305 -0.212371
-
--0.252308 0.776524 -0.143035
--0.344959 0.774791 -0.18552
--0.261614 0.805166 -0.114622
-
--0.360847 0.810476 -0.148668
--0.261614 0.805166 -0.114622
--0.344959 0.774791 -0.18552
-
--0.261614 0.805166 -0.114622
--0.360847 0.810476 -0.148668
--0.268645 0.826804 -0.0800302
-
--0.37285 0.837434 -0.103801
--0.268645 0.826804 -0.0800302
--0.360847 0.810476 -0.148668
-
--0.268645 0.826804 -0.0800302
--0.37285 0.837434 -0.103801
--0.273021 0.840272 -0.0411236
-
--0.38032 0.854213 -0.0533384
--0.273021 0.840272 -0.0411236
--0.37285 0.837434 -0.103801
-
--0.273021 0.840272 -0.0411236
--0.38032 0.854213 -0.0533384
--0.274506 0.844843 0
-
--0.382856 0.859908 0
--0.274506 0.844843 0
--0.38032 0.854213 -0.0533384
-
--0.382856 0.859908 0
--0.5 0.866025 0
--0.38032 0.854213 0.0533384
-
--0.496092 0.859256 0.0668786
--0.38032 0.854213 0.0533384
--0.5 0.866025 0
-
--0.38032 0.854213 0.0533384
--0.496092 0.859256 0.0668786
--0.37285 0.837434 0.103801
-
--0.484577 0.839312 0.130152
--0.37285 0.837434 0.103801
--0.496092 0.859256 0.0668786
-
--0.37285 0.837434 0.103801
--0.484577 0.839312 0.130152
--0.360847 0.810476 0.148668
-
--0.466076 0.807268 0.186408
--0.360847 0.810476 0.148668
--0.484577 0.839312 0.130152
-
--0.360847 0.810476 0.148668
--0.466076 0.807268 0.186408
--0.344959 0.774791 0.18552
-
--0.441588 0.764853 0.232616
--0.344959 0.774791 0.18552
--0.466076 0.807268 0.186408
-
--0.344959 0.774791 0.18552
--0.441588 0.764853 0.232616
--0.326043 0.732305 0.212371
-
--0.412432 0.714352 0.266283
--0.326043 0.732305 0.212371
--0.441588 0.764853 0.232616
-
--0.326043 0.732305 0.212371
--0.412432 0.714352 0.266283
--0.305119 0.685308 0.227773
-
--0.380179 0.658489 0.285594
--0.305119 0.685308 0.227773
--0.412432 0.714352 0.266283
-
--0.305119 0.685308 0.227773
--0.380179 0.658489 0.285594
--0.283313 0.636332 0.230895
-
--0.346569 0.600275 0.289509
--0.283313 0.636332 0.230895
--0.380179 0.658489 0.285594
-
--0.283313 0.636332 0.230895
--0.346569 0.600275 0.289509
--0.261803 0.588018 0.22157
-
--0.313414 0.542848 0.277817
--0.261803 0.588018 0.22157
--0.346569 0.600275 0.289509
-
--0.261803 0.588018 0.22157
--0.313414 0.542848 0.277817
--0.241747 0.542972 0.2003
-
--0.2825 0.489304 0.251147
--0.241747 0.542972 0.2003
--0.313414 0.542848 0.277817
-
--0.241747 0.542972 0.2003
--0.2825 0.489304 0.251147
--0.224226 0.503621 0.168232
-
--0.255495 0.44253 0.210938
--0.224226 0.503621 0.168232
--0.2825 0.489304 0.251147
-
--0.224226 0.503621 0.168232
--0.255495 0.44253 0.210938
--0.210186 0.472086 0.127094
-
--0.233854 0.405047 0.159358
--0.210186 0.472086 0.127094
--0.255495 0.44253 0.210938
-
--0.210186 0.472086 0.127094
--0.233854 0.405047 0.159358
--0.200383 0.450069 0.0791047
-
--0.218745 0.378877 0.0991858
--0.200383 0.450069 0.0791047
--0.233854 0.405047 0.159358
-
--0.200383 0.450069 0.0791047
--0.218745 0.378877 0.0991858
--0.195346 0.438755 0.0268508
-
--0.21098 0.365429 0.0336669
--0.195346 0.438755 0.0268508
--0.218745 0.378877 0.0991858
-
--0.195346 0.438755 0.0268508
--0.21098 0.365429 0.0336669
--0.195346 0.438755 -0.0268508
-
--0.21098 0.365429 -0.0336669
--0.195346 0.438755 -0.0268508
--0.21098 0.365429 0.0336669
-
--0.195346 0.438755 -0.0268508
--0.21098 0.365429 -0.0336669
--0.200383 0.450069 -0.0791047
-
--0.218745 0.378877 -0.0991858
--0.200383 0.450069 -0.0791047
--0.21098 0.365429 -0.0336669
-
--0.200383 0.450069 -0.0791047
--0.218745 0.378877 -0.0991858
--0.210186 0.472086 -0.127094
-
--0.233854 0.405047 -0.159358
--0.210186 0.472086 -0.127094
--0.218745 0.378877 -0.0991858
-
--0.210186 0.472086 -0.127094
--0.233854 0.405047 -0.159358
--0.224226 0.503621 -0.168232
-
--0.255495 0.44253 -0.210938
--0.224226 0.503621 -0.168232
--0.233854 0.405047 -0.159358
-
--0.224226 0.503621 -0.168232
--0.255495 0.44253 -0.210938
--0.241747 0.542972 -0.2003
-
--0.2825 0.489304 -0.251147
--0.241747 0.542972 -0.2003
--0.255495 0.44253 -0.210938
-
--0.241747 0.542972 -0.2003
--0.2825 0.489304 -0.251147
--0.261803 0.588018 -0.22157
-
--0.313414 0.542848 -0.277817
--0.261803 0.588018 -0.22157
--0.2825 0.489304 -0.251147
-
--0.261803 0.588018 -0.22157
--0.313414 0.542848 -0.277817
--0.283313 0.636332 -0.230895
-
--0.346569 0.600275 -0.289509
--0.283313 0.636332 -0.230895
--0.313414 0.542848 -0.277817
-
--0.283313 0.636332 -0.230895
--0.346569 0.600275 -0.289509
--0.305119 0.685308 -0.227773
-
--0.380179 0.658489 -0.285594
--0.305119 0.685308 -0.227773
--0.346569 0.600275 -0.289509
-
--0.305119 0.685308 -0.227773
--0.380179 0.658489 -0.285594
--0.326043 0.732305 -0.212371
-
--0.412432 0.714352 -0.266283
--0.326043 0.732305 -0.212371
--0.380179 0.658489 -0.285594
-
--0.326043 0.732305 -0.212371
--0.412432 0.714352 -0.266283
--0.344959 0.774791 -0.18552
-
--0.441588 0.764853 -0.232616
--0.344959 0.774791 -0.18552
--0.412432 0.714352 -0.266283
-
--0.344959 0.774791 -0.18552
--0.441588 0.764853 -0.232616
--0.360847 0.810476 -0.148668
-
--0.466076 0.807268 -0.186408
--0.360847 0.810476 -0.148668
--0.441588 0.764853 -0.232616
-
--0.360847 0.810476 -0.148668
--0.466076 0.807268 -0.186408
--0.37285 0.837434 -0.103801
-
--0.484577 0.839312 -0.130152
--0.37285 0.837434 -0.103801
--0.466076 0.807268 -0.186408
-
--0.37285 0.837434 -0.103801
--0.484577 0.839312 -0.130152
--0.38032 0.854213 -0.0533384
-
--0.496092 0.859256 -0.0668786
--0.38032 0.854213 -0.0533384
--0.484577 0.839312 -0.130152
-
--0.38032 0.854213 -0.0533384
--0.496092 0.859256 -0.0668786
--0.382856 0.859908 0
-
--0.5 0.866025 0
--0.382856 0.859908 0
--0.496092 0.859256 -0.0668786
-
--0.5 0.866025 0
--0.622296 0.856517 0
--0.496092 0.859256 0.0668786
-
--0.616771 0.848913 0.0804188
--0.496092 0.859256 0.0668786
--0.622296 0.856517 0
-
--0.496092 0.859256 0.0668786
--0.616771 0.848913 0.0804188
--0.484577 0.839312 0.130152
-
--0.600494 0.826509 0.156502
--0.484577 0.839312 0.130152
--0.616771 0.848913 0.0804188
-
--0.484577 0.839312 0.130152
--0.600494 0.826509 0.156502
--0.466076 0.807268 0.186408
-
--0.574343 0.790515 0.224149
--0.466076 0.807268 0.186408
--0.600494 0.826509 0.156502
-
--0.466076 0.807268 0.186408
--0.574343 0.790515 0.224149
--0.441588 0.764853 0.232616
-
--0.539726 0.742869 0.279711
--0.441588 0.764853 0.232616
--0.574343 0.790515 0.224149
-
--0.441588 0.764853 0.232616
--0.539726 0.742869 0.279711
--0.412432 0.714352 0.266283
-
--0.498511 0.686142 0.320194
--0.412432 0.714352 0.266283
--0.539726 0.742869 0.279711
-
--0.412432 0.714352 0.266283
--0.498511 0.686142 0.320194
--0.380179 0.658489 0.285594
-
--0.45292 0.623391 0.343415
--0.380179 0.658489 0.285594
--0.498511 0.686142 0.320194
-
--0.380179 0.658489 0.285594
--0.45292 0.623391 0.343415
--0.346569 0.600275 0.289509
-
--0.40541 0.557999 0.348123
--0.346569 0.600275 0.289509
--0.45292 0.623391 0.343415
-
--0.346569 0.600275 0.289509
--0.40541 0.557999 0.348123
--0.313414 0.542848 0.277817
-
--0.358542 0.493491 0.334064
--0.313414 0.542848 0.277817
--0.40541 0.557999 0.348123
-
--0.313414 0.542848 0.277817
--0.358542 0.493491 0.334064
--0.2825 0.489304 0.251147
-
--0.314843 0.433345 0.301995
--0.2825 0.489304 0.251147
--0.358542 0.493491 0.334064
-
--0.2825 0.489304 0.251147
--0.314843 0.433345 0.301995
--0.255495 0.44253 0.210938
-
--0.27667 0.380803 0.253645
--0.255495 0.44253 0.210938
--0.314843 0.433345 0.301995
-
--0.255495 0.44253 0.210938
--0.27667 0.380803 0.253645
--0.233854 0.405047 0.159358
-
--0.246079 0.338698 0.191621
--0.233854 0.405047 0.159358
--0.27667 0.380803 0.253645
-
--0.233854 0.405047 0.159358
--0.246079 0.338698 0.191621
--0.218745 0.378877 0.0991858
-
--0.22472 0.309301 0.119267
--0.218745 0.378877 0.0991858
--0.246079 0.338698 0.191621
-
--0.218745 0.378877 0.0991858
--0.22472 0.309301 0.119267
--0.21098 0.365429 0.0336669
-
--0.213745 0.294195 0.0404831
--0.21098 0.365429 0.0336669
--0.22472 0.309301 0.119267
-
--0.21098 0.365429 0.0336669
--0.213745 0.294195 0.0404831
--0.21098 0.365429 -0.0336669
-
--0.213745 0.294195 -0.0404831
--0.21098 0.365429 -0.0336669
--0.213745 0.294195 0.0404831
-
--0.21098 0.365429 -0.0336669
--0.213745 0.294195 -0.0404831
--0.218745 0.378877 -0.0991858
-
--0.22472 0.309301 -0.119267
--0.218745 0.378877 -0.0991858
--0.213745 0.294195 -0.0404831
-
--0.218745 0.378877 -0.0991858
--0.22472 0.309301 -0.119267
--0.233854 0.405047 -0.159358
-
--0.246079 0.338698 -0.191621
--0.233854 0.405047 -0.159358
--0.22472 0.309301 -0.119267
-
--0.233854 0.405047 -0.159358
--0.246079 0.338698 -0.191621
--0.255495 0.44253 -0.210938
-
--0.27667 0.380803 -0.253645
--0.255495 0.44253 -0.210938
--0.246079 0.338698 -0.191621
-
--0.255495 0.44253 -0.210938
--0.27667 0.380803 -0.253645
--0.2825 0.489304 -0.251147
-
--0.314843 0.433345 -0.301995
--0.2825 0.489304 -0.251147
--0.27667 0.380803 -0.253645
-
--0.2825 0.489304 -0.251147
--0.314843 0.433345 -0.301995
--0.313414 0.542848 -0.277817
-
--0.358542 0.493491 -0.334064
--0.313414 0.542848 -0.277817
--0.314843 0.433345 -0.301995
-
--0.313414 0.542848 -0.277817
--0.358542 0.493491 -0.334064
--0.346569 0.600275 -0.289509
-
--0.40541 0.557999 -0.348123
--0.346569 0.600275 -0.289509
--0.358542 0.493491 -0.334064
-
--0.346569 0.600275 -0.289509
--0.40541 0.557999 -0.348123
--0.380179 0.658489 -0.285594
-
--0.45292 0.623391 -0.343415
--0.380179 0.658489 -0.285594
--0.40541 0.557999 -0.348123
-
--0.380179 0.658489 -0.285594
--0.45292 0.623391 -0.343415
--0.412432 0.714352 -0.266283
-
--0.498511 0.686142 -0.320194
--0.412432 0.714352 -0.266283
--0.45292 0.623391 -0.343415
-
--0.412432 0.714352 -0.266283
--0.498511 0.686142 -0.320194
--0.441588 0.764853 -0.232616
-
--0.539726 0.742869 -0.279711
--0.441588 0.764853 -0.232616
--0.498511 0.686142 -0.320194
-
--0.441588 0.764853 -0.232616
--0.539726 0.742869 -0.279711
--0.466076 0.807268 -0.186408
-
--0.574343 0.790515 -0.224149
--0.466076 0.807268 -0.186408
--0.539726 0.742869 -0.279711
-
--0.466076 0.807268 -0.186408
--0.574343 0.790515 -0.224149
--0.484577 0.839312 -0.130152
-
--0.600494 0.826509 -0.156502
--0.484577 0.839312 -0.130152
--0.574343 0.790515 -0.224149
-
--0.484577 0.839312 -0.130152
--0.600494 0.826509 -0.156502
--0.496092 0.859256 -0.0668786
-
--0.616771 0.848913 -0.0804188
--0.496092 0.859256 -0.0668786
--0.600494 0.826509 -0.156502
-
--0.496092 0.859256 -0.0668786
--0.616771 0.848913 -0.0804188
--0.5 0.866025 0
-
--0.622296 0.856517 0
--0.5 0.866025 0
--0.616771 0.848913 -0.0804188
-
--0.622296 0.856517 0
--0.743859 0.826139 0
--0.616771 0.848913 0.0804188
-
--0.736614 0.818092 0.0926336
--0.616771 0.848913 0.0804188
--0.743859 0.826139 0
-
--0.616771 0.848913 0.0804188
--0.736614 0.818092 0.0926336
--0.600494 0.826509 0.156502
-
--0.71527 0.794387 0.180273
--0.600494 0.826509 0.156502
--0.736614 0.818092 0.0926336
-
--0.600494 0.826509 0.156502
--0.71527 0.794387 0.180273
--0.574343 0.790515 0.224149
-
--0.680977 0.756302 0.258194
--0.574343 0.790515 0.224149
--0.71527 0.794387 0.180273
-
--0.574343 0.790515 0.224149
--0.680977 0.756302 0.258194
--0.539726 0.742869 0.279711
-
--0.635585 0.705888 0.322196
--0.539726 0.742869 0.279711
--0.680977 0.756302 0.258194
-
--0.539726 0.742869 0.279711
--0.635585 0.705888 0.322196
--0.498511 0.686142 0.320194
-
--0.581539 0.645865 0.368828
--0.498511 0.686142 0.320194
--0.635585 0.705888 0.322196
-
--0.498511 0.686142 0.320194
--0.581539 0.645865 0.368828
--0.45292 0.623391 0.343415
-
--0.521755 0.579468 0.395577
--0.45292 0.623391 0.343415
--0.581539 0.645865 0.368828
-
--0.45292 0.623391 0.343415
--0.521755 0.579468 0.395577
--0.40541 0.557999 0.348123
-
--0.459455 0.510276 0.401
--0.40541 0.557999 0.348123
--0.521755 0.579468 0.395577
-
--0.40541 0.557999 0.348123
--0.459455 0.510276 0.401
--0.358542 0.493491 0.334064
-
--0.397997 0.44202 0.384804
--0.358542 0.493491 0.334064
--0.459455 0.510276 0.401
-
--0.358542 0.493491 0.334064
--0.397997 0.44202 0.384804
--0.314843 0.433345 0.301995
-
--0.340695 0.37838 0.347864
--0.314843 0.433345 0.301995
--0.397997 0.44202 0.384804
-
--0.314843 0.433345 0.301995
--0.340695 0.37838 0.347864
--0.27667 0.380803 0.253645
-
--0.290638 0.322786 0.292171
--0.27667 0.380803 0.253645
--0.340695 0.37838 0.347864
-
--0.27667 0.380803 0.253645
--0.290638 0.322786 0.292171
--0.246079 0.338698 0.191621
-
--0.250524 0.278235 0.220726
--0.246079 0.338698 0.191621
--0.290638 0.322786 0.292171
-
--0.246079 0.338698 0.191621
--0.250524 0.278235 0.220726
--0.22472 0.309301 0.119267
-
--0.222516 0.247129 0.137382
--0.22472 0.309301 0.119267
--0.250524 0.278235 0.220726
-
--0.22472 0.309301 0.119267
--0.222516 0.247129 0.137382
--0.213745 0.294195 0.0404831
-
--0.208124 0.231145 0.0466321
--0.213745 0.294195 0.0404831
--0.222516 0.247129 0.137382
-
--0.213745 0.294195 0.0404831
--0.208124 0.231145 0.0466321
--0.213745 0.294195 -0.0404831
-
--0.208124 0.231145 -0.0466321
--0.213745 0.294195 -0.0404831
--0.208124 0.231145 0.0466321
-
--0.213745 0.294195 -0.0404831
--0.208124 0.231145 -0.0466321
--0.22472 0.309301 -0.119267
-
--0.222516 0.247129 -0.137382
--0.22472 0.309301 -0.119267
--0.208124 0.231145 -0.0466321
-
--0.22472 0.309301 -0.119267
--0.222516 0.247129 -0.137382
--0.246079 0.338698 -0.191621
-
--0.250524 0.278235 -0.220726
--0.246079 0.338698 -0.191621
--0.222516 0.247129 -0.137382
-
--0.246079 0.338698 -0.191621
--0.250524 0.278235 -0.220726
--0.27667 0.380803 -0.253645
-
--0.290638 0.322786 -0.292171
--0.27667 0.380803 -0.253645
--0.250524 0.278235 -0.220726
-
--0.27667 0.380803 -0.253645
--0.290638 0.322786 -0.292171
--0.314843 0.433345 -0.301995
-
--0.340695 0.37838 -0.347864
--0.314843 0.433345 -0.301995
--0.290638 0.322786 -0.292171
-
--0.314843 0.433345 -0.301995
--0.340695 0.37838 -0.347864
--0.358542 0.493491 -0.334064
-
--0.397997 0.44202 -0.384804
--0.358542 0.493491 -0.334064
--0.340695 0.37838 -0.347864
-
--0.358542 0.493491 -0.334064
--0.397997 0.44202 -0.384804
--0.40541 0.557999 -0.348123
-
--0.459455 0.510276 -0.401
--0.40541 0.557999 -0.348123
--0.397997 0.44202 -0.384804
-
--0.40541 0.557999 -0.348123
--0.459455 0.510276 -0.401
--0.45292 0.623391 -0.343415
-
--0.521755 0.579468 -0.395577
--0.45292 0.623391 -0.343415
--0.459455 0.510276 -0.401
-
--0.45292 0.623391 -0.343415
--0.521755 0.579468 -0.395577
--0.498511 0.686142 -0.320194
-
--0.581539 0.645865 -0.368828
--0.498511 0.686142 -0.320194
--0.521755 0.579468 -0.395577
-
--0.498511 0.686142 -0.320194
--0.581539 0.645865 -0.368828
--0.539726 0.742869 -0.279711
-
--0.635585 0.705888 -0.322196
--0.539726 0.742869 -0.279711
--0.581539 0.645865 -0.368828
-
--0.539726 0.742869 -0.279711
--0.635585 0.705888 -0.322196
--0.574343 0.790515 -0.224149
-
--0.680977 0.756302 -0.258194
--0.574343 0.790515 -0.224149
--0.635585 0.705888 -0.322196
-
--0.574343 0.790515 -0.224149
--0.680977 0.756302 -0.258194
--0.600494 0.826509 -0.156502
-
--0.71527 0.794387 -0.180273
--0.600494 0.826509 -0.156502
--0.680977 0.756302 -0.258194
-
--0.600494 0.826509 -0.156502
--0.71527 0.794387 -0.180273
--0.616771 0.848913 -0.0804188
-
--0.736614 0.818092 -0.0926336
--0.616771 0.848913 -0.0804188
--0.71527 0.794387 -0.180273
-
--0.616771 0.848913 -0.0804188
--0.736614 0.818092 -0.0926336
--0.622296 0.856517 0
-
--0.743859 0.826139 0
--0.622296 0.856517 0
--0.736614 0.818092 -0.0926336
-
--0.743859 0.826139 0
--0.857376 0.771985 0
--0.736614 0.818092 0.0926336
-
--0.848488 0.763982 0.102327
--0.736614 0.818092 0.0926336
--0.857376 0.771985 0
-
--0.736614 0.818092 0.0926336
--0.848488 0.763982 0.102327
--0.71527 0.794387 0.180273
-
--0.822302 0.740404 0.199138
--0.71527 0.794387 0.180273
--0.848488 0.763982 0.102327
-
--0.71527 0.794387 0.180273
--0.822302 0.740404 0.199138
--0.680977 0.756302 0.258194
-
--0.780231 0.702523 0.285213
--0.680977 0.756302 0.258194
--0.822302 0.740404 0.199138
-
--0.680977 0.756302 0.258194
--0.780231 0.702523 0.285213
--0.635585 0.705888 0.322196
-
--0.724542 0.65238 0.355913
--0.635585 0.705888 0.322196
--0.780231 0.702523 0.285213
-
--0.635585 0.705888 0.322196
--0.724542 0.65238 0.355913
--0.581539 0.645865 0.368828
-
--0.658237 0.59268 0.407425
--0.581539 0.645865 0.368828
--0.724542 0.65238 0.355913
-
--0.581539 0.645865 0.368828
--0.658237 0.59268 0.407425
--0.521755 0.579468 0.395577
-
--0.584892 0.526639 0.436972
--0.521755 0.579468 0.395577
--0.658237 0.59268 0.407425
-
--0.521755 0.579468 0.395577
--0.584892 0.526639 0.436972
--0.459455 0.510276 0.401
-
--0.50846 0.457819 0.442963
--0.459455 0.510276 0.401
--0.584892 0.526639 0.436972
-
--0.459455 0.510276 0.401
--0.50846 0.457819 0.442963
--0.397997 0.44202 0.384804
-
--0.433061 0.38993 0.425073
--0.397997 0.44202 0.384804
--0.50846 0.457819 0.442963
-
--0.397997 0.44202 0.384804
--0.433061 0.38993 0.425073
--0.340695 0.37838 0.347864
-
--0.362761 0.326632 0.384267
--0.340695 0.37838 0.347864
--0.433061 0.38993 0.425073
-
--0.340695 0.37838 0.347864
--0.362761 0.326632 0.384267
--0.290638 0.322786 0.292171
-
--0.301349 0.271336 0.322745
--0.290638 0.322786 0.292171
--0.362761 0.326632 0.384267
-
--0.290638 0.322786 0.292171
--0.301349 0.271336 0.322745
--0.250524 0.278235 0.220726
-
--0.252136 0.227025 0.243824
--0.250524 0.278235 0.220726
--0.301349 0.271336 0.322745
-
--0.250524 0.278235 0.220726
--0.252136 0.227025 0.243824
--0.222516 0.247129 0.137382
-
--0.217776 0.196086 0.151759
--0.222516 0.247129 0.137382
--0.252136 0.227025 0.243824
-
--0.222516 0.247129 0.137382
--0.217776 0.196086 0.151759
--0.208124 0.231145 0.0466321
-
--0.200119 0.180188 0.051512
--0.208124 0.231145 0.0466321
--0.217776 0.196086 0.151759
-
--0.208124 0.231145 0.0466321
--0.200119 0.180188 0.051512
--0.208124 0.231145 -0.0466321
-
--0.200119 0.180188 -0.051512
--0.208124 0.231145 -0.0466321
--0.200119 0.180188 0.051512
-
--0.208124 0.231145 -0.0466321
--0.200119 0.180188 -0.051512
--0.222516 0.247129 -0.137382
-
--0.217776 0.196086 -0.151759
--0.222516 0.247129 -0.137382
--0.200119 0.180188 -0.051512
-
--0.222516 0.247129 -0.137382
--0.217776 0.196086 -0.151759
--0.250524 0.278235 -0.220726
-
--0.252136 0.227025 -0.243824
--0.250524 0.278235 -0.220726
--0.217776 0.196086 -0.151759
-
--0.250524 0.278235 -0.220726
--0.252136 0.227025 -0.243824
--0.290638 0.322786 -0.292171
-
--0.301349 0.271336 -0.322745
--0.290638 0.322786 -0.292171
--0.252136 0.227025 -0.243824
-
--0.290638 0.322786 -0.292171
--0.301349 0.271336 -0.322745
--0.340695 0.37838 -0.347864
-
--0.362761 0.326632 -0.384267
--0.340695 0.37838 -0.347864
--0.301349 0.271336 -0.322745
-
--0.340695 0.37838 -0.347864
--0.362761 0.326632 -0.384267
--0.397997 0.44202 -0.384804
-
--0.433061 0.38993 -0.425073
--0.397997 0.44202 -0.384804
--0.362761 0.326632 -0.384267
-
--0.397997 0.44202 -0.384804
--0.433061 0.38993 -0.425073
--0.459455 0.510276 -0.401
-
--0.50846 0.457819 -0.442963
--0.459455 0.510276 -0.401
--0.433061 0.38993 -0.425073
-
--0.459455 0.510276 -0.401
--0.50846 0.457819 -0.442963
--0.521755 0.579468 -0.395577
-
--0.584892 0.526639 -0.436972
--0.521755 0.579468 -0.395577
--0.50846 0.457819 -0.442963
-
--0.521755 0.579468 -0.395577
--0.584892 0.526639 -0.436972
--0.581539 0.645865 -0.368828
-
--0.658237 0.59268 -0.407425
--0.581539 0.645865 -0.368828
--0.584892 0.526639 -0.436972
-
--0.581539 0.645865 -0.368828
--0.658237 0.59268 -0.407425
--0.635585 0.705888 -0.322196
-
--0.724542 0.65238 -0.355913
--0.635585 0.705888 -0.322196
--0.658237 0.59268 -0.407425
-
--0.635585 0.705888 -0.322196
--0.724542 0.65238 -0.355913
--0.680977 0.756302 -0.258194
-
--0.780231 0.702523 -0.285213
--0.680977 0.756302 -0.258194
--0.724542 0.65238 -0.355913
-
--0.680977 0.756302 -0.258194
--0.780231 0.702523 -0.285213
--0.71527 0.794387 -0.180273
-
--0.822302 0.740404 -0.199138
--0.71527 0.794387 -0.180273
--0.780231 0.702523 -0.285213
-
--0.71527 0.794387 -0.180273
--0.822302 0.740404 -0.199138
--0.736614 0.818092 -0.0926336
-
--0.848488 0.763982 -0.102327
--0.736614 0.818092 -0.0926336
--0.822302 0.740404 -0.199138
-
--0.736614 0.818092 -0.0926336
--0.848488 0.763982 -0.102327
--0.743859 0.826139 0
-
--0.857376 0.771985 0
--0.743859 0.826139 0
--0.848488 0.763982 -0.102327
-
--0.857376 0.771985 0
--0.955207 0.693998 0
--0.848488 0.763982 0.102327
-
--0.944942 0.686541 0.108551
--0.848488 0.763982 0.102327
--0.955207 0.693998 0
-
--0.848488 0.763982 0.102327
--0.944942 0.686541 0.108551
--0.822302 0.740404 0.199138
-
--0.914702 0.66457 0.21125
--0.822302 0.740404 0.199138
--0.944942 0.686541 0.108551
-
--0.822302 0.740404 0.199138
--0.914702 0.66457 0.21125
--0.780231 0.702523 0.285213
-
--0.866116 0.62927 0.302561
--0.780231 0.702523 0.285213
--0.914702 0.66457 0.21125
-
--0.780231 0.702523 0.285213
--0.866116 0.62927 0.302561
--0.724542 0.65238 0.355913
-
--0.801803 0.582544 0.37756
--0.724542 0.65238 0.355913
--0.866116 0.62927 0.302561
-
--0.724542 0.65238 0.355913
--0.801803 0.582544 0.37756
--0.658237 0.59268 0.407425
-
--0.725231 0.526911 0.432205
--0.658237 0.59268 0.407425
--0.801803 0.582544 0.37756
-
--0.658237 0.59268 0.407425
--0.725231 0.526911 0.432205
--0.584892 0.526639 0.436972
-
--0.640528 0.465371 0.46355
--0.584892 0.526639 0.436972
--0.725231 0.526911 0.432205
-
--0.584892 0.526639 0.436972
--0.640528 0.465371 0.46355
--0.50846 0.457819 0.442963
-
--0.55226 0.401241 0.469904
--0.50846 0.457819 0.442963
--0.640528 0.465371 0.46355
-
--0.50846 0.457819 0.442963
--0.55226 0.401241 0.469904
--0.433061 0.38993 0.425073
-
--0.465186 0.337977 0.450926
--0.433061 0.38993 0.425073
--0.55226 0.401241 0.469904
-
--0.433061 0.38993 0.425073
--0.465186 0.337977 0.450926
--0.362761 0.326632 0.384267
-
--0.384 0.278992 0.407639
--0.362761 0.326632 0.384267
--0.465186 0.337977 0.450926
-
--0.362761 0.326632 0.384267
--0.384 0.278992 0.407639
--0.301349 0.271336 0.322745
-
--0.313078 0.227464 0.342375
--0.301349 0.271336 0.322745
--0.384 0.278992 0.407639
-
--0.301349 0.271336 0.322745
--0.313078 0.227464 0.342375
--0.252136 0.227025 0.243824
-
--0.256244 0.186172 0.258654
--0.252136 0.227025 0.243824
--0.313078 0.227464 0.342375
-
--0.252136 0.227025 0.243824
--0.256244 0.186172 0.258654
--0.217776 0.196086 0.151759
-
--0.216563 0.157342 0.160989
--0.217776 0.196086 0.151759
--0.256244 0.186172 0.258654
-
--0.217776 0.196086 0.151759
--0.216563 0.157342 0.160989
--0.200119 0.180188 0.051512
-
--0.196172 0.142527 0.054645
--0.200119 0.180188 0.051512
--0.216563 0.157342 0.160989
-
--0.200119 0.180188 0.051512
--0.196172 0.142527 0.054645
--0.200119 0.180188 -0.051512
-
--0.196172 0.142527 -0.054645
--0.200119 0.180188 -0.051512
--0.196172 0.142527 0.054645
-
--0.200119 0.180188 -0.051512
--0.196172 0.142527 -0.054645
--0.217776 0.196086 -0.151759
-
--0.216563 0.157342 -0.160989
--0.217776 0.196086 -0.151759
--0.196172 0.142527 -0.054645
-
--0.217776 0.196086 -0.151759
--0.216563 0.157342 -0.160989
--0.252136 0.227025 -0.243824
-
--0.256244 0.186172 -0.258654
--0.252136 0.227025 -0.243824
--0.216563 0.157342 -0.160989
-
--0.252136 0.227025 -0.243824
--0.256244 0.186172 -0.258654
--0.301349 0.271336 -0.322745
-
--0.313078 0.227464 -0.342375
--0.301349 0.271336 -0.322745
--0.256244 0.186172 -0.258654
-
--0.301349 0.271336 -0.322745
--0.313078 0.227464 -0.342375
--0.362761 0.326632 -0.384267
-
--0.384 0.278992 -0.407639
--0.362761 0.326632 -0.384267
--0.313078 0.227464 -0.342375
-
--0.362761 0.326632 -0.384267
--0.384 0.278992 -0.407639
--0.433061 0.38993 -0.425073
-
--0.465186 0.337977 -0.450926
--0.433061 0.38993 -0.425073
--0.384 0.278992 -0.407639
-
--0.433061 0.38993 -0.425073
--0.465186 0.337977 -0.450926
--0.50846 0.457819 -0.442963
-
--0.55226 0.401241 -0.469904
--0.50846 0.457819 -0.442963
--0.465186 0.337977 -0.450926
-
--0.50846 0.457819 -0.442963
--0.55226 0.401241 -0.469904
--0.584892 0.526639 -0.436972
-
--0.640528 0.465371 -0.46355
--0.584892 0.526639 -0.436972
--0.55226 0.401241 -0.469904
-
--0.584892 0.526639 -0.436972
--0.640528 0.465371 -0.46355
--0.658237 0.59268 -0.407425
-
--0.725231 0.526911 -0.432205
--0.658237 0.59268 -0.407425
--0.640528 0.465371 -0.46355
-
--0.658237 0.59268 -0.407425
--0.725231 0.526911 -0.432205
--0.724542 0.65238 -0.355913
-
--0.801803 0.582544 -0.37756
--0.724542 0.65238 -0.355913
--0.725231 0.526911 -0.432205
-
--0.724542 0.65238 -0.355913
--0.801803 0.582544 -0.37756
--0.780231 0.702523 -0.285213
-
--0.866116 0.62927 -0.302561
--0.780231 0.702523 -0.285213
--0.801803 0.582544 -0.37756
-
--0.780231 0.702523 -0.285213
--0.866116 0.62927 -0.302561
--0.822302 0.740404 -0.199138
-
--0.914702 0.66457 -0.21125
--0.822302 0.740404 -0.199138
--0.866116 0.62927 -0.302561
-
--0.822302 0.740404 -0.199138
--0.914702 0.66457 -0.21125
--0.848488 0.763982 -0.102327
-
--0.944942 0.686541 -0.108551
--0.848488 0.763982 -0.102327
--0.914702 0.66457 -0.21125
-
--0.848488 0.763982 -0.102327
--0.944942 0.686541 -0.108551
--0.857376 0.771985 0
-
--0.955207 0.693998 0
--0.857376 0.771985 0
--0.944942 0.686541 -0.108551
-
--0.955207 0.693998 0
--1.03057 0.595 0
--0.944942 0.686541 0.108551
-
--1.01937 0.588531 0.110696
--0.944942 0.686541 0.108551
--1.03057 0.595 0
-
--0.944942 0.686541 0.108551
--1.01937 0.588531 0.110696
--0.914702 0.66457 0.21125
-
--0.986354 0.569472 0.215424
--0.914702 0.66457 0.21125
--1.01937 0.588531 0.110696
-
--0.914702 0.66457 0.21125
--0.986354 0.569472 0.215424
--0.866116 0.62927 0.302561
-
--0.933317 0.538851 0.308538
--0.866116 0.62927 0.302561
--0.986354 0.569472 0.215424
-
--0.866116 0.62927 0.302561
--0.933317 0.538851 0.308538
--0.801803 0.582544 0.37756
-
--0.863112 0.498318 0.385019
--0.801803 0.582544 0.37756
--0.933317 0.538851 0.308538
-
--0.801803 0.582544 0.37756
--0.863112 0.498318 0.385019
--0.725231 0.526911 0.432205
-
--0.779525 0.450059 0.440744
--0.725231 0.526911 0.432205
--0.863112 0.498318 0.385019
-
--0.725231 0.526911 0.432205
--0.779525 0.450059 0.440744
--0.640528 0.465371 0.46355
-
--0.687062 0.396676 0.472708
--0.640528 0.465371 0.46355
--0.779525 0.450059 0.440744
-
--0.640528 0.465371 0.46355
--0.687062 0.396676 0.472708
--0.55226 0.401241 0.469904
-
--0.590708 0.341045 0.479188
--0.55226 0.401241 0.469904
--0.687062 0.396676 0.472708
-
--0.55226 0.401241 0.469904
--0.590708 0.341045 0.479188
--0.465186 0.337977 0.450926
-
--0.495656 0.286167 0.459835
--0.465186 0.337977 0.450926
--0.590708 0.341045 0.479188
-
--0.465186 0.337977 0.450926
--0.495656 0.286167 0.459835
--0.384 0.278992 0.407639
-
--0.407032 0.235 0.415692
--0.384 0.278992 0.407639
--0.495656 0.286167 0.459835
-
--0.384 0.278992 0.407639
--0.407032 0.235 0.415692
--0.313078 0.227464 0.342375
-
--0.329613 0.190302 0.349139
--0.313078 0.227464 0.342375
--0.407032 0.235 0.415692
-
--0.313078 0.227464 0.342375
--0.329613 0.190302 0.349139
--0.256244 0.186172 0.258654
-
--0.267572 0.154483 0.263764
--0.256244 0.186172 0.258654
--0.329613 0.190302 0.349139
-
--0.256244 0.186172 0.258654
--0.267572 0.154483 0.263764
--0.216563 0.157342 0.160989
-
--0.224255 0.129474 0.16417
--0.216563 0.157342 0.160989
--0.267572 0.154483 0.263764
-
--0.216563 0.157342 0.160989
--0.224255 0.129474 0.16417
--0.196172 0.142527 0.054645
-
--0.201997 0.116623 0.0557246
--0.196172 0.142527 0.054645
--0.224255 0.129474 0.16417
-
--0.196172 0.142527 0.054645
--0.201997 0.116623 0.0557246
--0.196172 0.142527 -0.054645
-
--0.201997 0.116623 -0.0557246
--0.196172 0.142527 -0.054645
--0.201997 0.116623 0.0557246
-
--0.196172 0.142527 -0.054645
--0.201997 0.116623 -0.0557246
--0.216563 0.157342 -0.160989
-
--0.224255 0.129474 -0.16417
--0.216563 0.157342 -0.160989
--0.201997 0.116623 -0.0557246
-
--0.216563 0.157342 -0.160989
--0.224255 0.129474 -0.16417
--0.256244 0.186172 -0.258654
-
--0.267572 0.154483 -0.263764
--0.256244 0.186172 -0.258654
--0.224255 0.129474 -0.16417
-
--0.256244 0.186172 -0.258654
--0.267572 0.154483 -0.263764
--0.313078 0.227464 -0.342375
-
--0.329613 0.190302 -0.349139
--0.313078 0.227464 -0.342375
--0.267572 0.154483 -0.263764
-
--0.313078 0.227464 -0.342375
--0.329613 0.190302 -0.349139
--0.384 0.278992 -0.407639
-
--0.407032 0.235 -0.415692
--0.384 0.278992 -0.407639
--0.329613 0.190302 -0.349139
-
--0.384 0.278992 -0.407639
--0.407032 0.235 -0.415692
--0.465186 0.337977 -0.450926
-
--0.495656 0.286167 -0.459835
--0.465186 0.337977 -0.450926
--0.407032 0.235 -0.415692
-
--0.465186 0.337977 -0.450926
--0.495656 0.286167 -0.459835
--0.55226 0.401241 -0.469904
-
--0.590708 0.341045 -0.479188
--0.55226 0.401241 -0.469904
--0.495656 0.286167 -0.459835
-
--0.55226 0.401241 -0.469904
--0.590708 0.341045 -0.479188
--0.640528 0.465371 -0.46355
-
--0.687062 0.396676 -0.472708
--0.640528 0.465371 -0.46355
--0.590708 0.341045 -0.479188
-
--0.640528 0.465371 -0.46355
--0.687062 0.396676 -0.472708
--0.725231 0.526911 -0.432205
-
--0.779525 0.450059 -0.440744
--0.725231 0.526911 -0.432205
--0.687062 0.396676 -0.472708
-
--0.725231 0.526911 -0.432205
--0.779525 0.450059 -0.440744
--0.801803 0.582544 -0.37756
-
--0.863112 0.498318 -0.385019
--0.801803 0.582544 -0.37756
--0.779525 0.450059 -0.440744
-
--0.801803 0.582544 -0.37756
--0.863112 0.498318 -0.385019
--0.866116 0.62927 -0.302561
-
--0.933317 0.538851 -0.308538
--0.866116 0.62927 -0.302561
--0.863112 0.498318 -0.385019
-
--0.866116 0.62927 -0.302561
--0.933317 0.538851 -0.308538
--0.914702 0.66457 -0.21125
-
--0.986354 0.569472 -0.215424
--0.914702 0.66457 -0.21125
--0.933317 0.538851 -0.308538
-
--0.914702 0.66457 -0.21125
--0.986354 0.569472 -0.215424
--0.944942 0.686541 -0.108551
-
--1.01937 0.588531 -0.110696
--0.944942 0.686541 -0.108551
--0.986354 0.569472 -0.215424
-
--0.944942 0.686541 -0.108551
--1.01937 0.588531 -0.110696
--0.955207 0.693998 0
-
--1.03057 0.595 0
--0.955207 0.693998 0
--1.01937 0.588531 -0.110696
-
--1.03057 0.595 0
--1.07862 0.480234 0
--1.01937 0.588531 0.110696
-
--1.06703 0.475074 0.108551
--1.01937 0.588531 0.110696
--1.07862 0.480234 0
-
--1.01937 0.588531 0.110696
--1.06703 0.475074 0.108551
--0.986354 0.569472 0.215424
-
--1.03289 0.45987 0.21125
--0.986354 0.569472 0.215424
--1.06703 0.475074 0.108551
-
--0.986354 0.569472 0.215424
--1.03289 0.45987 0.21125
--0.933317 0.538851 0.308538
-
--0.978021 0.435443 0.302561
--0.933317 0.538851 0.308538
--1.03289 0.45987 0.21125
-
--0.933317 0.538851 0.308538
--0.978021 0.435443 0.302561
--0.863112 0.498318 0.385019
-
--0.905399 0.40311 0.37756
--0.863112 0.498318 0.385019
--0.978021 0.435443 0.302561
-
--0.863112 0.498318 0.385019
--0.905399 0.40311 0.37756
--0.779525 0.450059 0.440744
-
--0.818934 0.364613 0.432205
--0.779525 0.450059 0.440744
--0.905399 0.40311 0.37756
-
--0.779525 0.450059 0.440744
--0.818934 0.364613 0.432205
--0.687062 0.396676 0.472708
-
--0.723287 0.322028 0.46355
--0.687062 0.396676 0.472708
--0.818934 0.364613 0.432205
-
--0.687062 0.396676 0.472708
--0.723287 0.322028 0.46355
--0.590708 0.341045 0.479188
-
--0.623615 0.277651 0.469904
--0.590708 0.341045 0.479188
--0.723287 0.322028 0.46355
-
--0.590708 0.341045 0.479188
--0.623615 0.277651 0.469904
--0.495656 0.286167 0.459835
-
--0.52529 0.233874 0.450926
--0.495656 0.286167 0.459835
--0.623615 0.277651 0.469904
-
--0.495656 0.286167 0.459835
--0.52529 0.233874 0.450926
--0.407032 0.235 0.415692
-
--0.433614 0.193057 0.407639
--0.407032 0.235 0.415692
--0.52529 0.233874 0.450926
-
--0.407032 0.235 0.415692
--0.433614 0.193057 0.407639
--0.329613 0.190302 0.349139
-
--0.353529 0.157401 0.342375
--0.329613 0.190302 0.349139
--0.433614 0.193057 0.407639
-
--0.329613 0.190302 0.349139
--0.353529 0.157401 0.342375
--0.267572 0.154483 0.263764
-
--0.289352 0.128828 0.258654
--0.267572 0.154483 0.263764
--0.353529 0.157401 0.342375
-
--0.267572 0.154483 0.263764
--0.289352 0.128828 0.258654
--0.224255 0.129474 0.16417
-
--0.244543 0.108878 0.160989
--0.224255 0.129474 0.16417
--0.289352 0.128828 0.258654
-
--0.224255 0.129474 0.16417
--0.244543 0.108878 0.160989
--0.201997 0.116623 0.0557246
-
--0.221518 0.0986263 0.054645
--0.201997 0.116623 0.0557246
--0.244543 0.108878 0.160989
-
--0.201997 0.116623 0.0557246
--0.221518 0.0986263 0.054645
--0.201997 0.116623 -0.0557246
-
--0.221518 0.0986263 -0.054645
--0.201997 0.116623 -0.0557246
--0.221518 0.0986263 0.054645
-
--0.201997 0.116623 -0.0557246
--0.221518 0.0986263 -0.054645
--0.224255 0.129474 -0.16417
-
--0.244543 0.108878 -0.160989
--0.224255 0.129474 -0.16417
--0.221518 0.0986263 -0.054645
-
--0.224255 0.129474 -0.16417
--0.244543 0.108878 -0.160989
--0.267572 0.154483 -0.263764
-
--0.289352 0.128828 -0.258654
--0.267572 0.154483 -0.263764
--0.244543 0.108878 -0.160989
-
--0.267572 0.154483 -0.263764
--0.289352 0.128828 -0.258654
--0.329613 0.190302 -0.349139
-
--0.353529 0.157401 -0.342375
--0.329613 0.190302 -0.349139
--0.289352 0.128828 -0.258654
-
--0.329613 0.190302 -0.349139
--0.353529 0.157401 -0.342375
--0.407032 0.235 -0.415692
-
--0.433614 0.193057 -0.407639
--0.407032 0.235 -0.415692
--0.353529 0.157401 -0.342375
-
--0.407032 0.235 -0.415692
--0.433614 0.193057 -0.407639
--0.495656 0.286167 -0.459835
-
--0.52529 0.233874 -0.450926
--0.495656 0.286167 -0.459835
--0.433614 0.193057 -0.407639
-
--0.495656 0.286167 -0.459835
--0.52529 0.233874 -0.450926
--0.590708 0.341045 -0.479188
-
--0.623615 0.277651 -0.469904
--0.590708 0.341045 -0.479188
--0.52529 0.233874 -0.450926
-
--0.590708 0.341045 -0.479188
--0.623615 0.277651 -0.469904
--0.687062 0.396676 -0.472708
-
--0.723287 0.322028 -0.46355
--0.687062 0.396676 -0.472708
--0.623615 0.277651 -0.469904
-
--0.687062 0.396676 -0.472708
--0.723287 0.322028 -0.46355
--0.779525 0.450059 -0.440744
-
--0.818934 0.364613 -0.432205
--0.779525 0.450059 -0.440744
--0.723287 0.322028 -0.46355
-
--0.779525 0.450059 -0.440744
--0.818934 0.364613 -0.432205
--0.863112 0.498318 -0.385019
-
--0.905399 0.40311 -0.37756
--0.863112 0.498318 -0.385019
--0.818934 0.364613 -0.432205
-
--0.863112 0.498318 -0.385019
--0.905399 0.40311 -0.37756
--0.933317 0.538851 -0.308538
-
--0.978021 0.435443 -0.302561
--0.933317 0.538851 -0.308538
--0.905399 0.40311 -0.37756
-
--0.933317 0.538851 -0.308538
--0.978021 0.435443 -0.302561
--0.986354 0.569472 -0.215424
-
--1.03289 0.45987 -0.21125
--0.986354 0.569472 -0.215424
--0.978021 0.435443 -0.302561
-
--0.986354 0.569472 -0.215424
--1.03289 0.45987 -0.21125
--1.01937 0.588531 -0.110696
-
--1.06703 0.475074 -0.108551
--1.01937 0.588531 -0.110696
--1.03289 0.45987 -0.21125
-
--1.01937 0.588531 -0.110696
--1.06703 0.475074 -0.108551
--1.03057 0.595 0
-
--1.07862 0.480234 0
--1.03057 0.595 0
--1.06703 0.475074 -0.108551
-
--1.07862 0.480234 0
--1.09725 0.356517 0
--1.06703 0.475074 0.108551
-
--1.08587 0.352821 0.102327
--1.06703 0.475074 0.108551
--1.09725 0.356517 0
-
--1.06703 0.475074 0.108551
--1.08587 0.352821 0.102327
--1.03289 0.45987 0.21125
-
--1.05236 0.341932 0.199138
--1.03289 0.45987 0.21125
--1.08587 0.352821 0.102327
-
--1.03289 0.45987 0.21125
--1.05236 0.341932 0.199138
--0.978021 0.435443 0.302561
-
--0.998518 0.324438 0.285213
--0.978021 0.435443 0.302561
--1.05236 0.341932 0.199138
-
--0.978021 0.435443 0.302561
--0.998518 0.324438 0.285213
--0.905399 0.40311 0.37756
-
--0.927249 0.301281 0.355913
--0.905399 0.40311 0.37756
--0.998518 0.324438 0.285213
-
--0.905399 0.40311 0.37756
--0.927249 0.301281 0.355913
--0.818934 0.364613 0.432205
-
--0.842394 0.273711 0.407425
--0.818934 0.364613 0.432205
--0.927249 0.301281 0.355913
-
--0.818934 0.364613 0.432205
--0.842394 0.273711 0.407425
--0.723287 0.322028 0.46355
-
--0.748529 0.243212 0.436972
--0.723287 0.322028 0.46355
--0.842394 0.273711 0.407425
-
--0.723287 0.322028 0.46355
--0.748529 0.243212 0.436972
--0.623615 0.277651 0.469904
-
--0.650713 0.21143 0.442963
--0.623615 0.277651 0.469904
--0.748529 0.243212 0.436972
-
--0.623615 0.277651 0.469904
--0.650713 0.21143 0.442963
--0.52529 0.233874 0.450926
-
--0.55422 0.180077 0.425073
--0.52529 0.233874 0.450926
--0.650713 0.21143 0.442963
-
--0.52529 0.233874 0.450926
--0.55422 0.180077 0.425073
--0.433614 0.193057 0.407639
-
--0.464252 0.150845 0.384267
--0.433614 0.193057 0.407639
--0.55422 0.180077 0.425073
-
--0.433614 0.193057 0.407639
--0.464252 0.150845 0.384267
--0.353529 0.157401 0.342375
-
--0.385659 0.125308 0.322745
--0.353529 0.157401 0.342375
--0.464252 0.150845 0.384267
-
--0.353529 0.157401 0.342375
--0.385659 0.125308 0.322745
--0.289352 0.128828 0.258654
-
--0.322677 0.104844 0.243824
--0.289352 0.128828 0.258654
--0.385659 0.125308 0.322745
-
--0.289352 0.128828 0.258654
--0.322677 0.104844 0.243824
--0.244543 0.108878 0.160989
-
--0.278703 0.0905562 0.151759
--0.244543 0.108878 0.160989
--0.322677 0.104844 0.243824
-
--0.244543 0.108878 0.160989
--0.278703 0.0905562 0.151759
--0.221518 0.0986263 0.054645
-
--0.256107 0.0832143 0.051512
--0.221518 0.0986263 0.054645
--0.278703 0.0905562 0.151759
-
--0.221518 0.0986263 0.054645
--0.256107 0.0832143 0.051512
--0.221518 0.0986263 -0.054645
-
--0.256107 0.0832143 -0.051512
--0.221518 0.0986263 -0.054645
--0.256107 0.0832143 0.051512
-
--0.221518 0.0986263 -0.054645
--0.256107 0.0832143 -0.051512
--0.244543 0.108878 -0.160989
-
--0.278703 0.0905562 -0.151759
--0.244543 0.108878 -0.160989
--0.256107 0.0832143 -0.051512
-
--0.244543 0.108878 -0.160989
--0.278703 0.0905562 -0.151759
--0.289352 0.128828 -0.258654
-
--0.322677 0.104844 -0.243824
--0.289352 0.128828 -0.258654
--0.278703 0.0905562 -0.151759
-
--0.289352 0.128828 -0.258654
--0.322677 0.104844 -0.243824
--0.353529 0.157401 -0.342375
-
--0.385659 0.125308 -0.322745
--0.353529 0.157401 -0.342375
--0.322677 0.104844 -0.243824
-
--0.353529 0.157401 -0.342375
--0.385659 0.125308 -0.322745
--0.433614 0.193057 -0.407639
-
--0.464252 0.150845 -0.384267
--0.433614 0.193057 -0.407639
--0.385659 0.125308 -0.322745
-
--0.433614 0.193057 -0.407639
--0.464252 0.150845 -0.384267
--0.52529 0.233874 -0.450926
-
--0.55422 0.180077 -0.425073
--0.52529 0.233874 -0.450926
--0.464252 0.150845 -0.384267
-
--0.52529 0.233874 -0.450926
--0.55422 0.180077 -0.425073
--0.623615 0.277651 -0.469904
-
--0.650713 0.21143 -0.442963
--0.623615 0.277651 -0.469904
--0.55422 0.180077 -0.425073
-
--0.623615 0.277651 -0.469904
--0.650713 0.21143 -0.442963
--0.723287 0.322028 -0.46355
-
--0.748529 0.243212 -0.436972
--0.723287 0.322028 -0.46355
--0.650713 0.21143 -0.442963
-
--0.723287 0.322028 -0.46355
--0.748529 0.243212 -0.436972
--0.818934 0.364613 -0.432205
-
--0.842394 0.273711 -0.407425
--0.818934 0.364613 -0.432205
--0.748529 0.243212 -0.436972
-
--0.818934 0.364613 -0.432205
--0.842394 0.273711 -0.407425
--0.905399 0.40311 -0.37756
-
--0.927249 0.301281 -0.355913
--0.905399 0.40311 -0.37756
--0.842394 0.273711 -0.407425
-
--0.905399 0.40311 -0.37756
--0.927249 0.301281 -0.355913
--0.978021 0.435443 -0.302561
-
--0.998518 0.324438 -0.285213
--0.978021 0.435443 -0.302561
--0.927249 0.301281 -0.355913
-
--0.978021 0.435443 -0.302561
--0.998518 0.324438 -0.285213
--1.03289 0.45987 -0.21125
-
--1.05236 0.341932 -0.199138
--1.03289 0.45987 -0.21125
--0.998518 0.324438 -0.285213
-
--1.03289 0.45987 -0.21125
--1.05236 0.341932 -0.199138
--1.06703 0.475074 -0.108551
-
--1.08587 0.352821 -0.102327
--1.06703 0.475074 -0.108551
--1.05236 0.341932 -0.199138
-
--1.06703 0.475074 -0.108551
--1.08587 0.352821 -0.102327
--1.07862 0.480234 0
-
--1.09725 0.356517 0
--1.07862 0.480234 0
--1.08587 0.352821 -0.102327
-
--1.09725 0.356517 0
--1.08739 0.231131 0
--1.08587 0.352821 0.102327
-
--1.0768 0.22888 0.0926336
--1.08587 0.352821 0.102327
--1.08739 0.231131 0
-
--1.08587 0.352821 0.102327
--1.0768 0.22888 0.0926336
--1.05236 0.341932 0.199138
-
--1.04559 0.222248 0.180273
--1.05236 0.341932 0.199138
--1.0768 0.22888 0.0926336
-
--1.05236 0.341932 0.199138
--1.04559 0.222248 0.180273
--0.998518 0.324438 0.285213
-
--0.995465 0.211593 0.258194
--0.998518 0.324438 0.285213
--1.04559 0.222248 0.180273
-
--0.998518 0.324438 0.285213
--0.995465 0.211593 0.258194
--0.927249 0.301281 0.355913
-
--0.929109 0.197488 0.322196
--0.927249 0.301281 0.355913
--0.995465 0.211593 0.258194
-
--0.927249 0.301281 0.355913
--0.929109 0.197488 0.322196
--0.842394 0.273711 0.407425
-
--0.850105 0.180695 0.368828
--0.842394 0.273711 0.407425
--0.929109 0.197488 0.322196
-
--0.842394 0.273711 0.407425
--0.850105 0.180695 0.368828
--0.748529 0.243212 0.436972
-
--0.762711 0.162119 0.395577
--0.748529 0.243212 0.436972
--0.850105 0.180695 0.368828
-
--0.748529 0.243212 0.436972
--0.762711 0.162119 0.395577
--0.650713 0.21143 0.442963
-
--0.67164 0.142761 0.401
--0.650713 0.21143 0.442963
--0.762711 0.162119 0.395577
-
--0.650713 0.21143 0.442963
--0.67164 0.142761 0.401
--0.55422 0.180077 0.425073
-
--0.581799 0.123665 0.384804
--0.55422 0.180077 0.425073
--0.67164 0.142761 0.401
-
--0.55422 0.180077 0.425073
--0.581799 0.123665 0.384804
--0.464252 0.150845 0.384267
-
--0.498034 0.10586 0.347864
--0.464252 0.150845 0.384267
--0.581799 0.123665 0.384804
-
--0.464252 0.150845 0.384267
--0.498034 0.10586 0.347864
--0.385659 0.125308 0.322745
-
--0.424859 0.0903067 0.292171
--0.385659 0.125308 0.322745
--0.498034 0.10586 0.347864
-
--0.385659 0.125308 0.322745
--0.424859 0.0903067 0.292171
--0.322677 0.104844 0.243824
-
--0.36622 0.0778425 0.220726
--0.322677 0.104844 0.243824
--0.424859 0.0903067 0.292171
-
--0.322677 0.104844 0.243824
--0.36622 0.0778425 0.220726
--0.278703 0.0905562 0.151759
-
--0.325278 0.06914 0.137382
--0.278703 0.0905562 0.151759
--0.36622 0.0778425 0.220726
-
--0.278703 0.0905562 0.151759
--0.325278 0.06914 0.137382
--0.256107 0.0832143 0.051512
-
--0.30424 0.0646682 0.0466321
--0.256107 0.0832143 0.051512
--0.325278 0.06914 0.137382
-
--0.256107 0.0832143 0.051512
--0.30424 0.0646682 0.0466321
--0.256107 0.0832143 -0.051512
-
--0.30424 0.0646682 -0.0466321
--0.256107 0.0832143 -0.051512
--0.30424 0.0646682 0.0466321
-
--0.256107 0.0832143 -0.051512
--0.30424 0.0646682 -0.0466321
--0.278703 0.0905562 -0.151759
-
--0.325278 0.06914 -0.137382
--0.278703 0.0905562 -0.151759
--0.30424 0.0646682 -0.0466321
-
--0.278703 0.0905562 -0.151759
--0.325278 0.06914 -0.137382
--0.322677 0.104844 -0.243824
-
--0.36622 0.0778425 -0.220726
--0.322677 0.104844 -0.243824
--0.325278 0.06914 -0.137382
-
--0.322677 0.104844 -0.243824
--0.36622 0.0778425 -0.220726
--0.385659 0.125308 -0.322745
-
--0.424859 0.0903067 -0.292171
--0.385659 0.125308 -0.322745
--0.36622 0.0778425 -0.220726
-
--0.385659 0.125308 -0.322745
--0.424859 0.0903067 -0.292171
--0.464252 0.150845 -0.384267
-
--0.498034 0.10586 -0.347864
--0.464252 0.150845 -0.384267
--0.424859 0.0903067 -0.292171
-
--0.464252 0.150845 -0.384267
--0.498034 0.10586 -0.347864
--0.55422 0.180077 -0.425073
-
--0.581799 0.123665 -0.384804
--0.55422 0.180077 -0.425073
--0.498034 0.10586 -0.347864
-
--0.55422 0.180077 -0.425073
--0.581799 0.123665 -0.384804
--0.650713 0.21143 -0.442963
-
--0.67164 0.142761 -0.401
--0.650713 0.21143 -0.442963
--0.581799 0.123665 -0.384804
-
--0.650713 0.21143 -0.442963
--0.67164 0.142761 -0.401
--0.748529 0.243212 -0.436972
-
--0.762711 0.162119 -0.395577
--0.748529 0.243212 -0.436972
--0.67164 0.142761 -0.401
-
--0.748529 0.243212 -0.436972
--0.762711 0.162119 -0.395577
--0.842394 0.273711 -0.407425
-
--0.850105 0.180695 -0.368828
--0.842394 0.273711 -0.407425
--0.762711 0.162119 -0.395577
-
--0.842394 0.273711 -0.407425
--0.850105 0.180695 -0.368828
--0.927249 0.301281 -0.355913
-
--0.929109 0.197488 -0.322196
--0.927249 0.301281 -0.355913
--0.850105 0.180695 -0.368828
-
--0.927249 0.301281 -0.355913
--0.929109 0.197488 -0.322196
--0.998518 0.324438 -0.285213
-
--0.995465 0.211593 -0.258194
--0.998518 0.324438 -0.285213
--0.929109 0.197488 -0.322196
-
--0.998518 0.324438 -0.285213
--0.995465 0.211593 -0.258194
--1.05236 0.341932 -0.199138
-
--1.04559 0.222248 -0.180273
--1.05236 0.341932 -0.199138
--0.995465 0.211593 -0.258194
-
--1.05236 0.341932 -0.199138
--1.04559 0.222248 -0.180273
--1.08587 0.352821 -0.102327
-
--1.0768 0.22888 -0.0926336
--1.08587 0.352821 -0.102327
--1.04559 0.222248 -0.180273
-
--1.08587 0.352821 -0.102327
--1.0768 0.22888 -0.0926336
--1.09725 0.356517 0
-
--1.08739 0.231131 0
--1.09725 0.356517 0
--1.0768 0.22888 -0.0926336
-
--1.08739 0.231131 0
--1.05291 0.110666 0
--1.0768 0.22888 0.0926336
-
--1.04357 0.109683 0.0804188
--1.0768 0.22888 0.0926336
--1.05291 0.110666 0
-
--1.0768 0.22888 0.0926336
--1.04357 0.109683 0.0804188
--1.04559 0.222248 0.180273
-
--1.01602 0.106789 0.156502
--1.04559 0.222248 0.180273
--1.04357 0.109683 0.0804188
-
--1.04559 0.222248 0.180273
--1.01602 0.106789 0.156502
--0.995465 0.211593 0.258194
-
--0.971777 0.102138 0.224149
--0.995465 0.211593 0.258194
--1.01602 0.106789 0.156502
-
--0.995465 0.211593 0.258194
--0.971777 0.102138 0.224149
--0.929109 0.197488 0.322196
-
--0.913207 0.0959819 0.279711
--0.929109 0.197488 0.322196
--0.971777 0.102138 0.224149
-
--0.929109 0.197488 0.322196
--0.913207 0.0959819 0.279711
--0.850105 0.180695 0.368828
-
--0.843472 0.0886525 0.320194
--0.850105 0.180695 0.368828
--0.913207 0.0959819 0.279711
-
--0.850105 0.180695 0.368828
--0.843472 0.0886525 0.320194
--0.762711 0.162119 0.395577
-
--0.766332 0.0805448 0.343415
--0.762711 0.162119 0.395577
--0.843472 0.0886525 0.320194
-
--0.762711 0.162119 0.395577
--0.766332 0.0805448 0.343415
--0.67164 0.142761 0.401
-
--0.685946 0.0720958 0.348123
--0.67164 0.142761 0.401
--0.766332 0.0805448 0.343415
-
--0.67164 0.142761 0.401
--0.685946 0.0720958 0.348123
--0.581799 0.123665 0.384804
-
--0.606646 0.0637611 0.334064
--0.581799 0.123665 0.384804
--0.685946 0.0720958 0.348123
-
--0.581799 0.123665 0.384804
--0.606646 0.0637611 0.334064
--0.498034 0.10586 0.347864
-
--0.532709 0.05599 0.301995
--0.498034 0.10586 0.347864
--0.606646 0.0637611 0.334064
-
--0.498034 0.10586 0.347864
--0.532709 0.05599 0.301995
--0.424859 0.0903067 0.292171
-
--0.46812 0.0492014 0.253645
--0.424859 0.0903067 0.292171
--0.532709 0.05599 0.301995
-
--0.424859 0.0903067 0.292171
--0.46812 0.0492014 0.253645
--0.36622 0.0778425 0.220726
-
--0.416361 0.0437613 0.191621
--0.36622 0.0778425 0.220726
--0.46812 0.0492014 0.253645
-
--0.36622 0.0778425 0.220726
--0.416361 0.0437613 0.191621
--0.325278 0.06914 0.137382
-
--0.380222 0.039963 0.119267
--0.325278 0.06914 0.137382
--0.416361 0.0437613 0.191621
-
--0.325278 0.06914 0.137382
--0.380222 0.039963 0.119267
--0.30424 0.0646682 0.0466321
-
--0.361653 0.0380112 0.0404831
--0.30424 0.0646682 0.0466321
--0.380222 0.039963 0.119267
-
--0.30424 0.0646682 0.0466321
--0.361653 0.0380112 0.0404831
--0.30424 0.0646682 -0.0466321
-
--0.361653 0.0380112 -0.0404831
--0.30424 0.0646682 -0.0466321
--0.361653 0.0380112 0.0404831
-
--0.30424 0.0646682 -0.0466321
--0.361653 0.0380112 -0.0404831
--0.325278 0.06914 -0.137382
-
--0.380222 0.039963 -0.119267
--0.325278 0.06914 -0.137382
--0.361653 0.0380112 -0.0404831
-
--0.325278 0.06914 -0.137382
--0.380222 0.039963 -0.119267
--0.36622 0.0778425 -0.220726
-
--0.416361 0.0437613 -0.191621
--0.36622 0.0778425 -0.220726
--0.380222 0.039963 -0.119267
-
--0.36622 0.0778425 -0.220726
--0.416361 0.0437613 -0.191621
--0.424859 0.0903067 -0.292171
-
--0.46812 0.0492014 -0.253645
--0.424859 0.0903067 -0.292171
--0.416361 0.0437613 -0.191621
-
--0.424859 0.0903067 -0.292171
--0.46812 0.0492014 -0.253645
--0.498034 0.10586 -0.347864
-
--0.532709 0.05599 -0.301995
--0.498034 0.10586 -0.347864
--0.46812 0.0492014 -0.253645
-
--0.498034 0.10586 -0.347864
--0.532709 0.05599 -0.301995
--0.581799 0.123665 -0.384804
-
--0.606646 0.0637611 -0.334064
--0.581799 0.123665 -0.384804
--0.532709 0.05599 -0.301995
-
--0.581799 0.123665 -0.384804
--0.606646 0.0637611 -0.334064
--0.67164 0.142761 -0.401
-
--0.685946 0.0720958 -0.348123
--0.67164 0.142761 -0.401
--0.606646 0.0637611 -0.334064
-
--0.67164 0.142761 -0.401
--0.685946 0.0720958 -0.348123
--0.762711 0.162119 -0.395577
-
--0.766332 0.0805448 -0.343415
--0.762711 0.162119 -0.395577
--0.685946 0.0720958 -0.348123
-
--0.762711 0.162119 -0.395577
--0.766332 0.0805448 -0.343415
--0.850105 0.180695 -0.368828
-
--0.843472 0.0886525 -0.320194
--0.850105 0.180695 -0.368828
--0.766332 0.0805448 -0.343415
-
--0.850105 0.180695 -0.368828
--0.843472 0.0886525 -0.320194
--0.929109 0.197488 -0.322196
-
--0.913207 0.0959819 -0.279711
--0.929109 0.197488 -0.322196
--0.843472 0.0886525 -0.320194
-
--0.929109 0.197488 -0.322196
--0.913207 0.0959819 -0.279711
--0.995465 0.211593 -0.258194
-
--0.971777 0.102138 -0.224149
--0.995465 0.211593 -0.258194
--0.913207 0.0959819 -0.279711
-
--0.995465 0.211593 -0.258194
--0.971777 0.102138 -0.224149
--1.04559 0.222248 -0.180273
-
--1.01602 0.106789 -0.156502
--1.04559 0.222248 -0.180273
--0.971777 0.102138 -0.224149
-
--1.04559 0.222248 -0.180273
--1.01602 0.106789 -0.156502
--1.0768 0.22888 -0.0926336
-
--1.04357 0.109683 -0.0804188
--1.0768 0.22888 -0.0926336
--1.01602 0.106789 -0.156502
-
--1.0768 0.22888 -0.0926336
--1.04357 0.109683 -0.0804188
--1.08739 0.231131 0
-
--1.05291 0.110666 0
--1.08739 0.231131 0
--1.04357 0.109683 -0.0804188
-
--1.05291 0.110666 0
--1 4.44089e-16 0
--1.04357 0.109683 0.0804188
-
--0.992183 4.40618e-16 0.0668786
--1.04357 0.109683 0.0804188
--1 4.44089e-16 0
-
--1.04357 0.109683 0.0804188
--0.992183 4.40618e-16 0.0668786
--1.01602 0.106789 0.156502
-
--0.969153 4.30391e-16 0.130152
--1.01602 0.106789 0.156502
--0.992183 4.40618e-16 0.0668786
-
--1.01602 0.106789 0.156502
--0.969153 4.30391e-16 0.130152
--0.971777 0.102138 0.224149
-
--0.932153 4.13959e-16 0.186408
--0.971777 0.102138 0.224149
--0.969153 4.30391e-16 0.130152
-
--0.971777 0.102138 0.224149
--0.932153 4.13959e-16 0.186408
--0.913207 0.0959819 0.279711
-
--0.883176 3.92209e-16 0.232616
--0.913207 0.0959819 0.279711
--0.932153 4.13959e-16 0.186408
-
--0.913207 0.0959819 0.279711
--0.883176 3.92209e-16 0.232616
--0.843472 0.0886525 0.320194
-
--0.824863 3.66313e-16 0.266283
--0.843472 0.0886525 0.320194
--0.883176 3.92209e-16 0.232616
-
--0.843472 0.0886525 0.320194
--0.824863 3.66313e-16 0.266283
--0.766332 0.0805448 0.343415
-
--0.760358 3.37667e-16 0.285594
--0.766332 0.0805448 0.343415
--0.824863 3.66313e-16 0.266283
-
--0.766332 0.0805448 0.343415
--0.760358 3.37667e-16 0.285594
--0.685946 0.0720958 0.348123
-
--0.693138 3.07815e-16 0.289509
--0.685946 0.0720958 0.348123
--0.760358 3.37667e-16 0.285594
-
--0.685946 0.0720958 0.348123
--0.693138 3.07815e-16 0.289509
--0.606646 0.0637611 0.334064
-
--0.626827 2.78367e-16 0.277817
--0.606646 0.0637611 0.334064
--0.693138 3.07815e-16 0.289509
-
--0.606646 0.0637611 0.334064
--0.626827 2.78367e-16 0.277817
--0.532709 0.05599 0.301995
-
--0.565 2.5091e-16 0.251147
--0.532709 0.05599 0.301995
--0.626827 2.78367e-16 0.277817
-
--0.532709 0.05599 0.301995
--0.565 2.5091e-16 0.251147
--0.46812 0.0492014 0.253645
-
--0.51099 2.26925e-16 0.210938
--0.46812 0.0492014 0.253645
--0.565 2.5091e-16 0.251147
-
--0.46812 0.0492014 0.253645
--0.51099 2.26925e-16 0.210938
--0.416361 0.0437613 0.191621
-
--0.467709 2.07704e-16 0.159358
--0.416361 0.0437613 0.191621
--0.51099 2.26925e-16 0.210938
-
--0.416361 0.0437613 0.191621
--0.467709 2.07704e-16 0.159358
--0.380222 0.039963 0.119267
-
--0.437489 1.94284e-16 0.0991858
--0.380222 0.039963 0.119267
--0.467709 2.07704e-16 0.159358
-
--0.380222 0.039963 0.119267
--0.437489 1.94284e-16 0.0991858
--0.361653 0.0380112 0.0404831
-
--0.421961 1.87388e-16 0.0336669
--0.361653 0.0380112 0.0404831
--0.437489 1.94284e-16 0.0991858
-
--0.361653 0.0380112 0.0404831
--0.421961 1.87388e-16 0.0336669
--0.361653 0.0380112 -0.0404831
-
--0.421961 1.87388e-16 -0.0336669
--0.361653 0.0380112 -0.0404831
--0.421961 1.87388e-16 0.0336669
-
--0.361653 0.0380112 -0.0404831
--0.421961 1.87388e-16 -0.0336669
--0.380222 0.039963 -0.119267
-
--0.437489 1.94284e-16 -0.0991858
--0.380222 0.039963 -0.119267
--0.421961 1.87388e-16 -0.0336669
-
--0.380222 0.039963 -0.119267
--0.437489 1.94284e-16 -0.0991858
--0.416361 0.0437613 -0.191621
-
--0.467709 2.07704e-16 -0.159358
--0.416361 0.0437613 -0.191621
--0.437489 1.94284e-16 -0.0991858
-
--0.416361 0.0437613 -0.191621
--0.467709 2.07704e-16 -0.159358
--0.46812 0.0492014 -0.253645
-
--0.51099 2.26925e-16 -0.210938
--0.46812 0.0492014 -0.253645
--0.467709 2.07704e-16 -0.159358
-
--0.46812 0.0492014 -0.253645
--0.51099 2.26925e-16 -0.210938
--0.532709 0.05599 -0.301995
-
--0.565 2.5091e-16 -0.251147
--0.532709 0.05599 -0.301995
--0.51099 2.26925e-16 -0.210938
-
--0.532709 0.05599 -0.301995
--0.565 2.5091e-16 -0.251147
--0.606646 0.0637611 -0.334064
-
--0.626827 2.78367e-16 -0.277817
--0.606646 0.0637611 -0.334064
--0.565 2.5091e-16 -0.251147
-
--0.606646 0.0637611 -0.334064
--0.626827 2.78367e-16 -0.277817
--0.685946 0.0720958 -0.348123
-
--0.693138 3.07815e-16 -0.289509
--0.685946 0.0720958 -0.348123
--0.626827 2.78367e-16 -0.277817
-
--0.685946 0.0720958 -0.348123
--0.693138 3.07815e-16 -0.289509
--0.766332 0.0805448 -0.343415
-
--0.760358 3.37667e-16 -0.285594
--0.766332 0.0805448 -0.343415
--0.693138 3.07815e-16 -0.289509
-
--0.766332 0.0805448 -0.343415
--0.760358 3.37667e-16 -0.285594
--0.843472 0.0886525 -0.320194
-
--0.824863 3.66313e-16 -0.266283
--0.843472 0.0886525 -0.320194
--0.760358 3.37667e-16 -0.285594
-
--0.843472 0.0886525 -0.320194
--0.824863 3.66313e-16 -0.266283
--0.913207 0.0959819 -0.279711
-
--0.883176 3.92209e-16 -0.232616
--0.913207 0.0959819 -0.279711
--0.824863 3.66313e-16 -0.266283
-
--0.913207 0.0959819 -0.279711
--0.883176 3.92209e-16 -0.232616
--0.971777 0.102138 -0.224149
-
--0.932153 4.13959e-16 -0.186408
--0.971777 0.102138 -0.224149
--0.883176 3.92209e-16 -0.232616
-
--0.971777 0.102138 -0.224149
--0.932153 4.13959e-16 -0.186408
--1.01602 0.106789 -0.156502
-
--0.969153 4.30391e-16 -0.130152
--1.01602 0.106789 -0.156502
--0.932153 4.13959e-16 -0.186408
-
--1.01602 0.106789 -0.156502
--0.969153 4.30391e-16 -0.130152
--1.04357 0.109683 -0.0804188
-
--0.992183 4.40618e-16 -0.0668786
--1.04357 0.109683 -0.0804188
--0.969153 4.30391e-16 -0.130152
-
--1.04357 0.109683 -0.0804188
--0.992183 4.40618e-16 -0.0668786
--1.05291 0.110666 0
-
--1 4.44089e-16 0
--1.05291 0.110666 0
--0.992183 4.40618e-16 -0.0668786
-
--1 4.44089e-16 0
--0.93613 -0.0983913 0
--0.992183 4.40618e-16 0.0668786
-
--0.92993 -0.0977396 0.0533384
--0.992183 4.40618e-16 0.0668786
--0.93613 -0.0983913 0
-
--0.992183 4.40618e-16 0.0668786
--0.92993 -0.0977396 0.0533384
--0.969153 4.30391e-16 0.130152
-
--0.911664 -0.0958197 0.103801
--0.969153 4.30391e-16 0.130152
--0.92993 -0.0977396 0.0533384
-
--0.969153 4.30391e-16 0.130152
--0.911664 -0.0958197 0.103801
--0.932153 4.13959e-16 0.186408
-
--0.882316 -0.0927351 0.148668
--0.932153 4.13959e-16 0.186408
--0.911664 -0.0958197 0.103801
-
--0.932153 4.13959e-16 0.186408
--0.882316 -0.0927351 0.148668
--0.883176 3.92209e-16 0.232616
-
--0.843469 -0.0886521 0.18552
--0.883176 3.92209e-16 0.232616
--0.882316 -0.0927351 0.148668
-
--0.883176 3.92209e-16 0.232616
--0.843469 -0.0886521 0.18552
--0.824863 3.66313e-16 0.266283
-
--0.797217 -0.0837909 0.212371
--0.824863 3.66313e-16 0.266283
--0.843469 -0.0886521 0.18552
-
--0.824863 3.66313e-16 0.266283
--0.797217 -0.0837909 0.212371
--0.760358 3.37667e-16 0.285594
-
--0.746053 -0.0784133 0.227773
--0.760358 3.37667e-16 0.285594
--0.797217 -0.0837909 0.212371
-
--0.760358 3.37667e-16 0.285594
--0.746053 -0.0784133 0.227773
--0.693138 3.07815e-16 0.289509
-
--0.692736 -0.0728095 0.230895
--0.693138 3.07815e-16 0.289509
--0.746053 -0.0784133 0.227773
-
--0.693138 3.07815e-16 0.289509
--0.692736 -0.0728095 0.230895
--0.626827 2.78367e-16 0.277817
-
--0.64014 -0.0672814 0.22157
--0.626827 2.78367e-16 0.277817
--0.692736 -0.0728095 0.230895
-
--0.626827 2.78367e-16 0.277817
--0.64014 -0.0672814 0.22157
--0.565 2.5091e-16 0.251147
-
--0.591101 -0.0621272 0.2003
--0.565 2.5091e-16 0.251147
--0.64014 -0.0672814 0.22157
-
--0.565 2.5091e-16 0.251147
--0.591101 -0.0621272 0.2003
--0.51099 2.26925e-16 0.210938
-
--0.548261 -0.0576246 0.168232
--0.51099 2.26925e-16 0.210938
--0.591101 -0.0621272 0.2003
-
--0.51099 2.26925e-16 0.210938
--0.548261 -0.0576246 0.168232
--0.467709 2.07704e-16 0.159358
-
--0.513932 -0.0540164 0.127094
--0.467709 2.07704e-16 0.159358
--0.548261 -0.0576246 0.168232
-
--0.467709 2.07704e-16 0.159358
--0.513932 -0.0540164 0.127094
--0.437489 1.94284e-16 0.0991858
-
--0.489963 -0.0514972 0.0791047
--0.437489 1.94284e-16 0.0991858
--0.513932 -0.0540164 0.127094
-
--0.437489 1.94284e-16 0.0991858
--0.489963 -0.0514972 0.0791047
--0.421961 1.87388e-16 0.0336669
-
--0.477646 -0.0502026 0.0268508
--0.421961 1.87388e-16 0.0336669
--0.489963 -0.0514972 0.0791047
-
--0.421961 1.87388e-16 0.0336669
--0.477646 -0.0502026 0.0268508
--0.421961 1.87388e-16 -0.0336669
-
--0.477646 -0.0502026 -0.0268508
--0.421961 1.87388e-16 -0.0336669
--0.477646 -0.0502026 0.0268508
-
--0.421961 1.87388e-16 -0.0336669
--0.477646 -0.0502026 -0.0268508
--0.437489 1.94284e-16 -0.0991858
-
--0.489963 -0.0514972 -0.0791047
--0.437489 1.94284e-16 -0.0991858
--0.477646 -0.0502026 -0.0268508
-
--0.437489 1.94284e-16 -0.0991858
--0.489963 -0.0514972 -0.0791047
--0.467709 2.07704e-16 -0.159358
-
--0.513932 -0.0540164 -0.127094
--0.467709 2.07704e-16 -0.159358
--0.489963 -0.0514972 -0.0791047
-
--0.467709 2.07704e-16 -0.159358
--0.513932 -0.0540164 -0.127094
--0.51099 2.26925e-16 -0.210938
-
--0.548261 -0.0576246 -0.168232
--0.51099 2.26925e-16 -0.210938
--0.513932 -0.0540164 -0.127094
-
--0.51099 2.26925e-16 -0.210938
--0.548261 -0.0576246 -0.168232
--0.565 2.5091e-16 -0.251147
-
--0.591101 -0.0621272 -0.2003
--0.565 2.5091e-16 -0.251147
--0.548261 -0.0576246 -0.168232
-
--0.565 2.5091e-16 -0.251147
--0.591101 -0.0621272 -0.2003
--0.626827 2.78367e-16 -0.277817
-
--0.64014 -0.0672814 -0.22157
--0.626827 2.78367e-16 -0.277817
--0.591101 -0.0621272 -0.2003
-
--0.626827 2.78367e-16 -0.277817
--0.64014 -0.0672814 -0.22157
--0.693138 3.07815e-16 -0.289509
-
--0.692736 -0.0728095 -0.230895
--0.693138 3.07815e-16 -0.289509
--0.64014 -0.0672814 -0.22157
-
--0.693138 3.07815e-16 -0.289509
--0.692736 -0.0728095 -0.230895
--0.760358 3.37667e-16 -0.285594
-
--0.746053 -0.0784133 -0.227773
--0.760358 3.37667e-16 -0.285594
--0.692736 -0.0728095 -0.230895
-
--0.760358 3.37667e-16 -0.285594
--0.746053 -0.0784133 -0.227773
--0.824863 3.66313e-16 -0.266283
-
--0.797217 -0.0837909 -0.212371
--0.824863 3.66313e-16 -0.266283
--0.746053 -0.0784133 -0.227773
-
--0.824863 3.66313e-16 -0.266283
--0.797217 -0.0837909 -0.212371
--0.883176 3.92209e-16 -0.232616
-
--0.843469 -0.0886521 -0.18552
--0.883176 3.92209e-16 -0.232616
--0.797217 -0.0837909 -0.212371
-
--0.883176 3.92209e-16 -0.232616
--0.843469 -0.0886521 -0.18552
--0.932153 4.13959e-16 -0.186408
-
--0.882316 -0.0927351 -0.148668
--0.932153 4.13959e-16 -0.186408
--0.843469 -0.0886521 -0.18552
-
--0.932153 4.13959e-16 -0.186408
--0.882316 -0.0927351 -0.148668
--0.969153 4.30391e-16 -0.130152
-
--0.911664 -0.0958197 -0.103801
--0.969153 4.30391e-16 -0.130152
--0.882316 -0.0927351 -0.148668
-
--0.969153 4.30391e-16 -0.130152
--0.911664 -0.0958197 -0.103801
--0.992183 4.40618e-16 -0.0668786
-
--0.92993 -0.0977396 -0.0533384
--0.992183 4.40618e-16 -0.0668786
--0.911664 -0.0958197 -0.103801
-
--0.992183 4.40618e-16 -0.0668786
--0.92993 -0.0977396 -0.0533384
--1 4.44089e-16 0
-
--0.93613 -0.0983913 0
--1 4.44089e-16 0
--0.92993 -0.0977396 -0.0533384
-
--0.93613 -0.0983913 0
--0.868909 -0.184692 0
--0.92993 -0.0977396 0.0533384
-
--0.864207 -0.183693 0.0411236
--0.92993 -0.0977396 0.0533384
--0.868909 -0.184692 0
-
--0.92993 -0.0977396 0.0533384
--0.864207 -0.183693 0.0411236
--0.911664 -0.0958197 0.103801
-
--0.850356 -0.180749 0.0800302
--0.911664 -0.0958197 0.103801
--0.864207 -0.183693 0.0411236
-
--0.911664 -0.0958197 0.103801
--0.850356 -0.180749 0.0800302
--0.882316 -0.0927351 0.148668
-
--0.828101 -0.176018 0.114622
--0.882316 -0.0927351 0.148668
--0.850356 -0.180749 0.0800302
-
--0.882316 -0.0927351 0.148668
--0.828101 -0.176018 0.114622
--0.843469 -0.0886521 0.18552
-
--0.798644 -0.169757 0.143035
--0.843469 -0.0886521 0.18552
--0.828101 -0.176018 0.114622
-
--0.843469 -0.0886521 0.18552
--0.798644 -0.169757 0.143035
--0.797217 -0.0837909 0.212371
-
--0.763571 -0.162302 0.163737
--0.797217 -0.0837909 0.212371
--0.798644 -0.169757 0.143035
-
--0.797217 -0.0837909 0.212371
--0.763571 -0.162302 0.163737
--0.746053 -0.0784133 0.227773
-
--0.724773 -0.154055 0.175612
--0.746053 -0.0784133 0.227773
--0.763571 -0.162302 0.163737
-
--0.746053 -0.0784133 0.227773
--0.724773 -0.154055 0.175612
--0.692736 -0.0728095 0.230895
-
--0.684343 -0.145462 0.178019
--0.692736 -0.0728095 0.230895
--0.724773 -0.154055 0.175612
-
--0.692736 -0.0728095 0.230895
--0.684343 -0.145462 0.178019
--0.64014 -0.0672814 0.22157
-
--0.644459 -0.136984 0.170829
--0.64014 -0.0672814 0.22157
--0.684343 -0.145462 0.178019
-
--0.64014 -0.0672814 0.22157
--0.644459 -0.136984 0.170829
--0.591101 -0.0621272 0.2003
-
--0.607273 -0.12908 0.15443
--0.591101 -0.0621272 0.2003
--0.644459 -0.136984 0.170829
-
--0.591101 -0.0621272 0.2003
--0.607273 -0.12908 0.15443
--0.548261 -0.0576246 0.168232
-
--0.574788 -0.122175 0.129706
--0.548261 -0.0576246 0.168232
--0.607273 -0.12908 0.15443
-
--0.548261 -0.0576246 0.168232
--0.574788 -0.122175 0.129706
--0.513932 -0.0540164 0.127094
-
--0.548756 -0.116642 0.0979889
--0.513932 -0.0540164 0.127094
--0.574788 -0.122175 0.129706
-
--0.513932 -0.0540164 0.127094
--0.548756 -0.116642 0.0979889
--0.489963 -0.0514972 0.0791047
-
--0.53058 -0.112778 0.0609893
--0.489963 -0.0514972 0.0791047
--0.548756 -0.116642 0.0979889
-
--0.489963 -0.0514972 0.0791047
--0.53058 -0.112778 0.0609893
--0.477646 -0.0502026 0.0268508
-
--0.52124 -0.110793 0.0207018
--0.477646 -0.0502026 0.0268508
--0.53058 -0.112778 0.0609893
-
--0.477646 -0.0502026 0.0268508
--0.52124 -0.110793 0.0207018
--0.477646 -0.0502026 -0.0268508
-
--0.52124 -0.110793 -0.0207018
--0.477646 -0.0502026 -0.0268508
--0.52124 -0.110793 0.0207018
-
--0.477646 -0.0502026 -0.0268508
--0.52124 -0.110793 -0.0207018
--0.489963 -0.0514972 -0.0791047
-
--0.53058 -0.112778 -0.0609893
--0.489963 -0.0514972 -0.0791047
--0.52124 -0.110793 -0.0207018
-
--0.489963 -0.0514972 -0.0791047
--0.53058 -0.112778 -0.0609893
--0.513932 -0.0540164 -0.127094
-
--0.548756 -0.116642 -0.0979889
--0.513932 -0.0540164 -0.127094
--0.53058 -0.112778 -0.0609893
-
--0.513932 -0.0540164 -0.127094
--0.548756 -0.116642 -0.0979889
--0.548261 -0.0576246 -0.168232
-
--0.574788 -0.122175 -0.129706
--0.548261 -0.0576246 -0.168232
--0.548756 -0.116642 -0.0979889
-
--0.548261 -0.0576246 -0.168232
--0.574788 -0.122175 -0.129706
--0.591101 -0.0621272 -0.2003
-
--0.607273 -0.12908 -0.15443
--0.591101 -0.0621272 -0.2003
--0.574788 -0.122175 -0.129706
-
--0.591101 -0.0621272 -0.2003
--0.607273 -0.12908 -0.15443
--0.64014 -0.0672814 -0.22157
-
--0.644459 -0.136984 -0.170829
--0.64014 -0.0672814 -0.22157
--0.607273 -0.12908 -0.15443
-
--0.64014 -0.0672814 -0.22157
--0.644459 -0.136984 -0.170829
--0.692736 -0.0728095 -0.230895
-
--0.684343 -0.145462 -0.178019
--0.692736 -0.0728095 -0.230895
--0.644459 -0.136984 -0.170829
-
--0.692736 -0.0728095 -0.230895
--0.684343 -0.145462 -0.178019
--0.746053 -0.0784133 -0.227773
-
--0.724773 -0.154055 -0.175612
--0.746053 -0.0784133 -0.227773
--0.684343 -0.145462 -0.178019
-
--0.746053 -0.0784133 -0.227773
--0.724773 -0.154055 -0.175612
--0.797217 -0.0837909 -0.212371
-
--0.763571 -0.162302 -0.163737
--0.797217 -0.0837909 -0.212371
--0.724773 -0.154055 -0.175612
-
--0.797217 -0.0837909 -0.212371
--0.763571 -0.162302 -0.163737
--0.843469 -0.0886521 -0.18552
-
--0.798644 -0.169757 -0.143035
--0.843469 -0.0886521 -0.18552
--0.763571 -0.162302 -0.163737
-
--0.843469 -0.0886521 -0.18552
--0.798644 -0.169757 -0.143035
--0.882316 -0.0927351 -0.148668
-
--0.828101 -0.176018 -0.114622
--0.882316 -0.0927351 -0.148668
--0.798644 -0.169757 -0.143035
-
--0.882316 -0.0927351 -0.148668
--0.828101 -0.176018 -0.114622
--0.911664 -0.0958197 -0.103801
-
--0.850356 -0.180749 -0.0800302
--0.911664 -0.0958197 -0.103801
--0.828101 -0.176018 -0.114622
-
--0.911664 -0.0958197 -0.103801
--0.850356 -0.180749 -0.0800302
--0.92993 -0.0977396 -0.0533384
-
--0.864207 -0.183693 -0.0411236
--0.92993 -0.0977396 -0.0533384
--0.850356 -0.180749 -0.0800302
-
--0.92993 -0.0977396 -0.0533384
--0.864207 -0.183693 -0.0411236
--0.93613 -0.0983913 0
-
--0.868909 -0.184692 0
--0.93613 -0.0983913 0
--0.864207 -0.183693 -0.0411236
-
--0.868909 -0.184692 0
--0.804867 -0.261517 0
--0.864207 -0.183693 0.0411236
-
--0.801373 -0.260382 0.0314299
--0.864207 -0.183693 0.0411236
--0.804867 -0.261517 0
-
--0.864207 -0.183693 0.0411236
--0.801373 -0.260382 0.0314299
--0.850356 -0.180749 0.0800302
-
--0.79108 -0.257037 0.0611654
--0.850356 -0.180749 0.0800302
--0.801373 -0.260382 0.0314299
-
--0.850356 -0.180749 0.0800302
--0.79108 -0.257037 0.0611654
--0.828101 -0.176018 0.114622
-
--0.774542 -0.251664 0.0876034
--0.828101 -0.176018 0.114622
--0.79108 -0.257037 0.0611654
-
--0.828101 -0.176018 0.114622
--0.774542 -0.251664 0.0876034
--0.798644 -0.169757 0.143035
-
--0.752652 -0.244551 0.109319
--0.798644 -0.169757 0.143035
--0.774542 -0.251664 0.0876034
-
--0.798644 -0.169757 0.143035
--0.752652 -0.244551 0.109319
--0.763571 -0.162302 0.163737
-
--0.726589 -0.236083 0.125141
--0.763571 -0.162302 0.163737
--0.752652 -0.244551 0.109319
-
--0.763571 -0.162302 0.163737
--0.726589 -0.236083 0.125141
--0.724773 -0.154055 0.175612
-
--0.697758 -0.226715 0.134216
--0.724773 -0.154055 0.175612
--0.726589 -0.236083 0.125141
-
--0.724773 -0.154055 0.175612
--0.697758 -0.226715 0.134216
--0.684343 -0.145462 0.178019
-
--0.667714 -0.216953 0.136056
--0.684343 -0.145462 0.178019
--0.697758 -0.226715 0.134216
-
--0.684343 -0.145462 0.178019
--0.667714 -0.216953 0.136056
--0.644459 -0.136984 0.170829
-
--0.638076 -0.207323 0.130561
--0.644459 -0.136984 0.170829
--0.667714 -0.216953 0.136056
-
--0.644459 -0.136984 0.170829
--0.638076 -0.207323 0.130561
--0.607273 -0.12908 0.15443
-
--0.610442 -0.198345 0.118028
--0.607273 -0.12908 0.15443
--0.638076 -0.207323 0.130561
-
--0.607273 -0.12908 0.15443
--0.610442 -0.198345 0.118028
--0.574788 -0.122175 0.129706
-
--0.586302 -0.190501 0.0991314
--0.574788 -0.122175 0.129706
--0.610442 -0.198345 0.118028
-
--0.574788 -0.122175 0.129706
--0.586302 -0.190501 0.0991314
--0.548756 -0.116642 0.0979889
-
--0.566957 -0.184216 0.0748908
--0.548756 -0.116642 0.0979889
--0.586302 -0.190501 0.0991314
-
--0.548756 -0.116642 0.0979889
--0.566957 -0.184216 0.0748908
--0.53058 -0.112778 0.0609893
-
--0.553451 -0.179827 0.0466128
--0.53058 -0.112778 0.0609893
--0.566957 -0.184216 0.0748908
-
--0.53058 -0.112778 0.0609893
--0.553451 -0.179827 0.0466128
--0.52124 -0.110793 0.0207018
-
--0.54651 -0.177572 0.0158219
--0.52124 -0.110793 0.0207018
--0.553451 -0.179827 0.0466128
-
--0.52124 -0.110793 0.0207018
--0.54651 -0.177572 0.0158219
--0.52124 -0.110793 -0.0207018
-
--0.54651 -0.177572 -0.0158219
--0.52124 -0.110793 -0.0207018
--0.54651 -0.177572 0.0158219
-
--0.52124 -0.110793 -0.0207018
--0.54651 -0.177572 -0.0158219
--0.53058 -0.112778 -0.0609893
-
--0.553451 -0.179827 -0.0466128
--0.53058 -0.112778 -0.0609893
--0.54651 -0.177572 -0.0158219
-
--0.53058 -0.112778 -0.0609893
--0.553451 -0.179827 -0.0466128
--0.548756 -0.116642 -0.0979889
-
--0.566957 -0.184216 -0.0748908
--0.548756 -0.116642 -0.0979889
--0.553451 -0.179827 -0.0466128
-
--0.548756 -0.116642 -0.0979889
--0.566957 -0.184216 -0.0748908
--0.574788 -0.122175 -0.129706
-
--0.586302 -0.190501 -0.0991314
--0.574788 -0.122175 -0.129706
--0.566957 -0.184216 -0.0748908
-
--0.574788 -0.122175 -0.129706
--0.586302 -0.190501 -0.0991314
--0.607273 -0.12908 -0.15443
-
--0.610442 -0.198345 -0.118028
--0.607273 -0.12908 -0.15443
--0.586302 -0.190501 -0.0991314
-
--0.607273 -0.12908 -0.15443
--0.610442 -0.198345 -0.118028
--0.644459 -0.136984 -0.170829
-
--0.638076 -0.207323 -0.130561
--0.644459 -0.136984 -0.170829
--0.610442 -0.198345 -0.118028
-
--0.644459 -0.136984 -0.170829
--0.638076 -0.207323 -0.130561
--0.684343 -0.145462 -0.178019
-
--0.667714 -0.216953 -0.136056
--0.684343 -0.145462 -0.178019
--0.638076 -0.207323 -0.130561
-
--0.684343 -0.145462 -0.178019
--0.667714 -0.216953 -0.136056
--0.724773 -0.154055 -0.175612
-
--0.697758 -0.226715 -0.134216
--0.724773 -0.154055 -0.175612
--0.667714 -0.216953 -0.136056
-
--0.724773 -0.154055 -0.175612
--0.697758 -0.226715 -0.134216
--0.763571 -0.162302 -0.163737
-
--0.726589 -0.236083 -0.125141
--0.763571 -0.162302 -0.163737
--0.697758 -0.226715 -0.134216
-
--0.763571 -0.162302 -0.163737
--0.726589 -0.236083 -0.125141
--0.798644 -0.169757 -0.143035
-
--0.752652 -0.244551 -0.109319
--0.798644 -0.169757 -0.143035
--0.726589 -0.236083 -0.125141
-
--0.798644 -0.169757 -0.143035
--0.752652 -0.244551 -0.109319
--0.828101 -0.176018 -0.114622
-
--0.774542 -0.251664 -0.0876034
--0.828101 -0.176018 -0.114622
--0.752652 -0.244551 -0.109319
-
--0.828101 -0.176018 -0.114622
--0.774542 -0.251664 -0.0876034
--0.850356 -0.180749 -0.0800302
-
--0.79108 -0.257037 -0.0611654
--0.850356 -0.180749 -0.0800302
--0.774542 -0.251664 -0.0876034
-
--0.850356 -0.180749 -0.0800302
--0.79108 -0.257037 -0.0611654
--0.864207 -0.183693 -0.0411236
-
--0.801373 -0.260382 -0.0314299
--0.864207 -0.183693 -0.0411236
--0.79108 -0.257037 -0.0611654
-
--0.864207 -0.183693 -0.0411236
--0.801373 -0.260382 -0.0314299
--0.868909 -0.184692 0
-
--0.804867 -0.261517 0
--0.868909 -0.184692 0
--0.801373 -0.260382 -0.0314299
-
--0.804867 -0.261517 0
--0.748467 -0.333239 0
--0.801373 -0.260382 0.0314299
-
--0.745776 -0.332041 0.0252061
--0.801373 -0.260382 0.0314299
--0.748467 -0.333239 0
-
--0.801373 -0.260382 0.0314299
--0.745776 -0.332041 0.0252061
--0.79108 -0.257037 0.0611654
-
--0.737846 -0.32851 0.0490534
--0.79108 -0.257037 0.0611654
--0.745776 -0.332041 0.0252061
-
--0.79108 -0.257037 0.0611654
--0.737846 -0.32851 0.0490534
--0.774542 -0.251664 0.0876034
-
--0.725107 -0.322838 0.0702562
--0.774542 -0.251664 0.0876034
--0.737846 -0.32851 0.0490534
-
--0.774542 -0.251664 0.0876034
--0.725107 -0.322838 0.0702562
--0.752652 -0.244551 0.109319
-
--0.708243 -0.31533 0.0876715
--0.752652 -0.244551 0.109319
--0.725107 -0.322838 0.0702562
-
--0.752652 -0.244551 0.109319
--0.708243 -0.31533 0.0876715
--0.726589 -0.236083 0.125141
-
--0.688166 -0.306391 0.10036
--0.726589 -0.236083 0.125141
--0.708243 -0.31533 0.0876715
-
--0.726589 -0.236083 0.125141
--0.688166 -0.306391 0.10036
--0.697758 -0.226715 0.134216
-
--0.665956 -0.296503 0.107639
--0.697758 -0.226715 0.134216
--0.688166 -0.306391 0.10036
-
--0.697758 -0.226715 0.134216
--0.665956 -0.296503 0.107639
--0.667714 -0.216953 0.136056
-
--0.642812 -0.286198 0.109114
--0.667714 -0.216953 0.136056
--0.665956 -0.296503 0.107639
-
--0.667714 -0.216953 0.136056
--0.642812 -0.286198 0.109114
--0.638076 -0.207323 0.130561
-
--0.61998 -0.276033 0.104708
--0.638076 -0.207323 0.130561
--0.642812 -0.286198 0.109114
-
--0.638076 -0.207323 0.130561
--0.61998 -0.276033 0.104708
--0.610442 -0.198345 0.118028
-
--0.598692 -0.266555 0.0946559
--0.610442 -0.198345 0.118028
--0.61998 -0.276033 0.104708
-
--0.610442 -0.198345 0.118028
--0.598692 -0.266555 0.0946559
--0.586302 -0.190501 0.0991314
-
--0.580096 -0.258275 0.0795014
--0.586302 -0.190501 0.0991314
--0.598692 -0.266555 0.0946559
-
--0.586302 -0.190501 0.0991314
--0.580096 -0.258275 0.0795014
--0.566957 -0.184216 0.0748908
-
--0.565194 -0.251641 0.0600609
--0.566957 -0.184216 0.0748908
--0.580096 -0.258275 0.0795014
-
--0.566957 -0.184216 0.0748908
--0.565194 -0.251641 0.0600609
--0.553451 -0.179827 0.0466128
-
--0.554789 -0.247008 0.0373825
--0.553451 -0.179827 0.0466128
--0.565194 -0.251641 0.0600609
-
--0.553451 -0.179827 0.0466128
--0.554789 -0.247008 0.0373825
--0.54651 -0.177572 0.0158219
-
--0.549443 -0.244628 0.0126889
--0.54651 -0.177572 0.0158219
--0.554789 -0.247008 0.0373825
-
--0.54651 -0.177572 0.0158219
--0.549443 -0.244628 0.0126889
--0.54651 -0.177572 -0.0158219
-
--0.549443 -0.244628 -0.0126889
--0.54651 -0.177572 -0.0158219
--0.549443 -0.244628 0.0126889
-
--0.54651 -0.177572 -0.0158219
--0.549443 -0.244628 -0.0126889
--0.553451 -0.179827 -0.0466128
-
--0.554789 -0.247008 -0.0373825
--0.553451 -0.179827 -0.0466128
--0.549443 -0.244628 -0.0126889
-
--0.553451 -0.179827 -0.0466128
--0.554789 -0.247008 -0.0373825
--0.566957 -0.184216 -0.0748908
-
--0.565194 -0.251641 -0.0600609
--0.566957 -0.184216 -0.0748908
--0.554789 -0.247008 -0.0373825
-
--0.566957 -0.184216 -0.0748908
--0.565194 -0.251641 -0.0600609
--0.586302 -0.190501 -0.0991314
-
--0.580096 -0.258275 -0.0795014
--0.586302 -0.190501 -0.0991314
--0.565194 -0.251641 -0.0600609
-
--0.586302 -0.190501 -0.0991314
--0.580096 -0.258275 -0.0795014
--0.610442 -0.198345 -0.118028
-
--0.598692 -0.266555 -0.0946559
--0.610442 -0.198345 -0.118028
--0.580096 -0.258275 -0.0795014
-
--0.610442 -0.198345 -0.118028
--0.598692 -0.266555 -0.0946559
--0.638076 -0.207323 -0.130561
-
--0.61998 -0.276033 -0.104708
--0.638076 -0.207323 -0.130561
--0.598692 -0.266555 -0.0946559
-
--0.638076 -0.207323 -0.130561
--0.61998 -0.276033 -0.104708
--0.667714 -0.216953 -0.136056
-
--0.642812 -0.286198 -0.109114
--0.667714 -0.216953 -0.136056
--0.61998 -0.276033 -0.104708
-
--0.667714 -0.216953 -0.136056
--0.642812 -0.286198 -0.109114
--0.697758 -0.226715 -0.134216
-
--0.665956 -0.296503 -0.107639
--0.697758 -0.226715 -0.134216
--0.642812 -0.286198 -0.109114
-
--0.697758 -0.226715 -0.134216
--0.665956 -0.296503 -0.107639
--0.726589 -0.236083 -0.125141
-
--0.688166 -0.306391 -0.10036
--0.726589 -0.236083 -0.125141
--0.665956 -0.296503 -0.107639
-
--0.726589 -0.236083 -0.125141
--0.688166 -0.306391 -0.10036
--0.752652 -0.244551 -0.109319
-
--0.708243 -0.31533 -0.0876715
--0.752652 -0.244551 -0.109319
--0.688166 -0.306391 -0.10036
-
--0.752652 -0.244551 -0.109319
--0.708243 -0.31533 -0.0876715
--0.774542 -0.251664 -0.0876034
-
--0.725107 -0.322838 -0.0702562
--0.774542 -0.251664 -0.0876034
--0.708243 -0.31533 -0.0876715
-
--0.774542 -0.251664 -0.0876034
--0.725107 -0.322838 -0.0702562
--0.79108 -0.257037 -0.0611654
-
--0.737846 -0.32851 -0.0490534
--0.79108 -0.257037 -0.0611654
--0.725107 -0.322838 -0.0702562
-
--0.79108 -0.257037 -0.0611654
--0.737846 -0.32851 -0.0490534
--0.801373 -0.260382 -0.0314299
-
--0.745776 -0.332041 -0.0252061
--0.801373 -0.260382 -0.0314299
--0.737846 -0.32851 -0.0490534
-
--0.801373 -0.260382 -0.0314299
--0.745776 -0.332041 -0.0252061
--0.804867 -0.261517 0
-
--0.748467 -0.333239 0
--0.804867 -0.261517 0
--0.745776 -0.332041 -0.0252061
-
--0.748467 -0.333239 0
--0.701481 -0.405 0
--0.745776 -0.332041 0.0252061
-
--0.699146 -0.403652 0.0230616
--0.745776 -0.332041 0.0252061
--0.701481 -0.405 0
-
--0.745776 -0.332041 0.0252061
--0.699146 -0.403652 0.0230616
--0.737846 -0.32851 0.0490534
-
--0.692269 -0.399682 0.0448799
--0.737846 -0.32851 0.0490534
--0.699146 -0.403652 0.0230616
-
--0.737846 -0.32851 0.0490534
--0.692269 -0.399682 0.0448799
--0.725107 -0.322838 0.0702562
-
--0.681219 -0.393302 0.0642788
--0.725107 -0.322838 0.0702562
--0.692269 -0.399682 0.0448799
-
--0.725107 -0.322838 0.0702562
--0.681219 -0.393302 0.0642788
--0.708243 -0.31533 0.0876715
-
--0.666593 -0.384858 0.0802123
--0.708243 -0.31533 0.0876715
--0.681219 -0.393302 0.0642788
-
--0.708243 -0.31533 0.0876715
--0.666593 -0.384858 0.0802123
--0.688166 -0.306391 0.10036
-
--0.64918 -0.374804 0.0918216
--0.688166 -0.306391 0.10036
--0.666593 -0.384858 0.0802123
-
--0.688166 -0.306391 0.10036
--0.64918 -0.374804 0.0918216
--0.665956 -0.296503 0.107639
-
--0.629916 -0.363682 0.0984808
--0.665956 -0.296503 0.107639
--0.64918 -0.374804 0.0918216
-
--0.665956 -0.296503 0.107639
--0.629916 -0.363682 0.0984808
--0.642812 -0.286198 0.109114
-
--0.609843 -0.352093 0.0998308
--0.642812 -0.286198 0.109114
--0.629916 -0.363682 0.0984808
-
--0.642812 -0.286198 0.109114
--0.609843 -0.352093 0.0998308
--0.61998 -0.276033 0.104708
-
--0.59004 -0.34066 0.095799
--0.61998 -0.276033 0.104708
--0.609843 -0.352093 0.0998308
-
--0.61998 -0.276033 0.104708
--0.59004 -0.34066 0.095799
--0.598692 -0.266555 0.0946559
-
--0.571577 -0.33 0.0866025
--0.598692 -0.266555 0.0946559
--0.59004 -0.34066 0.095799
-
--0.598692 -0.266555 0.0946559
--0.571577 -0.33 0.0866025
--0.580096 -0.258275 0.0795014
-
--0.555448 -0.320688 0.0727374
--0.580096 -0.258275 0.0795014
--0.571577 -0.33 0.0866025
-
--0.580096 -0.258275 0.0795014
--0.555448 -0.320688 0.0727374
--0.565194 -0.251641 0.0600609
-
--0.542523 -0.313226 0.0549509
--0.565194 -0.251641 0.0600609
--0.555448 -0.320688 0.0727374
-
--0.565194 -0.251641 0.0600609
--0.542523 -0.313226 0.0549509
--0.554789 -0.247008 0.0373825
-
--0.533498 -0.308015 0.034202
--0.554789 -0.247008 0.0373825
--0.542523 -0.313226 0.0549509
-
--0.554789 -0.247008 0.0373825
--0.533498 -0.308015 0.034202
--0.549443 -0.244628 0.0126889
-
--0.528861 -0.305338 0.0116093
--0.549443 -0.244628 0.0126889
--0.533498 -0.308015 0.034202
-
--0.549443 -0.244628 0.0126889
--0.528861 -0.305338 0.0116093
--0.549443 -0.244628 -0.0126889
-
--0.528861 -0.305338 -0.0116093
--0.549443 -0.244628 -0.0126889
--0.528861 -0.305338 0.0116093
-
--0.549443 -0.244628 -0.0126889
--0.528861 -0.305338 -0.0116093
--0.554789 -0.247008 -0.0373825
-
--0.533498 -0.308015 -0.034202
--0.554789 -0.247008 -0.0373825
--0.528861 -0.305338 -0.0116093
-
--0.554789 -0.247008 -0.0373825
--0.533498 -0.308015 -0.034202
--0.565194 -0.251641 -0.0600609
-
--0.542523 -0.313226 -0.0549509
--0.565194 -0.251641 -0.0600609
--0.533498 -0.308015 -0.034202
-
--0.565194 -0.251641 -0.0600609
--0.542523 -0.313226 -0.0549509
--0.580096 -0.258275 -0.0795014
-
--0.555448 -0.320688 -0.0727374
--0.580096 -0.258275 -0.0795014
--0.542523 -0.313226 -0.0549509
-
--0.580096 -0.258275 -0.0795014
--0.555448 -0.320688 -0.0727374
--0.598692 -0.266555 -0.0946559
-
--0.571577 -0.33 -0.0866025
--0.598692 -0.266555 -0.0946559
--0.555448 -0.320688 -0.0727374
-
--0.598692 -0.266555 -0.0946559
--0.571577 -0.33 -0.0866025
--0.61998 -0.276033 -0.104708
-
--0.59004 -0.34066 -0.095799
--0.61998 -0.276033 -0.104708
--0.571577 -0.33 -0.0866025
-
--0.61998 -0.276033 -0.104708
--0.59004 -0.34066 -0.095799
--0.642812 -0.286198 -0.109114
-
--0.609843 -0.352093 -0.0998308
--0.642812 -0.286198 -0.109114
--0.59004 -0.34066 -0.095799
-
--0.642812 -0.286198 -0.109114
--0.609843 -0.352093 -0.0998308
--0.665956 -0.296503 -0.107639
-
--0.629916 -0.363682 -0.0984808
--0.665956 -0.296503 -0.107639
--0.609843 -0.352093 -0.0998308
-
--0.665956 -0.296503 -0.107639
--0.629916 -0.363682 -0.0984808
--0.688166 -0.306391 -0.10036
-
--0.64918 -0.374804 -0.0918216
--0.688166 -0.306391 -0.10036
--0.629916 -0.363682 -0.0984808
-
--0.688166 -0.306391 -0.10036
--0.64918 -0.374804 -0.0918216
--0.708243 -0.31533 -0.0876715
-
--0.666593 -0.384858 -0.0802123
--0.708243 -0.31533 -0.0876715
--0.64918 -0.374804 -0.0918216
-
--0.708243 -0.31533 -0.0876715
--0.666593 -0.384858 -0.0802123
--0.725107 -0.322838 -0.0702562
-
--0.681219 -0.393302 -0.0642788
--0.725107 -0.322838 -0.0702562
--0.666593 -0.384858 -0.0802123
-
--0.725107 -0.322838 -0.0702562
--0.681219 -0.393302 -0.0642788
--0.737846 -0.32851 -0.0490534
-
--0.692269 -0.399682 -0.0448799
--0.737846 -0.32851 -0.0490534
--0.681219 -0.393302 -0.0642788
-
--0.737846 -0.32851 -0.0490534
--0.692269 -0.399682 -0.0448799
--0.745776 -0.332041 -0.0252061
-
--0.699146 -0.403652 -0.0230616
--0.745776 -0.332041 -0.0252061
--0.692269 -0.399682 -0.0448799
-
--0.745776 -0.332041 -0.0252061
--0.699146 -0.403652 -0.0230616
--0.748467 -0.333239 0
-
--0.701481 -0.405 0
--0.748467 -0.333239 0
--0.699146 -0.403652 -0.0230616
-
--0.701481 -0.405 0
--0.662827 -0.481572 0
--0.699146 -0.403652 0.0230616
-
--0.660444 -0.47984 0.0252061
--0.699146 -0.403652 0.0230616
--0.662827 -0.481572 0
-
--0.699146 -0.403652 0.0230616
--0.660444 -0.47984 0.0252061
--0.692269 -0.399682 0.0448799
-
--0.653421 -0.474739 0.0490534
--0.692269 -0.399682 0.0448799
--0.660444 -0.47984 0.0252061
-
--0.692269 -0.399682 0.0448799
--0.653421 -0.474739 0.0490534
--0.681219 -0.393302 0.0642788
-
--0.64214 -0.466542 0.0702562
--0.681219 -0.393302 0.0642788
--0.653421 -0.474739 0.0490534
-
--0.681219 -0.393302 0.0642788
--0.64214 -0.466542 0.0702562
--0.666593 -0.384858 0.0802123
-
--0.627206 -0.455692 0.0876715
--0.666593 -0.384858 0.0802123
--0.64214 -0.466542 0.0702562
-
--0.666593 -0.384858 0.0802123
--0.627206 -0.455692 0.0876715
--0.64918 -0.374804 0.0918216
-
--0.609425 -0.442773 0.10036
--0.64918 -0.374804 0.0918216
--0.627206 -0.455692 0.0876715
-
--0.64918 -0.374804 0.0918216
--0.609425 -0.442773 0.10036
--0.629916 -0.363682 0.0984808
-
--0.589757 -0.428483 0.107639
--0.629916 -0.363682 0.0984808
--0.609425 -0.442773 0.10036
-
--0.629916 -0.363682 0.0984808
--0.589757 -0.428483 0.107639
--0.609843 -0.352093 0.0998308
-
--0.569261 -0.413592 0.109114
--0.609843 -0.352093 0.0998308
--0.589757 -0.428483 0.107639
-
--0.609843 -0.352093 0.0998308
--0.569261 -0.413592 0.109114
--0.59004 -0.34066 0.095799
-
--0.549042 -0.398902 0.104708
--0.59004 -0.34066 0.095799
--0.569261 -0.413592 0.109114
-
--0.59004 -0.34066 0.095799
--0.549042 -0.398902 0.104708
--0.571577 -0.33 0.0866025
-
--0.53019 -0.385205 0.0946559
--0.571577 -0.33 0.0866025
--0.549042 -0.398902 0.104708
-
--0.571577 -0.33 0.0866025
--0.53019 -0.385205 0.0946559
--0.555448 -0.320688 0.0727374
-
--0.513721 -0.37324 0.0795014
--0.555448 -0.320688 0.0727374
--0.53019 -0.385205 0.0946559
-
--0.555448 -0.320688 0.0727374
--0.513721 -0.37324 0.0795014
--0.542523 -0.313226 0.0549509
-
--0.500524 -0.363652 0.0600609
--0.542523 -0.313226 0.0549509
--0.513721 -0.37324 0.0795014
-
--0.542523 -0.313226 0.0549509
--0.500524 -0.363652 0.0600609
--0.533498 -0.308015 0.034202
-
--0.49131 -0.356957 0.0373825
--0.533498 -0.308015 0.034202
--0.500524 -0.363652 0.0600609
-
--0.533498 -0.308015 0.034202
--0.49131 -0.356957 0.0373825
--0.528861 -0.305338 0.0116093
-
--0.486575 -0.353517 0.0126889
--0.528861 -0.305338 0.0116093
--0.49131 -0.356957 0.0373825
-
--0.528861 -0.305338 0.0116093
--0.486575 -0.353517 0.0126889
--0.528861 -0.305338 -0.0116093
-
--0.486575 -0.353517 -0.0126889
--0.528861 -0.305338 -0.0116093
--0.486575 -0.353517 0.0126889
-
--0.528861 -0.305338 -0.0116093
--0.486575 -0.353517 -0.0126889
--0.533498 -0.308015 -0.034202
-
--0.49131 -0.356957 -0.0373825
--0.533498 -0.308015 -0.034202
--0.486575 -0.353517 -0.0126889
-
--0.533498 -0.308015 -0.034202
--0.49131 -0.356957 -0.0373825
--0.542523 -0.313226 -0.0549509
-
--0.500524 -0.363652 -0.0600609
--0.542523 -0.313226 -0.0549509
--0.49131 -0.356957 -0.0373825
-
--0.542523 -0.313226 -0.0549509
--0.500524 -0.363652 -0.0600609
--0.555448 -0.320688 -0.0727374
-
--0.513721 -0.37324 -0.0795014
--0.555448 -0.320688 -0.0727374
--0.500524 -0.363652 -0.0600609
-
--0.555448 -0.320688 -0.0727374
--0.513721 -0.37324 -0.0795014
--0.571577 -0.33 -0.0866025
-
--0.53019 -0.385205 -0.0946559
--0.571577 -0.33 -0.0866025
--0.513721 -0.37324 -0.0795014
-
--0.571577 -0.33 -0.0866025
--0.53019 -0.385205 -0.0946559
--0.59004 -0.34066 -0.095799
-
--0.549042 -0.398902 -0.104708
--0.59004 -0.34066 -0.095799
--0.53019 -0.385205 -0.0946559
-
--0.59004 -0.34066 -0.095799
--0.549042 -0.398902 -0.104708
--0.609843 -0.352093 -0.0998308
-
--0.569261 -0.413592 -0.109114
--0.609843 -0.352093 -0.0998308
--0.549042 -0.398902 -0.104708
-
--0.609843 -0.352093 -0.0998308
--0.569261 -0.413592 -0.109114
--0.629916 -0.363682 -0.0984808
-
--0.589757 -0.428483 -0.107639
--0.629916 -0.363682 -0.0984808
--0.569261 -0.413592 -0.109114
-
--0.629916 -0.363682 -0.0984808
--0.589757 -0.428483 -0.107639
--0.64918 -0.374804 -0.0918216
-
--0.609425 -0.442773 -0.10036
--0.64918 -0.374804 -0.0918216
--0.589757 -0.428483 -0.107639
-
--0.64918 -0.374804 -0.0918216
--0.609425 -0.442773 -0.10036
--0.666593 -0.384858 -0.0802123
-
--0.627206 -0.455692 -0.0876715
--0.666593 -0.384858 -0.0802123
--0.609425 -0.442773 -0.10036
-
--0.666593 -0.384858 -0.0802123
--0.627206 -0.455692 -0.0876715
--0.681219 -0.393302 -0.0642788
-
--0.64214 -0.466542 -0.0702562
--0.681219 -0.393302 -0.0642788
--0.627206 -0.455692 -0.0876715
-
--0.681219 -0.393302 -0.0642788
--0.64214 -0.466542 -0.0702562
--0.692269 -0.399682 -0.0448799
-
--0.653421 -0.474739 -0.0490534
--0.692269 -0.399682 -0.0448799
--0.64214 -0.466542 -0.0702562
-
--0.692269 -0.399682 -0.0448799
--0.653421 -0.474739 -0.0490534
--0.699146 -0.403652 -0.0230616
-
--0.660444 -0.47984 -0.0252061
--0.699146 -0.403652 -0.0230616
--0.653421 -0.474739 -0.0490534
-
--0.699146 -0.403652 -0.0230616
--0.660444 -0.47984 -0.0252061
--0.701481 -0.405 0
-
--0.662827 -0.481572 0
--0.701481 -0.405 0
--0.660444 -0.47984 -0.0252061
-
--0.662827 -0.481572 0
--0.628914 -0.566276 0
--0.660444 -0.47984 0.0252061
-
--0.626184 -0.563818 0.0314299
--0.660444 -0.47984 0.0252061
--0.628914 -0.566276 0
-
--0.660444 -0.47984 0.0252061
--0.626184 -0.563818 0.0314299
--0.653421 -0.474739 0.0490534
-
--0.618141 -0.556576 0.0611654
--0.653421 -0.474739 0.0490534
--0.626184 -0.563818 0.0314299
-
--0.653421 -0.474739 0.0490534
--0.618141 -0.556576 0.0611654
--0.64214 -0.466542 0.0702562
-
--0.605218 -0.544941 0.0876034
--0.64214 -0.466542 0.0702562
--0.618141 -0.556576 0.0611654
-
--0.64214 -0.466542 0.0702562
--0.605218 -0.544941 0.0876034
--0.627206 -0.455692 0.0876715
-
--0.588114 -0.52954 0.109319
--0.627206 -0.455692 0.0876715
--0.605218 -0.544941 0.0876034
-
--0.627206 -0.455692 0.0876715
--0.588114 -0.52954 0.109319
--0.609425 -0.442773 0.10036
-
--0.567748 -0.511203 0.125141
--0.609425 -0.442773 0.10036
--0.588114 -0.52954 0.109319
-
--0.609425 -0.442773 0.10036
--0.567748 -0.511203 0.125141
--0.589757 -0.428483 0.107639
-
--0.54522 -0.490918 0.134216
--0.589757 -0.428483 0.107639
--0.567748 -0.511203 0.125141
-
--0.589757 -0.428483 0.107639
--0.54522 -0.490918 0.134216
--0.569261 -0.413592 0.109114
-
--0.521744 -0.46978 0.136056
--0.569261 -0.413592 0.109114
--0.54522 -0.490918 0.134216
-
--0.569261 -0.413592 0.109114
--0.521744 -0.46978 0.136056
--0.549042 -0.398902 0.104708
-
--0.498585 -0.448928 0.130561
--0.549042 -0.398902 0.104708
--0.521744 -0.46978 0.136056
-
--0.549042 -0.398902 0.104708
--0.498585 -0.448928 0.130561
--0.53019 -0.385205 0.0946559
-
--0.476992 -0.429486 0.118028
--0.53019 -0.385205 0.0946559
--0.498585 -0.448928 0.130561
-
--0.53019 -0.385205 0.0946559
--0.476992 -0.429486 0.118028
--0.513721 -0.37324 0.0795014
-
--0.45813 -0.412502 0.0991314
--0.513721 -0.37324 0.0795014
--0.476992 -0.429486 0.118028
-
--0.513721 -0.37324 0.0795014
--0.45813 -0.412502 0.0991314
--0.500524 -0.363652 0.0600609
-
--0.443014 -0.398892 0.0748908
--0.500524 -0.363652 0.0600609
--0.45813 -0.412502 0.0991314
-
--0.500524 -0.363652 0.0600609
--0.443014 -0.398892 0.0748908
--0.49131 -0.356957 0.0373825
-
--0.43246 -0.389389 0.0466128
--0.49131 -0.356957 0.0373825
--0.443014 -0.398892 0.0748908
-
--0.49131 -0.356957 0.0373825
--0.43246 -0.389389 0.0466128
--0.486575 -0.353517 0.0126889
-
--0.427037 -0.384506 0.0158219
--0.486575 -0.353517 0.0126889
--0.43246 -0.389389 0.0466128
-
--0.486575 -0.353517 0.0126889
--0.427037 -0.384506 0.0158219
--0.486575 -0.353517 -0.0126889
-
--0.427037 -0.384506 -0.0158219
--0.486575 -0.353517 -0.0126889
--0.427037 -0.384506 0.0158219
-
--0.486575 -0.353517 -0.0126889
--0.427037 -0.384506 -0.0158219
--0.49131 -0.356957 -0.0373825
-
--0.43246 -0.389389 -0.0466128
--0.49131 -0.356957 -0.0373825
--0.427037 -0.384506 -0.0158219
-
--0.49131 -0.356957 -0.0373825
--0.43246 -0.389389 -0.0466128
--0.500524 -0.363652 -0.0600609
-
--0.443014 -0.398892 -0.0748908
--0.500524 -0.363652 -0.0600609
--0.43246 -0.389389 -0.0466128
-
--0.500524 -0.363652 -0.0600609
--0.443014 -0.398892 -0.0748908
--0.513721 -0.37324 -0.0795014
-
--0.45813 -0.412502 -0.0991314
--0.513721 -0.37324 -0.0795014
--0.443014 -0.398892 -0.0748908
-
--0.513721 -0.37324 -0.0795014
--0.45813 -0.412502 -0.0991314
--0.53019 -0.385205 -0.0946559
-
--0.476992 -0.429486 -0.118028
--0.53019 -0.385205 -0.0946559
--0.45813 -0.412502 -0.0991314
-
--0.53019 -0.385205 -0.0946559
--0.476992 -0.429486 -0.118028
--0.549042 -0.398902 -0.104708
-
--0.498585 -0.448928 -0.130561
--0.549042 -0.398902 -0.104708
--0.476992 -0.429486 -0.118028
-
--0.549042 -0.398902 -0.104708
--0.498585 -0.448928 -0.130561
--0.569261 -0.413592 -0.109114
-
--0.521744 -0.46978 -0.136056
--0.569261 -0.413592 -0.109114
--0.498585 -0.448928 -0.130561
-
--0.569261 -0.413592 -0.109114
--0.521744 -0.46978 -0.136056
--0.589757 -0.428483 -0.107639
-
--0.54522 -0.490918 -0.134216
--0.589757 -0.428483 -0.107639
--0.521744 -0.46978 -0.136056
-
--0.589757 -0.428483 -0.107639
--0.54522 -0.490918 -0.134216
--0.609425 -0.442773 -0.10036
-
--0.567748 -0.511203 -0.125141
--0.609425 -0.442773 -0.10036
--0.54522 -0.490918 -0.134216
-
--0.609425 -0.442773 -0.10036
--0.567748 -0.511203 -0.125141
--0.627206 -0.455692 -0.0876715
-
--0.588114 -0.52954 -0.109319
--0.627206 -0.455692 -0.0876715
--0.567748 -0.511203 -0.125141
-
--0.627206 -0.455692 -0.0876715
--0.588114 -0.52954 -0.109319
--0.64214 -0.466542 -0.0702562
-
--0.605218 -0.544941 -0.0876034
--0.64214 -0.466542 -0.0702562
--0.588114 -0.52954 -0.109319
-
--0.64214 -0.466542 -0.0702562
--0.605218 -0.544941 -0.0876034
--0.653421 -0.474739 -0.0490534
-
--0.618141 -0.556576 -0.0611654
--0.653421 -0.474739 -0.0490534
--0.605218 -0.544941 -0.0876034
-
--0.653421 -0.474739 -0.0490534
--0.618141 -0.556576 -0.0611654
--0.660444 -0.47984 -0.0252061
-
--0.626184 -0.563818 -0.0314299
--0.660444 -0.47984 -0.0252061
--0.618141 -0.556576 -0.0611654
-
--0.660444 -0.47984 -0.0252061
--0.626184 -0.563818 -0.0314299
--0.662827 -0.481572 0
-
--0.628914 -0.566276 0
--0.662827 -0.481572 0
--0.626184 -0.563818 -0.0314299
-
--0.628914 -0.566276 0
--0.594403 -0.660151 0
--0.626184 -0.563818 0.0314299
-
--0.591186 -0.656579 0.0411236
--0.626184 -0.563818 0.0314299
--0.594403 -0.660151 0
-
--0.626184 -0.563818 0.0314299
--0.591186 -0.656579 0.0411236
--0.618141 -0.556576 0.0611654
-
--0.581711 -0.646055 0.0800302
--0.618141 -0.556576 0.0611654
--0.591186 -0.656579 0.0411236
-
--0.618141 -0.556576 0.0611654
--0.581711 -0.646055 0.0800302
--0.605218 -0.544941 0.0876034
-
--0.566487 -0.629148 0.114622
--0.605218 -0.544941 0.0876034
--0.581711 -0.646055 0.0800302
-
--0.605218 -0.544941 0.0876034
--0.566487 -0.629148 0.114622
--0.588114 -0.52954 0.109319
-
--0.546336 -0.606767 0.143035
--0.588114 -0.52954 0.109319
--0.566487 -0.629148 0.114622
-
--0.588114 -0.52954 0.109319
--0.546336 -0.606767 0.143035
--0.567748 -0.511203 0.125141
-
--0.522343 -0.580121 0.163737
--0.567748 -0.511203 0.125141
--0.546336 -0.606767 0.143035
-
--0.567748 -0.511203 0.125141
--0.522343 -0.580121 0.163737
--0.54522 -0.490918 0.134216
-
--0.495802 -0.550644 0.175612
--0.54522 -0.490918 0.134216
--0.522343 -0.580121 0.163737
-
--0.54522 -0.490918 0.134216
--0.495802 -0.550644 0.175612
--0.521744 -0.46978 0.136056
-
--0.468145 -0.519928 0.178019
--0.521744 -0.46978 0.136056
--0.495802 -0.550644 0.175612
-
--0.521744 -0.46978 0.136056
--0.468145 -0.519928 0.178019
--0.498585 -0.448928 0.130561
-
--0.440861 -0.489626 0.170829
--0.498585 -0.448928 0.130561
--0.468145 -0.519928 0.178019
-
--0.498585 -0.448928 0.130561
--0.440861 -0.489626 0.170829
--0.476992 -0.429486 0.118028
-
--0.415423 -0.461374 0.15443
--0.476992 -0.429486 0.118028
--0.440861 -0.489626 0.170829
-
--0.476992 -0.429486 0.118028
--0.415423 -0.461374 0.15443
--0.45813 -0.412502 0.0991314
-
--0.3932 -0.436693 0.129706
--0.45813 -0.412502 0.0991314
--0.415423 -0.461374 0.15443
-
--0.45813 -0.412502 0.0991314
--0.3932 -0.436693 0.129706
--0.443014 -0.398892 0.0748908
-
--0.375392 -0.416916 0.0979889
--0.443014 -0.398892 0.0748908
--0.3932 -0.436693 0.129706
-
--0.443014 -0.398892 0.0748908
--0.375392 -0.416916 0.0979889
--0.43246 -0.389389 0.0466128
-
--0.362959 -0.403106 0.0609893
--0.43246 -0.389389 0.0466128
--0.375392 -0.416916 0.0979889
-
--0.43246 -0.389389 0.0466128
--0.362959 -0.403106 0.0609893
--0.427037 -0.384506 0.0158219
-
--0.35657 -0.396011 0.0207018
--0.427037 -0.384506 0.0158219
--0.362959 -0.403106 0.0609893
-
--0.427037 -0.384506 0.0158219
--0.35657 -0.396011 0.0207018
--0.427037 -0.384506 -0.0158219
-
--0.35657 -0.396011 -0.0207018
--0.427037 -0.384506 -0.0158219
--0.35657 -0.396011 0.0207018
-
--0.427037 -0.384506 -0.0158219
--0.35657 -0.396011 -0.0207018
--0.43246 -0.389389 -0.0466128
-
--0.362959 -0.403106 -0.0609893
--0.43246 -0.389389 -0.0466128
--0.35657 -0.396011 -0.0207018
-
--0.43246 -0.389389 -0.0466128
--0.362959 -0.403106 -0.0609893
--0.443014 -0.398892 -0.0748908
-
--0.375392 -0.416916 -0.0979889
--0.443014 -0.398892 -0.0748908
--0.362959 -0.403106 -0.0609893
-
--0.443014 -0.398892 -0.0748908
--0.375392 -0.416916 -0.0979889
--0.45813 -0.412502 -0.0991314
-
--0.3932 -0.436693 -0.129706
--0.45813 -0.412502 -0.0991314
--0.375392 -0.416916 -0.0979889
-
--0.45813 -0.412502 -0.0991314
--0.3932 -0.436693 -0.129706
--0.476992 -0.429486 -0.118028
-
--0.415423 -0.461374 -0.15443
--0.476992 -0.429486 -0.118028
--0.3932 -0.436693 -0.129706
-
--0.476992 -0.429486 -0.118028
--0.415423 -0.461374 -0.15443
--0.498585 -0.448928 -0.130561
-
--0.440861 -0.489626 -0.170829
--0.498585 -0.448928 -0.130561
--0.415423 -0.461374 -0.15443
-
--0.498585 -0.448928 -0.130561
--0.440861 -0.489626 -0.170829
--0.521744 -0.46978 -0.136056
-
--0.468145 -0.519928 -0.178019
--0.521744 -0.46978 -0.136056
--0.440861 -0.489626 -0.170829
-
--0.521744 -0.46978 -0.136056
--0.468145 -0.519928 -0.178019
--0.54522 -0.490918 -0.134216
-
--0.495802 -0.550644 -0.175612
--0.54522 -0.490918 -0.134216
--0.468145 -0.519928 -0.178019
-
--0.54522 -0.490918 -0.134216
--0.495802 -0.550644 -0.175612
--0.567748 -0.511203 -0.125141
-
--0.522343 -0.580121 -0.163737
--0.567748 -0.511203 -0.125141
--0.495802 -0.550644 -0.175612
-
--0.567748 -0.511203 -0.125141
--0.522343 -0.580121 -0.163737
--0.588114 -0.52954 -0.109319
-
--0.546336 -0.606767 -0.143035
--0.588114 -0.52954 -0.109319
--0.522343 -0.580121 -0.163737
-
--0.588114 -0.52954 -0.109319
--0.546336 -0.606767 -0.143035
--0.605218 -0.544941 -0.0876034
-
--0.566487 -0.629148 -0.114622
--0.605218 -0.544941 -0.0876034
--0.546336 -0.606767 -0.143035
-
--0.605218 -0.544941 -0.0876034
--0.566487 -0.629148 -0.114622
--0.618141 -0.556576 -0.0611654
-
--0.581711 -0.646055 -0.0800302
--0.618141 -0.556576 -0.0611654
--0.566487 -0.629148 -0.114622
-
--0.618141 -0.556576 -0.0611654
--0.581711 -0.646055 -0.0800302
--0.626184 -0.563818 -0.0314299
-
--0.591186 -0.656579 -0.0411236
--0.626184 -0.563818 -0.0314299
--0.581711 -0.646055 -0.0800302
-
--0.626184 -0.563818 -0.0314299
--0.591186 -0.656579 -0.0411236
--0.628914 -0.566276 0
-
--0.594403 -0.660151 0
--0.628914 -0.566276 0
--0.591186 -0.656579 -0.0411236
-
--0.594403 -0.660151 0
--0.553274 -0.761517 0
--0.591186 -0.656579 0.0411236
-
--0.54961 -0.756473 0.0533384
--0.591186 -0.656579 0.0411236
--0.553274 -0.761517 0
-
--0.591186 -0.656579 0.0411236
--0.54961 -0.756473 0.0533384
--0.581711 -0.646055 0.0800302
-
--0.538814 -0.741614 0.103801
--0.581711 -0.646055 0.0800302
--0.54961 -0.756473 0.0533384
-
--0.581711 -0.646055 0.0800302
--0.538814 -0.741614 0.103801
--0.566487 -0.629148 0.114622
-
--0.521469 -0.71774 0.148668
--0.566487 -0.629148 0.114622
--0.538814 -0.741614 0.103801
-
--0.566487 -0.629148 0.114622
--0.521469 -0.71774 0.148668
--0.546336 -0.606767 0.143035
-
--0.498509 -0.686139 0.18552
--0.546336 -0.606767 0.143035
--0.521469 -0.71774 0.148668
-
--0.546336 -0.606767 0.143035
--0.498509 -0.686139 0.18552
--0.522343 -0.580121 0.163737
-
--0.471173 -0.648515 0.212371
--0.522343 -0.580121 0.163737
--0.498509 -0.686139 0.18552
-
--0.522343 -0.580121 0.163737
--0.471173 -0.648515 0.212371
--0.495802 -0.550644 0.175612
-
--0.440934 -0.606894 0.227773
--0.495802 -0.550644 0.175612
--0.471173 -0.648515 0.212371
-
--0.495802 -0.550644 0.175612
--0.440934 -0.606894 0.227773
--0.468145 -0.519928 0.178019
-
--0.409423 -0.563522 0.230895
--0.468145 -0.519928 0.178019
--0.440934 -0.606894 0.227773
-
--0.468145 -0.519928 0.178019
--0.409423 -0.563522 0.230895
--0.440861 -0.489626 0.170829
-
--0.378338 -0.520737 0.22157
--0.440861 -0.489626 0.170829
--0.409423 -0.563522 0.230895
-
--0.440861 -0.489626 0.170829
--0.378338 -0.520737 0.22157
--0.415423 -0.461374 0.15443
-
--0.349354 -0.480845 0.2003
--0.415423 -0.461374 0.15443
--0.378338 -0.520737 0.22157
-
--0.415423 -0.461374 0.15443
--0.349354 -0.480845 0.2003
--0.3932 -0.436693 0.129706
-
--0.324035 -0.445996 0.168232
--0.3932 -0.436693 0.129706
--0.349354 -0.480845 0.2003
-
--0.3932 -0.436693 0.129706
--0.324035 -0.445996 0.168232
--0.375392 -0.416916 0.0979889
-
--0.303746 -0.41807 0.127094
--0.375392 -0.416916 0.0979889
--0.324035 -0.445996 0.168232
-
--0.375392 -0.416916 0.0979889
--0.303746 -0.41807 0.127094
--0.362959 -0.403106 0.0609893
-
--0.289579 -0.398572 0.0791047
--0.362959 -0.403106 0.0609893
--0.303746 -0.41807 0.127094
-
--0.362959 -0.403106 0.0609893
--0.289579 -0.398572 0.0791047
--0.35657 -0.396011 0.0207018
-
--0.2823 -0.388552 0.0268508
--0.35657 -0.396011 0.0207018
--0.289579 -0.398572 0.0791047
-
--0.35657 -0.396011 0.0207018
--0.2823 -0.388552 0.0268508
--0.35657 -0.396011 -0.0207018
-
--0.2823 -0.388552 -0.0268508
--0.35657 -0.396011 -0.0207018
--0.2823 -0.388552 0.0268508
-
--0.35657 -0.396011 -0.0207018
--0.2823 -0.388552 -0.0268508
--0.362959 -0.403106 -0.0609893
-
--0.289579 -0.398572 -0.0791047
--0.362959 -0.403106 -0.0609893
--0.2823 -0.388552 -0.0268508
-
--0.362959 -0.403106 -0.0609893
--0.289579 -0.398572 -0.0791047
--0.375392 -0.416916 -0.0979889
-
--0.303746 -0.41807 -0.127094
--0.375392 -0.416916 -0.0979889
--0.289579 -0.398572 -0.0791047
-
--0.375392 -0.416916 -0.0979889
--0.303746 -0.41807 -0.127094
--0.3932 -0.436693 -0.129706
-
--0.324035 -0.445996 -0.168232
--0.3932 -0.436693 -0.129706
--0.303746 -0.41807 -0.127094
-
--0.3932 -0.436693 -0.129706
--0.324035 -0.445996 -0.168232
--0.415423 -0.461374 -0.15443
-
--0.349354 -0.480845 -0.2003
--0.415423 -0.461374 -0.15443
--0.324035 -0.445996 -0.168232
-
--0.415423 -0.461374 -0.15443
--0.349354 -0.480845 -0.2003
--0.440861 -0.489626 -0.170829
-
--0.378338 -0.520737 -0.22157
--0.440861 -0.489626 -0.170829
--0.349354 -0.480845 -0.2003
-
--0.440861 -0.489626 -0.170829
--0.378338 -0.520737 -0.22157
--0.468145 -0.519928 -0.178019
-
--0.409423 -0.563522 -0.230895
--0.468145 -0.519928 -0.178019
--0.378338 -0.520737 -0.22157
-
--0.468145 -0.519928 -0.178019
--0.409423 -0.563522 -0.230895
--0.495802 -0.550644 -0.175612
-
--0.440934 -0.606894 -0.227773
--0.495802 -0.550644 -0.175612
--0.409423 -0.563522 -0.230895
-
--0.495802 -0.550644 -0.175612
--0.440934 -0.606894 -0.227773
--0.522343 -0.580121 -0.163737
-
--0.471173 -0.648515 -0.212371
--0.522343 -0.580121 -0.163737
--0.440934 -0.606894 -0.227773
-
--0.522343 -0.580121 -0.163737
--0.471173 -0.648515 -0.212371
--0.546336 -0.606767 -0.143035
-
--0.498509 -0.686139 -0.18552
--0.546336 -0.606767 -0.143035
--0.471173 -0.648515 -0.212371
-
--0.546336 -0.606767 -0.143035
--0.498509 -0.686139 -0.18552
--0.566487 -0.629148 -0.114622
-
--0.521469 -0.71774 -0.148668
--0.566487 -0.629148 -0.114622
--0.498509 -0.686139 -0.18552
-
--0.566487 -0.629148 -0.114622
--0.521469 -0.71774 -0.148668
--0.581711 -0.646055 -0.0800302
-
--0.538814 -0.741614 -0.103801
--0.581711 -0.646055 -0.0800302
--0.521469 -0.71774 -0.148668
-
--0.581711 -0.646055 -0.0800302
--0.538814 -0.741614 -0.103801
--0.591186 -0.656579 -0.0411236
-
--0.54961 -0.756473 -0.0533384
--0.591186 -0.656579 -0.0411236
--0.538814 -0.741614 -0.103801
-
--0.591186 -0.656579 -0.0411236
--0.54961 -0.756473 -0.0533384
--0.594403 -0.660151 0
-
--0.553274 -0.761517 0
--0.594403 -0.660151 0
--0.54961 -0.756473 -0.0533384
-
--0.553274 -0.761517 0
--0.5 -0.866025 0
--0.54961 -0.756473 0.0533384
-
--0.496092 -0.859256 0.0668786
--0.54961 -0.756473 0.0533384
--0.5 -0.866025 0
-
--0.54961 -0.756473 0.0533384
--0.496092 -0.859256 0.0668786
--0.538814 -0.741614 0.103801
-
--0.484577 -0.839312 0.130152
--0.538814 -0.741614 0.103801
--0.496092 -0.859256 0.0668786
-
--0.538814 -0.741614 0.103801
--0.484577 -0.839312 0.130152
--0.521469 -0.71774 0.148668
-
--0.466076 -0.807268 0.186408
--0.521469 -0.71774 0.148668
--0.484577 -0.839312 0.130152
-
--0.521469 -0.71774 0.148668
--0.466076 -0.807268 0.186408
--0.498509 -0.686139 0.18552
-
--0.441588 -0.764853 0.232616
--0.498509 -0.686139 0.18552
--0.466076 -0.807268 0.186408
-
--0.498509 -0.686139 0.18552
--0.441588 -0.764853 0.232616
--0.471173 -0.648515 0.212371
-
--0.412432 -0.714352 0.266283
--0.471173 -0.648515 0.212371
--0.441588 -0.764853 0.232616
-
--0.471173 -0.648515 0.212371
--0.412432 -0.714352 0.266283
--0.440934 -0.606894 0.227773
-
--0.380179 -0.658489 0.285594
--0.440934 -0.606894 0.227773
--0.412432 -0.714352 0.266283
-
--0.440934 -0.606894 0.227773
--0.380179 -0.658489 0.285594
--0.409423 -0.563522 0.230895
-
--0.346569 -0.600275 0.289509
--0.409423 -0.563522 0.230895
--0.380179 -0.658489 0.285594
-
--0.409423 -0.563522 0.230895
--0.346569 -0.600275 0.289509
--0.378338 -0.520737 0.22157
-
--0.313414 -0.542848 0.277817
--0.378338 -0.520737 0.22157
--0.346569 -0.600275 0.289509
-
--0.378338 -0.520737 0.22157
--0.313414 -0.542848 0.277817
--0.349354 -0.480845 0.2003
-
--0.2825 -0.489304 0.251147
--0.349354 -0.480845 0.2003
--0.313414 -0.542848 0.277817
-
--0.349354 -0.480845 0.2003
--0.2825 -0.489304 0.251147
--0.324035 -0.445996 0.168232
-
--0.255495 -0.44253 0.210938
--0.324035 -0.445996 0.168232
--0.2825 -0.489304 0.251147
-
--0.324035 -0.445996 0.168232
--0.255495 -0.44253 0.210938
--0.303746 -0.41807 0.127094
-
--0.233854 -0.405047 0.159358
--0.303746 -0.41807 0.127094
--0.255495 -0.44253 0.210938
-
--0.303746 -0.41807 0.127094
--0.233854 -0.405047 0.159358
--0.289579 -0.398572 0.0791047
-
--0.218745 -0.378877 0.0991858
--0.289579 -0.398572 0.0791047
--0.233854 -0.405047 0.159358
-
--0.289579 -0.398572 0.0791047
--0.218745 -0.378877 0.0991858
--0.2823 -0.388552 0.0268508
-
--0.21098 -0.365429 0.0336669
--0.2823 -0.388552 0.0268508
--0.218745 -0.378877 0.0991858
-
--0.2823 -0.388552 0.0268508
--0.21098 -0.365429 0.0336669
--0.2823 -0.388552 -0.0268508
-
--0.21098 -0.365429 -0.0336669
--0.2823 -0.388552 -0.0268508
--0.21098 -0.365429 0.0336669
-
--0.2823 -0.388552 -0.0268508
--0.21098 -0.365429 -0.0336669
--0.289579 -0.398572 -0.0791047
-
--0.218745 -0.378877 -0.0991858
--0.289579 -0.398572 -0.0791047
--0.21098 -0.365429 -0.0336669
-
--0.289579 -0.398572 -0.0791047
--0.218745 -0.378877 -0.0991858
--0.303746 -0.41807 -0.127094
-
--0.233854 -0.405047 -0.159358
--0.303746 -0.41807 -0.127094
--0.218745 -0.378877 -0.0991858
-
--0.303746 -0.41807 -0.127094
--0.233854 -0.405047 -0.159358
--0.324035 -0.445996 -0.168232
-
--0.255495 -0.44253 -0.210938
--0.324035 -0.445996 -0.168232
--0.233854 -0.405047 -0.159358
-
--0.324035 -0.445996 -0.168232
--0.255495 -0.44253 -0.210938
--0.349354 -0.480845 -0.2003
-
--0.2825 -0.489304 -0.251147
--0.349354 -0.480845 -0.2003
--0.255495 -0.44253 -0.210938
-
--0.349354 -0.480845 -0.2003
--0.2825 -0.489304 -0.251147
--0.378338 -0.520737 -0.22157
-
--0.313414 -0.542848 -0.277817
--0.378338 -0.520737 -0.22157
--0.2825 -0.489304 -0.251147
-
--0.378338 -0.520737 -0.22157
--0.313414 -0.542848 -0.277817
--0.409423 -0.563522 -0.230895
-
--0.346569 -0.600275 -0.289509
--0.409423 -0.563522 -0.230895
--0.313414 -0.542848 -0.277817
-
--0.409423 -0.563522 -0.230895
--0.346569 -0.600275 -0.289509
--0.440934 -0.606894 -0.227773
-
--0.380179 -0.658489 -0.285594
--0.440934 -0.606894 -0.227773
--0.346569 -0.600275 -0.289509
-
--0.440934 -0.606894 -0.227773
--0.380179 -0.658489 -0.285594
--0.471173 -0.648515 -0.212371
-
--0.412432 -0.714352 -0.266283
--0.471173 -0.648515 -0.212371
--0.380179 -0.658489 -0.285594
-
--0.471173 -0.648515 -0.212371
--0.412432 -0.714352 -0.266283
--0.498509 -0.686139 -0.18552
-
--0.441588 -0.764853 -0.232616
--0.498509 -0.686139 -0.18552
--0.412432 -0.714352 -0.266283
-
--0.498509 -0.686139 -0.18552
--0.441588 -0.764853 -0.232616
--0.521469 -0.71774 -0.148668
-
--0.466076 -0.807268 -0.186408
--0.521469 -0.71774 -0.148668
--0.441588 -0.764853 -0.232616
-
--0.521469 -0.71774 -0.148668
--0.466076 -0.807268 -0.186408
--0.538814 -0.741614 -0.103801
-
--0.484577 -0.839312 -0.130152
--0.538814 -0.741614 -0.103801
--0.466076 -0.807268 -0.186408
-
--0.538814 -0.741614 -0.103801
--0.484577 -0.839312 -0.130152
--0.54961 -0.756473 -0.0533384
-
--0.496092 -0.859256 -0.0668786
--0.54961 -0.756473 -0.0533384
--0.484577 -0.839312 -0.130152
-
--0.54961 -0.756473 -0.0533384
--0.496092 -0.859256 -0.0668786
--0.553274 -0.761517 0
-
--0.5 -0.866025 0
--0.553274 -0.761517 0
--0.496092 -0.859256 -0.0668786
-
--0.5 -0.866025 0
--0.430617 -0.967183 0
--0.496092 -0.859256 0.0668786
-
--0.426794 -0.958596 0.0804188
--0.496092 -0.859256 0.0668786
--0.430617 -0.967183 0
-
--0.496092 -0.859256 0.0668786
--0.426794 -0.958596 0.0804188
--0.484577 -0.839312 0.130152
-
--0.415531 -0.933298 0.156502
--0.484577 -0.839312 0.130152
--0.426794 -0.958596 0.0804188
-
--0.484577 -0.839312 0.130152
--0.415531 -0.933298 0.156502
--0.466076 -0.807268 0.186408
-
--0.397435 -0.892653 0.224149
--0.466076 -0.807268 0.186408
--0.415531 -0.933298 0.156502
-
--0.466076 -0.807268 0.186408
--0.397435 -0.892653 0.224149
--0.441588 -0.764853 0.232616
-
--0.373481 -0.838851 0.279711
--0.441588 -0.764853 0.232616
--0.397435 -0.892653 0.224149
-
--0.441588 -0.764853 0.232616
--0.373481 -0.838851 0.279711
--0.412432 -0.714352 0.266283
-
--0.344961 -0.774795 0.320194
--0.412432 -0.714352 0.266283
--0.373481 -0.838851 0.279711
-
--0.412432 -0.714352 0.266283
--0.344961 -0.774795 0.320194
--0.380179 -0.658489 0.285594
-
--0.313412 -0.703936 0.343415
--0.380179 -0.658489 0.285594
--0.344961 -0.774795 0.320194
-
--0.380179 -0.658489 0.285594
--0.313412 -0.703936 0.343415
--0.346569 -0.600275 0.289509
-
--0.280536 -0.630094 0.348123
--0.346569 -0.600275 0.289509
--0.313412 -0.703936 0.343415
-
--0.346569 -0.600275 0.289509
--0.280536 -0.630094 0.348123
--0.313414 -0.542848 0.277817
-
--0.248104 -0.557252 0.334064
--0.313414 -0.542848 0.277817
--0.280536 -0.630094 0.348123
-
--0.313414 -0.542848 0.277817
--0.248104 -0.557252 0.334064
--0.2825 -0.489304 0.251147
-
--0.217866 -0.489335 0.301995
--0.2825 -0.489304 0.251147
--0.248104 -0.557252 0.334064
-
--0.2825 -0.489304 0.251147
--0.217866 -0.489335 0.301995
--0.255495 -0.44253 0.210938
-
--0.19145 -0.430004 0.253645
--0.255495 -0.44253 0.210938
--0.217866 -0.489335 0.301995
-
--0.255495 -0.44253 0.210938
--0.19145 -0.430004 0.253645
--0.233854 -0.405047 0.159358
-
--0.170282 -0.38246 0.191621
--0.233854 -0.405047 0.159358
--0.19145 -0.430004 0.253645
-
--0.233854 -0.405047 0.159358
--0.170282 -0.38246 0.191621
--0.218745 -0.378877 0.0991858
-
--0.155502 -0.349264 0.119267
--0.218745 -0.378877 0.0991858
--0.170282 -0.38246 0.191621
-
--0.218745 -0.378877 0.0991858
--0.155502 -0.349264 0.119267
--0.21098 -0.365429 0.0336669
-
--0.147908 -0.332206 0.0404831
--0.21098 -0.365429 0.0336669
--0.155502 -0.349264 0.119267
-
--0.21098 -0.365429 0.0336669
--0.147908 -0.332206 0.0404831
--0.21098 -0.365429 -0.0336669
-
--0.147908 -0.332206 -0.0404831
--0.21098 -0.365429 -0.0336669
--0.147908 -0.332206 0.0404831
-
--0.21098 -0.365429 -0.0336669
--0.147908 -0.332206 -0.0404831
--0.218745 -0.378877 -0.0991858
-
--0.155502 -0.349264 -0.119267
--0.218745 -0.378877 -0.0991858
--0.147908 -0.332206 -0.0404831
-
--0.218745 -0.378877 -0.0991858
--0.155502 -0.349264 -0.119267
--0.233854 -0.405047 -0.159358
-
--0.170282 -0.38246 -0.191621
--0.233854 -0.405047 -0.159358
--0.155502 -0.349264 -0.119267
-
--0.233854 -0.405047 -0.159358
--0.170282 -0.38246 -0.191621
--0.255495 -0.44253 -0.210938
-
--0.19145 -0.430004 -0.253645
--0.255495 -0.44253 -0.210938
--0.170282 -0.38246 -0.191621
-
--0.255495 -0.44253 -0.210938
--0.19145 -0.430004 -0.253645
--0.2825 -0.489304 -0.251147
-
--0.217866 -0.489335 -0.301995
--0.2825 -0.489304 -0.251147
--0.19145 -0.430004 -0.253645
-
--0.2825 -0.489304 -0.251147
--0.217866 -0.489335 -0.301995
--0.313414 -0.542848 -0.277817
-
--0.248104 -0.557252 -0.334064
--0.313414 -0.542848 -0.277817
--0.217866 -0.489335 -0.301995
-
--0.313414 -0.542848 -0.277817
--0.248104 -0.557252 -0.334064
--0.346569 -0.600275 -0.289509
-
--0.280536 -0.630094 -0.348123
--0.346569 -0.600275 -0.289509
--0.248104 -0.557252 -0.334064
-
--0.346569 -0.600275 -0.289509
--0.280536 -0.630094 -0.348123
--0.380179 -0.658489 -0.285594
-
--0.313412 -0.703936 -0.343415
--0.380179 -0.658489 -0.285594
--0.280536 -0.630094 -0.348123
-
--0.380179 -0.658489 -0.285594
--0.313412 -0.703936 -0.343415
--0.412432 -0.714352 -0.266283
-
--0.344961 -0.774795 -0.320194
--0.412432 -0.714352 -0.266283
--0.313412 -0.703936 -0.343415
-
--0.412432 -0.714352 -0.266283
--0.344961 -0.774795 -0.320194
--0.441588 -0.764853 -0.232616
-
--0.373481 -0.838851 -0.279711
--0.441588 -0.764853 -0.232616
--0.344961 -0.774795 -0.320194
-
--0.441588 -0.764853 -0.232616
--0.373481 -0.838851 -0.279711
--0.466076 -0.807268 -0.186408
-
--0.397435 -0.892653 -0.224149
--0.466076 -0.807268 -0.186408
--0.373481 -0.838851 -0.279711
-
--0.466076 -0.807268 -0.186408
--0.397435 -0.892653 -0.224149
--0.484577 -0.839312 -0.130152
-
--0.415531 -0.933298 -0.156502
--0.484577 -0.839312 -0.130152
--0.397435 -0.892653 -0.224149
-
--0.484577 -0.839312 -0.130152
--0.415531 -0.933298 -0.156502
--0.496092 -0.859256 -0.0668786
-
--0.426794 -0.958596 -0.0804188
--0.496092 -0.859256 -0.0668786
--0.415531 -0.933298 -0.156502
-
--0.496092 -0.859256 -0.0668786
--0.426794 -0.958596 -0.0804188
--0.5 -0.866025 0
-
--0.430617 -0.967183 0
--0.5 -0.866025 0
--0.426794 -0.958596 -0.0804188
-
--0.430617 -0.967183 0
--0.343528 -1.05727 0
--0.426794 -0.958596 0.0804188
-
--0.340182 -1.04697 0.0926336
--0.426794 -0.958596 0.0804188
--0.343528 -1.05727 0
-
--0.426794 -0.958596 0.0804188
--0.340182 -1.04697 0.0926336
--0.415531 -0.933298 0.156502
-
--0.330325 -1.01664 0.180273
--0.415531 -0.933298 0.156502
--0.340182 -1.04697 0.0926336
-
--0.415531 -0.933298 0.156502
--0.330325 -1.01664 0.180273
--0.397435 -0.892653 0.224149
-
--0.314488 -0.967894 0.258194
--0.397435 -0.892653 0.224149
--0.330325 -1.01664 0.180273
-
--0.397435 -0.892653 0.224149
--0.314488 -0.967894 0.258194
--0.373481 -0.838851 0.279711
-
--0.293525 -0.903376 0.322196
--0.373481 -0.838851 0.279711
--0.314488 -0.967894 0.258194
-
--0.373481 -0.838851 0.279711
--0.293525 -0.903376 0.322196
--0.344961 -0.774795 0.320194
-
--0.268566 -0.82656 0.368828
--0.344961 -0.774795 0.320194
--0.293525 -0.903376 0.322196
-
--0.344961 -0.774795 0.320194
--0.268566 -0.82656 0.368828
--0.313412 -0.703936 0.343415
-
--0.240956 -0.741587 0.395577
--0.313412 -0.703936 0.343415
--0.268566 -0.82656 0.368828
-
--0.313412 -0.703936 0.343415
--0.240956 -0.741587 0.395577
--0.280536 -0.630094 0.348123
-
--0.212185 -0.653038 0.401
--0.280536 -0.630094 0.348123
--0.240956 -0.741587 0.395577
-
--0.280536 -0.630094 0.348123
--0.212185 -0.653038 0.401
--0.248104 -0.557252 0.334064
-
--0.183802 -0.565686 0.384804
--0.248104 -0.557252 0.334064
--0.212185 -0.653038 0.401
-
--0.248104 -0.557252 0.334064
--0.183802 -0.565686 0.384804
--0.217866 -0.489335 0.301995
-
--0.157339 -0.48424 0.347864
--0.217866 -0.489335 0.301995
--0.183802 -0.565686 0.384804
-
--0.217866 -0.489335 0.301995
--0.157339 -0.48424 0.347864
--0.19145 -0.430004 0.253645
-
--0.134222 -0.413092 0.292171
--0.19145 -0.430004 0.253645
--0.157339 -0.48424 0.347864
-
--0.19145 -0.430004 0.253645
--0.134222 -0.413092 0.292171
--0.170282 -0.38246 0.191621
-
--0.115697 -0.356077 0.220726
--0.170282 -0.38246 0.191621
--0.134222 -0.413092 0.292171
-
--0.170282 -0.38246 0.191621
--0.115697 -0.356077 0.220726
--0.155502 -0.349264 0.119267
-
--0.102762 -0.316269 0.137382
--0.155502 -0.349264 0.119267
--0.115697 -0.356077 0.220726
-
--0.155502 -0.349264 0.119267
--0.102762 -0.316269 0.137382
--0.147908 -0.332206 0.0404831
-
--0.0961157 -0.295814 0.0466321
--0.147908 -0.332206 0.0404831
--0.102762 -0.316269 0.137382
-
--0.147908 -0.332206 0.0404831
--0.0961157 -0.295814 0.0466321
--0.147908 -0.332206 -0.0404831
-
--0.0961157 -0.295814 -0.0466321
--0.147908 -0.332206 -0.0404831
--0.0961157 -0.295814 0.0466321
-
--0.147908 -0.332206 -0.0404831
--0.0961157 -0.295814 -0.0466321
--0.155502 -0.349264 -0.119267
-
--0.102762 -0.316269 -0.137382
--0.155502 -0.349264 -0.119267
--0.0961157 -0.295814 -0.0466321
-
--0.155502 -0.349264 -0.119267
--0.102762 -0.316269 -0.137382
--0.170282 -0.38246 -0.191621
-
--0.115697 -0.356077 -0.220726
--0.170282 -0.38246 -0.191621
--0.102762 -0.316269 -0.137382
-
--0.170282 -0.38246 -0.191621
--0.115697 -0.356077 -0.220726
--0.19145 -0.430004 -0.253645
-
--0.134222 -0.413092 -0.292171
--0.19145 -0.430004 -0.253645
--0.115697 -0.356077 -0.220726
-
--0.19145 -0.430004 -0.253645
--0.134222 -0.413092 -0.292171
--0.217866 -0.489335 -0.301995
-
--0.157339 -0.48424 -0.347864
--0.217866 -0.489335 -0.301995
--0.134222 -0.413092 -0.292171
-
--0.217866 -0.489335 -0.301995
--0.157339 -0.48424 -0.347864
--0.248104 -0.557252 -0.334064
-
--0.183802 -0.565686 -0.384804
--0.248104 -0.557252 -0.334064
--0.157339 -0.48424 -0.347864
-
--0.248104 -0.557252 -0.334064
--0.183802 -0.565686 -0.384804
--0.280536 -0.630094 -0.348123
-
--0.212185 -0.653038 -0.401
--0.280536 -0.630094 -0.348123
--0.183802 -0.565686 -0.384804
-
--0.280536 -0.630094 -0.348123
--0.212185 -0.653038 -0.401
--0.313412 -0.703936 -0.343415
-
--0.240956 -0.741587 -0.395577
--0.313412 -0.703936 -0.343415
--0.212185 -0.653038 -0.401
-
--0.313412 -0.703936 -0.343415
--0.240956 -0.741587 -0.395577
--0.344961 -0.774795 -0.320194
-
--0.268566 -0.82656 -0.368828
--0.344961 -0.774795 -0.320194
--0.240956 -0.741587 -0.395577
-
--0.344961 -0.774795 -0.320194
--0.268566 -0.82656 -0.368828
--0.373481 -0.838851 -0.279711
-
--0.293525 -0.903376 -0.322196
--0.373481 -0.838851 -0.279711
--0.268566 -0.82656 -0.368828
-
--0.373481 -0.838851 -0.279711
--0.293525 -0.903376 -0.322196
--0.397435 -0.892653 -0.224149
-
--0.314488 -0.967894 -0.258194
--0.397435 -0.892653 -0.224149
--0.293525 -0.903376 -0.322196
-
--0.397435 -0.892653 -0.224149
--0.314488 -0.967894 -0.258194
--0.415531 -0.933298 -0.156502
-
--0.330325 -1.01664 -0.180273
--0.415531 -0.933298 -0.156502
--0.314488 -0.967894 -0.258194
-
--0.415531 -0.933298 -0.156502
--0.330325 -1.01664 -0.180273
--0.426794 -0.958596 -0.0804188
-
--0.340182 -1.04697 -0.0926336
--0.426794 -0.958596 -0.0804188
--0.330325 -1.01664 -0.180273
-
--0.426794 -0.958596 -0.0804188
--0.340182 -1.04697 -0.0926336
--0.430617 -0.967183 0
-
--0.343528 -1.05727 0
--0.430617 -0.967183 0
--0.340182 -1.04697 -0.0926336
-
--0.343528 -1.05727 0
--0.23987 -1.1285 0
--0.340182 -1.04697 0.0926336
-
--0.237384 -1.1168 0.102327
--0.340182 -1.04697 0.0926336
--0.23987 -1.1285 0
-
--0.340182 -1.04697 0.0926336
--0.237384 -1.1168 0.102327
--0.330325 -1.01664 0.180273
-
--0.230058 -1.08234 0.199138
--0.330325 -1.01664 0.180273
--0.237384 -1.1168 0.102327
-
--0.330325 -1.01664 0.180273
--0.230058 -1.08234 0.199138
--0.314488 -0.967894 0.258194
-
--0.218287 -1.02696 0.285213
--0.314488 -0.967894 0.258194
--0.230058 -1.08234 0.199138
-
--0.314488 -0.967894 0.258194
--0.218287 -1.02696 0.285213
--0.293525 -0.903376 0.322196
-
--0.202707 -0.953662 0.355913
--0.293525 -0.903376 0.322196
--0.218287 -1.02696 0.285213
-
--0.293525 -0.903376 0.322196
--0.202707 -0.953662 0.355913
--0.268566 -0.82656 0.368828
-
--0.184157 -0.86639 0.407425
--0.268566 -0.82656 0.368828
--0.202707 -0.953662 0.355913
-
--0.268566 -0.82656 0.368828
--0.184157 -0.86639 0.407425
--0.240956 -0.741587 0.395577
-
--0.163637 -0.769851 0.436972
--0.240956 -0.741587 0.395577
--0.184157 -0.86639 0.407425
-
--0.240956 -0.741587 0.395577
--0.163637 -0.769851 0.436972
--0.212185 -0.653038 0.401
-
--0.142253 -0.669249 0.442963
--0.212185 -0.653038 0.401
--0.163637 -0.769851 0.436972
-
--0.212185 -0.653038 0.401
--0.142253 -0.669249 0.442963
--0.183802 -0.565686 0.384804
-
--0.121159 -0.570007 0.425073
--0.183802 -0.565686 0.384804
--0.142253 -0.669249 0.442963
-
--0.183802 -0.565686 0.384804
--0.121159 -0.570007 0.425073
--0.157339 -0.48424 0.347864
-
--0.101491 -0.477476 0.384267
--0.157339 -0.48424 0.347864
--0.121159 -0.570007 0.425073
-
--0.157339 -0.48424 0.347864
--0.101491 -0.477476 0.384267
--0.134222 -0.413092 0.292171
-
--0.0843093 -0.396644 0.322745
--0.134222 -0.413092 0.292171
--0.101491 -0.477476 0.384267
-
--0.134222 -0.413092 0.292171
--0.0843093 -0.396644 0.322745
--0.115697 -0.356077 0.220726
-
--0.0705409 -0.331869 0.243824
--0.115697 -0.356077 0.220726
--0.0843093 -0.396644 0.322745
-
--0.115697 -0.356077 0.220726
--0.0705409 -0.331869 0.243824
--0.102762 -0.316269 0.137382
-
--0.0609277 -0.286642 0.151759
--0.102762 -0.316269 0.137382
--0.0705409 -0.331869 0.243824
-
--0.102762 -0.316269 0.137382
--0.0609277 -0.286642 0.151759
--0.0961157 -0.295814 0.0466321
-
--0.0559879 -0.263402 0.051512
--0.0961157 -0.295814 0.0466321
--0.0609277 -0.286642 0.151759
-
--0.0961157 -0.295814 0.0466321
--0.0559879 -0.263402 0.051512
--0.0961157 -0.295814 -0.0466321
-
--0.0559879 -0.263402 -0.051512
--0.0961157 -0.295814 -0.0466321
--0.0559879 -0.263402 0.051512
-
--0.0961157 -0.295814 -0.0466321
--0.0559879 -0.263402 -0.051512
--0.102762 -0.316269 -0.137382
-
--0.0609277 -0.286642 -0.151759
--0.102762 -0.316269 -0.137382
--0.0559879 -0.263402 -0.051512
-
--0.102762 -0.316269 -0.137382
--0.0609277 -0.286642 -0.151759
--0.115697 -0.356077 -0.220726
-
--0.0705409 -0.331869 -0.243824
--0.115697 -0.356077 -0.220726
--0.0609277 -0.286642 -0.151759
-
--0.115697 -0.356077 -0.220726
--0.0705409 -0.331869 -0.243824
--0.134222 -0.413092 -0.292171
-
--0.0843093 -0.396644 -0.322745
--0.134222 -0.413092 -0.292171
--0.0705409 -0.331869 -0.243824
-
--0.134222 -0.413092 -0.292171
--0.0843093 -0.396644 -0.322745
--0.157339 -0.48424 -0.347864
-
--0.101491 -0.477476 -0.384267
--0.157339 -0.48424 -0.347864
--0.0843093 -0.396644 -0.322745
-
--0.157339 -0.48424 -0.347864
--0.101491 -0.477476 -0.384267
--0.183802 -0.565686 -0.384804
-
--0.121159 -0.570007 -0.425073
--0.183802 -0.565686 -0.384804
--0.101491 -0.477476 -0.384267
-
--0.183802 -0.565686 -0.384804
--0.121159 -0.570007 -0.425073
--0.212185 -0.653038 -0.401
-
--0.142253 -0.669249 -0.442963
--0.212185 -0.653038 -0.401
--0.121159 -0.570007 -0.425073
-
--0.212185 -0.653038 -0.401
--0.142253 -0.669249 -0.442963
--0.240956 -0.741587 -0.395577
-
--0.163637 -0.769851 -0.436972
--0.240956 -0.741587 -0.395577
--0.142253 -0.669249 -0.442963
-
--0.240956 -0.741587 -0.395577
--0.163637 -0.769851 -0.436972
--0.268566 -0.82656 -0.368828
-
--0.184157 -0.86639 -0.407425
--0.268566 -0.82656 -0.368828
--0.163637 -0.769851 -0.436972
-
--0.268566 -0.82656 -0.368828
--0.184157 -0.86639 -0.407425
--0.293525 -0.903376 -0.322196
-
--0.202707 -0.953662 -0.355913
--0.293525 -0.903376 -0.322196
--0.184157 -0.86639 -0.407425
-
--0.293525 -0.903376 -0.322196
--0.202707 -0.953662 -0.355913
--0.314488 -0.967894 -0.258194
-
--0.218287 -1.02696 -0.285213
--0.314488 -0.967894 -0.258194
--0.202707 -0.953662 -0.355913
-
--0.314488 -0.967894 -0.258194
--0.218287 -1.02696 -0.285213
--0.330325 -1.01664 -0.180273
-
--0.230058 -1.08234 -0.199138
--0.330325 -1.01664 -0.180273
--0.218287 -1.02696 -0.285213
-
--0.330325 -1.01664 -0.180273
--0.230058 -1.08234 -0.199138
--0.340182 -1.04697 -0.0926336
-
--0.237384 -1.1168 -0.102327
--0.340182 -1.04697 -0.0926336
--0.230058 -1.08234 -0.199138
-
--0.340182 -1.04697 -0.0926336
--0.237384 -1.1168 -0.102327
--0.343528 -1.05727 0
-
--0.23987 -1.1285 0
--0.343528 -1.05727 0
--0.237384 -1.1168 -0.102327
-
--0.23987 -1.1285 0
--0.123417 -1.17423 0
--0.237384 -1.1168 0.102327
-
--0.122091 -1.16161 0.108551
--0.237384 -1.1168 0.102327
--0.123417 -1.17423 0
-
--0.237384 -1.1168 0.102327
--0.122091 -1.16161 0.108551
--0.230058 -1.08234 0.199138
-
--0.118183 -1.12444 0.21125
--0.230058 -1.08234 0.199138
--0.122091 -1.16161 0.108551
-
--0.230058 -1.08234 0.199138
--0.118183 -1.12444 0.21125
--0.218287 -1.02696 0.285213
-
--0.111906 -1.06471 0.302561
--0.218287 -1.02696 0.285213
--0.118183 -1.12444 0.21125
-
--0.218287 -1.02696 0.285213
--0.111906 -1.06471 0.302561
--0.202707 -0.953662 0.355913
-
--0.103596 -0.985654 0.37756
--0.202707 -0.953662 0.355913
--0.111906 -1.06471 0.302561
-
--0.202707 -0.953662 0.355913
--0.103596 -0.985654 0.37756
--0.184157 -0.86639 0.407425
-
--0.093703 -0.891524 0.432205
--0.184157 -0.86639 0.407425
--0.103596 -0.985654 0.37756
-
--0.184157 -0.86639 0.407425
--0.093703 -0.891524 0.432205
--0.163637 -0.769851 0.436972
-
--0.082759 -0.787399 0.46355
--0.163637 -0.769851 0.436972
--0.093703 -0.891524 0.432205
-
--0.163637 -0.769851 0.436972
--0.082759 -0.787399 0.46355
--0.142253 -0.669249 0.442963
-
--0.0713544 -0.678892 0.469904
--0.142253 -0.669249 0.442963
--0.082759 -0.787399 0.46355
-
--0.142253 -0.669249 0.442963
--0.0713544 -0.678892 0.469904
--0.121159 -0.570007 0.425073
-
--0.060104 -0.571852 0.450926
--0.121159 -0.570007 0.425073
--0.0713544 -0.678892 0.469904
-
--0.121159 -0.570007 0.425073
--0.060104 -0.571852 0.450926
--0.101491 -0.477476 0.384267
-
--0.0496144 -0.472049 0.407639
--0.101491 -0.477476 0.384267
--0.060104 -0.571852 0.450926
-
--0.101491 -0.477476 0.384267
--0.0496144 -0.472049 0.407639
--0.0843093 -0.396644 0.322745
-
--0.040451 -0.384866 0.342375
--0.0843093 -0.396644 0.322745
--0.0496144 -0.472049 0.407639
-
--0.0843093 -0.396644 0.322745
--0.040451 -0.384866 0.342375
--0.0705409 -0.331869 0.243824
-
--0.0331079 -0.315 0.258654
--0.0705409 -0.331869 0.243824
--0.040451 -0.384866 0.342375
-
--0.0705409 -0.331869 0.243824
--0.0331079 -0.315 0.258654
--0.0609277 -0.286642 0.151759
-
--0.0279808 -0.26622 0.160989
--0.0609277 -0.286642 0.151759
--0.0331079 -0.315 0.258654
-
--0.0609277 -0.286642 0.151759
--0.0279808 -0.26622 0.160989
--0.0559879 -0.263402 0.051512
-
--0.0253463 -0.241154 0.054645
--0.0559879 -0.263402 0.051512
--0.0279808 -0.26622 0.160989
-
--0.0559879 -0.263402 0.051512
--0.0253463 -0.241154 0.054645
--0.0559879 -0.263402 -0.051512
-
--0.0253463 -0.241154 -0.054645
--0.0559879 -0.263402 -0.051512
--0.0253463 -0.241154 0.054645
-
--0.0559879 -0.263402 -0.051512
--0.0253463 -0.241154 -0.054645
--0.0609277 -0.286642 -0.151759
-
--0.0279808 -0.26622 -0.160989
--0.0609277 -0.286642 -0.151759
--0.0253463 -0.241154 -0.054645
-
--0.0609277 -0.286642 -0.151759
--0.0279808 -0.26622 -0.160989
--0.0705409 -0.331869 -0.243824
-
--0.0331079 -0.315 -0.258654
--0.0705409 -0.331869 -0.243824
--0.0279808 -0.26622 -0.160989
-
--0.0705409 -0.331869 -0.243824
--0.0331079 -0.315 -0.258654
--0.0843093 -0.396644 -0.322745
-
--0.040451 -0.384866 -0.342375
--0.0843093 -0.396644 -0.322745
--0.0331079 -0.315 -0.258654
-
--0.0843093 -0.396644 -0.322745
--0.040451 -0.384866 -0.342375
--0.101491 -0.477476 -0.384267
-
--0.0496144 -0.472049 -0.407639
--0.101491 -0.477476 -0.384267
--0.040451 -0.384866 -0.342375
-
--0.101491 -0.477476 -0.384267
--0.0496144 -0.472049 -0.407639
--0.121159 -0.570007 -0.425073
-
--0.060104 -0.571852 -0.450926
--0.121159 -0.570007 -0.425073
--0.0496144 -0.472049 -0.407639
-
--0.121159 -0.570007 -0.425073
--0.060104 -0.571852 -0.450926
--0.142253 -0.669249 -0.442963
-
--0.0713544 -0.678892 -0.469904
--0.142253 -0.669249 -0.442963
--0.060104 -0.571852 -0.450926
-
--0.142253 -0.669249 -0.442963
--0.0713544 -0.678892 -0.469904
--0.163637 -0.769851 -0.436972
-
--0.082759 -0.787399 -0.46355
--0.163637 -0.769851 -0.436972
--0.0713544 -0.678892 -0.469904
-
--0.163637 -0.769851 -0.436972
--0.082759 -0.787399 -0.46355
--0.184157 -0.86639 -0.407425
-
--0.093703 -0.891524 -0.432205
--0.184157 -0.86639 -0.407425
--0.082759 -0.787399 -0.46355
-
--0.184157 -0.86639 -0.407425
--0.093703 -0.891524 -0.432205
--0.202707 -0.953662 -0.355913
-
--0.103596 -0.985654 -0.37756
--0.202707 -0.953662 -0.355913
--0.093703 -0.891524 -0.432205
-
--0.202707 -0.953662 -0.355913
--0.103596 -0.985654 -0.37756
--0.218287 -1.02696 -0.285213
-
--0.111906 -1.06471 -0.302561
--0.218287 -1.02696 -0.285213
--0.103596 -0.985654 -0.37756
-
--0.218287 -1.02696 -0.285213
--0.111906 -1.06471 -0.302561
--0.230058 -1.08234 -0.199138
-
--0.118183 -1.12444 -0.21125
--0.230058 -1.08234 -0.199138
--0.111906 -1.06471 -0.302561
-
--0.230058 -1.08234 -0.199138
--0.118183 -1.12444 -0.21125
--0.237384 -1.1168 -0.102327
-
--0.122091 -1.16161 -0.108551
--0.237384 -1.1168 -0.102327
--0.118183 -1.12444 -0.21125
-
--0.237384 -1.1168 -0.102327
--0.122091 -1.16161 -0.108551
--0.23987 -1.1285 0
-
--0.123417 -1.17423 0
--0.23987 -1.1285 0
--0.122091 -1.16161 -0.108551
-
--0.123417 -1.17423 0
-0 -1.19 0
--0.122091 -1.16161 0.108551
-
-0 -1.17706 0.110696
--0.122091 -1.16161 0.108551
-0 -1.19 0
-
--0.122091 -1.16161 0.108551
-0 -1.17706 0.110696
--0.118183 -1.12444 0.21125
-
-0 -1.13894 0.215424
--0.118183 -1.12444 0.21125
-0 -1.17706 0.110696
-
--0.118183 -1.12444 0.21125
-0 -1.13894 0.215424
--0.111906 -1.06471 0.302561
-
-0 -1.0777 0.308538
--0.111906 -1.06471 0.302561
-0 -1.13894 0.215424
-
--0.111906 -1.06471 0.302561
-0 -1.0777 0.308538
--0.103596 -0.985654 0.37756
-
-0 -0.996636 0.385019
--0.103596 -0.985654 0.37756
-0 -1.0777 0.308538
-
--0.103596 -0.985654 0.37756
-0 -0.996636 0.385019
--0.093703 -0.891524 0.432205
-
-0 -0.900118 0.440744
--0.093703 -0.891524 0.432205
-0 -0.996636 0.385019
-
--0.093703 -0.891524 0.432205
-0 -0.900118 0.440744
--0.082759 -0.787399 0.46355
-
-0 -0.793351 0.472708
--0.082759 -0.787399 0.46355
-0 -0.900118 0.440744
-
--0.082759 -0.787399 0.46355
-0 -0.793351 0.472708
--0.0713544 -0.678892 0.469904
-
-0 -0.68209 0.479188
--0.0713544 -0.678892 0.469904
-0 -0.793351 0.472708
-
--0.0713544 -0.678892 0.469904
-0 -0.68209 0.479188
--0.060104 -0.571852 0.450926
-
-0 -0.572334 0.459835
--0.060104 -0.571852 0.450926
-0 -0.68209 0.479188
-
--0.060104 -0.571852 0.450926
-0 -0.572334 0.459835
--0.0496144 -0.472049 0.407639
-
-0 -0.47 0.415692
--0.0496144 -0.472049 0.407639
-0 -0.572334 0.459835
-
--0.0496144 -0.472049 0.407639
-0 -0.47 0.415692
--0.040451 -0.384866 0.342375
-
-0 -0.380604 0.349139
--0.040451 -0.384866 0.342375
-0 -0.47 0.415692
-
--0.040451 -0.384866 0.342375
-0 -0.380604 0.349139
--0.0331079 -0.315 0.258654
-
-0 -0.308966 0.263764
--0.0331079 -0.315 0.258654
-0 -0.380604 0.349139
-
--0.0331079 -0.315 0.258654
-0 -0.308966 0.263764
--0.0279808 -0.26622 0.160989
-
-0 -0.258948 0.16417
--0.0279808 -0.26622 0.160989
-0 -0.308966 0.263764
-
--0.0279808 -0.26622 0.160989
-0 -0.258948 0.16417
--0.0253463 -0.241154 0.054645
-
-0 -0.233246 0.0557246
--0.0253463 -0.241154 0.054645
-0 -0.258948 0.16417
-
--0.0253463 -0.241154 0.054645
-0 -0.233246 0.0557246
--0.0253463 -0.241154 -0.054645
-
-0 -0.233246 -0.0557246
--0.0253463 -0.241154 -0.054645
-0 -0.233246 0.0557246
-
--0.0253463 -0.241154 -0.054645
-0 -0.233246 -0.0557246
--0.0279808 -0.26622 -0.160989
-
-0 -0.258948 -0.16417
--0.0279808 -0.26622 -0.160989
-0 -0.233246 -0.0557246
-
--0.0279808 -0.26622 -0.160989
-0 -0.258948 -0.16417
--0.0331079 -0.315 -0.258654
-
-0 -0.308966 -0.263764
--0.0331079 -0.315 -0.258654
-0 -0.258948 -0.16417
-
--0.0331079 -0.315 -0.258654
-0 -0.308966 -0.263764
--0.040451 -0.384866 -0.342375
-
-0 -0.380604 -0.349139
--0.040451 -0.384866 -0.342375
-0 -0.308966 -0.263764
-
--0.040451 -0.384866 -0.342375
-0 -0.380604 -0.349139
--0.0496144 -0.472049 -0.407639
-
-0 -0.47 -0.415692
--0.0496144 -0.472049 -0.407639
-0 -0.380604 -0.349139
-
--0.0496144 -0.472049 -0.407639
-0 -0.47 -0.415692
--0.060104 -0.571852 -0.450926
-
-0 -0.572334 -0.459835
--0.060104 -0.571852 -0.450926
-0 -0.47 -0.415692
-
--0.060104 -0.571852 -0.450926
-0 -0.572334 -0.459835
--0.0713544 -0.678892 -0.469904
-
-0 -0.68209 -0.479188
--0.0713544 -0.678892 -0.469904
-0 -0.572334 -0.459835
-
--0.0713544 -0.678892 -0.469904
-0 -0.68209 -0.479188
--0.082759 -0.787399 -0.46355
-
-0 -0.793351 -0.472708
--0.082759 -0.787399 -0.46355
-0 -0.68209 -0.479188
-
--0.082759 -0.787399 -0.46355
-0 -0.793351 -0.472708
--0.093703 -0.891524 -0.432205
-
-0 -0.900118 -0.440744
--0.093703 -0.891524 -0.432205
-0 -0.793351 -0.472708
-
--0.093703 -0.891524 -0.432205
-0 -0.900118 -0.440744
--0.103596 -0.985654 -0.37756
-
-0 -0.996636 -0.385019
--0.103596 -0.985654 -0.37756
-0 -0.900118 -0.440744
-
--0.103596 -0.985654 -0.37756
-0 -0.996636 -0.385019
--0.111906 -1.06471 -0.302561
-
-0 -1.0777 -0.308538
--0.111906 -1.06471 -0.302561
-0 -0.996636 -0.385019
-
--0.111906 -1.06471 -0.302561
-0 -1.0777 -0.308538
--0.118183 -1.12444 -0.21125
-
-0 -1.13894 -0.215424
--0.118183 -1.12444 -0.21125
-0 -1.0777 -0.308538
-
--0.118183 -1.12444 -0.21125
-0 -1.13894 -0.215424
--0.122091 -1.16161 -0.108551
-
-0 -1.17706 -0.110696
--0.122091 -1.16161 -0.108551
-0 -1.13894 -0.215424
-
--0.122091 -1.16161 -0.108551
-0 -1.17706 -0.110696
--0.123417 -1.17423 0
-
-0 -1.19 0
--0.123417 -1.17423 0
-0 -1.17706 -0.110696
-
-0 -1.19 0
-0.123417 -1.17423 0
-0 -1.17706 0.110696
-
-0.122091 -1.16161 0.108551
-0 -1.17706 0.110696
-0.123417 -1.17423 0
-
-0 -1.17706 0.110696
-0.122091 -1.16161 0.108551
-0 -1.13894 0.215424
-
-0.118183 -1.12444 0.21125
-0 -1.13894 0.215424
-0.122091 -1.16161 0.108551
-
-0 -1.13894 0.215424
-0.118183 -1.12444 0.21125
-0 -1.0777 0.308538
-
-0.111906 -1.06471 0.302561
-0 -1.0777 0.308538
-0.118183 -1.12444 0.21125
-
-0 -1.0777 0.308538
-0.111906 -1.06471 0.302561
-0 -0.996636 0.385019
-
-0.103596 -0.985654 0.37756
-0 -0.996636 0.385019
-0.111906 -1.06471 0.302561
-
-0 -0.996636 0.385019
-0.103596 -0.985654 0.37756
-0 -0.900118 0.440744
-
-0.093703 -0.891524 0.432205
-0 -0.900118 0.440744
-0.103596 -0.985654 0.37756
-
-0 -0.900118 0.440744
-0.093703 -0.891524 0.432205
-0 -0.793351 0.472708
-
-0.082759 -0.787399 0.46355
-0 -0.793351 0.472708
-0.093703 -0.891524 0.432205
-
-0 -0.793351 0.472708
-0.082759 -0.787399 0.46355
-0 -0.68209 0.479188
-
-0.0713544 -0.678892 0.469904
-0 -0.68209 0.479188
-0.082759 -0.787399 0.46355
-
-0 -0.68209 0.479188
-0.0713544 -0.678892 0.469904
-0 -0.572334 0.459835
-
-0.060104 -0.571852 0.450926
-0 -0.572334 0.459835
-0.0713544 -0.678892 0.469904
-
-0 -0.572334 0.459835
-0.060104 -0.571852 0.450926
-0 -0.47 0.415692
-
-0.0496144 -0.472049 0.407639
-0 -0.47 0.415692
-0.060104 -0.571852 0.450926
-
-0 -0.47 0.415692
-0.0496144 -0.472049 0.407639
-0 -0.380604 0.349139
-
-0.040451 -0.384866 0.342375
-0 -0.380604 0.349139
-0.0496144 -0.472049 0.407639
-
-0 -0.380604 0.349139
-0.040451 -0.384866 0.342375
-0 -0.308966 0.263764
-
-0.0331079 -0.315 0.258654
-0 -0.308966 0.263764
-0.040451 -0.384866 0.342375
-
-0 -0.308966 0.263764
-0.0331079 -0.315 0.258654
-0 -0.258948 0.16417
-
-0.0279808 -0.26622 0.160989
-0 -0.258948 0.16417
-0.0331079 -0.315 0.258654
-
-0 -0.258948 0.16417
-0.0279808 -0.26622 0.160989
-0 -0.233246 0.0557246
-
-0.0253463 -0.241154 0.054645
-0 -0.233246 0.0557246
-0.0279808 -0.26622 0.160989
-
-0 -0.233246 0.0557246
-0.0253463 -0.241154 0.054645
-0 -0.233246 -0.0557246
-
-0.0253463 -0.241154 -0.054645
-0 -0.233246 -0.0557246
-0.0253463 -0.241154 0.054645
-
-0 -0.233246 -0.0557246
-0.0253463 -0.241154 -0.054645
-0 -0.258948 -0.16417
-
-0.0279808 -0.26622 -0.160989
-0 -0.258948 -0.16417
-0.0253463 -0.241154 -0.054645
-
-0 -0.258948 -0.16417
-0.0279808 -0.26622 -0.160989
-0 -0.308966 -0.263764
-
-0.0331079 -0.315 -0.258654
-0 -0.308966 -0.263764
-0.0279808 -0.26622 -0.160989
-
-0 -0.308966 -0.263764
-0.0331079 -0.315 -0.258654
-0 -0.380604 -0.349139
-
-0.040451 -0.384866 -0.342375
-0 -0.380604 -0.349139
-0.0331079 -0.315 -0.258654
-
-0 -0.380604 -0.349139
-0.040451 -0.384866 -0.342375
-0 -0.47 -0.415692
-
-0.0496144 -0.472049 -0.407639
-0 -0.47 -0.415692
-0.040451 -0.384866 -0.342375
-
-0 -0.47 -0.415692
-0.0496144 -0.472049 -0.407639
-0 -0.572334 -0.459835
-
-0.060104 -0.571852 -0.450926
-0 -0.572334 -0.459835
-0.0496144 -0.472049 -0.407639
-
-0 -0.572334 -0.459835
-0.060104 -0.571852 -0.450926
-0 -0.68209 -0.479188
-
-0.0713544 -0.678892 -0.469904
-0 -0.68209 -0.479188
-0.060104 -0.571852 -0.450926
-
-0 -0.68209 -0.479188
-0.0713544 -0.678892 -0.469904
-0 -0.793351 -0.472708
-
-0.082759 -0.787399 -0.46355
-0 -0.793351 -0.472708
-0.0713544 -0.678892 -0.469904
-
-0 -0.793351 -0.472708
-0.082759 -0.787399 -0.46355
-0 -0.900118 -0.440744
-
-0.093703 -0.891524 -0.432205
-0 -0.900118 -0.440744
-0.082759 -0.787399 -0.46355
-
-0 -0.900118 -0.440744
-0.093703 -0.891524 -0.432205
-0 -0.996636 -0.385019
-
-0.103596 -0.985654 -0.37756
-0 -0.996636 -0.385019
-0.093703 -0.891524 -0.432205
-
-0 -0.996636 -0.385019
-0.103596 -0.985654 -0.37756
-0 -1.0777 -0.308538
-
-0.111906 -1.06471 -0.302561
-0 -1.0777 -0.308538
-0.103596 -0.985654 -0.37756
-
-0 -1.0777 -0.308538
-0.111906 -1.06471 -0.302561
-0 -1.13894 -0.215424
-
-0.118183 -1.12444 -0.21125
-0 -1.13894 -0.215424
-0.111906 -1.06471 -0.302561
-
-0 -1.13894 -0.215424
-0.118183 -1.12444 -0.21125
-0 -1.17706 -0.110696
-
-0.122091 -1.16161 -0.108551
-0 -1.17706 -0.110696
-0.118183 -1.12444 -0.21125
-
-0 -1.17706 -0.110696
-0.122091 -1.16161 -0.108551
-0 -1.19 0
-
-0.123417 -1.17423 0
-0 -1.19 0
-0.122091 -1.16161 -0.108551
-
-0.123417 -1.17423 0
-0.23987 -1.1285 0
-0.122091 -1.16161 0.108551
-
-0.237384 -1.1168 0.102327
-0.122091 -1.16161 0.108551
-0.23987 -1.1285 0
-
-0.122091 -1.16161 0.108551
-0.237384 -1.1168 0.102327
-0.118183 -1.12444 0.21125
-
-0.230058 -1.08234 0.199138
-0.118183 -1.12444 0.21125
-0.237384 -1.1168 0.102327
-
-0.118183 -1.12444 0.21125
-0.230058 -1.08234 0.199138
-0.111906 -1.06471 0.302561
-
-0.218287 -1.02696 0.285213
-0.111906 -1.06471 0.302561
-0.230058 -1.08234 0.199138
-
-0.111906 -1.06471 0.302561
-0.218287 -1.02696 0.285213
-0.103596 -0.985654 0.37756
-
-0.202707 -0.953662 0.355913
-0.103596 -0.985654 0.37756
-0.218287 -1.02696 0.285213
-
-0.103596 -0.985654 0.37756
-0.202707 -0.953662 0.355913
-0.093703 -0.891524 0.432205
-
-0.184157 -0.86639 0.407425
-0.093703 -0.891524 0.432205
-0.202707 -0.953662 0.355913
-
-0.093703 -0.891524 0.432205
-0.184157 -0.86639 0.407425
-0.082759 -0.787399 0.46355
-
-0.163637 -0.769851 0.436972
-0.082759 -0.787399 0.46355
-0.184157 -0.86639 0.407425
-
-0.082759 -0.787399 0.46355
-0.163637 -0.769851 0.436972
-0.0713544 -0.678892 0.469904
-
-0.142253 -0.669249 0.442963
-0.0713544 -0.678892 0.469904
-0.163637 -0.769851 0.436972
-
-0.0713544 -0.678892 0.469904
-0.142253 -0.669249 0.442963
-0.060104 -0.571852 0.450926
-
-0.121159 -0.570007 0.425073
-0.060104 -0.571852 0.450926
-0.142253 -0.669249 0.442963
-
-0.060104 -0.571852 0.450926
-0.121159 -0.570007 0.425073
-0.0496144 -0.472049 0.407639
-
-0.101491 -0.477476 0.384267
-0.0496144 -0.472049 0.407639
-0.121159 -0.570007 0.425073
-
-0.0496144 -0.472049 0.407639
-0.101491 -0.477476 0.384267
-0.040451 -0.384866 0.342375
-
-0.0843093 -0.396644 0.322745
-0.040451 -0.384866 0.342375
-0.101491 -0.477476 0.384267
-
-0.040451 -0.384866 0.342375
-0.0843093 -0.396644 0.322745
-0.0331079 -0.315 0.258654
-
-0.0705409 -0.331869 0.243824
-0.0331079 -0.315 0.258654
-0.0843093 -0.396644 0.322745
-
-0.0331079 -0.315 0.258654
-0.0705409 -0.331869 0.243824
-0.0279808 -0.26622 0.160989
-
-0.0609277 -0.286642 0.151759
-0.0279808 -0.26622 0.160989
-0.0705409 -0.331869 0.243824
-
-0.0279808 -0.26622 0.160989
-0.0609277 -0.286642 0.151759
-0.0253463 -0.241154 0.054645
-
-0.0559879 -0.263402 0.051512
-0.0253463 -0.241154 0.054645
-0.0609277 -0.286642 0.151759
-
-0.0253463 -0.241154 0.054645
-0.0559879 -0.263402 0.051512
-0.0253463 -0.241154 -0.054645
-
-0.0559879 -0.263402 -0.051512
-0.0253463 -0.241154 -0.054645
-0.0559879 -0.263402 0.051512
-
-0.0253463 -0.241154 -0.054645
-0.0559879 -0.263402 -0.051512
-0.0279808 -0.26622 -0.160989
-
-0.0609277 -0.286642 -0.151759
-0.0279808 -0.26622 -0.160989
-0.0559879 -0.263402 -0.051512
-
-0.0279808 -0.26622 -0.160989
-0.0609277 -0.286642 -0.151759
-0.0331079 -0.315 -0.258654
-
-0.0705409 -0.331869 -0.243824
-0.0331079 -0.315 -0.258654
-0.0609277 -0.286642 -0.151759
-
-0.0331079 -0.315 -0.258654
-0.0705409 -0.331869 -0.243824
-0.040451 -0.384866 -0.342375
-
-0.0843093 -0.396644 -0.322745
-0.040451 -0.384866 -0.342375
-0.0705409 -0.331869 -0.243824
-
-0.040451 -0.384866 -0.342375
-0.0843093 -0.396644 -0.322745
-0.0496144 -0.472049 -0.407639
-
-0.101491 -0.477476 -0.384267
-0.0496144 -0.472049 -0.407639
-0.0843093 -0.396644 -0.322745
-
-0.0496144 -0.472049 -0.407639
-0.101491 -0.477476 -0.384267
-0.060104 -0.571852 -0.450926
-
-0.121159 -0.570007 -0.425073
-0.060104 -0.571852 -0.450926
-0.101491 -0.477476 -0.384267
-
-0.060104 -0.571852 -0.450926
-0.121159 -0.570007 -0.425073
-0.0713544 -0.678892 -0.469904
-
-0.142253 -0.669249 -0.442963
-0.0713544 -0.678892 -0.469904
-0.121159 -0.570007 -0.425073
-
-0.0713544 -0.678892 -0.469904
-0.142253 -0.669249 -0.442963
-0.082759 -0.787399 -0.46355
-
-0.163637 -0.769851 -0.436972
-0.082759 -0.787399 -0.46355
-0.142253 -0.669249 -0.442963
-
-0.082759 -0.787399 -0.46355
-0.163637 -0.769851 -0.436972
-0.093703 -0.891524 -0.432205
-
-0.184157 -0.86639 -0.407425
-0.093703 -0.891524 -0.432205
-0.163637 -0.769851 -0.436972
-
-0.093703 -0.891524 -0.432205
-0.184157 -0.86639 -0.407425
-0.103596 -0.985654 -0.37756
-
-0.202707 -0.953662 -0.355913
-0.103596 -0.985654 -0.37756
-0.184157 -0.86639 -0.407425
-
-0.103596 -0.985654 -0.37756
-0.202707 -0.953662 -0.355913
-0.111906 -1.06471 -0.302561
-
-0.218287 -1.02696 -0.285213
-0.111906 -1.06471 -0.302561
-0.202707 -0.953662 -0.355913
-
-0.111906 -1.06471 -0.302561
-0.218287 -1.02696 -0.285213
-0.118183 -1.12444 -0.21125
-
-0.230058 -1.08234 -0.199138
-0.118183 -1.12444 -0.21125
-0.218287 -1.02696 -0.285213
-
-0.118183 -1.12444 -0.21125
-0.230058 -1.08234 -0.199138
-0.122091 -1.16161 -0.108551
-
-0.237384 -1.1168 -0.102327
-0.122091 -1.16161 -0.108551
-0.230058 -1.08234 -0.199138
-
-0.122091 -1.16161 -0.108551
-0.237384 -1.1168 -0.102327
-0.123417 -1.17423 0
-
-0.23987 -1.1285 0
-0.123417 -1.17423 0
-0.237384 -1.1168 -0.102327
-
-0.23987 -1.1285 0
-0.343528 -1.05727 0
-0.237384 -1.1168 0.102327
-
-0.340182 -1.04697 0.0926336
-0.237384 -1.1168 0.102327
-0.343528 -1.05727 0
-
-0.237384 -1.1168 0.102327
-0.340182 -1.04697 0.0926336
-0.230058 -1.08234 0.199138
-
-0.330325 -1.01664 0.180273
-0.230058 -1.08234 0.199138
-0.340182 -1.04697 0.0926336
-
-0.230058 -1.08234 0.199138
-0.330325 -1.01664 0.180273
-0.218287 -1.02696 0.285213
-
-0.314488 -0.967894 0.258194
-0.218287 -1.02696 0.285213
-0.330325 -1.01664 0.180273
-
-0.218287 -1.02696 0.285213
-0.314488 -0.967894 0.258194
-0.202707 -0.953662 0.355913
-
-0.293525 -0.903376 0.322196
-0.202707 -0.953662 0.355913
-0.314488 -0.967894 0.258194
-
-0.202707 -0.953662 0.355913
-0.293525 -0.903376 0.322196
-0.184157 -0.86639 0.407425
-
-0.268566 -0.82656 0.368828
-0.184157 -0.86639 0.407425
-0.293525 -0.903376 0.322196
-
-0.184157 -0.86639 0.407425
-0.268566 -0.82656 0.368828
-0.163637 -0.769851 0.436972
-
-0.240956 -0.741587 0.395577
-0.163637 -0.769851 0.436972
-0.268566 -0.82656 0.368828
-
-0.163637 -0.769851 0.436972
-0.240956 -0.741587 0.395577
-0.142253 -0.669249 0.442963
-
-0.212185 -0.653038 0.401
-0.142253 -0.669249 0.442963
-0.240956 -0.741587 0.395577
-
-0.142253 -0.669249 0.442963
-0.212185 -0.653038 0.401
-0.121159 -0.570007 0.425073
-
-0.183802 -0.565686 0.384804
-0.121159 -0.570007 0.425073
-0.212185 -0.653038 0.401
-
-0.121159 -0.570007 0.425073
-0.183802 -0.565686 0.384804
-0.101491 -0.477476 0.384267
-
-0.157339 -0.48424 0.347864
-0.101491 -0.477476 0.384267
-0.183802 -0.565686 0.384804
-
-0.101491 -0.477476 0.384267
-0.157339 -0.48424 0.347864
-0.0843093 -0.396644 0.322745
-
-0.134222 -0.413092 0.292171
-0.0843093 -0.396644 0.322745
-0.157339 -0.48424 0.347864
-
-0.0843093 -0.396644 0.322745
-0.134222 -0.413092 0.292171
-0.0705409 -0.331869 0.243824
-
-0.115697 -0.356077 0.220726
-0.0705409 -0.331869 0.243824
-0.134222 -0.413092 0.292171
-
-0.0705409 -0.331869 0.243824
-0.115697 -0.356077 0.220726
-0.0609277 -0.286642 0.151759
-
-0.102762 -0.316269 0.137382
-0.0609277 -0.286642 0.151759
-0.115697 -0.356077 0.220726
-
-0.0609277 -0.286642 0.151759
-0.102762 -0.316269 0.137382
-0.0559879 -0.263402 0.051512
-
-0.0961157 -0.295814 0.0466321
-0.0559879 -0.263402 0.051512
-0.102762 -0.316269 0.137382
-
-0.0559879 -0.263402 0.051512
-0.0961157 -0.295814 0.0466321
-0.0559879 -0.263402 -0.051512
-
-0.0961157 -0.295814 -0.0466321
-0.0559879 -0.263402 -0.051512
-0.0961157 -0.295814 0.0466321
-
-0.0559879 -0.263402 -0.051512
-0.0961157 -0.295814 -0.0466321
-0.0609277 -0.286642 -0.151759
-
-0.102762 -0.316269 -0.137382
-0.0609277 -0.286642 -0.151759
-0.0961157 -0.295814 -0.0466321
-
-0.0609277 -0.286642 -0.151759
-0.102762 -0.316269 -0.137382
-0.0705409 -0.331869 -0.243824
-
-0.115697 -0.356077 -0.220726
-0.0705409 -0.331869 -0.243824
-0.102762 -0.316269 -0.137382
-
-0.0705409 -0.331869 -0.243824
-0.115697 -0.356077 -0.220726
-0.0843093 -0.396644 -0.322745
-
-0.134222 -0.413092 -0.292171
-0.0843093 -0.396644 -0.322745
-0.115697 -0.356077 -0.220726
-
-0.0843093 -0.396644 -0.322745
-0.134222 -0.413092 -0.292171
-0.101491 -0.477476 -0.384267
-
-0.157339 -0.48424 -0.347864
-0.101491 -0.477476 -0.384267
-0.134222 -0.413092 -0.292171
-
-0.101491 -0.477476 -0.384267
-0.157339 -0.48424 -0.347864
-0.121159 -0.570007 -0.425073
-
-0.183802 -0.565686 -0.384804
-0.121159 -0.570007 -0.425073
-0.157339 -0.48424 -0.347864
-
-0.121159 -0.570007 -0.425073
-0.183802 -0.565686 -0.384804
-0.142253 -0.669249 -0.442963
-
-0.212185 -0.653038 -0.401
-0.142253 -0.669249 -0.442963
-0.183802 -0.565686 -0.384804
-
-0.142253 -0.669249 -0.442963
-0.212185 -0.653038 -0.401
-0.163637 -0.769851 -0.436972
-
-0.240956 -0.741587 -0.395577
-0.163637 -0.769851 -0.436972
-0.212185 -0.653038 -0.401
-
-0.163637 -0.769851 -0.436972
-0.240956 -0.741587 -0.395577
-0.184157 -0.86639 -0.407425
-
-0.268566 -0.82656 -0.368828
-0.184157 -0.86639 -0.407425
-0.240956 -0.741587 -0.395577
-
-0.184157 -0.86639 -0.407425
-0.268566 -0.82656 -0.368828
-0.202707 -0.953662 -0.355913
-
-0.293525 -0.903376 -0.322196
-0.202707 -0.953662 -0.355913
-0.268566 -0.82656 -0.368828
-
-0.202707 -0.953662 -0.355913
-0.293525 -0.903376 -0.322196
-0.218287 -1.02696 -0.285213
-
-0.314488 -0.967894 -0.258194
-0.218287 -1.02696 -0.285213
-0.293525 -0.903376 -0.322196
-
-0.218287 -1.02696 -0.285213
-0.314488 -0.967894 -0.258194
-0.230058 -1.08234 -0.199138
-
-0.330325 -1.01664 -0.180273
-0.230058 -1.08234 -0.199138
-0.314488 -0.967894 -0.258194
-
-0.230058 -1.08234 -0.199138
-0.330325 -1.01664 -0.180273
-0.237384 -1.1168 -0.102327
-
-0.340182 -1.04697 -0.0926336
-0.237384 -1.1168 -0.102327
-0.330325 -1.01664 -0.180273
-
-0.237384 -1.1168 -0.102327
-0.340182 -1.04697 -0.0926336
-0.23987 -1.1285 0
-
-0.343528 -1.05727 0
-0.23987 -1.1285 0
-0.340182 -1.04697 -0.0926336
-
-0.343528 -1.05727 0
-0.430617 -0.967183 0
-0.340182 -1.04697 0.0926336
-
-0.426794 -0.958596 0.0804188
-0.340182 -1.04697 0.0926336
-0.430617 -0.967183 0
-
-0.340182 -1.04697 0.0926336
-0.426794 -0.958596 0.0804188
-0.330325 -1.01664 0.180273
-
-0.415531 -0.933298 0.156502
-0.330325 -1.01664 0.180273
-0.426794 -0.958596 0.0804188
-
-0.330325 -1.01664 0.180273
-0.415531 -0.933298 0.156502
-0.314488 -0.967894 0.258194
-
-0.397435 -0.892653 0.224149
-0.314488 -0.967894 0.258194
-0.415531 -0.933298 0.156502
-
-0.314488 -0.967894 0.258194
-0.397435 -0.892653 0.224149
-0.293525 -0.903376 0.322196
-
-0.373481 -0.838851 0.279711
-0.293525 -0.903376 0.322196
-0.397435 -0.892653 0.224149
-
-0.293525 -0.903376 0.322196
-0.373481 -0.838851 0.279711
-0.268566 -0.82656 0.368828
-
-0.344961 -0.774795 0.320194
-0.268566 -0.82656 0.368828
-0.373481 -0.838851 0.279711
-
-0.268566 -0.82656 0.368828
-0.344961 -0.774795 0.320194
-0.240956 -0.741587 0.395577
-
-0.313412 -0.703936 0.343415
-0.240956 -0.741587 0.395577
-0.344961 -0.774795 0.320194
-
-0.240956 -0.741587 0.395577
-0.313412 -0.703936 0.343415
-0.212185 -0.653038 0.401
-
-0.280536 -0.630094 0.348123
-0.212185 -0.653038 0.401
-0.313412 -0.703936 0.343415
-
-0.212185 -0.653038 0.401
-0.280536 -0.630094 0.348123
-0.183802 -0.565686 0.384804
-
-0.248104 -0.557252 0.334064
-0.183802 -0.565686 0.384804
-0.280536 -0.630094 0.348123
-
-0.183802 -0.565686 0.384804
-0.248104 -0.557252 0.334064
-0.157339 -0.48424 0.347864
-
-0.217866 -0.489335 0.301995
-0.157339 -0.48424 0.347864
-0.248104 -0.557252 0.334064
-
-0.157339 -0.48424 0.347864
-0.217866 -0.489335 0.301995
-0.134222 -0.413092 0.292171
-
-0.19145 -0.430004 0.253645
-0.134222 -0.413092 0.292171
-0.217866 -0.489335 0.301995
-
-0.134222 -0.413092 0.292171
-0.19145 -0.430004 0.253645
-0.115697 -0.356077 0.220726
-
-0.170282 -0.38246 0.191621
-0.115697 -0.356077 0.220726
-0.19145 -0.430004 0.253645
-
-0.115697 -0.356077 0.220726
-0.170282 -0.38246 0.191621
-0.102762 -0.316269 0.137382
-
-0.155502 -0.349264 0.119267
-0.102762 -0.316269 0.137382
-0.170282 -0.38246 0.191621
-
-0.102762 -0.316269 0.137382
-0.155502 -0.349264 0.119267
-0.0961157 -0.295814 0.0466321
-
-0.147908 -0.332206 0.0404831
-0.0961157 -0.295814 0.0466321
-0.155502 -0.349264 0.119267
-
-0.0961157 -0.295814 0.0466321
-0.147908 -0.332206 0.0404831
-0.0961157 -0.295814 -0.0466321
-
-0.147908 -0.332206 -0.0404831
-0.0961157 -0.295814 -0.0466321
-0.147908 -0.332206 0.0404831
-
-0.0961157 -0.295814 -0.0466321
-0.147908 -0.332206 -0.0404831
-0.102762 -0.316269 -0.137382
-
-0.155502 -0.349264 -0.119267
-0.102762 -0.316269 -0.137382
-0.147908 -0.332206 -0.0404831
-
-0.102762 -0.316269 -0.137382
-0.155502 -0.349264 -0.119267
-0.115697 -0.356077 -0.220726
-
-0.170282 -0.38246 -0.191621
-0.115697 -0.356077 -0.220726
-0.155502 -0.349264 -0.119267
-
-0.115697 -0.356077 -0.220726
-0.170282 -0.38246 -0.191621
-0.134222 -0.413092 -0.292171
-
-0.19145 -0.430004 -0.253645
-0.134222 -0.413092 -0.292171
-0.170282 -0.38246 -0.191621
-
-0.134222 -0.413092 -0.292171
-0.19145 -0.430004 -0.253645
-0.157339 -0.48424 -0.347864
-
-0.217866 -0.489335 -0.301995
-0.157339 -0.48424 -0.347864
-0.19145 -0.430004 -0.253645
-
-0.157339 -0.48424 -0.347864
-0.217866 -0.489335 -0.301995
-0.183802 -0.565686 -0.384804
-
-0.248104 -0.557252 -0.334064
-0.183802 -0.565686 -0.384804
-0.217866 -0.489335 -0.301995
-
-0.183802 -0.565686 -0.384804
-0.248104 -0.557252 -0.334064
-0.212185 -0.653038 -0.401
-
-0.280536 -0.630094 -0.348123
-0.212185 -0.653038 -0.401
-0.248104 -0.557252 -0.334064
-
-0.212185 -0.653038 -0.401
-0.280536 -0.630094 -0.348123
-0.240956 -0.741587 -0.395577
-
-0.313412 -0.703936 -0.343415
-0.240956 -0.741587 -0.395577
-0.280536 -0.630094 -0.348123
-
-0.240956 -0.741587 -0.395577
-0.313412 -0.703936 -0.343415
-0.268566 -0.82656 -0.368828
-
-0.344961 -0.774795 -0.320194
-0.268566 -0.82656 -0.368828
-0.313412 -0.703936 -0.343415
-
-0.268566 -0.82656 -0.368828
-0.344961 -0.774795 -0.320194
-0.293525 -0.903376 -0.322196
-
-0.373481 -0.838851 -0.279711
-0.293525 -0.903376 -0.322196
-0.344961 -0.774795 -0.320194
-
-0.293525 -0.903376 -0.322196
-0.373481 -0.838851 -0.279711
-0.314488 -0.967894 -0.258194
-
-0.397435 -0.892653 -0.224149
-0.314488 -0.967894 -0.258194
-0.373481 -0.838851 -0.279711
-
-0.314488 -0.967894 -0.258194
-0.397435 -0.892653 -0.224149
-0.330325 -1.01664 -0.180273
-
-0.415531 -0.933298 -0.156502
-0.330325 -1.01664 -0.180273
-0.397435 -0.892653 -0.224149
-
-0.330325 -1.01664 -0.180273
-0.415531 -0.933298 -0.156502
-0.340182 -1.04697 -0.0926336
-
-0.426794 -0.958596 -0.0804188
-0.340182 -1.04697 -0.0926336
-0.415531 -0.933298 -0.156502
-
-0.340182 -1.04697 -0.0926336
-0.426794 -0.958596 -0.0804188
-0.343528 -1.05727 0
-
-0.430617 -0.967183 0
-0.343528 -1.05727 0
-0.426794 -0.958596 -0.0804188
-
-0.430617 -0.967183 0
-0.5 -0.866025 0
-0.426794 -0.958596 0.0804188
-
-0.496092 -0.859256 0.0668786
-0.426794 -0.958596 0.0804188
-0.5 -0.866025 0
-
-0.426794 -0.958596 0.0804188
-0.496092 -0.859256 0.0668786
-0.415531 -0.933298 0.156502
-
-0.484577 -0.839312 0.130152
-0.415531 -0.933298 0.156502
-0.496092 -0.859256 0.0668786
-
-0.415531 -0.933298 0.156502
-0.484577 -0.839312 0.130152
-0.397435 -0.892653 0.224149
-
-0.466076 -0.807268 0.186408
-0.397435 -0.892653 0.224149
-0.484577 -0.839312 0.130152
-
-0.397435 -0.892653 0.224149
-0.466076 -0.807268 0.186408
-0.373481 -0.838851 0.279711
-
-0.441588 -0.764853 0.232616
-0.373481 -0.838851 0.279711
-0.466076 -0.807268 0.186408
-
-0.373481 -0.838851 0.279711
-0.441588 -0.764853 0.232616
-0.344961 -0.774795 0.320194
-
-0.412432 -0.714352 0.266283
-0.344961 -0.774795 0.320194
-0.441588 -0.764853 0.232616
-
-0.344961 -0.774795 0.320194
-0.412432 -0.714352 0.266283
-0.313412 -0.703936 0.343415
-
-0.380179 -0.658489 0.285594
-0.313412 -0.703936 0.343415
-0.412432 -0.714352 0.266283
-
-0.313412 -0.703936 0.343415
-0.380179 -0.658489 0.285594
-0.280536 -0.630094 0.348123
-
-0.346569 -0.600275 0.289509
-0.280536 -0.630094 0.348123
-0.380179 -0.658489 0.285594
-
-0.280536 -0.630094 0.348123
-0.346569 -0.600275 0.289509
-0.248104 -0.557252 0.334064
-
-0.313414 -0.542848 0.277817
-0.248104 -0.557252 0.334064
-0.346569 -0.600275 0.289509
-
-0.248104 -0.557252 0.334064
-0.313414 -0.542848 0.277817
-0.217866 -0.489335 0.301995
-
-0.2825 -0.489304 0.251147
-0.217866 -0.489335 0.301995
-0.313414 -0.542848 0.277817
-
-0.217866 -0.489335 0.301995
-0.2825 -0.489304 0.251147
-0.19145 -0.430004 0.253645
-
-0.255495 -0.44253 0.210938
-0.19145 -0.430004 0.253645
-0.2825 -0.489304 0.251147
-
-0.19145 -0.430004 0.253645
-0.255495 -0.44253 0.210938
-0.170282 -0.38246 0.191621
-
-0.233854 -0.405047 0.159358
-0.170282 -0.38246 0.191621
-0.255495 -0.44253 0.210938
-
-0.170282 -0.38246 0.191621
-0.233854 -0.405047 0.159358
-0.155502 -0.349264 0.119267
-
-0.218745 -0.378877 0.0991858
-0.155502 -0.349264 0.119267
-0.233854 -0.405047 0.159358
-
-0.155502 -0.349264 0.119267
-0.218745 -0.378877 0.0991858
-0.147908 -0.332206 0.0404831
-
-0.21098 -0.365429 0.0336669
-0.147908 -0.332206 0.0404831
-0.218745 -0.378877 0.0991858
-
-0.147908 -0.332206 0.0404831
-0.21098 -0.365429 0.0336669
-0.147908 -0.332206 -0.0404831
-
-0.21098 -0.365429 -0.0336669
-0.147908 -0.332206 -0.0404831
-0.21098 -0.365429 0.0336669
-
-0.147908 -0.332206 -0.0404831
-0.21098 -0.365429 -0.0336669
-0.155502 -0.349264 -0.119267
-
-0.218745 -0.378877 -0.0991858
-0.155502 -0.349264 -0.119267
-0.21098 -0.365429 -0.0336669
-
-0.155502 -0.349264 -0.119267
-0.218745 -0.378877 -0.0991858
-0.170282 -0.38246 -0.191621
-
-0.233854 -0.405047 -0.159358
-0.170282 -0.38246 -0.191621
-0.218745 -0.378877 -0.0991858
-
-0.170282 -0.38246 -0.191621
-0.233854 -0.405047 -0.159358
-0.19145 -0.430004 -0.253645
-
-0.255495 -0.44253 -0.210938
-0.19145 -0.430004 -0.253645
-0.233854 -0.405047 -0.159358
-
-0.19145 -0.430004 -0.253645
-0.255495 -0.44253 -0.210938
-0.217866 -0.489335 -0.301995
-
-0.2825 -0.489304 -0.251147
-0.217866 -0.489335 -0.301995
-0.255495 -0.44253 -0.210938
-
-0.217866 -0.489335 -0.301995
-0.2825 -0.489304 -0.251147
-0.248104 -0.557252 -0.334064
-
-0.313414 -0.542848 -0.277817
-0.248104 -0.557252 -0.334064
-0.2825 -0.489304 -0.251147
-
-0.248104 -0.557252 -0.334064
-0.313414 -0.542848 -0.277817
-0.280536 -0.630094 -0.348123
-
-0.346569 -0.600275 -0.289509
-0.280536 -0.630094 -0.348123
-0.313414 -0.542848 -0.277817
-
-0.280536 -0.630094 -0.348123
-0.346569 -0.600275 -0.289509
-0.313412 -0.703936 -0.343415
-
-0.380179 -0.658489 -0.285594
-0.313412 -0.703936 -0.343415
-0.346569 -0.600275 -0.289509
-
-0.313412 -0.703936 -0.343415
-0.380179 -0.658489 -0.285594
-0.344961 -0.774795 -0.320194
-
-0.412432 -0.714352 -0.266283
-0.344961 -0.774795 -0.320194
-0.380179 -0.658489 -0.285594
-
-0.344961 -0.774795 -0.320194
-0.412432 -0.714352 -0.266283
-0.373481 -0.838851 -0.279711
-
-0.441588 -0.764853 -0.232616
-0.373481 -0.838851 -0.279711
-0.412432 -0.714352 -0.266283
-
-0.373481 -0.838851 -0.279711
-0.441588 -0.764853 -0.232616
-0.397435 -0.892653 -0.224149
-
-0.466076 -0.807268 -0.186408
-0.397435 -0.892653 -0.224149
-0.441588 -0.764853 -0.232616
-
-0.397435 -0.892653 -0.224149
-0.466076 -0.807268 -0.186408
-0.415531 -0.933298 -0.156502
-
-0.484577 -0.839312 -0.130152
-0.415531 -0.933298 -0.156502
-0.466076 -0.807268 -0.186408
-
-0.415531 -0.933298 -0.156502
-0.484577 -0.839312 -0.130152
-0.426794 -0.958596 -0.0804188
-
-0.496092 -0.859256 -0.0668786
-0.426794 -0.958596 -0.0804188
-0.484577 -0.839312 -0.130152
-
-0.426794 -0.958596 -0.0804188
-0.496092 -0.859256 -0.0668786
-0.430617 -0.967183 0
-
-0.5 -0.866025 0
-0.430617 -0.967183 0
-0.496092 -0.859256 -0.0668786
-
-0.5 -0.866025 0
-0.553274 -0.761517 0
-0.496092 -0.859256 0.0668786
-
-0.54961 -0.756473 0.0533384
-0.496092 -0.859256 0.0668786
-0.553274 -0.761517 0
-
-0.496092 -0.859256 0.0668786
-0.54961 -0.756473 0.0533384
-0.484577 -0.839312 0.130152
-
-0.538814 -0.741614 0.103801
-0.484577 -0.839312 0.130152
-0.54961 -0.756473 0.0533384
-
-0.484577 -0.839312 0.130152
-0.538814 -0.741614 0.103801
-0.466076 -0.807268 0.186408
-
-0.521469 -0.71774 0.148668
-0.466076 -0.807268 0.186408
-0.538814 -0.741614 0.103801
-
-0.466076 -0.807268 0.186408
-0.521469 -0.71774 0.148668
-0.441588 -0.764853 0.232616
-
-0.498509 -0.686139 0.18552
-0.441588 -0.764853 0.232616
-0.521469 -0.71774 0.148668
-
-0.441588 -0.764853 0.232616
-0.498509 -0.686139 0.18552
-0.412432 -0.714352 0.266283
-
-0.471173 -0.648515 0.212371
-0.412432 -0.714352 0.266283
-0.498509 -0.686139 0.18552
-
-0.412432 -0.714352 0.266283
-0.471173 -0.648515 0.212371
-0.380179 -0.658489 0.285594
-
-0.440934 -0.606894 0.227773
-0.380179 -0.658489 0.285594
-0.471173 -0.648515 0.212371
-
-0.380179 -0.658489 0.285594
-0.440934 -0.606894 0.227773
-0.346569 -0.600275 0.289509
-
-0.409423 -0.563522 0.230895
-0.346569 -0.600275 0.289509
-0.440934 -0.606894 0.227773
-
-0.346569 -0.600275 0.289509
-0.409423 -0.563522 0.230895
-0.313414 -0.542848 0.277817
-
-0.378338 -0.520737 0.22157
-0.313414 -0.542848 0.277817
-0.409423 -0.563522 0.230895
-
-0.313414 -0.542848 0.277817
-0.378338 -0.520737 0.22157
-0.2825 -0.489304 0.251147
-
-0.349354 -0.480845 0.2003
-0.2825 -0.489304 0.251147
-0.378338 -0.520737 0.22157
-
-0.2825 -0.489304 0.251147
-0.349354 -0.480845 0.2003
-0.255495 -0.44253 0.210938
-
-0.324035 -0.445996 0.168232
-0.255495 -0.44253 0.210938
-0.349354 -0.480845 0.2003
-
-0.255495 -0.44253 0.210938
-0.324035 -0.445996 0.168232
-0.233854 -0.405047 0.159358
-
-0.303746 -0.41807 0.127094
-0.233854 -0.405047 0.159358
-0.324035 -0.445996 0.168232
-
-0.233854 -0.405047 0.159358
-0.303746 -0.41807 0.127094
-0.218745 -0.378877 0.0991858
-
-0.289579 -0.398572 0.0791047
-0.218745 -0.378877 0.0991858
-0.303746 -0.41807 0.127094
-
-0.218745 -0.378877 0.0991858
-0.289579 -0.398572 0.0791047
-0.21098 -0.365429 0.0336669
-
-0.2823 -0.388552 0.0268508
-0.21098 -0.365429 0.0336669
-0.289579 -0.398572 0.0791047
-
-0.21098 -0.365429 0.0336669
-0.2823 -0.388552 0.0268508
-0.21098 -0.365429 -0.0336669
-
-0.2823 -0.388552 -0.0268508
-0.21098 -0.365429 -0.0336669
-0.2823 -0.388552 0.0268508
-
-0.21098 -0.365429 -0.0336669
-0.2823 -0.388552 -0.0268508
-0.218745 -0.378877 -0.0991858
-
-0.289579 -0.398572 -0.0791047
-0.218745 -0.378877 -0.0991858
-0.2823 -0.388552 -0.0268508
-
-0.218745 -0.378877 -0.0991858
-0.289579 -0.398572 -0.0791047
-0.233854 -0.405047 -0.159358
-
-0.303746 -0.41807 -0.127094
-0.233854 -0.405047 -0.159358
-0.289579 -0.398572 -0.0791047
-
-0.233854 -0.405047 -0.159358
-0.303746 -0.41807 -0.127094
-0.255495 -0.44253 -0.210938
-
-0.324035 -0.445996 -0.168232
-0.255495 -0.44253 -0.210938
-0.303746 -0.41807 -0.127094
-
-0.255495 -0.44253 -0.210938
-0.324035 -0.445996 -0.168232
-0.2825 -0.489304 -0.251147
-
-0.349354 -0.480845 -0.2003
-0.2825 -0.489304 -0.251147
-0.324035 -0.445996 -0.168232
-
-0.2825 -0.489304 -0.251147
-0.349354 -0.480845 -0.2003
-0.313414 -0.542848 -0.277817
-
-0.378338 -0.520737 -0.22157
-0.313414 -0.542848 -0.277817
-0.349354 -0.480845 -0.2003
-
-0.313414 -0.542848 -0.277817
-0.378338 -0.520737 -0.22157
-0.346569 -0.600275 -0.289509
-
-0.409423 -0.563522 -0.230895
-0.346569 -0.600275 -0.289509
-0.378338 -0.520737 -0.22157
-
-0.346569 -0.600275 -0.289509
-0.409423 -0.563522 -0.230895
-0.380179 -0.658489 -0.285594
-
-0.440934 -0.606894 -0.227773
-0.380179 -0.658489 -0.285594
-0.409423 -0.563522 -0.230895
-
-0.380179 -0.658489 -0.285594
-0.440934 -0.606894 -0.227773
-0.412432 -0.714352 -0.266283
-
-0.471173 -0.648515 -0.212371
-0.412432 -0.714352 -0.266283
-0.440934 -0.606894 -0.227773
-
-0.412432 -0.714352 -0.266283
-0.471173 -0.648515 -0.212371
-0.441588 -0.764853 -0.232616
-
-0.498509 -0.686139 -0.18552
-0.441588 -0.764853 -0.232616
-0.471173 -0.648515 -0.212371
-
-0.441588 -0.764853 -0.232616
-0.498509 -0.686139 -0.18552
-0.466076 -0.807268 -0.186408
-
-0.521469 -0.71774 -0.148668
-0.466076 -0.807268 -0.186408
-0.498509 -0.686139 -0.18552
-
-0.466076 -0.807268 -0.186408
-0.521469 -0.71774 -0.148668
-0.484577 -0.839312 -0.130152
-
-0.538814 -0.741614 -0.103801
-0.484577 -0.839312 -0.130152
-0.521469 -0.71774 -0.148668
-
-0.484577 -0.839312 -0.130152
-0.538814 -0.741614 -0.103801
-0.496092 -0.859256 -0.0668786
-
-0.54961 -0.756473 -0.0533384
-0.496092 -0.859256 -0.0668786
-0.538814 -0.741614 -0.103801
-
-0.496092 -0.859256 -0.0668786
-0.54961 -0.756473 -0.0533384
-0.5 -0.866025 0
-
-0.553274 -0.761517 0
-0.5 -0.866025 0
-0.54961 -0.756473 -0.0533384
-
-0.553274 -0.761517 0
-0.594403 -0.660151 0
-0.54961 -0.756473 0.0533384
-
-0.591186 -0.656579 0.0411236
-0.54961 -0.756473 0.0533384
-0.594403 -0.660151 0
-
-0.54961 -0.756473 0.0533384
-0.591186 -0.656579 0.0411236
-0.538814 -0.741614 0.103801
-
-0.581711 -0.646055 0.0800302
-0.538814 -0.741614 0.103801
-0.591186 -0.656579 0.0411236
-
-0.538814 -0.741614 0.103801
-0.581711 -0.646055 0.0800302
-0.521469 -0.71774 0.148668
-
-0.566487 -0.629148 0.114622
-0.521469 -0.71774 0.148668
-0.581711 -0.646055 0.0800302
-
-0.521469 -0.71774 0.148668
-0.566487 -0.629148 0.114622
-0.498509 -0.686139 0.18552
-
-0.546336 -0.606767 0.143035
-0.498509 -0.686139 0.18552
-0.566487 -0.629148 0.114622
-
-0.498509 -0.686139 0.18552
-0.546336 -0.606767 0.143035
-0.471173 -0.648515 0.212371
-
-0.522343 -0.580121 0.163737
-0.471173 -0.648515 0.212371
-0.546336 -0.606767 0.143035
-
-0.471173 -0.648515 0.212371
-0.522343 -0.580121 0.163737
-0.440934 -0.606894 0.227773
-
-0.495802 -0.550644 0.175612
-0.440934 -0.606894 0.227773
-0.522343 -0.580121 0.163737
-
-0.440934 -0.606894 0.227773
-0.495802 -0.550644 0.175612
-0.409423 -0.563522 0.230895
-
-0.468145 -0.519928 0.178019
-0.409423 -0.563522 0.230895
-0.495802 -0.550644 0.175612
-
-0.409423 -0.563522 0.230895
-0.468145 -0.519928 0.178019
-0.378338 -0.520737 0.22157
-
-0.440861 -0.489626 0.170829
-0.378338 -0.520737 0.22157
-0.468145 -0.519928 0.178019
-
-0.378338 -0.520737 0.22157
-0.440861 -0.489626 0.170829
-0.349354 -0.480845 0.2003
-
-0.415423 -0.461374 0.15443
-0.349354 -0.480845 0.2003
-0.440861 -0.489626 0.170829
-
-0.349354 -0.480845 0.2003
-0.415423 -0.461374 0.15443
-0.324035 -0.445996 0.168232
-
-0.3932 -0.436693 0.129706
-0.324035 -0.445996 0.168232
-0.415423 -0.461374 0.15443
-
-0.324035 -0.445996 0.168232
-0.3932 -0.436693 0.129706
-0.303746 -0.41807 0.127094
-
-0.375392 -0.416916 0.0979889
-0.303746 -0.41807 0.127094
-0.3932 -0.436693 0.129706
-
-0.303746 -0.41807 0.127094
-0.375392 -0.416916 0.0979889
-0.289579 -0.398572 0.0791047
-
-0.362959 -0.403106 0.0609893
-0.289579 -0.398572 0.0791047
-0.375392 -0.416916 0.0979889
-
-0.289579 -0.398572 0.0791047
-0.362959 -0.403106 0.0609893
-0.2823 -0.388552 0.0268508
-
-0.35657 -0.396011 0.0207018
-0.2823 -0.388552 0.0268508
-0.362959 -0.403106 0.0609893
-
-0.2823 -0.388552 0.0268508
-0.35657 -0.396011 0.0207018
-0.2823 -0.388552 -0.0268508
-
-0.35657 -0.396011 -0.0207018
-0.2823 -0.388552 -0.0268508
-0.35657 -0.396011 0.0207018
-
-0.2823 -0.388552 -0.0268508
-0.35657 -0.396011 -0.0207018
-0.289579 -0.398572 -0.0791047
-
-0.362959 -0.403106 -0.0609893
-0.289579 -0.398572 -0.0791047
-0.35657 -0.396011 -0.0207018
-
-0.289579 -0.398572 -0.0791047
-0.362959 -0.403106 -0.0609893
-0.303746 -0.41807 -0.127094
-
-0.375392 -0.416916 -0.0979889
-0.303746 -0.41807 -0.127094
-0.362959 -0.403106 -0.0609893
-
-0.303746 -0.41807 -0.127094
-0.375392 -0.416916 -0.0979889
-0.324035 -0.445996 -0.168232
-
-0.3932 -0.436693 -0.129706
-0.324035 -0.445996 -0.168232
-0.375392 -0.416916 -0.0979889
-
-0.324035 -0.445996 -0.168232
-0.3932 -0.436693 -0.129706
-0.349354 -0.480845 -0.2003
-
-0.415423 -0.461374 -0.15443
-0.349354 -0.480845 -0.2003
-0.3932 -0.436693 -0.129706
-
-0.349354 -0.480845 -0.2003
-0.415423 -0.461374 -0.15443
-0.378338 -0.520737 -0.22157
-
-0.440861 -0.489626 -0.170829
-0.378338 -0.520737 -0.22157
-0.415423 -0.461374 -0.15443
-
-0.378338 -0.520737 -0.22157
-0.440861 -0.489626 -0.170829
-0.409423 -0.563522 -0.230895
-
-0.468145 -0.519928 -0.178019
-0.409423 -0.563522 -0.230895
-0.440861 -0.489626 -0.170829
-
-0.409423 -0.563522 -0.230895
-0.468145 -0.519928 -0.178019
-0.440934 -0.606894 -0.227773
-
-0.495802 -0.550644 -0.175612
-0.440934 -0.606894 -0.227773
-0.468145 -0.519928 -0.178019
-
-0.440934 -0.606894 -0.227773
-0.495802 -0.550644 -0.175612
-0.471173 -0.648515 -0.212371
-
-0.522343 -0.580121 -0.163737
-0.471173 -0.648515 -0.212371
-0.495802 -0.550644 -0.175612
-
-0.471173 -0.648515 -0.212371
-0.522343 -0.580121 -0.163737
-0.498509 -0.686139 -0.18552
-
-0.546336 -0.606767 -0.143035
-0.498509 -0.686139 -0.18552
-0.522343 -0.580121 -0.163737
-
-0.498509 -0.686139 -0.18552
-0.546336 -0.606767 -0.143035
-0.521469 -0.71774 -0.148668
-
-0.566487 -0.629148 -0.114622
-0.521469 -0.71774 -0.148668
-0.546336 -0.606767 -0.143035
-
-0.521469 -0.71774 -0.148668
-0.566487 -0.629148 -0.114622
-0.538814 -0.741614 -0.103801
-
-0.581711 -0.646055 -0.0800302
-0.538814 -0.741614 -0.103801
-0.566487 -0.629148 -0.114622
-
-0.538814 -0.741614 -0.103801
-0.581711 -0.646055 -0.0800302
-0.54961 -0.756473 -0.0533384
-
-0.591186 -0.656579 -0.0411236
-0.54961 -0.756473 -0.0533384
-0.581711 -0.646055 -0.0800302
-
-0.54961 -0.756473 -0.0533384
-0.591186 -0.656579 -0.0411236
-0.553274 -0.761517 0
-
-0.594403 -0.660151 0
-0.553274 -0.761517 0
-0.591186 -0.656579 -0.0411236
-
-0.594403 -0.660151 0
-0.628914 -0.566276 0
-0.591186 -0.656579 0.0411236
-
-0.626184 -0.563818 0.0314299
-0.591186 -0.656579 0.0411236
-0.628914 -0.566276 0
-
-0.591186 -0.656579 0.0411236
-0.626184 -0.563818 0.0314299
-0.581711 -0.646055 0.0800302
-
-0.618141 -0.556576 0.0611654
-0.581711 -0.646055 0.0800302
-0.626184 -0.563818 0.0314299
-
-0.581711 -0.646055 0.0800302
-0.618141 -0.556576 0.0611654
-0.566487 -0.629148 0.114622
-
-0.605218 -0.544941 0.0876034
-0.566487 -0.629148 0.114622
-0.618141 -0.556576 0.0611654
-
-0.566487 -0.629148 0.114622
-0.605218 -0.544941 0.0876034
-0.546336 -0.606767 0.143035
-
-0.588114 -0.52954 0.109319
-0.546336 -0.606767 0.143035
-0.605218 -0.544941 0.0876034
-
-0.546336 -0.606767 0.143035
-0.588114 -0.52954 0.109319
-0.522343 -0.580121 0.163737
-
-0.567748 -0.511203 0.125141
-0.522343 -0.580121 0.163737
-0.588114 -0.52954 0.109319
-
-0.522343 -0.580121 0.163737
-0.567748 -0.511203 0.125141
-0.495802 -0.550644 0.175612
-
-0.54522 -0.490918 0.134216
-0.495802 -0.550644 0.175612
-0.567748 -0.511203 0.125141
-
-0.495802 -0.550644 0.175612
-0.54522 -0.490918 0.134216
-0.468145 -0.519928 0.178019
-
-0.521744 -0.46978 0.136056
-0.468145 -0.519928 0.178019
-0.54522 -0.490918 0.134216
-
-0.468145 -0.519928 0.178019
-0.521744 -0.46978 0.136056
-0.440861 -0.489626 0.170829
-
-0.498585 -0.448928 0.130561
-0.440861 -0.489626 0.170829
-0.521744 -0.46978 0.136056
-
-0.440861 -0.489626 0.170829
-0.498585 -0.448928 0.130561
-0.415423 -0.461374 0.15443
-
-0.476992 -0.429486 0.118028
-0.415423 -0.461374 0.15443
-0.498585 -0.448928 0.130561
-
-0.415423 -0.461374 0.15443
-0.476992 -0.429486 0.118028
-0.3932 -0.436693 0.129706
-
-0.45813 -0.412502 0.0991314
-0.3932 -0.436693 0.129706
-0.476992 -0.429486 0.118028
-
-0.3932 -0.436693 0.129706
-0.45813 -0.412502 0.0991314
-0.375392 -0.416916 0.0979889
-
-0.443014 -0.398892 0.0748908
-0.375392 -0.416916 0.0979889
-0.45813 -0.412502 0.0991314
-
-0.375392 -0.416916 0.0979889
-0.443014 -0.398892 0.0748908
-0.362959 -0.403106 0.0609893
-
-0.43246 -0.389389 0.0466128
-0.362959 -0.403106 0.0609893
-0.443014 -0.398892 0.0748908
-
-0.362959 -0.403106 0.0609893
-0.43246 -0.389389 0.0466128
-0.35657 -0.396011 0.0207018
-
-0.427037 -0.384506 0.0158219
-0.35657 -0.396011 0.0207018
-0.43246 -0.389389 0.0466128
-
-0.35657 -0.396011 0.0207018
-0.427037 -0.384506 0.0158219
-0.35657 -0.396011 -0.0207018
-
-0.427037 -0.384506 -0.0158219
-0.35657 -0.396011 -0.0207018
-0.427037 -0.384506 0.0158219
-
-0.35657 -0.396011 -0.0207018
-0.427037 -0.384506 -0.0158219
-0.362959 -0.403106 -0.0609893
-
-0.43246 -0.389389 -0.0466128
-0.362959 -0.403106 -0.0609893
-0.427037 -0.384506 -0.0158219
-
-0.362959 -0.403106 -0.0609893
-0.43246 -0.389389 -0.0466128
-0.375392 -0.416916 -0.0979889
-
-0.443014 -0.398892 -0.0748908
-0.375392 -0.416916 -0.0979889
-0.43246 -0.389389 -0.0466128
-
-0.375392 -0.416916 -0.0979889
-0.443014 -0.398892 -0.0748908
-0.3932 -0.436693 -0.129706
-
-0.45813 -0.412502 -0.0991314
-0.3932 -0.436693 -0.129706
-0.443014 -0.398892 -0.0748908
-
-0.3932 -0.436693 -0.129706
-0.45813 -0.412502 -0.0991314
-0.415423 -0.461374 -0.15443
-
-0.476992 -0.429486 -0.118028
-0.415423 -0.461374 -0.15443
-0.45813 -0.412502 -0.0991314
-
-0.415423 -0.461374 -0.15443
-0.476992 -0.429486 -0.118028
-0.440861 -0.489626 -0.170829
-
-0.498585 -0.448928 -0.130561
-0.440861 -0.489626 -0.170829
-0.476992 -0.429486 -0.118028
-
-0.440861 -0.489626 -0.170829
-0.498585 -0.448928 -0.130561
-0.468145 -0.519928 -0.178019
-
-0.521744 -0.46978 -0.136056
-0.468145 -0.519928 -0.178019
-0.498585 -0.448928 -0.130561
-
-0.468145 -0.519928 -0.178019
-0.521744 -0.46978 -0.136056
-0.495802 -0.550644 -0.175612
-
-0.54522 -0.490918 -0.134216
-0.495802 -0.550644 -0.175612
-0.521744 -0.46978 -0.136056
-
-0.495802 -0.550644 -0.175612
-0.54522 -0.490918 -0.134216
-0.522343 -0.580121 -0.163737
-
-0.567748 -0.511203 -0.125141
-0.522343 -0.580121 -0.163737
-0.54522 -0.490918 -0.134216
-
-0.522343 -0.580121 -0.163737
-0.567748 -0.511203 -0.125141
-0.546336 -0.606767 -0.143035
-
-0.588114 -0.52954 -0.109319
-0.546336 -0.606767 -0.143035
-0.567748 -0.511203 -0.125141
-
-0.546336 -0.606767 -0.143035
-0.588114 -0.52954 -0.109319
-0.566487 -0.629148 -0.114622
-
-0.605218 -0.544941 -0.0876034
-0.566487 -0.629148 -0.114622
-0.588114 -0.52954 -0.109319
-
-0.566487 -0.629148 -0.114622
-0.605218 -0.544941 -0.0876034
-0.581711 -0.646055 -0.0800302
-
-0.618141 -0.556576 -0.0611654
-0.581711 -0.646055 -0.0800302
-0.605218 -0.544941 -0.0876034
-
-0.581711 -0.646055 -0.0800302
-0.618141 -0.556576 -0.0611654
-0.591186 -0.656579 -0.0411236
-
-0.626184 -0.563818 -0.0314299
-0.591186 -0.656579 -0.0411236
-0.618141 -0.556576 -0.0611654
-
-0.591186 -0.656579 -0.0411236
-0.626184 -0.563818 -0.0314299
-0.594403 -0.660151 0
-
-0.628914 -0.566276 0
-0.594403 -0.660151 0
-0.626184 -0.563818 -0.0314299
-
-0.628914 -0.566276 0
-0.662827 -0.481572 0
-0.626184 -0.563818 0.0314299
-
-0.660444 -0.47984 0.0252061
-0.626184 -0.563818 0.0314299
-0.662827 -0.481572 0
-
-0.626184 -0.563818 0.0314299
-0.660444 -0.47984 0.0252061
-0.618141 -0.556576 0.0611654
-
-0.653421 -0.474739 0.0490534
-0.618141 -0.556576 0.0611654
-0.660444 -0.47984 0.0252061
-
-0.618141 -0.556576 0.0611654
-0.653421 -0.474739 0.0490534
-0.605218 -0.544941 0.0876034
-
-0.64214 -0.466542 0.0702562
-0.605218 -0.544941 0.0876034
-0.653421 -0.474739 0.0490534
-
-0.605218 -0.544941 0.0876034
-0.64214 -0.466542 0.0702562
-0.588114 -0.52954 0.109319
-
-0.627206 -0.455692 0.0876715
-0.588114 -0.52954 0.109319
-0.64214 -0.466542 0.0702562
-
-0.588114 -0.52954 0.109319
-0.627206 -0.455692 0.0876715
-0.567748 -0.511203 0.125141
-
-0.609425 -0.442773 0.10036
-0.567748 -0.511203 0.125141
-0.627206 -0.455692 0.0876715
-
-0.567748 -0.511203 0.125141
-0.609425 -0.442773 0.10036
-0.54522 -0.490918 0.134216
-
-0.589757 -0.428483 0.107639
-0.54522 -0.490918 0.134216
-0.609425 -0.442773 0.10036
-
-0.54522 -0.490918 0.134216
-0.589757 -0.428483 0.107639
-0.521744 -0.46978 0.136056
-
-0.569261 -0.413592 0.109114
-0.521744 -0.46978 0.136056
-0.589757 -0.428483 0.107639
-
-0.521744 -0.46978 0.136056
-0.569261 -0.413592 0.109114
-0.498585 -0.448928 0.130561
-
-0.549042 -0.398902 0.104708
-0.498585 -0.448928 0.130561
-0.569261 -0.413592 0.109114
-
-0.498585 -0.448928 0.130561
-0.549042 -0.398902 0.104708
-0.476992 -0.429486 0.118028
-
-0.53019 -0.385205 0.0946559
-0.476992 -0.429486 0.118028
-0.549042 -0.398902 0.104708
-
-0.476992 -0.429486 0.118028
-0.53019 -0.385205 0.0946559
-0.45813 -0.412502 0.0991314
-
-0.513721 -0.37324 0.0795014
-0.45813 -0.412502 0.0991314
-0.53019 -0.385205 0.0946559
-
-0.45813 -0.412502 0.0991314
-0.513721 -0.37324 0.0795014
-0.443014 -0.398892 0.0748908
-
-0.500524 -0.363652 0.0600609
-0.443014 -0.398892 0.0748908
-0.513721 -0.37324 0.0795014
-
-0.443014 -0.398892 0.0748908
-0.500524 -0.363652 0.0600609
-0.43246 -0.389389 0.0466128
-
-0.49131 -0.356957 0.0373825
-0.43246 -0.389389 0.0466128
-0.500524 -0.363652 0.0600609
-
-0.43246 -0.389389 0.0466128
-0.49131 -0.356957 0.0373825
-0.427037 -0.384506 0.0158219
-
-0.486575 -0.353517 0.0126889
-0.427037 -0.384506 0.0158219
-0.49131 -0.356957 0.0373825
-
-0.427037 -0.384506 0.0158219
-0.486575 -0.353517 0.0126889
-0.427037 -0.384506 -0.0158219
-
-0.486575 -0.353517 -0.0126889
-0.427037 -0.384506 -0.0158219
-0.486575 -0.353517 0.0126889
-
-0.427037 -0.384506 -0.0158219
-0.486575 -0.353517 -0.0126889
-0.43246 -0.389389 -0.0466128
-
-0.49131 -0.356957 -0.0373825
-0.43246 -0.389389 -0.0466128
-0.486575 -0.353517 -0.0126889
-
-0.43246 -0.389389 -0.0466128
-0.49131 -0.356957 -0.0373825
-0.443014 -0.398892 -0.0748908
-
-0.500524 -0.363652 -0.0600609
-0.443014 -0.398892 -0.0748908
-0.49131 -0.356957 -0.0373825
-
-0.443014 -0.398892 -0.0748908
-0.500524 -0.363652 -0.0600609
-0.45813 -0.412502 -0.0991314
-
-0.513721 -0.37324 -0.0795014
-0.45813 -0.412502 -0.0991314
-0.500524 -0.363652 -0.0600609
-
-0.45813 -0.412502 -0.0991314
-0.513721 -0.37324 -0.0795014
-0.476992 -0.429486 -0.118028
-
-0.53019 -0.385205 -0.0946559
-0.476992 -0.429486 -0.118028
-0.513721 -0.37324 -0.0795014
-
-0.476992 -0.429486 -0.118028
-0.53019 -0.385205 -0.0946559
-0.498585 -0.448928 -0.130561
-
-0.549042 -0.398902 -0.104708
-0.498585 -0.448928 -0.130561
-0.53019 -0.385205 -0.0946559
-
-0.498585 -0.448928 -0.130561
-0.549042 -0.398902 -0.104708
-0.521744 -0.46978 -0.136056
-
-0.569261 -0.413592 -0.109114
-0.521744 -0.46978 -0.136056
-0.549042 -0.398902 -0.104708
-
-0.521744 -0.46978 -0.136056
-0.569261 -0.413592 -0.109114
-0.54522 -0.490918 -0.134216
-
-0.589757 -0.428483 -0.107639
-0.54522 -0.490918 -0.134216
-0.569261 -0.413592 -0.109114
-
-0.54522 -0.490918 -0.134216
-0.589757 -0.428483 -0.107639
-0.567748 -0.511203 -0.125141
-
-0.609425 -0.442773 -0.10036
-0.567748 -0.511203 -0.125141
-0.589757 -0.428483 -0.107639
-
-0.567748 -0.511203 -0.125141
-0.609425 -0.442773 -0.10036
-0.588114 -0.52954 -0.109319
-
-0.627206 -0.455692 -0.0876715
-0.588114 -0.52954 -0.109319
-0.609425 -0.442773 -0.10036
-
-0.588114 -0.52954 -0.109319
-0.627206 -0.455692 -0.0876715
-0.605218 -0.544941 -0.0876034
-
-0.64214 -0.466542 -0.0702562
-0.605218 -0.544941 -0.0876034
-0.627206 -0.455692 -0.0876715
-
-0.605218 -0.544941 -0.0876034
-0.64214 -0.466542 -0.0702562
-0.618141 -0.556576 -0.0611654
-
-0.653421 -0.474739 -0.0490534
-0.618141 -0.556576 -0.0611654
-0.64214 -0.466542 -0.0702562
-
-0.618141 -0.556576 -0.0611654
-0.653421 -0.474739 -0.0490534
-0.626184 -0.563818 -0.0314299
-
-0.660444 -0.47984 -0.0252061
-0.626184 -0.563818 -0.0314299
-0.653421 -0.474739 -0.0490534
-
-0.626184 -0.563818 -0.0314299
-0.660444 -0.47984 -0.0252061
-0.628914 -0.566276 0
-
-0.662827 -0.481572 0
-0.628914 -0.566276 0
-0.660444 -0.47984 -0.0252061
-
-0.662827 -0.481572 0
-0.701481 -0.405 0
-0.660444 -0.47984 0.0252061
-
-0.699146 -0.403652 0.0230616
-0.660444 -0.47984 0.0252061
-0.701481 -0.405 0
-
-0.660444 -0.47984 0.0252061
-0.699146 -0.403652 0.0230616
-0.653421 -0.474739 0.0490534
-
-0.692269 -0.399682 0.0448799
-0.653421 -0.474739 0.0490534
-0.699146 -0.403652 0.0230616
-
-0.653421 -0.474739 0.0490534
-0.692269 -0.399682 0.0448799
-0.64214 -0.466542 0.0702562
-
-0.681219 -0.393302 0.0642788
-0.64214 -0.466542 0.0702562
-0.692269 -0.399682 0.0448799
-
-0.64214 -0.466542 0.0702562
-0.681219 -0.393302 0.0642788
-0.627206 -0.455692 0.0876715
-
-0.666593 -0.384858 0.0802123
-0.627206 -0.455692 0.0876715
-0.681219 -0.393302 0.0642788
-
-0.627206 -0.455692 0.0876715
-0.666593 -0.384858 0.0802123
-0.609425 -0.442773 0.10036
-
-0.64918 -0.374804 0.0918216
-0.609425 -0.442773 0.10036
-0.666593 -0.384858 0.0802123
-
-0.609425 -0.442773 0.10036
-0.64918 -0.374804 0.0918216
-0.589757 -0.428483 0.107639
-
-0.629916 -0.363682 0.0984808
-0.589757 -0.428483 0.107639
-0.64918 -0.374804 0.0918216
-
-0.589757 -0.428483 0.107639
-0.629916 -0.363682 0.0984808
-0.569261 -0.413592 0.109114
-
-0.609843 -0.352093 0.0998308
-0.569261 -0.413592 0.109114
-0.629916 -0.363682 0.0984808
-
-0.569261 -0.413592 0.109114
-0.609843 -0.352093 0.0998308
-0.549042 -0.398902 0.104708
-
-0.59004 -0.34066 0.095799
-0.549042 -0.398902 0.104708
-0.609843 -0.352093 0.0998308
-
-0.549042 -0.398902 0.104708
-0.59004 -0.34066 0.095799
-0.53019 -0.385205 0.0946559
-
-0.571577 -0.33 0.0866025
-0.53019 -0.385205 0.0946559
-0.59004 -0.34066 0.095799
-
-0.53019 -0.385205 0.0946559
-0.571577 -0.33 0.0866025
-0.513721 -0.37324 0.0795014
-
-0.555448 -0.320688 0.0727374
-0.513721 -0.37324 0.0795014
-0.571577 -0.33 0.0866025
-
-0.513721 -0.37324 0.0795014
-0.555448 -0.320688 0.0727374
-0.500524 -0.363652 0.0600609
-
-0.542523 -0.313226 0.0549509
-0.500524 -0.363652 0.0600609
-0.555448 -0.320688 0.0727374
-
-0.500524 -0.363652 0.0600609
-0.542523 -0.313226 0.0549509
-0.49131 -0.356957 0.0373825
-
-0.533498 -0.308015 0.034202
-0.49131 -0.356957 0.0373825
-0.542523 -0.313226 0.0549509
-
-0.49131 -0.356957 0.0373825
-0.533498 -0.308015 0.034202
-0.486575 -0.353517 0.0126889
-
-0.528861 -0.305338 0.0116093
-0.486575 -0.353517 0.0126889
-0.533498 -0.308015 0.034202
-
-0.486575 -0.353517 0.0126889
-0.528861 -0.305338 0.0116093
-0.486575 -0.353517 -0.0126889
-
-0.528861 -0.305338 -0.0116093
-0.486575 -0.353517 -0.0126889
-0.528861 -0.305338 0.0116093
-
-0.486575 -0.353517 -0.0126889
-0.528861 -0.305338 -0.0116093
-0.49131 -0.356957 -0.0373825
-
-0.533498 -0.308015 -0.034202
-0.49131 -0.356957 -0.0373825
-0.528861 -0.305338 -0.0116093
-
-0.49131 -0.356957 -0.0373825
-0.533498 -0.308015 -0.034202
-0.500524 -0.363652 -0.0600609
-
-0.542523 -0.313226 -0.0549509
-0.500524 -0.363652 -0.0600609
-0.533498 -0.308015 -0.034202
-
-0.500524 -0.363652 -0.0600609
-0.542523 -0.313226 -0.0549509
-0.513721 -0.37324 -0.0795014
-
-0.555448 -0.320688 -0.0727374
-0.513721 -0.37324 -0.0795014
-0.542523 -0.313226 -0.0549509
-
-0.513721 -0.37324 -0.0795014
-0.555448 -0.320688 -0.0727374
-0.53019 -0.385205 -0.0946559
-
-0.571577 -0.33 -0.0866025
-0.53019 -0.385205 -0.0946559
-0.555448 -0.320688 -0.0727374
-
-0.53019 -0.385205 -0.0946559
-0.571577 -0.33 -0.0866025
-0.549042 -0.398902 -0.104708
-
-0.59004 -0.34066 -0.095799
-0.549042 -0.398902 -0.104708
-0.571577 -0.33 -0.0866025
-
-0.549042 -0.398902 -0.104708
-0.59004 -0.34066 -0.095799
-0.569261 -0.413592 -0.109114
-
-0.609843 -0.352093 -0.0998308
-0.569261 -0.413592 -0.109114
-0.59004 -0.34066 -0.095799
-
-0.569261 -0.413592 -0.109114
-0.609843 -0.352093 -0.0998308
-0.589757 -0.428483 -0.107639
-
-0.629916 -0.363682 -0.0984808
-0.589757 -0.428483 -0.107639
-0.609843 -0.352093 -0.0998308
-
-0.589757 -0.428483 -0.107639
-0.629916 -0.363682 -0.0984808
-0.609425 -0.442773 -0.10036
-
-0.64918 -0.374804 -0.0918216
-0.609425 -0.442773 -0.10036
-0.629916 -0.363682 -0.0984808
-
-0.609425 -0.442773 -0.10036
-0.64918 -0.374804 -0.0918216
-0.627206 -0.455692 -0.0876715
-
-0.666593 -0.384858 -0.0802123
-0.627206 -0.455692 -0.0876715
-0.64918 -0.374804 -0.0918216
-
-0.627206 -0.455692 -0.0876715
-0.666593 -0.384858 -0.0802123
-0.64214 -0.466542 -0.0702562
-
-0.681219 -0.393302 -0.0642788
-0.64214 -0.466542 -0.0702562
-0.666593 -0.384858 -0.0802123
-
-0.64214 -0.466542 -0.0702562
-0.681219 -0.393302 -0.0642788
-0.653421 -0.474739 -0.0490534
-
-0.692269 -0.399682 -0.0448799
-0.653421 -0.474739 -0.0490534
-0.681219 -0.393302 -0.0642788
-
-0.653421 -0.474739 -0.0490534
-0.692269 -0.399682 -0.0448799
-0.660444 -0.47984 -0.0252061
-
-0.699146 -0.403652 -0.0230616
-0.660444 -0.47984 -0.0252061
-0.692269 -0.399682 -0.0448799
-
-0.660444 -0.47984 -0.0252061
-0.699146 -0.403652 -0.0230616
-0.662827 -0.481572 0
-
-0.701481 -0.405 0
-0.662827 -0.481572 0
-0.699146 -0.403652 -0.0230616
-
-0.701481 -0.405 0
-0.748467 -0.333239 0
-0.699146 -0.403652 0.0230616
-
-0.745776 -0.332041 0.0252061
-0.699146 -0.403652 0.0230616
-0.748467 -0.333239 0
-
-0.699146 -0.403652 0.0230616
-0.745776 -0.332041 0.0252061
-0.692269 -0.399682 0.0448799
-
-0.737846 -0.32851 0.0490534
-0.692269 -0.399682 0.0448799
-0.745776 -0.332041 0.0252061
-
-0.692269 -0.399682 0.0448799
-0.737846 -0.32851 0.0490534
-0.681219 -0.393302 0.0642788
-
-0.725107 -0.322838 0.0702562
-0.681219 -0.393302 0.0642788
-0.737846 -0.32851 0.0490534
-
-0.681219 -0.393302 0.0642788
-0.725107 -0.322838 0.0702562
-0.666593 -0.384858 0.0802123
-
-0.708243 -0.31533 0.0876715
-0.666593 -0.384858 0.0802123
-0.725107 -0.322838 0.0702562
-
-0.666593 -0.384858 0.0802123
-0.708243 -0.31533 0.0876715
-0.64918 -0.374804 0.0918216
-
-0.688166 -0.306391 0.10036
-0.64918 -0.374804 0.0918216
-0.708243 -0.31533 0.0876715
-
-0.64918 -0.374804 0.0918216
-0.688166 -0.306391 0.10036
-0.629916 -0.363682 0.0984808
-
-0.665956 -0.296503 0.107639
-0.629916 -0.363682 0.0984808
-0.688166 -0.306391 0.10036
-
-0.629916 -0.363682 0.0984808
-0.665956 -0.296503 0.107639
-0.609843 -0.352093 0.0998308
-
-0.642812 -0.286198 0.109114
-0.609843 -0.352093 0.0998308
-0.665956 -0.296503 0.107639
-
-0.609843 -0.352093 0.0998308
-0.642812 -0.286198 0.109114
-0.59004 -0.34066 0.095799
-
-0.61998 -0.276033 0.104708
-0.59004 -0.34066 0.095799
-0.642812 -0.286198 0.109114
-
-0.59004 -0.34066 0.095799
-0.61998 -0.276033 0.104708
-0.571577 -0.33 0.0866025
-
-0.598692 -0.266555 0.0946559
-0.571577 -0.33 0.0866025
-0.61998 -0.276033 0.104708
-
-0.571577 -0.33 0.0866025
-0.598692 -0.266555 0.0946559
-0.555448 -0.320688 0.0727374
-
-0.580096 -0.258275 0.0795014
-0.555448 -0.320688 0.0727374
-0.598692 -0.266555 0.0946559
-
-0.555448 -0.320688 0.0727374
-0.580096 -0.258275 0.0795014
-0.542523 -0.313226 0.0549509
-
-0.565194 -0.251641 0.0600609
-0.542523 -0.313226 0.0549509
-0.580096 -0.258275 0.0795014
-
-0.542523 -0.313226 0.0549509
-0.565194 -0.251641 0.0600609
-0.533498 -0.308015 0.034202
-
-0.554789 -0.247008 0.0373825
-0.533498 -0.308015 0.034202
-0.565194 -0.251641 0.0600609
-
-0.533498 -0.308015 0.034202
-0.554789 -0.247008 0.0373825
-0.528861 -0.305338 0.0116093
-
-0.549443 -0.244628 0.0126889
-0.528861 -0.305338 0.0116093
-0.554789 -0.247008 0.0373825
-
-0.528861 -0.305338 0.0116093
-0.549443 -0.244628 0.0126889
-0.528861 -0.305338 -0.0116093
-
-0.549443 -0.244628 -0.0126889
-0.528861 -0.305338 -0.0116093
-0.549443 -0.244628 0.0126889
-
-0.528861 -0.305338 -0.0116093
-0.549443 -0.244628 -0.0126889
-0.533498 -0.308015 -0.034202
-
-0.554789 -0.247008 -0.0373825
-0.533498 -0.308015 -0.034202
-0.549443 -0.244628 -0.0126889
-
-0.533498 -0.308015 -0.034202
-0.554789 -0.247008 -0.0373825
-0.542523 -0.313226 -0.0549509
-
-0.565194 -0.251641 -0.0600609
-0.542523 -0.313226 -0.0549509
-0.554789 -0.247008 -0.0373825
-
-0.542523 -0.313226 -0.0549509
-0.565194 -0.251641 -0.0600609
-0.555448 -0.320688 -0.0727374
-
-0.580096 -0.258275 -0.0795014
-0.555448 -0.320688 -0.0727374
-0.565194 -0.251641 -0.0600609
-
-0.555448 -0.320688 -0.0727374
-0.580096 -0.258275 -0.0795014
-0.571577 -0.33 -0.0866025
-
-0.598692 -0.266555 -0.0946559
-0.571577 -0.33 -0.0866025
-0.580096 -0.258275 -0.0795014
-
-0.571577 -0.33 -0.0866025
-0.598692 -0.266555 -0.0946559
-0.59004 -0.34066 -0.095799
-
-0.61998 -0.276033 -0.104708
-0.59004 -0.34066 -0.095799
-0.598692 -0.266555 -0.0946559
-
-0.59004 -0.34066 -0.095799
-0.61998 -0.276033 -0.104708
-0.609843 -0.352093 -0.0998308
-
-0.642812 -0.286198 -0.109114
-0.609843 -0.352093 -0.0998308
-0.61998 -0.276033 -0.104708
-
-0.609843 -0.352093 -0.0998308
-0.642812 -0.286198 -0.109114
-0.629916 -0.363682 -0.0984808
-
-0.665956 -0.296503 -0.107639
-0.629916 -0.363682 -0.0984808
-0.642812 -0.286198 -0.109114
-
-0.629916 -0.363682 -0.0984808
-0.665956 -0.296503 -0.107639
-0.64918 -0.374804 -0.0918216
-
-0.688166 -0.306391 -0.10036
-0.64918 -0.374804 -0.0918216
-0.665956 -0.296503 -0.107639
-
-0.64918 -0.374804 -0.0918216
-0.688166 -0.306391 -0.10036
-0.666593 -0.384858 -0.0802123
-
-0.708243 -0.31533 -0.0876715
-0.666593 -0.384858 -0.0802123
-0.688166 -0.306391 -0.10036
-
-0.666593 -0.384858 -0.0802123
-0.708243 -0.31533 -0.0876715
-0.681219 -0.393302 -0.0642788
-
-0.725107 -0.322838 -0.0702562
-0.681219 -0.393302 -0.0642788
-0.708243 -0.31533 -0.0876715
-
-0.681219 -0.393302 -0.0642788
-0.725107 -0.322838 -0.0702562
-0.692269 -0.399682 -0.0448799
-
-0.737846 -0.32851 -0.0490534
-0.692269 -0.399682 -0.0448799
-0.725107 -0.322838 -0.0702562
-
-0.692269 -0.399682 -0.0448799
-0.737846 -0.32851 -0.0490534
-0.699146 -0.403652 -0.0230616
-
-0.745776 -0.332041 -0.0252061
-0.699146 -0.403652 -0.0230616
-0.737846 -0.32851 -0.0490534
-
-0.699146 -0.403652 -0.0230616
-0.745776 -0.332041 -0.0252061
-0.701481 -0.405 0
-
-0.748467 -0.333239 0
-0.701481 -0.405 0
-0.745776 -0.332041 -0.0252061
-
-0.748467 -0.333239 0
-0.804867 -0.261517 0
-0.745776 -0.332041 0.0252061
-
-0.801373 -0.260382 0.0314299
-0.745776 -0.332041 0.0252061
-0.804867 -0.261517 0
-
-0.745776 -0.332041 0.0252061
-0.801373 -0.260382 0.0314299
-0.737846 -0.32851 0.0490534
-
-0.79108 -0.257037 0.0611654
-0.737846 -0.32851 0.0490534
-0.801373 -0.260382 0.0314299
-
-0.737846 -0.32851 0.0490534
-0.79108 -0.257037 0.0611654
-0.725107 -0.322838 0.0702562
-
-0.774542 -0.251664 0.0876034
-0.725107 -0.322838 0.0702562
-0.79108 -0.257037 0.0611654
-
-0.725107 -0.322838 0.0702562
-0.774542 -0.251664 0.0876034
-0.708243 -0.31533 0.0876715
-
-0.752652 -0.244551 0.109319
-0.708243 -0.31533 0.0876715
-0.774542 -0.251664 0.0876034
-
-0.708243 -0.31533 0.0876715
-0.752652 -0.244551 0.109319
-0.688166 -0.306391 0.10036
-
-0.726589 -0.236083 0.125141
-0.688166 -0.306391 0.10036
-0.752652 -0.244551 0.109319
-
-0.688166 -0.306391 0.10036
-0.726589 -0.236083 0.125141
-0.665956 -0.296503 0.107639
-
-0.697758 -0.226715 0.134216
-0.665956 -0.296503 0.107639
-0.726589 -0.236083 0.125141
-
-0.665956 -0.296503 0.107639
-0.697758 -0.226715 0.134216
-0.642812 -0.286198 0.109114
-
-0.667714 -0.216953 0.136056
-0.642812 -0.286198 0.109114
-0.697758 -0.226715 0.134216
-
-0.642812 -0.286198 0.109114
-0.667714 -0.216953 0.136056
-0.61998 -0.276033 0.104708
-
-0.638076 -0.207323 0.130561
-0.61998 -0.276033 0.104708
-0.667714 -0.216953 0.136056
-
-0.61998 -0.276033 0.104708
-0.638076 -0.207323 0.130561
-0.598692 -0.266555 0.0946559
-
-0.610442 -0.198345 0.118028
-0.598692 -0.266555 0.0946559
-0.638076 -0.207323 0.130561
-
-0.598692 -0.266555 0.0946559
-0.610442 -0.198345 0.118028
-0.580096 -0.258275 0.0795014
-
-0.586302 -0.190501 0.0991314
-0.580096 -0.258275 0.0795014
-0.610442 -0.198345 0.118028
-
-0.580096 -0.258275 0.0795014
-0.586302 -0.190501 0.0991314
-0.565194 -0.251641 0.0600609
-
-0.566957 -0.184216 0.0748908
-0.565194 -0.251641 0.0600609
-0.586302 -0.190501 0.0991314
-
-0.565194 -0.251641 0.0600609
-0.566957 -0.184216 0.0748908
-0.554789 -0.247008 0.0373825
-
-0.553451 -0.179827 0.0466128
-0.554789 -0.247008 0.0373825
-0.566957 -0.184216 0.0748908
-
-0.554789 -0.247008 0.0373825
-0.553451 -0.179827 0.0466128
-0.549443 -0.244628 0.0126889
-
-0.54651 -0.177572 0.0158219
-0.549443 -0.244628 0.0126889
-0.553451 -0.179827 0.0466128
-
-0.549443 -0.244628 0.0126889
-0.54651 -0.177572 0.0158219
-0.549443 -0.244628 -0.0126889
-
-0.54651 -0.177572 -0.0158219
-0.549443 -0.244628 -0.0126889
-0.54651 -0.177572 0.0158219
-
-0.549443 -0.244628 -0.0126889
-0.54651 -0.177572 -0.0158219
-0.554789 -0.247008 -0.0373825
-
-0.553451 -0.179827 -0.0466128
-0.554789 -0.247008 -0.0373825
-0.54651 -0.177572 -0.0158219
-
-0.554789 -0.247008 -0.0373825
-0.553451 -0.179827 -0.0466128
-0.565194 -0.251641 -0.0600609
-
-0.566957 -0.184216 -0.0748908
-0.565194 -0.251641 -0.0600609
-0.553451 -0.179827 -0.0466128
-
-0.565194 -0.251641 -0.0600609
-0.566957 -0.184216 -0.0748908
-0.580096 -0.258275 -0.0795014
-
-0.586302 -0.190501 -0.0991314
-0.580096 -0.258275 -0.0795014
-0.566957 -0.184216 -0.0748908
-
-0.580096 -0.258275 -0.0795014
-0.586302 -0.190501 -0.0991314
-0.598692 -0.266555 -0.0946559
-
-0.610442 -0.198345 -0.118028
-0.598692 -0.266555 -0.0946559
-0.586302 -0.190501 -0.0991314
-
-0.598692 -0.266555 -0.0946559
-0.610442 -0.198345 -0.118028
-0.61998 -0.276033 -0.104708
-
-0.638076 -0.207323 -0.130561
-0.61998 -0.276033 -0.104708
-0.610442 -0.198345 -0.118028
-
-0.61998 -0.276033 -0.104708
-0.638076 -0.207323 -0.130561
-0.642812 -0.286198 -0.109114
-
-0.667714 -0.216953 -0.136056
-0.642812 -0.286198 -0.109114
-0.638076 -0.207323 -0.130561
-
-0.642812 -0.286198 -0.109114
-0.667714 -0.216953 -0.136056
-0.665956 -0.296503 -0.107639
-
-0.697758 -0.226715 -0.134216
-0.665956 -0.296503 -0.107639
-0.667714 -0.216953 -0.136056
-
-0.665956 -0.296503 -0.107639
-0.697758 -0.226715 -0.134216
-0.688166 -0.306391 -0.10036
-
-0.726589 -0.236083 -0.125141
-0.688166 -0.306391 -0.10036
-0.697758 -0.226715 -0.134216
-
-0.688166 -0.306391 -0.10036
-0.726589 -0.236083 -0.125141
-0.708243 -0.31533 -0.0876715
-
-0.752652 -0.244551 -0.109319
-0.708243 -0.31533 -0.0876715
-0.726589 -0.236083 -0.125141
-
-0.708243 -0.31533 -0.0876715
-0.752652 -0.244551 -0.109319
-0.725107 -0.322838 -0.0702562
-
-0.774542 -0.251664 -0.0876034
-0.725107 -0.322838 -0.0702562
-0.752652 -0.244551 -0.109319
-
-0.725107 -0.322838 -0.0702562
-0.774542 -0.251664 -0.0876034
-0.737846 -0.32851 -0.0490534
-
-0.79108 -0.257037 -0.0611654
-0.737846 -0.32851 -0.0490534
-0.774542 -0.251664 -0.0876034
-
-0.737846 -0.32851 -0.0490534
-0.79108 -0.257037 -0.0611654
-0.745776 -0.332041 -0.0252061
-
-0.801373 -0.260382 -0.0314299
-0.745776 -0.332041 -0.0252061
-0.79108 -0.257037 -0.0611654
-
-0.745776 -0.332041 -0.0252061
-0.801373 -0.260382 -0.0314299
-0.748467 -0.333239 0
-
-0.804867 -0.261517 0
-0.748467 -0.333239 0
-0.801373 -0.260382 -0.0314299
-
-0.804867 -0.261517 0
-0.868909 -0.184692 0
-0.801373 -0.260382 0.0314299
-
-0.864207 -0.183693 0.0411236
-0.801373 -0.260382 0.0314299
-0.868909 -0.184692 0
-
-0.801373 -0.260382 0.0314299
-0.864207 -0.183693 0.0411236
-0.79108 -0.257037 0.0611654
-
-0.850356 -0.180749 0.0800302
-0.79108 -0.257037 0.0611654
-0.864207 -0.183693 0.0411236
-
-0.79108 -0.257037 0.0611654
-0.850356 -0.180749 0.0800302
-0.774542 -0.251664 0.0876034
-
-0.828101 -0.176018 0.114622
-0.774542 -0.251664 0.0876034
-0.850356 -0.180749 0.0800302
-
-0.774542 -0.251664 0.0876034
-0.828101 -0.176018 0.114622
-0.752652 -0.244551 0.109319
-
-0.798644 -0.169757 0.143035
-0.752652 -0.244551 0.109319
-0.828101 -0.176018 0.114622
-
-0.752652 -0.244551 0.109319
-0.798644 -0.169757 0.143035
-0.726589 -0.236083 0.125141
-
-0.763571 -0.162302 0.163737
-0.726589 -0.236083 0.125141
-0.798644 -0.169757 0.143035
-
-0.726589 -0.236083 0.125141
-0.763571 -0.162302 0.163737
-0.697758 -0.226715 0.134216
-
-0.724773 -0.154055 0.175612
-0.697758 -0.226715 0.134216
-0.763571 -0.162302 0.163737
-
-0.697758 -0.226715 0.134216
-0.724773 -0.154055 0.175612
-0.667714 -0.216953 0.136056
-
-0.684343 -0.145462 0.178019
-0.667714 -0.216953 0.136056
-0.724773 -0.154055 0.175612
-
-0.667714 -0.216953 0.136056
-0.684343 -0.145462 0.178019
-0.638076 -0.207323 0.130561
-
-0.644459 -0.136984 0.170829
-0.638076 -0.207323 0.130561
-0.684343 -0.145462 0.178019
-
-0.638076 -0.207323 0.130561
-0.644459 -0.136984 0.170829
-0.610442 -0.198345 0.118028
-
-0.607273 -0.12908 0.15443
-0.610442 -0.198345 0.118028
-0.644459 -0.136984 0.170829
-
-0.610442 -0.198345 0.118028
-0.607273 -0.12908 0.15443
-0.586302 -0.190501 0.0991314
-
-0.574788 -0.122175 0.129706
-0.586302 -0.190501 0.0991314
-0.607273 -0.12908 0.15443
-
-0.586302 -0.190501 0.0991314
-0.574788 -0.122175 0.129706
-0.566957 -0.184216 0.0748908
-
-0.548756 -0.116642 0.0979889
-0.566957 -0.184216 0.0748908
-0.574788 -0.122175 0.129706
-
-0.566957 -0.184216 0.0748908
-0.548756 -0.116642 0.0979889
-0.553451 -0.179827 0.0466128
-
-0.53058 -0.112778 0.0609893
-0.553451 -0.179827 0.0466128
-0.548756 -0.116642 0.0979889
-
-0.553451 -0.179827 0.0466128
-0.53058 -0.112778 0.0609893
-0.54651 -0.177572 0.0158219
-
-0.52124 -0.110793 0.0207018
-0.54651 -0.177572 0.0158219
-0.53058 -0.112778 0.0609893
-
-0.54651 -0.177572 0.0158219
-0.52124 -0.110793 0.0207018
-0.54651 -0.177572 -0.0158219
-
-0.52124 -0.110793 -0.0207018
-0.54651 -0.177572 -0.0158219
-0.52124 -0.110793 0.0207018
-
-0.54651 -0.177572 -0.0158219
-0.52124 -0.110793 -0.0207018
-0.553451 -0.179827 -0.0466128
-
-0.53058 -0.112778 -0.0609893
-0.553451 -0.179827 -0.0466128
-0.52124 -0.110793 -0.0207018
-
-0.553451 -0.179827 -0.0466128
-0.53058 -0.112778 -0.0609893
-0.566957 -0.184216 -0.0748908
-
-0.548756 -0.116642 -0.0979889
-0.566957 -0.184216 -0.0748908
-0.53058 -0.112778 -0.0609893
-
-0.566957 -0.184216 -0.0748908
-0.548756 -0.116642 -0.0979889
-0.586302 -0.190501 -0.0991314
-
-0.574788 -0.122175 -0.129706
-0.586302 -0.190501 -0.0991314
-0.548756 -0.116642 -0.0979889
-
-0.586302 -0.190501 -0.0991314
-0.574788 -0.122175 -0.129706
-0.610442 -0.198345 -0.118028
-
-0.607273 -0.12908 -0.15443
-0.610442 -0.198345 -0.118028
-0.574788 -0.122175 -0.129706
-
-0.610442 -0.198345 -0.118028
-0.607273 -0.12908 -0.15443
-0.638076 -0.207323 -0.130561
-
-0.644459 -0.136984 -0.170829
-0.638076 -0.207323 -0.130561
-0.607273 -0.12908 -0.15443
-
-0.638076 -0.207323 -0.130561
-0.644459 -0.136984 -0.170829
-0.667714 -0.216953 -0.136056
-
-0.684343 -0.145462 -0.178019
-0.667714 -0.216953 -0.136056
-0.644459 -0.136984 -0.170829
-
-0.667714 -0.216953 -0.136056
-0.684343 -0.145462 -0.178019
-0.697758 -0.226715 -0.134216
-
-0.724773 -0.154055 -0.175612
-0.697758 -0.226715 -0.134216
-0.684343 -0.145462 -0.178019
-
-0.697758 -0.226715 -0.134216
-0.724773 -0.154055 -0.175612
-0.726589 -0.236083 -0.125141
-
-0.763571 -0.162302 -0.163737
-0.726589 -0.236083 -0.125141
-0.724773 -0.154055 -0.175612
-
-0.726589 -0.236083 -0.125141
-0.763571 -0.162302 -0.163737
-0.752652 -0.244551 -0.109319
-
-0.798644 -0.169757 -0.143035
-0.752652 -0.244551 -0.109319
-0.763571 -0.162302 -0.163737
-
-0.752652 -0.244551 -0.109319
-0.798644 -0.169757 -0.143035
-0.774542 -0.251664 -0.0876034
-
-0.828101 -0.176018 -0.114622
-0.774542 -0.251664 -0.0876034
-0.798644 -0.169757 -0.143035
-
-0.774542 -0.251664 -0.0876034
-0.828101 -0.176018 -0.114622
-0.79108 -0.257037 -0.0611654
-
-0.850356 -0.180749 -0.0800302
-0.79108 -0.257037 -0.0611654
-0.828101 -0.176018 -0.114622
-
-0.79108 -0.257037 -0.0611654
-0.850356 -0.180749 -0.0800302
-0.801373 -0.260382 -0.0314299
-
-0.864207 -0.183693 -0.0411236
-0.801373 -0.260382 -0.0314299
-0.850356 -0.180749 -0.0800302
-
-0.801373 -0.260382 -0.0314299
-0.864207 -0.183693 -0.0411236
-0.804867 -0.261517 0
-
-0.868909 -0.184692 0
-0.804867 -0.261517 0
-0.864207 -0.183693 -0.0411236
-
-0.868909 -0.184692 0
-0.93613 -0.0983913 0
-0.864207 -0.183693 0.0411236
-
-0.92993 -0.0977396 0.0533384
-0.864207 -0.183693 0.0411236
-0.93613 -0.0983913 0
-
-0.864207 -0.183693 0.0411236
-0.92993 -0.0977396 0.0533384
-0.850356 -0.180749 0.0800302
-
-0.911664 -0.0958197 0.103801
-0.850356 -0.180749 0.0800302
-0.92993 -0.0977396 0.0533384
-
-0.850356 -0.180749 0.0800302
-0.911664 -0.0958197 0.103801
-0.828101 -0.176018 0.114622
-
-0.882316 -0.0927351 0.148668
-0.828101 -0.176018 0.114622
-0.911664 -0.0958197 0.103801
-
-0.828101 -0.176018 0.114622
-0.882316 -0.0927351 0.148668
-0.798644 -0.169757 0.143035
-
-0.843469 -0.0886521 0.18552
-0.798644 -0.169757 0.143035
-0.882316 -0.0927351 0.148668
-
-0.798644 -0.169757 0.143035
-0.843469 -0.0886521 0.18552
-0.763571 -0.162302 0.163737
-
-0.797217 -0.0837909 0.212371
-0.763571 -0.162302 0.163737
-0.843469 -0.0886521 0.18552
-
-0.763571 -0.162302 0.163737
-0.797217 -0.0837909 0.212371
-0.724773 -0.154055 0.175612
-
-0.746053 -0.0784133 0.227773
-0.724773 -0.154055 0.175612
-0.797217 -0.0837909 0.212371
-
-0.724773 -0.154055 0.175612
-0.746053 -0.0784133 0.227773
-0.684343 -0.145462 0.178019
-
-0.692736 -0.0728095 0.230895
-0.684343 -0.145462 0.178019
-0.746053 -0.0784133 0.227773
-
-0.684343 -0.145462 0.178019
-0.692736 -0.0728095 0.230895
-0.644459 -0.136984 0.170829
-
-0.64014 -0.0672814 0.22157
-0.644459 -0.136984 0.170829
-0.692736 -0.0728095 0.230895
-
-0.644459 -0.136984 0.170829
-0.64014 -0.0672814 0.22157
-0.607273 -0.12908 0.15443
-
-0.591101 -0.0621272 0.2003
-0.607273 -0.12908 0.15443
-0.64014 -0.0672814 0.22157
-
-0.607273 -0.12908 0.15443
-0.591101 -0.0621272 0.2003
-0.574788 -0.122175 0.129706
-
-0.548261 -0.0576246 0.168232
-0.574788 -0.122175 0.129706
-0.591101 -0.0621272 0.2003
-
-0.574788 -0.122175 0.129706
-0.548261 -0.0576246 0.168232
-0.548756 -0.116642 0.0979889
-
-0.513932 -0.0540164 0.127094
-0.548756 -0.116642 0.0979889
-0.548261 -0.0576246 0.168232
-
-0.548756 -0.116642 0.0979889
-0.513932 -0.0540164 0.127094
-0.53058 -0.112778 0.0609893
-
-0.489963 -0.0514972 0.0791047
-0.53058 -0.112778 0.0609893
-0.513932 -0.0540164 0.127094
-
-0.53058 -0.112778 0.0609893
-0.489963 -0.0514972 0.0791047
-0.52124 -0.110793 0.0207018
-
-0.477646 -0.0502026 0.0268508
-0.52124 -0.110793 0.0207018
-0.489963 -0.0514972 0.0791047
-
-0.52124 -0.110793 0.0207018
-0.477646 -0.0502026 0.0268508
-0.52124 -0.110793 -0.0207018
-
-0.477646 -0.0502026 -0.0268508
-0.52124 -0.110793 -0.0207018
-0.477646 -0.0502026 0.0268508
-
-0.52124 -0.110793 -0.0207018
-0.477646 -0.0502026 -0.0268508
-0.53058 -0.112778 -0.0609893
-
-0.489963 -0.0514972 -0.0791047
-0.53058 -0.112778 -0.0609893
-0.477646 -0.0502026 -0.0268508
-
-0.53058 -0.112778 -0.0609893
-0.489963 -0.0514972 -0.0791047
-0.548756 -0.116642 -0.0979889
-
-0.513932 -0.0540164 -0.127094
-0.548756 -0.116642 -0.0979889
-0.489963 -0.0514972 -0.0791047
-
-0.548756 -0.116642 -0.0979889
-0.513932 -0.0540164 -0.127094
-0.574788 -0.122175 -0.129706
-
-0.548261 -0.0576246 -0.168232
-0.574788 -0.122175 -0.129706
-0.513932 -0.0540164 -0.127094
-
-0.574788 -0.122175 -0.129706
-0.548261 -0.0576246 -0.168232
-0.607273 -0.12908 -0.15443
-
-0.591101 -0.0621272 -0.2003
-0.607273 -0.12908 -0.15443
-0.548261 -0.0576246 -0.168232
-
-0.607273 -0.12908 -0.15443
-0.591101 -0.0621272 -0.2003
-0.644459 -0.136984 -0.170829
-
-0.64014 -0.0672814 -0.22157
-0.644459 -0.136984 -0.170829
-0.591101 -0.0621272 -0.2003
-
-0.644459 -0.136984 -0.170829
-0.64014 -0.0672814 -0.22157
-0.684343 -0.145462 -0.178019
-
-0.692736 -0.0728095 -0.230895
-0.684343 -0.145462 -0.178019
-0.64014 -0.0672814 -0.22157
-
-0.684343 -0.145462 -0.178019
-0.692736 -0.0728095 -0.230895
-0.724773 -0.154055 -0.175612
-
-0.746053 -0.0784133 -0.227773
-0.724773 -0.154055 -0.175612
-0.692736 -0.0728095 -0.230895
-
-0.724773 -0.154055 -0.175612
-0.746053 -0.0784133 -0.227773
-0.763571 -0.162302 -0.163737
-
-0.797217 -0.0837909 -0.212371
-0.763571 -0.162302 -0.163737
-0.746053 -0.0784133 -0.227773
-
-0.763571 -0.162302 -0.163737
-0.797217 -0.0837909 -0.212371
-0.798644 -0.169757 -0.143035
-
-0.843469 -0.0886521 -0.18552
-0.798644 -0.169757 -0.143035
-0.797217 -0.0837909 -0.212371
-
-0.798644 -0.169757 -0.143035
-0.843469 -0.0886521 -0.18552
-0.828101 -0.176018 -0.114622
-
-0.882316 -0.0927351 -0.148668
-0.828101 -0.176018 -0.114622
-0.843469 -0.0886521 -0.18552
-
-0.828101 -0.176018 -0.114622
-0.882316 -0.0927351 -0.148668
-0.850356 -0.180749 -0.0800302
-
-0.911664 -0.0958197 -0.103801
-0.850356 -0.180749 -0.0800302
-0.882316 -0.0927351 -0.148668
-
-0.850356 -0.180749 -0.0800302
-0.911664 -0.0958197 -0.103801
-0.864207 -0.183693 -0.0411236
-
-0.92993 -0.0977396 -0.0533384
-0.864207 -0.183693 -0.0411236
-0.911664 -0.0958197 -0.103801
-
-0.864207 -0.183693 -0.0411236
-0.92993 -0.0977396 -0.0533384
-0.868909 -0.184692 0
-
-0.93613 -0.0983913 0
-0.868909 -0.184692 0
-0.92993 -0.0977396 -0.0533384
-
-0.93613 -0.0983913 0
-1 -8.88178e-16 0
-0.92993 -0.0977396 0.0533384
-
-0.992183 -8.81236e-16 0.0668786
-0.92993 -0.0977396 0.0533384
-1 -8.88178e-16 0
-
-0.92993 -0.0977396 0.0533384
-0.992183 -8.81236e-16 0.0668786
-0.911664 -0.0958197 0.103801
-
-0.969153 -8.60781e-16 0.130152
-0.911664 -0.0958197 0.103801
-0.992183 -8.81236e-16 0.0668786
-
-0.911664 -0.0958197 0.103801
-0.969153 -8.60781e-16 0.130152
-0.882316 -0.0927351 0.148668
-
-0.932153 -8.27918e-16 0.186408
-0.882316 -0.0927351 0.148668
-0.969153 -8.60781e-16 0.130152
-
-0.882316 -0.0927351 0.148668
-0.932153 -8.27918e-16 0.186408
-0.843469 -0.0886521 0.18552
-
-0.883176 -7.84418e-16 0.232616
-0.843469 -0.0886521 0.18552
-0.932153 -8.27918e-16 0.186408
-
-0.843469 -0.0886521 0.18552
-0.883176 -7.84418e-16 0.232616
-0.797217 -0.0837909 0.212371
-
-0.824863 -7.32626e-16 0.266283
-0.797217 -0.0837909 0.212371
-0.883176 -7.84418e-16 0.232616
-
-0.797217 -0.0837909 0.212371
-0.824863 -7.32626e-16 0.266283
-0.746053 -0.0784133 0.227773
-
-0.760358 -6.75334e-16 0.285594
-0.746053 -0.0784133 0.227773
-0.824863 -7.32626e-16 0.266283
-
-0.746053 -0.0784133 0.227773
-0.760358 -6.75334e-16 0.285594
-0.692736 -0.0728095 0.230895
-
-0.693138 -6.1563e-16 0.289509
-0.692736 -0.0728095 0.230895
-0.760358 -6.75334e-16 0.285594
-
-0.692736 -0.0728095 0.230895
-0.693138 -6.1563e-16 0.289509
-0.64014 -0.0672814 0.22157
-
-0.626827 -5.56734e-16 0.277817
-0.64014 -0.0672814 0.22157
-0.693138 -6.1563e-16 0.289509
-
-0.64014 -0.0672814 0.22157
-0.626827 -5.56734e-16 0.277817
-0.591101 -0.0621272 0.2003
-
-0.565 -5.01821e-16 0.251147
-0.591101 -0.0621272 0.2003
-0.626827 -5.56734e-16 0.277817
-
-0.591101 -0.0621272 0.2003
-0.565 -5.01821e-16 0.251147
-0.548261 -0.0576246 0.168232
-
-0.51099 -4.5385e-16 0.210938
-0.548261 -0.0576246 0.168232
-0.565 -5.01821e-16 0.251147
-
-0.548261 -0.0576246 0.168232
-0.51099 -4.5385e-16 0.210938
-0.513932 -0.0540164 0.127094
-
-0.467709 -4.15409e-16 0.159358
-0.513932 -0.0540164 0.127094
-0.51099 -4.5385e-16 0.210938
-
-0.513932 -0.0540164 0.127094
-0.467709 -4.15409e-16 0.159358
-0.489963 -0.0514972 0.0791047
-
-0.437489 -3.88568e-16 0.0991858
-0.489963 -0.0514972 0.0791047
-0.467709 -4.15409e-16 0.159358
-
-0.489963 -0.0514972 0.0791047
-0.437489 -3.88568e-16 0.0991858
-0.477646 -0.0502026 0.0268508
-
-0.421961 -3.74777e-16 0.0336669
-0.477646 -0.0502026 0.0268508
-0.437489 -3.88568e-16 0.0991858
-
-0.477646 -0.0502026 0.0268508
-0.421961 -3.74777e-16 0.0336669
-0.477646 -0.0502026 -0.0268508
-
-0.421961 -3.74777e-16 -0.0336669
-0.477646 -0.0502026 -0.0268508
-0.421961 -3.74777e-16 0.0336669
-
-0.477646 -0.0502026 -0.0268508
-0.421961 -3.74777e-16 -0.0336669
-0.489963 -0.0514972 -0.0791047
-
-0.437489 -3.88568e-16 -0.0991858
-0.489963 -0.0514972 -0.0791047
-0.421961 -3.74777e-16 -0.0336669
-
-0.489963 -0.0514972 -0.0791047
-0.437489 -3.88568e-16 -0.0991858
-0.513932 -0.0540164 -0.127094
-
-0.467709 -4.15409e-16 -0.159358
-0.513932 -0.0540164 -0.127094
-0.437489 -3.88568e-16 -0.0991858
-
-0.513932 -0.0540164 -0.127094
-0.467709 -4.15409e-16 -0.159358
-0.548261 -0.0576246 -0.168232
-
-0.51099 -4.5385e-16 -0.210938
-0.548261 -0.0576246 -0.168232
-0.467709 -4.15409e-16 -0.159358
-
-0.548261 -0.0576246 -0.168232
-0.51099 -4.5385e-16 -0.210938
-0.591101 -0.0621272 -0.2003
-
-0.565 -5.01821e-16 -0.251147
-0.591101 -0.0621272 -0.2003
-0.51099 -4.5385e-16 -0.210938
-
-0.591101 -0.0621272 -0.2003
-0.565 -5.01821e-16 -0.251147
-0.64014 -0.0672814 -0.22157
-
-0.626827 -5.56734e-16 -0.277817
-0.64014 -0.0672814 -0.22157
-0.565 -5.01821e-16 -0.251147
-
-0.64014 -0.0672814 -0.22157
-0.626827 -5.56734e-16 -0.277817
-0.692736 -0.0728095 -0.230895
-
-0.693138 -6.1563e-16 -0.289509
-0.692736 -0.0728095 -0.230895
-0.626827 -5.56734e-16 -0.277817
-
-0.692736 -0.0728095 -0.230895
-0.693138 -6.1563e-16 -0.289509
-0.746053 -0.0784133 -0.227773
-
-0.760358 -6.75334e-16 -0.285594
-0.746053 -0.0784133 -0.227773
-0.693138 -6.1563e-16 -0.289509
-
-0.746053 -0.0784133 -0.227773
-0.760358 -6.75334e-16 -0.285594
-0.797217 -0.0837909 -0.212371
-
-0.824863 -7.32626e-16 -0.266283
-0.797217 -0.0837909 -0.212371
-0.760358 -6.75334e-16 -0.285594
-
-0.797217 -0.0837909 -0.212371
-0.824863 -7.32626e-16 -0.266283
-0.843469 -0.0886521 -0.18552
-
-0.883176 -7.84418e-16 -0.232616
-0.843469 -0.0886521 -0.18552
-0.824863 -7.32626e-16 -0.266283
-
-0.843469 -0.0886521 -0.18552
-0.883176 -7.84418e-16 -0.232616
-0.882316 -0.0927351 -0.148668
-
-0.932153 -8.27918e-16 -0.186408
-0.882316 -0.0927351 -0.148668
-0.883176 -7.84418e-16 -0.232616
-
-0.882316 -0.0927351 -0.148668
-0.932153 -8.27918e-16 -0.186408
-0.911664 -0.0958197 -0.103801
-
-0.969153 -8.60781e-16 -0.130152
-0.911664 -0.0958197 -0.103801
-0.932153 -8.27918e-16 -0.186408
-
-0.911664 -0.0958197 -0.103801
-0.969153 -8.60781e-16 -0.130152
-0.92993 -0.0977396 -0.0533384
-
-0.992183 -8.81236e-16 -0.0668786
-0.92993 -0.0977396 -0.0533384
-0.969153 -8.60781e-16 -0.130152
-
-0.92993 -0.0977396 -0.0533384
-0.992183 -8.81236e-16 -0.0668786
-0.93613 -0.0983913 0
-
-1 -8.88178e-16 0
-0.93613 -0.0983913 0
-0.992183 -8.81236e-16 -0.0668786
-
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/sample/Makefile b/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/sample/Makefile
deleted file mode 100644
index fff3b2a8dc75e179090064722331c0b3c302137c..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/sample/Makefile
+++ /dev/null
@@ -1,28 +0,0 @@
-CC = g++
-
-CFLAGS  = -O2 -I. -I../../include
-LDFLAGS	= -L. -L../../lib
-LDLIBS  = -lPQP -lm      
-
-.SUFFIXES: .cpp
-
-SRCS    = main.cpp
-
-OBJECTS	= main.o
-
-TARGET  = sample
-
-CLEAN   = $(OBJECTS) $(TARGET)
-
-.cpp.o:
-	$(CC) ${CFLAGS} -c $<
-
-$(TARGET): $(OBJECTS)
-	$(CC) $(CFLAGS) -o $(TARGET) $(OBJECTS) -L. $(LDFLAGS) $(LDLIBS)
-
-run: $(TARGET)
-	$(TARGET)
-
-clean:
-	/bin/rm -f $(CLEAN)
-
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/sample/main.cpp b/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/sample/main.cpp
deleted file mode 100644
index f81dfdba98e0257182a4aaac9c049f3776a32bd3..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/sample/main.cpp
+++ /dev/null
@@ -1,301 +0,0 @@
-/*************************************************************************\
-
-  Copyright 1999 The University of North Carolina at Chapel Hill.
-  All Rights Reserved.
-
-  Permission to use, copy, modify and distribute this software and its
-  documentation for educational, research and non-profit purposes, without
-  fee, and without a written agreement is hereby granted, provided that the
-  above copyright notice and the following three paragraphs appear in all
-  copies.
-
-  IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE
-  LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
-  CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE
-  USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY
-  OF NORTH CAROLINA HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
-  DAMAGES.
-
-  THE UNIVERSITY OF NORTH CAROLINA SPECIFICALLY DISCLAIM ANY
-  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE
-  PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
-  NORTH CAROLINA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
-  UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-
-  The authors may be contacted via:
-
-  US Mail:             S. Gottschalk, E. Larsen
-                       Department of Computer Science
-                       Sitterson Hall, CB #3175
-                       University of N. Carolina
-                       Chapel Hill, NC 27599-3175
-
-  Phone:               (919)962-1749
-
-  EMail:               geom@cs.unc.edu
-
-
-\**************************************************************************/
-
-#include <stdio.h>
-#include <math.h>
-#include "PQP.h"
-
-#define PI 3.14159265359
-#define LISTS 0
-
-main()
-{
-  // initialize PQP model pointers
-
-  PQP_Model *b1 = new PQP_Model;
-  PQP_Model *b2 = new PQP_Model;
-  
-  // Add trianges to form tori
-
-  fprintf(stderr, "loading tris into PQP_Model objects...");  fflush(stderr);
-  
-  PQP_REAL a = (PQP_REAL)1.0;  // major radius of the tori
-  PQP_REAL b = (PQP_REAL)0.2;  // minor radius of the tori
-
-  int n1 = 50;     // tori will have n1*n2*2 triangles each
-  int n2 = 50;
-
-  int uc, vc;
-  int count = 0;
-  
-  b1->BeginModel();
-  b2->BeginModel();
-  for(uc=0; uc<n1; uc++)
-  {
-    for(vc=0; vc<n2; vc++)
-    {
-      PQP_REAL u1 = (PQP_REAL)(2.0*PI*uc) / n1; 
-      PQP_REAL u2 = (PQP_REAL)(2.0*PI*(uc+1)) / n1; 
-      PQP_REAL v1 = (PQP_REAL)(2.0*PI*vc) / n2; 
-      PQP_REAL v2 = (PQP_REAL)(2.0*PI*(vc+1)) / n2; 
-
-      PQP_REAL p1[3], p2[3], p3[3], p4[3];
-
-      p1[0] = (a - b * cos(v1)) * cos(u1);
-      p2[0] = (a - b * cos(v1)) * cos(u2);
-      p3[0] = (a - b * cos(v2)) * cos(u1);
-      p4[0] = (a - b * cos(v2)) * cos(u2);
-      p1[1] = (a - b * cos(v1)) * sin(u1);
-      p2[1] = (a - b * cos(v1)) * sin(u2);
-      p3[1] = (a - b * cos(v2)) * sin(u1);
-      p4[1] = (a - b * cos(v2)) * sin(u2);
-      p1[2] = b * sin(v1);
-      p2[2] = b * sin(v1);
-      p3[2] = b * sin(v2);
-      p4[2] = b * sin(v2);
-
-      b1->AddTri(p1, p2, p3, count);
-      b1->AddTri(p4, p2, p3, count+1);
-      b2->AddTri(p1, p2, p3, count);
-      b2->AddTri(p4, p2, p3, count+1);
-
-      count += 2;
-    }
-  }
-
-  fprintf(stderr, "done\n");  fflush(stderr);
-  fprintf(stderr, "Tori have %d triangles each.\n", count);
-  fprintf(stderr, "building hierarchies...");  fflush(stderr);
-  b1->EndModel();
-  b2->EndModel();
-  fprintf(stderr, "done.\n"); 
-  b1->MemUsage(1);
-  b2->MemUsage(1);
-  fflush(stderr); 
-  
-  // now we are free to call the proximity routines.
-  // but first, construct the transformations that define the placement
-  // of our two hierarchies in world space:
-
-  // this placement causes them to overlap a large amount.
-
-  PQP_REAL R1[3][3], R2[3][3], T1[3], T2[3];
-  
-  R1[0][0] = R1[1][1] = R1[2][2] = 1.0;
-  R1[0][1] = R1[1][0] = R1[2][0] = 0.0;
-  R1[0][2] = R1[1][2] = R1[2][1] = 0.0;
-
-  R2[0][0] = R2[1][1] = R2[2][2] = 1.0;
-  R2[0][1] = R2[1][0] = R2[2][0] = 0.0;
-  R2[0][2] = R2[1][2] = R2[2][1] = 0.0;
-  
-  T1[0] = 1.0;  T1[1] = 0.0; T1[2] = 0.0;
-  T2[0] = 0.0;  T2[1] = 0.0; T2[2] = 0.0;
-
-  // perform a collision query
-
-  PQP_CollideResult cres;
-  PQP_Collide(&cres, R1, T1, b1, R2, T2, b2, PQP_ALL_CONTACTS);
-
-  // looking at the report, we can see where all the contacts were, and
-  // also how many tests were necessary:
-
-  printf("\nAll contact collision query between overlapping tori:\n");
-  printf("Num BV tests: %d\n", cres.NumBVTests());
-  printf("Num Tri tests: %d\n", cres.NumTriTests());
-  printf("Num contact pairs: %d\n", cres.NumPairs());
-#if LISTS
-  int i;
-  for(i=0; i<cres.NumPairs(); i++)
-  {
-    printf("\t contact %4d: tri %4d and tri %4d\n",
-           i,
-           cres.Id1(i),
-           cres.Id2(i));
-  }
-#endif
-
-  // Notice the PQP_ALL_CONTACTS flag we used in the call to PQP_Collide.
-  // The alternative is to use the PQP_FIRST_CONTACT flag, instead.
-  // The result is that the collide routine searches for any contact,
-  // but not all of them.  It can take many many fewer tests to locate a single
-  // contact.
-
-  PQP_Collide(&cres, R1, T1, b1, R2, T2, b2, PQP_FIRST_CONTACT);
-
-  printf("\nFirst contact collision query between overlapping tori:\n");
-  printf("Num BV tests: %d\n", cres.NumBVTests());
-  printf("Num Tri tests: %d\n", cres.NumTriTests());
-  printf("Num contact pairs: %d\n", cres.NumPairs());
-#if LISTS
-  for(i=0; i<cres.NumPairs(); i++)
-  {
-    printf("\t contact %4d: tri %4d and tri %4d\n", 
-           i, 
-           cres.Id1(i), 
-           cres.Id2(i));
-  }
-#endif
-  
-  // Perform a distance query, which should return a distance of 0.0
-
-  PQP_DistanceResult dres;
-  PQP_Distance(&dres, R1, T1, b1, R2, T2, b2, 0.0, 0.0);
-
-  printf("\nDistance query between overlapping tori\n");
-  printf("Num BV tests: %d\n", dres.NumBVTests());
-  printf("Num Tri tests: %d\n", dres.NumTriTests());
-  printf("Distance: %lf\n", dres.Distance());
-
-  // by rotating one of them around the x-axis 90 degrees, they 
-  // are now interlocked, but not quite touching.
-
-  R1[0][0] = 1.0;  R1[0][1] = 0.0;  R1[0][2] = 0.0;
-  R1[1][0] = 0.0;  R1[1][1] = 0.0;  R1[1][2] =-1.0;
-  R1[2][0] = 0.0;  R1[2][1] = 1.0;  R1[2][2] = 0.0;
-  
-  PQP_Collide(&cres, R1, T1, b1, R2, T2, b2, PQP_FIRST_CONTACT);
-
-  printf("\nCollision query between interlocked but nontouching tori:\n");
-  printf("Num BV tests: %d\n", cres.NumBVTests());
-  printf("Num Tri tests: %d\n", cres.NumTriTests());
-  printf("Num contact pairs: %d\n", cres.NumPairs());
-#if LISTS
-  for(i=0; i<cres.NumPairs(); i++)
-  {
-    printf("\t contact %4d: tri %4d and tri %4d\n", 
-           i, 
-           cres.Id1(i), 
-           cres.Id2(i));
-  }
-#endif
-
-  // Perform a distance query - the distance found should be greater than zero
-
-  PQP_Distance(&dres, R1, T1, b1, R2, T2, b2, 0.0, 0.0);
-
-  printf("\nDistance query between interlocked but nontouching tori\n");
-  printf("Num BV tests: %d\n", dres.NumBVTests());
-  printf("Num Tri tests: %d\n", dres.NumTriTests());
-  printf("Distance: %lf\n", dres.Distance());
-
-  // Perform two tolerance queries. One tolerance setting is greater than the 
-  // distance between the models, and one tolerance is less than the distance.
-
-  PQP_ToleranceResult tres;
-  PQP_REAL tolerance = (PQP_REAL).60;
-  PQP_Tolerance(&tres, R1, T1, b1, R2, T2, b2, tolerance);
-
-  printf("\nTolerance query between interlocked but nontouching tori\n"
-         "with tolerance %lf\n", tolerance);
-  printf("Num BV tests: %d\n", tres.NumBVTests());
-  printf("Num Tri tests: %d\n", tres.NumTriTests());
-  printf("Closer than tolerance? ",tolerance);
-  if (tres.CloserThanTolerance()) printf("yes.\n"); else printf("no.\n");
-
-  tolerance = (PQP_REAL).40;
-  PQP_Tolerance(&tres, R1, T1, b1, R2, T2, b2, tolerance);
-
-  printf("\nTolerance query between interlocked but nontouching tori\n"
-         "with tolerance %lf\n", tolerance);
-  printf("Num BV tests: %d\n", tres.NumBVTests());
-  printf("Num Tri tests: %d\n", tres.NumTriTests());
-  printf("Closer than tolerance? ",tolerance);
-  if (tres.CloserThanTolerance()) printf("yes.\n"); else printf("no.\n");
-
-  // by moving one of the tori closer to the other, they
-  // almost touch.  This is the case that requires a lot
-  // of work wiht methods which use bounding boxes of limited
-  // aspect ratio.  Oriented bounding boxes are more efficient
-  // at determining noncontact than spheres, octree, or axis-aligned
-  // bounding boxes for scenarios like this.  In this case, the interlocked
-  // tori are separated by 0.0001 at their closest point.
-
-
-  T1[0] = (PQP_REAL)1.5999;
-  
-  PQP_Collide(&cres, R1, T1, b1, R2, T2, b2, PQP_FIRST_CONTACT);
-
-  printf("\nCollision query on interlocked and almost touching tori:\n");
-  printf("Num BV tests: %d\n", cres.NumBVTests());
-  printf("Num Tri tests: %d\n", cres.NumTriTests());
-  printf("Num contact pairs: %d\n", cres.NumPairs());
-#if LISTS
-  for(i=0; i<cres.NumPairs(); i++)
-  {
-    printf("\t contact %4d: tri %4d and tri %4d\n", 
-           i, 
-           cres.Id1(i), 
-           cres.Id2(i));
-  }
-#endif
-
-  PQP_Distance(&dres, R1, T1, b1, R2, T2, b2, 0.0, 0.0);
-
-  printf("\nDistance query between interlocked and almost touching tori\n");
-  printf("Num BV tests: %d\n", dres.NumBVTests());
-  printf("Num Tri tests: %d\n", dres.NumTriTests());
-  printf("Distance: %lf\n", dres.Distance());
-
-  tolerance = (PQP_REAL)0.00015;
-  PQP_Tolerance(&tres, R1, T1, b1, R2, T2, b2, tolerance);
-
-  printf("\nTolerance query between interlocked and almost touching tori\n"
-         "with tolerance %lf\n", tolerance);
-  printf("Num BV tests: %d\n", tres.NumBVTests());
-  printf("Num Tri tests: %d\n", tres.NumTriTests());
-  printf("Closer than tolerance? ",tolerance);
-  if (tres.CloserThanTolerance()) printf("yes.\n"); else printf("no.\n");
-
-  tolerance = (PQP_REAL)0.00005;
-  PQP_Tolerance(&tres, R1, T1, b1, R2, T2, b2, tolerance);
-
-  printf("\nTolerance query between interlocked and almost touching tori\n"
-         "with tolerance %lf\n", tolerance);
-  printf("Num BV tests: %d\n", tres.NumBVTests());
-  printf("Num Tri tests: %d\n", tres.NumTriTests());
-  printf("Closer than tolerance? ",tolerance);
-  if (tres.CloserThanTolerance()) printf("yes.\n"); else printf("no.\n");
-
-  delete b1;
-  delete b2;
-
-  return 0;  
-}
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/sample/sample.dsp b/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/sample/sample.dsp
deleted file mode 100644
index aec7603d4701b8ac86e3cd3443cf937e17cee9ec..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/sample/sample.dsp
+++ /dev/null
@@ -1,91 +0,0 @@
-# Microsoft Developer Studio Project File - Name="sample" - Package Owner=<4>
-# Microsoft Developer Studio Generated Build File, Format Version 5.00
-# ** DO NOT EDIT **
-
-# TARGTYPE "Win32 (x86) Console Application" 0x0103
-
-CFG=sample - Win32 Debug
-!MESSAGE This is not a valid makefile. To build this project using NMAKE,
-!MESSAGE use the Export Makefile command and run
-!MESSAGE 
-!MESSAGE NMAKE /f "sample.mak".
-!MESSAGE 
-!MESSAGE You can specify a configuration when running NMAKE
-!MESSAGE by defining the macro CFG on the command line. For example:
-!MESSAGE 
-!MESSAGE NMAKE /f "sample.mak" CFG="sample - Win32 Debug"
-!MESSAGE 
-!MESSAGE Possible choices for configuration are:
-!MESSAGE 
-!MESSAGE "sample - Win32 Release" (based on "Win32 (x86) Console Application")
-!MESSAGE "sample - Win32 Debug" (based on "Win32 (x86) Console Application")
-!MESSAGE 
-
-# Begin Project
-# PROP Scc_ProjName ""
-# PROP Scc_LocalPath ""
-CPP=cl.exe
-RSC=rc.exe
-
-!IF  "$(CFG)" == "sample - Win32 Release"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir "Release"
-# PROP BASE Intermediate_Dir "Release"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 0
-# PROP Output_Dir "./"
-# PROP Intermediate_Dir "Release"
-# PROP Ignore_Export_Lib 0
-# PROP Target_Dir ""
-# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
-# ADD CPP /nologo /W3 /GX /O2 /I "..\..\include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
-# ADD BASE RSC /l 0x409 /d "NDEBUG"
-# ADD RSC /l 0x409 /d "NDEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-LINK32=link.exe
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
-# ADD LINK32 pqp.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib PQP.lib /nologo /subsystem:console /machine:I386 /libpath:"..\..\lib"
-# SUBTRACT LINK32 /nodefaultlib
-
-!ELSEIF  "$(CFG)" == "sample - Win32 Debug"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir "Debug"
-# PROP BASE Intermediate_Dir "Debug"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 1
-# PROP Output_Dir "./"
-# PROP Intermediate_Dir "Debug"
-# PROP Ignore_Export_Lib 0
-# PROP Target_Dir ""
-# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
-# ADD CPP /nologo /W3 /GX /Od /I "..\..\include" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
-# ADD BASE RSC /l 0x409 /d "_DEBUG"
-# ADD RSC /l 0x409 /d "_DEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-LINK32=link.exe
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
-# ADD LINK32 PQP.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept /libpath:"..\..\lib"
-# SUBTRACT LINK32 /nodefaultlib
-
-!ENDIF 
-
-# Begin Target
-
-# Name "sample - Win32 Release"
-# Name "sample - Win32 Debug"
-# Begin Source File
-
-SOURCE=.\main.cpp
-# End Source File
-# End Target
-# End Project
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/sample/sample.plg b/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/sample/sample.plg
deleted file mode 100644
index 958f67aee4cec28709a6d7d2c0982aaf2456ec4e..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/sample/sample.plg
+++ /dev/null
@@ -1,20 +0,0 @@
---------------------Configuration: sample - Win32 Release--------------------
-Begining build with project "C:\Win95\Desktop\PQP_v1.2.1\demos\sample\sample.dsp", at root.
-Active configuration is Win32 (x86) Console Application (based on Win32 (x86) Console Application)
-
-Project's tools are:
-			"32-bit C/C++ Compiler for 80x86" with flags "/nologo /ML /W3 /GX /O2 /I "..\..\include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /Fp"Release/sample.pch" /YX /Fo"Release/" /Fd"Release/" /FD /c "
-			"Win32 Resource Compiler" with flags "/l 0x409 /d "NDEBUG" "
-			"Browser Database Maker" with flags "/nologo /o"./sample.bsc" "
-			"COFF Linker for 80x86" with flags "pqp.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib PQP.lib /nologo /subsystem:console /incremental:no /pdb:"./sample.pdb" /machine:I386 /out:"./sample.exe" /libpath:"..\..\lib" "
-			"Custom Build" with flags ""
-			"<Component 0xa>" with flags ""
-
-Creating temp file "C:\WIN95\TEMP\RSP6314.TMP" with contents <pqp.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib PQP.lib /nologo /subsystem:console /incremental:no /pdb:"./sample.pdb" /machine:I386 /out:"./sample.exe" /libpath:"..\..\lib" 
-.\Release\main.obj>
-Creating command line "link.exe @C:\WIN95\TEMP\RSP6314.TMP" 
-Linking...
-
-
-
-sample.exe - 0 error(s), 0 warning(s)
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/spinning/Makefile b/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/spinning/Makefile
deleted file mode 100644
index 9289a9b19b4222c6d3eafc0ce607a1718a5cafef..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/spinning/Makefile
+++ /dev/null
@@ -1,36 +0,0 @@
-# Must set these gl and glut locations to build 'spinning'
-
-CC = g++
-
-GL_INCPATH = -I/usr/include/
-GL_LIBPATH = -L/usr/lib/ -L/usr/X11R6/lib/
-GL_LIBS = -lGLU -lGL -lXext -lXmu -lXi -lX11 -lglut
-
-.SUFFIXES: .cpp
-
-CC = g++
-CFLAGS  = -g -O2 -I. -I../../include $(GL_INCPATH)
-LDFLAGS = -L. -L../../lib -L/usr/lib/ -L/usr/X11R6/lib/
-LDLIBS  = -lPQP -lm $(GL_LIBS) 
-
-OBJS   = main.o model.o
-TARGET = spinning
-
-.cpp.o:
-	$(CC) ${CFLAGS} -c $<
-
-$(TARGET): $(OBJS)
-	$(CC) $(CFLAGS) $(OBJS) -o $(TARGET) $(LDFLAGS) $(LDLIBS)
-
-run: $(TARGET)
-	$(TARGET)
-
-clean: 
-	rm -f *~ $(OBJS) $(TARGET) 
-
-
-
-
-
-
-
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/spinning/MatVec.h b/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/spinning/MatVec.h
deleted file mode 100644
index 3d90522f84c19bd070f0d18fb1aff5078bdaa753..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/spinning/MatVec.h
+++ /dev/null
@@ -1,881 +0,0 @@
-/*************************************************************************\
-
-  Copyright 1999 The University of North Carolina at Chapel Hill.
-  All Rights Reserved.
-
-  Permission to use, copy, modify and distribute this software and its
-  documentation for educational, research and non-profit purposes, without
-  fee, and without a written agreement is hereby granted, provided that the
-  above copyright notice and the following three paragraphs appear in all
-  copies.
-
-  IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE
-  LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
-  CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE
-  USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY
-  OF NORTH CAROLINA HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
-  DAMAGES.
-
-  THE UNIVERSITY OF NORTH CAROLINA SPECIFICALLY DISCLAIM ANY
-  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE
-  PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
-  NORTH CAROLINA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
-  UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-
-  The authors may be contacted via:
-
-  US Mail:             S. Gottschalk
-                       Department of Computer Science
-                       Sitterson Hall, CB #3175
-                       University of N. Carolina
-                       Chapel Hill, NC 27599-3175
-
-  Phone:               (919)962-1749
-
-  EMail:               geom@cs.unc.edu
-
-
-\**************************************************************************/
-
-#ifndef PQP_MATVEC_H
-#define PQP_MATVEC_H
-
-#include <math.h>
-#include <stdio.h>
-#include "PQP_Compile.h"
-
-#ifndef M_PI
-const double M_PI =  3.14159265359;
-#endif
-
-#ifdef gnu
-#include "zzzz.h"
-
-#ifdef hppa
-#define myfabs(x) \
- ({double __value, __arg = (x); \
-   asm("fabs,dbl %1, %0": "=f" (__value): "f" (__arg)); \
-   __value; \
-});
-#endif
-
-#ifdef mips
-#define myfabs(x) \
- ({double __value, __arg = (x); \
-   asm("abs.d %0, %1": "=f" (__value): "f" (__arg)); \
-   __value; \
-});
-#endif
-
-#else  
-
-#define myfabs(x) ((x < 0) ? -x : x)
-
-#endif
-
-
-inline
-void
-Mprintg(const PQP_REAL M[3][3])
-{
-  printf("%g %g %g\n%g %g %g\n%g %g %g\n",
-	 M[0][0], M[0][1], M[0][2],
-	 M[1][0], M[1][1], M[1][2],
-	 M[2][0], M[2][1], M[2][2]);
-}
-
-
-inline
-void
-Mfprint(FILE *f, const PQP_REAL M[3][3])
-{
-  fprintf(f, "%g %g %g\n%g %g %g\n%g %g %g\n",
-	 M[0][0], M[0][1], M[0][2],
-	 M[1][0], M[1][1], M[1][2],
-	 M[2][0], M[2][1], M[2][2]);
-}
-
-inline
-void
-Mprint(const PQP_REAL M[3][3])
-{
-  printf("%g %g %g\n%g %g %g\n%g %g %g\n",
-	 M[0][0], M[0][1], M[0][2],
-	 M[1][0], M[1][1], M[1][2],
-	 M[2][0], M[2][1], M[2][2]);
-}
-
-inline
-void
-Vprintg(const PQP_REAL V[3])
-{
-  printf("%g %g %g\n", V[0], V[1], V[2]);
-}
-
-inline
-void
-Vfprint(FILE *f, const PQP_REAL V[3])
-{
-  fprintf(f, "%g %g %g\n", V[0], V[1], V[2]);
-}
-
-inline
-void
-Vprint(const PQP_REAL V[3])
-{
-  printf("%g %g %g\n", V[0], V[1], V[2]);
-}
-
-inline
-void
-Midentity(PQP_REAL M[3][3])
-{
-  M[0][0] = M[1][1] = M[2][2] = 1.0;
-  M[0][1] = M[1][2] = M[2][0] = 0.0;
-  M[0][2] = M[1][0] = M[2][1] = 0.0;
-}
-
-inline
-void
-Videntity(PQP_REAL T[3])
-{
-  T[0] = T[1] = T[2] = 0.0;
-}
-
-inline
-void
-McM(PQP_REAL Mr[3][3], const PQP_REAL M[3][3])
-{
-  Mr[0][0] = M[0][0];  Mr[0][1] = M[0][1];  Mr[0][2] = M[0][2];
-  Mr[1][0] = M[1][0];  Mr[1][1] = M[1][1];  Mr[1][2] = M[1][2];
-  Mr[2][0] = M[2][0];  Mr[2][1] = M[2][1];  Mr[2][2] = M[2][2];
-}
-
-inline
-void
-MTcM(PQP_REAL Mr[3][3], const PQP_REAL M[3][3])
-{
-  Mr[0][0] = M[0][0];  Mr[1][0] = M[0][1];  Mr[2][0] = M[0][2];
-  Mr[0][1] = M[1][0];  Mr[1][1] = M[1][1];  Mr[2][1] = M[1][2];
-  Mr[0][2] = M[2][0];  Mr[1][2] = M[2][1];  Mr[2][2] = M[2][2];
-}
-
-inline
-void
-VcV(PQP_REAL Vr[3], const PQP_REAL V[3])
-{
-  Vr[0] = V[0];  Vr[1] = V[1];  Vr[2] = V[2];
-}
-
-inline
-void
-McolcV(PQP_REAL Vr[3], const PQP_REAL M[3][3], int c)
-{
-  Vr[0] = M[0][c];
-  Vr[1] = M[1][c];
-  Vr[2] = M[2][c];
-}
-
-inline
-void
-McolcMcol(PQP_REAL Mr[3][3], int cr, const PQP_REAL M[3][3], int c)
-{
-  Mr[0][cr] = M[0][c];
-  Mr[1][cr] = M[1][c];
-  Mr[2][cr] = M[2][c];
-}
-
-inline
-void
-MxMpV(PQP_REAL Mr[3][3], const PQP_REAL M1[3][3], const PQP_REAL M2[3][3], const PQP_REAL T[3])
-{
-  Mr[0][0] = (M1[0][0] * M2[0][0] +
-	      M1[0][1] * M2[1][0] +
-	      M1[0][2] * M2[2][0] +
-	      T[0]);
-  Mr[1][0] = (M1[1][0] * M2[0][0] +
-	      M1[1][1] * M2[1][0] +
-	      M1[1][2] * M2[2][0] +
-	      T[1]);
-  Mr[2][0] = (M1[2][0] * M2[0][0] +
-	      M1[2][1] * M2[1][0] +
-	      M1[2][2] * M2[2][0] +
-	      T[2]);
-  Mr[0][1] = (M1[0][0] * M2[0][1] +
-	      M1[0][1] * M2[1][1] +
-	      M1[0][2] * M2[2][1] +
-	      T[0]);
-  Mr[1][1] = (M1[1][0] * M2[0][1] +
-	      M1[1][1] * M2[1][1] +
- 	      M1[1][2] * M2[2][1] +
-	      T[1]);
-  Mr[2][1] = (M1[2][0] * M2[0][1] +
-	      M1[2][1] * M2[1][1] +
-	      M1[2][2] * M2[2][1] +
-	      T[2]);
-  Mr[0][2] = (M1[0][0] * M2[0][2] +
-	      M1[0][1] * M2[1][2] +
-	      M1[0][2] * M2[2][2] +
-	      T[0]);
-  Mr[1][2] = (M1[1][0] * M2[0][2] +
-	      M1[1][1] * M2[1][2] +
-	      M1[1][2] * M2[2][2] +
-	      T[1]);
-  Mr[2][2] = (M1[2][0] * M2[0][2] +
-	      M1[2][1] * M2[1][2] +
-	      M1[2][2] * M2[2][2] +
-	      T[2]);
-}
-
-inline
-void
-MxM(PQP_REAL Mr[3][3], const PQP_REAL M1[3][3], const PQP_REAL M2[3][3])
-{
-  Mr[0][0] = (M1[0][0] * M2[0][0] +
-	      M1[0][1] * M2[1][0] +
-	      M1[0][2] * M2[2][0]);
-  Mr[1][0] = (M1[1][0] * M2[0][0] +
-	      M1[1][1] * M2[1][0] +
-	      M1[1][2] * M2[2][0]);
-  Mr[2][0] = (M1[2][0] * M2[0][0] +
-	      M1[2][1] * M2[1][0] +
-	      M1[2][2] * M2[2][0]);
-  Mr[0][1] = (M1[0][0] * M2[0][1] +
-	      M1[0][1] * M2[1][1] +
-	      M1[0][2] * M2[2][1]);
-  Mr[1][1] = (M1[1][0] * M2[0][1] +
-	      M1[1][1] * M2[1][1] +
- 	      M1[1][2] * M2[2][1]);
-  Mr[2][1] = (M1[2][0] * M2[0][1] +
-	      M1[2][1] * M2[1][1] +
-	      M1[2][2] * M2[2][1]);
-  Mr[0][2] = (M1[0][0] * M2[0][2] +
-	      M1[0][1] * M2[1][2] +
-	      M1[0][2] * M2[2][2]);
-  Mr[1][2] = (M1[1][0] * M2[0][2] +
-	      M1[1][1] * M2[1][2] +
-	      M1[1][2] * M2[2][2]);
-  Mr[2][2] = (M1[2][0] * M2[0][2] +
-	      M1[2][1] * M2[1][2] +
-	      M1[2][2] * M2[2][2]);
-}
-
-
-inline
-void
-MxMT(PQP_REAL Mr[3][3], const PQP_REAL M1[3][3], const PQP_REAL M2[3][3])
-{
-  Mr[0][0] = (M1[0][0] * M2[0][0] +
-	      M1[0][1] * M2[0][1] +
-	      M1[0][2] * M2[0][2]);
-  Mr[1][0] = (M1[1][0] * M2[0][0] +
-	      M1[1][1] * M2[0][1] +
-	      M1[1][2] * M2[0][2]);
-  Mr[2][0] = (M1[2][0] * M2[0][0] +
-	      M1[2][1] * M2[0][1] +
-	      M1[2][2] * M2[0][2]);
-  Mr[0][1] = (M1[0][0] * M2[1][0] +
-	      M1[0][1] * M2[1][1] +
-	      M1[0][2] * M2[1][2]);
-  Mr[1][1] = (M1[1][0] * M2[1][0] +
-	      M1[1][1] * M2[1][1] +
- 	      M1[1][2] * M2[1][2]);
-  Mr[2][1] = (M1[2][0] * M2[1][0] +
-	      M1[2][1] * M2[1][1] +
-	      M1[2][2] * M2[1][2]);
-  Mr[0][2] = (M1[0][0] * M2[2][0] +
-	      M1[0][1] * M2[2][1] +
-	      M1[0][2] * M2[2][2]);
-  Mr[1][2] = (M1[1][0] * M2[2][0] +
-	      M1[1][1] * M2[2][1] +
-	      M1[1][2] * M2[2][2]);
-  Mr[2][2] = (M1[2][0] * M2[2][0] +
-	      M1[2][1] * M2[2][1] +
-	      M1[2][2] * M2[2][2]);
-}
-
-inline
-void
-MTxM(PQP_REAL Mr[3][3], const PQP_REAL M1[3][3], const PQP_REAL M2[3][3])
-{
-  Mr[0][0] = (M1[0][0] * M2[0][0] +
-	      M1[1][0] * M2[1][0] +
-	      M1[2][0] * M2[2][0]);
-  Mr[1][0] = (M1[0][1] * M2[0][0] +
-	      M1[1][1] * M2[1][0] +
-	      M1[2][1] * M2[2][0]);
-  Mr[2][0] = (M1[0][2] * M2[0][0] +
-	      M1[1][2] * M2[1][0] +
-	      M1[2][2] * M2[2][0]);
-  Mr[0][1] = (M1[0][0] * M2[0][1] +
-	      M1[1][0] * M2[1][1] +
-	      M1[2][0] * M2[2][1]);
-  Mr[1][1] = (M1[0][1] * M2[0][1] +
-	      M1[1][1] * M2[1][1] +
- 	      M1[2][1] * M2[2][1]);
-  Mr[2][1] = (M1[0][2] * M2[0][1] +
-	      M1[1][2] * M2[1][1] +
-	      M1[2][2] * M2[2][1]);
-  Mr[0][2] = (M1[0][0] * M2[0][2] +
-	      M1[1][0] * M2[1][2] +
-	      M1[2][0] * M2[2][2]);
-  Mr[1][2] = (M1[0][1] * M2[0][2] +
-	      M1[1][1] * M2[1][2] +
-	      M1[2][1] * M2[2][2]);
-  Mr[2][2] = (M1[0][2] * M2[0][2] +
-	      M1[1][2] * M2[1][2] +
-	      M1[2][2] * M2[2][2]);
-}
-
-inline
-void
-MxV(PQP_REAL Vr[3], const PQP_REAL M1[3][3], const PQP_REAL V1[3])
-{
-  Vr[0] = (M1[0][0] * V1[0] +
-	   M1[0][1] * V1[1] + 
-	   M1[0][2] * V1[2]);
-  Vr[1] = (M1[1][0] * V1[0] +
-	   M1[1][1] * V1[1] + 
-	   M1[1][2] * V1[2]);
-  Vr[2] = (M1[2][0] * V1[0] +
-	   M1[2][1] * V1[1] + 
-	   M1[2][2] * V1[2]);
-}
-
-
-inline
-void
-MxVpV(PQP_REAL Vr[3], const PQP_REAL M1[3][3], const PQP_REAL V1[3], const PQP_REAL V2[3])
-{
-  Vr[0] = (M1[0][0] * V1[0] +
-	   M1[0][1] * V1[1] + 
-	   M1[0][2] * V1[2] + 
-	   V2[0]);
-  Vr[1] = (M1[1][0] * V1[0] +
-	   M1[1][1] * V1[1] + 
-	   M1[1][2] * V1[2] + 
-	   V2[1]);
-  Vr[2] = (M1[2][0] * V1[0] +
-	   M1[2][1] * V1[1] + 
-	   M1[2][2] * V1[2] + 
-	   V2[2]);
-}
-
-
-inline
-void
-sMxVpV(PQP_REAL Vr[3], PQP_REAL s1, const PQP_REAL M1[3][3], const PQP_REAL V1[3], const PQP_REAL V2[3])
-{
-  Vr[0] = s1 * (M1[0][0] * V1[0] +
-		M1[0][1] * V1[1] + 
-		M1[0][2] * V1[2]) +
-		V2[0];
-  Vr[1] = s1 * (M1[1][0] * V1[0] +
-		M1[1][1] * V1[1] + 
-		M1[1][2] * V1[2]) + 
-		V2[1];
-  Vr[2] = s1 * (M1[2][0] * V1[0] +
-		M1[2][1] * V1[1] + 
-		M1[2][2] * V1[2]) + 
-		V2[2];
-}
-
-inline
-void
-MTxV(PQP_REAL Vr[3], const PQP_REAL M1[3][3], const PQP_REAL V1[3])
-{
-  Vr[0] = (M1[0][0] * V1[0] +
-	   M1[1][0] * V1[1] + 
-	   M1[2][0] * V1[2]); 
-  Vr[1] = (M1[0][1] * V1[0] +
-	   M1[1][1] * V1[1] + 
-	   M1[2][1] * V1[2]);
-  Vr[2] = (M1[0][2] * V1[0] +
-	   M1[1][2] * V1[1] + 
-	   M1[2][2] * V1[2]); 
-}
-
-inline
-void
-sMTxV(PQP_REAL Vr[3], PQP_REAL s1, const PQP_REAL M1[3][3], const PQP_REAL V1[3])
-{
-  Vr[0] = s1*(M1[0][0] * V1[0] +
-	      M1[1][0] * V1[1] + 
-	      M1[2][0] * V1[2]); 
-  Vr[1] = s1*(M1[0][1] * V1[0] +
-	      M1[1][1] * V1[1] + 
-	      M1[2][1] * V1[2]);
-  Vr[2] = s1*(M1[0][2] * V1[0] +
-	      M1[1][2] * V1[1] + 
-	      M1[2][2] * V1[2]); 
-}
-
-inline
-void
-sMxV(PQP_REAL Vr[3], PQP_REAL s1, const PQP_REAL M1[3][3], const PQP_REAL V1[3])
-{
-  Vr[0] = s1*(M1[0][0] * V1[0] +
-	      M1[0][1] * V1[1] + 
-	      M1[0][2] * V1[2]); 
-  Vr[1] = s1*(M1[1][0] * V1[0] +
-	      M1[1][1] * V1[1] + 
-	      M1[1][2] * V1[2]);
-  Vr[2] = s1*(M1[2][0] * V1[0] +
-	      M1[2][1] * V1[1] + 
-	      M1[2][2] * V1[2]); 
-}
-
-
-inline
-void
-VmV(PQP_REAL Vr[3], const PQP_REAL V1[3], const PQP_REAL V2[3])
-{
-  Vr[0] = V1[0] - V2[0];
-  Vr[1] = V1[1] - V2[1];
-  Vr[2] = V1[2] - V2[2];
-}
-
-inline
-void
-VpV(PQP_REAL Vr[3], const PQP_REAL V1[3], const PQP_REAL V2[3])
-{
-  Vr[0] = V1[0] + V2[0];
-  Vr[1] = V1[1] + V2[1];
-  Vr[2] = V1[2] + V2[2];
-}
-
-inline
-void
-VpVxS(PQP_REAL Vr[3], const PQP_REAL V1[3], const PQP_REAL V2[3], PQP_REAL s)
-{
-  Vr[0] = V1[0] + V2[0] * s;
-  Vr[1] = V1[1] + V2[1] * s;
-  Vr[2] = V1[2] + V2[2] * s;
-}
-
-inline 
-void
-MskewV(PQP_REAL M[3][3], const PQP_REAL v[3])
-{
-  M[0][0] = M[1][1] = M[2][2] = 0.0;
-  M[1][0] = v[2];
-  M[0][1] = -v[2];
-  M[0][2] = v[1];
-  M[2][0] = -v[1];
-  M[1][2] = -v[0];
-  M[2][1] = v[0];
-}
-
-
-inline
-void
-VcrossV(PQP_REAL Vr[3], const PQP_REAL V1[3], const PQP_REAL V2[3])
-{
-  Vr[0] = V1[1]*V2[2] - V1[2]*V2[1];
-  Vr[1] = V1[2]*V2[0] - V1[0]*V2[2];
-  Vr[2] = V1[0]*V2[1] - V1[1]*V2[0];
-}
-
-
-inline
-PQP_REAL
-Vlength(PQP_REAL V[3])
-{
-  return sqrt(V[0]*V[0] + V[1]*V[1] + V[2]*V[2]);
-}
-
-inline
-void
-Vnormalize(PQP_REAL V[3])
-{
-  PQP_REAL d = (PQP_REAL)1.0 / sqrt(V[0]*V[0] + V[1]*V[1] + V[2]*V[2]);
-  V[0] *= d;
-  V[1] *= d;
-  V[2] *= d;
-}
-
-
-inline
-PQP_REAL
-VdotV(const PQP_REAL V1[3], const PQP_REAL V2[3])
-{
-  return (V1[0]*V2[0] + V1[1]*V2[1] + V1[2]*V2[2]);
-}
-
-
-inline
-PQP_REAL
-VdistV2(const PQP_REAL V1[3], const PQP_REAL V2[3])
-{
-  return ( (V1[0]-V2[0]) * (V1[0]-V2[0]) + 
-	   (V1[1]-V2[1]) * (V1[1]-V2[1]) + 
-	   (V1[2]-V2[2]) * (V1[2]-V2[2]));
-}
-
-inline
-void
-VxS(PQP_REAL Vr[3], const PQP_REAL V[3], PQP_REAL s)
-{
-  Vr[0] = V[0] * s;
-  Vr[1] = V[1] * s;
-  Vr[2] = V[2] * s;
-}
-
-inline
-void
-MRotZ(PQP_REAL Mr[3][3], PQP_REAL t)
-{
-  Mr[0][0] = cos(t);
-  Mr[1][0] = sin(t);
-  Mr[0][1] = -Mr[1][0];
-  Mr[1][1] = Mr[0][0];
-  Mr[2][0] = Mr[2][1] = 0.0;
-  Mr[0][2] = Mr[1][2] = 0.0;
-  Mr[2][2] = 1.0;
-}
-
-
-inline
-void
-MRotX(PQP_REAL Mr[3][3], PQP_REAL t)
-{
-  Mr[1][1] = cos(t);
-  Mr[2][1] = sin(t);
-  Mr[1][2] = -Mr[2][1];
-  Mr[2][2] = Mr[1][1];
-  Mr[0][1] = Mr[0][2] = 0.0;
-  Mr[1][0] = Mr[2][0] = 0.0;
-  Mr[0][0] = 1.0;
-}
-
-inline
-void
-MRotY(PQP_REAL Mr[3][3], PQP_REAL t)
-{
-  Mr[2][2] = cos(t);
-  Mr[0][2] = sin(t);
-  Mr[2][0] = -Mr[0][2];
-  Mr[0][0] = Mr[2][2];
-  Mr[1][2] = Mr[1][0] = 0.0;
-  Mr[2][1] = Mr[0][1] = 0.0;
-  Mr[1][1] = 1.0;
-}
-
-inline
-void
-MVtoOGL(double oglm[16], const PQP_REAL R[3][3], const PQP_REAL T[3])
-{
-  oglm[0] = (double)R[0][0]; 
-  oglm[1] = (double)R[1][0]; 
-  oglm[2] = (double)R[2][0]; 
-  oglm[3] = 0.0;
-  oglm[4] = (double)R[0][1]; 
-  oglm[5] = (double)R[1][1];
-  oglm[6] = (double)R[2][1];
-  oglm[7] = 0.0;
-  oglm[8] = (double)R[0][2];
-  oglm[9] = (double)R[1][2];
-  oglm[10] = (double)R[2][2];
-  oglm[11] = 0.0;
-  oglm[12] = (double)T[0];
-  oglm[13] = (double)T[1];
-  oglm[14] = (double)T[2];
-  oglm[15] = 1.0;
-}
-
-inline 
-void
-OGLtoMV(PQP_REAL R[3][3], PQP_REAL T[3], const double oglm[16])
-{
-  R[0][0] = (PQP_REAL)oglm[0];
-  R[1][0] = (PQP_REAL)oglm[1];
-  R[2][0] = (PQP_REAL)oglm[2];
-
-  R[0][1] = (PQP_REAL)oglm[4];
-  R[1][1] = (PQP_REAL)oglm[5];
-  R[2][1] = (PQP_REAL)oglm[6];
-
-  R[0][2] = (PQP_REAL)oglm[8];
-  R[1][2] = (PQP_REAL)oglm[9];
-  R[2][2] = (PQP_REAL)oglm[10];
-
-  T[0] = (PQP_REAL)oglm[12];
-  T[1] = (PQP_REAL)oglm[13];
-  T[2] = (PQP_REAL)oglm[14];
-}
-
-// taken from quatlib, written by Richard Holloway
-const int QX = 0;
-const int QY = 1;
-const int QZ = 2;
-const int QW = 3;
-
-inline
-void 
-MRotQ(PQP_REAL destMatrix[3][3], PQP_REAL srcQuat[4])
-{
-  PQP_REAL  s;
-  PQP_REAL  xs, ys, zs,
-    	    wx, wy, wz,
-	        xx, xy, xz,
-	        yy, yz, zz;
-
-  /* 
-   * For unit srcQuat, just set s = 2.0; or set xs = srcQuat[QX] + 
-   *   srcQuat[QX], etc. 
-   */
-
-  s = (PQP_REAL)2.0 / (srcQuat[QX]*srcQuat[QX] + srcQuat[QY]*srcQuat[QY] + 
-    	     srcQuat[QZ]*srcQuat[QZ] + srcQuat[QW]*srcQuat[QW]);
-
-  xs = srcQuat[QX] * s;   ys = srcQuat[QY] * s;   zs = srcQuat[QZ] * s;
-  wx = srcQuat[QW] * xs;  wy = srcQuat[QW] * ys;  wz = srcQuat[QW] * zs;
-  xx = srcQuat[QX] * xs;  xy = srcQuat[QX] * ys;  xz = srcQuat[QX] * zs;
-  yy = srcQuat[QY] * ys;  yz = srcQuat[QY] * zs;  zz = srcQuat[QZ] * zs;
-
-  destMatrix[QX][QX] = (PQP_REAL)1.0 - (yy + zz);
-  destMatrix[QX][QY] = xy + wz;
-  destMatrix[QX][QZ] = xz - wy;
-
-  destMatrix[QY][QX] = xy - wz;
-  destMatrix[QY][QY] = (PQP_REAL)1.0 - (xx + zz);
-  destMatrix[QY][QZ] = yz + wx;
-
-  destMatrix[QZ][QX] = xz + wy;
-  destMatrix[QZ][QY] = yz - wx;
-  destMatrix[QZ][QZ] = (PQP_REAL)1.0 - (xx + yy);
-} 
-
-inline
-void
-Mqinverse(PQP_REAL Mr[3][3], PQP_REAL m[3][3])
-{
-  int i,j;
-
-  for(i=0; i<3; i++)
-    for(j=0; j<3; j++)
-    {
-      int i1 = (i+1)%3;
-      int i2 = (i+2)%3;
-      int j1 = (j+1)%3;
-      int j2 = (j+2)%3;
-      Mr[i][j] = (m[j1][i1]*m[j2][i2] - m[j1][i2]*m[j2][i1]);
-    }
-}
-
-// Meigen from Numerical Recipes in C
-
-#if 0
-
-#define rfabs(x) ((x < 0) ? -x : x)
-
-#define ROT(a,i,j,k,l) g=a[i][j]; h=a[k][l]; a[i][j]=g-s*(h+g*tau); a[k][l]=h+s*(g-h*tau);
-
-int
-inline
-Meigen(PQP_REAL vout[3][3], PQP_REAL dout[3], PQP_REAL a[3][3])
-{
-  int i;
-  PQP_REAL tresh,theta,tau,t,sm,s,h,g,c;
-  int nrot;
-  PQP_REAL b[3];
-  PQP_REAL z[3];
-  PQP_REAL v[3][3];
-  PQP_REAL d[3];
-
-  v[0][0] = v[1][1] = v[2][2] = 1.0;
-  v[0][1] = v[1][2] = v[2][0] = 0.0;
-  v[0][2] = v[1][0] = v[2][1] = 0.0;
-  
-  b[0] = a[0][0]; d[0] = a[0][0]; z[0] = 0.0;
-  b[1] = a[1][1]; d[1] = a[1][1]; z[1] = 0.0;
-  b[2] = a[2][2]; d[2] = a[2][2]; z[2] = 0.0;
-
-  nrot = 0;
-
-  
-  for(i=0; i<50; i++)
-    {
-
-      printf("2\n");
-
-      sm=0.0; sm+=fabs(a[0][1]); sm+=fabs(a[0][2]); sm+=fabs(a[1][2]);
-      if (sm == 0.0) { McM(vout,v); VcV(dout,d); return i; }
-      
-      if (i < 3) tresh=0.2*sm/(3*3); else tresh=0.0;
-      
-      {
-	g = 100.0*rfabs(a[0][1]);  
-	if (i>3 && rfabs(d[0])+g==rfabs(d[0]) && rfabs(d[1])+g==rfabs(d[1]))
-	  a[0][1]=0.0;
-	else if (rfabs(a[0][1])>tresh)
-	  {
-	    h = d[1]-d[0];
-	    if (rfabs(h)+g == rfabs(h)) t=(a[0][1])/h;
-	    else
-	      {
-		theta=0.5*h/(a[0][1]);
-		t=1.0/(rfabs(theta)+sqrt(1.0+theta*theta));
-		if (theta < 0.0) t = -t;
-	      }
-	    c=1.0/sqrt(1+t*t); s=t*c; tau=s/(1.0+c); h=t*a[0][1];
-	    z[0] -= h; z[1] += h; d[0] -= h; d[1] += h;
-	    a[0][1]=0.0;
-	    ROT(a,0,2,1,2); ROT(v,0,0,0,1); ROT(v,1,0,1,1); ROT(v,2,0,2,1); 
-	    nrot++;
-	  }
-      }
-
-      {
-	g = 100.0*rfabs(a[0][2]);
-	if (i>3 && rfabs(d[0])+g==rfabs(d[0]) && rfabs(d[2])+g==rfabs(d[2]))
-	  a[0][2]=0.0;
-	else if (rfabs(a[0][2])>tresh)
-	  {
-	    h = d[2]-d[0];
-	    if (rfabs(h)+g == rfabs(h)) t=(a[0][2])/h;
-	    else
-	      {
-		theta=0.5*h/(a[0][2]);
-		t=1.0/(rfabs(theta)+sqrt(1.0+theta*theta));
-		if (theta < 0.0) t = -t;
-	      }
-	    c=1.0/sqrt(1+t*t); s=t*c; tau=s/(1.0+c); h=t*a[0][2];
-	    z[0] -= h; z[2] += h; d[0] -= h; d[2] += h;
-	    a[0][2]=0.0;
-	    ROT(a,0,1,1,2); ROT(v,0,0,0,2); ROT(v,1,0,1,2); ROT(v,2,0,2,2); 
-	    nrot++;
-	  }
-      }
-
-
-      {
-	g = 100.0*rfabs(a[1][2]);
-	if (i>3 && rfabs(d[1])+g==rfabs(d[1]) && rfabs(d[2])+g==rfabs(d[2]))
-	  a[1][2]=0.0;
-	else if (rfabs(a[1][2])>tresh)
-	  {
-	    h = d[2]-d[1];
-	    if (rfabs(h)+g == rfabs(h)) t=(a[1][2])/h;
-	    else
-	      {
-		theta=0.5*h/(a[1][2]);
-		t=1.0/(rfabs(theta)+sqrt(1.0+theta*theta));
-		if (theta < 0.0) t = -t;
-	      }
-	    c=1.0/sqrt(1+t*t); s=t*c; tau=s/(1.0+c); h=t*a[1][2];
-	    z[1] -= h; z[2] += h; d[1] -= h; d[2] += h;
-	    a[1][2]=0.0;
-	    ROT(a,0,1,0,2); ROT(v,0,1,0,2); ROT(v,1,1,1,2); ROT(v,2,1,2,2); 
-	    nrot++;
-	  }
-      }
-
-      b[0] += z[0]; d[0] = b[0]; z[0] = 0.0;
-      b[1] += z[1]; d[1] = b[1]; z[1] = 0.0;
-      b[2] += z[2]; d[2] = b[2]; z[2] = 0.0;
-      
-    }
-
-  fprintf(stderr, "eigen: too many iterations in Jacobi transform (%d).\n", i);
-
-  return i;
-}
-
-#else
-
-
-
-#define ROTATE(a,i,j,k,l) g=a[i][j]; h=a[k][l]; a[i][j]=g-s*(h+g*tau); a[k][l]=h+s*(g-h*tau);
-
-void
-inline
-Meigen(PQP_REAL vout[3][3], PQP_REAL dout[3], PQP_REAL a[3][3])
-{
-  int n = 3;
-  int j,iq,ip,i;
-  PQP_REAL tresh,theta,tau,t,sm,s,h,g,c;
-  int nrot;
-  PQP_REAL b[3];
-  PQP_REAL z[3];
-  PQP_REAL v[3][3];
-  PQP_REAL d[3];
-  
-  Midentity(v);
-  for(ip=0; ip<n; ip++) 
-    {
-      b[ip] = a[ip][ip];
-      d[ip] = a[ip][ip];
-      z[ip] = 0.0;
-    }
-  
-  nrot = 0;
-  
-  for(i=0; i<50; i++)
-    {
-
-      sm=0.0;
-      for(ip=0;ip<n;ip++) for(iq=ip+1;iq<n;iq++) sm+=fabs(a[ip][iq]);
-      if (sm == 0.0)
-	{
-	  McM(vout, v);
-	  VcV(dout, d);
-	  return;
-	}
-      
-      
-      if (i < 3) tresh=(PQP_REAL)0.2*sm/(n*n);
-      else tresh=0.0;
-      
-      for(ip=0; ip<n; ip++) for(iq=ip+1; iq<n; iq++)
-	{
-	  g = (PQP_REAL)100.0*fabs(a[ip][iq]);
-	  if (i>3 && 
-	      fabs(d[ip])+g==fabs(d[ip]) && 
-	      fabs(d[iq])+g==fabs(d[iq]))
-	    a[ip][iq]=0.0;
-	  else if (fabs(a[ip][iq])>tresh)
-	    {
-	      h = d[iq]-d[ip];
-	      if (fabs(h)+g == fabs(h)) t=(a[ip][iq])/h;
-	      else
-		{
-		  theta=(PQP_REAL)0.5*h/(a[ip][iq]);
-		  t=(PQP_REAL)(1.0/(fabs(theta)+sqrt(1.0+theta*theta)));
-		  if (theta < 0.0) t = -t;
-		}
-	      c=(PQP_REAL)1.0/sqrt(1+t*t);
-	      s=t*c;
-	      tau=s/((PQP_REAL)1.0+c);
-	      h=t*a[ip][iq];
-	      z[ip] -= h;
-	      z[iq] += h;
-	      d[ip] -= h;
-	      d[iq] += h;
-	      a[ip][iq]=0.0;
-	      for(j=0;j<ip;j++) { ROTATE(a,j,ip,j,iq); } 
-	      for(j=ip+1;j<iq;j++) { ROTATE(a,ip,j,j,iq); } 
-	      for(j=iq+1;j<n;j++) { ROTATE(a,ip,j,iq,j); } 
-	      for(j=0;j<n;j++) { ROTATE(v,j,ip,j,iq); } 
-	      nrot++;
-	    }
-	}
-      for(ip=0;ip<n;ip++)
-	{
-	  b[ip] += z[ip];
-	  d[ip] = b[ip];
-	  z[ip] = 0.0;
-	}
-    }
-
-  fprintf(stderr, "eigen: too many iterations in Jacobi transform.\n");
-
-  return;
-}
-
-
-#endif
-
-#endif
-/* MATVEC_H */
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/spinning/bunny.tris b/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/spinning/bunny.tris
deleted file mode 100644
index 5df21722968d7d884cd123b87847e45b8bddaaf2..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/spinning/bunny.tris
+++ /dev/null
@@ -1,8817 +0,0 @@
-2204
--0.61915501 0.44778999 0.11374
--0.65483498 0.44209999 0.23309999
--0.54955502 0.46242001 0.21086
-
--0.67527496 -0.04277 0.26872
--0.69119499 -0.03813 0.21893999
--0.70878502 -0.09154 0.23915001
-
--0.369095 -0.54116001 0.13157
--0.38878502 -0.53153 0.12594
--0.41275501 -0.52455002 0.07158
-
--0.75503502 0.05844 0.12856
--0.73905502 0.04444 0.0987
--0.75351501 0.04522 0.14867
-
--0.66683502 0.43922001 0.22899
--0.65483498 0.44209999 0.23309999
--0.61915501 0.44778999 0.11374
-
-0.100405 0.1927 0.26025
-0.21620501 0.20631001 0.22993
-0.147305 0.21093 0.16179001
-
--0.49363499 0.44341 -0.49014
--0.47512501 0.32431999 -0.07113
--0.51723499 0.35522999 -0.21364
-
--0.33272499 -0.76374001 -0.11234
--0.31717501 -0.73977997 -0.10929
--0.31505501 -0.76257004 -0.12831
-
-0.013465 -0.32881001 0.57973
--0.006605 -0.27245001 0.59221001
--0.042595 -0.29021999 0.57817001
-
--0.478615 0.61969002 -0.45830002
--0.55654499 0.64793999 -0.39986
--0.541525 0.60362999 -0.27988001
-
--0.69841499 -0.28159 0.17025999
--0.67350502 -0.31801001 0.21348
--0.70689499 -0.24051001 0.17004999
-
--0.53543499 0.41438 -0.43537998
--0.52343498 0.42028999 -0.45174999
--0.52669498 0.41201 -0.43175999
-
--0.73406502 0.22117001 0.0777
--0.69706497 0.27559999 0.04741
--0.67165497 0.20761999 -0.01075
-
-0.032965 0.15014 0.30976
-0.119035 0.13868 0.35504002
-0.100405 0.1927 0.26025
-
--0.48884499 0.70297997 -0.56327
--0.543125 0.70637001 -0.51022999
--0.478615 0.61969002 -0.45830002
-
--0.56956501 0.37901001 0.42835999
--0.62949501 0.42409 0.33152
--0.62565498 0.37287998 0.41800999
-
--0.69841499 -0.28159 0.17025999
--0.67290497 -0.32478001 0.06036
--0.67019501 -0.33046001 0.17235001
-
-0.26532499 0.11682 0.36832001
-0.279865 0.18177999 0.28193001
-0.185485 0.15646 0.33446999
-
-0.100405 0.1927 0.26025
-0.19949499 0.18938999 0.2817
-0.21620501 0.20631001 0.22993
-
--0.051545 0.75455002 -0.12812
--0.075495 0.73363998 -0.09516
--0.036455 0.74396004 -0.12342
-
--0.085275 0.1548 0.17931
--0.087935 0.12239 0.26698
-0.014575 0.18521999 0.18579
-
-0.100405 0.1927 0.26025
-0.147305 0.21093 0.16179001
-0.014575 0.18521999 0.18579
-
--0.440755 0.59640999 -0.59333
--0.43966499 0.60813999 -0.59201
--0.44141499 0.60801998 -0.58164001
-
-0.068505 0.67084 -0.27976999
-0.073585 0.64028999 -0.27017
-0.046245 0.64051003 -0.26128
-
--0.722985 0.29028 0.13737
--0.65177498 0.38554001 0.03709
--0.685625 0.31711 0.06703
-
--0.53012501 0.29573 0.48049
--0.59655499 0.21528 0.54181
--0.52195499 0.23915001 0.49179001
-
--0.49343498 0.53766998 -0.56959999
--0.46016499 0.52960999 -0.57521999
--0.49435501 0.49361 -0.54973999
-
-0.62454498 -0.39271999 0.04435
-0.59800499 -0.28384001 -0.03253
-0.616395 -0.19808001 0.01714
-
--0.40461498 0.42754002 0.32105999
--0.45004501 0.41863998 0.36409
--0.43137501 0.38099998 0.37743
-
--0.62663502 0.17285 0.54678001
--0.59655499 0.21528 0.54181
--0.65234497 0.19790001 0.53490002
-
--0.59655499 0.21528 0.54181
--0.60633499 0.29861 0.49606998
--0.65054497 0.23882 0.51790001
-
-0.63150501 -0.32306999 0.09721
-0.62454498 -0.39271999 0.04435
-0.616395 -0.19808001 0.01714
-
--0.087935 0.12239 0.26698
-0.100405 0.1927 0.26025
-0.014575 0.18521999 0.18579
-
--0.40461498 0.42754002 0.32105999
--0.38591499 0.35167 0.31952
--0.36774502 0.40701 0.25933001
-
--0.62663502 0.17285 0.54678001
--0.59962502 0.11646 0.54145
--0.59655499 0.21528 0.54181
-
--0.48044498 -0.07672 -0.15554
--0.40962502 -0.24707001 -0.19660999
--0.39932499 -0.27525 -0.19733
-
--0.67873497 0.42423 0.10789
--0.61915501 0.44778999 0.11374
--0.65177498 0.41154999 0.04812
-
--0.71519501 -0.22723 0.07012
--0.68001503 -0.24351 -0.00998
--0.63365501 -0.34187 -0.01984
-
--0.112925 0.44946999 -0.01904
--0.29133499 0.43453999 0.10392
--0.28335501 0.37535999 0.07935
-
-0.20192499 0.21209999 0.08168
-0.267075 0.20905001 0.1627
-0.30644501 0.19247999 0.06287
-
--0.31738501 0.43448002 0.11911
--0.049325 0.62575001 -0.12564
--0.112215 0.62556 -0.07594
-
--0.50442501 0.51681 -0.12221
--0.497005 0.44953999 -0.01774
--0.462285 0.43570999 -0.09058
-
-0.147305 0.21093 0.16179001
-0.21620501 0.20631001 0.22993
-0.267075 0.20905001 0.1627
-
--0.38455502 -0.62816002 0.13858
--0.35919498 -0.65380997 0.20221001
--0.334715 -0.61401001 0.18212
-
--0.17445499 -0.76107002 0.26183001
--0.189415 -0.75043999 0.19530001
--0.18321501 -0.75733002 0.1487
-
--0.43966499 0.60813999 -0.59201
--0.440755 0.59640999 -0.59333
--0.43943501 0.61122002 -0.59380001
-
--0.68663498 0.30483 0.43856998
--0.66231499 0.29212999 0.47123001
--0.62565498 0.37287998 0.41800999
-
--0.58244499 0.64759003 -0.39550999
--0.541525 0.60362999 -0.27988001
--0.55654499 0.64793999 -0.39986
-
-0.61706501 -0.15582 0.06717
-0.63150501 -0.32306999 0.09721
-0.616395 -0.19808001 0.01714
-
-0.119035 0.13868 0.35504002
-0.185485 0.15646 0.33446999
-0.19949499 0.18938999 0.2817
-
--0.439925 0.61355999 -0.59553001
--0.44219501 0.62398998 -0.59071999
--0.43966499 0.60813999 -0.59201
-
--0.297925 -0.53887001 -0.09417
--0.26883499 -0.37657001 -0.16448
--0.238365 -0.47976002 -0.11273
-
--0.67350502 -0.31801001 0.21348
--0.65677498 -0.28486 0.31427999
--0.71858498 -0.18570999 0.23955999
-
--0.445825 0.62064999 -0.60304001
--0.44350498 0.63459 -0.59969002
--0.439925 0.61355999 -0.59553001
-
-0.36023499 -0.12728 -0.21188999
-0.38315498 -0.105 -0.19958
-0.44883499 -0.17316 -0.18752001
-
-0.004935 0.49839001 -0.08707
--0.112925 0.44946999 -0.01904
--0.34072498 0.34067001 0.0194
-
--0.52690498 0.36866001 0.4325
--0.56956501 0.37901001 0.42835999
--0.60633499 0.29861 0.49606998
-
--0.722985 0.29028 0.13737
--0.69845497 0.34506001 0.09724
--0.65177498 0.38554001 0.03709
-
-0.21620501 0.20631001 0.22993
-0.31116501 0.18573 0.23601
-0.267075 0.20905001 0.1627
-
--0.53012501 0.29573 0.48049
--0.52690498 0.36866001 0.4325
--0.60633499 0.29861 0.49606998
-
-0.66172501 -0.52612 -0.03485
-0.66172501 -0.51227001 -0.03209
-0.701595 -0.51362999 -0.01377
-
--0.27186501 0.17989 0.1998
--0.28657499 0.21525999 0.16419001
--0.318915 0.22754999 0.2701
-
--0.096095 0.71514 -0.06997
--0.236595 0.58076 0.04404
--0.166485 0.62580002 -0.00026
-
-0.38503502 0.15941 0.19188999
-0.41226501 0.13985 0.08791
-0.30644501 0.19247999 0.06287
-
-0.046245 0.64051003 -0.26128
--0.027095 0.51598 -0.13203
--0.048255 0.52195999 -0.13641
-
-0.059645 0.68377998 -0.28246
-0.068505 0.67084 -0.27976999
-0.046245 0.64051003 -0.26128
-
--0.44495499 0.61160999 -0.60196999
--0.45517502 0.62153999 -0.60337002
--0.445825 0.62064999 -0.60304001
-
--0.040395 -0.02881 -0.20667999
-0.027045 -0.06751 -0.21985001
-0.074325 -0.09863 -0.22704
-
-0.100405 0.1927 0.26025
-0.119035 0.13868 0.35504002
-0.19949499 0.18938999 0.2817
-
-0.17338499 -0.16284 0.56652
-0.223505 -0.23148001 0.58157001
-0.25977501 -0.2282 0.57007
-
--0.52043499 0.07819 -0.06974
--0.43113499 0.13668 -0.06854
--0.43526501 0.09176 -0.08455
-
--0.551175 -0.15953 0.43046001
--0.50651501 -0.10104 0.42856998
--0.57303501 -0.09277 0.39316002
-
-0.63273499 -0.64609001 0.00875
-0.63202499 -0.59748001 -0.03384
-0.68647499 -0.58339001 -0.0017
-
--0.50564499 -0.26843 0.44533001
--0.44656502 -0.19707001 0.46938
--0.51212502 -0.2273 0.45049999
-
-0.143465 0.09524 0.39535999
-0.119035 0.13868 0.35504002
-0.013225 0.0811 0.38118
-
-0.093335 -0.54011002 0.55001999
-0.133365 -0.51195999 0.55555
-0.093385 -0.48191002 0.57638
-
-0.26328501 -0.13812 0.51595001
-0.25977501 -0.2282 0.57007
-0.27328501 -0.16485001 0.53637001
-
-0.26328501 -0.13812 0.51595001
-0.27328501 -0.16485001 0.53637001
-0.327005 -0.16132 0.50963001
-
-0.61706501 -0.15582 0.06717
-0.58518501 -0.07291 0.16698
-0.61038502 -0.18419001 0.23695999
-
-0.32314499 0.16155001 -0.00588
-0.232845 0.19128 0.00246
-0.30644501 0.19247999 0.06287
-
--0.74736504 0.31806 0.17700001
--0.72976501 0.37284 0.12714
--0.69845497 0.34506001 0.09724
-
--0.32939499 -0.58321999 0.36421001
--0.296705 -0.61009998 0.40333
--0.256665 -0.55305 0.4109
-
--0.51212502 -0.2273 0.45049999
--0.44656502 -0.19707001 0.46938
--0.55939499 -0.21372999 0.42647999
-
--0.522085 0.42964001 -0.46967999
--0.52343498 0.42028999 -0.45174999
--0.52310501 0.42203999 -0.45536999
-
-0.56855499 -0.27214001 -0.1024
-0.595695 -0.19973 -0.04273
-0.59800499 -0.28384001 -0.03253
-
--0.106735 0.07859 0.32783001
-0.013225 0.0811 0.38118
-0.032965 0.15014 0.30976
-
--0.50564499 -0.26843 0.44533001
--0.51212502 -0.2273 0.45049999
--0.54116501 -0.33391998 0.39556
-
--0.65483498 0.44209999 0.23309999
--0.567505 0.44047001 0.32217999
--0.54955502 0.46242001 0.21086
-
--0.446595 -0.28271999 0.45134998
--0.50564499 -0.26843 0.44533001
--0.437295 -0.37362999 0.41646999
-
-0.26304501 -0.48462002 0.55549999
-0.163435 -0.53869999 0.56303001
-0.263435 -0.55469002 0.54113998
-
-0.182565 -0.11096 0.51632
-0.154285 -0.09136 0.45977001
-0.079635 -0.11564 0.52494999
-
--0.150585 -0.30923 -0.29997999
--0.119055 -0.34823002 -0.33359001
--0.107915 -0.53838001 -0.23878
-
--0.49363499 0.44341 -0.49014
--0.49435501 0.49361 -0.54973999
--0.46016499 0.52960999 -0.57521999
-
--0.45953499 0.45066002 -0.34074001
--0.44795502 0.48275002 -0.23052
--0.45510502 0.35847 -0.05053
-
-0.583465 -0.60224998 0.34046001
-0.55329498 -0.58823002 0.33521
-0.49892502 -0.66067001 0.30966
-
--0.35919498 -0.65380997 0.20221001
--0.404995 -0.67698997 0.19254
--0.41561501 -0.69004997 0.22243999
-
--0.722985 0.29028 0.13737
--0.74114502 0.29077999 0.20722
--0.74736504 0.31806 0.17700001
-
--0.49363499 0.44341 -0.49014
--0.45953499 0.45066002 -0.34074001
--0.47512501 0.32431999 -0.07113
-
--0.50564499 -0.26843 0.44533001
--0.446595 -0.28271999 0.45134998
--0.44656502 -0.19707001 0.46938
-
--0.38665501 -0.15554 0.46
--0.436525 -0.08632 0.43841
--0.44656502 -0.19707001 0.46938
-
-0.053215 -0.32796001 0.58986
-0.133395 -0.34088001 0.60337002
-0.043465 -0.23129 0.58570999
-
-0.293375 0.02494 0.40310001
-0.32342499 -0.00259 0.41494999
-0.37462502 0.09203 0.35064999
-
-0.293375 0.02494 0.40310001
-0.23304501 0.00794 0.42648998
-0.154285 -0.09136 0.45977001
-
--0.436525 -0.08632 0.43841
--0.551175 -0.15953 0.43046001
--0.44656502 -0.19707001 0.46938
-
-0.136995 -0.12943 0.54544998
-0.182745 -0.12148 0.53138
-0.182565 -0.11096 0.51632
-
--0.437295 -0.37362999 0.41646999
--0.37656502 -0.29565001 0.46369999
--0.446595 -0.28271999 0.45134998
-
-0.035725 -0.09047 0.45244999
-0.079635 -0.11564 0.52494999
-0.154285 -0.09136 0.45977001
-
-0.262635 -0.34882 0.57363998
-0.276035 -0.42984001 0.55702
-0.336675 -0.44263 0.52173
-
--0.47702499 -0.74514 -0.06318
--0.52946499 -0.75737999 -0.02987
--0.50606499 -0.70516998 -0.03412
-
--0.37656502 -0.29565001 0.46369999
--0.33655499 -0.23921 0.47109001
--0.446595 -0.28271999 0.45134998
-
--0.436525 -0.08632 0.43841
--0.50651501 -0.10104 0.42856998
--0.551175 -0.15953 0.43046001
-
-0.103425 -0.39764999 0.58700001
-0.17356501 -0.39825001 0.58146
-0.153475 -0.35493 0.60167
-
-0.153435 -0.64473 0.48566002
-0.19356501 -0.64248001 0.49592999
-0.203395 -0.59640999 0.54062
-
-0.153435 -0.64473 0.48566002
-0.203395 -0.59640999 0.54062
-0.153405 -0.58124001 0.55702
-
--0.41656502 -0.18295 0.46936001
--0.44656502 -0.19707001 0.46938
--0.446595 -0.28271999 0.45134998
-
-0.103425 -0.39764999 0.58700001
-0.133395 -0.34088001 0.60337002
-0.053215 -0.32796001 0.58986
-
-0.293375 0.02494 0.40310001
-0.37462502 0.09203 0.35064999
-0.26532499 0.11682 0.36832001
-
--0.53415501 0.42109001 -0.44837002
--0.531875 0.43505001 -0.47442001
--0.52310501 0.42203999 -0.45536999
-
--0.192925 0.12158 0.28837999
--0.106735 0.07859 0.32783001
--0.138135 0.15368 0.18959999
-
--0.297925 -0.53887001 -0.09417
--0.157915 -0.5673 -0.08973
--0.24751499 -0.60999001 -0.0966
-
--0.116545 0.01205 -0.16351999
--0.160285 -0.07244 -0.20541
--0.190415 -0.01619 -0.18384001
-
--0.436525 -0.08632 0.43841
--0.38654499 -0.07216 0.43530998
--0.336605 -0.00365 0.39479
-
--0.42501499 0.0966 0.42016998
--0.44178501 0.09654 0.43144001
--0.44835499 0.03677 0.38549
-
-0.37462502 0.09203 0.35064999
-0.368885 0.12605 0.31459999
-0.29845501 0.12968 0.34632999
-
--0.406185 -0.64178001 0.44240002
--0.40703499 -0.68030998 0.47273998
--0.35189499 -0.67195 0.46866001
-
--0.46279499 0.65877998 -0.53924999
--0.48884499 0.70297997 -0.56327
--0.478615 0.61969002 -0.45830002
-
--0.49119499 0.00697 0.39306
--0.436525 -0.08632 0.43841
--0.336605 -0.00365 0.39479
-
-0.053525 -0.59877998 0.51932999
-0.153435 -0.64473 0.48566002
-0.153405 -0.58124001 0.55702
-
--0.43119499 -0.63069 0.39651001
--0.45441502 -0.64302002 0.36220001
--0.46994499 -0.66989998 0.39380001
-
--0.083505 0.68447998 -0.17287001
--0.073375 0.61046001 -0.18223
--0.18282499 0.59498001 -0.13044
-
--0.41656502 -0.18295 0.46936001
--0.446595 -0.28271999 0.45134998
--0.33655499 -0.23921 0.47109001
-
--0.430355 -0.10442 -0.17239
--0.420495 -0.13227 -0.18625
--0.40962502 -0.24707001 -0.19660999
-
-0.203305 0.06761 0.41046001
-0.23304501 0.00794 0.42648998
-0.293375 0.02494 0.40310001
-
-0.57196499 -0.49865002 0.31608
-0.59136501 -0.44555 0.29172001
-0.57273499 -0.37573002 0.33617001
-
--0.141445 -0.71961998 0.33926998
--0.129625 -0.75866997 0.17889999
--0.097395 -0.72411003 0.17242001
-
-0.74039497 -0.56462002 0.06716
-0.757565 -0.47983002 0.05688
-0.77457497 -0.49212002 0.10691
-
-0.046245 0.64051003 -0.26128
-0.066055 0.59167999 -0.23388
--0.027095 0.51598 -0.13203
-
--0.33655499 -0.23921 0.47109001
--0.37656502 -0.29565001 0.46369999
--0.326595 -0.31034 0.45616001
-
--0.44656502 -0.19707001 0.46938
--0.41656502 -0.18295 0.46936001
--0.38665501 -0.15554 0.46
-
--0.406535 0.02358 0.37558998
--0.33633499 0.03778 0.36269001
--0.343685 0.08148 0.34409
-
-0.26532499 0.11682 0.36832001
-0.185485 0.15646 0.33446999
-0.143465 0.09524 0.39535999
-
-0.154285 -0.09136 0.45977001
-0.253855 -0.08411 0.48338001
-0.32342499 -0.00259 0.41494999
-
-0.37626499 -0.10669 0.47582001
-0.32317501 -0.0705 0.47466
-0.352155 -0.22743 0.51053001
-
--0.40703499 -0.68030998 0.47273998
--0.363685 -0.71358002 0.48608002
--0.35189499 -0.67195 0.46866001
-
-0.32317501 -0.0705 0.47466
-0.42301498 -0.09387 0.43786999
-0.42587502 -0.0541 0.4068
-
--0.38665501 -0.15554 0.46
--0.41656502 -0.18295 0.46936001
--0.33655499 -0.23921 0.47109001
-
--0.406535 0.02358 0.37558998
--0.49119499 0.00697 0.39306
--0.336605 -0.00365 0.39479
-
-0.103345 -0.42644001 0.57532001
-0.17356501 -0.39825001 0.58146
-0.103425 -0.39764999 0.58700001
-
--0.326595 -0.31034 0.45616001
--0.306675 -0.36883999 0.43159
--0.24657499 -0.24148001 0.44134998
-
-0.55329498 -0.58823002 0.33521
-0.52557499 -0.56825001 0.33627998
-0.49892502 -0.66067001 0.30966
-
-0.63363499 -0.56191002 0.33492001
-0.59330502 -0.54569 0.33654999
-0.583465 -0.60224998 0.34046001
-
-0.143455 0.01272 0.43963001
-0.093525 -0.02874 0.45459
-0.154285 -0.09136 0.45977001
-
--0.34806499 -0.62027 0.40410999
--0.354585 -0.59728001 0.33195
--0.39304501 -0.61914001 0.39880001
-
--0.30634501 -0.15582 0.45601002
--0.306255 -0.14151 0.45530998
--0.38665501 -0.15554 0.46
-
--0.306255 -0.14151 0.45530998
--0.38654499 -0.07216 0.43530998
--0.38665501 -0.15554 0.46
-
-0.327005 -0.16132 0.50963001
-0.33553501 -0.21408001 0.52173
-0.352155 -0.22743 0.51053001
-
--0.74114502 0.29077999 0.20722
--0.72123497 0.26363001 0.29735001
--0.74582497 0.34598999 0.25691
-
--0.74152496 0.38702 0.23667
--0.72732498 0.41339001 0.20645
--0.74042503 0.40042999 0.17667999
-
-0.40009499 -0.18596001 0.49257999
-0.37626499 -0.10669 0.47582001
-0.352155 -0.22743 0.51053001
-
-0.583465 -0.60224998 0.34046001
-0.49892502 -0.66067001 0.30966
-0.57481499 -0.63938 0.32445999
-
--0.43943501 0.61122002 -0.59380001
--0.44495499 0.61160999 -0.60196999
--0.439925 0.61355999 -0.59553001
-
--0.336605 -0.00365 0.39479
--0.306255 -0.14151 0.45530998
--0.266535 -0.03076 0.41641998
-
--0.33633499 0.03778 0.36269001
--0.406535 0.02358 0.37558998
--0.336605 -0.00365 0.39479
-
-0.203305 0.06761 0.41046001
-0.143465 0.09524 0.39535999
-0.143455 0.01272 0.43963001
-
--0.49363499 0.44341 -0.49014
--0.52519501 0.43825001 -0.48328999
--0.49435501 0.49361 -0.54973999
-
-0.143465 0.09524 0.39535999
-0.013225 0.0811 0.38118
-0.043555 0.01225 0.43209
-
--0.266625 -0.63647999 0.42265999
--0.296705 -0.61009998 0.40333
--0.35189499 -0.67195 0.46866001
-
--0.306255 -0.14151 0.45530998
--0.246605 -0.2133 0.44130001
--0.216565 -0.08709 0.42601002
-
--0.306255 -0.14151 0.45530998
--0.30634501 -0.15582 0.45601002
--0.246605 -0.2133 0.44130001
-
--0.336605 -0.00365 0.39479
--0.38654499 -0.07216 0.43530998
--0.306255 -0.14151 0.45530998
-
-0.061495 0.71106003 -0.27132
-0.036155 0.71919998 -0.22396
-0.077465 0.65564003 -0.25237
-
--0.51220501 0.43668999 -0.48354
--0.52519501 0.43825001 -0.48328999
--0.49363499 0.44341 -0.49014
-
-0.182565 -0.11096 0.51632
-0.23345501 -0.11154 0.49640999
-0.154285 -0.09136 0.45977001
-
-0.032965 0.15014 0.30976
-0.013225 0.0811 0.38118
-0.119035 0.13868 0.35504002
-
-0.20192499 0.21209999 0.08168
-0.147305 0.21093 0.16179001
-0.267075 0.20905001 0.1627
-
--0.50442501 0.51681 -0.12221
--0.541525 0.60362999 -0.27988001
--0.55648499 0.57926998 -0.21315001
-
--0.30634501 -0.15582 0.45601002
--0.38665501 -0.15554 0.46
--0.33655499 -0.23921 0.47109001
-
-0.293375 0.02494 0.40310001
-0.26532499 0.11682 0.36832001
-0.203305 0.06761 0.41046001
-
-0.153405 -0.58124001 0.55702
-0.163435 -0.53869999 0.56303001
-0.133365 -0.51195999 0.55555
-
--0.296705 -0.61009998 0.40333
--0.34806499 -0.62027 0.40410999
--0.406185 -0.64178001 0.44240002
-
--0.306675 -0.36883999 0.43159
--0.21644501 -0.28254 0.45178001
--0.24657499 -0.24148001 0.44134998
-
--0.266535 -0.03076 0.41641998
--0.216565 -0.08709 0.42601002
--0.236425 0.01018 0.38021999
-
-0.154285 -0.09136 0.45977001
-0.32342499 -0.00259 0.41494999
-0.293375 0.02494 0.40310001
-
--0.72732498 0.41339001 0.20645
--0.67873497 0.42423 0.10789
--0.70818497 0.41217999 0.12753
-
--0.216555 -0.65108002 0.42185001
--0.35189499 -0.67195 0.46866001
--0.363685 -0.71358002 0.48608002
-
--0.256665 -0.55305 0.4109
--0.272745 -0.45799 0.41743
--0.32939499 -0.58321999 0.36421001
-
--0.363685 -0.71358002 0.48608002
--0.37914501 -0.74181999 0.48116001
--0.307395 -0.74459 0.46473999
-
--0.296705 -0.61009998 0.40333
--0.406185 -0.64178001 0.44240002
--0.35189499 -0.67195 0.46866001
-
--0.21657499 -0.42470001 0.43263
--0.256665 -0.55305 0.4109
--0.206465 -0.52480999 0.41360001
-
--0.192925 0.12158 0.28837999
--0.28057501 0.13838 0.25653999
--0.308445 0.09557 0.30705999
-
--0.192925 0.12158 0.28837999
--0.308445 0.09557 0.30705999
--0.33633499 0.03778 0.36269001
-
--0.43411499 -0.75475998 0.44608002
--0.33710499 -0.76268997 0.2824
--0.257085 -0.75538002 0.41583
-
--0.216555 -0.65108002 0.42185001
--0.266625 -0.63647999 0.42265999
--0.35189499 -0.67195 0.46866001
-
--0.216555 -0.65108002 0.42185001
--0.22651501 -0.56736 0.40914001
--0.266625 -0.63647999 0.42265999
-
--0.306675 -0.36883999 0.43159
--0.326595 -0.31034 0.45616001
--0.37656502 -0.29565001 0.46369999
-
--0.246605 -0.2133 0.44130001
--0.30634501 -0.15582 0.45601002
--0.24657499 -0.24148001 0.44134998
-
--0.216565 -0.08709 0.42601002
--0.266535 -0.03076 0.41641998
--0.306255 -0.14151 0.45530998
-
--0.192925 0.12158 0.28837999
--0.33633499 0.03778 0.36269001
--0.236425 0.01018 0.38021999
-
--0.43119499 -0.63069 0.39651001
--0.42884499 -0.63210999 0.34209
--0.45441502 -0.64302002 0.36220001
-
--0.47864498 -0.74934998 0.25862
--0.47838501 -0.72314003 0.26280001
--0.45761501 -0.71341003 0.26252001
-
--0.69706497 0.27559999 0.04741
--0.685625 0.31711 0.06703
--0.62156502 0.28177999 -0.03207
-
--0.363685 -0.71358002 0.48608002
--0.307395 -0.74459 0.46473999
--0.232635 -0.74156998 0.44324001
-
--0.33655499 -0.23921 0.47109001
--0.326595 -0.31034 0.45616001
--0.24657499 -0.24148001 0.44134998
-
--0.206455 -0.16997 0.45382999
--0.146535 -0.15527 0.46143002
--0.136605 -0.09948 0.44941002
-
-0.066055 0.59167999 -0.23388
-0.075975 0.58987 -0.22885
-0.068865 0.56655998 -0.20183001
-
--0.22651501 -0.56736 0.40914001
--0.256665 -0.55305 0.4109
--0.296705 -0.61009998 0.40333
-
--0.306675 -0.36883999 0.43159
--0.21657499 -0.42470001 0.43263
--0.21644501 -0.28254 0.45178001
-
-0.17338499 -0.16284 0.56652
-0.053405 -0.17601 0.57659
-0.223505 -0.23148001 0.58157001
-
--0.54392502 0.40847 -0.42164001
--0.53543499 0.41438 -0.43537998
--0.52669498 0.41201 -0.43175999
-
-0.153405 -0.58124001 0.55702
-0.133365 -0.51195999 0.55555
-0.093335 -0.54011002 0.55001999
-
--0.256665 -0.55305 0.4109
--0.22651501 -0.56736 0.40914001
--0.206465 -0.52480999 0.41360001
-
--0.21644501 -0.28254 0.45178001
--0.246605 -0.2133 0.44130001
--0.24657499 -0.24148001 0.44134998
-
--0.206455 -0.16997 0.45382999
--0.136605 -0.09948 0.44941002
--0.216565 -0.08709 0.42601002
-
--0.216565 -0.08709 0.42601002
--0.136605 -0.09948 0.44941002
--0.096575 0.02365 0.37799999
-
-0.26328501 -0.13812 0.51595001
-0.17338499 -0.16284 0.56652
-0.25977501 -0.2282 0.57007
-
--0.30634501 -0.15582 0.45601002
--0.33655499 -0.23921 0.47109001
--0.24657499 -0.24148001 0.44134998
-
--0.21644501 -0.28254 0.45178001
--0.176625 -0.22690001 0.44397999
--0.206455 -0.16997 0.45382999
-
--0.266535 -0.03076 0.41641998
--0.236425 0.01018 0.38021999
--0.336605 -0.00365 0.39479
-
--0.21657499 -0.42470001 0.43263
--0.16668501 -0.42550999 0.42176998
--0.156665 -0.36923 0.42314999
-
--0.21644501 -0.28254 0.45178001
--0.206455 -0.16997 0.45382999
--0.246605 -0.2133 0.44130001
-
-0.23304501 0.00794 0.42648998
-0.143455 0.01272 0.43963001
-0.154285 -0.09136 0.45977001
-
-0.24317499 -0.62743 0.50932999
-0.203395 -0.59640999 0.54062
-0.19356501 -0.64248001 0.49592999
-
--0.014785 0.14532 -0.02397
--0.060175 0.08937 -0.1052
--0.138675 0.11073 -0.06666
-
--0.216555 -0.65108002 0.42185001
--0.140305 -0.57868999 0.38641998
--0.22651501 -0.56736 0.40914001
-
--0.206465 -0.52480999 0.41360001
--0.22651501 -0.56736 0.40914001
--0.140305 -0.57868999 0.38641998
-
--0.156665 -0.36923 0.42314999
--0.16668501 -0.42550999 0.42176998
--0.116605 -0.52758999 0.38146999
-
--0.156565 -0.18361 0.45839001
--0.146535 -0.15527 0.46143002
--0.206455 -0.16997 0.45382999
-
--0.136605 -0.09948 0.44941002
-0.013225 0.0811 0.38118
--0.096575 0.02365 0.37799999
-
-0.72791496 -0.59351002 0.06742
-0.67806503 -0.65469002 0.13749
-0.67858498 -0.64014999 0.05778
-
--0.044845 -0.65685997 0.5468
--0.043565 -0.73834 0.55035999
-0.065805 -0.69416 0.51382
-
-0.23345501 -0.11154 0.49640999
-0.182745 -0.12148 0.53138
-0.26328501 -0.13812 0.51595001
-
--0.21657499 -0.42470001 0.43263
--0.272745 -0.45799 0.41743
--0.256665 -0.55305 0.4109
-
-0.59330502 -0.54569 0.33654999
-0.64346497 -0.49037998 0.32360001
-0.57196499 -0.49865002 0.31608
-
--0.49023499 0.31427999 -0.06865
--0.54886501 0.33823002 -0.12392
--0.47512501 0.32431999 -0.07113
-
--0.59239498 0.37070999 -0.07326
--0.54886501 0.33823002 -0.12392
--0.54577499 0.32955002 -0.08891
-
--0.22651501 -0.56736 0.40914001
--0.296705 -0.61009998 0.40333
--0.266625 -0.63647999 0.42265999
-
--0.140305 -0.57868999 0.38641998
--0.116605 -0.52758999 0.38146999
--0.206465 -0.52480999 0.41360001
-
-0.25977501 -0.2282 0.57007
-0.276535 -0.21360001 0.55987
-0.27328501 -0.16485001 0.53637001
-
--0.43966499 0.60813999 -0.59201
--0.43943501 0.61122002 -0.59380001
--0.439925 0.61355999 -0.59553001
-
--0.176625 -0.22690001 0.44397999
--0.21644501 -0.28254 0.45178001
--0.156665 -0.36923 0.42314999
-
--0.146535 -0.15527 0.46143002
--0.093355 -0.17006001 0.46999001
--0.136605 -0.09948 0.44941002
-
--0.44350498 0.63459 -0.59969002
--0.45517502 0.62153999 -0.60337002
--0.44495499 0.61160999 -0.60196999
-
--0.137875 -0.2701 0.43911999
--0.116605 -0.52758999 0.38146999
--0.096085 -0.45277 0.41069
-
--0.21644501 -0.28254 0.45178001
--0.21657499 -0.42470001 0.43263
--0.156665 -0.36923 0.42314999
-
--0.176625 -0.22690001 0.44397999
--0.156665 -0.36923 0.42314999
--0.137875 -0.2701 0.43911999
-
--0.136565 -0.18389 0.45653999
--0.137875 -0.2701 0.43911999
--0.119785 -0.23910999 0.46998001
-
--0.137875 -0.2701 0.43911999
--0.136565 -0.18389 0.45653999
--0.156565 -0.18361 0.45839001
-
--0.137875 -0.2701 0.43911999
--0.156565 -0.18361 0.45839001
--0.176625 -0.22690001 0.44397999
-
--0.16668501 -0.42550999 0.42176998
--0.206465 -0.52480999 0.41360001
--0.116605 -0.52758999 0.38146999
-
--0.137875 -0.2701 0.43911999
--0.096085 -0.45277 0.41069
--0.029985 -0.49078999 0.50139999
-
--0.192925 0.12158 0.28837999
--0.236425 0.01018 0.38021999
--0.096575 0.02365 0.37799999
-
--0.106735 0.07859 0.32783001
--0.192925 0.12158 0.28837999
--0.096575 0.02365 0.37799999
-
-0.133395 -0.34088001 0.60337002
-0.223505 -0.23148001 0.58157001
-0.043465 -0.23129 0.58570999
-
-0.253855 -0.08411 0.48338001
-0.23345501 -0.11154 0.49640999
-0.26328501 -0.13812 0.51595001
-
--0.166485 0.62580002 -0.00026
--0.112215 0.62556 -0.07594
--0.036455 0.74396004 -0.12342
-
--0.16668501 -0.42550999 0.42176998
--0.21657499 -0.42470001 0.43263
--0.206465 -0.52480999 0.41360001
-
-0.52557499 -0.56825001 0.33627998
-0.47058498 -0.56601002 0.39771999
-0.465905 -0.63949001 0.35477001
-
--0.156565 -0.18361 0.45839001
--0.136565 -0.18389 0.45653999
--0.146535 -0.15527 0.46143002
-
--0.146535 -0.15527 0.46143002
--0.136565 -0.18389 0.45653999
--0.093355 -0.17006001 0.46999001
-
--0.136605 -0.09948 0.44941002
-0.043555 0.01225 0.43209
-0.013225 0.0811 0.38118
-
--0.236425 0.01018 0.38021999
--0.216565 -0.08709 0.42601002
--0.096575 0.02365 0.37799999
-
-0.069325 0.57973999 -0.17223
-0.060495 0.54880001 -0.17709
-0.068865 0.56655998 -0.20183001
-
-0.145115 -0.74193001 0.48983002
-0.268925 -0.75015999 0.45092999
-0.253395 -0.73496002 0.46985001
-
--0.531875 0.43505001 -0.47442001
--0.522085 0.42964001 -0.46967999
--0.52310501 0.42203999 -0.45536999
-
--0.50442501 0.51681 -0.12221
--0.55648499 0.57926998 -0.21315001
--0.53754501 0.46978001 -0.00341
-
--0.74152496 0.38702 0.23667
--0.74582497 0.34598999 0.25691
--0.72876503 0.31882 0.31702
-
--0.522085 0.42964001 -0.46967999
--0.51220501 0.43668999 -0.48354
--0.51262501 0.42702 -0.46618999
-
--0.246605 -0.2133 0.44130001
--0.206455 -0.16997 0.45382999
--0.216565 -0.08709 0.42601002
-
--0.51262501 0.42702 -0.46618999
--0.51220501 0.43668999 -0.48354
--0.49363499 0.44341 -0.49014
-
--0.136605 -0.09948 0.44941002
--0.093355 -0.17006001 0.46999001
--0.080705 -0.14328 0.45655998
-
-0.163435 -0.53869999 0.56303001
-0.153405 -0.58124001 0.55702
-0.203395 -0.59640999 0.54062
-
-0.185485 0.15646 0.33446999
-0.119035 0.13868 0.35504002
-0.143465 0.09524 0.39535999
-
-0.32342499 -0.00259 0.41494999
-0.253855 -0.08411 0.48338001
-0.32317501 -0.0705 0.47466
-
-0.21620501 0.20631001 0.22993
-0.19949499 0.18938999 0.2817
-0.279865 0.18177999 0.28193001
-
--0.080705 -0.14328 0.45655998
--0.106555 -0.0996 0.45023998
--0.136605 -0.09948 0.44941002
-
--0.036705 -0.58948002 0.47154999
--0.106135 -0.61624001 0.49498001
--0.056445 -0.62691002 0.52630001
-
--0.100065 -0.67837997 0.54858002
--0.106135 -0.61624001 0.49498001
--0.16275499 -0.66514 0.49737
-
--0.056445 -0.62691002 0.52630001
--0.044845 -0.65685997 0.5468
-0.023435 -0.61555 0.49417
-
--0.40218498 -0.59438999 0.01163
--0.41205502 -0.60668999 0.06219
--0.40209499 -0.53867001 0.05158
-
--0.119005 -0.73551003 0.54847
--0.055935 -0.72981003 0.55643002
--0.100065 -0.67837997 0.54858002
-
--0.106135 -0.61624001 0.49498001
--0.036705 -0.58948002 0.47154999
--0.143465 -0.60214001 0.43403999
-
-0.30644501 0.19247999 0.06287
-0.368895 0.14748 0.00937
-0.32314499 0.16155001 -0.00588
-
-0.19949499 0.18938999 0.2817
-0.185485 0.15646 0.33446999
-0.279865 0.18177999 0.28193001
-
-0.21620501 0.20631001 0.22993
-0.279865 0.18177999 0.28193001
-0.31116501 0.18573 0.23601
-
-0.093385 -0.48191002 0.57638
-0.203465 -0.48157001 0.57987
-0.17356501 -0.39825001 0.58146
-
--0.69313499 0.39777 0.31554001
--0.65483498 0.44209999 0.23309999
--0.72732498 0.41339001 0.20645
-
-0.279865 0.18177999 0.28193001
-0.362635 0.14925 0.26934
-0.31116501 0.18573 0.23601
-
--0.029165 -0.1302 0.47558998
--0.029335 -0.10314 0.45814999
--0.106555 -0.0996 0.45023998
-
--0.156585 -0.76415001 0.10611
--0.152885 -0.76372002 0.12453
--0.166565 -0.76378998 0.10376
-
-0.145115 -0.74193001 0.48983002
-0.253395 -0.73496002 0.46985001
-0.242435 -0.69941002 0.47040001
-
-0.093385 -0.48191002 0.57638
-0.133365 -0.51195999 0.55555
-0.203465 -0.48157001 0.57987
-
-0.63363499 -0.56191002 0.33492001
-0.68953499 -0.50616001 0.3109
-0.64346497 -0.49037998 0.32360001
-
--0.118055 -0.56602001 0.3798
--0.140305 -0.57868999 0.38641998
--0.036705 -0.58948002 0.47154999
-
--0.49872501 0.43931999 0.33116001
--0.567505 0.44047001 0.32217999
--0.56956501 0.37901001 0.42835999
-
--0.49872501 0.43931999 0.33116001
--0.40461498 0.42754002 0.32105999
--0.45608501 0.45756001 0.24393999
-
--0.574305 0.39730999 -0.30334999
--0.54327499 0.39124001 -0.37567001
--0.55800499 0.38182999 -0.29503
-
-0.066055 0.59167999 -0.23388
-0.068865 0.56655998 -0.20183001
-0.060495 0.54880001 -0.17709
-
--0.20724501 -0.69445999 -0.26997999
--0.166175 -0.74779999 -0.29483
--0.20123501 -0.75469002 -0.29017
-
-0.013465 -0.32881001 0.57973
--0.019855 -0.37563999 0.55806
-0.053215 -0.32796001 0.58986
-
--0.042475 -0.24874001 0.57685001
--0.042595 -0.29021999 0.57817001
--0.006605 -0.27245001 0.59221001
-
--0.47262501 0.31153 -0.0592
--0.39040501 0.27885 -0.0233
--0.43113499 0.13668 -0.06854
-
--0.107915 -0.53838001 -0.23878
--0.158205 -0.50859001 -0.11002
--0.16091499 -0.46264999 -0.1489
-
-0.32317501 -0.0705 0.47466
-0.253855 -0.08411 0.48338001
-0.26328501 -0.13812 0.51595001
-
--0.036455 0.74396004 -0.12342
--0.020145 0.67031998 -0.15351
-0.036155 0.71919998 -0.22396
-
-0.242435 -0.69941002 0.47040001
-0.073435 -0.62984001 0.4934
-0.065805 -0.69416 0.51382
-
-0.253305 -0.66041 0.46727001
-0.19356501 -0.64248001 0.49592999
-0.153435 -0.64473 0.48566002
-
--0.056445 -0.62691002 0.52630001
-0.023435 -0.61555 0.49417
--0.016705 -0.60248001 0.48320999
-
--0.212425 0.4907 -0.10495
--0.40245499 0.42946999 0.00582
--0.23320499 0.5352 -0.10464
-
--0.029165 -0.1302 0.47558998
-0.035725 -0.09047 0.45244999
--0.029335 -0.10314 0.45814999
-
-0.17338499 -0.16284 0.56652
-0.136995 -0.12943 0.54544998
-0.053405 -0.17601 0.57659
-
-0.52557499 -0.56825001 0.33627998
-0.55329498 -0.58823002 0.33521
-0.57196499 -0.49865002 0.31608
-
-0.203465 -0.48157001 0.57987
-0.133365 -0.51195999 0.55555
-0.163435 -0.53869999 0.56303001
-
-0.26304501 -0.48462002 0.55549999
-0.203465 -0.48157001 0.57987
-0.163435 -0.53869999 0.56303001
-
-0.279865 0.18177999 0.28193001
-0.29845501 0.12968 0.34632999
-0.362635 0.14925 0.26934
-
--0.19886499 -0.37626999 -0.16464001
--0.238365 -0.47976002 -0.11273
--0.26883499 -0.37657001 -0.16448
-
-0.075455 0.60136002 -0.24311001
-0.080755 0.61445999 -0.2476
-0.075975 0.58987 -0.22885
-
--0.52343498 0.42028999 -0.45174999
--0.515135 0.41865002 -0.44709
--0.52669498 0.41201 -0.43175999
-
-0.267075 0.20905001 0.1627
-0.38503502 0.15941 0.19188999
-0.30644501 0.19247999 0.06287
-
-0.035725 -0.09047 0.45244999
-0.093525 -0.02874 0.45459
-0.043555 0.01225 0.43209
-
--0.77178497 0.08616 0.18837
--0.77828499 0.14011 0.20802999
--0.77015503 0.16722 0.17794001
-
--0.019855 -0.37563999 0.55806
-0.053355 -0.41346001 0.56433998
-0.053215 -0.32796001 0.58986
-
--0.006605 -0.27245001 0.59221001
-0.013465 -0.32881001 0.57973
-0.043465 -0.23129 0.58570999
-
-0.053405 -0.17601 0.57659
--0.008315 -0.16797001 0.55435001
--0.042475 -0.24874001 0.57685001
-
-0.035725 -0.09047 0.45244999
--0.009275 -0.14155 0.52644001
-0.079635 -0.11564 0.52494999
-
-0.073435 -0.62984001 0.4934
-0.023435 -0.61555 0.49417
--0.044845 -0.65685997 0.5468
-
--0.019855 -0.37563999 0.55806
--0.085865 -0.32016998 0.52319
--0.029985 -0.49078999 0.50139999
-
--0.075765 -0.16964001 0.4948
--0.057925 -0.20864 0.54856998
--0.008315 -0.16797001 0.55435001
-
--0.51262501 0.42702 -0.46618999
--0.49363499 0.44341 -0.49014
--0.515135 0.41865002 -0.44709
-
--0.136605 -0.09948 0.44941002
--0.106555 -0.0996 0.45023998
-0.043555 0.01225 0.43209
-
-0.053525 -0.59877998 0.51932999
-0.023435 -0.61555 0.49417
-0.073435 -0.62984001 0.4934
-
-0.053355 -0.41346001 0.56433998
--0.019855 -0.37563999 0.55806
-0.031045 -0.48976002 0.55334
-
-0.103425 -0.39764999 0.58700001
-0.053215 -0.32796001 0.58986
-0.053355 -0.41346001 0.56433998
-
-0.043465 -0.23129 0.58570999
-0.013465 -0.32881001 0.57973
-0.053215 -0.32796001 0.58986
-
-0.47058498 -0.56601002 0.39771999
-0.44266499 -0.61000999 0.39195
-0.465905 -0.63949001 0.35477001
-
-0.26532499 0.11682 0.36832001
-0.29845501 0.12968 0.34632999
-0.279865 0.18177999 0.28193001
-
-0.053525 -0.59877998 0.51932999
-0.073435 -0.62984001 0.4934
-0.153435 -0.64473 0.48566002
-
--0.39039501 -0.65042 0.25218
--0.354585 -0.59728001 0.33195
--0.35820499 -0.59717999 0.29188
-
-0.68647499 -0.58339001 -0.0017
-0.701595 -0.51362999 -0.01377
-0.74039497 -0.56462002 0.06716
-
-0.77457497 -0.49212002 0.10691
-0.76139503 -0.53476002 0.19711
-0.74088501 -0.59263 0.15724
-
-0.043555 0.01225 0.43209
-0.093525 -0.02874 0.45459
-0.143455 0.01272 0.43963001
-
-0.013225 0.0811 0.38118
--0.106735 0.07859 0.32783001
--0.096575 0.02365 0.37799999
-
--0.087935 0.12239 0.26698
--0.106735 0.07859 0.32783001
-0.032965 0.15014 0.30976
-
-0.103345 -0.42644001 0.57532001
-0.093385 -0.48191002 0.57638
-0.17356501 -0.39825001 0.58146
-
-0.242435 -0.69941002 0.47040001
-0.153435 -0.64473 0.48566002
-0.073435 -0.62984001 0.4934
-
-0.103345 -0.42644001 0.57532001
-0.103425 -0.39764999 0.58700001
-0.053355 -0.41346001 0.56433998
-
-0.616395 -0.19808001 0.01714
-0.595695 -0.19973 -0.04273
-0.61706501 -0.15582 0.06717
-
--0.029335 -0.10314 0.45814999
-0.043555 0.01225 0.43209
--0.106555 -0.0996 0.45023998
-
-0.143455 0.01272 0.43963001
-0.143465 0.09524 0.39535999
-0.043555 0.01225 0.43209
-
-0.26532499 0.11682 0.36832001
-0.143465 0.09524 0.39535999
-0.203305 0.06761 0.41046001
-
-0.587925 -0.08729 0.02727
-0.57723499 -0.16372999 -0.05665
-0.53067501 -0.0586 -0.06884
-
-0.103425 -0.39764999 0.58700001
-0.153475 -0.35493 0.60167
-0.133395 -0.34088001 0.60337002
-
-0.153405 -0.58124001 0.55702
-0.093335 -0.54011002 0.55001999
-0.053525 -0.59877998 0.51932999
-
-0.223505 -0.23148001 0.58157001
-0.133395 -0.34088001 0.60337002
-0.153475 -0.35493 0.60167
-
-0.263435 -0.55469002 0.54113998
-0.307425 -0.55289001 0.51352001
-0.26304501 -0.48462002 0.55549999
-
-0.242435 -0.69941002 0.47040001
-0.065805 -0.69416 0.51382
-0.145115 -0.74193001 0.48983002
-
-0.036155 0.71919998 -0.22396
--0.020145 0.67031998 -0.15351
-0.069325 0.57973999 -0.17223
-
--0.18914499 -0.31829 -0.17997
--0.178825 -0.39007 -0.16848
--0.19886499 -0.37626999 -0.16464001
-
-0.70712502 -0.44008999 0.28386
-0.64346497 -0.49037998 0.32360001
-0.68953499 -0.50616001 0.3109
-
--0.17994499 -0.75432999 0.36115002
--0.21356501 -0.75926003 0.30533001
--0.17445499 -0.76107002 0.26183001
-
--0.009545 0.50974998 -0.05037
--0.084295 0.46479 -0.01832
-0.004935 0.49839001 -0.08707
-
-0.263435 -0.55469002 0.54113998
-0.354795 -0.58098999 0.47644001
-0.307425 -0.55289001 0.51352001
-
-0.44975498 -0.50793999 -0.1924
-0.42197498 -0.58331001 -0.20099001
-0.391745 -0.56583 -0.23886999
-
-0.583465 -0.60224998 0.34046001
-0.59330502 -0.54569 0.33654999
-0.55329498 -0.58823002 0.33521
-
-0.59800499 -0.28384001 -0.03253
-0.62454498 -0.39271999 0.04435
-0.611035 -0.42883999 0.02128
-
-0.369995 -0.75161003 -0.02044
-0.38144501 -0.72870003 -0.01149
-0.37226501 -0.75335999 0.0004
-
--0.50698502 0.14098 0.53110001
--0.52195499 0.23915001 0.49179001
--0.59655499 0.21528 0.54181
-
-0.154285 -0.09136 0.45977001
-0.23345501 -0.11154 0.49640999
-0.253855 -0.08411 0.48338001
-
--0.48429501 0.08465 0.51129002
--0.44178501 0.09654 0.43144001
--0.429935 0.13929 0.43106998
-
--0.52690498 0.36866001 0.4325
--0.53012501 0.29573 0.48049
--0.499935 0.33810001 0.43618999
-
-0.34578499 -0.27997 0.53634998
-0.33553501 -0.21408001 0.52173
-0.262635 -0.34882 0.57363998
-
--0.199305 -0.2299 -0.22021999
--0.153045 -0.23818001 -0.25016001
--0.167955 -0.26533001 -0.23986
-
-0.016075 0.68472 -0.25462
-0.046245 0.64051003 -0.26128
--0.048255 0.52195999 -0.13641
-
-0.17356501 -0.39825001 0.58146
-0.262635 -0.34882 0.57363998
-0.25977501 -0.2282 0.57007
-
--0.51295502 0.12691 0.53984001
--0.516045 0.07047 0.53485001
--0.48429501 0.08465 0.51129002
-
--0.53012501 0.29573 0.48049
--0.60633499 0.29861 0.49606998
--0.59655499 0.21528 0.54181
-
--0.53012501 0.29573 0.48049
--0.48616501 0.21021999 0.45523998
--0.499935 0.33810001 0.43618999
-
-0.253305 -0.66041 0.46727001
-0.253395 -0.73496002 0.46985001
-0.329505 -0.71892998 0.45332001
-
--0.51295502 0.12691 0.53984001
--0.50698502 0.14098 0.53110001
--0.59655499 0.21528 0.54181
-
--0.51295502 0.12691 0.53984001
--0.48429501 0.08465 0.51129002
--0.50698502 0.14098 0.53110001
-
--0.166485 0.62580002 -0.00026
--0.236595 0.58076 0.04404
--0.31738501 0.43448002 0.11911
-
-0.051805 0.5825 -0.15508
--0.049325 0.62575001 -0.12564
--0.22710501 0.49293999 0.03888
-
--0.51295502 0.12691 0.53984001
--0.54655499 0.08835 0.54924999
--0.516045 0.07047 0.53485001
-
--0.48616501 0.21021999 0.45523998
--0.44947498 0.27966999 0.36776001
--0.499935 0.33810001 0.43618999
-
-0.57196499 -0.49865002 0.31608
-0.57273499 -0.37573002 0.33617001
-0.51838501 -0.48213001 0.39742001
-
-0.72546501 -0.5941 0.22735001
-0.70681503 -0.56171001 0.28268
-0.68346497 -0.63983002 0.21789
-
-0.49573502 -0.1589 0.41981998
-0.486665 -0.19856001 0.44179001
-0.55290501 -0.18681999 0.36167999
-
-0.70884499 -0.36710999 0.13567
-0.64000504 -0.36174 0.16885
-0.64128502 -0.37016998 0.18415001
-
-0.49573502 -0.1589 0.41981998
-0.56959499 -0.12199 0.29812
-0.55259499 -0.04642 0.27702
-
--0.54655499 0.08835 0.54924999
--0.51295502 0.12691 0.53984001
--0.59655499 0.21528 0.54181
-
-0.55290501 -0.18681999 0.36167999
-0.486665 -0.19856001 0.44179001
-0.54806499 -0.22674 0.37215
-
-0.61429501 -0.26823 0.25707001
-0.56959499 -0.12199 0.29812
-0.54806499 -0.22674 0.37215
-
--0.48616501 0.21021999 0.45523998
--0.52195499 0.23915001 0.49179001
--0.50698502 0.14098 0.53110001
-
--0.53012501 0.29573 0.48049
--0.52195499 0.23915001 0.49179001
--0.48616501 0.21021999 0.45523998
-
-0.53676498 -0.34728001 0.38973
-0.427565 -0.38834 0.46021
-0.51838501 -0.48213001 0.39742001
-
-0.42587502 -0.0541 0.4068
-0.43314499 -0.00056 0.38240002
-0.32342499 -0.00259 0.41494999
-
-0.54806499 -0.22674 0.37215
-0.50891499 -0.266 0.42063
-0.58010502 -0.29504 0.32986
-
--0.44178501 0.09654 0.43144001
--0.48429501 0.08465 0.51129002
--0.44835499 0.03677 0.38549
-
-0.069325 0.57973999 -0.17223
-0.046465 0.53513 -0.12086
-0.060495 0.54880001 -0.17709
-
--0.48429501 0.08465 0.51129002
--0.429935 0.13929 0.43106998
--0.50698502 0.14098 0.53110001
-
-0.486665 -0.19856001 0.44179001
-0.49573502 -0.1589 0.41981998
-0.40009499 -0.18596001 0.49257999
-
--0.43137501 0.38099998 0.37743
--0.45004501 0.41863998 0.36409
--0.52690498 0.36866001 0.4325
-
--0.41858501 0.32521999 -0.01536
--0.401735 0.37047001 -0.00194
--0.352155 0.32740002 0.01621
-
--0.329715 0.31518 0.05937
--0.363535 0.29777 0.01081
--0.34072498 0.34067001 0.0194
-
--0.089315 -0.30382 -0.35894001
--0.049465 -0.37333 -0.3702
--0.099045 -0.37569 -0.34127998
-
-0.42301498 -0.09387 0.43786999
-0.32317501 -0.0705 0.47466
-0.37626499 -0.10669 0.47582001
-
-0.47968498 -0.06731 0.37938999
-0.42301498 -0.09387 0.43786999
-0.49573502 -0.1589 0.41981998
-
--0.406535 0.02358 0.37558998
--0.44835499 0.03677 0.38549
--0.49119499 0.00697 0.39306
-
--0.49119499 0.00697 0.39306
--0.44835499 0.03677 0.38549
--0.527495 0.03341 0.50833
-
--0.429935 0.13929 0.43106998
--0.48616501 0.21021999 0.45523998
--0.50698502 0.14098 0.53110001
-
-0.335285 -0.62630001 0.44756001
-0.367225 -0.65199997 0.44060001
-0.44266499 -0.61000999 0.39195
-
--0.44178501 0.09654 0.43144001
--0.42501499 0.0966 0.42016998
--0.429935 0.13929 0.43106998
-
--0.44947498 0.27966999 0.36776001
--0.39515499 0.30839001 0.32299999
--0.44827499 0.33785 0.38784
-
--0.49363499 0.44341 -0.49014
--0.47018501 0.48946999 -0.51748001
--0.44885502 0.48257999 -0.32057999
-
--0.43594501 0.20952999 0.40491001
--0.48616501 0.21021999 0.45523998
--0.429935 0.13929 0.43106998
-
--0.229725 -0.20162001 -0.21724001
--0.32967499 -0.20312 -0.20150999
--0.310175 -0.08771 -0.20037001
-
-0.44266499 -0.61000999 0.39195
-0.43657501 -0.53799 0.43675999
-0.335285 -0.62630001 0.44756001
-
-0.47968498 -0.06731 0.37938999
-0.43314499 -0.00056 0.38240002
-0.42587502 -0.0541 0.4068
-
--0.57997501 0.39771 -0.2633
--0.51723499 0.35522999 -0.21364
--0.54886501 0.33823002 -0.12392
-
--0.48429501 0.08465 0.51129002
--0.527495 0.03341 0.50833
--0.44835499 0.03677 0.38549
-
--0.43594501 0.20952999 0.40491001
--0.429935 0.13929 0.43106998
--0.38712502 0.13965 0.40511002
-
--0.614795 0.37119999 -0.013
--0.58929501 0.35665001 -0.05348
--0.57147499 0.29725 -0.05187
-
--0.35580502 0.52299 0.06101
--0.30827499 0.55255001 0.0553
--0.247845 0.62541 -0.03466
-
-0.558475 -0.70769997 0.03611
-0.59227501 -0.64189003 -0.02401
-0.63273499 -0.64609001 0.00875
-
-0.38605499 -0.52320999 0.48705002
-0.51838501 -0.48213001 0.39742001
-0.427565 -0.38834 0.46021
-
--0.35817501 0.08173 0.3584
--0.42501499 0.0966 0.42016998
--0.40279499 0.05291 0.38118999
-
--0.43594501 0.20952999 0.40491001
--0.44947498 0.27966999 0.36776001
--0.48616501 0.21021999 0.45523998
-
--0.38712502 0.13965 0.40511002
--0.336045 0.18141001 0.33853001
--0.39515499 0.30839001 0.32299999
-
--0.44947498 0.27966999 0.36776001
--0.44827499 0.33785 0.38784
--0.499935 0.33810001 0.43618999
-
-0.70681503 -0.56171001 0.28268
-0.63936501 -0.64530998 0.26995001
-0.68346497 -0.63983002 0.21789
-
--0.036705 -0.58948002 0.47154999
--0.056445 -0.62691002 0.52630001
--0.016705 -0.60248001 0.48320999
-
--0.28335501 0.37535999 0.07935
--0.32425499 0.33021 0.07945
--0.259715 0.37625999 0.05013
-
--0.37914501 -0.74181999 0.48116001
--0.363685 -0.71358002 0.48608002
--0.40310501 -0.70723999 0.48404999
-
--0.25884501 -0.74322998 -0.26056
--0.20724501 -0.69445999 -0.26997999
--0.20123501 -0.75469002 -0.29017
-
-0.41008499 -0.30582001 0.50618
-0.38686501 -0.42890999 0.48895
-0.427565 -0.38834 0.46021
-
-0.308475 -0.66796997 0.46055
-0.367225 -0.65199997 0.44060001
-0.335285 -0.62630001 0.44756001
-
--0.45004501 0.41863998 0.36409
--0.56956501 0.37901001 0.42835999
--0.52690498 0.36866001 0.4325
-
--0.272745 -0.45799 0.41743
--0.21657499 -0.42470001 0.43263
--0.306675 -0.36883999 0.43159
-
-0.42587502 -0.0541 0.4068
-0.42301498 -0.09387 0.43786999
-0.47968498 -0.06731 0.37938999
-
--0.38591499 0.35167 0.31952
--0.43137501 0.38099998 0.37743
--0.44827499 0.33785 0.38784
-
-0.55259499 -0.04642 0.27702
-0.47858501 0.02572 0.32499001
-0.47968498 -0.06731 0.37938999
-
--0.44219501 0.62398998 -0.59071999
--0.455145 0.56103001 -0.45051998
--0.44630501 0.55679001 -0.57491001
-
--0.67350502 -0.31801001 0.21348
--0.71858498 -0.18570999 0.23955999
--0.72665497 -0.19900999 0.19982
-
--0.44835499 0.03677 0.38549
--0.406535 0.02358 0.37558998
--0.40279499 0.05291 0.38118999
-
--0.40461498 0.42754002 0.32105999
--0.36774502 0.40701 0.25933001
--0.38813499 0.43208 0.28315001
-
--0.71858498 -0.18570999 0.23955999
--0.69847504 -0.16400999 0.28132
--0.71903503 -0.1047 0.21924999
-
--0.39515499 0.30839001 0.32299999
--0.44947498 0.27966999 0.36776001
--0.43594501 0.20952999 0.40491001
-
--0.429935 0.13929 0.43106998
--0.42501499 0.0966 0.42016998
--0.38712502 0.13965 0.40511002
-
--0.34358501 0.26857 0.25934
--0.35530499 0.32993999 0.20927
--0.38591499 0.35167 0.31952
-
--0.39515499 0.30839001 0.32299999
--0.34358501 0.26857 0.25934
--0.38591499 0.35167 0.31952
-
--0.216555 -0.65108002 0.42185001
--0.363685 -0.71358002 0.48608002
--0.232635 -0.74156998 0.44324001
-
-0.72546501 -0.5941 0.22735001
-0.76139503 -0.53476002 0.19711
-0.76070503 -0.52106998 0.2173
-
--0.42501499 0.0966 0.42016998
--0.44835499 0.03677 0.38549
--0.40279499 0.05291 0.38118999
-
--0.38591499 0.35167 0.31952
--0.44827499 0.33785 0.38784
--0.39515499 0.30839001 0.32299999
-
-0.49892502 -0.66067001 0.30966
-0.52557499 -0.56825001 0.33627998
-0.465905 -0.63949001 0.35477001
-
-0.336675 -0.44263 0.52173
-0.38686501 -0.42890999 0.48895
-0.358755 -0.33319 0.53729
-
--0.35817501 0.08173 0.3584
--0.38712502 0.13965 0.40511002
--0.42501499 0.0966 0.42016998
-
-0.47058498 -0.56601002 0.39771999
-0.38605499 -0.52320999 0.48705002
-0.43657501 -0.53799 0.43675999
-
-0.33553501 -0.21408001 0.52173
-0.25977501 -0.2282 0.57007
-0.262635 -0.34882 0.57363998
-
-0.61429501 -0.26823 0.25707001
-0.64128502 -0.37016998 0.18415001
-0.64000504 -0.36174 0.16885
-
--0.020145 0.67031998 -0.15351
--0.112215 0.62556 -0.07594
--0.049325 0.62575001 -0.12564
-
--0.308445 0.09557 0.30705999
--0.336045 0.18141001 0.33853001
--0.38712502 0.13965 0.40511002
-
--0.35817501 0.08173 0.3584
--0.308445 0.09557 0.30705999
--0.38712502 0.13965 0.40511002
-
-0.327005 -0.16132 0.50963001
-0.276535 -0.21360001 0.55987
-0.33553501 -0.21408001 0.52173
-
-0.327005 -0.16132 0.50963001
-0.27328501 -0.16485001 0.53637001
-0.276535 -0.21360001 0.55987
-
-0.307425 -0.55289001 0.51352001
-0.354795 -0.58098999 0.47644001
-0.38605499 -0.52320999 0.48705002
-
-0.336675 -0.44263 0.52173
-0.307425 -0.55289001 0.51352001
-0.38605499 -0.52320999 0.48705002
-
--0.406535 0.02358 0.37558998
--0.343685 0.08148 0.34409
--0.35817501 0.08173 0.3584
-
--0.28057501 0.13838 0.25653999
--0.27186501 0.17989 0.1998
--0.318915 0.22754999 0.2701
-
--0.38712502 0.13965 0.40511002
--0.39515499 0.30839001 0.32299999
--0.43594501 0.20952999 0.40491001
-
--0.112215 0.62556 -0.07594
--0.020145 0.67031998 -0.15351
--0.036455 0.74396004 -0.12342
-
--0.559795 0.4541 0.06169
--0.53754501 0.46978001 -0.00341
--0.579935 0.46213001 -0.01038
-
-0.327005 -0.16132 0.50963001
-0.32317501 -0.0705 0.47466
-0.26328501 -0.13812 0.51595001
-
-0.473535 -0.68335999 0.30688
-0.49892502 -0.66067001 0.30966
-0.43405499 -0.71273003 0.30693001
-
--0.343685 0.08148 0.34409
--0.33633499 0.03778 0.36269001
--0.308445 0.09557 0.30705999
-
--0.33633499 0.03778 0.36269001
--0.336605 -0.00365 0.39479
--0.236425 0.01018 0.38021999
-
-0.67806503 -0.65469002 0.13749
-0.74088501 -0.59263 0.15724
-0.68346497 -0.63983002 0.21789
-
-0.263435 -0.55469002 0.54113998
-0.24317499 -0.62743 0.50932999
-0.354795 -0.58098999 0.47644001
-
--0.386665 -0.56747002 0.10225
--0.38455502 -0.62816002 0.13858
--0.334715 -0.61401001 0.18212
-
--0.406535 0.02358 0.37558998
--0.35817501 0.08173 0.3584
--0.40279499 0.05291 0.38118999
-
-0.486665 -0.19856001 0.44179001
-0.40009499 -0.18596001 0.49257999
-0.50891499 -0.266 0.42063
-
-0.41008499 -0.30582001 0.50618
-0.358755 -0.33319 0.53729
-0.38686501 -0.42890999 0.48895
-
-0.24317499 -0.62743 0.50932999
-0.253305 -0.66041 0.46727001
-0.335285 -0.62630001 0.44756001
-
-0.066055 0.59167999 -0.23388
-0.060495 0.54880001 -0.17709
--0.027095 0.51598 -0.13203
-
--0.44141499 0.60801998 -0.58164001
--0.44219501 0.62398998 -0.59071999
--0.44630501 0.55679001 -0.57491001
-
--0.35817501 0.08173 0.3584
--0.343685 0.08148 0.34409
--0.308445 0.09557 0.30705999
-
-0.470495 0.07129 0.2808
-0.47858501 0.02572 0.32499001
-0.55259499 -0.04642 0.27702
-
-0.40009499 -0.18596001 0.49257999
-0.352155 -0.22743 0.51053001
-0.34578499 -0.27997 0.53634998
-
--0.049325 0.62575001 -0.12564
-0.051805 0.5825 -0.15508
-0.069325 0.57973999 -0.17223
-
--0.055935 -0.72981003 0.55643002
--0.044845 -0.65685997 0.5468
--0.100065 -0.67837997 0.54858002
-
--0.47512501 0.32431999 -0.07113
--0.47262501 0.31153 -0.0592
--0.49023499 0.31427999 -0.06865
-
--0.52343498 0.42028999 -0.45174999
--0.53415501 0.42109001 -0.44837002
--0.52310501 0.42203999 -0.45536999
-
-0.004935 0.49839001 -0.08707
--0.34072498 0.34067001 0.0194
--0.027095 0.51598 -0.13203
-
-0.53676498 -0.34728001 0.38973
-0.50891499 -0.266 0.42063
-0.41008499 -0.30582001 0.50618
-
--0.468335 0.32449001 -0.06341
--0.47512501 0.32431999 -0.07113
--0.45510502 0.35847 -0.05053
-
-0.17356501 -0.39825001 0.58146
-0.223505 -0.23148001 0.58157001
-0.153475 -0.35493 0.60167
-
--0.096095 0.71514 -0.06997
--0.075495 0.73363998 -0.09516
--0.247845 0.62541 -0.03466
-
--0.29133499 0.43453999 0.10392
--0.165655 0.49323002 0.03954
--0.22710501 0.49293999 0.03888
-
--0.55654499 0.64793999 -0.39986
--0.478615 0.61969002 -0.45830002
--0.543125 0.70637001 -0.51022999
-
-0.276035 -0.42984001 0.55702
-0.203465 -0.48157001 0.57987
-0.26304501 -0.48462002 0.55549999
-
-0.336675 -0.44263 0.52173
-0.276035 -0.42984001 0.55702
-0.307425 -0.55289001 0.51352001
-
-0.56959499 -0.12199 0.29812
-0.49573502 -0.1589 0.41981998
-0.55290501 -0.18681999 0.36167999
-
--0.39515499 0.30839001 0.32299999
--0.318915 0.22754999 0.2701
--0.34358501 0.26857 0.25934
-
-0.253305 -0.66041 0.46727001
-0.308475 -0.66796997 0.46055
-0.335285 -0.62630001 0.44756001
-
-0.76550499 -0.45125 0.21715
-0.74180496 -0.46634998 0.26339001
-0.76070503 -0.52106998 0.2173
-
--0.096095 0.71514 -0.06997
--0.247845 0.62541 -0.03466
--0.30827499 0.55255001 0.0553
-
-0.276035 -0.42984001 0.55702
-0.17356501 -0.39825001 0.58146
-0.203465 -0.48157001 0.57987
-
--0.137245 -0.71829002 0.35676998
--0.141445 -0.71961998 0.33926998
--0.126875 -0.71792 0.35866001
-
-0.253305 -0.66041 0.46727001
-0.329505 -0.71892998 0.45332001
-0.308475 -0.66796997 0.46055
-
-0.32317501 -0.0705 0.47466
-0.42587502 -0.0541 0.4068
-0.32342499 -0.00259 0.41494999
-
-0.38605499 -0.52320999 0.48705002
-0.354795 -0.58098999 0.47644001
-0.43657501 -0.53799 0.43675999
-
--0.166485 0.62580002 -0.00026
--0.036455 0.74396004 -0.12342
--0.096095 0.71514 -0.06997
-
--0.502845 -0.67873001 0.11659
--0.54426498 -0.71963997 0.10263
--0.45942501 -0.75005997 0.21047001
-
--0.166485 0.62580002 -0.00026
--0.31738501 0.43448002 0.11911
--0.112215 0.62556 -0.07594
-
-0.61429501 -0.26823 0.25707001
-0.58010502 -0.29504 0.32986
-0.60397499 -0.40557999 0.27521
-
-0.465905 -0.63949001 0.35477001
-0.44266499 -0.61000999 0.39195
-0.390485 -0.69848 0.41848
-
-0.19356501 -0.64248001 0.49592999
-0.253305 -0.66041 0.46727001
-0.24317499 -0.62743 0.50932999
-
-0.427565 -0.38834 0.46021
-0.53676498 -0.34728001 0.38973
-0.41008499 -0.30582001 0.50618
-
--0.044845 -0.65685997 0.5468
--0.055935 -0.72981003 0.55643002
--0.043565 -0.73834 0.55035999
-
--0.081355 0.49502998 0.00394
--0.084295 0.46479 -0.01832
--0.009545 0.50974998 -0.05037
-
--0.39040501 0.27885 -0.0233
--0.41858501 0.32521999 -0.01536
--0.352155 0.32740002 0.01621
-
-0.544925 -0.67612 0.29681999
-0.57144501 -0.70275002 0.21681
-0.63936501 -0.64530998 0.26995001
-
-0.49573502 -0.1589 0.41981998
-0.42301498 -0.09387 0.43786999
-0.40009499 -0.18596001 0.49257999
-
--0.29133499 0.43453999 0.10392
--0.31738501 0.43448002 0.11911
--0.34077499 0.36119999 0.14935
-
-0.558475 -0.70769997 0.03611
-0.63273499 -0.64609001 0.00875
-0.67858498 -0.64014999 0.05778
-
-0.55259499 -0.04642 0.27702
-0.58518501 -0.07291 0.16698
-0.54476501 -0.0057 0.22294001
-
-0.70712502 -0.44008999 0.28386
-0.74180496 -0.46634998 0.26339001
-0.74194504 -0.41438999 0.23629999
-
--0.165655 0.49323002 0.03954
-0.051805 0.5825 -0.15508
--0.22710501 0.49293999 0.03888
-
--0.34072498 0.34067001 0.0194
--0.212425 0.4907 -0.10495
--0.027095 0.51598 -0.13203
-
--0.069995 -0.13285 -0.23166
--0.229725 -0.20162001 -0.21724001
--0.160285 -0.07244 -0.20541
-
-0.63363499 -0.56191002 0.33492001
-0.583465 -0.60224998 0.34046001
-0.62594501 -0.60432999 0.32353001
-
-0.58010502 -0.29504 0.32986
-0.61429501 -0.26823 0.25707001
-0.54806499 -0.22674 0.37215
-
-0.37462502 0.09203 0.35064999
-0.29845501 0.12968 0.34632999
-0.26532499 0.11682 0.36832001
-
-0.58010502 -0.29504 0.32986
-0.53676498 -0.34728001 0.38973
-0.57273499 -0.37573002 0.33617001
-
-0.47058498 -0.56601002 0.39771999
-0.51838501 -0.48213001 0.39742001
-0.38605499 -0.52320999 0.48705002
-
--0.044845 -0.65685997 0.5468
--0.056445 -0.62691002 0.52630001
--0.100065 -0.67837997 0.54858002
-
--0.216555 -0.65108002 0.42185001
--0.232635 -0.74156998 0.44324001
--0.222955 -0.69486 0.43347
-
--0.547775 -0.01096 0.39499001
--0.57050499 -0.03053 0.38844002
--0.49119499 0.00697 0.39306
-
-0.63363499 -0.56191002 0.33492001
-0.70681503 -0.56171001 0.28268
-0.68953499 -0.50616001 0.3109
-
--0.019895 -0.21881001 -0.36255001
--0.000905 -0.16063999 -0.32273998
-0.061575 -0.19306999 -0.34928001
-
-0.073585 0.64028999 -0.27017
-0.075455 0.60136002 -0.24311001
-0.046245 0.64051003 -0.26128
-
-0.42301498 -0.09387 0.43786999
-0.37626499 -0.10669 0.47582001
-0.40009499 -0.18596001 0.49257999
-
-0.47858501 0.02572 0.32499001
-0.43314499 -0.00056 0.38240002
-0.47968498 -0.06731 0.37938999
-
--0.36774502 0.40701 0.25933001
--0.36813499 0.44145 0.14507
--0.38813499 0.43208 0.28315001
-
-0.60397499 -0.40557999 0.27521
-0.57273499 -0.37573002 0.33617001
-0.59136501 -0.44555 0.29172001
-
-0.59330502 -0.54569 0.33654999
-0.63363499 -0.56191002 0.33492001
-0.64346497 -0.49037998 0.32360001
-
-0.263435 -0.55469002 0.54113998
-0.203395 -0.59640999 0.54062
-0.24317499 -0.62743 0.50932999
-
--0.31738501 0.43448002 0.11911
--0.34386501 0.40557999 0.15052
--0.34077499 0.36119999 0.14935
-
--0.17994499 -0.75432999 0.36115002
--0.17445499 -0.76107002 0.26183001
--0.129625 -0.75866997 0.17889999
-
-0.17356501 -0.39825001 0.58146
-0.25977501 -0.2282 0.57007
-0.223505 -0.23148001 0.58157001
-
-0.38686501 -0.42890999 0.48895
-0.38605499 -0.52320999 0.48705002
-0.427565 -0.38834 0.46021
-
-0.253305 -0.66041 0.46727001
-0.242435 -0.69941002 0.47040001
-0.253395 -0.73496002 0.46985001
-
-0.24317499 -0.62743 0.50932999
-0.335285 -0.62630001 0.44756001
-0.354795 -0.58098999 0.47644001
-
-0.40009499 -0.18596001 0.49257999
-0.41008499 -0.30582001 0.50618
-0.50891499 -0.266 0.42063
-
-0.163435 -0.53869999 0.56303001
-0.203395 -0.59640999 0.54062
-0.263435 -0.55469002 0.54113998
-
-0.47058498 -0.56601002 0.39771999
-0.52557499 -0.56825001 0.33627998
-0.51838501 -0.48213001 0.39742001
-
-0.64000504 -0.36174 0.16885
-0.63150501 -0.32306999 0.09721
-0.61706501 -0.15582 0.06717
-
--0.18282499 0.59498001 -0.13044
--0.126565 0.67811996 -0.13629
--0.083505 0.68447998 -0.17287001
-
-0.358755 -0.33319 0.53729
-0.41008499 -0.30582001 0.50618
-0.34578499 -0.27997 0.53634998
-
-0.63273499 -0.64609001 0.00875
-0.68647499 -0.58339001 -0.0017
-0.67858498 -0.64014999 0.05778
-
-0.32317501 -0.0705 0.47466
-0.327005 -0.16132 0.50963001
-0.352155 -0.22743 0.51053001
-
-0.55329498 -0.58823002 0.33521
-0.59330502 -0.54569 0.33654999
-0.57196499 -0.49865002 0.31608
-
-0.51838501 -0.48213001 0.39742001
-0.52557499 -0.56825001 0.33627998
-0.57196499 -0.49865002 0.31608
-
--0.31738501 0.43448002 0.11911
--0.354445 0.43800999 0.1358
--0.34386501 0.40557999 0.15052
-
--0.29133499 0.43453999 0.10392
--0.34077499 0.36119999 0.14935
--0.28335501 0.37535999 0.07935
-
-0.262635 -0.34882 0.57363998
-0.336675 -0.44263 0.52173
-0.358755 -0.33319 0.53729
-
-0.23304501 0.00794 0.42648998
-0.203305 0.06761 0.41046001
-0.143455 0.01272 0.43963001
-
--0.078115 -0.62351002 -0.25240999
-0.002175 -0.65117996 -0.26294001
--0.152975 -0.66613998 -0.27448999
-
-0.50891499 -0.266 0.42063
-0.54806499 -0.22674 0.37215
-0.486665 -0.19856001 0.44179001
-
-0.34578499 -0.27997 0.53634998
-0.352155 -0.22743 0.51053001
-0.33553501 -0.21408001 0.52173
-
-0.25977501 -0.2282 0.57007
-0.33553501 -0.21408001 0.52173
-0.276535 -0.21360001 0.55987
-
-0.57273499 -0.37573002 0.33617001
-0.53676498 -0.34728001 0.38973
-0.51838501 -0.48213001 0.39742001
-
--0.44495499 0.61160999 -0.60196999
--0.440755 0.59640999 -0.59333
--0.46016499 0.52960999 -0.57521999
-
--0.334715 -0.61401001 0.18212
--0.35919498 -0.65380997 0.20221001
--0.35820499 -0.59717999 0.29188
-
--0.36254501 -0.75091003 -0.10707
--0.420145 -0.75016998 -0.08755
--0.47012501 -0.68793999 -0.04621
-
-0.002175 -0.65117996 -0.26294001
--0.166175 -0.74779999 -0.29483
--0.152975 -0.66613998 -0.27448999
-
--0.20724501 -0.69445999 -0.26997999
--0.152975 -0.66613998 -0.27448999
--0.166175 -0.74779999 -0.29483
-
-0.62594501 -0.60432999 0.32353001
-0.57481499 -0.63938 0.32445999
-0.63936501 -0.64530998 0.26995001
-
-0.276035 -0.42984001 0.55702
-0.26304501 -0.48462002 0.55549999
-0.307425 -0.55289001 0.51352001
-
-0.62594501 -0.60432999 0.32353001
-0.583465 -0.60224998 0.34046001
-0.57481499 -0.63938 0.32445999
-
-0.329505 -0.71892998 0.45332001
-0.390485 -0.69848 0.41848
-0.367225 -0.65199997 0.44060001
-
--0.550975 0.20959 -0.06745
--0.57065498 0.15109 -0.06724
--0.60123501 0.19448 -0.05578
-
-0.595695 -0.19973 -0.04273
-0.616395 -0.19808001 0.01714
-0.59800499 -0.28384001 -0.03253
-
-0.43657501 -0.53799 0.43675999
-0.354795 -0.58098999 0.47644001
-0.335285 -0.62630001 0.44756001
-
-0.67858498 -0.64014999 0.05778
-0.67806503 -0.65469002 0.13749
-0.59101501 -0.70407997 0.1113
-
--0.44606499 -0.76600998 -0.07796
--0.420145 -0.75016998 -0.08755
--0.43560501 -0.76556 -0.07625
-
-0.262635 -0.34882 0.57363998
-0.358755 -0.33319 0.53729
-0.34578499 -0.27997 0.53634998
-
-0.50891499 -0.266 0.42063
-0.53676498 -0.34728001 0.38973
-0.58010502 -0.29504 0.32986
-
--0.165655 0.49323002 0.03954
--0.009545 0.50974998 -0.05037
-0.051805 0.5825 -0.15508
-
--0.44842499 -0.42519001 -0.09399
--0.40871498 -0.39304001 -0.14109
--0.388325 -0.45629002 -0.06645
-
--0.049325 0.62575001 -0.12564
-0.069325 0.57973999 -0.17223
--0.020145 0.67031998 -0.15351
-
--0.192925 0.12158 0.28837999
--0.208305 0.15802 0.22305
--0.28057501 0.13838 0.25653999
-
--0.34077499 0.36119999 0.14935
--0.32425499 0.33021 0.07945
--0.28335501 0.37535999 0.07935
-
--0.081355 0.49502998 0.00394
--0.165655 0.49323002 0.03954
--0.29133499 0.43453999 0.10392
-
-0.465905 -0.63949001 0.35477001
-0.390485 -0.69848 0.41848
-0.43405499 -0.71273003 0.30693001
-
-0.49573502 -0.1589 0.41981998
-0.55259499 -0.04642 0.27702
-0.47968498 -0.06731 0.37938999
-
--0.31738501 0.43448002 0.11911
--0.29133499 0.43453999 0.10392
--0.22710501 0.49293999 0.03888
-
-0.43314499 -0.00056 0.38240002
-0.37462502 0.09203 0.35064999
-0.32342499 -0.00259 0.41494999
-
--0.075495 0.73363998 -0.09516
--0.096095 0.71514 -0.06997
--0.036455 0.74396004 -0.12342
-
-0.44266499 -0.61000999 0.39195
-0.47058498 -0.56601002 0.39771999
-0.43657501 -0.53799 0.43675999
-
-0.38686501 -0.42890999 0.48895
-0.336675 -0.44263 0.52173
-0.38605499 -0.52320999 0.48705002
-
-0.57144501 -0.70275002 0.21681
-0.63408501 -0.68242996 0.15461
-0.68346497 -0.63983002 0.21789
-
-0.093335 -0.54011002 0.55001999
-0.093385 -0.48191002 0.57638
-0.031045 -0.48976002 0.55334
-
--0.34806499 -0.62027 0.40410999
--0.39304501 -0.61914001 0.39880001
--0.406185 -0.64178001 0.44240002
-
--0.59962502 0.11646 0.54145
--0.54655499 0.08835 0.54924999
--0.59655499 0.21528 0.54181
-
-0.077465 0.65564003 -0.25237
-0.036155 0.71919998 -0.22396
-0.069325 0.57973999 -0.17223
-
--0.522085 0.42964001 -0.46967999
--0.51262501 0.42702 -0.46618999
--0.52343498 0.42028999 -0.45174999
-
-0.40009499 -0.18596001 0.49257999
-0.34578499 -0.27997 0.53634998
-0.41008499 -0.30582001 0.50618
-
-0.276035 -0.42984001 0.55702
-0.262635 -0.34882 0.57363998
-0.17356501 -0.39825001 0.58146
-
--0.71519501 -0.22723 0.07012
--0.72489502 -0.13198 0.11954
--0.68935501 -0.17514999 0.00979
-
--0.141445 -0.71961998 0.33926998
--0.097395 -0.72411003 0.17242001
-0.034255 -0.70801003 0.40098999
-
--0.47262501 0.31153 -0.0592
--0.52155499 0.29777 -0.06353
--0.49023499 0.31427999 -0.06865
-
--0.455145 0.56103001 -0.45051998
--0.44795502 0.48275002 -0.23052
--0.44885502 0.48257999 -0.32057999
-
--0.58654499 0.0687 0.53747002
--0.627995 0.04726 0.49209
--0.60431499 0.04708 0.51540001
-
--0.74453499 0.0457 0.23389999
--0.77178497 0.08616 0.18837
--0.75351501 0.04522 0.14867
-
--0.76138496 0.14034 0.29812
--0.773265 0.14032 0.25822001
--0.76094498 0.07262 0.24841
-
--0.76094498 0.07262 0.24841
--0.773265 0.14032 0.25822001
--0.77178497 0.08616 0.18837
-
--0.70774498 0.00346 0.16879
--0.69119499 -0.03813 0.21893999
--0.67764503 0.00206 0.26896999
-
--0.238545 -0.76138 0.28424
--0.17994499 -0.75432999 0.36115002
--0.257085 -0.75538002 0.41583
-
--0.46994499 -0.66989998 0.39380001
--0.47614498 -0.66900002 0.34229
--0.49865501 -0.72585999 0.36729
-
-0.247805 -0.73291 -0.06195
-0.222605 -0.71620003 -0.04485
-0.231395 -0.71984001 -0.09604
-
--0.67350502 -0.31801001 0.21348
--0.72665497 -0.19900999 0.19982
--0.70689499 -0.24051001 0.17004999
-
--0.233095 -0.62811001 -0.12729
--0.24751499 -0.60999001 -0.0966
--0.16779499 -0.59556999 -0.09223
-
--0.71903503 -0.1047 0.21924999
--0.69850502 -0.02457 0.14891
--0.72112503 -0.09155 0.13937
-
--0.71519501 -0.22723 0.07012
--0.69344498 -0.26929001 0.08014
--0.70689499 -0.24051001 0.17004999
-
-0.44724499 -0.56456001 -0.18232
-0.50467499 -0.54449001 -0.10164
-0.45115501 -0.60699001 -0.15207
-
--0.77015503 0.16722 0.17794001
--0.722985 0.29028 0.13737
--0.73406502 0.22117001 0.0777
-
-0.108785 -0.70753998 0.38001999
-0.071735 -0.70736 0.39019001
-0.034255 -0.70801003 0.40098999
-
--0.212425 0.4907 -0.10495
--0.073375 0.61046001 -0.18223
--0.048255 0.52195999 -0.13641
-
-0.54445499 -0.48500999 -0.09213
-0.44975498 -0.50793999 -0.1924
-0.554575 -0.42790001 -0.10218
-
--0.45953499 0.45066002 -0.34074001
--0.45510502 0.35847 -0.05053
--0.47512501 0.32431999 -0.07113
-
--0.75427498 0.12566 0.09816
--0.77015503 0.16722 0.17794001
--0.73406502 0.22117001 0.0777
-
-0.72791496 -0.59351002 0.06742
-0.74088501 -0.59263 0.15724
-0.67806503 -0.65469002 0.13749
-
--0.65483498 0.44209999 0.23309999
--0.66683502 0.43922001 0.22899
--0.72732498 0.41339001 0.20645
-
--0.47864498 -0.74934998 0.25862
--0.45761501 -0.71341003 0.26252001
--0.45211498 -0.74226997 0.21997999
-
-0.069325 0.57973999 -0.17223
-0.080755 0.61445999 -0.2476
-0.077465 0.65564003 -0.25237
-
--0.67873497 0.42423 0.10789
--0.65177498 0.41154999 0.04812
--0.72976501 0.37284 0.12714
-
--0.65177498 0.41154999 0.04812
--0.65177498 0.38554001 0.03709
--0.72976501 0.37284 0.12714
-
-0.72394501 -0.43584999 0.02906
-0.72512497 -0.40280998 0.05526
-0.756455 -0.42445 0.07686
-
--0.33072498 -0.58639999 0.18187
--0.334715 -0.61401001 0.18212
--0.35820499 -0.59717999 0.29188
-
-0.051805 0.5825 -0.15508
-0.046465 0.53513 -0.12086
-0.069325 0.57973999 -0.17223
-
--0.59834499 0.43923 0.01644
--0.579935 0.46213001 -0.01038
--0.61525501 0.41305 0.00652
-
--0.158205 -0.50859001 -0.11002
--0.178085 -0.52410999 -0.09604
--0.238365 -0.47976002 -0.11273
-
--0.21439501 -0.74724998 0.25917999
--0.19824499 -0.74849998 0.24569
--0.17445499 -0.76107002 0.26183001
-
--0.247845 0.62541 -0.03466
--0.29095501 0.58248001 -0.04404
--0.40747501 0.47915001 0.0356
-
--0.44820499 0.36980999 -0.02461
--0.47220501 0.42382 -0.00262
--0.44782501 0.38021 -0.01581
-
--0.37405499 -0.52716 0.21347
--0.37755501 -0.52604 0.2115
--0.360765 -0.53513 0.20674
-
--0.52155499 0.29777 -0.06353
--0.54577499 0.32955002 -0.08891
--0.49023499 0.31427999 -0.06865
-
--0.329715 0.31518 0.05937
--0.32425499 0.33021 0.07945
--0.30900499 0.25450001 0.12933
-
--0.73949501 0.19546 0.40769001
--0.76541496 0.19517 0.23780001
--0.76138496 0.14034 0.29812
-
--0.75975502 0.14085 0.40800999
--0.76138496 0.14034 0.29812
--0.76316498 0.10037 0.37827
-
--0.069995 -0.13285 -0.23166
--0.040395 -0.02881 -0.20667999
-0.074325 -0.09863 -0.22704
-
--0.462365 -0.76483002 -0.06405
--0.47280499 -0.76528 -0.06571
--0.47702499 -0.74514 -0.06318
-
--0.77015503 0.16722 0.17794001
--0.76541496 0.19517 0.23780001
--0.722985 0.29028 0.13737
-
-0.47530499 -0.39273998 -0.18283001
-0.44975498 -0.50793999 -0.1924
-0.458255 -0.43664001 -0.18388
-
--0.139575 -0.71986 0.03333
--0.204055 -0.71999001 -0.05273
--0.098815 -0.71488998 -0.14756
-
-0.56943501 -0.51193001 -0.02993
-0.54107498 -0.55365002 -0.04656
-0.54445499 -0.48500999 -0.09213
-
-0.372915 -0.65777 -0.19226999
-0.382645 -0.65669998 -0.17177999
-0.39260502 -0.67114998 -0.11193
-
-0.756455 -0.42445 0.07686
-0.757565 -0.47983002 0.05688
-0.73838501 -0.45884998 0.0331
-
--0.579935 0.46213001 -0.01038
--0.55648499 0.57926998 -0.21315001
--0.58244499 0.64759003 -0.39550999
-
--0.75503502 0.05844 0.12856
--0.75427498 0.12566 0.09816
--0.73905502 0.04444 0.0987
-
-0.56943501 -0.51193001 -0.02993
-0.554575 -0.42790001 -0.10218
-0.611035 -0.42883999 0.02128
-
--0.67290497 -0.32478001 0.06036
--0.63462502 -0.37513 0.05758
--0.67019501 -0.33046001 0.17235001
-
--0.57005501 0.04798 -0.05057
--0.67421501 -0.09452 -0.01072
--0.66189499 0.00042 0.02855
-
-0.54445499 -0.48500999 -0.09213
-0.54107498 -0.55365002 -0.04656
-0.50467499 -0.54449001 -0.10164
-
-0.39172501 -0.75321999 0.22577
-0.34790501 -0.74143997 0.42344002
-0.268925 -0.75015999 0.45092999
-
-0.30606501 -0.05008 -0.17846001
-0.259195 0.02269 -0.176
-0.359175 -0.0197 -0.15061
-
--0.75427498 0.12566 0.09816
--0.75503502 0.05844 0.12856
--0.77178497 0.08616 0.18837
-
--0.33072498 -0.58639999 0.18187
--0.33488499 -0.55792 0.17202
--0.386665 -0.56747002 0.10225
-
-0.329505 -0.71892998 0.45332001
-0.367225 -0.65199997 0.44060001
-0.308475 -0.66796997 0.46055
-
-0.004935 0.49839001 -0.08707
--0.027095 0.51598 -0.13203
-0.060495 0.54880001 -0.17709
-
-0.44320499 -0.65613998 -0.05025
-0.522575 -0.68685997 -0.0156
-0.40176498 -0.71222 -0.03167
-
-0.51241501 -0.64007004 -0.04479
-0.44320499 -0.65613998 -0.05025
-0.50317501 -0.58196999 -0.06143
-
-0.008635 0.76769997 -0.20617001
--0.006815 0.77167 -0.18312
-0.036155 0.71919998 -0.22396
-
--0.573535 -0.42264999 0.23674
--0.57746498 -0.38132 0.32298
--0.63988499 -0.38061001 0.17080999
-
-0.329505 -0.71892998 0.45332001
-0.34790501 -0.74143997 0.42344002
-0.390485 -0.69848 0.41848
-
-0.59800499 -0.28384001 -0.03253
-0.611035 -0.42883999 0.02128
-0.554575 -0.42790001 -0.10218
-
--0.73905502 0.04444 0.0987
--0.68397499 0.00246 0.06858
--0.70774498 0.00346 0.16879
-
--0.73406502 0.22117001 0.0777
--0.722985 0.29028 0.13737
--0.685625 0.31711 0.06703
-
--0.53066502 0.00663 -0.09101
--0.47079498 0.02284 -0.11794
--0.48044498 -0.07672 -0.15554
-
--0.69932503 0.13755 -0.00205
--0.75427498 0.12566 0.09816
--0.73406502 0.22117001 0.0777
-
-0.080755 0.61445999 -0.2476
-0.073585 0.64028999 -0.27017
-0.077465 0.65564003 -0.25237
-
-0.066055 0.59167999 -0.23388
-0.075455 0.60136002 -0.24311001
-0.075975 0.58987 -0.22885
-
--0.502845 -0.67873001 0.11659
--0.38455502 -0.62816002 0.13858
--0.50359501 -0.65364998 0.07231
-
--0.72489502 -0.13198 0.11954
--0.70828499 -0.11964 0.0597
--0.68935501 -0.17514999 0.00979
-
-0.56943501 -0.51193001 -0.02993
-0.54445499 -0.48500999 -0.09213
-0.554575 -0.42790001 -0.10218
-
--0.515135 0.41865002 -0.44709
--0.49363499 0.44341 -0.49014
--0.51723499 0.35522999 -0.21364
-
--0.49023499 0.31427999 -0.06865
--0.54577499 0.32955002 -0.08891
--0.54886501 0.33823002 -0.12392
-
-0.59800499 -0.28384001 -0.03253
-0.554575 -0.42790001 -0.10218
-0.47530499 -0.39273998 -0.18283001
-
--0.47018501 0.48946999 -0.51748001
--0.455145 0.56103001 -0.45051998
--0.44885502 0.48257999 -0.32057999
-
-0.372915 -0.65777 -0.19226999
-0.39260502 -0.67114998 -0.11193
-0.35073502 -0.73208 -0.14142
-
-0.54107498 -0.55365002 -0.04656
-0.50317501 -0.58196999 -0.06143
-0.50467499 -0.54449001 -0.10164
-
--0.77178497 0.08616 0.18837
--0.773265 0.14032 0.25822001
--0.77828499 0.14011 0.20802999
-
-0.44975498 -0.50793999 -0.1924
-0.47530499 -0.39273998 -0.18283001
-0.554575 -0.42790001 -0.10218
-
--0.70818497 0.41217999 0.12753
--0.72976501 0.37284 0.12714
--0.74042503 0.40042999 0.17667999
-
--0.63988499 -0.38061001 0.17080999
--0.67019501 -0.33046001 0.17235001
--0.63462502 -0.37513 0.05758
-
--0.722985 0.29028 0.13737
--0.74736504 0.31806 0.17700001
--0.69845497 0.34506001 0.09724
-
-0.74039497 -0.56462002 0.06716
-0.77457497 -0.49212002 0.10691
-0.74088501 -0.59263 0.15724
-
--0.20123501 -0.75469002 -0.29017
--0.23188499 -0.76166 -0.28009001
--0.25884501 -0.74322998 -0.26056
-
--0.16091499 -0.46264999 -0.1489
--0.158205 -0.50859001 -0.11002
--0.19886499 -0.37626999 -0.16464001
-
-0.40481499 -0.73542999 0.28509001
-0.473535 -0.68335999 0.30688
-0.43405499 -0.71273003 0.30693001
-
-0.061495 0.71106003 -0.27132
-0.008635 0.76769997 -0.20617001
-0.036155 0.71919998 -0.22396
-
--0.67165497 0.20761999 -0.01075
--0.67093498 0.16365 -0.02486
--0.69932503 0.13755 -0.00205
-
--0.70828499 -0.11964 0.0597
--0.72489502 -0.13198 0.11954
--0.72112503 -0.09155 0.13937
-
--0.531875 0.43505001 -0.47442001
--0.49343498 0.53766998 -0.56959999
--0.49435501 0.49361 -0.54973999
-
--0.67873497 0.42423 0.10789
--0.72976501 0.37284 0.12714
--0.70818497 0.41217999 0.12753
-
--0.19886499 -0.37626999 -0.16464001
--0.158205 -0.50859001 -0.11002
--0.238365 -0.47976002 -0.11273
-
-0.32443501 -0.74949997 -0.15917
-0.35073502 -0.73208 -0.14142
-0.369995 -0.75161003 -0.02044
-
-0.40176498 -0.71222 -0.03167
-0.39260502 -0.67114998 -0.11193
-0.44320499 -0.65613998 -0.05025
-
--0.41561501 -0.69004997 0.22243999
--0.39039501 -0.65042 0.25218
--0.35919498 -0.65380997 0.20221001
-
-0.55953499 -0.19656 -0.10231
-0.52969501 -0.24299 -0.15367
-0.53496498 -0.20222 -0.13642
-
-0.44975498 -0.50793999 -0.1924
-0.44724499 -0.56456001 -0.18232
-0.42197498 -0.58331001 -0.20099001
-
--0.42884499 -0.63210999 0.34209
--0.47553501 -0.68308998 0.30209
--0.45441502 -0.64302002 0.36220001
-
--0.178825 -0.39007 -0.16848
--0.156355 -0.32272999 -0.27996
--0.107915 -0.53838001 -0.23878
-
-0.141325 -0.71446999 0.04894
--0.113155 -0.72134003 0.07626
--0.031635 -0.71653999 -0.15134
-
--0.23188499 -0.76166 -0.28009001
--0.249135 -0.76183998 -0.26459
--0.25884501 -0.74322998 -0.26056
-
--0.34072498 0.34067001 0.0194
--0.352155 0.32740002 0.01621
--0.312335 0.41512001 -0.03359
-
-0.72791496 -0.59351002 0.06742
-0.74039497 -0.56462002 0.06716
-0.74088501 -0.59263 0.15724
-
--0.43119499 -0.63069 0.39651001
--0.39304501 -0.61914001 0.39880001
--0.42884499 -0.63210999 0.34209
-
--0.69344498 -0.26929001 0.08014
--0.71519501 -0.22723 0.07012
--0.63365501 -0.34187 -0.01984
-
-0.40176498 -0.71222 -0.03167
-0.38144501 -0.72870003 -0.01149
-0.369995 -0.75161003 -0.02044
-
-0.061495 0.71106003 -0.27132
-0.077465 0.65564003 -0.25237
-0.068505 0.67084 -0.27976999
-
--0.336045 0.18141001 0.33853001
--0.308445 0.09557 0.30705999
--0.28057501 0.13838 0.25653999
-
-0.141225 -0.72126999 0.18233999
-0.145855 -0.70772003 0.36983002
-0.034255 -0.70801003 0.40098999
-
-0.44975498 -0.50793999 -0.1924
-0.50467499 -0.54449001 -0.10164
-0.44724499 -0.56456001 -0.18232
-
--0.44219501 0.62398998 -0.59071999
--0.46279499 0.65877998 -0.53924999
--0.455145 0.56103001 -0.45051998
-
-0.60656502 -0.14218 0.20698999
-0.61038502 -0.18419001 0.23695999
-0.58518501 -0.07291 0.16698
-
--0.089315 -0.30382 -0.35894001
--0.049555 -0.31667 -0.37383999
--0.049465 -0.37333 -0.3702
-
--0.152975 -0.66613998 -0.27448999
--0.117175 -0.61290001 -0.22316
--0.078115 -0.62351002 -0.25240999
-
--0.67093498 0.16365 -0.02486
--0.67165497 0.20761999 -0.01075
--0.60123501 0.19448 -0.05578
-
--0.57746498 -0.38132 0.32298
--0.63135502 -0.33622002 0.29066999
--0.63988499 -0.38061001 0.17080999
-
--0.72375504 -0.14514 0.19955999
--0.72112503 -0.09155 0.13937
--0.72489502 -0.13198 0.11954
-
-0.269445 -0.75794998 -0.18476999
-0.302465 -0.72740997 -0.204
-0.32443501 -0.74949997 -0.15917
-
--0.440755 0.59640999 -0.59333
--0.44141499 0.60801998 -0.58164001
--0.44630501 0.55679001 -0.57491001
-
-0.60397499 -0.40557999 0.27521
-0.58010502 -0.29504 0.32986
-0.57273499 -0.37573002 0.33617001
-
-0.61038502 -0.18419001 0.23695999
-0.60656502 -0.14218 0.20698999
-0.56959499 -0.12199 0.29812
-
-0.55259499 -0.04642 0.27702
-0.56959499 -0.12199 0.29812
-0.60656502 -0.14218 0.20698999
-
-0.55259499 -0.04642 0.27702
-0.60656502 -0.14218 0.20698999
-0.58518501 -0.07291 0.16698
-
--0.165655 0.49323002 0.03954
--0.081355 0.49502998 0.00394
--0.009545 0.50974998 -0.05037
-
-0.075455 0.60136002 -0.24311001
-0.066055 0.59167999 -0.23388
-0.046245 0.64051003 -0.26128
-
--0.44795502 0.48275002 -0.23052
--0.462285 0.43570999 -0.09058
--0.45510502 0.35847 -0.05053
-
--0.36774502 0.40701 0.25933001
--0.34386501 0.40557999 0.15052
--0.36813499 0.44145 0.14507
-
--0.71858498 -0.18570999 0.23955999
--0.72375504 -0.14514 0.19955999
--0.72665497 -0.19900999 0.19982
-
--0.39515499 0.30839001 0.32299999
--0.336045 0.18141001 0.33853001
--0.318915 0.22754999 0.2701
-
-0.54445499 -0.48500999 -0.09213
-0.50467499 -0.54449001 -0.10164
-0.44975498 -0.50793999 -0.1924
-
--0.32425499 0.33021 0.07945
--0.329715 0.31518 0.05937
--0.31918501 0.34056 0.04058
-
-0.61429501 -0.26823 0.25707001
-0.61038502 -0.18419001 0.23695999
-0.56959499 -0.12199 0.29812
-
--0.199305 -0.2299 -0.22021999
--0.105115 -0.16202 -0.24193001
--0.153045 -0.23818001 -0.25016001
-
-0.70681503 -0.56171001 0.28268
-0.62594501 -0.60432999 0.32353001
-0.63936501 -0.64530998 0.26995001
-
-0.72546501 -0.5941 0.22735001
-0.74088501 -0.59263 0.15724
-0.76139503 -0.53476002 0.19711
-
-0.70681503 -0.56171001 0.28268
-0.72546501 -0.5941 0.22735001
-0.76070503 -0.52106998 0.2173
-
-0.76070503 -0.52106998 0.2173
-0.76139503 -0.53476002 0.19711
-0.77713501 -0.47799 0.15698
-
--0.52343498 0.42028999 -0.45174999
--0.51262501 0.42702 -0.46618999
--0.515135 0.41865002 -0.44709
-
--0.112925 0.44946999 -0.01904
--0.28335501 0.37535999 0.07935
--0.259715 0.37625999 0.05013
-
--0.34077499 0.36119999 0.14935
--0.30900499 0.25450001 0.12933
--0.32425499 0.33021 0.07945
-
-0.587925 -0.08729 0.02727
-0.61706501 -0.15582 0.06717
-0.57723499 -0.16372999 -0.05665
-
--0.105115 -0.16202 -0.24193001
--0.129445 -0.21128 -0.28048
--0.153045 -0.23818001 -0.25016001
-
-0.74180496 -0.46634998 0.26339001
-0.70681503 -0.56171001 0.28268
-0.76070503 -0.52106998 0.2173
-
-0.51815498 0.03883 0.06995
-0.554645 -0.00877 0.1262
-0.587925 -0.08729 0.02727
-
-0.61706501 -0.15582 0.06717
-0.595695 -0.19973 -0.04273
-0.57723499 -0.16372999 -0.05665
-
-0.70681503 -0.56171001 0.28268
-0.63363499 -0.56191002 0.33492001
-0.62594501 -0.60432999 0.32353001
-
-0.74180496 -0.46634998 0.26339001
-0.68953499 -0.50616001 0.3109
-0.70681503 -0.56171001 0.28268
-
--0.45953499 0.45066002 -0.34074001
--0.49363499 0.44341 -0.49014
--0.44885502 0.48257999 -0.32057999
-
-0.77457497 -0.49212002 0.10691
-0.77608498 -0.45037998 0.12685
-0.77713501 -0.47799 0.15698
-
-0.63408501 -0.68242996 0.15461
-0.67806503 -0.65469002 0.13749
-0.68346497 -0.63983002 0.21789
-
-0.74180496 -0.46634998 0.26339001
-0.70712502 -0.44008999 0.28386
-0.68953499 -0.50616001 0.3109
-
--0.35530499 0.32993999 0.20927
--0.34358501 0.26857 0.25934
--0.318915 0.22754999 0.2701
-
-0.76210503 -0.40971001 0.18714001
-0.74194504 -0.41438999 0.23629999
-0.76550499 -0.45125 0.21715
-
-0.76139503 -0.53476002 0.19711
-0.77457497 -0.49212002 0.10691
-0.77713501 -0.47799 0.15698
-
-0.76550499 -0.45125 0.21715
-0.76070503 -0.52106998 0.2173
-0.77713501 -0.47799 0.15698
-
--0.31738501 0.43448002 0.11911
--0.22710501 0.49293999 0.03888
--0.049325 0.62575001 -0.12564
-
-0.61038502 -0.18419001 0.23695999
-0.64000504 -0.36174 0.16885
-0.61706501 -0.15582 0.06717
-
-0.61038502 -0.18419001 0.23695999
-0.61429501 -0.26823 0.25707001
-0.64000504 -0.36174 0.16885
-
-0.372915 -0.65777 -0.19226999
-0.35073502 -0.73208 -0.14142
-0.32443501 -0.74949997 -0.15917
-
--0.019855 -0.37563999 0.55806
-0.013465 -0.32881001 0.57973
--0.042595 -0.29021999 0.57817001
-
--0.19960501 -0.25952999 -0.2083
--0.199305 -0.2299 -0.22021999
--0.167955 -0.26533001 -0.23986
-
--0.34386501 0.40557999 0.15052
--0.35530499 0.32993999 0.20927
--0.34077499 0.36119999 0.14935
-
--0.54955502 0.46242001 0.21086
--0.50165501 0.46126999 0.24231001
--0.45608501 0.45756001 0.24393999
-
--0.75427498 0.12566 0.09816
--0.77178497 0.08616 0.18837
--0.77015503 0.16722 0.17794001
-
--0.69841499 -0.28159 0.17025999
--0.69344498 -0.26929001 0.08014
--0.67290497 -0.32478001 0.06036
-
--0.457075 0.67668999 -0.58800999
--0.48884499 0.70297997 -0.56327
--0.46279499 0.65877998 -0.53924999
-
--0.49433498 0.69546997 -0.58514
--0.47459499 0.69324997 -0.58602001
--0.457075 0.67668999 -0.58800999
-
--0.46279499 0.65877998 -0.53924999
--0.44219501 0.62398998 -0.59071999
--0.457075 0.67668999 -0.58800999
-
-0.77608498 -0.45037998 0.12685
-0.76210503 -0.40971001 0.18714001
-0.77713501 -0.47799 0.15698
-
-0.76210503 -0.40971001 0.18714001
-0.72683502 -0.37872002 0.20152
-0.74194504 -0.41438999 0.23629999
-
-0.74180496 -0.46634998 0.26339001
-0.76550499 -0.45125 0.21715
-0.74194504 -0.41438999 0.23629999
-
-0.77608498 -0.45037998 0.12685
-0.77457497 -0.49212002 0.10691
-0.756455 -0.42445 0.07686
-
-0.77608498 -0.45037998 0.12685
-0.761605 -0.39966999 0.14054
-0.76210503 -0.40971001 0.18714001
-
-0.756455 -0.42445 0.07686
-0.72512497 -0.40280998 0.05526
-0.74167503 -0.40138 0.07409
-
-0.761605 -0.39966999 0.14054
-0.74167503 -0.40138 0.07409
-0.72733498 -0.37303001 0.14242
-
-0.761605 -0.39966999 0.14054
-0.72683502 -0.37872002 0.20152
-0.76210503 -0.40971001 0.18714001
-
-0.72683502 -0.37872002 0.20152
-0.70692497 -0.40130001 0.25292999
-0.74194504 -0.41438999 0.23629999
-
-0.49892502 -0.66067001 0.30966
-0.544925 -0.67612 0.29681999
-0.57481499 -0.63938 0.32445999
-
--0.44795502 0.48275002 -0.23052
--0.46693501 0.51418999 -0.19490999
--0.462285 0.43570999 -0.09058
-
-0.025515 0.74473999 -0.25292999
--0.016475 0.76692001 -0.19555
-0.008635 0.76769997 -0.20617001
-
-0.761605 -0.39966999 0.14054
-0.72733498 -0.37303001 0.14242
-0.72683502 -0.37872002 0.20152
-
-0.67144501 -0.41029999 0.26914
-0.70712502 -0.44008999 0.28386
-0.70692497 -0.40130001 0.25292999
-
-0.72683502 -0.37872002 0.20152
-0.671035 -0.38804001 0.23941999
-0.70692497 -0.40130001 0.25292999
-
-0.72733498 -0.37303001 0.14242
-0.68963501 -0.36695999 0.18777
-0.72683502 -0.37872002 0.20152
-
-0.68963501 -0.36695999 0.18777
-0.64128502 -0.37016998 0.18415001
-0.671035 -0.38804001 0.23941999
-
-0.67144501 -0.41029999 0.26914
-0.70692497 -0.40130001 0.25292999
-0.671035 -0.38804001 0.23941999
-
-0.761605 -0.39966999 0.14054
-0.77608498 -0.45037998 0.12685
-0.756455 -0.42445 0.07686
-
-0.72733498 -0.37303001 0.14242
-0.70884499 -0.36710999 0.13567
-0.68963501 -0.36695999 0.18777
-
-0.62960499 -0.39731998 0.23868999
-0.60397499 -0.40557999 0.27521
-0.59136501 -0.44555 0.29172001
-
--0.559795 0.4541 0.06169
--0.579935 0.46213001 -0.01038
--0.59834499 0.43923 0.01644
-
-0.72683502 -0.37872002 0.20152
-0.68963501 -0.36695999 0.18777
-0.671035 -0.38804001 0.23941999
-
--0.53754501 0.46978001 -0.00341
--0.559795 0.4541 0.06169
--0.50223499 0.44608002 0.02426
-
-0.62960499 -0.39731998 0.23868999
-0.67144501 -0.41029999 0.26914
-0.671035 -0.38804001 0.23941999
-
-0.67144501 -0.41029999 0.26914
-0.59136501 -0.44555 0.29172001
-0.57196499 -0.49865002 0.31608
-
-0.62960499 -0.39731998 0.23868999
-0.59136501 -0.44555 0.29172001
-0.67144501 -0.41029999 0.26914
-
--0.61915501 0.44778999 0.11374
--0.559795 0.4541 0.06169
--0.59834499 0.43923 0.01644
-
-0.64128502 -0.37016998 0.18415001
-0.62960499 -0.39731998 0.23868999
-0.671035 -0.38804001 0.23941999
-
--0.28657499 0.21525999 0.16419001
--0.35530499 0.32993999 0.20927
--0.318915 0.22754999 0.2701
-
--0.42884499 -0.63210999 0.34209
--0.39304501 -0.61914001 0.39880001
--0.354585 -0.59728001 0.33195
-
-0.56959499 -0.12199 0.29812
-0.55290501 -0.18681999 0.36167999
-0.54806499 -0.22674 0.37215
-
--0.087935 0.12239 0.26698
-0.032965 0.15014 0.30976
-0.100405 0.1927 0.26025
-
--0.31738501 0.43448002 0.11911
--0.236595 0.58076 0.04404
--0.354445 0.43800999 0.1358
-
--0.69313499 0.39777 0.31554001
--0.62949501 0.42409 0.33152
--0.65483498 0.44209999 0.23309999
-
--0.74471497 0.23594 0.22754
--0.74114502 0.29077999 0.20722
--0.722985 0.29028 0.13737
-
-0.70884499 -0.36710999 0.13567
-0.64561501 -0.37198002 0.10372
-0.64000504 -0.36174 0.16885
-
-0.60397499 -0.40557999 0.27521
-0.62960499 -0.39731998 0.23868999
-0.64128502 -0.37016998 0.18415001
-
--0.72665497 -0.19900999 0.19982
--0.71519501 -0.22723 0.07012
--0.70689499 -0.24051001 0.17004999
-
--0.36813499 0.44145 0.14507
--0.34386501 0.40557999 0.15052
--0.354445 0.43800999 0.1358
-
--0.43739498 0.45532001 0.06203
--0.46518501 0.44868 0.07372
--0.54955502 0.46242001 0.21086
-
-0.76210503 -0.40971001 0.18714001
-0.76550499 -0.45125 0.21715
-0.77713501 -0.47799 0.15698
-
--0.138135 0.15368 0.18959999
--0.250515 0.18847 0.08946
--0.24738501 0.17902 0.16450001
-
--0.76094498 0.07262 0.24841
--0.74453499 0.0457 0.23389999
--0.70928497 0.03538 0.30452
-
-0.64561501 -0.37198002 0.10372
-0.63150501 -0.32306999 0.09721
-0.64000504 -0.36174 0.16885
-
--0.72665497 -0.19900999 0.19982
--0.72489502 -0.13198 0.11954
--0.71519501 -0.22723 0.07012
-
--0.096095 0.71514 -0.06997
--0.30827499 0.55255001 0.0553
--0.236595 0.58076 0.04404
-
--0.53754501 0.46978001 -0.00341
--0.50223499 0.44608002 0.02426
--0.497005 0.44953999 -0.01774
-
--0.404995 -0.67698997 0.19254
--0.45211498 -0.74226997 0.21997999
--0.41561501 -0.69004997 0.22243999
-
--0.66683502 0.43922001 0.22899
--0.61915501 0.44778999 0.11374
--0.67873497 0.42423 0.10789
-
--0.45004501 0.41863998 0.36409
--0.49872501 0.43931999 0.33116001
--0.56956501 0.37901001 0.42835999
-
--0.567505 0.44047001 0.32217999
--0.50165501 0.46126999 0.24231001
--0.54955502 0.46242001 0.21086
-
--0.208305 0.15802 0.22305
--0.138135 0.15368 0.18959999
--0.24738501 0.17902 0.16450001
-
--0.44795502 0.48275002 -0.23052
--0.455145 0.56103001 -0.45051998
--0.478615 0.61969002 -0.45830002
-
--0.50442501 0.51681 -0.12221
--0.48107498 0.54027 -0.21445999
--0.541525 0.60362999 -0.27988001
-
--0.74582497 0.34598999 0.25691
--0.74042503 0.40042999 0.17667999
--0.74736504 0.31806 0.17700001
-
--0.301705 0.19448999 0.02741
--0.250515 0.18847 0.08946
--0.221775 0.16362 -0.02269
-
--0.28657499 0.21525999 0.16419001
--0.30900499 0.25450001 0.12933
--0.35530499 0.32993999 0.20927
-
--0.36774502 0.40701 0.25933001
--0.35530499 0.32993999 0.20927
--0.34386501 0.40557999 0.15052
-
--0.084295 0.46479 -0.01832
--0.081355 0.49502998 0.00394
--0.112925 0.44946999 -0.01904
-
--0.250515 0.18847 0.08946
--0.106075 0.15324 0.06919
--0.221775 0.16362 -0.02269
-
--0.62949501 0.42409 0.33152
--0.567505 0.44047001 0.32217999
--0.65483498 0.44209999 0.23309999
-
--0.025365 0.17524 0.11324
-0.014575 0.18521999 0.18579
-0.147305 0.21093 0.16179001
-
--0.58244499 0.64759003 -0.39550999
--0.55654499 0.64793999 -0.39986
--0.543125 0.70637001 -0.51022999
-
--0.35530499 0.32993999 0.20927
--0.36774502 0.40701 0.25933001
--0.38591499 0.35167 0.31952
-
--0.352155 0.32740002 0.01621
--0.401735 0.37047001 -0.00194
--0.312335 0.41512001 -0.03359
-
--0.44827499 0.33785 0.38784
--0.43137501 0.38099998 0.37743
--0.52690498 0.36866001 0.4325
-
--0.27186501 0.17989 0.1998
--0.28057501 0.13838 0.25653999
--0.24738501 0.17902 0.16450001
-
--0.085275 0.1548 0.17931
--0.025365 0.17524 0.11324
--0.106075 0.15324 0.06919
-
--0.497005 0.44953999 -0.01774
--0.50223499 0.44608002 0.02426
--0.47220501 0.42382 -0.00262
-
--0.61915501 0.44778999 0.11374
--0.59834499 0.43923 0.01644
--0.65177498 0.41154999 0.04812
-
--0.48884499 0.70297997 -0.56327
--0.51963501 0.70806 -0.56443001
--0.543125 0.70637001 -0.51022999
-
--0.295275 0.20636 0.05543
--0.28657499 0.21525999 0.16419001
--0.250515 0.18847 0.08946
-
--0.44820499 0.36980999 -0.02461
--0.462285 0.43570999 -0.09058
--0.47220501 0.42382 -0.00262
-
--0.36813499 0.44145 0.14507
--0.30827499 0.55255001 0.0553
--0.35580502 0.52299 0.06101
-
--0.478615 0.61969002 -0.45830002
--0.541525 0.60362999 -0.27988001
--0.48107498 0.54027 -0.21445999
-
--0.46693501 0.51418999 -0.19490999
--0.50442501 0.51681 -0.12221
--0.462285 0.43570999 -0.09058
-
--0.478615 0.61969002 -0.45830002
--0.455145 0.56103001 -0.45051998
--0.46279499 0.65877998 -0.53924999
-
--0.386665 -0.56747002 0.10225
--0.369095 -0.54116001 0.13157
--0.41275501 -0.52455002 0.07158
-
--0.301705 0.19448999 0.02741
--0.295275 0.20636 0.05543
--0.250515 0.18847 0.08946
-
--0.50442501 0.51681 -0.12221
--0.53754501 0.46978001 -0.00341
--0.497005 0.44953999 -0.01774
-
--0.74114502 0.29077999 0.20722
--0.74471497 0.23594 0.22754
--0.72123497 0.26363001 0.29735001
-
--0.74736504 0.31806 0.17700001
--0.74114502 0.29077999 0.20722
--0.74582497 0.34598999 0.25691
-
--0.39786499 0.47005001 0.10535
--0.40865501 0.45254002 0.17395
--0.36813499 0.44145 0.14507
-
--0.69119499 -0.03813 0.21893999
--0.71903503 -0.1047 0.21924999
--0.70878502 -0.09154 0.23915001
-
--0.73905502 0.04444 0.0987
--0.70774498 0.00346 0.16879
--0.75351501 0.04522 0.14867
-
--0.121325 0.14207 0.02081
--0.138675 0.11073 -0.06666
--0.221775 0.16362 -0.02269
-
--0.74042503 0.40042999 0.17667999
--0.72732498 0.41339001 0.20645
--0.70818497 0.41217999 0.12753
-
--0.40865501 0.45254002 0.17395
--0.54955502 0.46242001 0.21086
--0.45608501 0.45756001 0.24393999
-
-0.060925 -0.75339996 0.44673
-0.134945 -0.75379997 0.42655998
-0.023935 -0.75346001 0.45659
-
-0.061495 0.71106003 -0.27132
-0.047165 0.73010002 -0.26747
-0.008635 0.76769997 -0.20617001
-
--0.47512501 0.32431999 -0.07113
--0.54886501 0.33823002 -0.12392
--0.51723499 0.35522999 -0.21364
-
--0.140345 -0.05789 -0.20672001
--0.105925 -0.01889 -0.19115
--0.040395 -0.02881 -0.20667999
-
--0.025365 0.17524 0.11324
--0.085275 0.1548 0.17931
-0.014575 0.18521999 0.18579
-
--0.192925 0.12158 0.28837999
--0.138135 0.15368 0.18959999
--0.208305 0.15802 0.22305
-
--0.329715 0.31518 0.05937
--0.34072498 0.34067001 0.0194
--0.31918501 0.34056 0.04058
-
-0.54476501 -0.0057 0.22294001
-0.470495 0.07129 0.2808
-0.55259499 -0.04642 0.27702
-
-0.49233501 0.07108 0.18927999
-0.54476501 -0.0057 0.22294001
-0.554645 -0.00877 0.1262
-
--0.085275 0.1548 0.17931
--0.106075 0.15324 0.06919
--0.138135 0.15368 0.18959999
-
--0.40865501 0.45254002 0.17395
--0.43739498 0.45532001 0.06203
--0.54955502 0.46242001 0.21086
-
-0.51815498 0.03883 0.06995
-0.48769501 0.07898 0.11616
-0.49233501 0.07108 0.18927999
-
-0.49233501 0.07108 0.18927999
-0.470495 0.07129 0.2808
-0.54476501 -0.0057 0.22294001
-
--0.121325 0.14207 0.02081
--0.025365 0.17524 0.11324
-0.078115 0.18864 0.02789
-
--0.46518501 0.44868 0.07372
--0.559795 0.4541 0.06169
--0.54955502 0.46242001 0.21086
-
--0.559795 0.4541 0.06169
--0.61915501 0.44778999 0.11374
--0.54955502 0.46242001 0.21086
-
--0.138135 0.15368 0.18959999
--0.106075 0.15324 0.06919
--0.250515 0.18847 0.08946
-
--0.50165501 0.46126999 0.24231001
--0.49872501 0.43931999 0.33116001
--0.45608501 0.45756001 0.24393999
-
--0.438055 -0.66690002 0.44669998
--0.43119499 -0.63069 0.39651001
--0.46994499 -0.66989998 0.39380001
-
-0.51815498 0.03883 0.06995
-0.49233501 0.07108 0.18927999
-0.554645 -0.00877 0.1262
-
-0.54476501 -0.0057 0.22294001
-0.58518501 -0.07291 0.16698
-0.554645 -0.00877 0.1262
-
--0.38813499 0.43208 0.28315001
--0.40865501 0.45254002 0.17395
--0.45608501 0.45756001 0.24393999
-
--0.087935 0.12239 0.26698
--0.085275 0.1548 0.17931
--0.138135 0.15368 0.18959999
-
--0.34746498 -0.54298 0.16158001
--0.33488499 -0.55792 0.17202
--0.34688499 -0.54231998 0.18309999
-
--0.28057501 0.13838 0.25653999
--0.208305 0.15802 0.22305
--0.24738501 0.17902 0.16450001
-
-0.047165 0.73010002 -0.26747
-0.061495 0.71106003 -0.27132
-0.059645 0.68377998 -0.28246
-
-0.554645 -0.00877 0.1262
-0.58518501 -0.07291 0.16698
-0.587925 -0.08729 0.02727
-
--0.50442501 0.51681 -0.12221
--0.46693501 0.51418999 -0.19490999
--0.48107498 0.54027 -0.21445999
-
--0.139575 -0.71986 0.03333
--0.152335 -0.71831001 0.01116
--0.204055 -0.71999001 -0.05273
-
-0.48769501 0.07898 0.11616
-0.41226501 0.13985 0.08791
-0.49233501 0.07108 0.18927999
-
--0.036455 0.74396004 -0.12342
-0.036155 0.71919998 -0.22396
--0.006815 0.77167 -0.18312
-
--0.58244499 0.64759003 -0.39550999
--0.543125 0.70637001 -0.51022999
--0.597435 0.68508003 -0.47937
-
--0.38813499 0.43208 0.28315001
--0.36813499 0.44145 0.14507
--0.40865501 0.45254002 0.17395
-
--0.45004501 0.41863998 0.36409
--0.40461498 0.42754002 0.32105999
--0.49872501 0.43931999 0.33116001
-
-0.37462502 0.09203 0.35064999
-0.43314499 -0.00056 0.38240002
-0.47858501 0.02572 0.32499001
-
-0.49725498 0.02933 -0.02307
-0.51815498 0.03883 0.06995
-0.587925 -0.08729 0.02727
-
-0.51815498 0.03883 0.06995
-0.45834499 0.08214 0.00486
-0.48769501 0.07898 0.11616
-
--0.336045 0.18141001 0.33853001
--0.28057501 0.13838 0.25653999
--0.318915 0.22754999 0.2701
-
--0.40461498 0.42754002 0.32105999
--0.43137501 0.38099998 0.37743
--0.38591499 0.35167 0.31952
-
-0.136995 -0.12943 0.54544998
-0.182565 -0.11096 0.51632
-0.079635 -0.11564 0.52494999
-
--0.499935 0.33810001 0.43618999
--0.44827499 0.33785 0.38784
--0.52690498 0.36866001 0.4325
-
--0.49872501 0.43931999 0.33116001
--0.50165501 0.46126999 0.24231001
--0.567505 0.44047001 0.32217999
-
-0.23345501 -0.11154 0.49640999
-0.182565 -0.11096 0.51632
-0.182745 -0.12148 0.53138
-
-0.182745 -0.12148 0.53138
-0.17338499 -0.16284 0.56652
-0.26328501 -0.13812 0.51595001
-
-0.70712502 -0.44008999 0.28386
-0.67144501 -0.41029999 0.26914
-0.64346497 -0.49037998 0.32360001
-
--0.19938499 -0.27365 -0.20799
--0.176745 -0.32091 -0.21965
--0.18914499 -0.31829 -0.17997
-
-0.430765 0.12101 0.23743
-0.362635 0.14925 0.26934
-0.368885 0.12605 0.31459999
-
-0.70884499 -0.36710999 0.13567
-0.64128502 -0.37016998 0.18415001
-0.68963501 -0.36695999 0.18777
-
-0.45834499 0.08214 0.00486
-0.41226501 0.13985 0.08791
-0.48769501 0.07898 0.11616
-
-0.60397499 -0.40557999 0.27521
-0.64128502 -0.37016998 0.18415001
-0.61429501 -0.26823 0.25707001
-
--0.72375504 -0.14514 0.19955999
--0.71903503 -0.1047 0.21924999
--0.72112503 -0.09155 0.13937
-
-0.17338499 -0.16284 0.56652
-0.182745 -0.12148 0.53138
-0.136995 -0.12943 0.54544998
-
-0.38503502 0.15941 0.19188999
-0.430765 0.12101 0.23743
-0.49233501 0.07108 0.18927999
-
-0.368885 0.12605 0.31459999
-0.37462502 0.09203 0.35064999
-0.470495 0.07129 0.2808
-
-0.368885 0.12605 0.31459999
-0.470495 0.07129 0.2808
-0.430765 0.12101 0.23743
-
--0.36813499 0.44145 0.14507
--0.354445 0.43800999 0.1358
--0.30827499 0.55255001 0.0553
-
--0.46693501 0.51418999 -0.19490999
--0.44795502 0.48275002 -0.23052
--0.48107498 0.54027 -0.21445999
-
-0.430765 0.12101 0.23743
-0.470495 0.07129 0.2808
-0.49233501 0.07108 0.18927999
-
--0.30900499 0.25450001 0.12933
--0.34077499 0.36119999 0.14935
--0.35530499 0.32993999 0.20927
-
--0.27186501 0.17989 0.1998
--0.24738501 0.17902 0.16450001
--0.250515 0.18847 0.08946
-
--0.56956501 0.37901001 0.42835999
--0.567505 0.44047001 0.32217999
--0.62949501 0.42409 0.33152
-
-0.41226501 0.13985 0.08791
-0.38503502 0.15941 0.19188999
-0.49233501 0.07108 0.18927999
-
--0.40461498 0.42754002 0.32105999
--0.38813499 0.43208 0.28315001
--0.45608501 0.45756001 0.24393999
-
-0.035725 -0.09047 0.45244999
-0.154285 -0.09136 0.45977001
-0.093525 -0.02874 0.45459
-
-0.37462502 0.09203 0.35064999
-0.47858501 0.02572 0.32499001
-0.470495 0.07129 0.2808
-
--0.67165497 0.20761999 -0.01075
--0.69932503 0.13755 -0.00205
--0.73406502 0.22117001 0.0777
-
-0.223505 -0.23148001 0.58157001
-0.053405 -0.17601 0.57659
-0.043465 -0.23129 0.58570999
-
-0.61706501 -0.15582 0.06717
-0.587925 -0.08729 0.02727
-0.58518501 -0.07291 0.16698
-
-0.362635 0.14925 0.26934
-0.430765 0.12101 0.23743
-0.38503502 0.15941 0.19188999
-
--0.106735 0.07859 0.32783001
--0.087935 0.12239 0.26698
--0.138135 0.15368 0.18959999
-
--0.48107498 0.54027 -0.21445999
--0.44795502 0.48275002 -0.23052
--0.478615 0.61969002 -0.45830002
-
-0.28172501 -0.75823997 -0.05062
-0.369995 -0.75161003 -0.02044
-0.37226501 -0.75335999 0.0004
-
-0.40085499 0.10826 -0.02869
-0.32314499 0.16155001 -0.00588
-0.368895 0.14748 0.00937
-
--0.51963501 0.70806 -0.56443001
--0.572925 0.70330002 -0.52133999
--0.543125 0.70637001 -0.51022999
-
--0.68001503 -0.24351 -0.00998
--0.68935501 -0.17514999 0.00979
--0.660215 -0.19101 -0.05073
-
-0.41226501 0.13985 0.08791
-0.45834499 0.08214 0.00486
-0.40085499 0.10826 -0.02869
-
-0.41226501 0.13985 0.08791
-0.40085499 0.10826 -0.02869
-0.368895 0.14748 0.00937
-
-0.267075 0.20905001 0.1627
-0.31116501 0.18573 0.23601
-0.38503502 0.15941 0.19188999
-
-0.29845501 0.12968 0.34632999
-0.368885 0.12605 0.31459999
-0.362635 0.14925 0.26934
-
--0.28657499 0.21525999 0.16419001
--0.27186501 0.17989 0.1998
--0.250515 0.18847 0.08946
-
--0.56052502 -0.45873001 0.12908
--0.53317501 -0.47806999 0.18746
--0.63988499 -0.38061001 0.17080999
-
--0.52155499 0.29777 -0.06353
--0.54156502 0.29757 -0.05975
--0.54577499 0.32955002 -0.08891
-
-0.41226501 0.13985 0.08791
-0.368895 0.14748 0.00937
-0.30644501 0.19247999 0.06287
-
-0.362635 0.14925 0.26934
-0.38503502 0.15941 0.19188999
-0.31116501 0.18573 0.23601
-
--0.080705 -0.14328 0.45655998
--0.075765 -0.16964001 0.4948
--0.029165 -0.1302 0.47558998
-
-0.043465 -0.23129 0.58570999
-0.053405 -0.17601 0.57659
--0.042475 -0.24874001 0.57685001
-
--0.036705 -0.58948002 0.47154999
--0.029985 -0.49078999 0.50139999
--0.096085 -0.45277 0.41069
-
--0.406185 -0.64178001 0.44240002
--0.39304501 -0.61914001 0.39880001
--0.43119499 -0.63069 0.39651001
-
--0.100065 -0.67837997 0.54858002
--0.158775 -0.70517998 0.52299
--0.119005 -0.73551003 0.54847
-
--0.008315 -0.16797001 0.55435001
--0.057925 -0.20864 0.54856998
--0.042475 -0.24874001 0.57685001
-
--0.62411499 0.60556 -0.39534
--0.608685 0.60671001 -0.42444
--0.61443501 0.52313 -0.27403999
-
--0.100065 -0.67837997 0.54858002
--0.056445 -0.62691002 0.52630001
--0.106135 -0.61624001 0.49498001
-
--0.051545 0.75455002 -0.12812
--0.29095501 0.58248001 -0.04404
--0.247845 0.62541 -0.03466
-
--0.158775 -0.70517998 0.52299
--0.100065 -0.67837997 0.54858002
--0.16275499 -0.66514 0.49737
-
--0.597435 0.68508003 -0.47937
--0.579935 0.46213001 -0.01038
--0.58244499 0.64759003 -0.39550999
-
--0.57147499 0.29725 -0.05187
--0.54156502 0.29757 -0.05975
--0.52155499 0.29777 -0.06353
-
--0.44782501 0.38021 -0.01581
--0.41858501 0.32521999 -0.01536
--0.44820499 0.36980999 -0.02461
-
--0.116605 -0.52758999 0.38146999
--0.140305 -0.57868999 0.38641998
--0.118055 -0.56602001 0.3798
-
--0.35253502 -0.54191002 0.28164
--0.354585 -0.59728001 0.33195
--0.32939499 -0.58321999 0.36421001
-
-0.35949501 -0.21177999 -0.24714001
-0.290105 -0.15098 -0.25101999
-0.28848499 -0.13418 -0.22884001
-
--0.44495499 0.61160999 -0.60196999
--0.43943501 0.61122002 -0.59380001
--0.440755 0.59640999 -0.59333
-
-0.053525 -0.59877998 0.51932999
-0.093335 -0.54011002 0.55001999
-0.031045 -0.48976002 0.55334
-
--0.43739498 0.45532001 0.06203
--0.247845 0.62541 -0.03466
--0.40747501 0.47915001 0.0356
-
--0.34072498 0.34067001 0.0194
--0.363535 0.29777 0.01081
--0.352155 0.32740002 0.01621
-
--0.47512501 0.32431999 -0.07113
--0.468335 0.32449001 -0.06341
--0.47262501 0.31153 -0.0592
-
--0.199305 -0.2299 -0.22021999
--0.19938499 -0.27365 -0.20799
--0.249485 -0.24631001 -0.19802999
-
--0.32425499 0.33021 0.07945
--0.31918501 0.34056 0.04058
--0.259715 0.37625999 0.05013
-
--0.60170502 0.42654999 -0.05351
--0.59239498 0.37070999 -0.07326
--0.614795 0.37119999 -0.013
-
--0.34414501 -0.48889999 0.33360001
--0.35253502 -0.54191002 0.28164
--0.32939499 -0.58321999 0.36421001
-
--0.009275 -0.14155 0.52644001
--0.008315 -0.16797001 0.55435001
-0.053405 -0.17601 0.57659
-
--0.068205 -0.24886999 0.56009998
--0.042475 -0.24874001 0.57685001
--0.057925 -0.20864 0.54856998
-
--0.17994499 -0.75432999 0.36115002
--0.129625 -0.75866997 0.17889999
--0.141445 -0.71961998 0.33926998
-
--0.35181499 -0.54046001 0.20204
--0.34688499 -0.54231998 0.18309999
--0.33072498 -0.58639999 0.18187
-
--0.009545 0.50974998 -0.05037
-0.004935 0.49839001 -0.08707
-0.046465 0.53513 -0.12086
-
--0.029165 -0.1302 0.47558998
--0.106555 -0.0996 0.45023998
--0.080705 -0.14328 0.45655998
-
--0.068205 -0.24886999 0.56009998
--0.093355 -0.17006001 0.46999001
--0.119785 -0.23910999 0.46998001
-
--0.068205 -0.24886999 0.56009998
--0.057925 -0.20864 0.54856998
--0.075765 -0.16964001 0.4948
-
--0.074085 -0.30458 0.55348
--0.068205 -0.24886999 0.56009998
--0.119785 -0.23910999 0.46998001
-
-0.031045 -0.48976002 0.55334
--0.019855 -0.37563999 0.55806
--0.016705 -0.60248001 0.48320999
-
--0.119785 -0.23910999 0.46998001
--0.137875 -0.2701 0.43911999
--0.085865 -0.32016998 0.52319
-
--0.38665501 -0.15554 0.46
--0.38654499 -0.07216 0.43530998
--0.436525 -0.08632 0.43841
-
-0.035725 -0.09047 0.45244999
--0.029165 -0.1302 0.47558998
--0.009275 -0.14155 0.52644001
-
--0.019855 -0.37563999 0.55806
--0.042595 -0.29021999 0.57817001
--0.074085 -0.30458 0.55348
-
--0.330975 0.52471001 -0.03259
--0.18282499 0.59498001 -0.13044
--0.23320499 0.5352 -0.10464
-
-0.093385 -0.48191002 0.57638
-0.103345 -0.42644001 0.57532001
-0.053355 -0.41346001 0.56433998
-
--0.54655499 0.08835 0.54924999
--0.58654499 0.0687 0.53747002
--0.54197498 0.03751 0.51964001
-
--0.137875 -0.2701 0.43911999
--0.029985 -0.49078999 0.50139999
--0.085865 -0.32016998 0.52319
-
--0.029165 -0.1302 0.47558998
--0.075765 -0.16964001 0.4948
--0.009275 -0.14155 0.52644001
-
--0.35181499 -0.54046001 0.20204
--0.40862499 -0.51027 0.23212
--0.382085 -0.52368999 0.21750999
-
--0.288985 -0.33368 -0.16805
--0.328545 -0.40797001 -0.12829
--0.37912498 -0.31878 -0.18186001
-
--0.455145 0.56103001 -0.45051998
--0.47018501 0.48946999 -0.51748001
--0.44630501 0.55679001 -0.57491001
-
--0.080705 -0.14328 0.45655998
--0.093355 -0.17006001 0.46999001
--0.075765 -0.16964001 0.4948
-
--0.40862499 -0.51027 0.23212
--0.37079498 -0.49140999 0.28962999
--0.403395 -0.47771 0.30250999
-
--0.35181499 -0.54046001 0.20204
--0.37079498 -0.49140999 0.28962999
--0.40862499 -0.51027 0.23212
-
--0.42102501 -0.74413002 0.47407001
--0.44044498 -0.72050003 0.46478001
--0.47779499 -0.74220001 0.42571999
-
--0.51212502 -0.2273 0.45049999
--0.55939499 -0.21372999 0.42647999
--0.61961498 -0.25518 0.37487
-
--0.40703499 -0.68030998 0.47273998
--0.406185 -0.64178001 0.44240002
--0.438055 -0.66690002 0.44669998
-
--0.35181499 -0.54046001 0.20204
--0.35253502 -0.54191002 0.28164
--0.37079498 -0.49140999 0.28962999
-
--0.60170502 0.42654999 -0.05351
--0.579935 0.46213001 -0.01038
--0.62411499 0.60556 -0.39534
-
--0.140345 -0.05789 -0.20672001
--0.040395 -0.02881 -0.20667999
--0.069995 -0.13285 -0.23166
-
--0.62949501 0.42409 0.33152
--0.69313499 0.39777 0.31554001
--0.62565498 0.37287998 0.41800999
-
--0.259715 0.37625999 0.05013
--0.31918501 0.34056 0.04058
--0.112925 0.44946999 -0.01904
-
--0.677295 0.16986 0.51804001
--0.62663502 0.17285 0.54678001
--0.65234497 0.19790001 0.53490002
-
--0.49433498 0.69546997 -0.58514
--0.457075 0.67668999 -0.58800999
--0.47443501 0.65209999 -0.59683998
-
--0.50058498 -0.72952003 0.32737999
--0.47553501 -0.68308998 0.30209
--0.47838501 -0.72314003 0.26280001
-
-0.38315498 -0.105 -0.19958
-0.44600498 -0.11718 -0.16657
-0.44883499 -0.17316 -0.18752001
-
--0.65234497 0.19790001 0.53490002
--0.65054497 0.23882 0.51790001
--0.68966499 0.23750999 0.48583
-
--0.45441502 -0.64302002 0.36220001
--0.47614498 -0.66900002 0.34229
--0.46994499 -0.66989998 0.39380001
-
--0.55939499 -0.21372999 0.42647999
--0.551175 -0.15953 0.43046001
--0.61401501 -0.18775999 0.38139999
-
--0.042595 -0.29021999 0.57817001
--0.042475 -0.24874001 0.57685001
--0.068205 -0.24886999 0.56009998
-
--0.152975 -0.66613998 -0.27448999
--0.17661501 -0.63981998 -0.23927999
--0.117175 -0.61290001 -0.22316
-
--0.272745 -0.45799 0.41743
--0.34414501 -0.48889999 0.33360001
--0.32939499 -0.58321999 0.36421001
-
--0.029985 -0.49078999 0.50139999
--0.036705 -0.58948002 0.47154999
--0.016705 -0.60248001 0.48320999
-
--0.136565 -0.18389 0.45653999
--0.119785 -0.23910999 0.46998001
--0.093355 -0.17006001 0.46999001
-
--0.096085 -0.45277 0.41069
--0.116605 -0.52758999 0.38146999
--0.118055 -0.56602001 0.3798
-
--0.59962502 0.11646 0.54145
--0.62663502 0.17285 0.54678001
--0.677295 0.16986 0.51804001
-
--0.65526497 -0.16193001 0.33708
--0.61401501 -0.18775999 0.38139999
--0.60681499 -0.05331 0.35605999
-
--0.40862499 -0.51027 0.23212
--0.406595 -0.51327 0.22797001
--0.406595 -0.51174999 0.23107
-
--0.39039501 -0.65042 0.25218
--0.42884499 -0.63210999 0.34209
--0.354585 -0.59728001 0.33195
-
--0.54392502 0.40847 -0.42164001
--0.52669498 0.41201 -0.43175999
--0.54327499 0.39124001 -0.37567001
-
--0.61961498 -0.25518 0.37487
--0.55939499 -0.21372999 0.42647999
--0.61401501 -0.18775999 0.38139999
-
--0.420495 -0.13227 -0.18625
--0.36962502 -0.20292999 -0.20726999
--0.40962502 -0.24707001 -0.19660999
-
--0.48429501 0.08465 0.51129002
--0.516045 0.07047 0.53485001
--0.527495 0.03341 0.50833
-
--0.16779499 -0.59556999 -0.09223
--0.132525 -0.59215 -0.16823
--0.228515 -0.64073997 -0.19774
-
--0.49343498 0.53766998 -0.56959999
--0.44495499 0.61160999 -0.60196999
--0.46016499 0.52960999 -0.57521999
-
--0.363685 -0.71358002 0.48608002
--0.40703499 -0.68030998 0.47273998
--0.40310501 -0.70723999 0.48404999
-
--0.65234497 0.19790001 0.53490002
--0.59655499 0.21528 0.54181
--0.65054497 0.23882 0.51790001
-
--0.74907501 0.12734 0.44921001
--0.70310501 0.07475 0.49027
--0.677295 0.16986 0.51804001
-
--0.16779499 -0.59556999 -0.09223
--0.228515 -0.64073997 -0.19774
--0.233095 -0.62811001 -0.12729
-
--0.75975502 0.14085 0.40800999
--0.754655 0.10016 0.44153999
--0.74907501 0.12734 0.44921001
-
--0.17445499 -0.76107002 0.26183001
--0.18321501 -0.75733002 0.1487
--0.129625 -0.75866997 0.17889999
-
--0.156665 -0.36923 0.42314999
--0.116605 -0.52758999 0.38146999
--0.137875 -0.2701 0.43911999
-
--0.58818501 -0.35695 -0.06415
--0.60820499 -0.28396 -0.08675
--0.579235 -0.25250999 -0.13211
-
--0.158205 -0.50859001 -0.11002
--0.157915 -0.5673 -0.08973
--0.178085 -0.52410999 -0.09604
-
--0.438055 -0.66690002 0.44669998
--0.406185 -0.64178001 0.44240002
--0.43119499 -0.63069 0.39651001
-
--0.437295 -0.37362999 0.41646999
--0.50172501 -0.31013 0.42847
--0.50455502 -0.31641001 0.42362999
-
--0.56019501 -0.74653 0.0799
--0.54426498 -0.71963997 0.10263
--0.54181499 -0.69334 0.08588
-
--0.019855 -0.37563999 0.55806
--0.029985 -0.49078999 0.50139999
--0.016705 -0.60248001 0.48320999
-
--0.143465 -0.60214001 0.43403999
--0.140305 -0.57868999 0.38641998
--0.216555 -0.65108002 0.42185001
-
-0.046465 0.53513 -0.12086
-0.004935 0.49839001 -0.08707
-0.060495 0.54880001 -0.17709
-
--0.32939499 -0.58321999 0.36421001
--0.34806499 -0.62027 0.40410999
--0.296705 -0.61009998 0.40333
-
-0.70712502 -0.44008999 0.28386
-0.74194504 -0.41438999 0.23629999
-0.70692497 -0.40130001 0.25292999
-
--0.382085 -0.52368999 0.21750999
--0.37405499 -0.52716 0.21347
--0.360765 -0.53513 0.20674
-
--0.236595 0.58076 0.04404
--0.30827499 0.55255001 0.0553
--0.354445 0.43800999 0.1358
-
--0.18321501 -0.75733002 0.1487
--0.252265 -0.76543999 0.06978
--0.20473499 -0.76521004 0.06109
-
--0.54181499 -0.69334 0.08588
--0.502845 -0.67873001 0.11659
--0.50359501 -0.65364998 0.07231
-
--0.44044498 -0.72050003 0.46478001
--0.40703499 -0.68030998 0.47273998
--0.438055 -0.66690002 0.44669998
-
--0.099435 -0.2215 -0.33507999
--0.129445 -0.21128 -0.28048
--0.068905 -0.17981001 -0.32354
-
--0.44842499 -0.42519001 -0.09399
--0.48772499 -0.47484001 -0.01301
--0.51724499 -0.39648998 -0.08125
-
--0.53066502 0.00663 -0.09101
--0.48044498 -0.07672 -0.15554
--0.59998501 -0.08147 -0.08608
-
--0.143465 -0.60214001 0.43403999
--0.16275499 -0.66514 0.49737
--0.106135 -0.61624001 0.49498001
-
--0.65054497 0.23882 0.51790001
--0.66231499 0.29212999 0.47123001
--0.68966499 0.23750999 0.48583
-
--0.074085 -0.30458 0.55348
--0.119785 -0.23910999 0.46998001
--0.085865 -0.32016998 0.52319
-
--0.551175 -0.15953 0.43046001
--0.55939499 -0.21372999 0.42647999
--0.44656502 -0.19707001 0.46938
-
--0.419095 -0.61935001 0.07249
--0.47767502 -0.65098999 0.02223
--0.50359501 -0.65364998 0.07231
-
--0.009275 -0.14155 0.52644001
-0.053405 -0.17601 0.57659
-0.079635 -0.11564 0.52494999
-
--0.60025501 0.10649 -0.05573
--0.67093498 0.16365 -0.02486
--0.60123501 0.19448 -0.05578
-
--0.068205 -0.24886999 0.56009998
--0.075765 -0.16964001 0.4948
--0.093355 -0.17006001 0.46999001
-
--0.67091499 0.06852 0.50094002
--0.648545 0.03328 0.48077
--0.627995 0.04726 0.49209
-
--0.71903503 -0.1047 0.21924999
--0.69847504 -0.16400999 0.28132
--0.70878502 -0.09154 0.23915001
-
--0.60633499 0.29861 0.49606998
--0.56956501 0.37901001 0.42835999
--0.62565498 0.37287998 0.41800999
-
--0.50359501 -0.65364998 0.07231
--0.51823502 -0.66611 0.04218
--0.54181499 -0.69334 0.08588
-
--0.65526497 -0.16193001 0.33708
--0.69847504 -0.16400999 0.28132
--0.71858498 -0.18570999 0.23955999
-
--0.009545 0.50974998 -0.05037
-0.046465 0.53513 -0.12086
-0.051805 0.5825 -0.15508
-
--0.036705 -0.58948002 0.47154999
--0.140305 -0.57868999 0.38641998
--0.143465 -0.60214001 0.43403999
-
--0.54181499 -0.69334 0.08588
--0.54426498 -0.71963997 0.10263
--0.502845 -0.67873001 0.11659
-
--0.042595 -0.29021999 0.57817001
--0.068205 -0.24886999 0.56009998
--0.074085 -0.30458 0.55348
-
--0.156565 -0.18361 0.45839001
--0.206455 -0.16997 0.45382999
--0.176625 -0.22690001 0.44397999
-
--0.603685 0.00224 0.46230999
--0.66449501 0.01509 0.45601002
--0.58873501 -0.02668 0.38175999
-
--0.35253502 -0.54191002 0.28164
--0.35820499 -0.59717999 0.29188
--0.354585 -0.59728001 0.33195
-
--0.46994499 -0.66989998 0.39380001
--0.49865501 -0.72585999 0.36729
--0.47779499 -0.74220001 0.42571999
-
--0.21126499 -0.66814003 0.43307999
--0.16275499 -0.66514 0.49737
--0.143465 -0.60214001 0.43403999
-
--0.31935499 -0.27489 -0.19740999
--0.249485 -0.24631001 -0.19802999
--0.288985 -0.33368 -0.16805
-
--0.65371498 -0.08158 0.31889
--0.67527496 -0.04277 0.26872
--0.70878502 -0.09154 0.23915001
-
--0.124945 -0.75449997 0.44332001
--0.204825 -0.74662003 0.45456001
--0.17994499 -0.75432999 0.36115002
-
--0.627995 0.04726 0.49209
--0.58654499 0.0687 0.53747002
--0.677295 0.16986 0.51804001
-
--0.49940498 -0.74658997 0.33923
--0.50058498 -0.72952003 0.32737999
--0.47864498 -0.74934998 0.25862
-
--0.69313499 0.39777 0.31554001
--0.72732498 0.41339001 0.20645
--0.74152496 0.38702 0.23667
-
--0.56019501 -0.74653 0.0799
--0.51762501 -0.76198997 0.10242
--0.51126499 -0.75096001 0.14734
-
--0.45942501 -0.75005997 0.21047001
--0.54426498 -0.71963997 0.10263
--0.51126499 -0.75096001 0.14734
-
--0.19960501 -0.25952999 -0.2083
--0.167955 -0.26533001 -0.23986
--0.176745 -0.32091 -0.21965
-
--0.69847504 -0.16400999 0.28132
--0.65371498 -0.08158 0.31889
--0.70878502 -0.09154 0.23915001
-
-0.031045 -0.48976002 0.55334
-0.093385 -0.48191002 0.57638
-0.053355 -0.41346001 0.56433998
-
--0.109575 -0.27684 -0.3468
--0.099435 -0.2215 -0.33507999
--0.059835 -0.23341 -0.35984001
-
--0.21126499 -0.66814003 0.43307999
--0.143465 -0.60214001 0.43403999
--0.216555 -0.65108002 0.42185001
-
--0.33072498 -0.58639999 0.18187
--0.386665 -0.56747002 0.10225
--0.334715 -0.61401001 0.18212
-
--0.66231499 0.29212999 0.47123001
--0.60633499 0.29861 0.49606998
--0.62565498 0.37287998 0.41800999
-
--0.009275 -0.14155 0.52644001
--0.075765 -0.16964001 0.4948
--0.008315 -0.16797001 0.55435001
-
--0.603685 0.00224 0.46230999
--0.58873501 -0.02668 0.38175999
--0.547775 -0.01096 0.39499001
-
--0.65371498 -0.08158 0.31889
--0.65526497 -0.16193001 0.33708
--0.60681499 -0.05331 0.35605999
-
--0.65054497 0.23882 0.51790001
--0.60633499 0.29861 0.49606998
--0.66231499 0.29212999 0.47123001
-
--0.69313499 0.39777 0.31554001
--0.71621498 0.319 0.37698002
--0.68663498 0.30483 0.43856998
-
--0.47904499 -0.33529999 -0.1591
--0.42914501 -0.31971001 -0.17452999
--0.458685 -0.37923 -0.13846
-
--0.71858498 -0.18570999 0.23955999
--0.71903503 -0.1047 0.21924999
--0.72375504 -0.14514 0.19955999
-
--0.40703499 -0.68030998 0.47273998
--0.44044498 -0.72050003 0.46478001
--0.40310501 -0.70723999 0.48404999
-
--0.60681499 -0.05331 0.35605999
--0.57050499 -0.03053 0.38844002
--0.58873501 -0.02668 0.38175999
-
--0.403615 -0.76533997 0.20007999
--0.51762501 -0.76198997 0.10242
--0.38783501 -0.76627998 0.13294
-
--0.45211498 -0.74226997 0.21997999
--0.502845 -0.67873001 0.11659
--0.45942501 -0.75005997 0.21047001
-
-0.047165 0.73010002 -0.26747
-0.025515 0.74473999 -0.25292999
-0.008635 0.76769997 -0.20617001
-
-0.053525 -0.59877998 0.51932999
-0.031045 -0.48976002 0.55334
--0.016705 -0.60248001 0.48320999
-
--0.048255 0.52195999 -0.13641
--0.027095 0.51598 -0.13203
--0.212425 0.4907 -0.10495
-
--0.35253502 -0.54191002 0.28164
--0.34414501 -0.48889999 0.33360001
--0.37079498 -0.49140999 0.28962999
-
--0.019855 -0.37563999 0.55806
--0.074085 -0.30458 0.55348
--0.085865 -0.32016998 0.52319
-
--0.39786499 0.47005001 0.10535
--0.36813499 0.44145 0.14507
--0.35580502 0.52299 0.06101
-
--0.51762501 -0.76198997 0.10242
--0.54935501 -0.75695999 0.01981
--0.499095 -0.76375999 -0.05418
-
--0.462365 -0.76483002 -0.06405
--0.47702499 -0.74514 -0.06318
--0.44606499 -0.76600998 -0.07796
-
--0.68397499 0.00246 0.06858
--0.72147499 0.057 0.05831
--0.66189499 0.00042 0.02855
-
--0.65526497 -0.16193001 0.33708
--0.61961498 -0.25518 0.37487
--0.61401501 -0.18775999 0.38139999
-
--0.76316498 0.10037 0.37827
--0.756325 0.07345 0.41839001
--0.754655 0.10016 0.44153999
-
--0.006605 -0.27245001 0.59221001
-0.043465 -0.23129 0.58570999
--0.042475 -0.24874001 0.57685001
-
--0.54426498 -0.71963997 0.10263
--0.56019501 -0.74653 0.0799
--0.51126499 -0.75096001 0.14734
-
--0.50876499 -0.69231003 -0.00193
--0.51823502 -0.66611 0.04218
--0.47767502 -0.65098999 0.02223
-
--0.056505 -0.75303001 -0.26643
--0.176455 -0.76629997 -0.28367001
--0.166175 -0.74779999 -0.29483
-
--0.61401501 -0.18775999 0.38139999
--0.551175 -0.15953 0.43046001
--0.57303501 -0.09277 0.39316002
-
--0.098815 -0.71488998 -0.14756
--0.204055 -0.71999001 -0.05273
--0.212265 -0.71635002 -0.05771
-
--0.707295 0.05002 0.47198002
--0.70310501 0.07475 0.49027
--0.754655 0.10016 0.44153999
-
-0.51838501 -0.73889 0.11006
-0.51719501 -0.72348999 0.03903
-0.558475 -0.70769997 0.03611
-
--0.386665 -0.56747002 0.10225
--0.419095 -0.61935001 0.07249
--0.38455502 -0.62816002 0.13858
-
--0.176455 -0.76629997 -0.28367001
--0.20123501 -0.75469002 -0.29017
--0.166175 -0.74779999 -0.29483
-
--0.297925 -0.53887001 -0.09417
--0.34724499 -0.58544998 -0.05828
--0.357915 -0.49792999 -0.07636
-
--0.65526497 -0.16193001 0.33708
--0.65677498 -0.28486 0.31427999
--0.61961498 -0.25518 0.37487
-
-0.053405 -0.17601 0.57659
-0.136995 -0.12943 0.54544998
-0.079635 -0.11564 0.52494999
-
--0.677295 0.16986 0.51804001
--0.68966499 0.23750999 0.48583
--0.74907501 0.12734 0.44921001
-
--0.69313499 0.39777 0.31554001
--0.68663498 0.30483 0.43856998
--0.62565498 0.37287998 0.41800999
-
--0.47614498 -0.66900002 0.34229
--0.50058498 -0.72952003 0.32737999
--0.49865501 -0.72585999 0.36729
-
--0.60681499 -0.05331 0.35605999
--0.61401501 -0.18775999 0.38139999
--0.57303501 -0.09277 0.39316002
-
--0.677295 0.16986 0.51804001
--0.65234497 0.19790001 0.53490002
--0.68966499 0.23750999 0.48583
-
--0.73949501 0.19546 0.40769001
--0.75975502 0.14085 0.40800999
--0.74907501 0.12734 0.44921001
-
--0.69313499 0.39777 0.31554001
--0.74152496 0.38702 0.23667
--0.71621498 0.319 0.37698002
-
--0.036705 -0.58948002 0.47154999
--0.096085 -0.45277 0.41069
--0.118055 -0.56602001 0.3798
-
--0.38455502 -0.62816002 0.13858
--0.419095 -0.61935001 0.07249
--0.50359501 -0.65364998 0.07231
-
--0.157915 -0.5673 -0.08973
--0.16779499 -0.59556999 -0.09223
--0.24751499 -0.60999001 -0.0966
-
-0.458255 -0.43664001 -0.18388
-0.37158501 -0.45105999 -0.26129999
-0.42092499 -0.38223 -0.23412001
-
--0.627995 0.04726 0.49209
--0.677295 0.16986 0.51804001
--0.67091499 0.06852 0.50094002
-
--0.016705 -0.60248001 0.48320999
-0.023435 -0.61555 0.49417
-0.053525 -0.59877998 0.51932999
-
--0.45211498 -0.74226997 0.21997999
--0.404995 -0.67698997 0.19254
--0.502845 -0.67873001 0.11659
-
--0.33488499 -0.55792 0.17202
--0.34746498 -0.54298 0.16158001
--0.369095 -0.54116001 0.13157
-
--0.363535 0.29777 0.01081
--0.39040501 0.27885 -0.0233
--0.352155 0.32740002 0.01621
-
--0.36962502 -0.20292999 -0.20726999
--0.32967499 -0.20312 -0.20150999
--0.31935499 -0.27489 -0.19740999
-
--0.51823502 -0.66611 0.04218
--0.50876499 -0.69231003 -0.00193
--0.547785 -0.71860001 0.02244
-
--0.68966499 0.23750999 0.48583
--0.73949501 0.19546 0.40769001
--0.74907501 0.12734 0.44921001
-
--0.68663498 0.30483 0.43856998
--0.68966499 0.23750999 0.48583
--0.66231499 0.29212999 0.47123001
-
-0.232845 0.19128 0.00246
-0.20192499 0.21209999 0.08168
-0.30644501 0.19247999 0.06287
-
--0.58654499 0.0687 0.53747002
--0.54655499 0.08835 0.54924999
--0.59962502 0.11646 0.54145
-
-0.27865499 -0.11254 -0.21181999
-0.131915 -0.11946 -0.26507999
-0.074325 -0.09863 -0.22704
-
--0.47443501 0.65209999 -0.59683998
--0.44350498 0.63459 -0.59969002
--0.44495499 0.61160999 -0.60196999
-
--0.35253502 -0.54191002 0.28164
--0.33072498 -0.58639999 0.18187
--0.35820499 -0.59717999 0.29188
-
--0.531875 0.43505001 -0.47442001
--0.49435501 0.49361 -0.54973999
--0.52519501 0.43825001 -0.48328999
-
--0.56290501 0.68952003 -0.53467999
--0.51963501 0.70806 -0.56443001
--0.51469501 0.68051003 -0.57174
-
--0.386665 -0.56747002 0.10225
--0.33488499 -0.55792 0.17202
--0.369095 -0.54116001 0.13157
-
--0.47443501 0.65209999 -0.59683998
--0.49175499 0.59293999 -0.57492001
--0.51469501 0.68051003 -0.57174
-
--0.597435 0.68508003 -0.47937
--0.572925 0.70330002 -0.52133999
--0.614175 0.66246002 -0.47494999
-
--0.572925 0.70330002 -0.52133999
--0.56290501 0.68952003 -0.53467999
--0.614175 0.66246002 -0.47494999
-
--0.57066502 0.53661999 -0.36436001
--0.554105 0.60669998 -0.47487
--0.53073502 0.52237 -0.47411999
-
--0.49343498 0.53766998 -0.56959999
--0.531875 0.43505001 -0.47442001
--0.53073502 0.52237 -0.47411999
-
--0.49175499 0.59293999 -0.57492001
--0.49343498 0.53766998 -0.56959999
--0.53073502 0.52237 -0.47411999
-
--0.554105 0.60669998 -0.47487
--0.49175499 0.59293999 -0.57492001
--0.53073502 0.52237 -0.47411999
-
--0.597435 0.68508003 -0.47937
--0.614175 0.66246002 -0.47494999
--0.579935 0.46213001 -0.01038
-
--0.73949501 0.19546 0.40769001
--0.68966499 0.23750999 0.48583
--0.71621498 0.319 0.37698002
-
--0.707295 0.05002 0.47198002
--0.756325 0.07345 0.41839001
--0.72276497 0.02686 0.4157
-
--0.614175 0.66246002 -0.47494999
--0.608685 0.60671001 -0.42444
--0.62411499 0.60556 -0.39534
-
--0.53415501 0.42109001 -0.44837002
--0.53543499 0.41438 -0.43537998
--0.54392502 0.40847 -0.42164001
-
--0.614175 0.66246002 -0.47494999
--0.56290501 0.68952003 -0.53467999
--0.554105 0.60669998 -0.47487
-
--0.73949501 0.19546 0.40769001
--0.71621498 0.319 0.37698002
--0.72876503 0.31882 0.31702
-
--0.55925499 0.46678001 -0.32376999
--0.57066502 0.53661999 -0.36436001
--0.53073502 0.52237 -0.47411999
-
--0.76541496 0.19517 0.23780001
--0.773265 0.14032 0.25822001
--0.76138496 0.14034 0.29812
-
--0.54327499 0.39124001 -0.37567001
--0.51723499 0.35522999 -0.21364
--0.55800499 0.38182999 -0.29503
-
--0.614175 0.66246002 -0.47494999
--0.62411499 0.60556 -0.39534
--0.579935 0.46213001 -0.01038
-
--0.69847504 -0.16400999 0.28132
--0.65526497 -0.16193001 0.33708
--0.65371498 -0.08158 0.31889
-
--0.614175 0.66246002 -0.47494999
--0.554105 0.60669998 -0.47487
--0.608685 0.60671001 -0.42444
-
--0.574305 0.39730999 -0.30334999
--0.55925499 0.46678001 -0.32376999
--0.531875 0.43505001 -0.47442001
-
--0.57066502 0.53661999 -0.36436001
--0.608685 0.60671001 -0.42444
--0.554105 0.60669998 -0.47487
-
--0.35253502 -0.54191002 0.28164
--0.35181499 -0.54046001 0.20204
--0.33072498 -0.58639999 0.18187
-
--0.608685 0.60671001 -0.42444
--0.57066502 0.53661999 -0.36436001
--0.61443501 0.52313 -0.27403999
-
--0.68966499 0.23750999 0.48583
--0.68663498 0.30483 0.43856998
--0.71621498 0.319 0.37698002
-
--0.382085 -0.52368999 0.21750999
--0.360765 -0.53513 0.20674
--0.35181499 -0.54046001 0.20204
-
--0.54392502 0.40847 -0.42164001
--0.574305 0.39730999 -0.30334999
--0.531875 0.43505001 -0.47442001
-
-0.012615 -0.75335999 -0.24431999
-0.011285 -0.76453003 -0.22976
--0.056505 -0.75303001 -0.26643
-
-0.091055 0.16486 -0.04745
-0.078115 0.18864 0.02789
-0.147815 0.19112 0.00398
-
--0.57997501 0.39771 -0.2633
--0.59004501 0.41210999 -0.14346
--0.55925499 0.46678001 -0.32376999
-
--0.71903503 -0.1047 0.21924999
--0.69119499 -0.03813 0.21893999
--0.69850502 -0.02457 0.14891
-
--0.119055 -0.34823002 -0.33359001
--0.150585 -0.30923 -0.29997999
--0.109575 -0.27684 -0.3468
-
--0.67527496 -0.04277 0.26872
--0.67764503 0.00206 0.26896999
--0.69119499 -0.03813 0.21893999
-
--0.574305 0.39730999 -0.30334999
--0.57806499 0.41137001 -0.27343
--0.55925499 0.46678001 -0.32376999
-
--0.47553501 -0.68308998 0.30209
--0.50058498 -0.72952003 0.32737999
--0.47614498 -0.66900002 0.34229
-
--0.47553501 -0.68308998 0.30209
--0.45884499 -0.68533997 0.2724
--0.45761501 -0.71341003 0.26252001
-
--0.178825 -0.39007 -0.16848
--0.107915 -0.53838001 -0.23878
--0.16091499 -0.46264999 -0.1489
-
--0.089315 -0.30382 -0.35894001
--0.119055 -0.34823002 -0.33359001
--0.109575 -0.27684 -0.3468
-
--0.131875 -0.22559999 -0.29035
--0.109575 -0.27684 -0.3468
--0.150585 -0.30923 -0.29997999
-
--0.119055 -0.34823002 -0.33359001
--0.099045 -0.37569 -0.34127998
--0.089125 -0.40429001 -0.33634998
-
--0.150585 -0.30923 -0.29997999
--0.156355 -0.32272999 -0.27996
--0.167955 -0.26533001 -0.23986
-
--0.131875 -0.22559999 -0.29035
--0.167955 -0.26533001 -0.23986
--0.153045 -0.23818001 -0.25016001
-
--0.150585 -0.30923 -0.29997999
--0.167955 -0.26533001 -0.23986
--0.131875 -0.22559999 -0.29035
-
--0.129445 -0.21128 -0.28048
--0.099435 -0.2215 -0.33507999
--0.131875 -0.22559999 -0.29035
-
--0.078115 -0.62351002 -0.25240999
--0.117175 -0.61290001 -0.22316
--0.058185 -0.59312 -0.27127001
-
--0.18914499 -0.31829 -0.17997
--0.156355 -0.32272999 -0.27996
--0.178825 -0.39007 -0.16848
-
--0.131875 -0.22559999 -0.29035
--0.099435 -0.2215 -0.33507999
--0.109575 -0.27684 -0.3468
-
--0.105115 -0.16202 -0.24193001
--0.199305 -0.2299 -0.22021999
--0.229725 -0.20162001 -0.21724001
-
--0.58244499 0.64759003 -0.39550999
--0.55648499 0.57926998 -0.21315001
--0.541525 0.60362999 -0.27988001
-
--0.45441502 -0.64302002 0.36220001
--0.47553501 -0.68308998 0.30209
--0.47614498 -0.66900002 0.34229
-
--0.74599503 0.0726 0.28837999
--0.76138496 0.14034 0.29812
--0.76094498 0.07262 0.24841
-
-0.232845 0.19128 0.00246
-0.23810499 0.17156 -0.03667
-0.147815 0.19112 0.00398
-
--0.058185 -0.59312 -0.27127001
--0.119055 -0.34823002 -0.33359001
--0.028935 -0.47416 -0.34169998
-
--0.156355 -0.32272999 -0.27996
--0.176745 -0.32091 -0.21965
--0.167955 -0.26533001 -0.23986
-
-0.17213499 -0.75156998 0.0888
-0.182815 -0.75714996 0.16868999
-0.141225 -0.72126999 0.18233999
-
--0.271495 -0.75060997 -0.24094
--0.264615 -0.75880997 -0.25176001
--0.271465 -0.75859001 -0.23466
-
--0.291175 -0.73332001 -0.18757
--0.271465 -0.75859001 -0.23466
--0.285585 -0.75900002 -0.19978001
-
-0.35907501 0.07059 -0.10795
-0.293955 0.09814 -0.1175
-0.32314499 0.16155001 -0.00588
-
--0.25884501 -0.74322998 -0.26056
--0.271495 -0.75060997 -0.24094
--0.271465 -0.75859001 -0.23466
-
--0.18914499 -0.31829 -0.17997
--0.176745 -0.32091 -0.21965
--0.156355 -0.32272999 -0.27996
-
--0.55925499 0.46678001 -0.32376999
--0.57806499 0.41137001 -0.27343
--0.57997501 0.39771 -0.2633
-
-0.33996498 -0.09883 -0.20899
-0.36023499 -0.12728 -0.21188999
-0.27865499 -0.11254 -0.21181999
-
--0.119055 -0.34823002 -0.33359001
--0.049465 -0.37333 -0.3702
--0.028935 -0.47416 -0.34169998
-
--0.47767502 -0.65098999 0.02223
--0.51823502 -0.66611 0.04218
--0.50359501 -0.65364998 0.07231
-
--0.72123497 0.26363001 0.29735001
--0.74471497 0.23594 0.22754
--0.76541496 0.19517 0.23780001
-
--0.107915 -0.53838001 -0.23878
--0.117175 -0.61290001 -0.22316
--0.132525 -0.59215 -0.16823
-
--0.57997501 0.39771 -0.2633
--0.59239498 0.37070999 -0.07326
--0.59004501 0.41210999 -0.14346
-
--0.585895 0.42438999 -0.1235
--0.61443501 0.52313 -0.27403999
--0.57066502 0.53661999 -0.36436001
-
--0.65177498 0.38554001 0.03709
--0.65177498 0.41154999 0.04812
--0.61525501 0.41305 0.00652
-
-0.016075 0.68472 -0.25462
-0.059645 0.68377998 -0.28246
-0.046245 0.64051003 -0.26128
-
--0.249265 -0.69514999 -0.22771999
--0.27567499 -0.69246002 -0.18768
--0.228515 -0.64073997 -0.19774
-
--0.27567499 -0.69246002 -0.18768
--0.249265 -0.69514999 -0.22771999
--0.25884501 -0.74322998 -0.26056
-
--0.27567499 -0.69246002 -0.18768
--0.291175 -0.73332001 -0.18757
--0.30734501 -0.71100998 -0.10559
-
-0.074325 -0.09863 -0.22704
-0.131915 -0.11946 -0.26507999
-0.059725 -0.12592 -0.27848
-
--0.45884499 -0.68533997 0.2724
--0.41561501 -0.69004997 0.22243999
--0.45761501 -0.71341003 0.26252001
-
--0.41561501 -0.69004997 0.22243999
--0.45884499 -0.68533997 0.2724
--0.39039501 -0.65042 0.25218
-
--0.27567499 -0.69246002 -0.18768
--0.271465 -0.75859001 -0.23466
--0.291175 -0.73332001 -0.18757
-
--0.107915 -0.53838001 -0.23878
--0.132525 -0.59215 -0.16823
--0.158205 -0.50859001 -0.11002
-
--0.57997501 0.39771 -0.2633
--0.55800499 0.38182999 -0.29503
--0.51723499 0.35522999 -0.21364
-
--0.59004501 0.41210999 -0.14346
--0.585895 0.42438999 -0.1235
--0.55925499 0.46678001 -0.32376999
-
--0.156355 -0.32272999 -0.27996
--0.150585 -0.30923 -0.29997999
--0.107915 -0.53838001 -0.23878
-
--0.73949501 0.19546 0.40769001
--0.72123497 0.26363001 0.29735001
--0.76541496 0.19517 0.23780001
-
--0.291175 -0.73332001 -0.18757
--0.285585 -0.75900002 -0.19978001
--0.31505501 -0.76257004 -0.12831
-
--0.69706497 0.27559999 0.04741
--0.73406502 0.22117001 0.0777
--0.685625 0.31711 0.06703
-
--0.069995 -0.13285 -0.23166
--0.105115 -0.16202 -0.24193001
--0.229725 -0.20162001 -0.21724001
-
--0.42884499 -0.63210999 0.34209
--0.45884499 -0.68533997 0.2724
--0.47553501 -0.68308998 0.30209
-
--0.67165497 0.20761999 -0.01075
--0.62156502 0.28177999 -0.03207
--0.60123501 0.19448 -0.05578
-
--0.051545 0.75455002 -0.12812
--0.126565 0.67811996 -0.13629
--0.29095501 0.58248001 -0.04404
-
-0.40085499 0.10826 -0.02869
-0.35907501 0.07059 -0.10795
-0.32314499 0.16155001 -0.00588
-
--0.60170502 0.42654999 -0.05351
--0.61443501 0.52313 -0.27403999
--0.585895 0.42438999 -0.1235
-
--0.073375 0.61046001 -0.18223
--0.23320499 0.5352 -0.10464
--0.18282499 0.59498001 -0.13044
-
--0.30734501 -0.71100998 -0.10559
--0.31505501 -0.76257004 -0.12831
--0.30720501 -0.73987999 -0.10804
-
--0.38455502 -0.62816002 0.13858
--0.404995 -0.67698997 0.19254
--0.35919498 -0.65380997 0.20221001
-
--0.45761501 -0.71341003 0.26252001
--0.41561501 -0.69004997 0.22243999
--0.45211498 -0.74226997 0.21997999
-
--0.72732498 0.41339001 0.20645
--0.66683502 0.43922001 0.22899
--0.67873497 0.42423 0.10789
-
--0.132525 -0.59215 -0.16823
--0.157915 -0.5673 -0.08973
--0.158205 -0.50859001 -0.11002
-
--0.105115 -0.16202 -0.24193001
--0.069995 -0.13285 -0.23166
--0.068905 -0.17981001 -0.32354
-
-0.68443497 -0.45104 0.0037
-0.72394501 -0.43584999 0.02906
-0.73838501 -0.45884998 0.0331
-
--0.44044498 -0.72050003 0.46478001
--0.438055 -0.66690002 0.44669998
--0.47779499 -0.74220001 0.42571999
-
--0.76541496 0.19517 0.23780001
--0.77828499 0.14011 0.20802999
--0.773265 0.14032 0.25822001
-
--0.72123497 0.26363001 0.29735001
--0.72876503 0.31882 0.31702
--0.74582497 0.34598999 0.25691
-
--0.30734501 -0.71100998 -0.10559
--0.291175 -0.73332001 -0.18757
--0.31505501 -0.76257004 -0.12831
-
-0.33996498 -0.09883 -0.20899
-0.359175 -0.0197 -0.15061
-0.38315498 -0.105 -0.19958
-
--0.585895 0.42438999 -0.1235
--0.57066502 0.53661999 -0.36436001
--0.55925499 0.46678001 -0.32376999
-
--0.59239498 0.37070999 -0.07326
--0.595065 0.41257 -0.06351
--0.585895 0.42438999 -0.1235
-
--0.124945 -0.75449997 0.44332001
--0.17994499 -0.75432999 0.36115002
--0.163815 -0.75672997 0.40183998
-
--0.18686501 0.0498 -0.14299
--0.24480499 0.12143 -0.09801
--0.138675 0.11073 -0.06666
-
--0.238545 -0.76138 0.28424
--0.21356501 -0.75926003 0.30533001
--0.17994499 -0.75432999 0.36115002
-
--0.77015503 0.16722 0.17794001
--0.77828499 0.14011 0.20802999
--0.76541496 0.19517 0.23780001
-
--0.74152496 0.38702 0.23667
--0.72876503 0.31882 0.31702
--0.71621498 0.319 0.37698002
-
-0.42197498 -0.58331001 -0.20099001
-0.44724499 -0.56456001 -0.18232
-0.45115501 -0.60699001 -0.15207
-
-0.293955 0.09814 -0.1175
-0.23810499 0.17156 -0.03667
-0.32314499 0.16155001 -0.00588
-
-0.069325 0.57973999 -0.17223
-0.075975 0.58987 -0.22885
-0.080755 0.61445999 -0.2476
-
--0.72665497 -0.19900999 0.19982
--0.72375504 -0.14514 0.19955999
--0.72489502 -0.13198 0.11954
-
--0.54156502 0.29757 -0.05975
--0.58929501 0.35665001 -0.05348
--0.54577499 0.32955002 -0.08891
-
--0.69841499 -0.28159 0.17025999
--0.67019501 -0.33046001 0.17235001
--0.67350502 -0.31801001 0.21348
-
--0.46518501 0.44868 0.07372
--0.50223499 0.44608002 0.02426
--0.559795 0.4541 0.06169
-
--0.47553501 -0.68308998 0.30209
--0.45761501 -0.71341003 0.26252001
--0.47838501 -0.72314003 0.26280001
-
--0.41858501 0.32521999 -0.01536
--0.47262501 0.31153 -0.0592
--0.468335 0.32449001 -0.06341
-
--0.468335 0.32449001 -0.06341
--0.45510502 0.35847 -0.05053
--0.44820499 0.36980999 -0.02461
-
-0.50467499 -0.54449001 -0.10164
-0.50317501 -0.58196999 -0.06143
-0.45115501 -0.60699001 -0.15207
-
--0.76541496 0.19517 0.23780001
--0.74471497 0.23594 0.22754
--0.722985 0.29028 0.13737
-
--0.69119499 -0.03813 0.21893999
--0.70774498 0.00346 0.16879
--0.69850502 -0.02457 0.14891
-
--0.595065 0.41257 -0.06351
--0.60170502 0.42654999 -0.05351
--0.585895 0.42438999 -0.1235
-
--0.35820499 -0.59717999 0.29188
--0.35919498 -0.65380997 0.20221001
--0.39039501 -0.65042 0.25218
-
--0.574305 0.39730999 -0.30334999
--0.55800499 0.38182999 -0.29503
--0.57806499 0.41137001 -0.27343
-
--0.76316498 0.10037 0.37827
--0.754655 0.10016 0.44153999
--0.75975502 0.14085 0.40800999
-
--0.70689499 -0.24051001 0.17004999
--0.69344498 -0.26929001 0.08014
--0.69841499 -0.28159 0.17025999
-
--0.59004501 0.41210999 -0.14346
--0.59239498 0.37070999 -0.07326
--0.585895 0.42438999 -0.1235
-
--0.438055 -0.66690002 0.44669998
--0.46994499 -0.66989998 0.39380001
--0.47779499 -0.74220001 0.42571999
-
--0.38455502 -0.62816002 0.13858
--0.502845 -0.67873001 0.11659
--0.404995 -0.67698997 0.19254
-
-0.51719501 -0.72348999 0.03903
-0.38144501 -0.72870003 -0.01149
-0.40176498 -0.71222 -0.03167
-
-0.36023499 -0.12728 -0.21188999
-0.44883499 -0.17316 -0.18752001
-0.35949501 -0.21177999 -0.24714001
-
--0.131875 -0.22559999 -0.29035
--0.153045 -0.23818001 -0.25016001
--0.129445 -0.21128 -0.28048
-
-0.259195 0.02269 -0.176
-0.293955 0.09814 -0.1175
-0.35907501 0.07059 -0.10795
-
-0.125885 -0.16028999 -0.32228001
-0.059725 -0.12592 -0.27848
-0.131915 -0.11946 -0.26507999
-
--0.141615 -0.76162003 0.1249
--0.129625 -0.75866997 0.17889999
--0.18321501 -0.75733002 0.1487
-
--0.60820499 -0.28396 -0.08675
--0.68001503 -0.24351 -0.00998
--0.660215 -0.19101 -0.05073
-
-0.68647499 -0.58339001 -0.0017
-0.72791496 -0.59351002 0.06742
-0.67858498 -0.64014999 0.05778
-
-0.49725498 0.02933 -0.02307
-0.587925 -0.08729 0.02727
-0.53067501 -0.0586 -0.06884
-
--0.60820499 -0.28396 -0.08675
--0.58818501 -0.35695 -0.06415
--0.63365501 -0.34187 -0.01984
-
--0.57005501 0.04798 -0.05057
--0.59998501 -0.08147 -0.08608
--0.67421501 -0.09452 -0.01072
-
--0.040395 -0.02881 -0.20667999
-0.005765 0.04376 -0.15766
-0.027045 -0.06751 -0.21985001
-
--0.019805 -0.26032 -0.37293999
-0.040165 -0.24620001 -0.37231998
--0.009285 -0.35868999 -0.37393002
-
--0.60170502 0.42654999 -0.05351
--0.614795 0.37119999 -0.013
--0.61525501 0.41305 0.00652
-
--0.42247501 -0.65561996 -0.03636
--0.40218498 -0.59438999 0.01163
--0.36709499 -0.61487 -0.04815
-
-0.52969501 -0.24299 -0.15367
-0.42092499 -0.38223 -0.23412001
-0.45040501 -0.27245001 -0.20267
-
--0.68001503 -0.24351 -0.00998
--0.71519501 -0.22723 0.07012
--0.68935501 -0.17514999 0.00979
-
--0.67421501 -0.09452 -0.01072
--0.68397499 0.00246 0.06858
--0.66189499 0.00042 0.02855
-
--0.18686501 0.0498 -0.14299
--0.138675 0.11073 -0.06666
--0.060175 0.08937 -0.1052
-
-0.179445 0.04258 -0.17731001
-0.093325 0.13007 -0.09003
-0.232995 0.12265 -0.10369
-
--0.60170502 0.42654999 -0.05351
--0.595065 0.41257 -0.06351
--0.59239498 0.37070999 -0.07326
-
--0.59239498 0.37070999 -0.07326
--0.58929501 0.35665001 -0.05348
--0.614795 0.37119999 -0.013
-
--0.61525501 0.41305 0.00652
--0.579935 0.46213001 -0.01038
--0.60170502 0.42654999 -0.05351
-
--0.121325 0.14207 0.02081
-0.078115 0.18864 0.02789
--0.014785 0.14532 -0.02397
-
--0.19960501 -0.25952999 -0.2083
--0.176745 -0.32091 -0.21965
--0.19938499 -0.27365 -0.20799
-
--0.18686501 0.0498 -0.14299
--0.116545 0.01205 -0.16351999
--0.190415 -0.01619 -0.18384001
-
-0.42092499 -0.38223 -0.23412001
-0.370625 -0.38014999 -0.26396999
-0.261315 -0.36248001 -0.31499001
-
--0.36254501 -0.75091003 -0.10707
--0.27737499 -0.63951 -0.09283
--0.30734501 -0.71100998 -0.10559
-
--0.39643501 -0.51195999 -0.00889
--0.357915 -0.49792999 -0.07636
--0.34724499 -0.58544998 -0.05828
-
--0.58818501 -0.35695 -0.06415
--0.51724499 -0.39648998 -0.08125
--0.59931499 -0.38535999 -0.00934
-
--0.63365501 -0.34187 -0.01984
--0.59931499 -0.38535999 -0.00934
--0.63462502 -0.37513 0.05758
-
--0.59998501 -0.08147 -0.08608
--0.59406502 -0.18136 -0.12044
--0.660215 -0.19101 -0.05073
-
--0.72147499 0.057 0.05831
--0.75427498 0.12566 0.09816
--0.69932503 0.13755 -0.00205
-
--0.65177498 0.38554001 0.03709
--0.614795 0.37119999 -0.013
--0.62156502 0.28177999 -0.03207
-
--0.55648499 0.57926998 -0.21315001
--0.579935 0.46213001 -0.01038
--0.53754501 0.46978001 -0.00341
-
--0.55925499 0.46678001 -0.32376999
--0.53073502 0.52237 -0.47411999
--0.531875 0.43505001 -0.47442001
-
--0.68935501 -0.17514999 0.00979
--0.67421501 -0.09452 -0.01072
--0.660215 -0.19101 -0.05073
-
-0.67144501 -0.41029999 0.26914
-0.57196499 -0.49865002 0.31608
-0.64346497 -0.49037998 0.32360001
-
--0.572925 0.70330002 -0.52133999
--0.597435 0.68508003 -0.47937
--0.543125 0.70637001 -0.51022999
-
--0.75975502 0.14085 0.40800999
--0.73949501 0.19546 0.40769001
--0.76138496 0.14034 0.29812
-
--0.50876499 -0.69231003 -0.00193
--0.52946499 -0.75737999 -0.02987
--0.547785 -0.71860001 0.02244
-
--0.67421501 -0.09452 -0.01072
--0.70828499 -0.11964 0.0597
--0.72112503 -0.09155 0.13937
-
--0.69026497 0.08918 0.00135
--0.60025501 0.10649 -0.05573
--0.57005501 0.04798 -0.05057
-
--0.67421501 -0.09452 -0.01072
--0.72112503 -0.09155 0.13937
--0.68397499 0.00246 0.06858
-
--0.72147499 0.057 0.05831
--0.69026497 0.08918 0.00135
--0.66189499 0.00042 0.02855
-
--0.72147499 0.057 0.05831
--0.73905502 0.04444 0.0987
--0.75427498 0.12566 0.09816
-
--0.72147499 0.057 0.05831
--0.69932503 0.13755 -0.00205
--0.69026497 0.08918 0.00135
-
--0.65177498 0.38554001 0.03709
--0.61525501 0.41305 0.00652
--0.614795 0.37119999 -0.013
-
--0.61525501 0.41305 0.00652
--0.65177498 0.41154999 0.04812
--0.59834499 0.43923 0.01644
-
--0.40209499 -0.53867001 0.05158
--0.39643501 -0.51195999 -0.00889
--0.40218498 -0.59438999 0.01163
-
--0.41205502 -0.60668999 0.06219
--0.386665 -0.56747002 0.10225
--0.40209499 -0.53867001 0.05158
-
--0.59931499 -0.38535999 -0.00934
--0.63365501 -0.34187 -0.01984
--0.58818501 -0.35695 -0.06415
-
--0.60820499 -0.28396 -0.08675
--0.63365501 -0.34187 -0.01984
--0.68001503 -0.24351 -0.00998
-
--0.69026497 0.08918 0.00135
--0.57005501 0.04798 -0.05057
--0.66189499 0.00042 0.02855
-
--0.69026497 0.08918 0.00135
--0.67093498 0.16365 -0.02486
--0.60025501 0.10649 -0.05573
-
--0.65177498 0.38554001 0.03709
--0.62156502 0.28177999 -0.03207
--0.685625 0.31711 0.06703
-
--0.547785 -0.71860001 0.02244
--0.54181499 -0.69334 0.08588
--0.51823502 -0.66611 0.04218
-
--0.60820499 -0.28396 -0.08675
--0.660215 -0.19101 -0.05073
--0.59406502 -0.18136 -0.12044
-
--0.67290497 -0.32478001 0.06036
--0.63365501 -0.34187 -0.01984
--0.63462502 -0.37513 0.05758
-
--0.72112503 -0.09155 0.13937
--0.69850502 -0.02457 0.14891
--0.68397499 0.00246 0.06858
-
--0.72976501 0.37284 0.12714
--0.65177498 0.38554001 0.03709
--0.69845497 0.34506001 0.09724
-
--0.47767502 -0.65098999 0.02223
--0.47012501 -0.68793999 -0.04621
--0.50606499 -0.70516998 -0.03412
-
--0.47767502 -0.65098999 0.02223
--0.41205502 -0.60668999 0.06219
--0.42247501 -0.65561996 -0.03636
-
--0.40218498 -0.59438999 0.01163
--0.42247501 -0.65561996 -0.03636
--0.41205502 -0.60668999 0.06219
-
--0.59931499 -0.38535999 -0.00934
--0.57057499 -0.43936001 0.05637
--0.63462502 -0.37513 0.05758
-
--0.69344498 -0.26929001 0.08014
--0.63365501 -0.34187 -0.01984
--0.67290497 -0.32478001 0.06036
-
--0.59998501 -0.08147 -0.08608
--0.660215 -0.19101 -0.05073
--0.67421501 -0.09452 -0.01072
-
--0.73949501 0.19546 0.40769001
--0.72876503 0.31882 0.31702
--0.72123497 0.26363001 0.29735001
-
--0.47767502 -0.65098999 0.02223
--0.42247501 -0.65561996 -0.03636
--0.47012501 -0.68793999 -0.04621
-
--0.47767502 -0.65098999 0.02223
--0.419095 -0.61935001 0.07249
--0.41205502 -0.60668999 0.06219
-
--0.47012501 -0.68793999 -0.04621
--0.42247501 -0.65561996 -0.03636
--0.27737499 -0.63951 -0.09283
-
--0.41205502 -0.60668999 0.06219
--0.419095 -0.61935001 0.07249
--0.386665 -0.56747002 0.10225
-
--0.41275501 -0.52455002 0.07158
--0.40209499 -0.53867001 0.05158
--0.386665 -0.56747002 0.10225
-
--0.39643501 -0.51195999 -0.00889
--0.36709499 -0.61487 -0.04815
--0.40218498 -0.59438999 0.01163
-
--0.67421501 -0.09452 -0.01072
--0.68935501 -0.17514999 0.00979
--0.70828499 -0.11964 0.0597
-
--0.73905502 0.04444 0.0987
--0.72147499 0.057 0.05831
--0.68397499 0.00246 0.06858
-
-0.073585 0.64028999 -0.27017
-0.080755 0.61445999 -0.2476
-0.075455 0.60136002 -0.24311001
-
-0.091085 -0.00535 -0.20563999
-0.074325 -0.09863 -0.22704
-0.027045 -0.06751 -0.21985001
-
-0.239765 -0.07146 -0.19552
-0.20949499 8e-05 -0.18802999
-0.259195 0.02269 -0.176
-
--0.445825 0.62064999 -0.60304001
--0.45517502 0.62153999 -0.60337002
--0.44350498 0.63459 -0.59969002
-
--0.47443501 0.65209999 -0.59683998
--0.44495499 0.61160999 -0.60196999
--0.49343498 0.53766998 -0.56959999
-
--0.44495499 0.61160999 -0.60196999
--0.445825 0.62064999 -0.60304001
--0.439925 0.61355999 -0.59553001
-
-0.44600498 -0.11718 -0.16657
-0.53613499 -0.09893 -0.08599
-0.57723499 -0.16372999 -0.05665
-
--0.44219501 0.62398998 -0.59071999
--0.439925 0.61355999 -0.59553001
--0.44350498 0.63459 -0.59969002
-
--0.124945 -0.75449997 0.44332001
--0.088955 -0.75287003 0.51883999
--0.167295 -0.74737 0.49738998
-
-0.35907501 0.07059 -0.10795
-0.40085499 0.10826 -0.02869
-0.47436501 0.00685 -0.07925
-
-0.23810499 0.17156 -0.03667
-0.093325 0.13007 -0.09003
-0.091055 0.16486 -0.04745
-
-0.027045 -0.06751 -0.21985001
-0.069925 0.02503 -0.17805
-0.091085 -0.00535 -0.20563999
-
-0.35907501 0.07059 -0.10795
-0.47436501 0.00685 -0.07925
-0.47198502 -0.04777 -0.12069
-
-0.200805 -0.34676998 -0.33601002
-0.290415 -0.22259001 -0.29337
-0.261315 -0.36248001 -0.31499001
-
--0.20724501 -0.69445999 -0.26997999
--0.25884501 -0.74322998 -0.26056
--0.249265 -0.69514999 -0.22771999
-
-0.222605 -0.71620003 -0.04485
-0.18418501 -0.71306999 -0.11163
-0.231395 -0.71984001 -0.09604
-
-0.53613499 -0.09893 -0.08599
-0.47198502 -0.04777 -0.12069
-0.53067501 -0.0586 -0.06884
-
-0.47198502 -0.04777 -0.12069
-0.38315498 -0.105 -0.19958
-0.359175 -0.0197 -0.15061
-
-0.44600498 -0.11718 -0.16657
-0.53496498 -0.20222 -0.13642
-0.44883499 -0.17316 -0.18752001
-
-0.72512497 -0.40280998 0.05526
-0.68443497 -0.45104 0.0037
-0.66293503 -0.39085999 0.06263
-
-0.40085499 0.10826 -0.02869
-0.45834499 0.08214 0.00486
-0.47436501 0.00685 -0.07925
-
-0.59800499 -0.28384001 -0.03253
-0.47530499 -0.39273998 -0.18283001
-0.56855499 -0.27214001 -0.1024
-
-0.54107498 -0.55365002 -0.04656
-0.56943501 -0.51193001 -0.02993
-0.58218498 -0.58167 -0.0532
-
-0.69163498 -0.37717999 0.08836
-0.64561501 -0.37198002 0.10372
-0.70884499 -0.36710999 0.13567
-
--0.106075 0.15324 0.06919
--0.121325 0.14207 0.02081
--0.221775 0.16362 -0.02269
-
-0.52969501 -0.24299 -0.15367
-0.56855499 -0.27214001 -0.1024
-0.47530499 -0.39273998 -0.18283001
-
--0.27737499 -0.63951 -0.09283
--0.233095 -0.62811001 -0.12729
--0.27567499 -0.69246002 -0.18768
-
--0.015555 0.06388 -0.13874
-0.069925 0.02503 -0.17805
-0.005765 0.04376 -0.15766
-
-0.44600498 -0.11718 -0.16657
-0.47198502 -0.04777 -0.12069
-0.53613499 -0.09893 -0.08599
-
-0.091085 -0.00535 -0.20563999
-0.153225 0.01244 -0.18492001
-0.239765 -0.07146 -0.19552
-
--0.43739498 0.45532001 0.06203
--0.39786499 0.47005001 0.10535
--0.35580502 0.52299 0.06101
-
--0.000905 -0.16063999 -0.32273998
--0.019895 -0.21881001 -0.36255001
--0.068905 -0.17981001 -0.32354
-
-0.595695 -0.19973 -0.04273
-0.56855499 -0.27214001 -0.1024
-0.55953499 -0.19656 -0.10231
-
-0.47198502 -0.04777 -0.12069
-0.44600498 -0.11718 -0.16657
-0.38315498 -0.105 -0.19958
-
-0.27865499 -0.11254 -0.21181999
-0.290105 -0.15098 -0.25101999
-0.22540501 -0.15247 -0.28954
-
-0.078115 0.18864 0.02789
-0.20192499 0.21209999 0.08168
-0.147815 0.19112 0.00398
-
-0.45834499 0.08214 0.00486
-0.49725498 0.02933 -0.02307
-0.47436501 0.00685 -0.07925
-
--0.40865501 0.45254002 0.17395
--0.39786499 0.47005001 0.10535
--0.43739498 0.45532001 0.06203
-
-0.57723499 -0.16372999 -0.05665
-0.595695 -0.19973 -0.04273
-0.55953499 -0.19656 -0.10231
-
-0.027045 -0.06751 -0.21985001
-0.005765 0.04376 -0.15766
-0.069925 0.02503 -0.17805
-
--0.40747501 0.47915001 0.0356
--0.29095501 0.58248001 -0.04404
--0.330975 0.52471001 -0.03259
-
-0.74167503 -0.40138 0.07409
-0.69163498 -0.37717999 0.08836
-0.70884499 -0.36710999 0.13567
-
-0.35907501 0.07059 -0.10795
-0.47198502 -0.04777 -0.12069
-0.359175 -0.0197 -0.15061
-
--0.138675 0.11073 -0.06666
--0.266325 0.15101 -0.06886
--0.221775 0.16362 -0.02269
-
--0.41858501 0.32521999 -0.01536
--0.468335 0.32449001 -0.06341
--0.44820499 0.36980999 -0.02461
-
--0.50223499 0.44608002 0.02426
--0.46518501 0.44868 0.07372
--0.46452499 0.41841999 0.00315
-
--0.46518501 0.44868 0.07372
--0.43739498 0.45532001 0.06203
--0.46452499 0.41841999 0.00315
-
-0.23810499 0.17156 -0.03667
-0.232845 0.19128 0.00246
-0.32314499 0.16155001 -0.00588
-
-0.74167503 -0.40138 0.07409
-0.70884499 -0.36710999 0.13567
-0.72733498 -0.37303001 0.14242
-
-0.756455 -0.42445 0.07686
-0.77457497 -0.49212002 0.10691
-0.757565 -0.47983002 0.05688
-
--0.44713501 0.41133999 0.01059
--0.47220501 0.42382 -0.00262
--0.46452499 0.41841999 0.00315
-
--0.51963501 0.70806 -0.56443001
--0.48884499 0.70297997 -0.56327
--0.49433498 0.69546997 -0.58514
-
--0.462285 0.43570999 -0.09058
--0.497005 0.44953999 -0.01774
--0.47220501 0.42382 -0.00262
-
-0.23810499 0.17156 -0.03667
-0.091055 0.16486 -0.04745
-0.147815 0.19112 0.00398
-
--0.44713501 0.41133999 0.01059
--0.46452499 0.41841999 0.00315
--0.43739498 0.45532001 0.06203
-
-0.002175 -0.65117996 -0.26294001
--0.056505 -0.75303001 -0.26643
--0.166175 -0.74779999 -0.29483
-
--0.113155 -0.72134003 0.07626
--0.123175 -0.72098999 0.07391
--0.125935 -0.71977997 0.05414
-
-0.72512497 -0.40280998 0.05526
-0.72394501 -0.43584999 0.02906
-0.68443497 -0.45104 0.0037
-
--0.069995 -0.13285 -0.23166
--0.000905 -0.16063999 -0.32273998
--0.068905 -0.17981001 -0.32354
-
--0.126565 0.67811996 -0.13629
--0.18282499 0.59498001 -0.13044
--0.29095501 0.58248001 -0.04404
-
--0.107665 -0.74504997 0.54255001
--0.119005 -0.73551003 0.54847
--0.167295 -0.74737 0.49738998
-
--0.121325 0.14207 0.02081
--0.014785 0.14532 -0.02397
--0.138675 0.11073 -0.06666
-
--0.59239498 0.37070999 -0.07326
--0.57997501 0.39771 -0.2633
--0.54886501 0.33823002 -0.12392
-
--0.47220501 0.42382 -0.00262
--0.50223499 0.44608002 0.02426
--0.46452499 0.41841999 0.00315
-
--0.44713501 0.41133999 0.01059
--0.40245499 0.42946999 0.00582
--0.401735 0.37047001 -0.00194
-
-0.761605 -0.39966999 0.14054
-0.756455 -0.42445 0.07686
-0.74167503 -0.40138 0.07409
-
--0.060175 0.08937 -0.1052
--0.015555 0.06388 -0.13874
-0.005765 0.04376 -0.15766
-
--0.117175 -0.61290001 -0.22316
--0.17661501 -0.63981998 -0.23927999
--0.132525 -0.59215 -0.16823
-
--0.40747501 0.47915001 0.0356
--0.40245499 0.42946999 0.00582
--0.44713501 0.41133999 0.01059
-
--0.41858501 0.32521999 -0.01536
--0.39040501 0.27885 -0.0233
--0.47262501 0.31153 -0.0592
-
-0.239765 -0.07146 -0.19552
-0.153225 0.01244 -0.18492001
-0.20949499 8e-05 -0.18802999
-
--0.000905 -0.16063999 -0.32273998
-0.125885 -0.16028999 -0.32228001
-0.061575 -0.19306999 -0.34928001
-
-0.040165 -0.24620001 -0.37231998
-0.061575 -0.19306999 -0.34928001
-0.125885 -0.16028999 -0.32228001
-
--0.43526501 0.09176 -0.08455
--0.31862499 0.11157 -0.10718
--0.38056499 0.02471 -0.15193
-
--0.27737499 -0.63951 -0.09283
--0.27567499 -0.69246002 -0.18768
--0.30734501 -0.71100998 -0.10559
-
--0.116545 0.01205 -0.16351999
--0.105925 -0.01889 -0.19115
--0.140345 -0.05789 -0.20672001
-
-0.091085 -0.00535 -0.20563999
-0.069925 0.02503 -0.17805
-0.093325 0.13007 -0.09003
-
--0.18686501 0.0498 -0.14299
--0.060175 0.08937 -0.1052
--0.116545 0.01205 -0.16351999
-
--0.014785 0.14532 -0.02397
-0.093325 0.13007 -0.09003
--0.015555 0.06388 -0.13874
-
--0.49363499 0.44341 -0.49014
--0.46016499 0.52960999 -0.57521999
--0.47018501 0.48946999 -0.51748001
-
--0.140345 -0.05789 -0.20672001
--0.069995 -0.13285 -0.23166
--0.160285 -0.07244 -0.20541
-
-0.73838501 -0.45884998 0.0331
-0.757565 -0.47983002 0.05688
-0.701595 -0.51362999 -0.01377
-
--0.44782501 0.38021 -0.01581
--0.401735 0.37047001 -0.00194
--0.41858501 0.32521999 -0.01536
-
--0.014785 0.14532 -0.02397
-0.091055 0.16486 -0.04745
-0.093325 0.13007 -0.09003
-
-0.49725498 0.02933 -0.02307
-0.45834499 0.08214 0.00486
-0.51815498 0.03883 0.06995
-
--0.116545 0.01205 -0.16351999
-0.005765 0.04376 -0.15766
--0.105925 -0.01889 -0.19115
-
-0.44883499 -0.17316 -0.18752001
-0.45040501 -0.27245001 -0.20267
-0.420485 -0.22735001 -0.22077999
-
-0.005765 0.04376 -0.15766
--0.040395 -0.02881 -0.20667999
--0.105925 -0.01889 -0.19115
-
--0.019895 -0.21881001 -0.36255001
--0.059835 -0.23341 -0.35984001
--0.068905 -0.17981001 -0.32354
-
--0.65677498 -0.28486 0.31427999
--0.65526497 -0.16193001 0.33708
--0.71858498 -0.18570999 0.23955999
-
-0.259195 0.02269 -0.176
-0.35907501 0.07059 -0.10795
-0.359175 -0.0197 -0.15061
-
--0.49433498 0.69546997 -0.58514
--0.47443501 0.65209999 -0.59683998
--0.51469501 0.68051003 -0.57174
-
--0.20724501 -0.69445999 -0.26997999
--0.249265 -0.69514999 -0.22771999
--0.228515 -0.64073997 -0.19774
-
--0.17661501 -0.63981998 -0.23927999
--0.152975 -0.66613998 -0.27448999
--0.20724501 -0.69445999 -0.26997999
-
-0.62454498 -0.39271999 0.04435
-0.63150501 -0.32306999 0.09721
-0.64561501 -0.37198002 0.10372
-
-0.72512497 -0.40280998 0.05526
-0.69163498 -0.37717999 0.08836
-0.74167503 -0.40138 0.07409
-
--0.31862499 0.11157 -0.10718
--0.266325 0.15101 -0.06886
--0.24480499 0.12143 -0.09801
-
--0.051545 0.75455002 -0.12812
--0.247845 0.62541 -0.03466
--0.075495 0.73363998 -0.09516
-
-0.56855499 -0.27214001 -0.1024
-0.52969501 -0.24299 -0.15367
-0.55953499 -0.19656 -0.10231
-
--0.34418499 0.18421 -0.02241
--0.301705 0.19448999 0.02741
--0.266325 0.15101 -0.06886
-
--0.17661501 -0.63981998 -0.23927999
--0.228515 -0.64073997 -0.19774
--0.132525 -0.59215 -0.16823
-
--0.74042503 0.40042999 0.17667999
--0.72976501 0.37284 0.12714
--0.74736504 0.31806 0.17700001
-
--0.329715 0.31518 0.05937
--0.30900499 0.25450001 0.12933
--0.32405499 0.22228001 0.01714
-
-0.72394501 -0.43584999 0.02906
-0.756455 -0.42445 0.07686
-0.73838501 -0.45884998 0.0331
-
--0.31862499 0.11157 -0.10718
--0.18686501 0.0498 -0.14299
--0.35469501 0.06252 -0.13541
-
--0.43526501 0.09176 -0.08455
--0.38056499 0.02471 -0.15193
--0.47079498 0.02284 -0.11794
-
-0.232845 0.19128 0.00246
-0.147815 0.19112 0.00398
-0.20192499 0.21209999 0.08168
-
--0.30900499 0.25450001 0.12933
--0.28657499 0.21525999 0.16419001
--0.295275 0.20636 0.05543
-
--0.32405499 0.22228001 0.01714
--0.30900499 0.25450001 0.12933
--0.295275 0.20636 0.05543
-
--0.32405499 0.22228001 0.01714
--0.301705 0.19448999 0.02741
--0.34418499 0.18421 -0.02241
-
--0.43526501 0.09176 -0.08455
--0.43113499 0.13668 -0.06854
--0.34418499 0.18421 -0.02241
-
--0.116545 0.01205 -0.16351999
--0.140345 -0.05789 -0.20672001
--0.160285 -0.07244 -0.20541
-
--0.329715 0.31518 0.05937
--0.32405499 0.22228001 0.01714
--0.363535 0.29777 0.01081
-
--0.31862499 0.11157 -0.10718
--0.24480499 0.12143 -0.09801
--0.18686501 0.0498 -0.14299
-
-0.44600498 -0.11718 -0.16657
-0.57723499 -0.16372999 -0.05665
-0.53496498 -0.20222 -0.13642
-
--0.122175 -0.71571999 0.37543999
--0.126875 -0.71792 0.35866001
--0.100605 -0.71330002 0.37792
-
--0.301705 0.19448999 0.02741
--0.32405499 0.22228001 0.01714
--0.295275 0.20636 0.05543
-
-0.074325 -0.09863 -0.22704
-0.059725 -0.12592 -0.27848
--0.000905 -0.16063999 -0.32273998
-
-0.57723499 -0.16372999 -0.05665
-0.53613499 -0.09893 -0.08599
-0.53067501 -0.0586 -0.06884
-
-0.611035 -0.42883999 0.02128
-0.62454498 -0.39271999 0.04435
-0.66293503 -0.39085999 0.06263
-
-0.72512497 -0.40280998 0.05526
-0.66293503 -0.39085999 0.06263
-0.69163498 -0.37717999 0.08836
-
-0.68443497 -0.45104 0.0037
-0.611035 -0.42883999 0.02128
-0.66293503 -0.39085999 0.06263
-
-0.435765 -0.49491001 -0.21247999
-0.44975498 -0.50793999 -0.1924
-0.391745 -0.56583 -0.23886999
-
--0.31862499 0.11157 -0.10718
--0.35469501 0.06252 -0.13541
--0.38056499 0.02471 -0.15193
-
--0.44141499 0.60801998 -0.58164001
--0.43966499 0.60813999 -0.59201
--0.44219501 0.62398998 -0.59071999
-
-0.232995 0.12265 -0.10369
-0.23810499 0.17156 -0.03667
-0.293955 0.09814 -0.1175
-
-0.078115 0.18864 0.02789
-0.147305 0.21093 0.16179001
-0.20192499 0.21209999 0.08168
-
--0.18686501 0.0498 -0.14299
--0.190415 -0.01619 -0.18384001
--0.38056499 0.02471 -0.15193
-
--0.18686501 0.0498 -0.14299
--0.38056499 0.02471 -0.15193
--0.35469501 0.06252 -0.13541
-
-0.078115 0.18864 0.02789
--0.025365 0.17524 0.11324
-0.147305 0.21093 0.16179001
-
-0.078115 0.18864 0.02789
-0.091055 0.16486 -0.04745
--0.014785 0.14532 -0.02397
-
--0.121325 0.14207 0.02081
--0.106075 0.15324 0.06919
--0.025365 0.17524 0.11324
-
-0.47436501 0.00685 -0.07925
-0.53067501 -0.0586 -0.06884
-0.47198502 -0.04777 -0.12069
-
--0.301705 0.19448999 0.02741
--0.221775 0.16362 -0.02269
--0.266325 0.15101 -0.06886
-
--0.38056499 0.02471 -0.15193
--0.190415 -0.01619 -0.18384001
--0.310175 -0.08771 -0.20037001
-
-0.293955 0.09814 -0.1175
-0.179445 0.04258 -0.17731001
-0.232995 0.12265 -0.10369
-
--0.31862499 0.11157 -0.10718
--0.43526501 0.09176 -0.08455
--0.34418499 0.18421 -0.02241
-
--0.45953499 0.45066002 -0.34074001
--0.44885502 0.48257999 -0.32057999
--0.44795502 0.48275002 -0.23052
-
-0.53067501 -0.0586 -0.06884
-0.47436501 0.00685 -0.07925
-0.49725498 0.02933 -0.02307
-
--0.17661501 -0.63981998 -0.23927999
--0.20724501 -0.69445999 -0.26997999
--0.228515 -0.64073997 -0.19774
-
-0.074325 -0.09863 -0.22704
--0.000905 -0.16063999 -0.32273998
--0.069995 -0.13285 -0.23166
-
-0.069925 0.02503 -0.17805
--0.015555 0.06388 -0.13874
-0.093325 0.13007 -0.09003
-
--0.016475 0.76692001 -0.19555
--0.006815 0.77167 -0.18312
-0.008635 0.76769997 -0.20617001
-
-0.28848499 -0.13418 -0.22884001
-0.36023499 -0.12728 -0.21188999
-0.35949501 -0.21177999 -0.24714001
-
-0.69163498 -0.37717999 0.08836
-0.66293503 -0.39085999 0.06263
-0.64561501 -0.37198002 0.10372
-
--0.47012501 -0.68793999 -0.04621
--0.420145 -0.75016998 -0.08755
--0.47702499 -0.74514 -0.06318
-
-0.153225 0.01244 -0.18492001
-0.091085 -0.00535 -0.20563999
-0.093325 0.13007 -0.09003
-
-0.293955 0.09814 -0.1175
-0.259195 0.02269 -0.176
-0.179445 0.04258 -0.17731001
-
--0.138675 0.11073 -0.06666
--0.24480499 0.12143 -0.09801
--0.266325 0.15101 -0.06886
-
-0.27865499 -0.11254 -0.21181999
-0.28848499 -0.13418 -0.22884001
-0.290105 -0.15098 -0.25101999
-
-0.44883499 -0.17316 -0.18752001
-0.420485 -0.22735001 -0.22077999
-0.35949501 -0.21177999 -0.24714001
-
-0.093325 0.13007 -0.09003
-0.23810499 0.17156 -0.03667
-0.232995 0.12265 -0.10369
-
--0.21356501 -0.75926003 0.30533001
--0.21439501 -0.74724998 0.25917999
--0.17445499 -0.76107002 0.26183001
-
--0.42247501 -0.65561996 -0.03636
--0.36709499 -0.61487 -0.04815
--0.27737499 -0.63951 -0.09283
-
--0.083505 0.68447998 -0.17287001
--0.126565 0.67811996 -0.13629
--0.016475 0.76692001 -0.19555
-
-0.42092499 -0.38223 -0.23412001
-0.261315 -0.36248001 -0.31499001
-0.290415 -0.22259001 -0.29337
-
-0.66293503 -0.39085999 0.06263
-0.62454498 -0.39271999 0.04435
-0.64561501 -0.37198002 0.10372
-
--0.44782501 0.38021 -0.01581
--0.47220501 0.42382 -0.00262
--0.44713501 0.41133999 0.01059
-
--0.016475 0.76692001 -0.19555
--0.126565 0.67811996 -0.13629
--0.051545 0.75455002 -0.12812
-
--0.016475 0.76692001 -0.19555
--0.051545 0.75455002 -0.12812
--0.006815 0.77167 -0.18312
-
--0.060175 0.08937 -0.1052
--0.014785 0.14532 -0.02397
--0.015555 0.06388 -0.13874
-
-0.179445 0.04258 -0.17731001
-0.153225 0.01244 -0.18492001
-0.093325 0.13007 -0.09003
-
--0.33072498 -0.58639999 0.18187
--0.34688499 -0.54231998 0.18309999
--0.33488499 -0.55792 0.17202
-
-0.140395 -0.26084999 -0.35778
-0.100535 -0.31684999 -0.36356998
-0.040165 -0.24620001 -0.37231998
-
-0.22540501 -0.15247 -0.28954
-0.125885 -0.16028999 -0.32228001
-0.131915 -0.11946 -0.26507999
-
--0.25884501 -0.74322998 -0.26056
--0.262125 -0.75611 -0.24801001
--0.271495 -0.75060997 -0.24094
-
--0.058185 -0.59312 -0.27127001
--0.107915 -0.53838001 -0.23878
--0.119055 -0.34823002 -0.33359001
-
--0.238545 -0.76138 0.28424
--0.257085 -0.75538002 0.41583
--0.33710499 -0.76268997 0.2824
-
--0.57065498 0.15109 -0.06724
--0.550975 0.20959 -0.06745
--0.501245 0.20993999 -0.07225
-
--0.46016499 0.52960999 -0.57521999
--0.440755 0.59640999 -0.59333
--0.44630501 0.55679001 -0.57491001
-
-0.701595 -0.51362999 -0.01377
-0.757565 -0.47983002 0.05688
-0.74039497 -0.56462002 0.06716
-
--0.52043499 0.07819 -0.06974
--0.60025501 0.10649 -0.05573
--0.57065498 0.15109 -0.06724
-
--0.41327499 -0.49464001 -0.01295
--0.388325 -0.45629002 -0.06645
--0.357915 -0.49792999 -0.07636
-
--0.51851501 -0.35137001 -0.13174
--0.58818501 -0.35695 -0.06415
--0.579235 -0.25250999 -0.13211
-
--0.19824499 -0.74849998 0.24569
--0.189415 -0.75043999 0.19530001
--0.17445499 -0.76107002 0.26183001
-
-0.58218498 -0.58167 -0.0532
-0.66172501 -0.52612 -0.03485
-0.63202499 -0.59748001 -0.03384
-
--0.48044498 -0.07672 -0.15554
--0.430355 -0.10442 -0.17239
--0.40962502 -0.24707001 -0.19660999
-
-0.102645 -0.75471001 -0.22798
-0.18262501 -0.73998001 -0.2282
-0.269445 -0.75794998 -0.18476999
-
--0.113155 -0.72134003 0.07626
--0.125935 -0.71977997 0.05414
--0.139575 -0.71986 0.03333
-
--0.501245 0.20993999 -0.07225
--0.550975 0.20959 -0.06745
--0.60123501 0.19448 -0.05578
-
--0.57147499 0.29725 -0.05187
--0.60123501 0.19448 -0.05578
--0.62156502 0.28177999 -0.03207
-
--0.34418499 0.18421 -0.02241
--0.39040501 0.27885 -0.0233
--0.32405499 0.22228001 0.01714
-
-0.68443497 -0.45104 0.0037
-0.73838501 -0.45884998 0.0331
-0.701595 -0.51362999 -0.01377
-
-0.66172501 -0.52612 -0.03485
-0.68647499 -0.58339001 -0.0017
-0.63202499 -0.59748001 -0.03384
-
--0.52043499 0.07819 -0.06974
--0.57065498 0.15109 -0.06724
--0.501245 0.20993999 -0.07225
-
--0.57057499 -0.43936001 0.05637
--0.51724499 -0.39648998 -0.08125
--0.48772499 -0.47484001 -0.01301
-
--0.51851501 -0.35137001 -0.13174
--0.51724499 -0.39648998 -0.08125
--0.58818501 -0.35695 -0.06415
-
-0.59227501 -0.64189003 -0.02401
-0.63202499 -0.59748001 -0.03384
-0.63273499 -0.64609001 0.00875
-
-0.54107498 -0.55365002 -0.04656
-0.51241501 -0.64007004 -0.04479
-0.50317501 -0.58196999 -0.06143
-
-0.56943501 -0.51193001 -0.02993
-0.66172501 -0.52612 -0.03485
-0.58218498 -0.58167 -0.0532
-
--0.41327499 -0.49464001 -0.01295
--0.44842499 -0.42519001 -0.09399
--0.388325 -0.45629002 -0.06645
-
--0.48044498 -0.07672 -0.15554
--0.47079498 0.02284 -0.11794
--0.38056499 0.02471 -0.15193
-
--0.176455 -0.76629997 -0.28367001
--0.056505 -0.75303001 -0.26643
-0.011285 -0.76453003 -0.22976
-
--0.501245 0.20993999 -0.07225
--0.57147499 0.29725 -0.05187
--0.52155499 0.29777 -0.06353
-
--0.41327499 -0.49464001 -0.01295
--0.48772499 -0.47484001 -0.01301
--0.44842499 -0.42519001 -0.09399
-
--0.58929501 0.35665001 -0.05348
--0.59239498 0.37070999 -0.07326
--0.54577499 0.32955002 -0.08891
-
--0.420145 -0.75016998 -0.08755
--0.44606499 -0.76600998 -0.07796
--0.47702499 -0.74514 -0.06318
-
--0.166565 -0.76378998 0.10376
--0.152885 -0.76372002 0.12453
--0.18321501 -0.75733002 0.1487
-
-0.51241501 -0.64007004 -0.04479
-0.54107498 -0.55365002 -0.04656
-0.58218498 -0.58167 -0.0532
-
-0.558475 -0.70769997 0.03611
-0.522575 -0.68685997 -0.0156
-0.59227501 -0.64189003 -0.02401
-
-0.58218498 -0.58167 -0.0532
-0.63202499 -0.59748001 -0.03384
-0.59227501 -0.64189003 -0.02401
-
-0.44320499 -0.65613998 -0.05025
-0.39260502 -0.67114998 -0.11193
-0.45115501 -0.60699001 -0.15207
-
--0.47904499 -0.33529999 -0.1591
--0.48954498 -0.24917 -0.17212999
--0.39932499 -0.27525 -0.19733
-
--0.249485 -0.24631001 -0.19802999
--0.19938499 -0.27365 -0.20799
--0.18914499 -0.31829 -0.17997
-
--0.266325 0.15101 -0.06886
--0.31862499 0.11157 -0.10718
--0.34418499 0.18421 -0.02241
-
--0.579235 -0.25250999 -0.13211
--0.59406502 -0.18136 -0.12044
--0.48954498 -0.24917 -0.17212999
-
-0.58218498 -0.58167 -0.0532
-0.59227501 -0.64189003 -0.02401
-0.51241501 -0.64007004 -0.04479
-
-0.56943501 -0.51193001 -0.02993
-0.66172501 -0.51227001 -0.03209
-0.66172501 -0.52612 -0.03485
-
--0.39932499 -0.27525 -0.19733
--0.42914501 -0.31971001 -0.17452999
--0.47904499 -0.33529999 -0.1591
-
--0.42914501 -0.31971001 -0.17452999
--0.40871498 -0.39304001 -0.14109
--0.458685 -0.37923 -0.13846
-
--0.48954498 -0.24917 -0.17212999
--0.48044498 -0.07672 -0.15554
--0.39932499 -0.27525 -0.19733
-
--0.57147499 0.29725 -0.05187
--0.501245 0.20993999 -0.07225
--0.60123501 0.19448 -0.05578
-
--0.47904499 -0.33529999 -0.1591
--0.51851501 -0.35137001 -0.13174
--0.579235 -0.25250999 -0.13211
-
--0.47702499 -0.74514 -0.06318
--0.50606499 -0.70516998 -0.03412
--0.47012501 -0.68793999 -0.04621
-
-0.522575 -0.68685997 -0.0156
-0.51241501 -0.64007004 -0.04479
-0.59227501 -0.64189003 -0.02401
-
--0.49433498 0.69546997 -0.58514
--0.48884499 0.70297997 -0.56327
--0.47459499 0.69324997 -0.58602001
-
-0.44320499 -0.65613998 -0.05025
-0.45115501 -0.60699001 -0.15207
-0.50317501 -0.58196999 -0.06143
-
--0.006815 0.77167 -0.18312
--0.051545 0.75455002 -0.12812
--0.036455 0.74396004 -0.12342
-
--0.190415 -0.01619 -0.18384001
--0.229725 -0.20162001 -0.21724001
--0.310175 -0.08771 -0.20037001
-
--0.44350498 0.63459 -0.59969002
--0.47443501 0.65209999 -0.59683998
--0.457075 0.67668999 -0.58800999
-
--0.49175499 0.59293999 -0.57492001
--0.554105 0.60669998 -0.47487
--0.51469501 0.68051003 -0.57174
-
-0.51719501 -0.72348999 0.03903
-0.40176498 -0.71222 -0.03167
-0.522575 -0.68685997 -0.0156
-
--0.57005501 0.04798 -0.05057
--0.53066502 0.00663 -0.09101
--0.59998501 -0.08147 -0.08608
-
-0.073435 -0.62984001 0.4934
--0.044845 -0.65685997 0.5468
-0.065805 -0.69416 0.51382
-
-0.420485 -0.22735001 -0.22077999
-0.45040501 -0.27245001 -0.20267
-0.42092499 -0.38223 -0.23412001
-
-0.35949501 -0.21177999 -0.24714001
-0.420485 -0.22735001 -0.22077999
-0.290415 -0.22259001 -0.29337
-
--0.554105 0.60669998 -0.47487
--0.56290501 0.68952003 -0.53467999
--0.51469501 0.68051003 -0.57174
-
--0.47079498 0.02284 -0.11794
--0.53066502 0.00663 -0.09101
--0.43526501 0.09176 -0.08455
-
--0.190415 -0.01619 -0.18384001
--0.160285 -0.07244 -0.20541
--0.229725 -0.20162001 -0.21724001
-
--0.199305 -0.2299 -0.22021999
--0.19960501 -0.25952999 -0.2083
--0.19938499 -0.27365 -0.20799
-
--0.264615 -0.75880997 -0.25176001
--0.271495 -0.75060997 -0.24094
--0.262125 -0.75611 -0.24801001
-
--0.43739498 0.45532001 0.06203
--0.40747501 0.47915001 0.0356
--0.44713501 0.41133999 0.01059
-
--0.34724499 -0.58544998 -0.05828
--0.24751499 -0.60999001 -0.0966
--0.27737499 -0.63951 -0.09283
-
--0.24751499 -0.60999001 -0.0966
--0.34724499 -0.58544998 -0.05828
--0.297925 -0.53887001 -0.09417
-
--0.39643501 -0.51195999 -0.00889
--0.41327499 -0.49464001 -0.01295
--0.357915 -0.49792999 -0.07636
-
-0.44320499 -0.65613998 -0.05025
-0.51241501 -0.64007004 -0.04479
-0.522575 -0.68685997 -0.0156
-
--0.31935499 -0.27489 -0.19740999
--0.288985 -0.33368 -0.16805
--0.37912498 -0.31878 -0.18186001
-
--0.330975 0.52471001 -0.03259
--0.29095501 0.58248001 -0.04404
--0.18282499 0.59498001 -0.13044
-
-0.53496498 -0.20222 -0.13642
-0.52969501 -0.24299 -0.15367
-0.44883499 -0.17316 -0.18752001
-
--0.229725 -0.20162001 -0.21724001
--0.249485 -0.24631001 -0.19802999
--0.32967499 -0.20312 -0.20150999
-
--0.40871498 -0.39304001 -0.14109
--0.328545 -0.40797001 -0.12829
--0.388325 -0.45629002 -0.06645
-
--0.420145 -0.75016998 -0.08755
--0.418405 -0.76513 -0.09148
--0.43560501 -0.76556 -0.07625
-
-0.44883499 -0.17316 -0.18752001
-0.52969501 -0.24299 -0.15367
-0.45040501 -0.27245001 -0.20267
-
--0.18914499 -0.31829 -0.17997
--0.19886499 -0.37626999 -0.16464001
--0.288985 -0.33368 -0.16805
-
--0.39932499 -0.27525 -0.19733
--0.31935499 -0.27489 -0.19740999
--0.37912498 -0.31878 -0.18186001
-
--0.222955 -0.69486 0.43347
--0.21126499 -0.66814003 0.43307999
--0.216555 -0.65108002 0.42185001
-
--0.264615 -0.75880997 -0.25176001
--0.25884501 -0.74322998 -0.26056
--0.249135 -0.76183998 -0.26459
-
--0.029335 -0.10314 0.45814999
-0.035725 -0.09047 0.45244999
-0.043555 0.01225 0.43209
-
-0.251465 -0.18408001 -0.29662001
-0.290105 -0.15098 -0.25101999
-0.35949501 -0.21177999 -0.24714001
-
-0.004935 0.49839001 -0.08707
--0.084295 0.46479 -0.01832
--0.112925 0.44946999 -0.01904
-
-0.458255 -0.43664001 -0.18388
-0.44975498 -0.50793999 -0.1924
-0.435765 -0.49491001 -0.21247999
-
--0.36709499 -0.61487 -0.04815
--0.39643501 -0.51195999 -0.00889
--0.34724499 -0.58544998 -0.05828
-
--0.47443501 0.65209999 -0.59683998
--0.49343498 0.53766998 -0.56959999
--0.49175499 0.59293999 -0.57492001
-
-0.382645 -0.65669998 -0.17177999
-0.42197498 -0.58331001 -0.20099001
-0.45115501 -0.60699001 -0.15207
-
-0.259195 0.02269 -0.176
-0.30606501 -0.05008 -0.17846001
-0.239765 -0.07146 -0.19552
-
-0.558475 -0.70769997 0.03611
-0.67858498 -0.64014999 0.05778
-0.59101501 -0.70407997 0.1113
-
-0.37158501 -0.45105999 -0.26129999
-0.370625 -0.38014999 -0.26396999
-0.42092499 -0.38223 -0.23412001
-
--0.073375 0.61046001 -0.18223
--0.212425 0.4907 -0.10495
--0.23320499 0.5352 -0.10464
-
--0.34724499 -0.58544998 -0.05828
--0.27737499 -0.63951 -0.09283
--0.36709499 -0.61487 -0.04815
-
--0.328545 -0.40797001 -0.12829
--0.26883499 -0.37657001 -0.16448
--0.297925 -0.53887001 -0.09417
-
--0.31717501 -0.73977997 -0.10929
--0.30720501 -0.73987999 -0.10804
--0.31505501 -0.76257004 -0.12831
-
-0.435765 -0.49491001 -0.21247999
-0.37158501 -0.45105999 -0.26129999
-0.458255 -0.43664001 -0.18388
-
-0.42092499 -0.38223 -0.23412001
-0.52969501 -0.24299 -0.15367
-0.47530499 -0.39273998 -0.18283001
-
--0.36962502 -0.20292999 -0.20726999
--0.39932499 -0.27525 -0.19733
--0.40962502 -0.24707001 -0.19660999
-
--0.238365 -0.47976002 -0.11273
--0.178085 -0.52410999 -0.09604
--0.157915 -0.5673 -0.08973
-
-0.45115501 -0.60699001 -0.15207
-0.39260502 -0.67114998 -0.11193
-0.382645 -0.65669998 -0.17177999
-
-0.261315 -0.36248001 -0.31499001
-0.37158501 -0.45105999 -0.26129999
-0.251075 -0.40532001 -0.30648001
-
-0.37158501 -0.45105999 -0.26129999
-0.35170502 -0.52154999 -0.26212999
-0.251075 -0.40532001 -0.30648001
-
--0.52669498 0.41201 -0.43175999
--0.515135 0.41865002 -0.44709
--0.54327499 0.39124001 -0.37567001
-
--0.50876499 -0.69231003 -0.00193
--0.50606499 -0.70516998 -0.03412
--0.52946499 -0.75737999 -0.02987
-
-0.372915 -0.65777 -0.19226999
-0.36238499 -0.61118 -0.21527
-0.382645 -0.65669998 -0.17177999
-
-0.391745 -0.56583 -0.23886999
-0.42197498 -0.58331001 -0.20099001
-0.36238499 -0.61118 -0.21527
-
-0.36023499 -0.12728 -0.21188999
-0.33996498 -0.09883 -0.20899
-0.38315498 -0.105 -0.19958
-
-0.322565 -0.66830002 -0.22158001
-0.22237499 -0.68262001 -0.22483
-0.292015 -0.59245998 -0.26313
-
-0.36238499 -0.61118 -0.21527
-0.372915 -0.65777 -0.19226999
-0.322565 -0.66830002 -0.22158001
-
-0.292015 -0.59245998 -0.26313
-0.391745 -0.56583 -0.23886999
-0.36238499 -0.61118 -0.21527
-
-0.37158501 -0.45105999 -0.26129999
-0.391745 -0.56583 -0.23886999
-0.35170502 -0.52154999 -0.26212999
-
-0.458255 -0.43664001 -0.18388
-0.42092499 -0.38223 -0.23412001
-0.47530499 -0.39273998 -0.18283001
-
--0.26883499 -0.37657001 -0.16448
--0.328545 -0.40797001 -0.12829
--0.288985 -0.33368 -0.16805
-
--0.56290501 0.68952003 -0.53467999
--0.572925 0.70330002 -0.52133999
--0.51963501 0.70806 -0.56443001
-
--0.328545 -0.40797001 -0.12829
--0.297925 -0.53887001 -0.09417
--0.388325 -0.45629002 -0.06645
-
-0.391745 -0.56583 -0.23886999
-0.33190498 -0.54949001 -0.26895
-0.35170502 -0.52154999 -0.26212999
-
-0.37158501 -0.45105999 -0.26129999
-0.435765 -0.49491001 -0.21247999
-0.391745 -0.56583 -0.23886999
-
--0.522085 0.42964001 -0.46967999
--0.531875 0.43505001 -0.47442001
--0.52519501 0.43825001 -0.48328999
-
-0.372915 -0.65777 -0.19226999
-0.32443501 -0.74949997 -0.15917
-0.302465 -0.72740997 -0.204
-
-0.611035 -0.42883999 0.02128
-0.68443497 -0.45104 0.0037
-0.66172501 -0.51227001 -0.03209
-
-0.66172501 -0.52612 -0.03485
-0.701595 -0.51362999 -0.01377
-0.68647499 -0.58339001 -0.0017
-
--0.36254501 -0.75091003 -0.10707
--0.30734501 -0.71100998 -0.10559
--0.31717501 -0.73977997 -0.10929
-
-0.42092499 -0.38223 -0.23412001
-0.290415 -0.22259001 -0.29337
-0.420485 -0.22735001 -0.22077999
-
-0.251465 -0.18408001 -0.29662001
-0.35949501 -0.21177999 -0.24714001
-0.290415 -0.22259001 -0.29337
-
-0.292015 -0.59245998 -0.26313
-0.22237499 -0.68262001 -0.22483
-0.19210501 -0.62008999 -0.27941999
-
-0.56943501 -0.51193001 -0.02993
-0.611035 -0.42883999 0.02128
-0.66172501 -0.51227001 -0.03209
-
-0.30606501 -0.05008 -0.17846001
-0.359175 -0.0197 -0.15061
-0.33996498 -0.09883 -0.20899
-
-0.251465 -0.18408001 -0.29662001
-0.290415 -0.22259001 -0.29337
-0.200305 -0.22082001 -0.32242001
-
--0.67093498 0.16365 -0.02486
--0.69026497 0.08918 0.00135
--0.69932503 0.13755 -0.00205
-
-0.290105 -0.15098 -0.25101999
-0.251465 -0.18408001 -0.29662001
-0.22540501 -0.15247 -0.28954
-
--0.212425 0.4907 -0.10495
--0.34072498 0.34067001 0.0194
--0.312335 0.41512001 -0.03359
-
--0.000905 -0.16063999 -0.32273998
-0.059725 -0.12592 -0.27848
-0.125885 -0.16028999 -0.32228001
-
--0.233095 -0.62811001 -0.12729
--0.228515 -0.64073997 -0.19774
--0.27567499 -0.69246002 -0.18768
-
--0.44219501 0.62398998 -0.59071999
--0.44350498 0.63459 -0.59969002
--0.457075 0.67668999 -0.58800999
-
--0.019895 -0.21881001 -0.36255001
-0.040165 -0.24620001 -0.37231998
--0.019805 -0.26032 -0.37293999
-
-0.292015 -0.59245998 -0.26313
-0.33190498 -0.54949001 -0.26895
-0.391745 -0.56583 -0.23886999
-
--0.27737499 -0.63951 -0.09283
--0.24751499 -0.60999001 -0.0966
--0.233095 -0.62811001 -0.12729
-
--0.42914501 -0.31971001 -0.17452999
--0.37912498 -0.31878 -0.18186001
--0.40871498 -0.39304001 -0.14109
-
--0.40245499 0.42946999 0.00582
--0.330975 0.52471001 -0.03259
--0.23320499 0.5352 -0.10464
-
-0.241845 -0.57674 -0.28339001
-0.211805 -0.50487 -0.30047001
-0.33190498 -0.54949001 -0.26895
-
-0.211805 -0.50487 -0.30047001
-0.241845 -0.57674 -0.28339001
-0.21181499 -0.56279999 -0.28535
-
-0.211805 -0.50487 -0.30047001
-0.35170502 -0.52154999 -0.26212999
-0.33190498 -0.54949001 -0.26895
-
-0.251075 -0.40532001 -0.30648001
-0.35170502 -0.52154999 -0.26212999
-0.211805 -0.50487 -0.30047001
-
-0.239765 -0.07146 -0.19552
-0.33996498 -0.09883 -0.20899
-0.27865499 -0.11254 -0.21181999
-
-0.322565 -0.66830002 -0.22158001
-0.292015 -0.59245998 -0.26313
-0.36238499 -0.61118 -0.21527
-
-0.239765 -0.07146 -0.19552
-0.30606501 -0.05008 -0.17846001
-0.33996498 -0.09883 -0.20899
-
-0.322565 -0.66830002 -0.22158001
-0.372915 -0.65777 -0.19226999
-0.302465 -0.72740997 -0.204
-
-0.282605 -0.72681999 -0.21195999
-0.18262501 -0.73998001 -0.2282
-0.22237499 -0.68262001 -0.22483
-
-0.322565 -0.66830002 -0.22158001
-0.282605 -0.72681999 -0.21195999
-0.22237499 -0.68262001 -0.22483
-
-0.292015 -0.59245998 -0.26313
-0.19210501 -0.62008999 -0.27941999
-0.241845 -0.57674 -0.28339001
-
-0.19210501 -0.62008999 -0.27941999
-0.21181499 -0.56279999 -0.28535
-0.241845 -0.57674 -0.28339001
-
-0.151255 -0.47417999 -0.33002998
-0.211805 -0.50487 -0.30047001
-0.21181499 -0.56279999 -0.28535
-
-0.261315 -0.36248001 -0.31499001
-0.370625 -0.38014999 -0.26396999
-0.37158501 -0.45105999 -0.26129999
-
-0.239765 -0.07146 -0.19552
-0.074325 -0.09863 -0.22704
-0.091085 -0.00535 -0.20563999
-
-0.282605 -0.72681999 -0.21195999
-0.269445 -0.75794998 -0.18476999
-0.18262501 -0.73998001 -0.2282
-
-0.200805 -0.34676998 -0.33601002
-0.140395 -0.26084999 -0.35778
-0.200305 -0.22082001 -0.32242001
-
-0.20949499 8e-05 -0.18802999
-0.153225 0.01244 -0.18492001
-0.179445 0.04258 -0.17731001
-
--0.275595 -0.76456001 -0.06335
--0.244305 -0.76299004 -0.00343
--0.38783501 -0.76627998 0.13294
-
-0.172295 -0.65259003 -0.24820999
-0.19210501 -0.62008999 -0.27941999
-0.22237499 -0.68262001 -0.22483
-
-0.261315 -0.36248001 -0.31499001
-0.251075 -0.40532001 -0.30648001
-0.200805 -0.34676998 -0.33601002
-
--0.57005501 0.04798 -0.05057
--0.52043499 0.07819 -0.06974
--0.53066502 0.00663 -0.09101
-
-0.20949499 8e-05 -0.18802999
-0.179445 0.04258 -0.17731001
-0.259195 0.02269 -0.176
-
--0.46016499 0.52960999 -0.57521999
--0.44630501 0.55679001 -0.57491001
--0.47018501 0.48946999 -0.51748001
-
-0.292015 -0.59245998 -0.26313
-0.241845 -0.57674 -0.28339001
-0.33190498 -0.54949001 -0.26895
-
-0.200805 -0.34676998 -0.33601002
-0.200305 -0.22082001 -0.32242001
-0.290415 -0.22259001 -0.29337
-
--0.57057499 -0.43936001 0.05637
--0.48772499 -0.47484001 -0.01301
--0.510555 -0.49130001 0.09622
-
-0.27865499 -0.11254 -0.21181999
-0.22540501 -0.15247 -0.28954
-0.131915 -0.11946 -0.26507999
-
--0.297925 -0.53887001 -0.09417
--0.238365 -0.47976002 -0.11273
--0.157915 -0.5673 -0.08973
-
--0.44820499 0.36980999 -0.02461
--0.45510502 0.35847 -0.05053
--0.462285 0.43570999 -0.09058
-
-0.19929501 -0.75515999 -0.14499
--0.124075 -0.75598 -0.18927
-0.011285 -0.76453003 -0.22976
-
-0.322565 -0.66830002 -0.22158001
-0.302465 -0.72740997 -0.204
-0.282605 -0.72681999 -0.21195999
-
-0.19210501 -0.62008999 -0.27941999
-0.172295 -0.65259003 -0.24820999
-0.082165 -0.64961998 -0.27099001
-
-0.031555 -0.54588001 -0.32389999
-0.061695 -0.56002998 -0.32155998
-0.002175 -0.65117996 -0.26294001
-
--0.089315 -0.30382 -0.35894001
--0.099045 -0.37569 -0.34127998
--0.119055 -0.34823002 -0.33359001
-
--0.58929501 0.35665001 -0.05348
--0.54156502 0.29757 -0.05975
--0.57147499 0.29725 -0.05187
-
-0.082165 -0.64961998 -0.27099001
-0.172295 -0.65259003 -0.24820999
-0.032345 -0.66652 -0.25143
-
-0.061695 -0.56002998 -0.32155998
-0.151255 -0.47417999 -0.33002998
-0.21181499 -0.56279999 -0.28535
-
-0.131055 -0.41751999 -0.33540001
-0.251075 -0.40532001 -0.30648001
-0.151255 -0.47417999 -0.33002998
-
-0.22540501 -0.15247 -0.28954
-0.251465 -0.18408001 -0.29662001
-0.125885 -0.16028999 -0.32228001
-
-0.51838501 -0.73889 0.11006
-0.59101501 -0.70407997 0.1113
-0.57144501 -0.70275002 0.21681
-
--0.249485 -0.24631001 -0.19802999
--0.18914499 -0.31829 -0.17997
--0.288985 -0.33368 -0.16805
-
--0.27567499 -0.69246002 -0.18768
--0.25884501 -0.74322998 -0.26056
--0.271465 -0.75859001 -0.23466
-
--0.125935 -0.71977997 0.05414
--0.136375 -0.72024002 0.05244
--0.139575 -0.71986 0.03333
-
--0.36254501 -0.75091003 -0.10707
--0.47012501 -0.68793999 -0.04621
--0.27737499 -0.63951 -0.09283
-
--0.42914501 -0.31971001 -0.17452999
--0.39932499 -0.27525 -0.19733
--0.37912498 -0.31878 -0.18186001
-
-0.172295 -0.65259003 -0.24820999
-0.22237499 -0.68262001 -0.22483
-0.032345 -0.66652 -0.25143
-
-0.22237499 -0.68262001 -0.22483
-0.18262501 -0.73998001 -0.2282
-0.032345 -0.66652 -0.25143
-
-0.251075 -0.40532001 -0.30648001
-0.211805 -0.50487 -0.30047001
-0.151255 -0.47417999 -0.33002998
-
-0.200805 -0.34676998 -0.33601002
-0.251075 -0.40532001 -0.30648001
-0.131055 -0.41751999 -0.33540001
-
--0.215165 -0.74110001 0.12757
--0.18321501 -0.75733002 0.1487
--0.19240499 -0.74304001 0.15199
-
--0.38056499 0.02471 -0.15193
--0.310175 -0.08771 -0.20037001
--0.35023499 -0.1021 -0.20283001
-
--0.112925 0.44946999 -0.01904
--0.31918501 0.34056 0.04058
--0.34072498 0.34067001 0.0194
-
--0.30734501 -0.71100998 -0.10559
--0.30720501 -0.73987999 -0.10804
--0.31717501 -0.73977997 -0.10929
-
-0.18262501 -0.73998001 -0.2282
-0.102645 -0.75471001 -0.22798
-0.032345 -0.66652 -0.25143
-
-0.19210501 -0.62008999 -0.27941999
-0.082165 -0.64961998 -0.27099001
-0.061695 -0.56002998 -0.32155998
-
-0.100535 -0.31684999 -0.36356998
-0.140395 -0.26084999 -0.35778
-0.200805 -0.34676998 -0.33601002
-
--0.40245499 0.42946999 0.00582
--0.40747501 0.47915001 0.0356
--0.330975 0.52471001 -0.03259
-
--0.52043499 0.07819 -0.06974
--0.501245 0.20993999 -0.07225
--0.43113499 0.13668 -0.06854
-
-0.19210501 -0.62008999 -0.27941999
-0.061695 -0.56002998 -0.32155998
-0.21181499 -0.56279999 -0.28535
-
-0.200805 -0.34676998 -0.33601002
-0.131055 -0.41751999 -0.33540001
-0.100535 -0.31684999 -0.36356998
-
--0.52043499 0.07819 -0.06974
--0.57005501 0.04798 -0.05057
--0.60025501 0.10649 -0.05573
-
--0.53066502 0.00663 -0.09101
--0.52043499 0.07819 -0.06974
--0.43526501 0.09176 -0.08455
-
--0.35023499 -0.1021 -0.20283001
--0.430355 -0.10442 -0.17239
--0.48044498 -0.07672 -0.15554
-
-0.151255 -0.47417999 -0.33002998
-0.031555 -0.54588001 -0.32389999
-0.041465 -0.48752998 -0.34728001
-
-0.131055 -0.41751999 -0.33540001
-0.151255 -0.47417999 -0.33002998
-0.041465 -0.48752998 -0.34728001
-
-0.125885 -0.16028999 -0.32228001
-0.251465 -0.18408001 -0.29662001
-0.140395 -0.26084999 -0.35778
-
-0.382645 -0.65669998 -0.17177999
-0.36238499 -0.61118 -0.21527
-0.42197498 -0.58331001 -0.20099001
-
-0.68647499 -0.58339001 -0.0017
-0.74039497 -0.56462002 0.06716
-0.72791496 -0.59351002 0.06742
-
--0.40245499 0.42946999 0.00582
--0.312335 0.41512001 -0.03359
--0.401735 0.37047001 -0.00194
-
-0.66172501 -0.51227001 -0.03209
-0.68443497 -0.45104 0.0037
-0.701595 -0.51362999 -0.01377
-
--0.060175 0.08937 -0.1052
-0.005765 0.04376 -0.15766
--0.116545 0.01205 -0.16351999
-
-0.061495 0.71106003 -0.27132
-0.068505 0.67084 -0.27976999
-0.059645 0.68377998 -0.28246
-
--0.26883499 -0.37657001 -0.16448
--0.288985 -0.33368 -0.16805
--0.19886499 -0.37626999 -0.16464001
-
--0.32967499 -0.20312 -0.20150999
--0.249485 -0.24631001 -0.19802999
--0.31935499 -0.27489 -0.19740999
-
-0.36023499 -0.12728 -0.21188999
-0.28848499 -0.13418 -0.22884001
-0.27865499 -0.11254 -0.21181999
-
-0.012615 -0.75335999 -0.24431999
-0.032345 -0.66652 -0.25143
-0.102645 -0.75471001 -0.22798
-
--0.47702499 -0.74514 -0.06318
--0.499095 -0.76375999 -0.05418
--0.52946499 -0.75737999 -0.02987
-
--0.229725 -0.20162001 -0.21724001
--0.199305 -0.2299 -0.22021999
--0.249485 -0.24631001 -0.19802999
-
--0.76138496 0.14034 0.29812
--0.74599503 0.0726 0.28837999
--0.76316498 0.10037 0.37827
-
--0.120215 -0.74757004 0.18886999
--0.097395 -0.72411003 0.17242001
--0.129625 -0.75866997 0.17889999
-
--0.357915 -0.49792999 -0.07636
--0.388325 -0.45629002 -0.06645
--0.297925 -0.53887001 -0.09417
-
--0.18321501 -0.75733002 0.1487
--0.152885 -0.76372002 0.12453
--0.141615 -0.76162003 0.1249
-
--0.21356501 -0.75926003 0.30533001
--0.238545 -0.76138 0.28424
--0.21439501 -0.74724998 0.25917999
-
-0.041465 -0.48752998 -0.34728001
--0.009285 -0.35868999 -0.37393002
-0.100535 -0.31684999 -0.36356998
-
-0.041465 -0.48752998 -0.34728001
-0.100535 -0.31684999 -0.36356998
-0.131055 -0.41751999 -0.33540001
-
--0.35023499 -0.1021 -0.20283001
--0.48044498 -0.07672 -0.15554
--0.38056499 0.02471 -0.15193
-
--0.50876499 -0.69231003 -0.00193
--0.47767502 -0.65098999 0.02223
--0.50606499 -0.70516998 -0.03412
-
--0.073375 0.61046001 -0.18223
--0.083505 0.68447998 -0.17287001
-0.016075 0.68472 -0.25462
-
-0.251465 -0.18408001 -0.29662001
-0.200305 -0.22082001 -0.32242001
-0.140395 -0.26084999 -0.35778
-
-0.012615 -0.75335999 -0.24431999
-0.002175 -0.65117996 -0.26294001
-0.032345 -0.66652 -0.25143
-
-0.082165 -0.64961998 -0.27099001
-0.032345 -0.66652 -0.25143
-0.002175 -0.65117996 -0.26294001
-
-0.031555 -0.54588001 -0.32389999
-0.151255 -0.47417999 -0.33002998
-0.061695 -0.56002998 -0.32155998
-
-0.041465 -0.48752998 -0.34728001
--0.049465 -0.37333 -0.3702
--0.009285 -0.35868999 -0.37393002
-
--0.39040501 0.27885 -0.0233
--0.363535 0.29777 0.01081
--0.32405499 0.22228001 0.01714
-
--0.51963501 0.70806 -0.56443001
--0.49433498 0.69546997 -0.58514
--0.51469501 0.68051003 -0.57174
-
--0.48954498 -0.24917 -0.17212999
--0.59406502 -0.18136 -0.12044
--0.48044498 -0.07672 -0.15554
-
--0.54935501 -0.75695999 0.01981
--0.56031502 -0.74598999 0.02573
--0.547785 -0.71860001 0.02244
-
-0.102645 -0.75471001 -0.22798
-0.011285 -0.76453003 -0.22976
-0.012615 -0.75335999 -0.24431999
-
--0.17994499 -0.75432999 0.36115002
--0.17762501 -0.75689003 0.38146999
--0.163815 -0.75672997 0.40183998
-
-0.016075 0.68472 -0.25462
--0.048255 0.52195999 -0.13641
--0.073375 0.61046001 -0.18223
-
--0.232635 -0.74156998 0.44324001
--0.204825 -0.74662003 0.45456001
--0.222955 -0.69486 0.43347
-
--0.44782501 0.38021 -0.01581
--0.44713501 0.41133999 0.01059
--0.401735 0.37047001 -0.00194
-
--0.038565 -0.53313 -0.31079
--0.078115 -0.62351002 -0.25240999
--0.058185 -0.59312 -0.27127001
-
--0.049555 -0.31667 -0.37383999
--0.019805 -0.26032 -0.37293999
--0.009285 -0.35868999 -0.37393002
-
--0.579235 -0.25250999 -0.13211
--0.60820499 -0.28396 -0.08675
--0.59406502 -0.18136 -0.12044
-
--0.47904499 -0.33529999 -0.1591
--0.579235 -0.25250999 -0.13211
--0.48954498 -0.24917 -0.17212999
-
-0.239765 -0.07146 -0.19552
-0.27865499 -0.11254 -0.21181999
-0.074325 -0.09863 -0.22704
-
--0.36962502 -0.20292999 -0.20726999
--0.31935499 -0.27489 -0.19740999
--0.39932499 -0.27525 -0.19733
-
-0.025515 0.74473999 -0.25292999
-0.047165 0.73010002 -0.26747
-0.059645 0.68377998 -0.28246
-
--0.038565 -0.53313 -0.31079
-0.031555 -0.54588001 -0.32389999
-0.002175 -0.65117996 -0.26294001
-
--0.59406502 -0.18136 -0.12044
--0.59998501 -0.08147 -0.08608
--0.48044498 -0.07672 -0.15554
-
--0.32967499 -0.20312 -0.20150999
--0.35023499 -0.1021 -0.20283001
--0.310175 -0.08771 -0.20037001
-
--0.328545 -0.40797001 -0.12829
--0.40871498 -0.39304001 -0.14109
--0.37912498 -0.31878 -0.18186001
-
-0.025515 0.74473999 -0.25292999
-0.016075 0.68472 -0.25462
--0.083505 0.68447998 -0.17287001
-
--0.016475 0.76692001 -0.19555
-0.025515 0.74473999 -0.25292999
--0.083505 0.68447998 -0.17287001
-
--0.44842499 -0.42519001 -0.09399
--0.458685 -0.37923 -0.13846
--0.40871498 -0.39304001 -0.14109
-
-0.059645 0.68377998 -0.28246
-0.016075 0.68472 -0.25462
-0.025515 0.74473999 -0.25292999
-
--0.60123501 0.19448 -0.05578
--0.57065498 0.15109 -0.06724
--0.60025501 0.10649 -0.05573
-
-0.031555 -0.54588001 -0.32389999
--0.038565 -0.53313 -0.31079
--0.028935 -0.47416 -0.34169998
-
--0.69706497 0.27559999 0.04741
--0.62156502 0.28177999 -0.03207
--0.67165497 0.20761999 -0.01075
-
--0.36962502 -0.20292999 -0.20726999
--0.420495 -0.13227 -0.18625
--0.35023499 -0.1021 -0.20283001
-
--0.038565 -0.53313 -0.31079
-0.002175 -0.65117996 -0.26294001
--0.078115 -0.62351002 -0.25240999
-
--0.009285 -0.35868999 -0.37393002
--0.049465 -0.37333 -0.3702
--0.049555 -0.31667 -0.37383999
-
--0.019805 -0.26032 -0.37293999
--0.059835 -0.23341 -0.35984001
--0.019895 -0.21881001 -0.36255001
-
--0.39040501 0.27885 -0.0233
--0.34418499 0.18421 -0.02241
--0.43113499 0.13668 -0.06854
-
--0.36962502 -0.20292999 -0.20726999
--0.35023499 -0.1021 -0.20283001
--0.32967499 -0.20312 -0.20150999
-
--0.35023499 -0.1021 -0.20283001
--0.420495 -0.13227 -0.18625
--0.430355 -0.10442 -0.17239
-
-0.040165 -0.24620001 -0.37231998
-0.125885 -0.16028999 -0.32228001
-0.140395 -0.26084999 -0.35778
-
-0.061695 -0.56002998 -0.32155998
-0.082165 -0.64961998 -0.27099001
-0.002175 -0.65117996 -0.26294001
-
-0.040165 -0.24620001 -0.37231998
-0.100535 -0.31684999 -0.36356998
--0.009285 -0.35868999 -0.37393002
-
-0.040165 -0.24620001 -0.37231998
--0.019895 -0.21881001 -0.36255001
-0.061575 -0.19306999 -0.34928001
-
--0.117175 -0.61290001 -0.22316
--0.107915 -0.53838001 -0.23878
--0.058185 -0.59312 -0.27127001
-
--0.049555 -0.31667 -0.37383999
--0.109575 -0.27684 -0.3468
--0.059835 -0.23341 -0.35984001
-
--0.34806499 -0.62027 0.40410999
--0.32939499 -0.58321999 0.36421001
--0.354585 -0.59728001 0.33195
-
-0.002175 -0.65117996 -0.26294001
-0.012615 -0.75335999 -0.24431999
--0.056505 -0.75303001 -0.26643
-
-0.031555 -0.54588001 -0.32389999
--0.028935 -0.47416 -0.34169998
-0.041465 -0.48752998 -0.34728001
-
--0.059835 -0.23341 -0.35984001
--0.099435 -0.2215 -0.33507999
--0.068905 -0.17981001 -0.32354
-
--0.47262501 0.31153 -0.0592
--0.43113499 0.13668 -0.06854
--0.501245 0.20993999 -0.07225
-
-0.073585 0.64028999 -0.27017
-0.068505 0.67084 -0.27976999
-0.077465 0.65564003 -0.25237
-
--0.52155499 0.29777 -0.06353
--0.47262501 0.31153 -0.0592
--0.501245 0.20993999 -0.07225
-
--0.16779499 -0.59556999 -0.09223
--0.157915 -0.5673 -0.08973
--0.132525 -0.59215 -0.16823
-
--0.058185 -0.59312 -0.27127001
--0.028935 -0.47416 -0.34169998
--0.038565 -0.53313 -0.31079
-
-0.041465 -0.48752998 -0.34728001
--0.028935 -0.47416 -0.34169998
--0.049465 -0.37333 -0.3702
-
--0.119055 -0.34823002 -0.33359001
--0.089125 -0.40429001 -0.33634998
--0.049465 -0.37333 -0.3702
-
--0.44842499 -0.42519001 -0.09399
--0.51724499 -0.39648998 -0.08125
--0.458685 -0.37923 -0.13846
-
--0.262125 -0.75611 -0.24801001
--0.25884501 -0.74322998 -0.26056
--0.264615 -0.75880997 -0.25176001
-
--0.089125 -0.40429001 -0.33634998
--0.099045 -0.37569 -0.34127998
--0.049465 -0.37333 -0.3702
-
--0.019805 -0.26032 -0.37293999
--0.049555 -0.31667 -0.37383999
--0.059835 -0.23341 -0.35984001
-
--0.16091499 -0.46264999 -0.1489
--0.19886499 -0.37626999 -0.16464001
--0.178825 -0.39007 -0.16848
-
-0.57723499 -0.16372999 -0.05665
-0.55953499 -0.19656 -0.10231
-0.53496498 -0.20222 -0.13642
-
--0.51724499 -0.39648998 -0.08125
--0.51851501 -0.35137001 -0.13174
--0.458685 -0.37923 -0.13846
-
--0.47904499 -0.33529999 -0.1591
--0.458685 -0.37923 -0.13846
--0.51851501 -0.35137001 -0.13174
-
--0.42884499 -0.63210999 0.34209
--0.39039501 -0.65042 0.25218
--0.45884499 -0.68533997 0.2724
-
--0.57303501 -0.09277 0.39316002
--0.50651501 -0.10104 0.42856998
--0.49119499 0.00697 0.39306
-
--0.049555 -0.31667 -0.37383999
--0.089315 -0.30382 -0.35894001
--0.109575 -0.27684 -0.3468
-
--0.129445 -0.21128 -0.28048
--0.105115 -0.16202 -0.24193001
--0.068905 -0.17981001 -0.32354
-
-0.27501499 -0.73774002 0.33299999
-0.263195 -0.75384003 0.38103001
-0.25369499 -0.75265999 0.37801998
-
-0.27501499 -0.73774002 0.33299999
-0.307255 -0.75317001 0.29917999
-0.263195 -0.75384003 0.38103001
-
-0.21626499 -0.75853996 0.0299
-0.37226501 -0.75335999 0.0004
-0.37679501 -0.75690002 0.04199
-
-0.217575 -0.76156998 0.10704
-0.182815 -0.75714996 0.16868999
-0.17213499 -0.75156998 0.0888
-
-0.18217501 -0.72101997 0.24479
-0.169515 -0.73176003 0.21563999
-0.22463499 -0.75526001 0.22989
-
-0.46587502 -0.74139 0.21201
-0.57144501 -0.70275002 0.21681
-0.544925 -0.67612 0.29681999
-
--0.163815 -0.75672997 0.40183998
--0.149955 -0.75657997 0.42223999
--0.124945 -0.75449997 0.44332001
-
-0.74088501 -0.59263 0.15724
-0.72546501 -0.5941 0.22735001
-0.68346497 -0.63983002 0.21789
-
--0.531875 0.43505001 -0.47442001
--0.53415501 0.42109001 -0.44837002
--0.54392502 0.40847 -0.42164001
-
-0.145115 -0.74193001 0.48983002
-0.065805 -0.69416 0.51382
--0.043565 -0.73834 0.55035999
-
--0.124945 -0.75449997 0.44332001
--0.149955 -0.75657997 0.42223999
--0.129735 -0.75664001 0.42655998
-
--0.53543499 0.41438 -0.43537998
--0.53415501 0.42109001 -0.44837002
--0.52343498 0.42028999 -0.45174999
-
-0.247225 -0.73827003 0.07339
-0.230595 -0.75019997 0.08086
-0.214865 -0.76049004 0.08706
-
-0.39461498 -0.74144997 0.14291
-0.43240501 -0.75309998 0.17931999
-0.39172501 -0.75321999 0.22577
-
-0.39461498 -0.74144997 0.14291
-0.39172501 -0.75321999 0.22577
-0.37518501 -0.73981003 0.19209999
-
-0.273465 -0.75255997 0.21926001
-0.34330502 -0.75508003 0.23577999
-0.307255 -0.75317001 0.29917999
-
-0.268925 -0.75015999 0.45092999
-0.33077499 -0.74196999 0.4384
-0.253395 -0.73496002 0.46985001
-
--0.52519501 0.43825001 -0.48328999
--0.51220501 0.43668999 -0.48354
--0.522085 0.42964001 -0.46967999
-
-0.51719501 -0.72348999 0.03903
-0.37226501 -0.75335999 0.0004
-0.38144501 -0.72870003 -0.01149
-
-0.023935 -0.75346001 0.45659
-0.041895 -0.75098 0.44063
-0.060925 -0.75339996 0.44673
-
-0.51838501 -0.73889 0.11006
-0.37679501 -0.75690002 0.04199
-0.51719501 -0.72348999 0.03903
-
--0.096785 -0.71277 0.39598999
--0.126875 -0.71792 0.35866001
-0.034255 -0.70801003 0.40098999
-
-0.28172501 -0.75823997 -0.05062
-0.272735 -0.75711998 -0.10985
-0.32443501 -0.74949997 -0.15917
-
-0.21626499 -0.75853996 0.0299
-0.28172501 -0.75823997 -0.05062
-0.37226501 -0.75335999 0.0004
-
-0.098315 -0.75280998 0.43609001
-0.060925 -0.75339996 0.44673
-0.079235 -0.75045998 0.43006001
-
-0.243085 -0.75848 0.18212999
-0.273465 -0.75255997 0.21926001
-0.22463499 -0.75526001 0.22989
-
-0.071735 -0.70736 0.39019001
-0.108785 -0.70753998 0.38001999
-0.092555 -0.70641998 0.39365002
-
-0.217575 -0.76156998 0.10704
-0.227675 -0.76184998 0.16388
-0.182815 -0.75714996 0.16868999
-
-0.23564501 -0.75482002 0.39424999
-0.25369499 -0.75265999 0.37801998
-0.263195 -0.75384003 0.38103001
-
-0.307255 -0.75317001 0.29917999
-0.27501499 -0.73774002 0.33299999
-0.249485 -0.73458 0.28882999
-
-0.129605 -0.70660004 0.38347
-0.108785 -0.70753998 0.38001999
-0.145855 -0.70772003 0.36983002
-
--0.112925 0.44946999 -0.01904
--0.081355 0.49502998 0.00394
--0.29133499 0.43453999 0.10392
-
--0.167295 -0.74737 0.49738998
--0.158775 -0.70517998 0.52299
--0.204825 -0.74662003 0.45456001
-
--0.70774498 0.00346 0.16879
--0.68397499 0.00246 0.06858
--0.69850502 -0.02457 0.14891
-
--0.168155 -0.75809998 0.38451
--0.163815 -0.75672997 0.40183998
--0.17762501 -0.75689003 0.38146999
-
--0.74453499 0.0457 0.23389999
--0.75351501 0.04522 0.14867
--0.70774498 0.00346 0.16879
-
-0.40481499 -0.73542999 0.28509001
-0.46587502 -0.74139 0.21201
-0.544925 -0.67612 0.29681999
-
-0.356045 -0.73796997 0.07649
-0.34848499 -0.74596001 0.06365
-0.372925 -0.74444 0.08579
-
-0.34330502 -0.75508003 0.23577999
-0.37518501 -0.73981003 0.19209999
-0.39172501 -0.75321999 0.22577
-
-0.171975 -0.75398003 0.41638
-0.216595 -0.75247002 0.38827999
-0.268925 -0.75015999 0.45092999
-
--0.74453499 0.0457 0.23389999
--0.76094498 0.07262 0.24841
--0.77178497 0.08616 0.18837
-
-0.38517502 -0.74663002 0.10888
-0.37679501 -0.75690002 0.04199
-0.43240501 -0.75309998 0.17931999
-
-0.307255 -0.75317001 0.29917999
-0.39172501 -0.75321999 0.22577
-0.268925 -0.75015999 0.45092999
-
-0.32443501 -0.74949997 -0.15917
-0.272735 -0.75711998 -0.10985
-0.269445 -0.75794998 -0.18476999
-
-0.23355499 -0.75731003 0.17916
-0.243085 -0.75848 0.18212999
-0.22463499 -0.75526001 0.22989
-
--0.40862499 -0.51027 0.23212
--0.406595 -0.51174999 0.23107
--0.382085 -0.52368999 0.21750999
-
--0.74453499 0.0457 0.23389999
--0.67764503 0.00206 0.26896999
--0.70928497 0.03538 0.30452
-
--0.74599503 0.0726 0.28837999
--0.74184502 0.0506 0.33896999
--0.76316498 0.10037 0.37827
-
-0.071735 -0.70736 0.39019001
-0.055505 -0.70625 0.40381001
-0.034255 -0.70801003 0.40098999
-
--0.70928497 0.03538 0.30452
--0.74599503 0.0726 0.28837999
--0.76094498 0.07262 0.24841
-
--0.74184502 0.0506 0.33896999
--0.756325 0.07345 0.41839001
--0.76316498 0.10037 0.37827
-
-0.38517502 -0.74663002 0.10888
-0.372925 -0.74444 0.08579
-0.37679501 -0.75690002 0.04199
-
-0.307255 -0.75317001 0.29917999
-0.249485 -0.73458 0.28882999
-0.22463499 -0.75526001 0.22989
-
-0.38517502 -0.74663002 0.10888
-0.43240501 -0.75309998 0.17931999
-0.39461498 -0.74144997 0.14291
-
-0.25821501 -0.72514999 0.35438
-0.250725 -0.71367996 0.32457001
-0.27501499 -0.73774002 0.33299999
-
--0.54392502 0.40847 -0.42164001
--0.54327499 0.39124001 -0.37567001
--0.574305 0.39730999 -0.30334999
-
--0.70928497 0.03538 0.30452
--0.74184502 0.0506 0.33896999
--0.74599503 0.0726 0.28837999
-
--0.19240499 -0.74304001 0.15199
--0.18321501 -0.75733002 0.1487
--0.189415 -0.75043999 0.19530001
-
-0.57144501 -0.70275002 0.21681
-0.59101501 -0.70407997 0.1113
-0.63408501 -0.68242996 0.15461
-
-0.59101501 -0.70407997 0.1113
-0.67806503 -0.65469002 0.13749
-0.63408501 -0.68242996 0.15461
-
--0.74453499 0.0457 0.23389999
--0.70774498 0.00346 0.16879
--0.67764503 0.00206 0.26896999
-
--0.204825 -0.74662003 0.45456001
--0.232635 -0.74156998 0.44324001
--0.257085 -0.75538002 0.41583
-
-0.216595 -0.75247002 0.38827999
-0.23564501 -0.75482002 0.39424999
-0.268925 -0.75015999 0.45092999
-
-0.17213499 -0.75156998 0.0888
-0.136425 -0.71731003 0.08693
-0.141325 -0.71446999 0.04894
-
--0.70928497 0.03538 0.30452
--0.70194504 0.01583 0.35792
--0.74184502 0.0506 0.33896999
-
--0.70928497 0.03538 0.30452
--0.67764503 0.00206 0.26896999
--0.64516502 -0.00556 0.3159
-
--0.756325 0.07345 0.41839001
--0.74184502 0.0506 0.33896999
--0.72276497 0.02686 0.4157
-
-0.245315 -0.71125 0.33931999
-0.250725 -0.71367996 0.32457001
-0.25821501 -0.72514999 0.35438
-
-0.275065 -0.74995003 0.05247
-0.247225 -0.73827003 0.07339
-0.214865 -0.76049004 0.08706
-
-0.39172501 -0.75321999 0.22577
-0.40481499 -0.73542999 0.28509001
-0.34790501 -0.74143997 0.42344002
-
-0.307255 -0.75317001 0.29917999
-0.268925 -0.75015999 0.45092999
-0.263195 -0.75384003 0.38103001
-
-0.134945 -0.75379997 0.42655998
-0.171975 -0.75398003 0.41638
-0.268925 -0.75015999 0.45092999
-
-0.307255 -0.75317001 0.29917999
-0.34330502 -0.75508003 0.23577999
-0.39172501 -0.75321999 0.22577
-
--0.74184502 0.0506 0.33896999
--0.70194504 0.01583 0.35792
--0.72276497 0.02686 0.4157
-
--0.097395 -0.72411003 0.17242001
--0.113155 -0.72134003 0.07626
-0.141225 -0.72126999 0.18233999
-
-0.18217501 -0.72101997 0.24479
-0.145855 -0.70772003 0.36983002
-0.141225 -0.72126999 0.18233999
-
-0.17213499 -0.75156998 0.0888
-0.141225 -0.72126999 0.18233999
-0.136425 -0.71731003 0.08693
-
--0.72276497 0.02686 0.4157
--0.70194504 0.01583 0.35792
--0.64516502 -0.00556 0.3159
-
--0.707295 0.05002 0.47198002
--0.72276497 0.02686 0.4157
--0.66449501 0.01509 0.45601002
-
-0.134945 -0.75379997 0.42655998
-0.098315 -0.75280998 0.43609001
-0.115885 -0.75144997 0.42055
-
-0.34848499 -0.74596001 0.06365
-0.37679501 -0.75690002 0.04199
-0.372925 -0.74444 0.08579
-
-0.19929501 -0.75515999 -0.14499
-0.231395 -0.71984001 -0.09604
-0.18418501 -0.71306999 -0.11163
-
-0.46587502 -0.74139 0.21201
-0.51838501 -0.73889 0.11006
-0.57144501 -0.70275002 0.21681
-
--0.72276497 0.02686 0.4157
--0.64516502 -0.00556 0.3159
--0.58873501 -0.02668 0.38175999
-
-0.204165 -0.70615997 0.36240002
-0.18334499 -0.70709 0.35896
-0.16710501 -0.70596001 0.37262001
-
-0.43405499 -0.71273003 0.30693001
-0.34790501 -0.74143997 0.42344002
-0.40481499 -0.73542999 0.28509001
-
-0.269445 -0.75794998 -0.18476999
-0.19929501 -0.75515999 -0.14499
-0.011285 -0.76453003 -0.22976
-
-0.46587502 -0.74139 0.21201
-0.43240501 -0.75309998 0.17931999
-0.51838501 -0.73889 0.11006
-
-0.38517502 -0.74663002 0.10888
-0.37738499 -0.74217003 0.10322
-0.372925 -0.74444 0.08579
-
-0.243085 -0.75848 0.18212999
-0.249445 -0.75310997 0.19672001
-0.273465 -0.75255997 0.21926001
-
-0.171975 -0.75398003 0.41638
-0.134945 -0.75379997 0.42655998
-0.153365 -0.75081001 0.40972
-
-0.522575 -0.68685997 -0.0156
-0.558475 -0.70769997 0.03611
-0.51719501 -0.72348999 0.03903
-
-0.145115 -0.74193001 0.48983002
--0.043565 -0.73834 0.55035999
--0.088955 -0.75287003 0.51883999
-
-0.182815 -0.75714996 0.16868999
-0.23355499 -0.75731003 0.17916
-0.22463499 -0.75526001 0.22989
-
--0.67527496 -0.04277 0.26872
--0.65371498 -0.08158 0.31889
--0.60681499 -0.05331 0.35605999
-
-0.145855 -0.70772003 0.36983002
-0.108785 -0.70753998 0.38001999
-0.034255 -0.70801003 0.40098999
-
-0.275065 -0.74995003 0.05247
-0.214865 -0.76049004 0.08706
-0.21626499 -0.75853996 0.0299
-
-0.21626499 -0.75853996 0.0299
-0.17213499 -0.75156998 0.0888
-0.141325 -0.71446999 0.04894
-
--0.64516502 -0.00556 0.3159
--0.67527496 -0.04277 0.26872
--0.60681499 -0.05331 0.35605999
-
--0.707295 0.05002 0.47198002
--0.66449501 0.01509 0.45601002
--0.648545 0.03328 0.48077
-
--0.67091499 0.06852 0.50094002
--0.70310501 0.07475 0.49027
--0.707295 0.05002 0.47198002
-
--0.67091499 0.06852 0.50094002
--0.707295 0.05002 0.47198002
--0.648545 0.03328 0.48077
-
--0.158775 -0.70517998 0.52299
--0.222955 -0.69486 0.43347
--0.204825 -0.74662003 0.45456001
-
--0.516045 0.07047 0.53485001
--0.54655499 0.08835 0.54924999
--0.54197498 0.03751 0.51964001
-
--0.515135 0.41865002 -0.44709
--0.51723499 0.35522999 -0.21364
--0.54327499 0.39124001 -0.37567001
-
--0.113155 -0.72134003 0.07626
--0.139575 -0.71986 0.03333
--0.031635 -0.71653999 -0.15134
-
--0.64516502 -0.00556 0.3159
--0.67764503 0.00206 0.26896999
--0.67527496 -0.04277 0.26872
-
-0.43240501 -0.75309998 0.17931999
-0.46587502 -0.74139 0.21201
-0.39172501 -0.75321999 0.22577
-
-0.230595 -0.75019997 0.08086
-0.217575 -0.76156998 0.10704
-0.214865 -0.76049004 0.08706
-
--0.139575 -0.71986 0.03333
--0.098815 -0.71488998 -0.14756
--0.031635 -0.71653999 -0.15134
-
--0.677295 0.16986 0.51804001
--0.70310501 0.07475 0.49027
--0.67091499 0.06852 0.50094002
-
--0.167295 -0.74737 0.49738998
--0.204825 -0.74662003 0.45456001
--0.124945 -0.75449997 0.44332001
-
--0.212425 0.4907 -0.10495
--0.312335 0.41512001 -0.03359
--0.40245499 0.42946999 0.00582
-
--0.043565 -0.73834 0.55035999
--0.055935 -0.72981003 0.55643002
--0.107665 -0.74504997 0.54255001
-
-0.134945 -0.75379997 0.42655998
-0.060925 -0.75339996 0.44673
-0.098315 -0.75280998 0.43609001
-
--0.60681499 -0.05331 0.35605999
--0.57303501 -0.09277 0.39316002
--0.57050499 -0.03053 0.38844002
-
--0.72276497 0.02686 0.4157
--0.58873501 -0.02668 0.38175999
--0.66449501 0.01509 0.45601002
-
--0.63135502 -0.33622002 0.29066999
--0.67350502 -0.31801001 0.21348
--0.63988499 -0.38061001 0.17080999
-
--0.62156502 0.28177999 -0.03207
--0.614795 0.37119999 -0.013
--0.57147499 0.29725 -0.05187
-
--0.055935 -0.72981003 0.55643002
--0.119005 -0.73551003 0.54847
--0.107665 -0.74504997 0.54255001
-
--0.70194504 0.01583 0.35792
--0.70928497 0.03538 0.30452
--0.64516502 -0.00556 0.3159
-
--0.603685 0.00224 0.46230999
--0.648545 0.03328 0.48077
--0.66449501 0.01509 0.45601002
-
--0.54935501 -0.75695999 0.01981
--0.52946499 -0.75737999 -0.02987
--0.499095 -0.76375999 -0.05418
-
--0.573535 -0.42264999 0.23674
--0.63988499 -0.38061001 0.17080999
--0.53317501 -0.47806999 0.18746
-
--0.57746498 -0.38132 0.32298
--0.54116501 -0.33391998 0.39556
--0.61961498 -0.25518 0.37487
-
--0.088955 -0.75287003 0.51883999
--0.107665 -0.74504997 0.54255001
--0.167295 -0.74737 0.49738998
-
-0.49892502 -0.66067001 0.30966
-0.465905 -0.63949001 0.35477001
-0.43405499 -0.71273003 0.30693001
-
-0.23564501 -0.75482002 0.39424999
-0.263195 -0.75384003 0.38103001
-0.268925 -0.75015999 0.45092999
-
-0.268925 -0.75015999 0.45092999
-0.34790501 -0.74143997 0.42344002
-0.33077499 -0.74196999 0.4384
-
-0.34790501 -0.74143997 0.42344002
-0.329505 -0.71892998 0.45332001
-0.33077499 -0.74196999 0.4384
-
--0.63462502 -0.37513 0.05758
--0.57057499 -0.43936001 0.05637
--0.56052502 -0.45873001 0.12908
-
-0.33077499 -0.74196999 0.4384
-0.329505 -0.71892998 0.45332001
-0.253395 -0.73496002 0.46985001
-
--0.57057499 -0.43936001 0.05637
--0.59931499 -0.38535999 -0.00934
--0.51724499 -0.39648998 -0.08125
-
--0.63135502 -0.33622002 0.29066999
--0.57746498 -0.38132 0.32298
--0.65677498 -0.28486 0.31427999
-
-0.068865 0.56655998 -0.20183001
-0.075975 0.58987 -0.22885
-0.069325 0.57973999 -0.17223
-
-0.222605 -0.71620003 -0.04485
-0.141325 -0.71446999 0.04894
-0.18418501 -0.71306999 -0.11163
-
-0.272735 -0.75711998 -0.10985
-0.19929501 -0.75515999 -0.14499
-0.269445 -0.75794998 -0.18476999
-
-0.182815 -0.75714996 0.16868999
-0.169515 -0.73176003 0.21563999
-0.141225 -0.72126999 0.18233999
-
--0.60681499 -0.05331 0.35605999
--0.58873501 -0.02668 0.38175999
--0.64516502 -0.00556 0.3159
-
--0.54197498 0.03751 0.51964001
--0.60431499 0.04708 0.51540001
--0.603685 0.00224 0.46230999
-
--0.603685 0.00224 0.46230999
--0.627995 0.04726 0.49209
--0.648545 0.03328 0.48077
-
--0.307395 -0.74459 0.46473999
--0.257085 -0.75538002 0.41583
--0.232635 -0.74156998 0.44324001
-
-0.214865 -0.76049004 0.08706
-0.17213499 -0.75156998 0.0888
-0.21626499 -0.75853996 0.0299
-
-0.307255 -0.75317001 0.29917999
-0.22463499 -0.75526001 0.22989
-0.273465 -0.75255997 0.21926001
-
--0.63462502 -0.37513 0.05758
--0.56052502 -0.45873001 0.12908
--0.63988499 -0.38061001 0.17080999
-
-0.35073502 -0.73208 -0.14142
-0.39260502 -0.67114998 -0.11193
-0.369995 -0.75161003 -0.02044
-
--0.603685 0.00224 0.46230999
--0.547775 -0.01096 0.39499001
--0.527495 0.03341 0.50833
-
--0.60431499 0.04708 0.51540001
--0.627995 0.04726 0.49209
--0.603685 0.00224 0.46230999
-
-0.023935 -0.75346001 0.45659
-0.134945 -0.75379997 0.42655998
--0.013045 -0.75356003 0.46638
-
--0.41275501 -0.52455002 0.07158
--0.510555 -0.49130001 0.09622
--0.48772499 -0.47484001 -0.01301
-
--0.547775 -0.01096 0.39499001
--0.49119499 0.00697 0.39306
--0.527495 0.03341 0.50833
-
--0.57050499 -0.03053 0.38844002
--0.547775 -0.01096 0.39499001
--0.58873501 -0.02668 0.38175999
-
--0.573535 -0.42264999 0.23674
--0.499585 -0.45534 0.28041
--0.57746498 -0.38132 0.32298
-
--0.60170502 0.42654999 -0.05351
--0.62411499 0.60556 -0.39534
--0.61443501 0.52313 -0.27403999
-
-0.37679501 -0.75690002 0.04199
-0.33116501 -0.74032997 0.055
-0.275065 -0.74995003 0.05247
-
--0.54935501 -0.75695999 0.01981
--0.547785 -0.71860001 0.02244
--0.52946499 -0.75737999 -0.02987
-
--0.56019501 -0.74653 0.0799
--0.555005 -0.74924004 0.06549
--0.54935501 -0.75695999 0.01981
-
-0.37679501 -0.75690002 0.04199
-0.37226501 -0.75335999 0.0004
-0.51719501 -0.72348999 0.03903
-
--0.56052502 -0.45873001 0.12908
--0.57057499 -0.43936001 0.05637
--0.510555 -0.49130001 0.09622
-
--0.57746498 -0.38132 0.32298
--0.61961498 -0.25518 0.37487
--0.65677498 -0.28486 0.31427999
-
--0.50651501 -0.10104 0.42856998
--0.436525 -0.08632 0.43841
--0.49119499 0.00697 0.39306
-
--0.603685 0.00224 0.46230999
--0.527495 0.03341 0.50833
--0.54197498 0.03751 0.51964001
-
--0.516045 0.07047 0.53485001
--0.54197498 0.03751 0.51964001
--0.527495 0.03341 0.50833
-
-0.182815 -0.75714996 0.16868999
-0.22463499 -0.75526001 0.22989
-0.169515 -0.73176003 0.21563999
-
--0.555005 -0.74924004 0.06549
--0.56031502 -0.74598999 0.02573
--0.54935501 -0.75695999 0.01981
-
-0.249445 -0.75310997 0.19672001
-0.26935499 -0.75383003 0.20142
-0.273465 -0.75255997 0.21926001
-
--0.54197498 0.03751 0.51964001
--0.58654499 0.0687 0.53747002
--0.60431499 0.04708 0.51540001
-
--0.58654499 0.0687 0.53747002
--0.59962502 0.11646 0.54145
--0.677295 0.16986 0.51804001
-
-0.247805 -0.73291 -0.06195
-0.28172501 -0.75823997 -0.05062
-0.21626499 -0.75853996 0.0299
-
--0.555005 -0.74924004 0.06549
--0.56019501 -0.74653 0.0799
--0.547785 -0.71860001 0.02244
-
-0.25369499 -0.75265999 0.37801998
-0.25821501 -0.72514999 0.35438
-0.27501499 -0.73774002 0.33299999
-
-0.231395 -0.71984001 -0.09604
-0.272735 -0.75711998 -0.10985
-0.28172501 -0.75823997 -0.05062
-
--0.499095 -0.76375999 -0.05418
--0.47702499 -0.74514 -0.06318
--0.47280499 -0.76528 -0.06571
-
--0.53317501 -0.47806999 0.18746
--0.56052502 -0.45873001 0.12908
--0.52072498 -0.48604 0.17909
-
-0.51838501 -0.73889 0.11006
-0.558475 -0.70769997 0.03611
-0.59101501 -0.70407997 0.1113
-
--0.462365 -0.76483002 -0.06405
--0.499095 -0.76375999 -0.05418
--0.47280499 -0.76528 -0.06571
-
--0.555005 -0.74924004 0.06549
--0.547785 -0.71860001 0.02244
--0.56031502 -0.74598999 0.02573
-
--0.57050499 -0.03053 0.38844002
--0.57303501 -0.09277 0.39316002
--0.49119499 0.00697 0.39306
-
--0.56052502 -0.45873001 0.12908
--0.510555 -0.49130001 0.09622
--0.52072498 -0.48604 0.17909
-
--0.126875 -0.71792 0.35866001
--0.141445 -0.71961998 0.33926998
-0.034255 -0.70801003 0.40098999
-
-0.19929501 -0.75515999 -0.14499
-0.272735 -0.75711998 -0.10985
-0.231395 -0.71984001 -0.09604
-
-0.204165 -0.70615997 0.36240002
-0.16710501 -0.70596001 0.37262001
-0.145855 -0.70772003 0.36983002
-
--0.275595 -0.76456001 -0.06335
--0.38783501 -0.76627998 0.13294
--0.499095 -0.76375999 -0.05418
-
--0.45211498 -0.74226997 0.21997999
--0.45942501 -0.75005997 0.21047001
--0.457565 -0.75337997 0.23136999
-
--0.39643501 -0.51195999 -0.00889
--0.40209499 -0.53867001 0.05158
--0.41327499 -0.49464001 -0.01295
-
--0.40209499 -0.53867001 0.05158
--0.41275501 -0.52455002 0.07158
--0.41327499 -0.49464001 -0.01295
-
--0.41327499 -0.49464001 -0.01295
--0.41275501 -0.52455002 0.07158
--0.48772499 -0.47484001 -0.01301
-
--0.52077499 -0.38400002 0.37219002
--0.57746498 -0.38132 0.32298
--0.47914501 -0.41923 0.35875
-
--0.52077499 -0.38400002 0.37219002
--0.54116501 -0.33391998 0.39556
--0.57746498 -0.38132 0.32298
-
-0.242435 -0.69941002 0.47040001
-0.253305 -0.66041 0.46727001
-0.153435 -0.64473 0.48566002
-
--0.25963499 -0.76286003 0.28113001
--0.238545 -0.76138 0.28424
--0.33710499 -0.76268997 0.2824
-
--0.43560501 -0.76556 -0.07625
--0.39801498 -0.76503998 -0.08748
--0.35171501 -0.76720001 -0.03957
-
--0.56019501 -0.74653 0.0799
--0.54935501 -0.75695999 0.01981
--0.51762501 -0.76198997 0.10242
-
--0.510555 -0.49130001 0.09622
--0.40885502 -0.52321999 0.18152
--0.52072498 -0.48604 0.17909
-
--0.510555 -0.49130001 0.09622
--0.41275501 -0.52455002 0.07158
--0.40885502 -0.52321999 0.18152
-
--0.65677498 -0.28486 0.31427999
--0.67350502 -0.31801001 0.21348
--0.63135502 -0.33622002 0.29066999
-
--0.16275499 -0.66514 0.49737
--0.21126499 -0.66814003 0.43307999
--0.222955 -0.69486 0.43347
-
--0.154315 -0.75793999 0.40488998
--0.149955 -0.75657997 0.42223999
--0.163815 -0.75672997 0.40183998
-
-0.51838501 -0.73889 0.11006
-0.43240501 -0.75309998 0.17931999
-0.37679501 -0.75690002 0.04199
-
--0.44606499 -0.76600998 -0.07796
--0.43560501 -0.76556 -0.07625
--0.462365 -0.76483002 -0.06405
-
--0.52077499 -0.38400002 0.37219002
--0.47914501 -0.41923 0.35875
--0.437295 -0.37362999 0.41646999
-
-0.268925 -0.75015999 0.45092999
--0.088955 -0.75287003 0.51883999
--0.013045 -0.75356003 0.46638
-
--0.379445 -0.76219002 -0.10469
--0.420145 -0.75016998 -0.08755
--0.36254501 -0.75091003 -0.10707
-
--0.39801498 -0.76503998 -0.08748
--0.43560501 -0.76556 -0.07625
--0.418405 -0.76513 -0.09148
-
--0.54116501 -0.33391998 0.39556
--0.52077499 -0.38400002 0.37219002
--0.50455502 -0.31641001 0.42362999
-
-0.18418501 -0.71306999 -0.11163
--0.031635 -0.71653999 -0.15134
-0.19929501 -0.75515999 -0.14499
-
-0.134945 -0.75379997 0.42655998
-0.268925 -0.75015999 0.45092999
--0.013045 -0.75356003 0.46638
-
-0.27501499 -0.73774002 0.33299999
-0.250725 -0.71367996 0.32457001
-0.249485 -0.73458 0.28882999
-
--0.379445 -0.76219002 -0.10469
--0.39801498 -0.76503998 -0.08748
--0.420145 -0.75016998 -0.08755
-
--0.39801498 -0.76503998 -0.08748
--0.418405 -0.76513 -0.09148
--0.420145 -0.75016998 -0.08755
-
--0.52077499 -0.38400002 0.37219002
--0.437295 -0.37362999 0.41646999
--0.50455502 -0.31641001 0.42362999
-
--0.48884499 0.70297997 -0.56327
--0.457075 0.67668999 -0.58800999
--0.47459499 0.69324997 -0.58602001
-
-0.204165 -0.70615997 0.36240002
-0.250725 -0.71367996 0.32457001
-0.245315 -0.71125 0.33931999
-
--0.40862499 -0.51027 0.23212
--0.403395 -0.47771 0.30250999
--0.499585 -0.45534 0.28041
-
--0.499585 -0.45534 0.28041
--0.403395 -0.47771 0.30250999
--0.47914501 -0.41923 0.35875
-
-0.473535 -0.68335999 0.30688
-0.544925 -0.67612 0.29681999
-0.49892502 -0.66067001 0.30966
-
-0.63936501 -0.64530998 0.26995001
-0.57144501 -0.70275002 0.21681
-0.68346497 -0.63983002 0.21789
-
-0.37679501 -0.75690002 0.04199
-0.34848499 -0.74596001 0.06365
-0.33116501 -0.74032997 0.055
-
--0.403615 -0.76533997 0.20007999
--0.51126499 -0.75096001 0.14734
--0.51762501 -0.76198997 0.10242
-
--0.41275501 -0.52455002 0.07158
--0.38878502 -0.53153 0.12594
--0.40885502 -0.52321999 0.18152
-
--0.50172501 -0.31013 0.42847
--0.54116501 -0.33391998 0.39556
--0.50455502 -0.31641001 0.42362999
-
--0.437295 -0.37362999 0.41646999
--0.54116501 -0.33391998 0.39556
--0.50172501 -0.31013 0.42847
-
-0.250725 -0.71367996 0.32457001
-0.204165 -0.70615997 0.36240002
-0.145855 -0.70772003 0.36983002
-
--0.34996498 -0.76412003 -0.09704
--0.39801498 -0.76503998 -0.08748
--0.379445 -0.76219002 -0.10469
-
--0.39801498 -0.76503998 -0.08748
--0.33272499 -0.76374001 -0.11234
--0.35171501 -0.76720001 -0.03957
-
--0.52072498 -0.48604 0.17909
--0.499585 -0.45534 0.28041
--0.53317501 -0.47806999 0.18746
-
--0.51212502 -0.2273 0.45049999
--0.61961498 -0.25518 0.37487
--0.54116501 -0.33391998 0.39556
-
-0.28172501 -0.75823997 -0.05062
-0.32443501 -0.74949997 -0.15917
-0.369995 -0.75161003 -0.02044
-
--0.39801498 -0.76503998 -0.08748
--0.34996498 -0.76412003 -0.09704
--0.33272499 -0.76374001 -0.11234
-
--0.33272499 -0.76374001 -0.11234
--0.34996498 -0.76412003 -0.09704
--0.36254501 -0.75091003 -0.10707
-
--0.34996498 -0.76412003 -0.09704
--0.379445 -0.76219002 -0.10469
--0.36254501 -0.75091003 -0.10707
-
--0.403615 -0.76533997 0.20007999
--0.45942501 -0.75005997 0.21047001
--0.51126499 -0.75096001 0.14734
-
--0.244305 -0.76299004 -0.00343
--0.252265 -0.76543999 0.06978
--0.31338499 -0.75958 0.08819
-
--0.43739498 0.45532001 0.06203
--0.35580502 0.52299 0.06101
--0.247845 0.62541 -0.03466
-
--0.158775 -0.70517998 0.52299
--0.16275499 -0.66514 0.49737
--0.222955 -0.69486 0.43347
-
--0.499585 -0.45534 0.28041
--0.573535 -0.42264999 0.23674
--0.53317501 -0.47806999 0.18746
-
-0.43405499 -0.71273003 0.30693001
-0.390485 -0.69848 0.41848
-0.34790501 -0.74143997 0.42344002
-
--0.33272499 -0.76374001 -0.11234
--0.36254501 -0.75091003 -0.10707
--0.31717501 -0.73977997 -0.10929
-
--0.40862499 -0.51027 0.23212
--0.499585 -0.45534 0.28041
--0.52072498 -0.48604 0.17909
-
--0.57746498 -0.38132 0.32298
--0.499585 -0.45534 0.28041
--0.47914501 -0.41923 0.35875
-
--0.457565 -0.75337997 0.23136999
--0.47864498 -0.74934998 0.25862
--0.45211498 -0.74226997 0.21997999
-
-0.141225 -0.72126999 0.18233999
-0.169515 -0.73176003 0.21563999
-0.18217501 -0.72101997 0.24479
-
--0.75503502 0.05844 0.12856
--0.75351501 0.04522 0.14867
--0.77178497 0.08616 0.18837
-
--0.403395 -0.47771 0.30250999
--0.37079498 -0.49140999 0.28962999
--0.35775501 -0.44438 0.37122002
-
--0.249135 -0.76183998 -0.26459
--0.25644501 -0.76240997 -0.24681999
--0.264615 -0.75880997 -0.25176001
-
--0.264615 -0.75880997 -0.25176001
--0.25644501 -0.76240997 -0.24681999
--0.271465 -0.75859001 -0.23466
-
--0.45942501 -0.75005997 0.21047001
--0.403615 -0.76533997 0.20007999
--0.457565 -0.75337997 0.23136999
-
--0.50058498 -0.72952003 0.32737999
--0.47838501 -0.72314003 0.26280001
--0.47864498 -0.74934998 0.25862
-
--0.74582497 0.34598999 0.25691
--0.74152496 0.38702 0.23667
--0.74042503 0.40042999 0.17667999
-
--0.40862499 -0.51027 0.23212
--0.52072498 -0.48604 0.17909
--0.40885502 -0.52321999 0.18152
-
--0.34414501 -0.48889999 0.33360001
--0.34850498 -0.42101002 0.38814999
--0.35775501 -0.44438 0.37122002
-
--0.249135 -0.76183998 -0.26459
--0.23188499 -0.76166 -0.28009001
--0.176455 -0.76629997 -0.28367001
-
--0.25644501 -0.76240997 -0.24681999
--0.249135 -0.76183998 -0.26459
--0.271465 -0.75859001 -0.23466
-
--0.249135 -0.76183998 -0.26459
--0.285585 -0.75900002 -0.19978001
--0.271465 -0.75859001 -0.23466
-
--0.230425 -0.75021004 -0.08579
--0.275595 -0.76456001 -0.06335
--0.19269501 -0.75025002 -0.15227
-
--0.45830502 -0.75790001 0.34023998
--0.47864498 -0.74934998 0.25862
--0.457565 -0.75337997 0.23136999
-
--0.49865501 -0.72585999 0.36729
--0.50058498 -0.72952003 0.32737999
--0.49940498 -0.74658997 0.33923
-
--0.55800499 0.38182999 -0.29503
--0.57997501 0.39771 -0.2633
--0.57806499 0.41137001 -0.27343
-
-0.17213499 -0.75156998 0.0888
-0.214865 -0.76049004 0.08706
-0.217575 -0.76156998 0.10704
-
--0.38783501 -0.76627998 0.13294
--0.35726501 -0.76607002 0.13902
--0.37178501 -0.76844002 0.17385
-
--0.437295 -0.37362999 0.41646999
--0.34850498 -0.42101002 0.38814999
--0.306675 -0.36883999 0.43159
-
-0.018465 -0.70608002 0.41395
--0.096785 -0.71277 0.39598999
-0.034255 -0.70801003 0.40098999
-
--0.31505501 -0.76257004 -0.12831
--0.20019501 -0.76468002 -0.19624001
--0.275595 -0.76456001 -0.06335
-
--0.31505501 -0.76257004 -0.12831
--0.285585 -0.75900002 -0.19978001
--0.20019501 -0.76468002 -0.19624001
-
--0.33272499 -0.76374001 -0.11234
--0.31505501 -0.76257004 -0.12831
--0.275595 -0.76456001 -0.06335
-
--0.462365 -0.76483002 -0.06405
--0.275595 -0.76456001 -0.06335
--0.499095 -0.76375999 -0.05418
-
--0.56019501 -0.74653 0.0799
--0.54181499 -0.69334 0.08588
--0.547785 -0.71860001 0.02244
-
--0.204825 -0.74662003 0.45456001
--0.257085 -0.75538002 0.41583
--0.17994499 -0.75432999 0.36115002
-
--0.403615 -0.76533997 0.20007999
--0.38783501 -0.76627998 0.13294
--0.37178501 -0.76844002 0.17385
-
--0.47779499 -0.74220001 0.42571999
--0.49865501 -0.72585999 0.36729
--0.49940498 -0.74658997 0.33923
-
--0.403395 -0.47771 0.30250999
--0.35775501 -0.44438 0.37122002
--0.47914501 -0.41923 0.35875
-
--0.437295 -0.37362999 0.41646999
--0.35775501 -0.44438 0.37122002
--0.34850498 -0.42101002 0.38814999
-
--0.43411499 -0.75475998 0.44608002
--0.47779499 -0.74220001 0.42571999
--0.49940498 -0.74658997 0.33923
-
--0.031635 -0.71653999 -0.15134
--0.124075 -0.75598 -0.18927
-0.19929501 -0.75515999 -0.14499
-
--0.176455 -0.76629997 -0.28367001
--0.23188499 -0.76166 -0.28009001
--0.20123501 -0.75469002 -0.29017
-
--0.462365 -0.76483002 -0.06405
--0.35171501 -0.76720001 -0.03957
--0.275595 -0.76456001 -0.06335
-
--0.33328499 -0.75277 0.11401
--0.35726501 -0.76607002 0.13902
--0.38783501 -0.76627998 0.13294
-
--0.50564499 -0.26843 0.44533001
--0.54116501 -0.33391998 0.39556
--0.437295 -0.37362999 0.41646999
-
--0.70310501 0.07475 0.49027
--0.74907501 0.12734 0.44921001
--0.754655 0.10016 0.44153999
-
--0.275595 -0.76456001 -0.06335
--0.35171501 -0.76720001 -0.03957
--0.33272499 -0.76374001 -0.11234
-
--0.244305 -0.76299004 -0.00343
--0.31338499 -0.75958 0.08819
--0.38783501 -0.76627998 0.13294
-
--0.31338499 -0.75958 0.08819
--0.33328499 -0.75277 0.11401
--0.38783501 -0.76627998 0.13294
-
--0.31338499 -0.75958 0.08819
--0.317565 -0.74244003 0.10792
--0.33328499 -0.75277 0.11401
-
--0.37656502 -0.29565001 0.46369999
--0.437295 -0.37362999 0.41646999
--0.306675 -0.36883999 0.43159
-
--0.34414501 -0.48889999 0.33360001
--0.35775501 -0.44438 0.37122002
--0.37079498 -0.49140999 0.28962999
-
-0.011285 -0.76453003 -0.22976
-0.102645 -0.75471001 -0.22798
-0.269445 -0.75794998 -0.18476999
-
--0.249135 -0.76183998 -0.26459
--0.176455 -0.76629997 -0.28367001
--0.20019501 -0.76468002 -0.19624001
-
--0.285585 -0.75900002 -0.19978001
--0.249135 -0.76183998 -0.26459
--0.20019501 -0.76468002 -0.19624001
-
--0.462365 -0.76483002 -0.06405
--0.43560501 -0.76556 -0.07625
--0.35171501 -0.76720001 -0.03957
-
--0.272745 -0.45799 0.41743
--0.306675 -0.36883999 0.43159
--0.34850498 -0.42101002 0.38814999
-
--0.707295 0.05002 0.47198002
--0.754655 0.10016 0.44153999
--0.756325 0.07345 0.41839001
-
--0.244305 -0.76299004 -0.00343
--0.275595 -0.76456001 -0.06335
--0.25025499 -0.76152 -0.04266
-
--0.38783501 -0.76627998 0.13294
--0.51762501 -0.76198997 0.10242
--0.499095 -0.76375999 -0.05418
-
--0.302635 -0.74605003 0.09617
--0.317565 -0.74244003 0.10792
--0.31338499 -0.75958 0.08819
-
--0.403615 -0.76533997 0.20007999
--0.37178501 -0.76844002 0.17385
--0.457565 -0.75337997 0.23136999
-
--0.45830502 -0.75790001 0.34023998
--0.49940498 -0.74658997 0.33923
--0.47864498 -0.74934998 0.25862
-
-0.39172501 -0.75321999 0.22577
-0.46587502 -0.74139 0.21201
-0.40481499 -0.73542999 0.28509001
-
--0.230425 -0.75021004 -0.08579
--0.25025499 -0.76152 -0.04266
--0.275595 -0.76456001 -0.06335
-
--0.19269501 -0.75025002 -0.15227
--0.20012501 -0.73857002 -0.12739
--0.230425 -0.75021004 -0.08579
-
--0.230425 -0.75021004 -0.08579
--0.228295 -0.73980003 -0.05803
--0.25025499 -0.76152 -0.04266
-
--0.20019501 -0.76468002 -0.19624001
--0.19269501 -0.75025002 -0.15227
--0.275595 -0.76456001 -0.06335
-
--0.43411499 -0.75475998 0.44608002
--0.49940498 -0.74658997 0.33923
--0.45830502 -0.75790001 0.34023998
-
--0.34414501 -0.48889999 0.33360001
--0.272745 -0.45799 0.41743
--0.34850498 -0.42101002 0.38814999
-
-0.141325 -0.71446999 0.04894
--0.031635 -0.71653999 -0.15134
-0.18418501 -0.71306999 -0.11163
-
--0.20019501 -0.76468002 -0.19624001
--0.126185 -0.73445999 -0.17226
--0.19269501 -0.75025002 -0.15227
-
--0.244305 -0.76299004 -0.00343
--0.21838499 -0.76528 0.04031
--0.252265 -0.76543999 0.06978
-
-0.34330502 -0.75508003 0.23577999
-0.35800499 -0.74028 0.20723
-0.37518501 -0.73981003 0.19209999
-
-0.268925 -0.75015999 0.45092999
-0.145115 -0.74193001 0.48983002
--0.088955 -0.75287003 0.51883999
-
--0.437295 -0.37362999 0.41646999
--0.47914501 -0.41923 0.35875
--0.35775501 -0.44438 0.37122002
-
--0.19269501 -0.75025002 -0.15227
--0.157735 -0.71690002 -0.13885
--0.20012501 -0.73857002 -0.12739
-
--0.212265 -0.71635002 -0.05771
--0.20012501 -0.73857002 -0.12739
--0.157735 -0.71690002 -0.13885
-
--0.212265 -0.71635002 -0.05771
--0.228295 -0.73980003 -0.05803
--0.230425 -0.75021004 -0.08579
-
--0.21838499 -0.76528 0.04031
--0.20473499 -0.76521004 0.06109
--0.252265 -0.76543999 0.06978
-
--0.302635 -0.74605003 0.09617
--0.252265 -0.76543999 0.06978
--0.23188499 -0.74691002 0.11138
-
-0.18217501 -0.72101997 0.24479
-0.250725 -0.71367996 0.32457001
-0.145855 -0.70772003 0.36983002
-
--0.20019501 -0.76468002 -0.19624001
--0.124075 -0.75598 -0.18927
--0.126185 -0.73445999 -0.17226
-
--0.212265 -0.71635002 -0.05771
--0.230425 -0.75021004 -0.08579
--0.20012501 -0.73857002 -0.12739
-
--0.23126499 -0.75763 -0.00567
--0.23070499 -0.76289001 0.01753
--0.244305 -0.76299004 -0.00343
-
--0.341875 -0.76486 0.26566999
--0.33710499 -0.76268997 0.2824
--0.35217499 -0.76522003 0.26378
-
--0.43411499 -0.75475998 0.44608002
--0.257085 -0.75538002 0.41583
--0.307395 -0.74459 0.46473999
-
--0.42102501 -0.74413002 0.47407001
--0.40310501 -0.70723999 0.48404999
--0.44044498 -0.72050003 0.46478001
-
-0.18217501 -0.72101997 0.24479
-0.22463499 -0.75526001 0.22989
-0.249485 -0.73458 0.28882999
-
-0.222605 -0.71620003 -0.04485
-0.21626499 -0.75853996 0.0299
-0.141325 -0.71446999 0.04894
-
--0.18956499 -0.71819 -0.03302
--0.199555 -0.71782997 -0.03538
--0.204055 -0.71999001 -0.05273
-
--0.21838499 -0.76528 0.04031
--0.244305 -0.76299004 -0.00343
--0.23070499 -0.76289001 0.01753
-
--0.21987499 -0.76162003 0.01856
--0.21838499 -0.76528 0.04031
--0.23070499 -0.76289001 0.01753
-
--0.457565 -0.75337997 0.23136999
--0.37178501 -0.76844002 0.17385
--0.35217499 -0.76522003 0.26378
-
--0.33710499 -0.76268997 0.2824
--0.286705 -0.76327003 0.29353001
--0.25963499 -0.76286003 0.28113001
-
--0.126185 -0.73445999 -0.17226
--0.157735 -0.71690002 -0.13885
--0.19269501 -0.75025002 -0.15227
-
--0.18640499 -0.71848999 -0.01372
--0.18956499 -0.71819 -0.03302
--0.204055 -0.71999001 -0.05273
-
--0.42102501 -0.74413002 0.47407001
--0.47779499 -0.74220001 0.42571999
--0.43411499 -0.75475998 0.44608002
-
--0.43411499 -0.75475998 0.44608002
--0.45830502 -0.75790001 0.34023998
--0.33710499 -0.76268997 0.2824
-
--0.37914501 -0.74181999 0.48116001
--0.42102501 -0.74413002 0.47407001
--0.43411499 -0.75475998 0.44608002
-
-0.250725 -0.71367996 0.32457001
-0.18217501 -0.72101997 0.24479
-0.249485 -0.73458 0.28882999
-
-0.282605 -0.72681999 -0.21195999
-0.302465 -0.72740997 -0.204
-0.269445 -0.75794998 -0.18476999
-
--0.124075 -0.75598 -0.18927
--0.031635 -0.71653999 -0.15134
--0.126185 -0.73445999 -0.17226
-
--0.21838499 -0.76528 0.04031
--0.207995 -0.76482002 0.04198
--0.20473499 -0.76521004 0.06109
-
--0.302635 -0.74605003 0.09617
--0.31338499 -0.75958 0.08819
--0.252265 -0.76543999 0.06978
-
--0.35217499 -0.76522003 0.26378
--0.33710499 -0.76268997 0.2824
--0.45830502 -0.75790001 0.34023998
-
--0.37914501 -0.74181999 0.48116001
--0.40310501 -0.70723999 0.48404999
--0.42102501 -0.74413002 0.47407001
-
--0.20019501 -0.76468002 -0.19624001
--0.176455 -0.76629997 -0.28367001
-0.011285 -0.76453003 -0.22976
-
-0.369995 -0.75161003 -0.02044
-0.39260502 -0.67114998 -0.11193
-0.40176498 -0.71222 -0.03167
-
-0.473535 -0.68335999 0.30688
-0.40481499 -0.73542999 0.28509001
-0.544925 -0.67612 0.29681999
-
--0.031635 -0.71653999 -0.15134
--0.098815 -0.71488998 -0.14756
--0.126185 -0.73445999 -0.17226
-
--0.152335 -0.71831001 0.01116
--0.176385 -0.71885002 -0.01135
--0.18640499 -0.71848999 -0.01372
-
-0.44266499 -0.61000999 0.39195
-0.367225 -0.65199997 0.44060001
-0.390485 -0.69848 0.41848
-
-0.136425 -0.71731003 0.08693
--0.113155 -0.72134003 0.07626
-0.141325 -0.71446999 0.04894
-
-0.023935 -0.75346001 0.45659
--0.013045 -0.75356003 0.46638
-0.003695 -0.75341003 0.45222
-
-0.21626499 -0.75853996 0.0299
-0.37679501 -0.75690002 0.04199
-0.275065 -0.74995003 0.05247
-
--0.124075 -0.75598 -0.18927
--0.20019501 -0.76468002 -0.19624001
-0.011285 -0.76453003 -0.22976
-
--0.098815 -0.71488998 -0.14756
--0.157735 -0.71690002 -0.13885
--0.126185 -0.73445999 -0.17226
-
--0.152335 -0.71831001 0.01116
--0.18640499 -0.71848999 -0.01372
--0.204055 -0.71999001 -0.05273
-
--0.119005 -0.73551003 0.54847
--0.158775 -0.70517998 0.52299
--0.167295 -0.74737 0.49738998
-
--0.097395 -0.72411003 0.17242001
-0.141225 -0.72126999 0.18233999
-0.034255 -0.70801003 0.40098999
-
--0.152335 -0.71831001 0.01116
--0.17276501 -0.71839996 0.00712
--0.176385 -0.71885002 -0.01135
-
--0.18067499 -0.76468002 0.08361
--0.20473499 -0.76521004 0.06109
--0.183915 -0.76429001 0.06451
-
-0.57481499 -0.63938 0.32445999
-0.544925 -0.67612 0.29681999
-0.63936501 -0.64530998 0.26995001
-
-0.247805 -0.73291 -0.06195
-0.21626499 -0.75853996 0.0299
-0.222605 -0.71620003 -0.04485
-
--0.166565 -0.76378998 0.10376
--0.20473499 -0.76521004 0.06109
--0.18067499 -0.76468002 0.08361
-
--0.35217499 -0.76522003 0.26378
--0.45830502 -0.75790001 0.34023998
--0.457565 -0.75337997 0.23136999
-
--0.67350502 -0.31801001 0.21348
--0.67019501 -0.33046001 0.17235001
--0.63988499 -0.38061001 0.17080999
-
-0.136425 -0.71731003 0.08693
-0.141225 -0.72126999 0.18233999
--0.113155 -0.72134003 0.07626
-
--0.088955 -0.75287003 0.51883999
--0.124945 -0.75449997 0.44332001
--0.013045 -0.75356003 0.46638
-
--0.043565 -0.73834 0.55035999
--0.107665 -0.74504997 0.54255001
--0.088955 -0.75287003 0.51883999
-
--0.16981501 -0.76339996 0.08462
--0.166565 -0.76378998 0.10376
--0.18067499 -0.76468002 0.08361
-
--0.18321501 -0.75733002 0.1487
--0.215165 -0.74110001 0.12757
--0.23188499 -0.74691002 0.11138
-
--0.37914501 -0.74181999 0.48116001
--0.43411499 -0.75475998 0.44608002
--0.307395 -0.74459 0.46473999
-
-0.247805 -0.73291 -0.06195
-0.231395 -0.71984001 -0.09604
-0.28172501 -0.75823997 -0.05062
-
-0.182815 -0.75714996 0.16868999
-0.227675 -0.76184998 0.16388
-0.23355499 -0.75731003 0.17916
-
--0.096785 -0.71277 0.39598999
--0.100605 -0.71330002 0.37792
--0.126875 -0.71792 0.35866001
-
--0.212265 -0.71635002 -0.05771
--0.157735 -0.71690002 -0.13885
--0.098815 -0.71488998 -0.14756
-
--0.139575 -0.71986 0.03333
--0.149585 -0.71949997 0.03095
--0.152335 -0.71831001 0.01116
-
--0.18321501 -0.75733002 0.1487
--0.20473499 -0.76521004 0.06109
--0.166565 -0.76378998 0.10376
-
--0.252265 -0.76543999 0.06978
--0.18321501 -0.75733002 0.1487
--0.23188499 -0.74691002 0.11138
-
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/spinning/main.cpp b/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/spinning/main.cpp
deleted file mode 100644
index 816f1881a65db74f6191bbd4f62f376a316d0b1e..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/spinning/main.cpp
+++ /dev/null
@@ -1,372 +0,0 @@
-/*************************************************************************\
-
-  Copyright 1999 The University of North Carolina at Chapel Hill.
-  All Rights Reserved.
-
-  Permission to use, copy, modify and distribute this software and its
-  documentation for educational, research and non-profit purposes, without
-  fee, and without a written agreement is hereby granted, provided that the
-  above copyright notice and the following three paragraphs appear in all
-  copies.
-
-  IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE
-  LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
-  CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE
-  USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY
-  OF NORTH CAROLINA HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
-  DAMAGES.
-
-  THE UNIVERSITY OF NORTH CAROLINA SPECIFICALLY DISCLAIM ANY
-  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE
-  PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
-  NORTH CAROLINA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
-  UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-
-  The authors may be contacted via:
-
-  US Mail:             E. Larsen
-                       Department of Computer Science
-                       Sitterson Hall, CB #3175
-                       University of N. Carolina
-                       Chapel Hill, NC 27599-3175
-
-  Phone:               (919)962-1749
-
-  EMail:               geom@cs.unc.edu
-
-
-\**************************************************************************/
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <math.h>
-#include <GL/glut.h>
-#include "PQP.h"
-#include "model.h"
-#include "MatVec.h"
-
-PQP_Model bunny, torus;
-Model *bunny_to_draw, *torus_to_draw;
-
-int mode;
-double beginx, beginy;
-double dis = 10.0, azim = 0.0, elev = 0.0;
-double ddis = 0.0, dazim = 0.0, delev = 0.0;
-double rot1 = 0.0, rot2 = 0.0, rot3 = 0.0;
-int animate = 0;
-
-void
-InitViewerWindow()
-{
-  GLfloat Ambient[] = { 0.2f, 0.2f, 0.2f, 1.0f };  
-  GLfloat Diffuse[] = { 0.8f, 0.8f, 0.8f, 1.0f };  
-  GLfloat Specular[] = { 0.2f, 0.2f, 0.2f, 1.0f };   
-  GLfloat SpecularExp[] = { 50 };              
-  GLfloat Emission[] = { 0.1f, 0.1f, 0.1f, 1.0f };
-
-  glMaterialfv(GL_FRONT, GL_AMBIENT, Ambient);
-  glMaterialfv(GL_FRONT, GL_DIFFUSE, Diffuse);
-  glMaterialfv(GL_FRONT, GL_SPECULAR, Specular);
-  glMaterialfv(GL_FRONT, GL_SHININESS, SpecularExp);
-  glMaterialfv(GL_FRONT, GL_EMISSION, Emission);
-
-  glMaterialfv(GL_BACK, GL_AMBIENT, Ambient);
-  glMaterialfv(GL_BACK, GL_DIFFUSE, Diffuse);
-  glMaterialfv(GL_BACK, GL_SPECULAR, Specular);
-  glMaterialfv(GL_BACK, GL_SHININESS, SpecularExp);
-  glMaterialfv(GL_BACK, GL_EMISSION, Emission);
-
-  glColorMaterial(GL_FRONT_AND_BACK, GL_DIFFUSE);
-	
-  glEnable(GL_COLOR_MATERIAL);
-
-  GLfloat light_position[] = { 1.0, 1.0, 1.0, 0.0 };
-  glLightfv(GL_LIGHT0, GL_POSITION, light_position);
-  glEnable(GL_LIGHT0);
-  glEnable(GL_LIGHTING);
-  glLightModeli(GL_LIGHT_MODEL_TWO_SIDE, GL_TRUE);
-
-  glDepthFunc(GL_LEQUAL);
-  glEnable(GL_DEPTH_TEST);
-
-  glShadeModel(GL_FLAT);
-  glClearColor(0.0, 0.0, 0.0, 0.0);
-
-  glEnable(GL_CULL_FACE);
-  glCullFace(GL_BACK);
-  glEnable(GL_NORMALIZE);
-
-  glMatrixMode(GL_PROJECTION);
-  glLoadIdentity();
-  glFrustum(-0.004,0.004,-0.004,0.004,.01,100.0);
-
-  glMatrixMode(GL_MODELVIEW);
-}
-
-void 
-KeyboardCB(unsigned char key, int x, int y) 
-{
-  switch(key) 
-  {
-  case 'q': delete bunny_to_draw; delete torus_to_draw; exit(0); 
-  default: animate = 1 - animate;
-  }
-
-  glutPostRedisplay();
-}
-
-void
-MouseCB(int _b, int _s, int _x, int _y)
-{
-  if (_s == GLUT_UP)
-  {
-    dis += ddis;
-    azim += dazim;
-    elev += delev;
-    ddis = 0.0;
-    dazim = 0.0;
-    delev = 0.0;
-    return;
-  }
-
-  if (_b == GLUT_RIGHT_BUTTON)
-  {
-    mode = 0;
-    beginy = _y;
-    return;
-  }
-  else
-  {
-    mode = 1;
-    beginx = _x;
-    beginy = _y;
-  }
-}
-
-void
-MotionCB(int _x, int _y)
-{
-  if (mode == 0)
-  {
-    ddis = dis * (_y - beginy)/200.0;
-  }
-  else
-  {
-    dazim = (_x - beginx)/5.0;
-    delev = (_y - beginy)/5.0;      
-  }
-  
-  glutPostRedisplay();
-}
-
-inline void glVertex3v(float V[3]) { glVertex3fv(V); }
-inline void glVertex3v(double V[3]) { glVertex3dv(V); }
-
-void
-BeginDraw()
-{
-  glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
-
-  glLoadIdentity();  
-  glTranslatef(0.0, 0.0, -(dis+ddis));
-  glRotated(elev+delev, 1.0, 0.0, 0.0);
-  glRotated(azim+dazim, 0.0, 1.0, 0.0);
-}
-
-void
-EndDraw()
-{
-  glFlush();
-  glutSwapBuffers();
-}
-
-void
-IdleCB() 
-{
-  glutPostRedisplay();
-}
-
-void
-DisplayCB()
-{
-  BeginDraw();
-
-  // set up model transformations
-
-  if (animate) 
-  {
-    rot1 += .1;
-    rot2 += .2;
-    rot3 += .3;
-  }
-
-  PQP_REAL R1[3][3],R2[3][3],T1[3],T2[3];
-  PQP_REAL M1[3][3],M2[3][3],M3[3][3];
-
-  T1[0] = -1;
-  T1[1] =  0.0;
-  T1[2] =  0.0;
-
-  T2[0] =  1;
-  T2[1] =  0.0;
-  T2[2] =  0.0;
-
-  MRotX(M1,rot1);
-  MRotY(M2,rot2);
-  MxM(M3,M1,M2);
-  MRotZ(M1,rot3);
-  MxM(R1,M3,M1);
-
-  MRotX(M1,rot3);
-  MRotY(M2,rot1);
-  MxM(M3,M1,M2);
-  MRotZ(M1,rot2);
-  MxM(R2,M3,M1);
-
-  // perform distance query
-
-  PQP_REAL rel_err = 0.0;
-  PQP_REAL abs_err = 0.0;
-  PQP_DistanceResult res;
-  PQP_Distance(&res,R1,T1,&bunny,R2,T2,&torus,rel_err,abs_err);
-
-  // draw the models
-
-  glColor3d(0.0,0.0,1.0);
-  double oglm[16];
-  MVtoOGL(oglm,R1,T1);
-  glPushMatrix();
-  glMultMatrixd(oglm);
-  bunny_to_draw->Draw();
-  glPopMatrix();
-
-  glColor3d(0.0,1.0,0.0);
-  MVtoOGL(oglm,R2,T2);
-  glPushMatrix();
-  glMultMatrixd(oglm);
-  torus_to_draw->Draw();
-  glPopMatrix();
-
-  // draw the closest points as small spheres
-
-  glColor3d(1.0,0.0,0.0);
-
-  PQP_REAL P1[3],P2[3],V1[3],V2[3];
-  VcV(P1,res.P1());
-  VcV(P2,res.P2());
-
-  // each point is in the space of its model;
-  // transform to world space
-
-  MxVpV(V1,R1,P1,T1);
-
-  glPushMatrix();
-  glTranslated(V1[0],V1[1],V1[2]);
-  glutSolidSphere(.05,15,15);
-  glPopMatrix();
-
-  MxVpV(V2,R2,P2,T2);
-
-  glPushMatrix();
-  glTranslated(V2[0],V2[1],V2[2]);
-  glutSolidSphere(.05,15,15);
-  glPopMatrix();
-
-  // draw the line between the closest points
-
-  glDisable(GL_LIGHTING);
-  glBegin(GL_LINES);
-  glVertex3v(V1);
-  glVertex3v(V2);
-  glEnd();
-  glEnable(GL_LIGHTING);
-
-  EndDraw();
-}
-
-void main(int argc, char **argv)
-{
-  glutInit(&argc, argv);
-  glutInitDisplayMode (GLUT_DOUBLE | GLUT_RGB | GLUT_DEPTH | GLUT_MULTISAMPLE);
-
-  // create the window
-
-  glutCreateWindow("PQP Demo - Spinning");
-
-  // set OpenGL graphics state -- material props, perspective, etc.
-
-  InitViewerWindow();
-
-  // set the callbacks
-
-  glutDisplayFunc(DisplayCB);
-  glutIdleFunc(IdleCB);
-  glutMouseFunc(MouseCB);
-  glutMotionFunc(MotionCB);  
-  glutKeyboardFunc(KeyboardCB);
-
-  // initialize the bunny
-
-  FILE *fp;
-  int i, ntris;
-
-  bunny_to_draw = new Model("bunny.tris");
-
-  fp = fopen("bunny.tris","r");
-  if (fp == NULL) { fprintf(stderr,"Couldn't open bunny.tris\n"); exit(-1); }
-  fscanf(fp,"%d",&ntris);
-
-  bunny.BeginModel();
-  for (i = 0; i < ntris; i++)
-  {
-    double p1x,p1y,p1z,p2x,p2y,p2z,p3x,p3y,p3z;
-    fscanf(fp,"%lf %lf %lf %lf %lf %lf %lf %lf %lf", 
-           &p1x,&p1y,&p1z,&p2x,&p2y,&p2z,&p3x,&p3y,&p3z);
-    PQP_REAL p1[3],p2[3],p3[3];
-    p1[0] = (PQP_REAL)p1x; p1[1] = (PQP_REAL)p1y; p1[2] = (PQP_REAL)p1z;
-    p2[0] = (PQP_REAL)p2x; p2[1] = (PQP_REAL)p2y; p2[2] = (PQP_REAL)p2z;
-    p3[0] = (PQP_REAL)p3x; p3[1] = (PQP_REAL)p3y; p3[2] = (PQP_REAL)p3z;
-    bunny.AddTri(p1,p2,p3,i);
-  }
-  bunny.EndModel();
-  fclose(fp);
-
-  // initialize the torus
-
-  torus_to_draw = new Model("torus.tris");
-
-  fp = fopen("torus.tris","r");
-  if (fp == NULL) { fprintf(stderr,"Couldn't open torus.tris\n"); exit(-1); }
-  fscanf(fp,"%d",&ntris);
-
-  torus.BeginModel();
-  for (i = 0; i < ntris; i++)
-  {
-    double p1x,p1y,p1z,p2x,p2y,p2z,p3x,p3y,p3z;
-    fscanf(fp,"%lf %lf %lf %lf %lf %lf %lf %lf %lf", 
-           &p1x,&p1y,&p1z,&p2x,&p2y,&p2z,&p3x,&p3y,&p3z);
-    PQP_REAL p1[3],p2[3],p3[3];
-    p1[0] = (PQP_REAL)p1x; p1[1] = (PQP_REAL)p1y; p1[2] = (PQP_REAL)p1z;
-    p2[0] = (PQP_REAL)p2x; p2[1] = (PQP_REAL)p2y; p2[2] = (PQP_REAL)p2z;
-    p3[0] = (PQP_REAL)p3x; p3[1] = (PQP_REAL)p3y; p3[2] = (PQP_REAL)p3z;
-    torus.AddTri(p1,p2,p3,i);
-  }
-  torus.EndModel();
-  fclose(fp);
-
-  // print instructions
-
-  printf("PQP Demo - Spinning:\n"
-         "Press 'q' to quit.\n"
-         "Press any other key to toggle animation.\n"
-         "Left-drag left & right to change angle of view.\n"
-         "Left-drag up & down to change elevation of view.\n"
-         "Right-drag up & down to change distance of view.\n");
-
-  // Enter the main loop.
-
-  glutMainLoop();
-}
-
-
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/spinning/model.cpp b/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/spinning/model.cpp
deleted file mode 100644
index e145b31baebd18fa43a6ca0a86314a3b230c1fb8..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/spinning/model.cpp
+++ /dev/null
@@ -1,144 +0,0 @@
-/*************************************************************************\
-
-  Copyright 1999 The University of North Carolina at Chapel Hill.
-  All Rights Reserved.
-
-  Permission to use, copy, modify and distribute this software and its
-  documentation for educational, research and non-profit purposes, without
-  fee, and without a written agreement is hereby granted, provided that the
-  above copyright notice and the following three paragraphs appear in all
-  copies.
-
-  IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE
-  LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
-  CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE
-  USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY
-  OF NORTH CAROLINA HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
-  DAMAGES.
-
-  THE UNIVERSITY OF NORTH CAROLINA SPECIFICALLY DISCLAIM ANY
-  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE
-  PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
-  NORTH CAROLINA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
-  UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-
-  The authors may be contacted via:
-
-  US Mail:             E. Larsen
-                       Department of Computer Science
-                       Sitterson Hall, CB #3175
-                       University of N. Carolina
-                       Chapel Hill, NC 27599-3175
-
-  Phone:               (919)962-1749
-
-  EMail:               geom@cs.unc.edu
-
-
-\**************************************************************************/
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <math.h>
-#include "GL/glut.h"
-#include "model.h"
-
-inline
-void
-VmV(double Vr[3], const double V1[3], const double V2[3])
-{
-  Vr[0] = V1[0] - V2[0];
-  Vr[1] = V1[1] - V2[1];
-  Vr[2] = V1[2] - V2[2];
-}
-
-inline
-void
-VcrossV(double Vr[3], const double V1[3], const double V2[3])
-{
-  Vr[0] = V1[1]*V2[2] - V1[2]*V2[1];
-  Vr[1] = V1[2]*V2[0] - V1[0]*V2[2];
-  Vr[2] = V1[0]*V2[1] - V1[1]*V2[0];
-}
-
-inline
-void
-Vnormalize(double V[3])
-{
-  double d = 1.0 / sqrt(V[0]*V[0] + V[1]*V[1] + V[2]*V[2]);
-  V[0] *= d;
-  V[1] *= d;
-  V[2] *= d;
-}
-
-Model::Model(char *tris_file)
-{
-  FILE *fp = fopen(tris_file,"r");
-  if (fp == NULL)
-  { 
-    fprintf(stderr,"Model Constructor: Couldn't open %s\n",tris_file); 
-    exit(-1); 
-  }
-
-  fscanf(fp,"%d",&ntris);
-  tri = new ModelTri[ntris];
-
-  int i;
-
-  for (i = 0; i < ntris; i++)
-  {
-    // read the tri verts
-
-    fscanf(fp,"%lf %lf %lf %lf %lf %lf %lf %lf %lf",
-           &tri[i].p0[0], &tri[i].p0[1], &tri[i].p0[2],
-           &tri[i].p1[0], &tri[i].p1[1], &tri[i].p1[2],
-           &tri[i].p2[0], &tri[i].p2[1], &tri[i].p2[2]);
-
-    // set the normal
-
-    double a[3],b[3];
-    VmV(a,tri[i].p1,tri[i].p0);
-    VmV(b,tri[i].p2,tri[i].p0);
-    VcrossV(tri[i].n,a,b);
-    Vnormalize(tri[i].n);
-  }
-  
-  fclose(fp);
-
-  // generate display list
-
-  display_list = glGenLists(1);
-  glNewList(display_list,GL_COMPILE);
-  glBegin(GL_TRIANGLES);
-  for (i = 0; i < ntris; i++)
-  {
-    glNormal3dv(tri[i].n);
-    glVertex3dv(tri[i].p0);
-    glVertex3dv(tri[i].p1);
-    glVertex3dv(tri[i].p2);
-  }
-  glEnd();
-  glEndList();  
-}
-
-Model::~Model()
-{
-  delete [] tri;
-}
-
-void
-Model::Draw()
-{
-  glCallList(display_list);
-}
-
-void
-Model::DrawTri(int index)
-{
-  glBegin(GL_TRIANGLES);
-  glVertex3dv(tri[index].p0);
-  glVertex3dv(tri[index].p1);
-  glVertex3dv(tri[index].p2);
-  glEnd();
-}
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/spinning/model.h b/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/spinning/model.h
deleted file mode 100644
index df352e4e8959b4902e5cab308060d13bac9c3c86..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/spinning/model.h
+++ /dev/null
@@ -1,63 +0,0 @@
-/*************************************************************************\
-
-  Copyright 1999 The University of North Carolina at Chapel Hill.
-  All Rights Reserved.
-
-  Permission to use, copy, modify and distribute this software and its
-  documentation for educational, research and non-profit purposes, without
-  fee, and without a written agreement is hereby granted, provided that the
-  above copyright notice and the following three paragraphs appear in all
-  copies.
-
-  IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE
-  LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
-  CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE
-  USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY
-  OF NORTH CAROLINA HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
-  DAMAGES.
-
-  THE UNIVERSITY OF NORTH CAROLINA SPECIFICALLY DISCLAIM ANY
-  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE
-  PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
-  NORTH CAROLINA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
-  UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-
-  The authors may be contacted via:
-
-  US Mail:             E. Larsen
-                       Department of Computer Science
-                       Sitterson Hall, CB #3175
-                       University of N. Carolina
-                       Chapel Hill, NC 27599-3175
-
-  Phone:               (919)962-1749
-
-  EMail:               geom@cs.unc.edu
-
-
-\**************************************************************************/
-
-#ifndef MODEL_H
-#define MODEL_H
-
-struct ModelTri
-{
-  double p0[3], p1[3], p2[3];
-  double n[3];
-};
-
-class Model
-{
-  int ntris;
-  ModelTri *tri;
-  int display_list;
-
-public:
-  Model(char *tris_file);
-  ~Model();
-  void Draw();
-  void DrawTri(int index);
-};
-
-#endif
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/spinning/spinning.dsp b/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/spinning/spinning.dsp
deleted file mode 100644
index b31912aa0c3a8fcda214a653ab3cb0f48eb383d5..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/spinning/spinning.dsp
+++ /dev/null
@@ -1,98 +0,0 @@
-# Microsoft Developer Studio Project File - Name="spinning" - Package Owner=<4>
-# Microsoft Developer Studio Generated Build File, Format Version 5.00
-# ** DO NOT EDIT **
-
-# TARGTYPE "Win32 (x86) Console Application" 0x0103
-
-CFG=spinning - Win32 Debug
-!MESSAGE This is not a valid makefile. To build this project using NMAKE,
-!MESSAGE use the Export Makefile command and run
-!MESSAGE 
-!MESSAGE NMAKE /f "spinning.mak".
-!MESSAGE 
-!MESSAGE You can specify a configuration when running NMAKE
-!MESSAGE by defining the macro CFG on the command line. For example:
-!MESSAGE 
-!MESSAGE NMAKE /f "spinning.mak" CFG="spinning - Win32 Debug"
-!MESSAGE 
-!MESSAGE Possible choices for configuration are:
-!MESSAGE 
-!MESSAGE "spinning - Win32 Release" (based on\
- "Win32 (x86) Console Application")
-!MESSAGE "spinning - Win32 Debug" (based on "Win32 (x86) Console Application")
-!MESSAGE 
-
-# Begin Project
-# PROP Scc_ProjName ""
-# PROP Scc_LocalPath ""
-CPP=xicl5.exe
-RSC=rc.exe
-
-!IF  "$(CFG)" == "spinning - Win32 Release"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir "Release"
-# PROP BASE Intermediate_Dir "Release"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 0
-# PROP Output_Dir "./"
-# PROP Intermediate_Dir "Release"
-# PROP Ignore_Export_Lib 0
-# PROP Target_Dir ""
-# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
-# ADD CPP /nologo /W3 /GX /O2 /I "..\..\include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
-# ADD BASE RSC /l 0x409 /d "NDEBUG"
-# ADD RSC /l 0x409 /d "NDEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-LINK32=xilink5.exe
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
-# ADD LINK32 glut32.lib opengl32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib pqp.lib /nologo /subsystem:console /pdb:none /machine:I386 /libpath:"..\..\lib"
-
-!ELSEIF  "$(CFG)" == "spinning - Win32 Debug"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir "spinning"
-# PROP BASE Intermediate_Dir "spinning"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 1
-# PROP Output_Dir "./"
-# PROP Intermediate_Dir "Debug"
-# PROP Ignore_Export_Lib 0
-# PROP Target_Dir ""
-# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
-# ADD CPP /nologo /W3 /GX /Od /I "..\..\include" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
-# ADD BASE RSC /l 0x409 /d "_DEBUG"
-# ADD RSC /l 0x409 /d "_DEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-LINK32=xilink5.exe
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
-# ADD LINK32 glut32.lib opengl32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib pqp.lib /nologo /subsystem:console /pdb:none /debug /machine:I386 /libpath:"..\..\lib"
-
-!ENDIF 
-
-# Begin Target
-
-# Name "spinning - Win32 Release"
-# Name "spinning - Win32 Debug"
-# Begin Source File
-
-SOURCE=.\main.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=.\model.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=.\model.h
-# End Source File
-# End Target
-# End Project
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/spinning/spinning.plg b/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/spinning/spinning.plg
deleted file mode 100644
index d8ee3728795b3cc580b04f82e75480862e4be371..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/spinning/spinning.plg
+++ /dev/null
@@ -1,27 +0,0 @@
---------------------Configuration: spinning - Win32 Release--------------------
-Begining build with project "C:\WIN95\DESKTOP\PQP_v1.2.1\demos\spinning\spinning.dsp", at root.
-Active configuration is Win32 (x86) Console Application (based on Win32 (x86) Console Application)
-
-Project's tools are:
-			"32-bit C/C++ Compiler for 80x86" with flags "/nologo /ML /W3 /GX /O2 /I "..\..\include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /Fp"Release/spinning.pch" /YX /Fo"Release/" /Fd"Release/" /FD /c "
-			"Win32 Resource Compiler" with flags "/l 0x409 /d "NDEBUG" "
-			"Browser Database Maker" with flags "/nologo /o"./spinning.bsc" "
-			"COFF Linker for 80x86" with flags "glut32.lib opengl32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib pqp.lib /nologo /subsystem:console /pdb:none /machine:I386 /out:"./spinning.exe" /libpath:"..\..\lib" "
-			"Custom Build" with flags ""
-			"<Component 0xa>" with flags ""
-
-Creating temp file "C:\WIN95\TEMP\RSP9380.TMP" with contents </nologo /ML /W3 /GX /O2 /I "..\..\include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /Fp"Release/spinning.pch" /YX /Fo"Release/" /Fd"Release/" /FD /c 
-"C:\WIN95\DESKTOP\PQP_v1.2.1\demos\spinning\main.cpp"
->
-Creating command line "cl.exe @C:\WIN95\TEMP\RSP9380.TMP" 
-Creating temp file "C:\WIN95\TEMP\RSP9381.TMP" with contents <glut32.lib opengl32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib pqp.lib /nologo /subsystem:console /pdb:none /machine:I386 /out:"./spinning.exe" /libpath:"..\..\lib" 
-.\Release\main.obj
-.\Release\model.obj>
-Creating command line "link.exe @C:\WIN95\TEMP\RSP9381.TMP" 
-Compiling...
-main.cpp
-Linking...
-
-
-
-spinning.exe - 0 error(s), 0 warning(s)
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/spinning/torus.tris b/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/spinning/torus.tris
deleted file mode 100644
index a0bc4507a8b37d2868603a6974c4c49ff64037f9..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/demos/spinning/torus.tris
+++ /dev/null
@@ -1,5329 +0,0 @@
-1332
-0.58 0 0
-0.571657 0.0980205 0.033314
-0.569145 0 0.0615636
-
-0.560958 0.0961859 0.0948776
-0.569145 0 0.0615636
-0.571657 0.0980205 0.033314
-
-0.569145 0 0.0615636
-0.560958 0.0961859 0.0948776
-0.537888 0 0.115702
-
-0.530151 0.0909035 0.149016
-0.537888 0 0.115702
-0.560958 0.0961859 0.0948776
-
-0.537888 0 0.115702
-0.530151 0.0909035 0.149016
-0.49 0 0.155885
-
-0.482952 0.0828104 0.189199
-0.49 0 0.155885
-0.530151 0.0909035 0.149016
-
-0.49 0 0.155885
-0.482952 0.0828104 0.189199
-0.431257 0 0.177265
-
-0.425053 0.0728827 0.210579
-0.431257 0 0.177265
-0.482952 0.0828104 0.189199
-
-0.431257 0 0.177265
-0.425053 0.0728827 0.210579
-0.368743 0 0.177265
-
-0.363439 0.0623179 0.210579
-0.368743 0 0.177265
-0.425053 0.0728827 0.210579
-
-0.368743 0 0.177265
-0.363439 0.0623179 0.210579
-0.31 0 0.155885
-
-0.305541 0.0523903 0.189199
-0.31 0 0.155885
-0.363439 0.0623179 0.210579
-
-0.31 0 0.155885
-0.305541 0.0523903 0.189199
-0.262112 0 0.115702
-
-0.258342 0.0442971 0.149016
-0.262112 0 0.115702
-0.305541 0.0523903 0.189199
-
-0.262112 0 0.115702
-0.258342 0.0442971 0.149016
-0.230855 0 0.0615636
-
-0.227535 0.0390147 0.0948776
-0.230855 0 0.0615636
-0.258342 0.0442971 0.149016
-
-0.230855 0 0.0615636
-0.227535 0.0390147 0.0948776
-0.22 0 0
-
-0.216836 0.0371802 0.033314
-0.22 0 0
-0.227535 0.0390147 0.0948776
-
-0.22 0 0
-0.216836 0.0371802 0.033314
-0.230855 0 -0.0615636
-
-0.227535 0.0390147 -0.0282496
-0.230855 0 -0.0615636
-0.216836 0.0371802 0.033314
-
-0.230855 0 -0.0615636
-0.227535 0.0390147 -0.0282496
-0.262112 0 -0.115702
-
-0.258342 0.0442971 -0.0823878
-0.262112 0 -0.115702
-0.227535 0.0390147 -0.0282496
-
-0.262112 0 -0.115702
-0.258342 0.0442971 -0.0823878
-0.31 0 -0.155885
-
-0.305541 0.0523903 -0.122571
-0.31 0 -0.155885
-0.258342 0.0442971 -0.0823878
-
-0.31 0 -0.155885
-0.305541 0.0523903 -0.122571
-0.368743 0 -0.177265
-
-0.363439 0.0623179 -0.143951
-0.368743 0 -0.177265
-0.305541 0.0523903 -0.122571
-
-0.368743 0 -0.177265
-0.363439 0.0623179 -0.143951
-0.431257 0 -0.177265
-
-0.425053 0.0728827 -0.143951
-0.431257 0 -0.177265
-0.363439 0.0623179 -0.143951
-
-0.431257 0 -0.177265
-0.425053 0.0728827 -0.143951
-0.49 0 -0.155885
-
-0.482952 0.0828104 -0.122571
-0.49 0 -0.155885
-0.425053 0.0728827 -0.143951
-
-0.49 0 -0.155885
-0.482952 0.0828104 -0.122571
-0.537888 0 -0.115702
-
-0.530151 0.0909035 -0.0823878
-0.537888 0 -0.115702
-0.482952 0.0828104 -0.122571
-
-0.537888 0 -0.115702
-0.530151 0.0909035 -0.0823878
-0.569145 0 -0.0615636
-
-0.560958 0.0961859 -0.0282496
-0.569145 0 -0.0615636
-0.530151 0.0909035 -0.0823878
-
-0.569145 0 -0.0615636
-0.560958 0.0961859 -0.0282496
-0.58 0 0
-
-0.571657 0.0980205 0.033314
-0.58 0 0
-0.560958 0.0961859 -0.0282496
-
-0.571657 0.0980205 0.033314
-0.546869 0.193221 0.062822
-0.560958 0.0961859 0.0948776
-
-0.536634 0.189605 0.124386
-0.560958 0.0961859 0.0948776
-0.546869 0.193221 0.062822
-
-0.560958 0.0961859 0.0948776
-0.536634 0.189605 0.124386
-0.530151 0.0909035 0.149016
-
-0.507162 0.179192 0.178524
-0.530151 0.0909035 0.149016
-0.536634 0.189605 0.124386
-
-0.530151 0.0909035 0.149016
-0.507162 0.179192 0.178524
-0.482952 0.0828104 0.189199
-
-0.46201 0.163238 0.218707
-0.482952 0.0828104 0.189199
-0.507162 0.179192 0.178524
-
-0.482952 0.0828104 0.189199
-0.46201 0.163238 0.218707
-0.425053 0.0728827 0.210579
-
-0.406622 0.143669 0.240087
-0.425053 0.0728827 0.210579
-0.46201 0.163238 0.218707
-
-0.425053 0.0728827 0.210579
-0.406622 0.143669 0.240087
-0.363439 0.0623179 0.210579
-
-0.34768 0.122843 0.240087
-0.363439 0.0623179 0.210579
-0.406622 0.143669 0.240087
-
-0.363439 0.0623179 0.210579
-0.34768 0.122843 0.240087
-0.305541 0.0523903 0.189199
-
-0.292292 0.103273 0.218707
-0.305541 0.0523903 0.189199
-0.34768 0.122843 0.240087
-
-0.305541 0.0523903 0.189199
-0.292292 0.103273 0.218707
-0.258342 0.0442971 0.149016
-
-0.247139 0.0873199 0.178524
-0.258342 0.0442971 0.149016
-0.292292 0.103273 0.218707
-
-0.258342 0.0442971 0.149016
-0.247139 0.0873199 0.178524
-0.227535 0.0390147 0.0948776
-
-0.217668 0.0769071 0.124386
-0.227535 0.0390147 0.0948776
-0.247139 0.0873199 0.178524
-
-0.227535 0.0390147 0.0948776
-0.217668 0.0769071 0.124386
-0.216836 0.0371802 0.033314
-
-0.207433 0.0732908 0.062822
-0.216836 0.0371802 0.033314
-0.217668 0.0769071 0.124386
-
-0.216836 0.0371802 0.033314
-0.207433 0.0732908 0.062822
-0.227535 0.0390147 -0.0282496
-
-0.217668 0.0769071 0.00125837
-0.227535 0.0390147 -0.0282496
-0.207433 0.0732908 0.062822
-
-0.227535 0.0390147 -0.0282496
-0.217668 0.0769071 0.00125837
-0.258342 0.0442971 -0.0823878
-
-0.247139 0.0873199 -0.0528798
-0.258342 0.0442971 -0.0823878
-0.217668 0.0769071 0.00125837
-
-0.258342 0.0442971 -0.0823878
-0.247139 0.0873199 -0.0528798
-0.305541 0.0523903 -0.122571
-
-0.292292 0.103273 -0.0930626
-0.305541 0.0523903 -0.122571
-0.247139 0.0873199 -0.0528798
-
-0.305541 0.0523903 -0.122571
-0.292292 0.103273 -0.0930626
-0.363439 0.0623179 -0.143951
-
-0.34768 0.122843 -0.114443
-0.363439 0.0623179 -0.143951
-0.292292 0.103273 -0.0930626
-
-0.363439 0.0623179 -0.143951
-0.34768 0.122843 -0.114443
-0.425053 0.0728827 -0.143951
-
-0.406622 0.143669 -0.114443
-0.425053 0.0728827 -0.143951
-0.34768 0.122843 -0.114443
-
-0.425053 0.0728827 -0.143951
-0.406622 0.143669 -0.114443
-0.482952 0.0828104 -0.122571
-
-0.46201 0.163238 -0.0930626
-0.482952 0.0828104 -0.122571
-0.406622 0.143669 -0.114443
-
-0.482952 0.0828104 -0.122571
-0.46201 0.163238 -0.0930626
-0.530151 0.0909035 -0.0823878
-
-0.507162 0.179192 -0.0528798
-0.530151 0.0909035 -0.0823878
-0.46201 0.163238 -0.0930626
-
-0.530151 0.0909035 -0.0823878
-0.507162 0.179192 -0.0528798
-0.560958 0.0961859 -0.0282496
-
-0.536634 0.189605 0.00125837
-0.560958 0.0961859 -0.0282496
-0.507162 0.179192 -0.0528798
-
-0.560958 0.0961859 -0.0282496
-0.536634 0.189605 0.00125837
-0.571657 0.0980205 0.033314
-
-0.546869 0.193221 0.062822
-0.571657 0.0980205 0.033314
-0.536634 0.189605 0.00125837
-
-0.546869 0.193221 0.062822
-0.506348 0.282863 0.0851529
-0.536634 0.189605 0.124386
-
-0.496871 0.277569 0.146717
-0.536634 0.189605 0.124386
-0.506348 0.282863 0.0851529
-
-0.536634 0.189605 0.124386
-0.496871 0.277569 0.146717
-0.507162 0.179192 0.178524
-
-0.469584 0.262325 0.200855
-0.507162 0.179192 0.178524
-0.496871 0.277569 0.146717
-
-0.507162 0.179192 0.178524
-0.469584 0.262325 0.200855
-0.46201 0.163238 0.218707
-
-0.427777 0.238971 0.241037
-0.46201 0.163238 0.218707
-0.469584 0.262325 0.200855
-
-0.46201 0.163238 0.218707
-0.427777 0.238971 0.241037
-0.406622 0.143669 0.240087
-
-0.376493 0.210322 0.262418
-0.406622 0.143669 0.240087
-0.427777 0.238971 0.241037
-
-0.406622 0.143669 0.240087
-0.376493 0.210322 0.262418
-0.34768 0.122843 0.240087
-
-0.321918 0.179834 0.262418
-0.34768 0.122843 0.240087
-0.376493 0.210322 0.262418
-
-0.34768 0.122843 0.240087
-0.321918 0.179834 0.262418
-0.292292 0.103273 0.218707
-
-0.270634 0.151185 0.241037
-0.292292 0.103273 0.218707
-0.321918 0.179834 0.262418
-
-0.292292 0.103273 0.218707
-0.270634 0.151185 0.241037
-0.247139 0.0873199 0.178524
-
-0.228827 0.127831 0.200855
-0.247139 0.0873199 0.178524
-0.270634 0.151185 0.241037
-
-0.247139 0.0873199 0.178524
-0.228827 0.127831 0.200855
-0.217668 0.0769071 0.124386
-
-0.20154 0.112587 0.146717
-0.217668 0.0769071 0.124386
-0.228827 0.127831 0.200855
-
-0.217668 0.0769071 0.124386
-0.20154 0.112587 0.146717
-0.207433 0.0732908 0.062822
-
-0.192063 0.107293 0.0851529
-0.207433 0.0732908 0.062822
-0.20154 0.112587 0.146717
-
-0.207433 0.0732908 0.062822
-0.192063 0.107293 0.0851529
-0.217668 0.0769071 0.00125837
-
-0.20154 0.112587 0.0235893
-0.217668 0.0769071 0.00125837
-0.192063 0.107293 0.0851529
-
-0.217668 0.0769071 0.00125837
-0.20154 0.112587 0.0235893
-0.247139 0.0873199 -0.0528798
-
-0.228827 0.127831 -0.0305489
-0.247139 0.0873199 -0.0528798
-0.20154 0.112587 0.0235893
-
-0.247139 0.0873199 -0.0528798
-0.228827 0.127831 -0.0305489
-0.292292 0.103273 -0.0930626
-
-0.270634 0.151185 -0.0707317
-0.292292 0.103273 -0.0930626
-0.228827 0.127831 -0.0305489
-
-0.292292 0.103273 -0.0930626
-0.270634 0.151185 -0.0707317
-0.34768 0.122843 -0.114443
-
-0.321918 0.179834 -0.0921125
-0.34768 0.122843 -0.114443
-0.270634 0.151185 -0.0707317
-
-0.34768 0.122843 -0.114443
-0.321918 0.179834 -0.0921125
-0.406622 0.143669 -0.114443
-
-0.376493 0.210322 -0.0921125
-0.406622 0.143669 -0.114443
-0.321918 0.179834 -0.0921125
-
-0.406622 0.143669 -0.114443
-0.376493 0.210322 -0.0921125
-0.46201 0.163238 -0.0930626
-
-0.427777 0.238971 -0.0707317
-0.46201 0.163238 -0.0930626
-0.376493 0.210322 -0.0921125
-
-0.46201 0.163238 -0.0930626
-0.427777 0.238971 -0.0707317
-0.507162 0.179192 -0.0528798
-
-0.469584 0.262325 -0.0305489
-0.507162 0.179192 -0.0528798
-0.427777 0.238971 -0.0707317
-
-0.507162 0.179192 -0.0528798
-0.469584 0.262325 -0.0305489
-0.536634 0.189605 0.00125837
-
-0.496871 0.277569 0.0235893
-0.536634 0.189605 0.00125837
-0.469584 0.262325 -0.0305489
-
-0.536634 0.189605 0.00125837
-0.496871 0.277569 0.0235893
-0.546869 0.193221 0.062822
-
-0.506348 0.282863 0.0851529
-0.546869 0.193221 0.062822
-0.496871 0.277569 0.0235893
-
-0.506348 0.282863 0.0851529
-0.451261 0.364368 0.0977555
-0.496871 0.277569 0.146717
-
-0.442815 0.357548 0.159319
-0.496871 0.277569 0.146717
-0.451261 0.364368 0.0977555
-
-0.496871 0.277569 0.146717
-0.442815 0.357548 0.159319
-0.469584 0.262325 0.200855
-
-0.418496 0.337912 0.213457
-0.469584 0.262325 0.200855
-0.442815 0.357548 0.159319
-
-0.469584 0.262325 0.200855
-0.418496 0.337912 0.213457
-0.427777 0.238971 0.241037
-
-0.381238 0.307828 0.25364
-0.427777 0.238971 0.241037
-0.418496 0.337912 0.213457
-
-0.427777 0.238971 0.241037
-0.381238 0.307828 0.25364
-0.376493 0.210322 0.262418
-
-0.335533 0.270924 0.275021
-0.376493 0.210322 0.262418
-0.381238 0.307828 0.25364
-
-0.376493 0.210322 0.262418
-0.335533 0.270924 0.275021
-0.321918 0.179834 0.262418
-
-0.286895 0.231652 0.275021
-0.321918 0.179834 0.262418
-0.335533 0.270924 0.275021
-
-0.321918 0.179834 0.262418
-0.286895 0.231652 0.275021
-0.270634 0.151185 0.241037
-
-0.241191 0.194748 0.25364
-0.270634 0.151185 0.241037
-0.286895 0.231652 0.275021
-
-0.270634 0.151185 0.241037
-0.241191 0.194748 0.25364
-0.228827 0.127831 0.200855
-
-0.203933 0.164664 0.213457
-0.228827 0.127831 0.200855
-0.241191 0.194748 0.25364
-
-0.228827 0.127831 0.200855
-0.203933 0.164664 0.213457
-0.20154 0.112587 0.146717
-
-0.179614 0.145028 0.159319
-0.20154 0.112587 0.146717
-0.203933 0.164664 0.213457
-
-0.20154 0.112587 0.146717
-0.179614 0.145028 0.159319
-0.192063 0.107293 0.0851529
-
-0.171168 0.138208 0.0977555
-0.192063 0.107293 0.0851529
-0.179614 0.145028 0.159319
-
-0.192063 0.107293 0.0851529
-0.171168 0.138208 0.0977555
-0.20154 0.112587 0.0235893
-
-0.179614 0.145028 0.0361919
-0.20154 0.112587 0.0235893
-0.171168 0.138208 0.0977555
-
-0.20154 0.112587 0.0235893
-0.179614 0.145028 0.0361919
-0.228827 0.127831 -0.0305489
-
-0.203933 0.164664 -0.0179462
-0.228827 0.127831 -0.0305489
-0.179614 0.145028 0.0361919
-
-0.228827 0.127831 -0.0305489
-0.203933 0.164664 -0.0179462
-0.270634 0.151185 -0.0707317
-
-0.241191 0.194748 -0.058129
-0.270634 0.151185 -0.0707317
-0.203933 0.164664 -0.0179462
-
-0.270634 0.151185 -0.0707317
-0.241191 0.194748 -0.058129
-0.321918 0.179834 -0.0921125
-
-0.286895 0.231652 -0.0795099
-0.321918 0.179834 -0.0921125
-0.241191 0.194748 -0.058129
-
-0.321918 0.179834 -0.0921125
-0.286895 0.231652 -0.0795099
-0.376493 0.210322 -0.0921125
-
-0.335533 0.270924 -0.0795099
-0.376493 0.210322 -0.0921125
-0.286895 0.231652 -0.0795099
-
-0.376493 0.210322 -0.0921125
-0.335533 0.270924 -0.0795099
-0.427777 0.238971 -0.0707317
-
-0.381238 0.307828 -0.058129
-0.427777 0.238971 -0.0707317
-0.335533 0.270924 -0.0795099
-
-0.427777 0.238971 -0.0707317
-0.381238 0.307828 -0.058129
-0.469584 0.262325 -0.0305489
-
-0.418496 0.337912 -0.0179462
-0.469584 0.262325 -0.0305489
-0.381238 0.307828 -0.058129
-
-0.469584 0.262325 -0.0305489
-0.418496 0.337912 -0.0179462
-0.496871 0.277569 0.0235893
-
-0.442815 0.357548 0.0361919
-0.496871 0.277569 0.0235893
-0.418496 0.337912 -0.0179462
-
-0.496871 0.277569 0.0235893
-0.442815 0.357548 0.0361919
-0.506348 0.282863 0.0851529
-
-0.451261 0.364368 0.0977555
-0.506348 0.282863 0.0851529
-0.442815 0.357548 0.0361919
-
-0.451261 0.364368 0.0977555
-0.383191 0.43539 0.09919
-0.442815 0.357548 0.159319
-
-0.376019 0.427241 0.160754
-0.442815 0.357548 0.159319
-0.383191 0.43539 0.09919
-
-0.442815 0.357548 0.159319
-0.376019 0.427241 0.160754
-0.418496 0.337912 0.213457
-
-0.355369 0.403778 0.214892
-0.418496 0.337912 0.213457
-0.376019 0.427241 0.160754
-
-0.418496 0.337912 0.213457
-0.355369 0.403778 0.214892
-0.381238 0.307828 0.25364
-
-0.323731 0.367829 0.255075
-0.381238 0.307828 0.25364
-0.355369 0.403778 0.214892
-
-0.381238 0.307828 0.25364
-0.323731 0.367829 0.255075
-0.335533 0.270924 0.275021
-
-0.28492 0.323732 0.276455
-0.335533 0.270924 0.275021
-0.323731 0.367829 0.255075
-
-0.335533 0.270924 0.275021
-0.28492 0.323732 0.276455
-0.286895 0.231652 0.275021
-
-0.243619 0.276805 0.276455
-0.286895 0.231652 0.275021
-0.28492 0.323732 0.276455
-
-0.286895 0.231652 0.275021
-0.243619 0.276805 0.276455
-0.241191 0.194748 0.25364
-
-0.204809 0.232708 0.255075
-0.241191 0.194748 0.25364
-0.243619 0.276805 0.276455
-
-0.241191 0.194748 0.25364
-0.204809 0.232708 0.255075
-0.203933 0.164664 0.213457
-
-0.173171 0.19676 0.214892
-0.203933 0.164664 0.213457
-0.204809 0.232708 0.255075
-
-0.203933 0.164664 0.213457
-0.173171 0.19676 0.214892
-0.179614 0.145028 0.159319
-
-0.15252 0.173297 0.160754
-0.179614 0.145028 0.159319
-0.173171 0.19676 0.214892
-
-0.179614 0.145028 0.159319
-0.15252 0.173297 0.160754
-0.171168 0.138208 0.0977555
-
-0.145348 0.165148 0.09919
-0.171168 0.138208 0.0977555
-0.15252 0.173297 0.160754
-
-0.171168 0.138208 0.0977555
-0.145348 0.165148 0.09919
-0.179614 0.145028 0.0361919
-
-0.15252 0.173297 0.0376264
-0.179614 0.145028 0.0361919
-0.145348 0.165148 0.09919
-
-0.179614 0.145028 0.0361919
-0.15252 0.173297 0.0376264
-0.203933 0.164664 -0.0179462
-
-0.173171 0.19676 -0.0165117
-0.203933 0.164664 -0.0179462
-0.15252 0.173297 0.0376264
-
-0.203933 0.164664 -0.0179462
-0.173171 0.19676 -0.0165117
-0.241191 0.194748 -0.058129
-
-0.204809 0.232708 -0.0566945
-0.241191 0.194748 -0.058129
-0.173171 0.19676 -0.0165117
-
-0.241191 0.194748 -0.058129
-0.204809 0.232708 -0.0566945
-0.286895 0.231652 -0.0795099
-
-0.243619 0.276805 -0.0780754
-0.286895 0.231652 -0.0795099
-0.204809 0.232708 -0.0566945
-
-0.286895 0.231652 -0.0795099
-0.243619 0.276805 -0.0780754
-0.335533 0.270924 -0.0795099
-
-0.28492 0.323732 -0.0780754
-0.335533 0.270924 -0.0795099
-0.243619 0.276805 -0.0780754
-
-0.335533 0.270924 -0.0795099
-0.28492 0.323732 -0.0780754
-0.381238 0.307828 -0.058129
-
-0.323731 0.367829 -0.0566945
-0.381238 0.307828 -0.058129
-0.28492 0.323732 -0.0780754
-
-0.381238 0.307828 -0.058129
-0.323731 0.367829 -0.0566945
-0.418496 0.337912 -0.0179462
-
-0.355369 0.403778 -0.0165117
-0.418496 0.337912 -0.0179462
-0.323731 0.367829 -0.0566945
-
-0.418496 0.337912 -0.0179462
-0.355369 0.403778 -0.0165117
-0.442815 0.357548 0.0361919
-
-0.376019 0.427241 0.0376264
-0.442815 0.357548 0.0361919
-0.355369 0.403778 -0.0165117
-
-0.442815 0.357548 0.0361919
-0.376019 0.427241 0.0376264
-0.451261 0.364368 0.0977555
-
-0.383191 0.43539 0.09919
-0.451261 0.364368 0.0977555
-0.376019 0.427241 0.0376264
-
-0.383191 0.43539 0.09919
-0.304098 0.493887 0.0892926
-0.376019 0.427241 0.160754
-
-0.298407 0.484643 0.150856
-0.376019 0.427241 0.160754
-0.304098 0.493887 0.0892926
-
-0.376019 0.427241 0.160754
-0.298407 0.484643 0.150856
-0.355369 0.403778 0.214892
-
-0.282019 0.458027 0.204994
-0.355369 0.403778 0.214892
-0.298407 0.484643 0.150856
-
-0.355369 0.403778 0.214892
-0.282019 0.458027 0.204994
-0.323731 0.367829 0.255075
-
-0.256911 0.417249 0.245177
-0.323731 0.367829 0.255075
-0.282019 0.458027 0.204994
-
-0.323731 0.367829 0.255075
-0.256911 0.417249 0.245177
-0.28492 0.323732 0.276455
-
-0.226111 0.367228 0.266558
-0.28492 0.323732 0.276455
-0.256911 0.417249 0.245177
-
-0.28492 0.323732 0.276455
-0.226111 0.367228 0.266558
-0.243619 0.276805 0.276455
-
-0.193335 0.313996 0.266558
-0.243619 0.276805 0.276455
-0.226111 0.367228 0.266558
-
-0.243619 0.276805 0.276455
-0.193335 0.313996 0.266558
-0.204809 0.232708 0.255075
-
-0.162535 0.263974 0.245177
-0.204809 0.232708 0.255075
-0.193335 0.313996 0.266558
-
-0.204809 0.232708 0.255075
-0.162535 0.263974 0.245177
-0.173171 0.19676 0.214892
-
-0.137427 0.223196 0.204994
-0.173171 0.19676 0.214892
-0.162535 0.263974 0.245177
-
-0.173171 0.19676 0.214892
-0.137427 0.223196 0.204994
-0.15252 0.173297 0.160754
-
-0.121039 0.19658 0.150856
-0.15252 0.173297 0.160754
-0.137427 0.223196 0.204994
-
-0.15252 0.173297 0.160754
-0.121039 0.19658 0.150856
-0.145348 0.165148 0.09919
-
-0.115348 0.187336 0.0892926
-0.145348 0.165148 0.09919
-0.121039 0.19658 0.150856
-
-0.145348 0.165148 0.09919
-0.115348 0.187336 0.0892926
-0.15252 0.173297 0.0376264
-
-0.121039 0.19658 0.027729
-0.15252 0.173297 0.0376264
-0.115348 0.187336 0.0892926
-
-0.15252 0.173297 0.0376264
-0.121039 0.19658 0.027729
-0.173171 0.19676 -0.0165117
-
-0.137427 0.223196 -0.0264092
-0.173171 0.19676 -0.0165117
-0.121039 0.19658 0.027729
-
-0.173171 0.19676 -0.0165117
-0.137427 0.223196 -0.0264092
-0.204809 0.232708 -0.0566945
-
-0.162535 0.263974 -0.066592
-0.204809 0.232708 -0.0566945
-0.137427 0.223196 -0.0264092
-
-0.204809 0.232708 -0.0566945
-0.162535 0.263974 -0.066592
-0.243619 0.276805 -0.0780754
-
-0.193335 0.313996 -0.0879728
-0.243619 0.276805 -0.0780754
-0.162535 0.263974 -0.066592
-
-0.243619 0.276805 -0.0780754
-0.193335 0.313996 -0.0879728
-0.28492 0.323732 -0.0780754
-
-0.226111 0.367228 -0.0879728
-0.28492 0.323732 -0.0780754
-0.193335 0.313996 -0.0879728
-
-0.28492 0.323732 -0.0780754
-0.226111 0.367228 -0.0879728
-0.323731 0.367829 -0.0566945
-
-0.256911 0.417249 -0.066592
-0.323731 0.367829 -0.0566945
-0.226111 0.367228 -0.0879728
-
-0.323731 0.367829 -0.0566945
-0.256911 0.417249 -0.066592
-0.355369 0.403778 -0.0165117
-
-0.282019 0.458027 -0.0264092
-0.355369 0.403778 -0.0165117
-0.256911 0.417249 -0.066592
-
-0.355369 0.403778 -0.0165117
-0.282019 0.458027 -0.0264092
-0.376019 0.427241 0.0376264
-
-0.298407 0.484643 0.027729
-0.376019 0.427241 0.0376264
-0.282019 0.458027 -0.0264092
-
-0.376019 0.427241 0.0376264
-0.298407 0.484643 0.027729
-0.383191 0.43539 0.09919
-
-0.304098 0.493887 0.0892926
-0.383191 0.43539 0.09919
-0.298407 0.484643 0.027729
-
-0.304098 0.493887 0.0892926
-0.216257 0.538176 0.0691939
-0.298407 0.484643 0.150856
-
-0.212209 0.528103 0.130758
-0.298407 0.484643 0.150856
-0.216257 0.538176 0.0691939
-
-0.298407 0.484643 0.150856
-0.212209 0.528103 0.130758
-0.282019 0.458027 0.204994
-
-0.200555 0.4991 0.184896
-0.282019 0.458027 0.204994
-0.212209 0.528103 0.130758
-
-0.282019 0.458027 0.204994
-0.200555 0.4991 0.184896
-0.256911 0.417249 0.245177
-
-0.1827 0.454666 0.225078
-0.256911 0.417249 0.245177
-0.200555 0.4991 0.184896
-
-0.256911 0.417249 0.245177
-0.1827 0.454666 0.225078
-0.226111 0.367228 0.266558
-
-0.160797 0.400158 0.246459
-0.226111 0.367228 0.266558
-0.1827 0.454666 0.225078
-
-0.226111 0.367228 0.266558
-0.160797 0.400158 0.246459
-0.193335 0.313996 0.266558
-
-0.137488 0.342153 0.246459
-0.193335 0.313996 0.266558
-0.160797 0.400158 0.246459
-
-0.193335 0.313996 0.266558
-0.137488 0.342153 0.246459
-0.162535 0.263974 0.245177
-
-0.115586 0.287646 0.225078
-0.162535 0.263974 0.245177
-0.137488 0.342153 0.246459
-
-0.162535 0.263974 0.245177
-0.115586 0.287646 0.225078
-0.137427 0.223196 0.204994
-
-0.0977302 0.243211 0.184896
-0.137427 0.223196 0.204994
-0.115586 0.287646 0.225078
-
-0.137427 0.223196 0.204994
-0.0977302 0.243211 0.184896
-0.121039 0.19658 0.150856
-
-0.0860759 0.214208 0.130758
-0.121039 0.19658 0.150856
-0.0977302 0.243211 0.184896
-
-0.121039 0.19658 0.150856
-0.0860759 0.214208 0.130758
-0.115348 0.187336 0.0892926
-
-0.0820284 0.204136 0.0691939
-0.115348 0.187336 0.0892926
-0.0860759 0.214208 0.130758
-
-0.115348 0.187336 0.0892926
-0.0820284 0.204136 0.0691939
-0.121039 0.19658 0.027729
-
-0.0860759 0.214208 0.00763026
-0.121039 0.19658 0.027729
-0.0820284 0.204136 0.0691939
-
-0.121039 0.19658 0.027729
-0.0860759 0.214208 0.00763026
-0.137427 0.223196 -0.0264092
-
-0.0977302 0.243211 -0.0465079
-0.137427 0.223196 -0.0264092
-0.0860759 0.214208 0.00763026
-
-0.137427 0.223196 -0.0264092
-0.0977302 0.243211 -0.0465079
-0.162535 0.263974 -0.066592
-
-0.115586 0.287646 -0.0866907
-0.162535 0.263974 -0.066592
-0.0977302 0.243211 -0.0465079
-
-0.162535 0.263974 -0.066592
-0.115586 0.287646 -0.0866907
-0.193335 0.313996 -0.0879728
-
-0.137488 0.342153 -0.108072
-0.193335 0.313996 -0.0879728
-0.115586 0.287646 -0.0866907
-
-0.193335 0.313996 -0.0879728
-0.137488 0.342153 -0.108072
-0.226111 0.367228 -0.0879728
-
-0.160797 0.400158 -0.108072
-0.226111 0.367228 -0.0879728
-0.137488 0.342153 -0.108072
-
-0.226111 0.367228 -0.0879728
-0.160797 0.400158 -0.108072
-0.256911 0.417249 -0.066592
-
-0.1827 0.454666 -0.0866907
-0.256911 0.417249 -0.066592
-0.160797 0.400158 -0.108072
-
-0.256911 0.417249 -0.066592
-0.1827 0.454666 -0.0866907
-0.282019 0.458027 -0.0264092
-
-0.200555 0.4991 -0.0465079
-0.282019 0.458027 -0.0264092
-0.1827 0.454666 -0.0866907
-
-0.282019 0.458027 -0.0264092
-0.200555 0.4991 -0.0465079
-0.298407 0.484643 0.027729
-
-0.212209 0.528103 0.00763026
-0.298407 0.484643 0.027729
-0.200555 0.4991 -0.0465079
-
-0.298407 0.484643 0.027729
-0.212209 0.528103 0.00763026
-0.304098 0.493887 0.0892926
-
-0.216257 0.538176 0.0691939
-0.304098 0.493887 0.0892926
-0.212209 0.528103 0.00763026
-
-0.216257 0.538176 0.0691939
-0.122194 0.566982 0.0411901
-0.212209 0.528103 0.130758
-
-0.119907 0.55637 0.102754
-0.212209 0.528103 0.130758
-0.122194 0.566982 0.0411901
-
-0.212209 0.528103 0.130758
-0.119907 0.55637 0.102754
-0.200555 0.4991 0.184896
-
-0.113322 0.525815 0.156892
-0.200555 0.4991 0.184896
-0.119907 0.55637 0.102754
-
-0.200555 0.4991 0.184896
-0.113322 0.525815 0.156892
-0.1827 0.454666 0.225078
-
-0.103233 0.479002 0.197075
-0.1827 0.454666 0.225078
-0.113322 0.525815 0.156892
-
-0.1827 0.454666 0.225078
-0.103233 0.479002 0.197075
-0.160797 0.400158 0.246459
-
-0.0908568 0.421577 0.218456
-0.160797 0.400158 0.246459
-0.103233 0.479002 0.197075
-
-0.160797 0.400158 0.246459
-0.0908568 0.421577 0.218456
-0.137488 0.342153 0.246459
-
-0.0776866 0.360467 0.218456
-0.137488 0.342153 0.246459
-0.0908568 0.421577 0.218456
-
-0.137488 0.342153 0.246459
-0.0776866 0.360467 0.218456
-0.115586 0.287646 0.225078
-
-0.0653106 0.303042 0.197075
-0.115586 0.287646 0.225078
-0.0776866 0.360467 0.218456
-
-0.115586 0.287646 0.225078
-0.0653106 0.303042 0.197075
-0.0977302 0.243211 0.184896
-
-0.0552216 0.256229 0.156892
-0.0977302 0.243211 0.184896
-0.0653106 0.303042 0.197075
-
-0.0977302 0.243211 0.184896
-0.0552216 0.256229 0.156892
-0.0860759 0.214208 0.130758
-
-0.0486364 0.225674 0.102754
-0.0860759 0.214208 0.130758
-0.0552216 0.256229 0.156892
-
-0.0860759 0.214208 0.130758
-0.0486364 0.225674 0.102754
-0.0820284 0.204136 0.0691939
-
-0.0463494 0.215062 0.0411901
-0.0820284 0.204136 0.0691939
-0.0486364 0.225674 0.102754
-
-0.0820284 0.204136 0.0691939
-0.0463494 0.215062 0.0411901
-0.0860759 0.214208 0.00763026
-
-0.0486364 0.225674 -0.0203735
-0.0860759 0.214208 0.00763026
-0.0463494 0.215062 0.0411901
-
-0.0860759 0.214208 0.00763026
-0.0486364 0.225674 -0.0203735
-0.0977302 0.243211 -0.0465079
-
-0.0552216 0.256229 -0.0745116
-0.0977302 0.243211 -0.0465079
-0.0486364 0.225674 -0.0203735
-
-0.0977302 0.243211 -0.0465079
-0.0552216 0.256229 -0.0745116
-0.115586 0.287646 -0.0866907
-
-0.0653106 0.303042 -0.114694
-0.115586 0.287646 -0.0866907
-0.0552216 0.256229 -0.0745116
-
-0.115586 0.287646 -0.0866907
-0.0653106 0.303042 -0.114694
-0.137488 0.342153 -0.108072
-
-0.0776866 0.360467 -0.136075
-0.137488 0.342153 -0.108072
-0.0653106 0.303042 -0.114694
-
-0.137488 0.342153 -0.108072
-0.0776866 0.360467 -0.136075
-0.160797 0.400158 -0.108072
-
-0.0908568 0.421577 -0.136075
-0.160797 0.400158 -0.108072
-0.0776866 0.360467 -0.136075
-
-0.160797 0.400158 -0.108072
-0.0908568 0.421577 -0.136075
-0.1827 0.454666 -0.0866907
-
-0.103233 0.479002 -0.114694
-0.1827 0.454666 -0.0866907
-0.0908568 0.421577 -0.136075
-
-0.1827 0.454666 -0.0866907
-0.103233 0.479002 -0.114694
-0.200555 0.4991 -0.0465079
-
-0.113322 0.525815 -0.0745116
-0.200555 0.4991 -0.0465079
-0.103233 0.479002 -0.114694
-
-0.200555 0.4991 -0.0465079
-0.113322 0.525815 -0.0745116
-0.212209 0.528103 0.00763026
-
-0.119907 0.55637 -0.0203735
-0.212209 0.528103 0.00763026
-0.113322 0.525815 -0.0745116
-
-0.212209 0.528103 0.00763026
-0.119907 0.55637 -0.0203735
-0.216257 0.538176 0.0691939
-
-0.122194 0.566982 0.0411901
-0.216257 0.538176 0.0691939
-0.119907 0.55637 -0.0203735
-
-0.122194 0.566982 0.0411901
-0.0246159 0.579477 0.00848059
-0.119907 0.55637 0.102754
-
-0.0241552 0.568632 0.0700442
-0.119907 0.55637 0.102754
-0.0246159 0.579477 0.00848059
-
-0.119907 0.55637 0.102754
-0.0241552 0.568632 0.0700442
-0.113322 0.525815 0.156892
-
-0.0228286 0.537403 0.124182
-0.113322 0.525815 0.156892
-0.0241552 0.568632 0.0700442
-
-0.113322 0.525815 0.156892
-0.0228286 0.537403 0.124182
-0.103233 0.479002 0.197075
-
-0.0207962 0.489558 0.164365
-0.103233 0.479002 0.197075
-0.0228286 0.537403 0.124182
-
-0.103233 0.479002 0.197075
-0.0207962 0.489558 0.164365
-0.0908568 0.421577 0.218456
-
-0.0183031 0.430868 0.185746
-0.0908568 0.421577 0.218456
-0.0207962 0.489558 0.164365
-
-0.0908568 0.421577 0.218456
-0.0183031 0.430868 0.185746
-0.0776866 0.360467 0.218456
-
-0.0156499 0.368411 0.185746
-0.0776866 0.360467 0.218456
-0.0183031 0.430868 0.185746
-
-0.0776866 0.360467 0.218456
-0.0156499 0.368411 0.185746
-0.0653106 0.303042 0.197075
-
-0.0131568 0.309721 0.164365
-0.0653106 0.303042 0.197075
-0.0156499 0.368411 0.185746
-
-0.0653106 0.303042 0.197075
-0.0131568 0.309721 0.164365
-0.0552216 0.256229 0.156892
-
-0.0111243 0.261876 0.124182
-0.0552216 0.256229 0.156892
-0.0131568 0.309721 0.164365
-
-0.0552216 0.256229 0.156892
-0.0111243 0.261876 0.124182
-0.0486364 0.225674 0.102754
-
-0.00979778 0.230647 0.0700442
-0.0486364 0.225674 0.102754
-0.0111243 0.261876 0.124182
-
-0.0486364 0.225674 0.102754
-0.00979778 0.230647 0.0700442
-0.0463494 0.215062 0.0411901
-
-0.00933706 0.219802 0.00848059
-0.0463494 0.215062 0.0411901
-0.00979778 0.230647 0.0700442
-
-0.0463494 0.215062 0.0411901
-0.00933706 0.219802 0.00848059
-0.0486364 0.225674 -0.0203735
-
-0.00979778 0.230647 -0.053083
-0.0486364 0.225674 -0.0203735
-0.00933706 0.219802 0.00848059
-
-0.0486364 0.225674 -0.0203735
-0.00979778 0.230647 -0.053083
-0.0552216 0.256229 -0.0745116
-
-0.0111243 0.261876 -0.107221
-0.0552216 0.256229 -0.0745116
-0.00979778 0.230647 -0.053083
-
-0.0552216 0.256229 -0.0745116
-0.0111243 0.261876 -0.107221
-0.0653106 0.303042 -0.114694
-
-0.0131568 0.309721 -0.147404
-0.0653106 0.303042 -0.114694
-0.0111243 0.261876 -0.107221
-
-0.0653106 0.303042 -0.114694
-0.0131568 0.309721 -0.147404
-0.0776866 0.360467 -0.136075
-
-0.0156499 0.368411 -0.168785
-0.0776866 0.360467 -0.136075
-0.0131568 0.309721 -0.147404
-
-0.0776866 0.360467 -0.136075
-0.0156499 0.368411 -0.168785
-0.0908568 0.421577 -0.136075
-
-0.0183031 0.430868 -0.168785
-0.0908568 0.421577 -0.136075
-0.0156499 0.368411 -0.168785
-
-0.0908568 0.421577 -0.136075
-0.0183031 0.430868 -0.168785
-0.103233 0.479002 -0.114694
-
-0.0207962 0.489558 -0.147404
-0.103233 0.479002 -0.114694
-0.0183031 0.430868 -0.168785
-
-0.103233 0.479002 -0.114694
-0.0207962 0.489558 -0.147404
-0.113322 0.525815 -0.0745116
-
-0.0228286 0.537403 -0.107221
-0.113322 0.525815 -0.0745116
-0.0207962 0.489558 -0.147404
-
-0.113322 0.525815 -0.0745116
-0.0228286 0.537403 -0.107221
-0.119907 0.55637 -0.0203735
-
-0.0241552 0.568632 -0.053083
-0.119907 0.55637 -0.0203735
-0.0228286 0.537403 -0.107221
-
-0.119907 0.55637 -0.0203735
-0.0241552 0.568632 -0.053083
-0.122194 0.566982 0.0411901
-
-0.0246159 0.579477 0.00848059
-0.122194 0.566982 0.0411901
-0.0241552 0.568632 -0.053083
-
-0.0246159 0.579477 0.00848059
--0.0736703 0.575302 -0.0251978
-0.0241552 0.568632 0.0700442
-
--0.0722915 0.564535 0.0363658
-0.0241552 0.568632 0.0700442
--0.0736703 0.575302 -0.0251978
-
-0.0241552 0.568632 0.0700442
--0.0722915 0.564535 0.0363658
-0.0228286 0.537403 0.124182
-
--0.0683214 0.533531 0.090504
-0.0228286 0.537403 0.124182
--0.0722915 0.564535 0.0363658
-
-0.0228286 0.537403 0.124182
--0.0683214 0.533531 0.090504
-0.0207962 0.489558 0.164365
-
--0.0622387 0.486031 0.130687
-0.0207962 0.489558 0.164365
--0.0683214 0.533531 0.090504
-
-0.0207962 0.489558 0.164365
--0.0622387 0.486031 0.130687
-0.0183031 0.430868 0.185746
-
--0.0547773 0.427764 0.152068
-0.0183031 0.430868 0.185746
--0.0622387 0.486031 0.130687
-
-0.0183031 0.430868 0.185746
--0.0547773 0.427764 0.152068
-0.0156499 0.368411 0.185746
-
--0.046837 0.365757 0.152068
-0.0156499 0.368411 0.185746
--0.0547773 0.427764 0.152068
-
-0.0156499 0.368411 0.185746
--0.046837 0.365757 0.152068
-0.0131568 0.309721 0.164365
-
--0.0393755 0.307489 0.130687
-0.0131568 0.309721 0.164365
--0.046837 0.365757 0.152068
-
-0.0131568 0.309721 0.164365
--0.0393755 0.307489 0.130687
-0.0111243 0.261876 0.124182
-
--0.0332929 0.259989 0.090504
-0.0111243 0.261876 0.124182
--0.0393755 0.307489 0.130687
-
-0.0111243 0.261876 0.124182
--0.0332929 0.259989 0.090504
-0.00979778 0.230647 0.0700442
-
--0.0293227 0.228986 0.0363658
-0.00979778 0.230647 0.0700442
--0.0332929 0.259989 0.090504
-
-0.00979778 0.230647 0.0700442
--0.0293227 0.228986 0.0363658
-0.00933706 0.219802 0.00848059
-
--0.0279439 0.218218 -0.0251978
-0.00933706 0.219802 0.00848059
--0.0293227 0.228986 0.0363658
-
-0.00933706 0.219802 0.00848059
--0.0279439 0.218218 -0.0251978
-0.00979778 0.230647 -0.053083
-
--0.0293227 0.228986 -0.0867614
-0.00979778 0.230647 -0.053083
--0.0279439 0.218218 -0.0251978
-
-0.00979778 0.230647 -0.053083
--0.0293227 0.228986 -0.0867614
-0.0111243 0.261876 -0.107221
-
--0.0332929 0.259989 -0.1409
-0.0111243 0.261876 -0.107221
--0.0293227 0.228986 -0.0867614
-
-0.0111243 0.261876 -0.107221
--0.0332929 0.259989 -0.1409
-0.0131568 0.309721 -0.147404
-
--0.0393755 0.307489 -0.181082
-0.0131568 0.309721 -0.147404
--0.0332929 0.259989 -0.1409
-
-0.0131568 0.309721 -0.147404
--0.0393755 0.307489 -0.181082
-0.0156499 0.368411 -0.168785
-
--0.046837 0.365757 -0.202463
-0.0156499 0.368411 -0.168785
--0.0393755 0.307489 -0.181082
-
-0.0156499 0.368411 -0.168785
--0.046837 0.365757 -0.202463
-0.0183031 0.430868 -0.168785
-
--0.0547773 0.427764 -0.202463
-0.0183031 0.430868 -0.168785
--0.046837 0.365757 -0.202463
-
-0.0183031 0.430868 -0.168785
--0.0547773 0.427764 -0.202463
-0.0207962 0.489558 -0.147404
-
--0.0622387 0.486031 -0.181082
-0.0207962 0.489558 -0.147404
--0.0547773 0.427764 -0.202463
-
-0.0207962 0.489558 -0.147404
--0.0622387 0.486031 -0.181082
-0.0228286 0.537403 -0.107221
-
--0.0683214 0.533531 -0.1409
-0.0228286 0.537403 -0.107221
--0.0622387 0.486031 -0.181082
-
-0.0228286 0.537403 -0.107221
--0.0683214 0.533531 -0.1409
-0.0241552 0.568632 -0.053083
-
--0.0722915 0.564535 -0.0867614
-0.0241552 0.568632 -0.053083
--0.0683214 0.533531 -0.1409
-
-0.0241552 0.568632 -0.053083
--0.0722915 0.564535 -0.0867614
-0.0246159 0.579477 0.00848059
-
--0.0736703 0.575302 -0.0251978
-0.0246159 0.579477 0.00848059
--0.0722915 0.564535 -0.0867614
-
--0.0736703 0.575302 -0.0251978
--0.169837 0.554577 -0.0559975
--0.0722915 0.564535 0.0363658
-
--0.166659 0.544197 0.00556615
--0.0722915 0.564535 0.0363658
--0.169837 0.554577 -0.0559975
-
--0.0722915 0.564535 0.0363658
--0.166659 0.544197 0.00556615
--0.0683214 0.533531 0.090504
-
--0.157506 0.514311 0.0597043
--0.0683214 0.533531 0.090504
--0.166659 0.544197 0.00556615
-
--0.0683214 0.533531 0.090504
--0.157506 0.514311 0.0597043
--0.0622387 0.486031 0.130687
-
--0.143483 0.468522 0.0998871
--0.0622387 0.486031 0.130687
--0.157506 0.514311 0.0597043
-
--0.0622387 0.486031 0.130687
--0.143483 0.468522 0.0998871
--0.0547773 0.427764 0.152068
-
--0.126282 0.412353 0.121268
--0.0547773 0.427764 0.152068
--0.143483 0.468522 0.0998871
-
--0.0547773 0.427764 0.152068
--0.126282 0.412353 0.121268
--0.046837 0.365757 0.152068
-
--0.107976 0.35258 0.121268
--0.046837 0.365757 0.152068
--0.126282 0.412353 0.121268
-
--0.046837 0.365757 0.152068
--0.107976 0.35258 0.121268
--0.0393755 0.307489 0.130687
-
--0.0907751 0.296412 0.0998871
--0.0393755 0.307489 0.130687
--0.107976 0.35258 0.121268
-
--0.0393755 0.307489 0.130687
--0.0907751 0.296412 0.0998871
--0.0332929 0.259989 0.090504
-
--0.0767524 0.250623 0.0597043
--0.0332929 0.259989 0.090504
--0.0907751 0.296412 0.0998871
-
--0.0332929 0.259989 0.090504
--0.0767524 0.250623 0.0597043
--0.0293227 0.228986 0.0363658
-
--0.0675997 0.220736 0.00556615
--0.0293227 0.228986 0.0363658
--0.0767524 0.250623 0.0597043
-
--0.0293227 0.228986 0.0363658
--0.0675997 0.220736 0.00556615
--0.0279439 0.218218 -0.0251978
-
--0.064421 0.210357 -0.0559975
--0.0279439 0.218218 -0.0251978
--0.0675997 0.220736 0.00556615
-
--0.0279439 0.218218 -0.0251978
--0.064421 0.210357 -0.0559975
--0.0293227 0.228986 -0.0867614
-
--0.0675997 0.220736 -0.117561
--0.0293227 0.228986 -0.0867614
--0.064421 0.210357 -0.0559975
-
--0.0293227 0.228986 -0.0867614
--0.0675997 0.220736 -0.117561
--0.0332929 0.259989 -0.1409
-
--0.0767524 0.250623 -0.171699
--0.0332929 0.259989 -0.1409
--0.0675997 0.220736 -0.117561
-
--0.0332929 0.259989 -0.1409
--0.0767524 0.250623 -0.171699
--0.0393755 0.307489 -0.181082
-
--0.0907751 0.296412 -0.211882
--0.0393755 0.307489 -0.181082
--0.0767524 0.250623 -0.171699
-
--0.0393755 0.307489 -0.181082
--0.0907751 0.296412 -0.211882
--0.046837 0.365757 -0.202463
-
--0.107976 0.35258 -0.233263
--0.046837 0.365757 -0.202463
--0.0907751 0.296412 -0.211882
-
--0.046837 0.365757 -0.202463
--0.107976 0.35258 -0.233263
--0.0547773 0.427764 -0.202463
-
--0.126282 0.412353 -0.233263
--0.0547773 0.427764 -0.202463
--0.107976 0.35258 -0.233263
-
--0.0547773 0.427764 -0.202463
--0.126282 0.412353 -0.233263
--0.0622387 0.486031 -0.181082
-
--0.143483 0.468522 -0.211882
--0.0622387 0.486031 -0.181082
--0.126282 0.412353 -0.233263
-
--0.0622387 0.486031 -0.181082
--0.143483 0.468522 -0.211882
--0.0683214 0.533531 -0.1409
-
--0.157506 0.514311 -0.171699
--0.0683214 0.533531 -0.1409
--0.143483 0.468522 -0.211882
-
--0.0683214 0.533531 -0.1409
--0.157506 0.514311 -0.171699
--0.0722915 0.564535 -0.0867614
-
--0.166659 0.544197 -0.117561
--0.0722915 0.564535 -0.0867614
--0.157506 0.514311 -0.171699
-
--0.0722915 0.564535 -0.0867614
--0.166659 0.544197 -0.117561
--0.0736703 0.575302 -0.0251978
-
--0.169837 0.554577 -0.0559975
--0.0736703 0.575302 -0.0251978
--0.166659 0.544197 -0.117561
-
--0.169837 0.554577 -0.0559975
--0.261118 0.517897 -0.0803997
--0.166659 0.544197 0.00556615
-
--0.256231 0.508204 -0.0188361
--0.166659 0.544197 0.00556615
--0.261118 0.517897 -0.0803997
-
--0.166659 0.544197 0.00556615
--0.256231 0.508204 -0.0188361
--0.157506 0.514311 0.0597043
-
--0.242159 0.480294 0.0353021
--0.157506 0.514311 0.0597043
--0.256231 0.508204 -0.0188361
-
--0.157506 0.514311 0.0597043
--0.242159 0.480294 0.0353021
--0.143483 0.468522 0.0998871
-
--0.2206 0.437534 0.0754849
--0.143483 0.468522 0.0998871
--0.242159 0.480294 0.0353021
-
--0.143483 0.468522 0.0998871
--0.2206 0.437534 0.0754849
--0.126282 0.412353 0.121268
-
--0.194153 0.38508 0.0968657
--0.126282 0.412353 0.121268
--0.2206 0.437534 0.0754849
-
--0.126282 0.412353 0.121268
--0.194153 0.38508 0.0968657
--0.107976 0.35258 0.121268
-
--0.16601 0.32926 0.0968657
--0.107976 0.35258 0.121268
--0.194153 0.38508 0.0968657
-
--0.107976 0.35258 0.121268
--0.16601 0.32926 0.0968657
--0.0907751 0.296412 0.0998871
-
--0.139563 0.276807 0.0754849
--0.0907751 0.296412 0.0998871
--0.16601 0.32926 0.0968657
-
--0.0907751 0.296412 0.0998871
--0.139563 0.276807 0.0754849
--0.0767524 0.250623 0.0597043
-
--0.118004 0.234047 0.0353021
--0.0767524 0.250623 0.0597043
--0.139563 0.276807 0.0754849
-
--0.0767524 0.250623 0.0597043
--0.118004 0.234047 0.0353021
--0.0675997 0.220736 0.00556615
-
--0.103932 0.206137 -0.0188361
--0.0675997 0.220736 0.00556615
--0.118004 0.234047 0.0353021
-
--0.0675997 0.220736 0.00556615
--0.103932 0.206137 -0.0188361
--0.064421 0.210357 -0.0559975
-
--0.0990448 0.196444 -0.0803997
--0.064421 0.210357 -0.0559975
--0.103932 0.206137 -0.0188361
-
--0.064421 0.210357 -0.0559975
--0.0990448 0.196444 -0.0803997
--0.0675997 0.220736 -0.117561
-
--0.103932 0.206137 -0.141963
--0.0675997 0.220736 -0.117561
--0.0990448 0.196444 -0.0803997
-
--0.0675997 0.220736 -0.117561
--0.103932 0.206137 -0.141963
--0.0767524 0.250623 -0.171699
-
--0.118004 0.234047 -0.196101
--0.0767524 0.250623 -0.171699
--0.103932 0.206137 -0.141963
-
--0.0767524 0.250623 -0.171699
--0.118004 0.234047 -0.196101
--0.0907751 0.296412 -0.211882
-
--0.139563 0.276807 -0.236284
--0.0907751 0.296412 -0.211882
--0.118004 0.234047 -0.196101
-
--0.0907751 0.296412 -0.211882
--0.139563 0.276807 -0.236284
--0.107976 0.35258 -0.233263
-
--0.16601 0.32926 -0.257665
--0.107976 0.35258 -0.233263
--0.139563 0.276807 -0.236284
-
--0.107976 0.35258 -0.233263
--0.16601 0.32926 -0.257665
--0.126282 0.412353 -0.233263
-
--0.194153 0.38508 -0.257665
--0.126282 0.412353 -0.233263
--0.16601 0.32926 -0.257665
-
--0.126282 0.412353 -0.233263
--0.194153 0.38508 -0.257665
--0.143483 0.468522 -0.211882
-
--0.2206 0.437534 -0.236284
--0.143483 0.468522 -0.211882
--0.194153 0.38508 -0.257665
-
--0.143483 0.468522 -0.211882
--0.2206 0.437534 -0.236284
--0.157506 0.514311 -0.171699
-
--0.242159 0.480294 -0.196101
--0.157506 0.514311 -0.171699
--0.2206 0.437534 -0.236284
-
--0.157506 0.514311 -0.171699
--0.242159 0.480294 -0.196101
--0.166659 0.544197 -0.117561
-
--0.256231 0.508204 -0.141963
--0.166659 0.544197 -0.117561
--0.242159 0.480294 -0.196101
-
--0.166659 0.544197 -0.117561
--0.256231 0.508204 -0.141963
--0.169837 0.554577 -0.0559975
-
--0.261118 0.517897 -0.0803997
--0.169837 0.554577 -0.0559975
--0.256231 0.508204 -0.141963
-
--0.261118 0.517897 -0.0803997
--0.344887 0.466318 -0.0956167
--0.256231 0.508204 -0.0188361
-
--0.338432 0.457591 -0.034053
--0.256231 0.508204 -0.0188361
--0.344887 0.466318 -0.0956167
-
--0.256231 0.508204 -0.0188361
--0.338432 0.457591 -0.034053
--0.242159 0.480294 0.0353021
-
--0.319846 0.43246 0.0200851
--0.242159 0.480294 0.0353021
--0.338432 0.457591 -0.034053
-
--0.242159 0.480294 0.0353021
--0.319846 0.43246 0.0200851
--0.2206 0.437534 0.0754849
-
--0.29137 0.393959 0.0602679
--0.2206 0.437534 0.0754849
--0.319846 0.43246 0.0200851
-
--0.2206 0.437534 0.0754849
--0.29137 0.393959 0.0602679
--0.194153 0.38508 0.0968657
-
--0.25644 0.346729 0.0816487
--0.194153 0.38508 0.0968657
--0.29137 0.393959 0.0602679
-
--0.194153 0.38508 0.0968657
--0.25644 0.346729 0.0816487
--0.16601 0.32926 0.0968657
-
--0.219267 0.296469 0.0816487
--0.16601 0.32926 0.0968657
--0.25644 0.346729 0.0816487
-
--0.16601 0.32926 0.0968657
--0.219267 0.296469 0.0816487
--0.139563 0.276807 0.0754849
-
--0.184336 0.249239 0.0602679
--0.139563 0.276807 0.0754849
--0.219267 0.296469 0.0816487
-
--0.139563 0.276807 0.0754849
--0.184336 0.249239 0.0602679
--0.118004 0.234047 0.0353021
-
--0.15586 0.210737 0.0200851
--0.118004 0.234047 0.0353021
--0.184336 0.249239 0.0602679
-
--0.118004 0.234047 0.0353021
--0.15586 0.210737 0.0200851
--0.103932 0.206137 -0.0188361
-
--0.137274 0.185607 -0.034053
--0.103932 0.206137 -0.0188361
--0.15586 0.210737 0.0200851
-
--0.103932 0.206137 -0.0188361
--0.137274 0.185607 -0.034053
--0.0990448 0.196444 -0.0803997
-
--0.130819 0.176879 -0.0956167
--0.0990448 0.196444 -0.0803997
--0.137274 0.185607 -0.034053
-
--0.0990448 0.196444 -0.0803997
--0.130819 0.176879 -0.0956167
--0.103932 0.206137 -0.141963
-
--0.137274 0.185607 -0.15718
--0.103932 0.206137 -0.141963
--0.130819 0.176879 -0.0956167
-
--0.103932 0.206137 -0.141963
--0.137274 0.185607 -0.15718
--0.118004 0.234047 -0.196101
-
--0.15586 0.210737 -0.211318
--0.118004 0.234047 -0.196101
--0.137274 0.185607 -0.15718
-
--0.118004 0.234047 -0.196101
--0.15586 0.210737 -0.211318
--0.139563 0.276807 -0.236284
-
--0.184336 0.249239 -0.251501
--0.139563 0.276807 -0.236284
--0.15586 0.210737 -0.211318
-
--0.139563 0.276807 -0.236284
--0.184336 0.249239 -0.251501
--0.16601 0.32926 -0.257665
-
--0.219267 0.296469 -0.272882
--0.16601 0.32926 -0.257665
--0.184336 0.249239 -0.251501
-
--0.16601 0.32926 -0.257665
--0.219267 0.296469 -0.272882
--0.194153 0.38508 -0.257665
-
--0.25644 0.346729 -0.272882
--0.194153 0.38508 -0.257665
--0.219267 0.296469 -0.272882
-
--0.194153 0.38508 -0.257665
--0.25644 0.346729 -0.272882
--0.2206 0.437534 -0.236284
-
--0.29137 0.393959 -0.251501
--0.2206 0.437534 -0.236284
--0.25644 0.346729 -0.272882
-
--0.2206 0.437534 -0.236284
--0.29137 0.393959 -0.251501
--0.242159 0.480294 -0.196101
-
--0.319846 0.43246 -0.211318
--0.242159 0.480294 -0.196101
--0.29137 0.393959 -0.251501
-
--0.242159 0.480294 -0.196101
--0.319846 0.43246 -0.211318
--0.256231 0.508204 -0.141963
-
--0.338432 0.457591 -0.15718
--0.256231 0.508204 -0.141963
--0.319846 0.43246 -0.211318
-
--0.256231 0.508204 -0.141963
--0.338432 0.457591 -0.15718
--0.261118 0.517897 -0.0803997
-
--0.344887 0.466318 -0.0956167
--0.261118 0.517897 -0.0803997
--0.338432 0.457591 -0.15718
-
--0.344887 0.466318 -0.0956167
--0.418735 0.401325 -0.0999099
--0.338432 0.457591 -0.034053
-
--0.410897 0.393813 -0.0383463
--0.338432 0.457591 -0.034053
--0.418735 0.401325 -0.0999099
-
--0.338432 0.457591 -0.034053
--0.410897 0.393813 -0.0383463
--0.319846 0.43246 0.0200851
-
--0.388332 0.372186 0.0157919
--0.319846 0.43246 0.0200851
--0.410897 0.393813 -0.0383463
-
--0.319846 0.43246 0.0200851
--0.388332 0.372186 0.0157919
--0.29137 0.393959 0.0602679
-
--0.353758 0.33905 0.0559747
--0.29137 0.393959 0.0602679
--0.388332 0.372186 0.0157919
-
--0.29137 0.393959 0.0602679
--0.353758 0.33905 0.0559747
--0.25644 0.346729 0.0816487
-
--0.311348 0.298403 0.0773555
--0.25644 0.346729 0.0816487
--0.353758 0.33905 0.0559747
-
--0.25644 0.346729 0.0816487
--0.311348 0.298403 0.0773555
--0.219267 0.296469 0.0816487
-
--0.266216 0.255148 0.0773555
--0.219267 0.296469 0.0816487
--0.311348 0.298403 0.0773555
-
--0.219267 0.296469 0.0816487
--0.266216 0.255148 0.0773555
--0.184336 0.249239 0.0602679
-
--0.223806 0.214501 0.0559747
--0.184336 0.249239 0.0602679
--0.266216 0.255148 0.0773555
-
--0.184336 0.249239 0.0602679
--0.223806 0.214501 0.0559747
--0.15586 0.210737 0.0200851
-
--0.189233 0.181365 0.0157919
--0.15586 0.210737 0.0200851
--0.223806 0.214501 0.0559747
-
--0.15586 0.210737 0.0200851
--0.189233 0.181365 0.0157919
--0.137274 0.185607 -0.034053
-
--0.166667 0.159738 -0.0383463
--0.137274 0.185607 -0.034053
--0.189233 0.181365 0.0157919
-
--0.137274 0.185607 -0.034053
--0.166667 0.159738 -0.0383463
--0.130819 0.176879 -0.0956167
-
--0.15883 0.152227 -0.0999099
--0.130819 0.176879 -0.0956167
--0.166667 0.159738 -0.0383463
-
--0.130819 0.176879 -0.0956167
--0.15883 0.152227 -0.0999099
--0.137274 0.185607 -0.15718
-
--0.166667 0.159738 -0.161474
--0.137274 0.185607 -0.15718
--0.15883 0.152227 -0.0999099
-
--0.137274 0.185607 -0.15718
--0.166667 0.159738 -0.161474
--0.15586 0.210737 -0.211318
-
--0.189233 0.181365 -0.215612
--0.15586 0.210737 -0.211318
--0.166667 0.159738 -0.161474
-
--0.15586 0.210737 -0.211318
--0.189233 0.181365 -0.215612
--0.184336 0.249239 -0.251501
-
--0.223806 0.214501 -0.255794
--0.184336 0.249239 -0.251501
--0.189233 0.181365 -0.215612
-
--0.184336 0.249239 -0.251501
--0.223806 0.214501 -0.255794
--0.219267 0.296469 -0.272882
-
--0.266216 0.255148 -0.277175
--0.219267 0.296469 -0.272882
--0.223806 0.214501 -0.255794
-
--0.219267 0.296469 -0.272882
--0.266216 0.255148 -0.277175
--0.25644 0.346729 -0.272882
-
--0.311348 0.298403 -0.277175
--0.25644 0.346729 -0.272882
--0.266216 0.255148 -0.277175
-
--0.25644 0.346729 -0.272882
--0.311348 0.298403 -0.277175
--0.29137 0.393959 -0.251501
-
--0.353758 0.33905 -0.255794
--0.29137 0.393959 -0.251501
--0.311348 0.298403 -0.277175
-
--0.29137 0.393959 -0.251501
--0.353758 0.33905 -0.255794
--0.319846 0.43246 -0.211318
-
--0.388332 0.372186 -0.215612
--0.319846 0.43246 -0.211318
--0.353758 0.33905 -0.255794
-
--0.319846 0.43246 -0.211318
--0.388332 0.372186 -0.215612
--0.338432 0.457591 -0.15718
-
--0.410897 0.393813 -0.161474
--0.338432 0.457591 -0.15718
--0.388332 0.372186 -0.215612
-
--0.338432 0.457591 -0.15718
--0.410897 0.393813 -0.161474
--0.344887 0.466318 -0.0956167
-
--0.418735 0.401325 -0.0999099
--0.344887 0.466318 -0.0956167
--0.410897 0.393813 -0.161474
-
--0.418735 0.401325 -0.0999099
--0.480536 0.324785 -0.0927889
--0.410897 0.393813 -0.0383463
-
--0.471542 0.318707 -0.0312253
--0.410897 0.393813 -0.0383463
--0.480536 0.324785 -0.0927889
-
--0.410897 0.393813 -0.0383463
--0.471542 0.318707 -0.0312253
--0.388332 0.372186 0.0157919
-
--0.445645 0.301204 0.0229129
--0.388332 0.372186 0.0157919
--0.471542 0.318707 -0.0312253
-
--0.388332 0.372186 0.0157919
--0.445645 0.301204 0.0229129
--0.353758 0.33905 0.0559747
-
--0.40597 0.274388 0.0630957
--0.353758 0.33905 0.0559747
--0.445645 0.301204 0.0229129
-
--0.353758 0.33905 0.0559747
--0.40597 0.274388 0.0630957
--0.311348 0.298403 0.0773555
-
--0.3573 0.241493 0.0844765
--0.311348 0.298403 0.0773555
--0.40597 0.274388 0.0630957
-
--0.311348 0.298403 0.0773555
--0.3573 0.241493 0.0844765
--0.266216 0.255148 0.0773555
-
--0.305507 0.206487 0.0844765
--0.266216 0.255148 0.0773555
--0.3573 0.241493 0.0844765
-
--0.266216 0.255148 0.0773555
--0.305507 0.206487 0.0844765
--0.223806 0.214501 0.0559747
-
--0.256838 0.173592 0.0630957
--0.223806 0.214501 0.0559747
--0.305507 0.206487 0.0844765
-
--0.223806 0.214501 0.0559747
--0.256838 0.173592 0.0630957
--0.189233 0.181365 0.0157919
-
--0.217162 0.146776 0.0229129
--0.189233 0.181365 0.0157919
--0.256838 0.173592 0.0630957
-
--0.189233 0.181365 0.0157919
--0.217162 0.146776 0.0229129
--0.166667 0.159738 -0.0383463
-
--0.191266 0.129273 -0.0312253
--0.166667 0.159738 -0.0383463
--0.217162 0.146776 0.0229129
-
--0.166667 0.159738 -0.0383463
--0.191266 0.129273 -0.0312253
--0.15883 0.152227 -0.0999099
-
--0.182272 0.123194 -0.0927889
--0.15883 0.152227 -0.0999099
--0.191266 0.129273 -0.0312253
-
--0.15883 0.152227 -0.0999099
--0.182272 0.123194 -0.0927889
--0.166667 0.159738 -0.161474
-
--0.191266 0.129273 -0.154353
--0.166667 0.159738 -0.161474
--0.182272 0.123194 -0.0927889
-
--0.166667 0.159738 -0.161474
--0.191266 0.129273 -0.154353
--0.189233 0.181365 -0.215612
-
--0.217162 0.146776 -0.208491
--0.189233 0.181365 -0.215612
--0.191266 0.129273 -0.154353
-
--0.189233 0.181365 -0.215612
--0.217162 0.146776 -0.208491
--0.223806 0.214501 -0.255794
-
--0.256838 0.173592 -0.248673
--0.223806 0.214501 -0.255794
--0.217162 0.146776 -0.208491
-
--0.223806 0.214501 -0.255794
--0.256838 0.173592 -0.248673
--0.266216 0.255148 -0.277175
-
--0.305507 0.206487 -0.270054
--0.266216 0.255148 -0.277175
--0.256838 0.173592 -0.248673
-
--0.266216 0.255148 -0.277175
--0.305507 0.206487 -0.270054
--0.311348 0.298403 -0.277175
-
--0.3573 0.241493 -0.270054
--0.311348 0.298403 -0.277175
--0.305507 0.206487 -0.270054
-
--0.311348 0.298403 -0.277175
--0.3573 0.241493 -0.270054
--0.353758 0.33905 -0.255794
-
--0.40597 0.274388 -0.248673
--0.353758 0.33905 -0.255794
--0.3573 0.241493 -0.270054
-
--0.353758 0.33905 -0.255794
--0.40597 0.274388 -0.248673
--0.388332 0.372186 -0.215612
-
--0.445645 0.301204 -0.208491
--0.388332 0.372186 -0.215612
--0.40597 0.274388 -0.248673
-
--0.388332 0.372186 -0.215612
--0.445645 0.301204 -0.208491
--0.410897 0.393813 -0.161474
-
--0.471542 0.318707 -0.154353
--0.410897 0.393813 -0.161474
--0.445645 0.301204 -0.208491
-
--0.410897 0.393813 -0.161474
--0.471542 0.318707 -0.154353
--0.418735 0.401325 -0.0999099
-
--0.480536 0.324785 -0.0927889
--0.418735 0.401325 -0.0999099
--0.471542 0.318707 -0.154353
-
--0.480536 0.324785 -0.0927889
--0.528513 0.238903 -0.0750672
--0.471542 0.318707 -0.0312253
-
--0.518621 0.234431 -0.0135036
--0.471542 0.318707 -0.0312253
--0.528513 0.238903 -0.0750672
-
--0.471542 0.318707 -0.0312253
--0.518621 0.234431 -0.0135036
--0.445645 0.301204 0.0229129
-
--0.490139 0.221557 0.0406345
--0.445645 0.301204 0.0229129
--0.518621 0.234431 -0.0135036
-
--0.445645 0.301204 0.0229129
--0.490139 0.221557 0.0406345
--0.40597 0.274388 0.0630957
-
--0.446502 0.201832 0.0808173
--0.40597 0.274388 0.0630957
--0.490139 0.221557 0.0406345
-
--0.40597 0.274388 0.0630957
--0.446502 0.201832 0.0808173
--0.3573 0.241493 0.0844765
-
--0.392973 0.177635 0.102198
--0.3573 0.241493 0.0844765
--0.446502 0.201832 0.0808173
-
--0.3573 0.241493 0.0844765
--0.392973 0.177635 0.102198
--0.305507 0.206487 0.0844765
-
--0.336009 0.151886 0.102198
--0.305507 0.206487 0.0844765
--0.392973 0.177635 0.102198
-
--0.305507 0.206487 0.0844765
--0.336009 0.151886 0.102198
--0.256838 0.173592 0.0630957
-
--0.282481 0.127689 0.0808173
--0.256838 0.173592 0.0630957
--0.336009 0.151886 0.102198
-
--0.256838 0.173592 0.0630957
--0.282481 0.127689 0.0808173
--0.217162 0.146776 0.0229129
-
--0.238844 0.107964 0.0406345
--0.217162 0.146776 0.0229129
--0.282481 0.127689 0.0808173
-
--0.217162 0.146776 0.0229129
--0.238844 0.107964 0.0406345
--0.191266 0.129273 -0.0312253
-
--0.210362 0.0950896 -0.0135036
--0.191266 0.129273 -0.0312253
--0.238844 0.107964 0.0406345
-
--0.191266 0.129273 -0.0312253
--0.210362 0.0950896 -0.0135036
--0.182272 0.123194 -0.0927889
-
--0.20047 0.0906183 -0.0750672
--0.182272 0.123194 -0.0927889
--0.210362 0.0950896 -0.0135036
-
--0.182272 0.123194 -0.0927889
--0.20047 0.0906183 -0.0750672
--0.191266 0.129273 -0.154353
-
--0.210362 0.0950896 -0.136631
--0.191266 0.129273 -0.154353
--0.20047 0.0906183 -0.0750672
-
--0.191266 0.129273 -0.154353
--0.210362 0.0950896 -0.136631
--0.217162 0.146776 -0.208491
-
--0.238844 0.107964 -0.190769
--0.217162 0.146776 -0.208491
--0.210362 0.0950896 -0.136631
-
--0.217162 0.146776 -0.208491
--0.238844 0.107964 -0.190769
--0.256838 0.173592 -0.248673
-
--0.282481 0.127689 -0.230952
--0.256838 0.173592 -0.248673
--0.238844 0.107964 -0.190769
-
--0.256838 0.173592 -0.248673
--0.282481 0.127689 -0.230952
--0.305507 0.206487 -0.270054
-
--0.336009 0.151886 -0.252333
--0.305507 0.206487 -0.270054
--0.282481 0.127689 -0.230952
-
--0.305507 0.206487 -0.270054
--0.336009 0.151886 -0.252333
--0.3573 0.241493 -0.270054
-
--0.392973 0.177635 -0.252333
--0.3573 0.241493 -0.270054
--0.336009 0.151886 -0.252333
-
--0.3573 0.241493 -0.270054
--0.392973 0.177635 -0.252333
--0.40597 0.274388 -0.248673
-
--0.446502 0.201832 -0.230952
--0.40597 0.274388 -0.248673
--0.392973 0.177635 -0.252333
-
--0.40597 0.274388 -0.248673
--0.446502 0.201832 -0.230952
--0.445645 0.301204 -0.208491
-
--0.490139 0.221557 -0.190769
--0.445645 0.301204 -0.208491
--0.446502 0.201832 -0.230952
-
--0.445645 0.301204 -0.208491
--0.490139 0.221557 -0.190769
--0.471542 0.318707 -0.154353
-
--0.518621 0.234431 -0.136631
--0.471542 0.318707 -0.154353
--0.490139 0.221557 -0.190769
-
--0.471542 0.318707 -0.154353
--0.518621 0.234431 -0.136631
--0.480536 0.324785 -0.0927889
-
--0.528513 0.238903 -0.0750672
--0.480536 0.324785 -0.0927889
--0.518621 0.234431 -0.136631
-
--0.528513 0.238903 -0.0750672
--0.561285 0.146147 -0.0487695
--0.518621 0.234431 -0.0135036
-
--0.55078 0.143412 0.0127941
--0.518621 0.234431 -0.0135036
--0.561285 0.146147 -0.0487695
-
--0.518621 0.234431 -0.0135036
--0.55078 0.143412 0.0127941
--0.490139 0.221557 0.0406345
-
--0.520532 0.135536 0.0669323
--0.490139 0.221557 0.0406345
--0.55078 0.143412 0.0127941
-
--0.490139 0.221557 0.0406345
--0.520532 0.135536 0.0669323
--0.446502 0.201832 0.0808173
-
--0.474189 0.123469 0.107115
--0.446502 0.201832 0.0808173
--0.520532 0.135536 0.0669323
-
--0.446502 0.201832 0.0808173
--0.474189 0.123469 0.107115
--0.392973 0.177635 0.102198
-
--0.417341 0.108667 0.128496
--0.392973 0.177635 0.102198
--0.474189 0.123469 0.107115
-
--0.392973 0.177635 0.102198
--0.417341 0.108667 0.128496
--0.336009 0.151886 0.102198
-
--0.356845 0.0929152 0.128496
--0.336009 0.151886 0.102198
--0.417341 0.108667 0.128496
-
--0.336009 0.151886 0.102198
--0.356845 0.0929152 0.128496
--0.282481 0.127689 0.0808173
-
--0.299997 0.0781132 0.107115
--0.282481 0.127689 0.0808173
--0.356845 0.0929152 0.128496
-
--0.282481 0.127689 0.0808173
--0.299997 0.0781132 0.107115
--0.238844 0.107964 0.0406345
-
--0.253654 0.0660465 0.0669323
--0.238844 0.107964 0.0406345
--0.299997 0.0781132 0.107115
-
--0.238844 0.107964 0.0406345
--0.253654 0.0660465 0.0669323
--0.210362 0.0950896 -0.0135036
-
--0.223406 0.0581705 0.0127941
--0.210362 0.0950896 -0.0135036
--0.253654 0.0660465 0.0669323
-
--0.210362 0.0950896 -0.0135036
--0.223406 0.0581705 0.0127941
--0.20047 0.0906183 -0.0750672
-
--0.212901 0.0554352 -0.0487695
--0.20047 0.0906183 -0.0750672
--0.223406 0.0581705 0.0127941
-
--0.20047 0.0906183 -0.0750672
--0.212901 0.0554352 -0.0487695
--0.210362 0.0950896 -0.136631
-
--0.223406 0.0581705 -0.110333
--0.210362 0.0950896 -0.136631
--0.212901 0.0554352 -0.0487695
-
--0.210362 0.0950896 -0.136631
--0.223406 0.0581705 -0.110333
--0.238844 0.107964 -0.190769
-
--0.253654 0.0660465 -0.164471
--0.238844 0.107964 -0.190769
--0.223406 0.0581705 -0.110333
-
--0.238844 0.107964 -0.190769
--0.253654 0.0660465 -0.164471
--0.282481 0.127689 -0.230952
-
--0.299997 0.0781132 -0.204654
--0.282481 0.127689 -0.230952
--0.253654 0.0660465 -0.164471
-
--0.282481 0.127689 -0.230952
--0.299997 0.0781132 -0.204654
--0.336009 0.151886 -0.252333
-
--0.356845 0.0929152 -0.226035
--0.336009 0.151886 -0.252333
--0.299997 0.0781132 -0.204654
-
--0.336009 0.151886 -0.252333
--0.356845 0.0929152 -0.226035
--0.392973 0.177635 -0.252333
-
--0.417341 0.108667 -0.226035
--0.392973 0.177635 -0.252333
--0.356845 0.0929152 -0.226035
-
--0.392973 0.177635 -0.252333
--0.417341 0.108667 -0.226035
--0.446502 0.201832 -0.230952
-
--0.474189 0.123469 -0.204654
--0.446502 0.201832 -0.230952
--0.417341 0.108667 -0.226035
-
--0.446502 0.201832 -0.230952
--0.474189 0.123469 -0.204654
--0.490139 0.221557 -0.190769
-
--0.520532 0.135536 -0.164471
--0.490139 0.221557 -0.190769
--0.474189 0.123469 -0.204654
-
--0.490139 0.221557 -0.190769
--0.520532 0.135536 -0.164471
--0.518621 0.234431 -0.136631
-
--0.55078 0.143412 -0.110333
--0.518621 0.234431 -0.136631
--0.520532 0.135536 -0.164471
-
--0.518621 0.234431 -0.136631
--0.55078 0.143412 -0.110333
--0.528513 0.238903 -0.0750672
-
--0.561285 0.146147 -0.0487695
--0.528513 0.238903 -0.0750672
--0.55078 0.143412 -0.110333
-
--0.561285 0.146147 -0.0487695
--0.577911 0.0491874 -0.0169001
--0.55078 0.143412 0.0127941
-
--0.567094 0.0482668 0.0446635
--0.55078 0.143412 0.0127941
--0.577911 0.0491874 -0.0169001
-
--0.55078 0.143412 0.0127941
--0.567094 0.0482668 0.0446635
--0.520532 0.135536 0.0669323
-
--0.53595 0.0456161 0.0988017
--0.520532 0.135536 0.0669323
--0.567094 0.0482668 0.0446635
-
--0.520532 0.135536 0.0669323
--0.53595 0.0456161 0.0988017
--0.474189 0.123469 0.107115
-
--0.488235 0.0415549 0.138984
--0.474189 0.123469 0.107115
--0.53595 0.0456161 0.0988017
-
--0.474189 0.123469 0.107115
--0.488235 0.0415549 0.138984
--0.417341 0.108667 0.128496
-
--0.429703 0.0365731 0.160365
--0.417341 0.108667 0.128496
--0.488235 0.0415549 0.138984
-
--0.417341 0.108667 0.128496
--0.429703 0.0365731 0.160365
--0.356845 0.0929152 0.128496
-
--0.367415 0.0312716 0.160365
--0.356845 0.0929152 0.128496
--0.429703 0.0365731 0.160365
-
--0.356845 0.0929152 0.128496
--0.367415 0.0312716 0.160365
--0.299997 0.0781132 0.107115
-
--0.308883 0.0262898 0.138984
--0.299997 0.0781132 0.107115
--0.367415 0.0312716 0.160365
-
--0.299997 0.0781132 0.107115
--0.308883 0.0262898 0.138984
--0.253654 0.0660465 0.0669323
-
--0.261168 0.0222287 0.0988017
--0.253654 0.0660465 0.0669323
--0.308883 0.0262898 0.138984
-
--0.253654 0.0660465 0.0669323
--0.261168 0.0222287 0.0988017
--0.223406 0.0581705 0.0127941
-
--0.230024 0.0195779 0.0446635
--0.223406 0.0581705 0.0127941
--0.261168 0.0222287 0.0988017
-
--0.223406 0.0581705 0.0127941
--0.230024 0.0195779 0.0446635
--0.212901 0.0554352 -0.0487695
-
--0.219207 0.0186573 -0.0169001
--0.212901 0.0554352 -0.0487695
--0.230024 0.0195779 0.0446635
-
--0.212901 0.0554352 -0.0487695
--0.219207 0.0186573 -0.0169001
--0.223406 0.0581705 -0.110333
-
--0.230024 0.0195779 -0.0784637
--0.223406 0.0581705 -0.110333
--0.219207 0.0186573 -0.0169001
-
--0.223406 0.0581705 -0.110333
--0.230024 0.0195779 -0.0784637
--0.253654 0.0660465 -0.164471
-
--0.261168 0.0222287 -0.132602
--0.253654 0.0660465 -0.164471
--0.230024 0.0195779 -0.0784637
-
--0.253654 0.0660465 -0.164471
--0.261168 0.0222287 -0.132602
--0.299997 0.0781132 -0.204654
-
--0.308883 0.0262898 -0.172785
--0.299997 0.0781132 -0.204654
--0.261168 0.0222287 -0.132602
-
--0.299997 0.0781132 -0.204654
--0.308883 0.0262898 -0.172785
--0.356845 0.0929152 -0.226035
-
--0.367415 0.0312716 -0.194165
--0.356845 0.0929152 -0.226035
--0.308883 0.0262898 -0.172785
-
--0.356845 0.0929152 -0.226035
--0.367415 0.0312716 -0.194165
--0.417341 0.108667 -0.226035
-
--0.429703 0.0365731 -0.194165
--0.417341 0.108667 -0.226035
--0.367415 0.0312716 -0.194165
-
--0.417341 0.108667 -0.226035
--0.429703 0.0365731 -0.194165
--0.474189 0.123469 -0.204654
-
--0.488235 0.0415549 -0.172785
--0.474189 0.123469 -0.204654
--0.429703 0.0365731 -0.194165
-
--0.474189 0.123469 -0.204654
--0.488235 0.0415549 -0.172785
--0.520532 0.135536 -0.164471
-
--0.53595 0.0456161 -0.132602
--0.520532 0.135536 -0.164471
--0.488235 0.0415549 -0.172785
-
--0.520532 0.135536 -0.164471
--0.53595 0.0456161 -0.132602
--0.55078 0.143412 -0.110333
-
--0.567094 0.0482668 -0.0784637
--0.55078 0.143412 -0.110333
--0.53595 0.0456161 -0.132602
-
--0.55078 0.143412 -0.110333
--0.567094 0.0482668 -0.0784637
--0.561285 0.146147 -0.0487695
-
--0.577911 0.0491874 -0.0169001
--0.561285 0.146147 -0.0487695
--0.567094 0.0482668 -0.0784637
-
--0.577911 0.0491874 -0.0169001
--0.577911 -0.0491874 0.0169001
--0.567094 0.0482668 0.0446635
-
--0.567094 -0.0482668 0.0784637
--0.567094 0.0482668 0.0446635
--0.577911 -0.0491874 0.0169001
-
--0.567094 0.0482668 0.0446635
--0.567094 -0.0482668 0.0784637
--0.53595 0.0456161 0.0988017
-
--0.53595 -0.0456161 0.132602
--0.53595 0.0456161 0.0988017
--0.567094 -0.0482668 0.0784637
-
--0.53595 0.0456161 0.0988017
--0.53595 -0.0456161 0.132602
--0.488235 0.0415549 0.138984
-
--0.488235 -0.0415549 0.172785
--0.488235 0.0415549 0.138984
--0.53595 -0.0456161 0.132602
-
--0.488235 0.0415549 0.138984
--0.488235 -0.0415549 0.172785
--0.429703 0.0365731 0.160365
-
--0.429703 -0.0365731 0.194165
--0.429703 0.0365731 0.160365
--0.488235 -0.0415549 0.172785
-
--0.429703 0.0365731 0.160365
--0.429703 -0.0365731 0.194165
--0.367415 0.0312716 0.160365
-
--0.367415 -0.0312716 0.194165
--0.367415 0.0312716 0.160365
--0.429703 -0.0365731 0.194165
-
--0.367415 0.0312716 0.160365
--0.367415 -0.0312716 0.194165
--0.308883 0.0262898 0.138984
-
--0.308883 -0.0262898 0.172785
--0.308883 0.0262898 0.138984
--0.367415 -0.0312716 0.194165
-
--0.308883 0.0262898 0.138984
--0.308883 -0.0262898 0.172785
--0.261168 0.0222287 0.0988017
-
--0.261168 -0.0222287 0.132602
--0.261168 0.0222287 0.0988017
--0.308883 -0.0262898 0.172785
-
--0.261168 0.0222287 0.0988017
--0.261168 -0.0222287 0.132602
--0.230024 0.0195779 0.0446635
-
--0.230024 -0.0195779 0.0784637
--0.230024 0.0195779 0.0446635
--0.261168 -0.0222287 0.132602
-
--0.230024 0.0195779 0.0446635
--0.230024 -0.0195779 0.0784637
--0.219207 0.0186573 -0.0169001
-
--0.219207 -0.0186573 0.0169001
--0.219207 0.0186573 -0.0169001
--0.230024 -0.0195779 0.0784637
-
--0.219207 0.0186573 -0.0169001
--0.219207 -0.0186573 0.0169001
--0.230024 0.0195779 -0.0784637
-
--0.230024 -0.0195779 -0.0446635
--0.230024 0.0195779 -0.0784637
--0.219207 -0.0186573 0.0169001
-
--0.230024 0.0195779 -0.0784637
--0.230024 -0.0195779 -0.0446635
--0.261168 0.0222287 -0.132602
-
--0.261168 -0.0222287 -0.0988017
--0.261168 0.0222287 -0.132602
--0.230024 -0.0195779 -0.0446635
-
--0.261168 0.0222287 -0.132602
--0.261168 -0.0222287 -0.0988017
--0.308883 0.0262898 -0.172785
-
--0.308883 -0.0262898 -0.138984
--0.308883 0.0262898 -0.172785
--0.261168 -0.0222287 -0.0988017
-
--0.308883 0.0262898 -0.172785
--0.308883 -0.0262898 -0.138984
--0.367415 0.0312716 -0.194165
-
--0.367415 -0.0312716 -0.160365
--0.367415 0.0312716 -0.194165
--0.308883 -0.0262898 -0.138984
-
--0.367415 0.0312716 -0.194165
--0.367415 -0.0312716 -0.160365
--0.429703 0.0365731 -0.194165
-
--0.429703 -0.0365731 -0.160365
--0.429703 0.0365731 -0.194165
--0.367415 -0.0312716 -0.160365
-
--0.429703 0.0365731 -0.194165
--0.429703 -0.0365731 -0.160365
--0.488235 0.0415549 -0.172785
-
--0.488235 -0.0415549 -0.138984
--0.488235 0.0415549 -0.172785
--0.429703 -0.0365731 -0.160365
-
--0.488235 0.0415549 -0.172785
--0.488235 -0.0415549 -0.138984
--0.53595 0.0456161 -0.132602
-
--0.53595 -0.0456161 -0.0988017
--0.53595 0.0456161 -0.132602
--0.488235 -0.0415549 -0.138984
-
--0.53595 0.0456161 -0.132602
--0.53595 -0.0456161 -0.0988017
--0.567094 0.0482668 -0.0784637
-
--0.567094 -0.0482668 -0.0446635
--0.567094 0.0482668 -0.0784637
--0.53595 -0.0456161 -0.0988017
-
--0.567094 0.0482668 -0.0784637
--0.567094 -0.0482668 -0.0446635
--0.577911 0.0491874 -0.0169001
-
--0.577911 -0.0491874 0.0169001
--0.577911 0.0491874 -0.0169001
--0.567094 -0.0482668 -0.0446635
-
--0.577911 -0.0491874 0.0169001
--0.561285 -0.146147 0.0487695
--0.567094 -0.0482668 0.0784637
-
--0.55078 -0.143412 0.110333
--0.567094 -0.0482668 0.0784637
--0.561285 -0.146147 0.0487695
-
--0.567094 -0.0482668 0.0784637
--0.55078 -0.143412 0.110333
--0.53595 -0.0456161 0.132602
-
--0.520532 -0.135536 0.164471
--0.53595 -0.0456161 0.132602
--0.55078 -0.143412 0.110333
-
--0.53595 -0.0456161 0.132602
--0.520532 -0.135536 0.164471
--0.488235 -0.0415549 0.172785
-
--0.474189 -0.123469 0.204654
--0.488235 -0.0415549 0.172785
--0.520532 -0.135536 0.164471
-
--0.488235 -0.0415549 0.172785
--0.474189 -0.123469 0.204654
--0.429703 -0.0365731 0.194165
-
--0.417341 -0.108667 0.226035
--0.429703 -0.0365731 0.194165
--0.474189 -0.123469 0.204654
-
--0.429703 -0.0365731 0.194165
--0.417341 -0.108667 0.226035
--0.367415 -0.0312716 0.194165
-
--0.356845 -0.0929152 0.226035
--0.367415 -0.0312716 0.194165
--0.417341 -0.108667 0.226035
-
--0.367415 -0.0312716 0.194165
--0.356845 -0.0929152 0.226035
--0.308883 -0.0262898 0.172785
-
--0.299997 -0.0781132 0.204654
--0.308883 -0.0262898 0.172785
--0.356845 -0.0929152 0.226035
-
--0.308883 -0.0262898 0.172785
--0.299997 -0.0781132 0.204654
--0.261168 -0.0222287 0.132602
-
--0.253654 -0.0660465 0.164471
--0.261168 -0.0222287 0.132602
--0.299997 -0.0781132 0.204654
-
--0.261168 -0.0222287 0.132602
--0.253654 -0.0660465 0.164471
--0.230024 -0.0195779 0.0784637
-
--0.223406 -0.0581705 0.110333
--0.230024 -0.0195779 0.0784637
--0.253654 -0.0660465 0.164471
-
--0.230024 -0.0195779 0.0784637
--0.223406 -0.0581705 0.110333
--0.219207 -0.0186573 0.0169001
-
--0.212901 -0.0554352 0.0487695
--0.219207 -0.0186573 0.0169001
--0.223406 -0.0581705 0.110333
-
--0.219207 -0.0186573 0.0169001
--0.212901 -0.0554352 0.0487695
--0.230024 -0.0195779 -0.0446635
-
--0.223406 -0.0581705 -0.0127941
--0.230024 -0.0195779 -0.0446635
--0.212901 -0.0554352 0.0487695
-
--0.230024 -0.0195779 -0.0446635
--0.223406 -0.0581705 -0.0127941
--0.261168 -0.0222287 -0.0988017
-
--0.253654 -0.0660465 -0.0669323
--0.261168 -0.0222287 -0.0988017
--0.223406 -0.0581705 -0.0127941
-
--0.261168 -0.0222287 -0.0988017
--0.253654 -0.0660465 -0.0669323
--0.308883 -0.0262898 -0.138984
-
--0.299997 -0.0781132 -0.107115
--0.308883 -0.0262898 -0.138984
--0.253654 -0.0660465 -0.0669323
-
--0.308883 -0.0262898 -0.138984
--0.299997 -0.0781132 -0.107115
--0.367415 -0.0312716 -0.160365
-
--0.356845 -0.0929152 -0.128496
--0.367415 -0.0312716 -0.160365
--0.299997 -0.0781132 -0.107115
-
--0.367415 -0.0312716 -0.160365
--0.356845 -0.0929152 -0.128496
--0.429703 -0.0365731 -0.160365
-
--0.417341 -0.108667 -0.128496
--0.429703 -0.0365731 -0.160365
--0.356845 -0.0929152 -0.128496
-
--0.429703 -0.0365731 -0.160365
--0.417341 -0.108667 -0.128496
--0.488235 -0.0415549 -0.138984
-
--0.474189 -0.123469 -0.107115
--0.488235 -0.0415549 -0.138984
--0.417341 -0.108667 -0.128496
-
--0.488235 -0.0415549 -0.138984
--0.474189 -0.123469 -0.107115
--0.53595 -0.0456161 -0.0988017
-
--0.520532 -0.135536 -0.0669323
--0.53595 -0.0456161 -0.0988017
--0.474189 -0.123469 -0.107115
-
--0.53595 -0.0456161 -0.0988017
--0.520532 -0.135536 -0.0669323
--0.567094 -0.0482668 -0.0446635
-
--0.55078 -0.143412 -0.0127941
--0.567094 -0.0482668 -0.0446635
--0.520532 -0.135536 -0.0669323
-
--0.567094 -0.0482668 -0.0446635
--0.55078 -0.143412 -0.0127941
--0.577911 -0.0491874 0.0169001
-
--0.561285 -0.146147 0.0487695
--0.577911 -0.0491874 0.0169001
--0.55078 -0.143412 -0.0127941
-
--0.561285 -0.146147 0.0487695
--0.528513 -0.238903 0.0750672
--0.55078 -0.143412 0.110333
-
--0.518621 -0.234431 0.136631
--0.55078 -0.143412 0.110333
--0.528513 -0.238903 0.0750672
-
--0.55078 -0.143412 0.110333
--0.518621 -0.234431 0.136631
--0.520532 -0.135536 0.164471
-
--0.490139 -0.221557 0.190769
--0.520532 -0.135536 0.164471
--0.518621 -0.234431 0.136631
-
--0.520532 -0.135536 0.164471
--0.490139 -0.221557 0.190769
--0.474189 -0.123469 0.204654
-
--0.446502 -0.201832 0.230952
--0.474189 -0.123469 0.204654
--0.490139 -0.221557 0.190769
-
--0.474189 -0.123469 0.204654
--0.446502 -0.201832 0.230952
--0.417341 -0.108667 0.226035
-
--0.392973 -0.177635 0.252333
--0.417341 -0.108667 0.226035
--0.446502 -0.201832 0.230952
-
--0.417341 -0.108667 0.226035
--0.392973 -0.177635 0.252333
--0.356845 -0.0929152 0.226035
-
--0.336009 -0.151886 0.252333
--0.356845 -0.0929152 0.226035
--0.392973 -0.177635 0.252333
-
--0.356845 -0.0929152 0.226035
--0.336009 -0.151886 0.252333
--0.299997 -0.0781132 0.204654
-
--0.282481 -0.127689 0.230952
--0.299997 -0.0781132 0.204654
--0.336009 -0.151886 0.252333
-
--0.299997 -0.0781132 0.204654
--0.282481 -0.127689 0.230952
--0.253654 -0.0660465 0.164471
-
--0.238844 -0.107964 0.190769
--0.253654 -0.0660465 0.164471
--0.282481 -0.127689 0.230952
-
--0.253654 -0.0660465 0.164471
--0.238844 -0.107964 0.190769
--0.223406 -0.0581705 0.110333
-
--0.210362 -0.0950896 0.136631
--0.223406 -0.0581705 0.110333
--0.238844 -0.107964 0.190769
-
--0.223406 -0.0581705 0.110333
--0.210362 -0.0950896 0.136631
--0.212901 -0.0554352 0.0487695
-
--0.20047 -0.0906183 0.0750672
--0.212901 -0.0554352 0.0487695
--0.210362 -0.0950896 0.136631
-
--0.212901 -0.0554352 0.0487695
--0.20047 -0.0906183 0.0750672
--0.223406 -0.0581705 -0.0127941
-
--0.210362 -0.0950896 0.0135036
--0.223406 -0.0581705 -0.0127941
--0.20047 -0.0906183 0.0750672
-
--0.223406 -0.0581705 -0.0127941
--0.210362 -0.0950896 0.0135036
--0.253654 -0.0660465 -0.0669323
-
--0.238844 -0.107964 -0.0406345
--0.253654 -0.0660465 -0.0669323
--0.210362 -0.0950896 0.0135036
-
--0.253654 -0.0660465 -0.0669323
--0.238844 -0.107964 -0.0406345
--0.299997 -0.0781132 -0.107115
-
--0.282481 -0.127689 -0.0808173
--0.299997 -0.0781132 -0.107115
--0.238844 -0.107964 -0.0406345
-
--0.299997 -0.0781132 -0.107115
--0.282481 -0.127689 -0.0808173
--0.356845 -0.0929152 -0.128496
-
--0.336009 -0.151886 -0.102198
--0.356845 -0.0929152 -0.128496
--0.282481 -0.127689 -0.0808173
-
--0.356845 -0.0929152 -0.128496
--0.336009 -0.151886 -0.102198
--0.417341 -0.108667 -0.128496
-
--0.392973 -0.177635 -0.102198
--0.417341 -0.108667 -0.128496
--0.336009 -0.151886 -0.102198
-
--0.417341 -0.108667 -0.128496
--0.392973 -0.177635 -0.102198
--0.474189 -0.123469 -0.107115
-
--0.446502 -0.201832 -0.0808173
--0.474189 -0.123469 -0.107115
--0.392973 -0.177635 -0.102198
-
--0.474189 -0.123469 -0.107115
--0.446502 -0.201832 -0.0808173
--0.520532 -0.135536 -0.0669323
-
--0.490139 -0.221557 -0.0406345
--0.520532 -0.135536 -0.0669323
--0.446502 -0.201832 -0.0808173
-
--0.520532 -0.135536 -0.0669323
--0.490139 -0.221557 -0.0406345
--0.55078 -0.143412 -0.0127941
-
--0.518621 -0.234431 0.0135036
--0.55078 -0.143412 -0.0127941
--0.490139 -0.221557 -0.0406345
-
--0.55078 -0.143412 -0.0127941
--0.518621 -0.234431 0.0135036
--0.561285 -0.146147 0.0487695
-
--0.528513 -0.238903 0.0750672
--0.561285 -0.146147 0.0487695
--0.518621 -0.234431 0.0135036
-
--0.528513 -0.238903 0.0750672
--0.480536 -0.324785 0.0927889
--0.518621 -0.234431 0.136631
-
--0.471542 -0.318707 0.154353
--0.518621 -0.234431 0.136631
--0.480536 -0.324785 0.0927889
-
--0.518621 -0.234431 0.136631
--0.471542 -0.318707 0.154353
--0.490139 -0.221557 0.190769
-
--0.445645 -0.301204 0.208491
--0.490139 -0.221557 0.190769
--0.471542 -0.318707 0.154353
-
--0.490139 -0.221557 0.190769
--0.445645 -0.301204 0.208491
--0.446502 -0.201832 0.230952
-
--0.40597 -0.274388 0.248673
--0.446502 -0.201832 0.230952
--0.445645 -0.301204 0.208491
-
--0.446502 -0.201832 0.230952
--0.40597 -0.274388 0.248673
--0.392973 -0.177635 0.252333
-
--0.3573 -0.241493 0.270054
--0.392973 -0.177635 0.252333
--0.40597 -0.274388 0.248673
-
--0.392973 -0.177635 0.252333
--0.3573 -0.241493 0.270054
--0.336009 -0.151886 0.252333
-
--0.305507 -0.206487 0.270054
--0.336009 -0.151886 0.252333
--0.3573 -0.241493 0.270054
-
--0.336009 -0.151886 0.252333
--0.305507 -0.206487 0.270054
--0.282481 -0.127689 0.230952
-
--0.256838 -0.173592 0.248673
--0.282481 -0.127689 0.230952
--0.305507 -0.206487 0.270054
-
--0.282481 -0.127689 0.230952
--0.256838 -0.173592 0.248673
--0.238844 -0.107964 0.190769
-
--0.217162 -0.146776 0.208491
--0.238844 -0.107964 0.190769
--0.256838 -0.173592 0.248673
-
--0.238844 -0.107964 0.190769
--0.217162 -0.146776 0.208491
--0.210362 -0.0950896 0.136631
-
--0.191266 -0.129273 0.154353
--0.210362 -0.0950896 0.136631
--0.217162 -0.146776 0.208491
-
--0.210362 -0.0950896 0.136631
--0.191266 -0.129273 0.154353
--0.20047 -0.0906183 0.0750672
-
--0.182272 -0.123194 0.0927889
--0.20047 -0.0906183 0.0750672
--0.191266 -0.129273 0.154353
-
--0.20047 -0.0906183 0.0750672
--0.182272 -0.123194 0.0927889
--0.210362 -0.0950896 0.0135036
-
--0.191266 -0.129273 0.0312253
--0.210362 -0.0950896 0.0135036
--0.182272 -0.123194 0.0927889
-
--0.210362 -0.0950896 0.0135036
--0.191266 -0.129273 0.0312253
--0.238844 -0.107964 -0.0406345
-
--0.217162 -0.146776 -0.0229129
--0.238844 -0.107964 -0.0406345
--0.191266 -0.129273 0.0312253
-
--0.238844 -0.107964 -0.0406345
--0.217162 -0.146776 -0.0229129
--0.282481 -0.127689 -0.0808173
-
--0.256838 -0.173592 -0.0630957
--0.282481 -0.127689 -0.0808173
--0.217162 -0.146776 -0.0229129
-
--0.282481 -0.127689 -0.0808173
--0.256838 -0.173592 -0.0630957
--0.336009 -0.151886 -0.102198
-
--0.305507 -0.206487 -0.0844765
--0.336009 -0.151886 -0.102198
--0.256838 -0.173592 -0.0630957
-
--0.336009 -0.151886 -0.102198
--0.305507 -0.206487 -0.0844765
--0.392973 -0.177635 -0.102198
-
--0.3573 -0.241493 -0.0844765
--0.392973 -0.177635 -0.102198
--0.305507 -0.206487 -0.0844765
-
--0.392973 -0.177635 -0.102198
--0.3573 -0.241493 -0.0844765
--0.446502 -0.201832 -0.0808173
-
--0.40597 -0.274388 -0.0630957
--0.446502 -0.201832 -0.0808173
--0.3573 -0.241493 -0.0844765
-
--0.446502 -0.201832 -0.0808173
--0.40597 -0.274388 -0.0630957
--0.490139 -0.221557 -0.0406345
-
--0.445645 -0.301204 -0.0229129
--0.490139 -0.221557 -0.0406345
--0.40597 -0.274388 -0.0630957
-
--0.490139 -0.221557 -0.0406345
--0.445645 -0.301204 -0.0229129
--0.518621 -0.234431 0.0135036
-
--0.471542 -0.318707 0.0312253
--0.518621 -0.234431 0.0135036
--0.445645 -0.301204 -0.0229129
-
--0.518621 -0.234431 0.0135036
--0.471542 -0.318707 0.0312253
--0.528513 -0.238903 0.0750672
-
--0.480536 -0.324785 0.0927889
--0.528513 -0.238903 0.0750672
--0.471542 -0.318707 0.0312253
-
--0.480536 -0.324785 0.0927889
--0.418735 -0.401325 0.0999099
--0.471542 -0.318707 0.154353
-
--0.410897 -0.393813 0.161474
--0.471542 -0.318707 0.154353
--0.418735 -0.401325 0.0999099
-
--0.471542 -0.318707 0.154353
--0.410897 -0.393813 0.161474
--0.445645 -0.301204 0.208491
-
--0.388332 -0.372186 0.215612
--0.445645 -0.301204 0.208491
--0.410897 -0.393813 0.161474
-
--0.445645 -0.301204 0.208491
--0.388332 -0.372186 0.215612
--0.40597 -0.274388 0.248673
-
--0.353758 -0.33905 0.255794
--0.40597 -0.274388 0.248673
--0.388332 -0.372186 0.215612
-
--0.40597 -0.274388 0.248673
--0.353758 -0.33905 0.255794
--0.3573 -0.241493 0.270054
-
--0.311348 -0.298403 0.277175
--0.3573 -0.241493 0.270054
--0.353758 -0.33905 0.255794
-
--0.3573 -0.241493 0.270054
--0.311348 -0.298403 0.277175
--0.305507 -0.206487 0.270054
-
--0.266216 -0.255148 0.277175
--0.305507 -0.206487 0.270054
--0.311348 -0.298403 0.277175
-
--0.305507 -0.206487 0.270054
--0.266216 -0.255148 0.277175
--0.256838 -0.173592 0.248673
-
--0.223806 -0.214501 0.255794
--0.256838 -0.173592 0.248673
--0.266216 -0.255148 0.277175
-
--0.256838 -0.173592 0.248673
--0.223806 -0.214501 0.255794
--0.217162 -0.146776 0.208491
-
--0.189233 -0.181365 0.215612
--0.217162 -0.146776 0.208491
--0.223806 -0.214501 0.255794
-
--0.217162 -0.146776 0.208491
--0.189233 -0.181365 0.215612
--0.191266 -0.129273 0.154353
-
--0.166667 -0.159738 0.161474
--0.191266 -0.129273 0.154353
--0.189233 -0.181365 0.215612
-
--0.191266 -0.129273 0.154353
--0.166667 -0.159738 0.161474
--0.182272 -0.123194 0.0927889
-
--0.15883 -0.152227 0.0999099
--0.182272 -0.123194 0.0927889
--0.166667 -0.159738 0.161474
-
--0.182272 -0.123194 0.0927889
--0.15883 -0.152227 0.0999099
--0.191266 -0.129273 0.0312253
-
--0.166667 -0.159738 0.0383463
--0.191266 -0.129273 0.0312253
--0.15883 -0.152227 0.0999099
-
--0.191266 -0.129273 0.0312253
--0.166667 -0.159738 0.0383463
--0.217162 -0.146776 -0.0229129
-
--0.189233 -0.181365 -0.0157919
--0.217162 -0.146776 -0.0229129
--0.166667 -0.159738 0.0383463
-
--0.217162 -0.146776 -0.0229129
--0.189233 -0.181365 -0.0157919
--0.256838 -0.173592 -0.0630957
-
--0.223806 -0.214501 -0.0559747
--0.256838 -0.173592 -0.0630957
--0.189233 -0.181365 -0.0157919
-
--0.256838 -0.173592 -0.0630957
--0.223806 -0.214501 -0.0559747
--0.305507 -0.206487 -0.0844765
-
--0.266216 -0.255148 -0.0773555
--0.305507 -0.206487 -0.0844765
--0.223806 -0.214501 -0.0559747
-
--0.305507 -0.206487 -0.0844765
--0.266216 -0.255148 -0.0773555
--0.3573 -0.241493 -0.0844765
-
--0.311348 -0.298403 -0.0773555
--0.3573 -0.241493 -0.0844765
--0.266216 -0.255148 -0.0773555
-
--0.3573 -0.241493 -0.0844765
--0.311348 -0.298403 -0.0773555
--0.40597 -0.274388 -0.0630957
-
--0.353758 -0.33905 -0.0559747
--0.40597 -0.274388 -0.0630957
--0.311348 -0.298403 -0.0773555
-
--0.40597 -0.274388 -0.0630957
--0.353758 -0.33905 -0.0559747
--0.445645 -0.301204 -0.0229129
-
--0.388332 -0.372186 -0.0157919
--0.445645 -0.301204 -0.0229129
--0.353758 -0.33905 -0.0559747
-
--0.445645 -0.301204 -0.0229129
--0.388332 -0.372186 -0.0157919
--0.471542 -0.318707 0.0312253
-
--0.410897 -0.393813 0.0383463
--0.471542 -0.318707 0.0312253
--0.388332 -0.372186 -0.0157919
-
--0.471542 -0.318707 0.0312253
--0.410897 -0.393813 0.0383463
--0.480536 -0.324785 0.0927889
-
--0.418735 -0.401325 0.0999099
--0.480536 -0.324785 0.0927889
--0.410897 -0.393813 0.0383463
-
--0.418735 -0.401325 0.0999099
--0.344887 -0.466318 0.0956167
--0.410897 -0.393813 0.161474
-
--0.338432 -0.457591 0.15718
--0.410897 -0.393813 0.161474
--0.344887 -0.466318 0.0956167
-
--0.410897 -0.393813 0.161474
--0.338432 -0.457591 0.15718
--0.388332 -0.372186 0.215612
-
--0.319846 -0.43246 0.211318
--0.388332 -0.372186 0.215612
--0.338432 -0.457591 0.15718
-
--0.388332 -0.372186 0.215612
--0.319846 -0.43246 0.211318
--0.353758 -0.33905 0.255794
-
--0.29137 -0.393959 0.251501
--0.353758 -0.33905 0.255794
--0.319846 -0.43246 0.211318
-
--0.353758 -0.33905 0.255794
--0.29137 -0.393959 0.251501
--0.311348 -0.298403 0.277175
-
--0.25644 -0.346729 0.272882
--0.311348 -0.298403 0.277175
--0.29137 -0.393959 0.251501
-
--0.311348 -0.298403 0.277175
--0.25644 -0.346729 0.272882
--0.266216 -0.255148 0.277175
-
--0.219267 -0.296469 0.272882
--0.266216 -0.255148 0.277175
--0.25644 -0.346729 0.272882
-
--0.266216 -0.255148 0.277175
--0.219267 -0.296469 0.272882
--0.223806 -0.214501 0.255794
-
--0.184336 -0.249239 0.251501
--0.223806 -0.214501 0.255794
--0.219267 -0.296469 0.272882
-
--0.223806 -0.214501 0.255794
--0.184336 -0.249239 0.251501
--0.189233 -0.181365 0.215612
-
--0.15586 -0.210737 0.211318
--0.189233 -0.181365 0.215612
--0.184336 -0.249239 0.251501
-
--0.189233 -0.181365 0.215612
--0.15586 -0.210737 0.211318
--0.166667 -0.159738 0.161474
-
--0.137274 -0.185607 0.15718
--0.166667 -0.159738 0.161474
--0.15586 -0.210737 0.211318
-
--0.166667 -0.159738 0.161474
--0.137274 -0.185607 0.15718
--0.15883 -0.152227 0.0999099
-
--0.130819 -0.176879 0.0956167
--0.15883 -0.152227 0.0999099
--0.137274 -0.185607 0.15718
-
--0.15883 -0.152227 0.0999099
--0.130819 -0.176879 0.0956167
--0.166667 -0.159738 0.0383463
-
--0.137274 -0.185607 0.034053
--0.166667 -0.159738 0.0383463
--0.130819 -0.176879 0.0956167
-
--0.166667 -0.159738 0.0383463
--0.137274 -0.185607 0.034053
--0.189233 -0.181365 -0.0157919
-
--0.15586 -0.210737 -0.0200851
--0.189233 -0.181365 -0.0157919
--0.137274 -0.185607 0.034053
-
--0.189233 -0.181365 -0.0157919
--0.15586 -0.210737 -0.0200851
--0.223806 -0.214501 -0.0559747
-
--0.184336 -0.249239 -0.0602679
--0.223806 -0.214501 -0.0559747
--0.15586 -0.210737 -0.0200851
-
--0.223806 -0.214501 -0.0559747
--0.184336 -0.249239 -0.0602679
--0.266216 -0.255148 -0.0773555
-
--0.219267 -0.296469 -0.0816487
--0.266216 -0.255148 -0.0773555
--0.184336 -0.249239 -0.0602679
-
--0.266216 -0.255148 -0.0773555
--0.219267 -0.296469 -0.0816487
--0.311348 -0.298403 -0.0773555
-
--0.25644 -0.346729 -0.0816487
--0.311348 -0.298403 -0.0773555
--0.219267 -0.296469 -0.0816487
-
--0.311348 -0.298403 -0.0773555
--0.25644 -0.346729 -0.0816487
--0.353758 -0.33905 -0.0559747
-
--0.29137 -0.393959 -0.0602679
--0.353758 -0.33905 -0.0559747
--0.25644 -0.346729 -0.0816487
-
--0.353758 -0.33905 -0.0559747
--0.29137 -0.393959 -0.0602679
--0.388332 -0.372186 -0.0157919
-
--0.319846 -0.43246 -0.0200851
--0.388332 -0.372186 -0.0157919
--0.29137 -0.393959 -0.0602679
-
--0.388332 -0.372186 -0.0157919
--0.319846 -0.43246 -0.0200851
--0.410897 -0.393813 0.0383463
-
--0.338432 -0.457591 0.034053
--0.410897 -0.393813 0.0383463
--0.319846 -0.43246 -0.0200851
-
--0.410897 -0.393813 0.0383463
--0.338432 -0.457591 0.034053
--0.418735 -0.401325 0.0999099
-
--0.344887 -0.466318 0.0956167
--0.418735 -0.401325 0.0999099
--0.338432 -0.457591 0.034053
-
--0.344887 -0.466318 0.0956167
--0.261118 -0.517897 0.0803997
--0.338432 -0.457591 0.15718
-
--0.256231 -0.508204 0.141963
--0.338432 -0.457591 0.15718
--0.261118 -0.517897 0.0803997
-
--0.338432 -0.457591 0.15718
--0.256231 -0.508204 0.141963
--0.319846 -0.43246 0.211318
-
--0.242159 -0.480294 0.196101
--0.319846 -0.43246 0.211318
--0.256231 -0.508204 0.141963
-
--0.319846 -0.43246 0.211318
--0.242159 -0.480294 0.196101
--0.29137 -0.393959 0.251501
-
--0.2206 -0.437534 0.236284
--0.29137 -0.393959 0.251501
--0.242159 -0.480294 0.196101
-
--0.29137 -0.393959 0.251501
--0.2206 -0.437534 0.236284
--0.25644 -0.346729 0.272882
-
--0.194153 -0.38508 0.257665
--0.25644 -0.346729 0.272882
--0.2206 -0.437534 0.236284
-
--0.25644 -0.346729 0.272882
--0.194153 -0.38508 0.257665
--0.219267 -0.296469 0.272882
-
--0.16601 -0.32926 0.257665
--0.219267 -0.296469 0.272882
--0.194153 -0.38508 0.257665
-
--0.219267 -0.296469 0.272882
--0.16601 -0.32926 0.257665
--0.184336 -0.249239 0.251501
-
--0.139563 -0.276807 0.236284
--0.184336 -0.249239 0.251501
--0.16601 -0.32926 0.257665
-
--0.184336 -0.249239 0.251501
--0.139563 -0.276807 0.236284
--0.15586 -0.210737 0.211318
-
--0.118004 -0.234047 0.196101
--0.15586 -0.210737 0.211318
--0.139563 -0.276807 0.236284
-
--0.15586 -0.210737 0.211318
--0.118004 -0.234047 0.196101
--0.137274 -0.185607 0.15718
-
--0.103932 -0.206137 0.141963
--0.137274 -0.185607 0.15718
--0.118004 -0.234047 0.196101
-
--0.137274 -0.185607 0.15718
--0.103932 -0.206137 0.141963
--0.130819 -0.176879 0.0956167
-
--0.0990448 -0.196444 0.0803997
--0.130819 -0.176879 0.0956167
--0.103932 -0.206137 0.141963
-
--0.130819 -0.176879 0.0956167
--0.0990448 -0.196444 0.0803997
--0.137274 -0.185607 0.034053
-
--0.103932 -0.206137 0.0188361
--0.137274 -0.185607 0.034053
--0.0990448 -0.196444 0.0803997
-
--0.137274 -0.185607 0.034053
--0.103932 -0.206137 0.0188361
--0.15586 -0.210737 -0.0200851
-
--0.118004 -0.234047 -0.0353021
--0.15586 -0.210737 -0.0200851
--0.103932 -0.206137 0.0188361
-
--0.15586 -0.210737 -0.0200851
--0.118004 -0.234047 -0.0353021
--0.184336 -0.249239 -0.0602679
-
--0.139563 -0.276807 -0.0754849
--0.184336 -0.249239 -0.0602679
--0.118004 -0.234047 -0.0353021
-
--0.184336 -0.249239 -0.0602679
--0.139563 -0.276807 -0.0754849
--0.219267 -0.296469 -0.0816487
-
--0.16601 -0.32926 -0.0968657
--0.219267 -0.296469 -0.0816487
--0.139563 -0.276807 -0.0754849
-
--0.219267 -0.296469 -0.0816487
--0.16601 -0.32926 -0.0968657
--0.25644 -0.346729 -0.0816487
-
--0.194153 -0.38508 -0.0968657
--0.25644 -0.346729 -0.0816487
--0.16601 -0.32926 -0.0968657
-
--0.25644 -0.346729 -0.0816487
--0.194153 -0.38508 -0.0968657
--0.29137 -0.393959 -0.0602679
-
--0.2206 -0.437534 -0.0754849
--0.29137 -0.393959 -0.0602679
--0.194153 -0.38508 -0.0968657
-
--0.29137 -0.393959 -0.0602679
--0.2206 -0.437534 -0.0754849
--0.319846 -0.43246 -0.0200851
-
--0.242159 -0.480294 -0.0353021
--0.319846 -0.43246 -0.0200851
--0.2206 -0.437534 -0.0754849
-
--0.319846 -0.43246 -0.0200851
--0.242159 -0.480294 -0.0353021
--0.338432 -0.457591 0.034053
-
--0.256231 -0.508204 0.0188361
--0.338432 -0.457591 0.034053
--0.242159 -0.480294 -0.0353021
-
--0.338432 -0.457591 0.034053
--0.256231 -0.508204 0.0188361
--0.344887 -0.466318 0.0956167
-
--0.261118 -0.517897 0.0803997
--0.344887 -0.466318 0.0956167
--0.256231 -0.508204 0.0188361
-
--0.261118 -0.517897 0.0803997
--0.169837 -0.554577 0.0559975
--0.256231 -0.508204 0.141963
-
--0.166659 -0.544197 0.117561
--0.256231 -0.508204 0.141963
--0.169837 -0.554577 0.0559975
-
--0.256231 -0.508204 0.141963
--0.166659 -0.544197 0.117561
--0.242159 -0.480294 0.196101
-
--0.157506 -0.514311 0.171699
--0.242159 -0.480294 0.196101
--0.166659 -0.544197 0.117561
-
--0.242159 -0.480294 0.196101
--0.157506 -0.514311 0.171699
--0.2206 -0.437534 0.236284
-
--0.143483 -0.468522 0.211882
--0.2206 -0.437534 0.236284
--0.157506 -0.514311 0.171699
-
--0.2206 -0.437534 0.236284
--0.143483 -0.468522 0.211882
--0.194153 -0.38508 0.257665
-
--0.126282 -0.412353 0.233263
--0.194153 -0.38508 0.257665
--0.143483 -0.468522 0.211882
-
--0.194153 -0.38508 0.257665
--0.126282 -0.412353 0.233263
--0.16601 -0.32926 0.257665
-
--0.107976 -0.35258 0.233263
--0.16601 -0.32926 0.257665
--0.126282 -0.412353 0.233263
-
--0.16601 -0.32926 0.257665
--0.107976 -0.35258 0.233263
--0.139563 -0.276807 0.236284
-
--0.0907751 -0.296412 0.211882
--0.139563 -0.276807 0.236284
--0.107976 -0.35258 0.233263
-
--0.139563 -0.276807 0.236284
--0.0907751 -0.296412 0.211882
--0.118004 -0.234047 0.196101
-
--0.0767524 -0.250623 0.171699
--0.118004 -0.234047 0.196101
--0.0907751 -0.296412 0.211882
-
--0.118004 -0.234047 0.196101
--0.0767524 -0.250623 0.171699
--0.103932 -0.206137 0.141963
-
--0.0675997 -0.220736 0.117561
--0.103932 -0.206137 0.141963
--0.0767524 -0.250623 0.171699
-
--0.103932 -0.206137 0.141963
--0.0675997 -0.220736 0.117561
--0.0990448 -0.196444 0.0803997
-
--0.064421 -0.210357 0.0559975
--0.0990448 -0.196444 0.0803997
--0.0675997 -0.220736 0.117561
-
--0.0990448 -0.196444 0.0803997
--0.064421 -0.210357 0.0559975
--0.103932 -0.206137 0.0188361
-
--0.0675997 -0.220736 -0.00556615
--0.103932 -0.206137 0.0188361
--0.064421 -0.210357 0.0559975
-
--0.103932 -0.206137 0.0188361
--0.0675997 -0.220736 -0.00556615
--0.118004 -0.234047 -0.0353021
-
--0.0767524 -0.250623 -0.0597043
--0.118004 -0.234047 -0.0353021
--0.0675997 -0.220736 -0.00556615
-
--0.118004 -0.234047 -0.0353021
--0.0767524 -0.250623 -0.0597043
--0.139563 -0.276807 -0.0754849
-
--0.0907751 -0.296412 -0.0998871
--0.139563 -0.276807 -0.0754849
--0.0767524 -0.250623 -0.0597043
-
--0.139563 -0.276807 -0.0754849
--0.0907751 -0.296412 -0.0998871
--0.16601 -0.32926 -0.0968657
-
--0.107976 -0.35258 -0.121268
--0.16601 -0.32926 -0.0968657
--0.0907751 -0.296412 -0.0998871
-
--0.16601 -0.32926 -0.0968657
--0.107976 -0.35258 -0.121268
--0.194153 -0.38508 -0.0968657
-
--0.126282 -0.412353 -0.121268
--0.194153 -0.38508 -0.0968657
--0.107976 -0.35258 -0.121268
-
--0.194153 -0.38508 -0.0968657
--0.126282 -0.412353 -0.121268
--0.2206 -0.437534 -0.0754849
-
--0.143483 -0.468522 -0.0998871
--0.2206 -0.437534 -0.0754849
--0.126282 -0.412353 -0.121268
-
--0.2206 -0.437534 -0.0754849
--0.143483 -0.468522 -0.0998871
--0.242159 -0.480294 -0.0353021
-
--0.157506 -0.514311 -0.0597043
--0.242159 -0.480294 -0.0353021
--0.143483 -0.468522 -0.0998871
-
--0.242159 -0.480294 -0.0353021
--0.157506 -0.514311 -0.0597043
--0.256231 -0.508204 0.0188361
-
--0.166659 -0.544197 -0.00556615
--0.256231 -0.508204 0.0188361
--0.157506 -0.514311 -0.0597043
-
--0.256231 -0.508204 0.0188361
--0.166659 -0.544197 -0.00556615
--0.261118 -0.517897 0.0803997
-
--0.169837 -0.554577 0.0559975
--0.261118 -0.517897 0.0803997
--0.166659 -0.544197 -0.00556615
-
--0.169837 -0.554577 0.0559975
--0.0736703 -0.575302 0.0251978
--0.166659 -0.544197 0.117561
-
--0.0722915 -0.564535 0.0867614
--0.166659 -0.544197 0.117561
--0.0736703 -0.575302 0.0251978
-
--0.166659 -0.544197 0.117561
--0.0722915 -0.564535 0.0867614
--0.157506 -0.514311 0.171699
-
--0.0683214 -0.533531 0.1409
--0.157506 -0.514311 0.171699
--0.0722915 -0.564535 0.0867614
-
--0.157506 -0.514311 0.171699
--0.0683214 -0.533531 0.1409
--0.143483 -0.468522 0.211882
-
--0.0622387 -0.486031 0.181082
--0.143483 -0.468522 0.211882
--0.0683214 -0.533531 0.1409
-
--0.143483 -0.468522 0.211882
--0.0622387 -0.486031 0.181082
--0.126282 -0.412353 0.233263
-
--0.0547773 -0.427764 0.202463
--0.126282 -0.412353 0.233263
--0.0622387 -0.486031 0.181082
-
--0.126282 -0.412353 0.233263
--0.0547773 -0.427764 0.202463
--0.107976 -0.35258 0.233263
-
--0.046837 -0.365757 0.202463
--0.107976 -0.35258 0.233263
--0.0547773 -0.427764 0.202463
-
--0.107976 -0.35258 0.233263
--0.046837 -0.365757 0.202463
--0.0907751 -0.296412 0.211882
-
--0.0393755 -0.307489 0.181082
--0.0907751 -0.296412 0.211882
--0.046837 -0.365757 0.202463
-
--0.0907751 -0.296412 0.211882
--0.0393755 -0.307489 0.181082
--0.0767524 -0.250623 0.171699
-
--0.0332929 -0.259989 0.1409
--0.0767524 -0.250623 0.171699
--0.0393755 -0.307489 0.181082
-
--0.0767524 -0.250623 0.171699
--0.0332929 -0.259989 0.1409
--0.0675997 -0.220736 0.117561
-
--0.0293227 -0.228986 0.0867614
--0.0675997 -0.220736 0.117561
--0.0332929 -0.259989 0.1409
-
--0.0675997 -0.220736 0.117561
--0.0293227 -0.228986 0.0867614
--0.064421 -0.210357 0.0559975
-
--0.0279439 -0.218218 0.0251978
--0.064421 -0.210357 0.0559975
--0.0293227 -0.228986 0.0867614
-
--0.064421 -0.210357 0.0559975
--0.0279439 -0.218218 0.0251978
--0.0675997 -0.220736 -0.00556615
-
--0.0293227 -0.228986 -0.0363658
--0.0675997 -0.220736 -0.00556615
--0.0279439 -0.218218 0.0251978
-
--0.0675997 -0.220736 -0.00556615
--0.0293227 -0.228986 -0.0363658
--0.0767524 -0.250623 -0.0597043
-
--0.0332929 -0.259989 -0.090504
--0.0767524 -0.250623 -0.0597043
--0.0293227 -0.228986 -0.0363658
-
--0.0767524 -0.250623 -0.0597043
--0.0332929 -0.259989 -0.090504
--0.0907751 -0.296412 -0.0998871
-
--0.0393755 -0.307489 -0.130687
--0.0907751 -0.296412 -0.0998871
--0.0332929 -0.259989 -0.090504
-
--0.0907751 -0.296412 -0.0998871
--0.0393755 -0.307489 -0.130687
--0.107976 -0.35258 -0.121268
-
--0.046837 -0.365757 -0.152068
--0.107976 -0.35258 -0.121268
--0.0393755 -0.307489 -0.130687
-
--0.107976 -0.35258 -0.121268
--0.046837 -0.365757 -0.152068
--0.126282 -0.412353 -0.121268
-
--0.0547773 -0.427764 -0.152068
--0.126282 -0.412353 -0.121268
--0.046837 -0.365757 -0.152068
-
--0.126282 -0.412353 -0.121268
--0.0547773 -0.427764 -0.152068
--0.143483 -0.468522 -0.0998871
-
--0.0622387 -0.486031 -0.130687
--0.143483 -0.468522 -0.0998871
--0.0547773 -0.427764 -0.152068
-
--0.143483 -0.468522 -0.0998871
--0.0622387 -0.486031 -0.130687
--0.157506 -0.514311 -0.0597043
-
--0.0683214 -0.533531 -0.090504
--0.157506 -0.514311 -0.0597043
--0.0622387 -0.486031 -0.130687
-
--0.157506 -0.514311 -0.0597043
--0.0683214 -0.533531 -0.090504
--0.166659 -0.544197 -0.00556615
-
--0.0722915 -0.564535 -0.0363658
--0.166659 -0.544197 -0.00556615
--0.0683214 -0.533531 -0.090504
-
--0.166659 -0.544197 -0.00556615
--0.0722915 -0.564535 -0.0363658
--0.169837 -0.554577 0.0559975
-
--0.0736703 -0.575302 0.0251978
--0.169837 -0.554577 0.0559975
--0.0722915 -0.564535 -0.0363658
-
--0.0736703 -0.575302 0.0251978
-0.0246159 -0.579477 -0.00848059
--0.0722915 -0.564535 0.0867614
-
-0.0241552 -0.568632 0.053083
--0.0722915 -0.564535 0.0867614
-0.0246159 -0.579477 -0.00848059
-
--0.0722915 -0.564535 0.0867614
-0.0241552 -0.568632 0.053083
--0.0683214 -0.533531 0.1409
-
-0.0228286 -0.537403 0.107221
--0.0683214 -0.533531 0.1409
-0.0241552 -0.568632 0.053083
-
--0.0683214 -0.533531 0.1409
-0.0228286 -0.537403 0.107221
--0.0622387 -0.486031 0.181082
-
-0.0207962 -0.489558 0.147404
--0.0622387 -0.486031 0.181082
-0.0228286 -0.537403 0.107221
-
--0.0622387 -0.486031 0.181082
-0.0207962 -0.489558 0.147404
--0.0547773 -0.427764 0.202463
-
-0.0183031 -0.430868 0.168785
--0.0547773 -0.427764 0.202463
-0.0207962 -0.489558 0.147404
-
--0.0547773 -0.427764 0.202463
-0.0183031 -0.430868 0.168785
--0.046837 -0.365757 0.202463
-
-0.0156499 -0.368411 0.168785
--0.046837 -0.365757 0.202463
-0.0183031 -0.430868 0.168785
-
--0.046837 -0.365757 0.202463
-0.0156499 -0.368411 0.168785
--0.0393755 -0.307489 0.181082
-
-0.0131568 -0.309721 0.147404
--0.0393755 -0.307489 0.181082
-0.0156499 -0.368411 0.168785
-
--0.0393755 -0.307489 0.181082
-0.0131568 -0.309721 0.147404
--0.0332929 -0.259989 0.1409
-
-0.0111243 -0.261876 0.107221
--0.0332929 -0.259989 0.1409
-0.0131568 -0.309721 0.147404
-
--0.0332929 -0.259989 0.1409
-0.0111243 -0.261876 0.107221
--0.0293227 -0.228986 0.0867614
-
-0.00979778 -0.230647 0.053083
--0.0293227 -0.228986 0.0867614
-0.0111243 -0.261876 0.107221
-
--0.0293227 -0.228986 0.0867614
-0.00979778 -0.230647 0.053083
--0.0279439 -0.218218 0.0251978
-
-0.00933706 -0.219802 -0.00848059
--0.0279439 -0.218218 0.0251978
-0.00979778 -0.230647 0.053083
-
--0.0279439 -0.218218 0.0251978
-0.00933706 -0.219802 -0.00848059
--0.0293227 -0.228986 -0.0363658
-
-0.00979778 -0.230647 -0.0700442
--0.0293227 -0.228986 -0.0363658
-0.00933706 -0.219802 -0.00848059
-
--0.0293227 -0.228986 -0.0363658
-0.00979778 -0.230647 -0.0700442
--0.0332929 -0.259989 -0.090504
-
-0.0111243 -0.261876 -0.124182
--0.0332929 -0.259989 -0.090504
-0.00979778 -0.230647 -0.0700442
-
--0.0332929 -0.259989 -0.090504
-0.0111243 -0.261876 -0.124182
--0.0393755 -0.307489 -0.130687
-
-0.0131568 -0.309721 -0.164365
--0.0393755 -0.307489 -0.130687
-0.0111243 -0.261876 -0.124182
-
--0.0393755 -0.307489 -0.130687
-0.0131568 -0.309721 -0.164365
--0.046837 -0.365757 -0.152068
-
-0.0156499 -0.368411 -0.185746
--0.046837 -0.365757 -0.152068
-0.0131568 -0.309721 -0.164365
-
--0.046837 -0.365757 -0.152068
-0.0156499 -0.368411 -0.185746
--0.0547773 -0.427764 -0.152068
-
-0.0183031 -0.430868 -0.185746
--0.0547773 -0.427764 -0.152068
-0.0156499 -0.368411 -0.185746
-
--0.0547773 -0.427764 -0.152068
-0.0183031 -0.430868 -0.185746
--0.0622387 -0.486031 -0.130687
-
-0.0207962 -0.489558 -0.164365
--0.0622387 -0.486031 -0.130687
-0.0183031 -0.430868 -0.185746
-
--0.0622387 -0.486031 -0.130687
-0.0207962 -0.489558 -0.164365
--0.0683214 -0.533531 -0.090504
-
-0.0228286 -0.537403 -0.124182
--0.0683214 -0.533531 -0.090504
-0.0207962 -0.489558 -0.164365
-
--0.0683214 -0.533531 -0.090504
-0.0228286 -0.537403 -0.124182
--0.0722915 -0.564535 -0.0363658
-
-0.0241552 -0.568632 -0.0700442
--0.0722915 -0.564535 -0.0363658
-0.0228286 -0.537403 -0.124182
-
--0.0722915 -0.564535 -0.0363658
-0.0241552 -0.568632 -0.0700442
--0.0736703 -0.575302 0.0251978
-
-0.0246159 -0.579477 -0.00848059
--0.0736703 -0.575302 0.0251978
-0.0241552 -0.568632 -0.0700442
-
-0.0246159 -0.579477 -0.00848059
-0.122194 -0.566982 -0.0411901
-0.0241552 -0.568632 0.053083
-
-0.119907 -0.55637 0.0203735
-0.0241552 -0.568632 0.053083
-0.122194 -0.566982 -0.0411901
-
-0.0241552 -0.568632 0.053083
-0.119907 -0.55637 0.0203735
-0.0228286 -0.537403 0.107221
-
-0.113322 -0.525815 0.0745116
-0.0228286 -0.537403 0.107221
-0.119907 -0.55637 0.0203735
-
-0.0228286 -0.537403 0.107221
-0.113322 -0.525815 0.0745116
-0.0207962 -0.489558 0.147404
-
-0.103233 -0.479002 0.114694
-0.0207962 -0.489558 0.147404
-0.113322 -0.525815 0.0745116
-
-0.0207962 -0.489558 0.147404
-0.103233 -0.479002 0.114694
-0.0183031 -0.430868 0.168785
-
-0.0908568 -0.421577 0.136075
-0.0183031 -0.430868 0.168785
-0.103233 -0.479002 0.114694
-
-0.0183031 -0.430868 0.168785
-0.0908568 -0.421577 0.136075
-0.0156499 -0.368411 0.168785
-
-0.0776866 -0.360467 0.136075
-0.0156499 -0.368411 0.168785
-0.0908568 -0.421577 0.136075
-
-0.0156499 -0.368411 0.168785
-0.0776866 -0.360467 0.136075
-0.0131568 -0.309721 0.147404
-
-0.0653106 -0.303042 0.114694
-0.0131568 -0.309721 0.147404
-0.0776866 -0.360467 0.136075
-
-0.0131568 -0.309721 0.147404
-0.0653106 -0.303042 0.114694
-0.0111243 -0.261876 0.107221
-
-0.0552216 -0.256229 0.0745116
-0.0111243 -0.261876 0.107221
-0.0653106 -0.303042 0.114694
-
-0.0111243 -0.261876 0.107221
-0.0552216 -0.256229 0.0745116
-0.00979778 -0.230647 0.053083
-
-0.0486364 -0.225674 0.0203735
-0.00979778 -0.230647 0.053083
-0.0552216 -0.256229 0.0745116
-
-0.00979778 -0.230647 0.053083
-0.0486364 -0.225674 0.0203735
-0.00933706 -0.219802 -0.00848059
-
-0.0463494 -0.215062 -0.0411901
-0.00933706 -0.219802 -0.00848059
-0.0486364 -0.225674 0.0203735
-
-0.00933706 -0.219802 -0.00848059
-0.0463494 -0.215062 -0.0411901
-0.00979778 -0.230647 -0.0700442
-
-0.0486364 -0.225674 -0.102754
-0.00979778 -0.230647 -0.0700442
-0.0463494 -0.215062 -0.0411901
-
-0.00979778 -0.230647 -0.0700442
-0.0486364 -0.225674 -0.102754
-0.0111243 -0.261876 -0.124182
-
-0.0552216 -0.256229 -0.156892
-0.0111243 -0.261876 -0.124182
-0.0486364 -0.225674 -0.102754
-
-0.0111243 -0.261876 -0.124182
-0.0552216 -0.256229 -0.156892
-0.0131568 -0.309721 -0.164365
-
-0.0653106 -0.303042 -0.197075
-0.0131568 -0.309721 -0.164365
-0.0552216 -0.256229 -0.156892
-
-0.0131568 -0.309721 -0.164365
-0.0653106 -0.303042 -0.197075
-0.0156499 -0.368411 -0.185746
-
-0.0776866 -0.360467 -0.218456
-0.0156499 -0.368411 -0.185746
-0.0653106 -0.303042 -0.197075
-
-0.0156499 -0.368411 -0.185746
-0.0776866 -0.360467 -0.218456
-0.0183031 -0.430868 -0.185746
-
-0.0908568 -0.421577 -0.218456
-0.0183031 -0.430868 -0.185746
-0.0776866 -0.360467 -0.218456
-
-0.0183031 -0.430868 -0.185746
-0.0908568 -0.421577 -0.218456
-0.0207962 -0.489558 -0.164365
-
-0.103233 -0.479002 -0.197075
-0.0207962 -0.489558 -0.164365
-0.0908568 -0.421577 -0.218456
-
-0.0207962 -0.489558 -0.164365
-0.103233 -0.479002 -0.197075
-0.0228286 -0.537403 -0.124182
-
-0.113322 -0.525815 -0.156892
-0.0228286 -0.537403 -0.124182
-0.103233 -0.479002 -0.197075
-
-0.0228286 -0.537403 -0.124182
-0.113322 -0.525815 -0.156892
-0.0241552 -0.568632 -0.0700442
-
-0.119907 -0.55637 -0.102754
-0.0241552 -0.568632 -0.0700442
-0.113322 -0.525815 -0.156892
-
-0.0241552 -0.568632 -0.0700442
-0.119907 -0.55637 -0.102754
-0.0246159 -0.579477 -0.00848059
-
-0.122194 -0.566982 -0.0411901
-0.0246159 -0.579477 -0.00848059
-0.119907 -0.55637 -0.102754
-
-0.122194 -0.566982 -0.0411901
-0.216257 -0.538176 -0.0691939
-0.119907 -0.55637 0.0203735
-
-0.212209 -0.528103 -0.00763026
-0.119907 -0.55637 0.0203735
-0.216257 -0.538176 -0.0691939
-
-0.119907 -0.55637 0.0203735
-0.212209 -0.528103 -0.00763026
-0.113322 -0.525815 0.0745116
-
-0.200555 -0.4991 0.0465079
-0.113322 -0.525815 0.0745116
-0.212209 -0.528103 -0.00763026
-
-0.113322 -0.525815 0.0745116
-0.200555 -0.4991 0.0465079
-0.103233 -0.479002 0.114694
-
-0.1827 -0.454666 0.0866907
-0.103233 -0.479002 0.114694
-0.200555 -0.4991 0.0465079
-
-0.103233 -0.479002 0.114694
-0.1827 -0.454666 0.0866907
-0.0908568 -0.421577 0.136075
-
-0.160797 -0.400158 0.108072
-0.0908568 -0.421577 0.136075
-0.1827 -0.454666 0.0866907
-
-0.0908568 -0.421577 0.136075
-0.160797 -0.400158 0.108072
-0.0776866 -0.360467 0.136075
-
-0.137488 -0.342153 0.108072
-0.0776866 -0.360467 0.136075
-0.160797 -0.400158 0.108072
-
-0.0776866 -0.360467 0.136075
-0.137488 -0.342153 0.108072
-0.0653106 -0.303042 0.114694
-
-0.115586 -0.287646 0.0866907
-0.0653106 -0.303042 0.114694
-0.137488 -0.342153 0.108072
-
-0.0653106 -0.303042 0.114694
-0.115586 -0.287646 0.0866907
-0.0552216 -0.256229 0.0745116
-
-0.0977302 -0.243211 0.0465079
-0.0552216 -0.256229 0.0745116
-0.115586 -0.287646 0.0866907
-
-0.0552216 -0.256229 0.0745116
-0.0977302 -0.243211 0.0465079
-0.0486364 -0.225674 0.0203735
-
-0.0860759 -0.214208 -0.00763026
-0.0486364 -0.225674 0.0203735
-0.0977302 -0.243211 0.0465079
-
-0.0486364 -0.225674 0.0203735
-0.0860759 -0.214208 -0.00763026
-0.0463494 -0.215062 -0.0411901
-
-0.0820284 -0.204136 -0.0691939
-0.0463494 -0.215062 -0.0411901
-0.0860759 -0.214208 -0.00763026
-
-0.0463494 -0.215062 -0.0411901
-0.0820284 -0.204136 -0.0691939
-0.0486364 -0.225674 -0.102754
-
-0.0860759 -0.214208 -0.130758
-0.0486364 -0.225674 -0.102754
-0.0820284 -0.204136 -0.0691939
-
-0.0486364 -0.225674 -0.102754
-0.0860759 -0.214208 -0.130758
-0.0552216 -0.256229 -0.156892
-
-0.0977302 -0.243211 -0.184896
-0.0552216 -0.256229 -0.156892
-0.0860759 -0.214208 -0.130758
-
-0.0552216 -0.256229 -0.156892
-0.0977302 -0.243211 -0.184896
-0.0653106 -0.303042 -0.197075
-
-0.115586 -0.287646 -0.225078
-0.0653106 -0.303042 -0.197075
-0.0977302 -0.243211 -0.184896
-
-0.0653106 -0.303042 -0.197075
-0.115586 -0.287646 -0.225078
-0.0776866 -0.360467 -0.218456
-
-0.137488 -0.342153 -0.246459
-0.0776866 -0.360467 -0.218456
-0.115586 -0.287646 -0.225078
-
-0.0776866 -0.360467 -0.218456
-0.137488 -0.342153 -0.246459
-0.0908568 -0.421577 -0.218456
-
-0.160797 -0.400158 -0.246459
-0.0908568 -0.421577 -0.218456
-0.137488 -0.342153 -0.246459
-
-0.0908568 -0.421577 -0.218456
-0.160797 -0.400158 -0.246459
-0.103233 -0.479002 -0.197075
-
-0.1827 -0.454666 -0.225078
-0.103233 -0.479002 -0.197075
-0.160797 -0.400158 -0.246459
-
-0.103233 -0.479002 -0.197075
-0.1827 -0.454666 -0.225078
-0.113322 -0.525815 -0.156892
-
-0.200555 -0.4991 -0.184896
-0.113322 -0.525815 -0.156892
-0.1827 -0.454666 -0.225078
-
-0.113322 -0.525815 -0.156892
-0.200555 -0.4991 -0.184896
-0.119907 -0.55637 -0.102754
-
-0.212209 -0.528103 -0.130758
-0.119907 -0.55637 -0.102754
-0.200555 -0.4991 -0.184896
-
-0.119907 -0.55637 -0.102754
-0.212209 -0.528103 -0.130758
-0.122194 -0.566982 -0.0411901
-
-0.216257 -0.538176 -0.0691939
-0.122194 -0.566982 -0.0411901
-0.212209 -0.528103 -0.130758
-
-0.216257 -0.538176 -0.0691939
-0.304098 -0.493887 -0.0892926
-0.212209 -0.528103 -0.00763026
-
-0.298407 -0.484643 -0.027729
-0.212209 -0.528103 -0.00763026
-0.304098 -0.493887 -0.0892926
-
-0.212209 -0.528103 -0.00763026
-0.298407 -0.484643 -0.027729
-0.200555 -0.4991 0.0465079
-
-0.282019 -0.458027 0.0264092
-0.200555 -0.4991 0.0465079
-0.298407 -0.484643 -0.027729
-
-0.200555 -0.4991 0.0465079
-0.282019 -0.458027 0.0264092
-0.1827 -0.454666 0.0866907
-
-0.256911 -0.417249 0.066592
-0.1827 -0.454666 0.0866907
-0.282019 -0.458027 0.0264092
-
-0.1827 -0.454666 0.0866907
-0.256911 -0.417249 0.066592
-0.160797 -0.400158 0.108072
-
-0.226111 -0.367228 0.0879728
-0.160797 -0.400158 0.108072
-0.256911 -0.417249 0.066592
-
-0.160797 -0.400158 0.108072
-0.226111 -0.367228 0.0879728
-0.137488 -0.342153 0.108072
-
-0.193335 -0.313996 0.0879728
-0.137488 -0.342153 0.108072
-0.226111 -0.367228 0.0879728
-
-0.137488 -0.342153 0.108072
-0.193335 -0.313996 0.0879728
-0.115586 -0.287646 0.0866907
-
-0.162535 -0.263974 0.066592
-0.115586 -0.287646 0.0866907
-0.193335 -0.313996 0.0879728
-
-0.115586 -0.287646 0.0866907
-0.162535 -0.263974 0.066592
-0.0977302 -0.243211 0.0465079
-
-0.137427 -0.223196 0.0264092
-0.0977302 -0.243211 0.0465079
-0.162535 -0.263974 0.066592
-
-0.0977302 -0.243211 0.0465079
-0.137427 -0.223196 0.0264092
-0.0860759 -0.214208 -0.00763026
-
-0.121039 -0.19658 -0.027729
-0.0860759 -0.214208 -0.00763026
-0.137427 -0.223196 0.0264092
-
-0.0860759 -0.214208 -0.00763026
-0.121039 -0.19658 -0.027729
-0.0820284 -0.204136 -0.0691939
-
-0.115348 -0.187336 -0.0892926
-0.0820284 -0.204136 -0.0691939
-0.121039 -0.19658 -0.027729
-
-0.0820284 -0.204136 -0.0691939
-0.115348 -0.187336 -0.0892926
-0.0860759 -0.214208 -0.130758
-
-0.121039 -0.19658 -0.150856
-0.0860759 -0.214208 -0.130758
-0.115348 -0.187336 -0.0892926
-
-0.0860759 -0.214208 -0.130758
-0.121039 -0.19658 -0.150856
-0.0977302 -0.243211 -0.184896
-
-0.137427 -0.223196 -0.204994
-0.0977302 -0.243211 -0.184896
-0.121039 -0.19658 -0.150856
-
-0.0977302 -0.243211 -0.184896
-0.137427 -0.223196 -0.204994
-0.115586 -0.287646 -0.225078
-
-0.162535 -0.263974 -0.245177
-0.115586 -0.287646 -0.225078
-0.137427 -0.223196 -0.204994
-
-0.115586 -0.287646 -0.225078
-0.162535 -0.263974 -0.245177
-0.137488 -0.342153 -0.246459
-
-0.193335 -0.313996 -0.266558
-0.137488 -0.342153 -0.246459
-0.162535 -0.263974 -0.245177
-
-0.137488 -0.342153 -0.246459
-0.193335 -0.313996 -0.266558
-0.160797 -0.400158 -0.246459
-
-0.226111 -0.367228 -0.266558
-0.160797 -0.400158 -0.246459
-0.193335 -0.313996 -0.266558
-
-0.160797 -0.400158 -0.246459
-0.226111 -0.367228 -0.266558
-0.1827 -0.454666 -0.225078
-
-0.256911 -0.417249 -0.245177
-0.1827 -0.454666 -0.225078
-0.226111 -0.367228 -0.266558
-
-0.1827 -0.454666 -0.225078
-0.256911 -0.417249 -0.245177
-0.200555 -0.4991 -0.184896
-
-0.282019 -0.458027 -0.204994
-0.200555 -0.4991 -0.184896
-0.256911 -0.417249 -0.245177
-
-0.200555 -0.4991 -0.184896
-0.282019 -0.458027 -0.204994
-0.212209 -0.528103 -0.130758
-
-0.298407 -0.484643 -0.150856
-0.212209 -0.528103 -0.130758
-0.282019 -0.458027 -0.204994
-
-0.212209 -0.528103 -0.130758
-0.298407 -0.484643 -0.150856
-0.216257 -0.538176 -0.0691939
-
-0.304098 -0.493887 -0.0892926
-0.216257 -0.538176 -0.0691939
-0.298407 -0.484643 -0.150856
-
-0.304098 -0.493887 -0.0892926
-0.383191 -0.43539 -0.09919
-0.298407 -0.484643 -0.027729
-
-0.376019 -0.427241 -0.0376264
-0.298407 -0.484643 -0.027729
-0.383191 -0.43539 -0.09919
-
-0.298407 -0.484643 -0.027729
-0.376019 -0.427241 -0.0376264
-0.282019 -0.458027 0.0264092
-
-0.355369 -0.403778 0.0165117
-0.282019 -0.458027 0.0264092
-0.376019 -0.427241 -0.0376264
-
-0.282019 -0.458027 0.0264092
-0.355369 -0.403778 0.0165117
-0.256911 -0.417249 0.066592
-
-0.323731 -0.367829 0.0566945
-0.256911 -0.417249 0.066592
-0.355369 -0.403778 0.0165117
-
-0.256911 -0.417249 0.066592
-0.323731 -0.367829 0.0566945
-0.226111 -0.367228 0.0879728
-
-0.28492 -0.323732 0.0780754
-0.226111 -0.367228 0.0879728
-0.323731 -0.367829 0.0566945
-
-0.226111 -0.367228 0.0879728
-0.28492 -0.323732 0.0780754
-0.193335 -0.313996 0.0879728
-
-0.243619 -0.276805 0.0780754
-0.193335 -0.313996 0.0879728
-0.28492 -0.323732 0.0780754
-
-0.193335 -0.313996 0.0879728
-0.243619 -0.276805 0.0780754
-0.162535 -0.263974 0.066592
-
-0.204809 -0.232708 0.0566945
-0.162535 -0.263974 0.066592
-0.243619 -0.276805 0.0780754
-
-0.162535 -0.263974 0.066592
-0.204809 -0.232708 0.0566945
-0.137427 -0.223196 0.0264092
-
-0.173171 -0.19676 0.0165117
-0.137427 -0.223196 0.0264092
-0.204809 -0.232708 0.0566945
-
-0.137427 -0.223196 0.0264092
-0.173171 -0.19676 0.0165117
-0.121039 -0.19658 -0.027729
-
-0.15252 -0.173297 -0.0376264
-0.121039 -0.19658 -0.027729
-0.173171 -0.19676 0.0165117
-
-0.121039 -0.19658 -0.027729
-0.15252 -0.173297 -0.0376264
-0.115348 -0.187336 -0.0892926
-
-0.145348 -0.165148 -0.09919
-0.115348 -0.187336 -0.0892926
-0.15252 -0.173297 -0.0376264
-
-0.115348 -0.187336 -0.0892926
-0.145348 -0.165148 -0.09919
-0.121039 -0.19658 -0.150856
-
-0.15252 -0.173297 -0.160754
-0.121039 -0.19658 -0.150856
-0.145348 -0.165148 -0.09919
-
-0.121039 -0.19658 -0.150856
-0.15252 -0.173297 -0.160754
-0.137427 -0.223196 -0.204994
-
-0.173171 -0.19676 -0.214892
-0.137427 -0.223196 -0.204994
-0.15252 -0.173297 -0.160754
-
-0.137427 -0.223196 -0.204994
-0.173171 -0.19676 -0.214892
-0.162535 -0.263974 -0.245177
-
-0.204809 -0.232708 -0.255075
-0.162535 -0.263974 -0.245177
-0.173171 -0.19676 -0.214892
-
-0.162535 -0.263974 -0.245177
-0.204809 -0.232708 -0.255075
-0.193335 -0.313996 -0.266558
-
-0.243619 -0.276805 -0.276455
-0.193335 -0.313996 -0.266558
-0.204809 -0.232708 -0.255075
-
-0.193335 -0.313996 -0.266558
-0.243619 -0.276805 -0.276455
-0.226111 -0.367228 -0.266558
-
-0.28492 -0.323732 -0.276455
-0.226111 -0.367228 -0.266558
-0.243619 -0.276805 -0.276455
-
-0.226111 -0.367228 -0.266558
-0.28492 -0.323732 -0.276455
-0.256911 -0.417249 -0.245177
-
-0.323731 -0.367829 -0.255075
-0.256911 -0.417249 -0.245177
-0.28492 -0.323732 -0.276455
-
-0.256911 -0.417249 -0.245177
-0.323731 -0.367829 -0.255075
-0.282019 -0.458027 -0.204994
-
-0.355369 -0.403778 -0.214892
-0.282019 -0.458027 -0.204994
-0.323731 -0.367829 -0.255075
-
-0.282019 -0.458027 -0.204994
-0.355369 -0.403778 -0.214892
-0.298407 -0.484643 -0.150856
-
-0.376019 -0.427241 -0.160754
-0.298407 -0.484643 -0.150856
-0.355369 -0.403778 -0.214892
-
-0.298407 -0.484643 -0.150856
-0.376019 -0.427241 -0.160754
-0.304098 -0.493887 -0.0892926
-
-0.383191 -0.43539 -0.09919
-0.304098 -0.493887 -0.0892926
-0.376019 -0.427241 -0.160754
-
-0.383191 -0.43539 -0.09919
-0.451261 -0.364368 -0.0977555
-0.376019 -0.427241 -0.0376264
-
-0.442815 -0.357548 -0.0361919
-0.376019 -0.427241 -0.0376264
-0.451261 -0.364368 -0.0977555
-
-0.376019 -0.427241 -0.0376264
-0.442815 -0.357548 -0.0361919
-0.355369 -0.403778 0.0165117
-
-0.418496 -0.337912 0.0179462
-0.355369 -0.403778 0.0165117
-0.442815 -0.357548 -0.0361919
-
-0.355369 -0.403778 0.0165117
-0.418496 -0.337912 0.0179462
-0.323731 -0.367829 0.0566945
-
-0.381238 -0.307828 0.058129
-0.323731 -0.367829 0.0566945
-0.418496 -0.337912 0.0179462
-
-0.323731 -0.367829 0.0566945
-0.381238 -0.307828 0.058129
-0.28492 -0.323732 0.0780754
-
-0.335533 -0.270924 0.0795099
-0.28492 -0.323732 0.0780754
-0.381238 -0.307828 0.058129
-
-0.28492 -0.323732 0.0780754
-0.335533 -0.270924 0.0795099
-0.243619 -0.276805 0.0780754
-
-0.286895 -0.231652 0.0795099
-0.243619 -0.276805 0.0780754
-0.335533 -0.270924 0.0795099
-
-0.243619 -0.276805 0.0780754
-0.286895 -0.231652 0.0795099
-0.204809 -0.232708 0.0566945
-
-0.241191 -0.194748 0.058129
-0.204809 -0.232708 0.0566945
-0.286895 -0.231652 0.0795099
-
-0.204809 -0.232708 0.0566945
-0.241191 -0.194748 0.058129
-0.173171 -0.19676 0.0165117
-
-0.203933 -0.164664 0.0179462
-0.173171 -0.19676 0.0165117
-0.241191 -0.194748 0.058129
-
-0.173171 -0.19676 0.0165117
-0.203933 -0.164664 0.0179462
-0.15252 -0.173297 -0.0376264
-
-0.179614 -0.145028 -0.0361919
-0.15252 -0.173297 -0.0376264
-0.203933 -0.164664 0.0179462
-
-0.15252 -0.173297 -0.0376264
-0.179614 -0.145028 -0.0361919
-0.145348 -0.165148 -0.09919
-
-0.171168 -0.138208 -0.0977555
-0.145348 -0.165148 -0.09919
-0.179614 -0.145028 -0.0361919
-
-0.145348 -0.165148 -0.09919
-0.171168 -0.138208 -0.0977555
-0.15252 -0.173297 -0.160754
-
-0.179614 -0.145028 -0.159319
-0.15252 -0.173297 -0.160754
-0.171168 -0.138208 -0.0977555
-
-0.15252 -0.173297 -0.160754
-0.179614 -0.145028 -0.159319
-0.173171 -0.19676 -0.214892
-
-0.203933 -0.164664 -0.213457
-0.173171 -0.19676 -0.214892
-0.179614 -0.145028 -0.159319
-
-0.173171 -0.19676 -0.214892
-0.203933 -0.164664 -0.213457
-0.204809 -0.232708 -0.255075
-
-0.241191 -0.194748 -0.25364
-0.204809 -0.232708 -0.255075
-0.203933 -0.164664 -0.213457
-
-0.204809 -0.232708 -0.255075
-0.241191 -0.194748 -0.25364
-0.243619 -0.276805 -0.276455
-
-0.286895 -0.231652 -0.275021
-0.243619 -0.276805 -0.276455
-0.241191 -0.194748 -0.25364
-
-0.243619 -0.276805 -0.276455
-0.286895 -0.231652 -0.275021
-0.28492 -0.323732 -0.276455
-
-0.335533 -0.270924 -0.275021
-0.28492 -0.323732 -0.276455
-0.286895 -0.231652 -0.275021
-
-0.28492 -0.323732 -0.276455
-0.335533 -0.270924 -0.275021
-0.323731 -0.367829 -0.255075
-
-0.381238 -0.307828 -0.25364
-0.323731 -0.367829 -0.255075
-0.335533 -0.270924 -0.275021
-
-0.323731 -0.367829 -0.255075
-0.381238 -0.307828 -0.25364
-0.355369 -0.403778 -0.214892
-
-0.418496 -0.337912 -0.213457
-0.355369 -0.403778 -0.214892
-0.381238 -0.307828 -0.25364
-
-0.355369 -0.403778 -0.214892
-0.418496 -0.337912 -0.213457
-0.376019 -0.427241 -0.160754
-
-0.442815 -0.357548 -0.159319
-0.376019 -0.427241 -0.160754
-0.418496 -0.337912 -0.213457
-
-0.376019 -0.427241 -0.160754
-0.442815 -0.357548 -0.159319
-0.383191 -0.43539 -0.09919
-
-0.451261 -0.364368 -0.0977555
-0.383191 -0.43539 -0.09919
-0.442815 -0.357548 -0.159319
-
-0.451261 -0.364368 -0.0977555
-0.506348 -0.282863 -0.0851529
-0.442815 -0.357548 -0.0361919
-
-0.496871 -0.277569 -0.0235893
-0.442815 -0.357548 -0.0361919
-0.506348 -0.282863 -0.0851529
-
-0.442815 -0.357548 -0.0361919
-0.496871 -0.277569 -0.0235893
-0.418496 -0.337912 0.0179462
-
-0.469584 -0.262325 0.0305489
-0.418496 -0.337912 0.0179462
-0.496871 -0.277569 -0.0235893
-
-0.418496 -0.337912 0.0179462
-0.469584 -0.262325 0.0305489
-0.381238 -0.307828 0.058129
-
-0.427777 -0.238971 0.0707317
-0.381238 -0.307828 0.058129
-0.469584 -0.262325 0.0305489
-
-0.381238 -0.307828 0.058129
-0.427777 -0.238971 0.0707317
-0.335533 -0.270924 0.0795099
-
-0.376493 -0.210322 0.0921125
-0.335533 -0.270924 0.0795099
-0.427777 -0.238971 0.0707317
-
-0.335533 -0.270924 0.0795099
-0.376493 -0.210322 0.0921125
-0.286895 -0.231652 0.0795099
-
-0.321918 -0.179834 0.0921125
-0.286895 -0.231652 0.0795099
-0.376493 -0.210322 0.0921125
-
-0.286895 -0.231652 0.0795099
-0.321918 -0.179834 0.0921125
-0.241191 -0.194748 0.058129
-
-0.270634 -0.151185 0.0707317
-0.241191 -0.194748 0.058129
-0.321918 -0.179834 0.0921125
-
-0.241191 -0.194748 0.058129
-0.270634 -0.151185 0.0707317
-0.203933 -0.164664 0.0179462
-
-0.228827 -0.127831 0.0305489
-0.203933 -0.164664 0.0179462
-0.270634 -0.151185 0.0707317
-
-0.203933 -0.164664 0.0179462
-0.228827 -0.127831 0.0305489
-0.179614 -0.145028 -0.0361919
-
-0.20154 -0.112587 -0.0235893
-0.179614 -0.145028 -0.0361919
-0.228827 -0.127831 0.0305489
-
-0.179614 -0.145028 -0.0361919
-0.20154 -0.112587 -0.0235893
-0.171168 -0.138208 -0.0977555
-
-0.192063 -0.107293 -0.0851529
-0.171168 -0.138208 -0.0977555
-0.20154 -0.112587 -0.0235893
-
-0.171168 -0.138208 -0.0977555
-0.192063 -0.107293 -0.0851529
-0.179614 -0.145028 -0.159319
-
-0.20154 -0.112587 -0.146717
-0.179614 -0.145028 -0.159319
-0.192063 -0.107293 -0.0851529
-
-0.179614 -0.145028 -0.159319
-0.20154 -0.112587 -0.146717
-0.203933 -0.164664 -0.213457
-
-0.228827 -0.127831 -0.200855
-0.203933 -0.164664 -0.213457
-0.20154 -0.112587 -0.146717
-
-0.203933 -0.164664 -0.213457
-0.228827 -0.127831 -0.200855
-0.241191 -0.194748 -0.25364
-
-0.270634 -0.151185 -0.241037
-0.241191 -0.194748 -0.25364
-0.228827 -0.127831 -0.200855
-
-0.241191 -0.194748 -0.25364
-0.270634 -0.151185 -0.241037
-0.286895 -0.231652 -0.275021
-
-0.321918 -0.179834 -0.262418
-0.286895 -0.231652 -0.275021
-0.270634 -0.151185 -0.241037
-
-0.286895 -0.231652 -0.275021
-0.321918 -0.179834 -0.262418
-0.335533 -0.270924 -0.275021
-
-0.376493 -0.210322 -0.262418
-0.335533 -0.270924 -0.275021
-0.321918 -0.179834 -0.262418
-
-0.335533 -0.270924 -0.275021
-0.376493 -0.210322 -0.262418
-0.381238 -0.307828 -0.25364
-
-0.427777 -0.238971 -0.241037
-0.381238 -0.307828 -0.25364
-0.376493 -0.210322 -0.262418
-
-0.381238 -0.307828 -0.25364
-0.427777 -0.238971 -0.241037
-0.418496 -0.337912 -0.213457
-
-0.469584 -0.262325 -0.200855
-0.418496 -0.337912 -0.213457
-0.427777 -0.238971 -0.241037
-
-0.418496 -0.337912 -0.213457
-0.469584 -0.262325 -0.200855
-0.442815 -0.357548 -0.159319
-
-0.496871 -0.277569 -0.146717
-0.442815 -0.357548 -0.159319
-0.469584 -0.262325 -0.200855
-
-0.442815 -0.357548 -0.159319
-0.496871 -0.277569 -0.146717
-0.451261 -0.364368 -0.0977555
-
-0.506348 -0.282863 -0.0851529
-0.451261 -0.364368 -0.0977555
-0.496871 -0.277569 -0.146717
-
-0.506348 -0.282863 -0.0851529
-0.546869 -0.193221 -0.062822
-0.496871 -0.277569 -0.0235893
-
-0.536634 -0.189605 -0.00125837
-0.496871 -0.277569 -0.0235893
-0.546869 -0.193221 -0.062822
-
-0.496871 -0.277569 -0.0235893
-0.536634 -0.189605 -0.00125837
-0.469584 -0.262325 0.0305489
-
-0.507162 -0.179192 0.0528798
-0.469584 -0.262325 0.0305489
-0.536634 -0.189605 -0.00125837
-
-0.469584 -0.262325 0.0305489
-0.507162 -0.179192 0.0528798
-0.427777 -0.238971 0.0707317
-
-0.46201 -0.163238 0.0930626
-0.427777 -0.238971 0.0707317
-0.507162 -0.179192 0.0528798
-
-0.427777 -0.238971 0.0707317
-0.46201 -0.163238 0.0930626
-0.376493 -0.210322 0.0921125
-
-0.406622 -0.143669 0.114443
-0.376493 -0.210322 0.0921125
-0.46201 -0.163238 0.0930626
-
-0.376493 -0.210322 0.0921125
-0.406622 -0.143669 0.114443
-0.321918 -0.179834 0.0921125
-
-0.34768 -0.122843 0.114443
-0.321918 -0.179834 0.0921125
-0.406622 -0.143669 0.114443
-
-0.321918 -0.179834 0.0921125
-0.34768 -0.122843 0.114443
-0.270634 -0.151185 0.0707317
-
-0.292292 -0.103273 0.0930626
-0.270634 -0.151185 0.0707317
-0.34768 -0.122843 0.114443
-
-0.270634 -0.151185 0.0707317
-0.292292 -0.103273 0.0930626
-0.228827 -0.127831 0.0305489
-
-0.247139 -0.0873199 0.0528798
-0.228827 -0.127831 0.0305489
-0.292292 -0.103273 0.0930626
-
-0.228827 -0.127831 0.0305489
-0.247139 -0.0873199 0.0528798
-0.20154 -0.112587 -0.0235893
-
-0.217668 -0.0769071 -0.00125837
-0.20154 -0.112587 -0.0235893
-0.247139 -0.0873199 0.0528798
-
-0.20154 -0.112587 -0.0235893
-0.217668 -0.0769071 -0.00125837
-0.192063 -0.107293 -0.0851529
-
-0.207433 -0.0732908 -0.062822
-0.192063 -0.107293 -0.0851529
-0.217668 -0.0769071 -0.00125837
-
-0.192063 -0.107293 -0.0851529
-0.207433 -0.0732908 -0.062822
-0.20154 -0.112587 -0.146717
-
-0.217668 -0.0769071 -0.124386
-0.20154 -0.112587 -0.146717
-0.207433 -0.0732908 -0.062822
-
-0.20154 -0.112587 -0.146717
-0.217668 -0.0769071 -0.124386
-0.228827 -0.127831 -0.200855
-
-0.247139 -0.0873199 -0.178524
-0.228827 -0.127831 -0.200855
-0.217668 -0.0769071 -0.124386
-
-0.228827 -0.127831 -0.200855
-0.247139 -0.0873199 -0.178524
-0.270634 -0.151185 -0.241037
-
-0.292292 -0.103273 -0.218707
-0.270634 -0.151185 -0.241037
-0.247139 -0.0873199 -0.178524
-
-0.270634 -0.151185 -0.241037
-0.292292 -0.103273 -0.218707
-0.321918 -0.179834 -0.262418
-
-0.34768 -0.122843 -0.240087
-0.321918 -0.179834 -0.262418
-0.292292 -0.103273 -0.218707
-
-0.321918 -0.179834 -0.262418
-0.34768 -0.122843 -0.240087
-0.376493 -0.210322 -0.262418
-
-0.406622 -0.143669 -0.240087
-0.376493 -0.210322 -0.262418
-0.34768 -0.122843 -0.240087
-
-0.376493 -0.210322 -0.262418
-0.406622 -0.143669 -0.240087
-0.427777 -0.238971 -0.241037
-
-0.46201 -0.163238 -0.218707
-0.427777 -0.238971 -0.241037
-0.406622 -0.143669 -0.240087
-
-0.427777 -0.238971 -0.241037
-0.46201 -0.163238 -0.218707
-0.469584 -0.262325 -0.200855
-
-0.507162 -0.179192 -0.178524
-0.469584 -0.262325 -0.200855
-0.46201 -0.163238 -0.218707
-
-0.469584 -0.262325 -0.200855
-0.507162 -0.179192 -0.178524
-0.496871 -0.277569 -0.146717
-
-0.536634 -0.189605 -0.124386
-0.496871 -0.277569 -0.146717
-0.507162 -0.179192 -0.178524
-
-0.496871 -0.277569 -0.146717
-0.536634 -0.189605 -0.124386
-0.506348 -0.282863 -0.0851529
-
-0.546869 -0.193221 -0.062822
-0.506348 -0.282863 -0.0851529
-0.536634 -0.189605 -0.124386
-
-0.546869 -0.193221 -0.062822
-0.571657 -0.0980205 -0.033314
-0.536634 -0.189605 -0.00125837
-
-0.560958 -0.0961859 0.0282496
-0.536634 -0.189605 -0.00125837
-0.571657 -0.0980205 -0.033314
-
-0.536634 -0.189605 -0.00125837
-0.560958 -0.0961859 0.0282496
-0.507162 -0.179192 0.0528798
-
-0.530151 -0.0909035 0.0823878
-0.507162 -0.179192 0.0528798
-0.560958 -0.0961859 0.0282496
-
-0.507162 -0.179192 0.0528798
-0.530151 -0.0909035 0.0823878
-0.46201 -0.163238 0.0930626
-
-0.482952 -0.0828104 0.122571
-0.46201 -0.163238 0.0930626
-0.530151 -0.0909035 0.0823878
-
-0.46201 -0.163238 0.0930626
-0.482952 -0.0828104 0.122571
-0.406622 -0.143669 0.114443
-
-0.425053 -0.0728827 0.143951
-0.406622 -0.143669 0.114443
-0.482952 -0.0828104 0.122571
-
-0.406622 -0.143669 0.114443
-0.425053 -0.0728827 0.143951
-0.34768 -0.122843 0.114443
-
-0.363439 -0.0623179 0.143951
-0.34768 -0.122843 0.114443
-0.425053 -0.0728827 0.143951
-
-0.34768 -0.122843 0.114443
-0.363439 -0.0623179 0.143951
-0.292292 -0.103273 0.0930626
-
-0.305541 -0.0523903 0.122571
-0.292292 -0.103273 0.0930626
-0.363439 -0.0623179 0.143951
-
-0.292292 -0.103273 0.0930626
-0.305541 -0.0523903 0.122571
-0.247139 -0.0873199 0.0528798
-
-0.258342 -0.0442971 0.0823878
-0.247139 -0.0873199 0.0528798
-0.305541 -0.0523903 0.122571
-
-0.247139 -0.0873199 0.0528798
-0.258342 -0.0442971 0.0823878
-0.217668 -0.0769071 -0.00125837
-
-0.227535 -0.0390147 0.0282496
-0.217668 -0.0769071 -0.00125837
-0.258342 -0.0442971 0.0823878
-
-0.217668 -0.0769071 -0.00125837
-0.227535 -0.0390147 0.0282496
-0.207433 -0.0732908 -0.062822
-
-0.216836 -0.0371802 -0.033314
-0.207433 -0.0732908 -0.062822
-0.227535 -0.0390147 0.0282496
-
-0.207433 -0.0732908 -0.062822
-0.216836 -0.0371802 -0.033314
-0.217668 -0.0769071 -0.124386
-
-0.227535 -0.0390147 -0.0948776
-0.217668 -0.0769071 -0.124386
-0.216836 -0.0371802 -0.033314
-
-0.217668 -0.0769071 -0.124386
-0.227535 -0.0390147 -0.0948776
-0.247139 -0.0873199 -0.178524
-
-0.258342 -0.0442971 -0.149016
-0.247139 -0.0873199 -0.178524
-0.227535 -0.0390147 -0.0948776
-
-0.247139 -0.0873199 -0.178524
-0.258342 -0.0442971 -0.149016
-0.292292 -0.103273 -0.218707
-
-0.305541 -0.0523903 -0.189199
-0.292292 -0.103273 -0.218707
-0.258342 -0.0442971 -0.149016
-
-0.292292 -0.103273 -0.218707
-0.305541 -0.0523903 -0.189199
-0.34768 -0.122843 -0.240087
-
-0.363439 -0.0623179 -0.210579
-0.34768 -0.122843 -0.240087
-0.305541 -0.0523903 -0.189199
-
-0.34768 -0.122843 -0.240087
-0.363439 -0.0623179 -0.210579
-0.406622 -0.143669 -0.240087
-
-0.425053 -0.0728827 -0.210579
-0.406622 -0.143669 -0.240087
-0.363439 -0.0623179 -0.210579
-
-0.406622 -0.143669 -0.240087
-0.425053 -0.0728827 -0.210579
-0.46201 -0.163238 -0.218707
-
-0.482952 -0.0828104 -0.189199
-0.46201 -0.163238 -0.218707
-0.425053 -0.0728827 -0.210579
-
-0.46201 -0.163238 -0.218707
-0.482952 -0.0828104 -0.189199
-0.507162 -0.179192 -0.178524
-
-0.530151 -0.0909035 -0.149016
-0.507162 -0.179192 -0.178524
-0.482952 -0.0828104 -0.189199
-
-0.507162 -0.179192 -0.178524
-0.530151 -0.0909035 -0.149016
-0.536634 -0.189605 -0.124386
-
-0.560958 -0.0961859 -0.0948776
-0.536634 -0.189605 -0.124386
-0.530151 -0.0909035 -0.149016
-
-0.536634 -0.189605 -0.124386
-0.560958 -0.0961859 -0.0948776
-0.546869 -0.193221 -0.062822
-
-0.571657 -0.0980205 -0.033314
-0.546869 -0.193221 -0.062822
-0.560958 -0.0961859 -0.0948776
-
-0.571657 -0.0980205 -0.033314
-0.58 0 0
-0.560958 -0.0961859 0.0282496
-
-0.569145 0 0.0615636
-0.560958 -0.0961859 0.0282496
-0.58 0 0
-
-0.560958 -0.0961859 0.0282496
-0.569145 0 0.0615636
-0.530151 -0.0909035 0.0823878
-
-0.537888 0 0.115702
-0.530151 -0.0909035 0.0823878
-0.569145 0 0.0615636
-
-0.530151 -0.0909035 0.0823878
-0.537888 0 0.115702
-0.482952 -0.0828104 0.122571
-
-0.49 0 0.155885
-0.482952 -0.0828104 0.122571
-0.537888 0 0.115702
-
-0.482952 -0.0828104 0.122571
-0.49 0 0.155885
-0.425053 -0.0728827 0.143951
-
-0.431257 0 0.177265
-0.425053 -0.0728827 0.143951
-0.49 0 0.155885
-
-0.425053 -0.0728827 0.143951
-0.431257 0 0.177265
-0.363439 -0.0623179 0.143951
-
-0.368743 0 0.177265
-0.363439 -0.0623179 0.143951
-0.431257 0 0.177265
-
-0.363439 -0.0623179 0.143951
-0.368743 0 0.177265
-0.305541 -0.0523903 0.122571
-
-0.31 0 0.155885
-0.305541 -0.0523903 0.122571
-0.368743 0 0.177265
-
-0.305541 -0.0523903 0.122571
-0.31 0 0.155885
-0.258342 -0.0442971 0.0823878
-
-0.262112 0 0.115702
-0.258342 -0.0442971 0.0823878
-0.31 0 0.155885
-
-0.258342 -0.0442971 0.0823878
-0.262112 0 0.115702
-0.227535 -0.0390147 0.0282496
-
-0.230855 0 0.0615636
-0.227535 -0.0390147 0.0282496
-0.262112 0 0.115702
-
-0.227535 -0.0390147 0.0282496
-0.230855 0 0.0615636
-0.216836 -0.0371802 -0.033314
-
-0.22 0 0
-0.216836 -0.0371802 -0.033314
-0.230855 0 0.0615636
-
-0.216836 -0.0371802 -0.033314
-0.22 0 0
-0.227535 -0.0390147 -0.0948776
-
-0.230855 0 -0.0615636
-0.227535 -0.0390147 -0.0948776
-0.22 0 0
-
-0.227535 -0.0390147 -0.0948776
-0.230855 0 -0.0615636
-0.258342 -0.0442971 -0.149016
-
-0.262112 0 -0.115702
-0.258342 -0.0442971 -0.149016
-0.230855 0 -0.0615636
-
-0.258342 -0.0442971 -0.149016
-0.262112 0 -0.115702
-0.305541 -0.0523903 -0.189199
-
-0.31 0 -0.155885
-0.305541 -0.0523903 -0.189199
-0.262112 0 -0.115702
-
-0.305541 -0.0523903 -0.189199
-0.31 0 -0.155885
-0.363439 -0.0623179 -0.210579
-
-0.368743 0 -0.177265
-0.363439 -0.0623179 -0.210579
-0.31 0 -0.155885
-
-0.363439 -0.0623179 -0.210579
-0.368743 0 -0.177265
-0.425053 -0.0728827 -0.210579
-
-0.431257 0 -0.177265
-0.425053 -0.0728827 -0.210579
-0.368743 0 -0.177265
-
-0.425053 -0.0728827 -0.210579
-0.431257 0 -0.177265
-0.482952 -0.0828104 -0.189199
-
-0.49 0 -0.155885
-0.482952 -0.0828104 -0.189199
-0.431257 0 -0.177265
-
-0.482952 -0.0828104 -0.189199
-0.49 0 -0.155885
-0.530151 -0.0909035 -0.149016
-
-0.537888 0 -0.115702
-0.530151 -0.0909035 -0.149016
-0.49 0 -0.155885
-
-0.530151 -0.0909035 -0.149016
-0.537888 0 -0.115702
-0.560958 -0.0961859 -0.0948776
-
-0.569145 0 -0.0615636
-0.560958 -0.0961859 -0.0948776
-0.537888 0 -0.115702
-
-0.560958 -0.0961859 -0.0948776
-0.569145 0 -0.0615636
-0.571657 -0.0980205 -0.033314
-
-0.58 0 0
-0.571657 -0.0980205 -0.033314
-0.569145 0 -0.0615636
-
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/include/BV.h b/trunk/PQP/build/pqp-tar/PQP_v1.3/include/BV.h
deleted file mode 100644
index cfe42c73785d1ebad055dfca953870eeb32d5a19..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/include/BV.h
+++ /dev/null
@@ -1,94 +0,0 @@
-/*************************************************************************\
-
-  Copyright 1999 The University of North Carolina at Chapel Hill.
-  All Rights Reserved.
-
-  Permission to use, copy, modify and distribute this software and its
-  documentation for educational, research and non-profit purposes, without
-  fee, and without a written agreement is hereby granted, provided that the
-  above copyright notice and the following three paragraphs appear in all
-  copies.
-
-  IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE
-  LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
-  CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE
-  USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY
-  OF NORTH CAROLINA HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
-  DAMAGES.
-
-  THE UNIVERSITY OF NORTH CAROLINA SPECIFICALLY DISCLAIM ANY
-  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE
-  PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
-  NORTH CAROLINA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
-  UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-
-  The authors may be contacted via:
-
-  US Mail:             E. Larsen
-                       Department of Computer Science
-                       Sitterson Hall, CB #3175
-                       University of N. Carolina
-                       Chapel Hill, NC 27599-3175
-
-  Phone:               (919)962-1749
-
-  EMail:               geom@cs.unc.edu
-
-
-\**************************************************************************/
-
-#ifndef PQP_BV_H
-#define PQP_BV_H
-
-#include <math.h>
-#include "Tri.h"
-#include "PQP_Compile.h"
-
-struct BV
-{
-  PQP_REAL R[3][3];     // orientation of RSS & OBB
-
-#if PQP_BV_TYPE & RSS_TYPE
-  PQP_REAL Tr[3];       // position of rectangle
-  PQP_REAL l[2];        // side lengths of rectangle
-  PQP_REAL r;           // radius of sphere summed with rectangle to form RSS
-#endif
-
-#if PQP_BV_TYPE & OBB_TYPE
-  PQP_REAL To[3];       // position of obb
-  PQP_REAL d[3];        // (half) dimensions of obb
-#endif
-
-  int first_child;      // positive value is index of first_child bv
-                        // negative value is -(index + 1) of triangle
-
-  BV();
-  ~BV();
-  int      Leaf()    { return first_child < 0; }
-  PQP_REAL GetSize(); 
-  void     FitToTris(PQP_REAL O[3][3], Tri *tris, int num_tris);
-};
-
-inline
-PQP_REAL 
-BV::GetSize()
-{
-#if PQP_BV_TYPE & RSS_TYPE
-  return (sqrt(l[0]*l[0] + l[1]*l[1]) + 2*r);
-#else
-  return (d[0]*d[0] + d[1]*d[1] + d[2]*d[2]);
-#endif
-}
-
-int
-BV_Overlap(PQP_REAL R[3][3], PQP_REAL T[3], BV *b1, BV *b2);
-
-#if PQP_BV_TYPE & RSS_TYPE
-PQP_REAL
-BV_Distance(PQP_REAL R[3][3], PQP_REAL T[3], BV *b1, BV *b2);
-#endif
-
-#endif
-
-
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/include/PQP.h b/trunk/PQP/build/pqp-tar/PQP_v1.3/include/PQP.h
deleted file mode 100644
index f6f3e539581c4e118d2afecace8e8a35d10c3db2..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/include/PQP.h
+++ /dev/null
@@ -1,338 +0,0 @@
-/*************************************************************************\
-
-  Copyright 1999 The University of North Carolina at Chapel Hill.
-  All Rights Reserved.
-
-  Permission to use, copy, modify and distribute this software and its
-  documentation for educational, research and non-profit purposes, without
-  fee, and without a written agreement is hereby granted, provided that the
-  above copyright notice and the following three paragraphs appear in all
-  copies.
-
-  IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE
-  LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
-  CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE
-  USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY
-  OF NORTH CAROLINA HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
-  DAMAGES.
-
-  THE UNIVERSITY OF NORTH CAROLINA SPECIFICALLY DISCLAIM ANY
-  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE
-  PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
-  NORTH CAROLINA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
-  UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-
-  The authors may be contacted via:
-
-  US Mail:             S. Gottschalk, E. Larsen
-                       Department of Computer Science
-                       Sitterson Hall, CB #3175
-                       University of N. Carolina
-                       Chapel Hill, NC 27599-3175
-
-  Phone:               (919)962-1749
-
-  EMail:               geom@cs.unc.edu
-
-
-\**************************************************************************/
-
-#ifndef PQP_H
-#define PQP_H
-
-#include "PQP_Compile.h"   
-#include "PQP_Internal.h"                             
-                        
-//----------------------------------------------------------------------------
-//
-//  PQP API Return Values
-//
-//----------------------------------------------------------------------------
-
-const int PQP_OK = 0; 
-  // Used by all API routines upon successful completion except
-  // constructors and destructors
-
-const int PQP_ERR_MODEL_OUT_OF_MEMORY = -1; 
-  // Returned when an API function cannot obtain enough memory to
-  // store or process a PQP_Model object.
-
-const int PQP_ERR_OUT_OF_MEMORY = -2;
-  // Returned when a PQP query cannot allocate enough storage to
-  // compute or hold query information.  In this case, the returned
-  // data should not be trusted.
-
-const int PQP_ERR_UNPROCESSED_MODEL = -3;
-  // Returned when an unprocessed model is passed to a function which
-  // expects only processed models, such as PQP_Collide() or
-  // PQP_Distance().
-
-const int PQP_ERR_BUILD_OUT_OF_SEQUENCE = -4;
-  // Returned when: 
-  //       1. AddTri() is called before BeginModel().  
-  //       2. BeginModel() is called immediately after AddTri().  
-  // This error code is something like a warning: the invoked
-  // operation takes place anyway, and PQP does what makes "most
-  // sense", but the returned error code may tip off the client that
-  // something out of the ordinary is happenning.
-
-const int PQP_ERR_BUILD_EMPTY_MODEL = -5; 
-  // Returned when EndModel() is called on a model to which no
-  // triangles have been added.  This is similar in spirit to the
-  // OUT_OF_SEQUENCE return code, except that the requested operation
-  // has FAILED -- the model remains "unprocessed", and the client may
-  // NOT use it in queries.
-
-//----------------------------------------------------------------------------
-//
-//  PQP_REAL 
-//
-//  The floating point type used throughout the package. The type is defined 
-//  in PQP_Compile.h, and by default is "double"
-//
-//----------------------------------------------------------------------------
-
-//----------------------------------------------------------------------------
-//
-//  PQP_Model
-//
-//  A PQP_Model stores geometry to be used in a proximity query.
-//  The geometry is loaded with a call to BeginModel(), at least one call to 
-//  AddTri(), and then a call to EndModel().
-//
-//  // create a two triangle model, m
-//
-//  PQP_Model m;
-//
-//  PQP_REAL p1[3],p2[3],p3[3];  // 3 points will make triangle p
-//  PQP_REAL q1[3],q2[3],q3[3];  // another 3 points for triangle q
-//
-//  // some initialization of these vertices not shown
-//
-//  m.BeginModel();              // begin the model
-//  m.AddTri(p1,p2,p3,0);        // add triangle p
-//  m.AddTri(q1,q2,q3,1);        // add triangle q
-//  m.EndModel();                // end (build) the model
-//
-//  The last parameter of AddTri() is the number to be associated with the 
-//  triangle. These numbers are used to identify the triangles that overlap.
-// 
-//  AddTri() copies into the PQP_Model the data pointed to by the three vertex 
-//  pointers, so that it is safe to delete vertex data after you have 
-//  passed it to AddTri().
-//
-//----------------------------------------------------------------------------
-//
-//  class PQP_Model  - declaration contained in PQP_Internal.h
-//  {
-//
-//  public:
-//    PQP_Model();
-//    ~PQP_Model();
-//
-//    int BeginModel(int num_tris = 8); // preallocate for num_tris triangles;
-//                                      // the parameter is optional, since
-//                                      // arrays are reallocated as needed
-//
-//    int AddTri(const PQP_REAL *p1, const PQP_REAL *p2, const PQP_REAL *p3, 
-//               int id);
-//
-//    int EndModel();
-//    int MemUsage(int msg);  // returns model mem usage in bytes
-//                            // prints message to stderr if msg == TRUE
-//  };
-
-//----------------------------------------------------------------------------
-//
-//  PQP_CollideResult 
-//
-//  This saves and reports results from a collision query.  
-//
-//----------------------------------------------------------------------------
-//
-//  struct PQP_CollideResult - declaration contained in PQP_Internal.h
-//  {
-//    // statistics
-//
-//    int NumBVTests();
-//    int NumTriTests();
-//    PQP_REAL QueryTimeSecs();
-//
-//    // free the list of contact pairs; ordinarily this list is reused
-//    // for each query, and only deleted in the destructor.
-//
-//    void FreePairsList(); 
-//
-//    // query results
-//
-//    int Colliding();
-//    int NumPairs();
-//    int Id1(int k);
-//    int Id2(int k);
-//  };
-
-//----------------------------------------------------------------------------
-//
-//  PQP_Collide() - detects collision between two PQP_Models
-//
-//
-//  Declare a PQP_CollideResult struct and pass its pointer to collect 
-//  collision data.
-//
-//  [R1, T1] is the placement of model 1 in the world &
-//  [R2, T2] is the placement of model 2 in the world.
-//  The columns of each 3x3 matrix are the basis vectors for the model
-//  in world coordinates, and the matrices are in row-major order:
-//  R(row r, col c) = R[r][c].
-//
-//  If PQP_ALL_CONTACTS is the flag value, after calling PQP_Collide(),
-//  the PQP_CollideResult object will contain an array with all
-//  colliding triangle pairs. Suppose CR is a pointer to the
-//  PQP_CollideResult object.  The number of pairs is gotten from
-//  CR->NumPairs(), and the ids of the 15'th pair of colliding
-//  triangles is gotten from CR->Id1(14) and CR->Id2(14).
-//
-//  If PQP_FIRST_CONTACT is the flag value, the PQP_CollideResult array
-//  will only get the first colliding triangle pair found.  Thus
-//  CR->NumPairs() will be at most 1, and if 1, CR->Id1(0) and
-//  CR->Id2(0) give the ids of the colliding triangle pair.
-//
-//----------------------------------------------------------------------------
-
-const int PQP_ALL_CONTACTS = 1;  // find all pairwise intersecting triangles
-const int PQP_FIRST_CONTACT = 2; // report first intersecting tri pair found
-
-int 
-PQP_Collide(PQP_CollideResult *result,
-            PQP_REAL R1[3][3], PQP_REAL T1[3], PQP_Model *o1,
-            PQP_REAL R2[3][3], PQP_REAL T2[3], PQP_Model *o2,
-            int flag = PQP_ALL_CONTACTS);
-
-
-#if PQP_BV_TYPE & RSS_TYPE  // this is true by default,
-                            // and explained in PQP_Compile.h
-
-//----------------------------------------------------------------------------
-//
-//  PQP_DistanceResult
-//
-//  This saves and reports results from a distance query.  
-//
-//----------------------------------------------------------------------------
-//
-//  struct PQP_DistanceResult - declaration contained in PQP_Internal.h
-//  {
-//    // statistics
-//  
-//    int NumBVTests();
-//    int NumTriTests();
-//    PQP_REAL QueryTimeSecs();
-//  
-//    // The following distance and points established the minimum distance
-//    // for the models, within the relative and absolute error bounds 
-//    // specified.
-//
-//    PQP_REAL Distance();
-//    const PQP_REAL *P1();  // pointers to three PQP_REALs
-//    const PQP_REAL *P2();  
-//  };
-
-//----------------------------------------------------------------------------
-//
-//  PQP_Distance() - computes the distance between two PQP_Models
-//
-//
-//  Declare a PQP_DistanceResult struct and pass its pointer to collect
-//  distance information.
-//
-//  "rel_err" is the relative error margin from actual distance.
-//  "abs_err" is the absolute error margin from actual distance.  The
-//  smaller of the two will be satisfied, so set one large to nullify
-//  its effect.
-//
-//  "qsize" is an optional parameter controlling the size of a priority
-//  queue used to direct the search for closest points.  A larger queue
-//  can help the algorithm discover the minimum with fewer steps, but
-//  will increase the cost of each step. It is not beneficial to increase
-//  qsize if the application has frame-to-frame coherence, i.e., the
-//  pair of models take small steps between each call, since another
-//  speedup trick already accelerates this situation with no overhead.
-//
-//  However, a queue size of 100 to 200 has been seen to save time in a
-//  planning application with "non-coherent" placements of models.
-//
-//----------------------------------------------------------------------------
-
-int 
-PQP_Distance(PQP_DistanceResult *result, 
-             PQP_REAL R1[3][3], PQP_REAL T1[3], PQP_Model *o1,
-             PQP_REAL R2[3][3], PQP_REAL T2[3], PQP_Model *o2,
-             PQP_REAL rel_err, PQP_REAL abs_err,
-             int qsize = 2);
-
-//----------------------------------------------------------------------------
-//
-//  PQP_ToleranceResult
-//
-//  This saves and reports results from a tolerance query.  
-//
-//----------------------------------------------------------------------------
-//
-//  struct PQP_ToleranceResult - declaration contained in PQP_Internal.h
-//  {
-//    // statistics
-//  
-//    int NumBVTests(); 
-//    int NumTriTests();
-//    PQP_REAL QueryTimeSecs();
-//  
-//    // If the models are closer than ( <= ) tolerance, these points 
-//    // and distance were what established this.  Otherwise, 
-//    // distance and point values are not meaningful.
-//  
-//    PQP_REAL Distance();
-//    const PQP_REAL *P1();
-//    const PQP_REAL *P2();
-//  
-//    // boolean says whether models are closer than tolerance distance
-//  
-//    int CloserThanTolerance();
-//  };
-
-//----------------------------------------------------------------------------
-//
-// PQP_Tolerance() - checks if distance between PQP_Models is <= tolerance
-//
-//
-// Declare a PQP_ToleranceResult and pass its pointer to collect
-// tolerance information.
-//
-// The algorithm returns whether the true distance is <= or >
-// "tolerance".  This routine does not simply compute true distance
-// and compare to the tolerance - models can often be shown closer or
-// farther than the tolerance more trivially.  In most cases this
-// query should run faster than a distance query would on the same
-// models and configurations.
-// 
-// "qsize" again controls the size of a priority queue used for
-// searching.  Not setting qsize is the current recommendation, since
-// increasing it has only slowed down our applications.
-//
-//----------------------------------------------------------------------------
-
-int
-PQP_Tolerance(PQP_ToleranceResult *res, 
-              PQP_REAL R1[3][3], PQP_REAL T1[3], PQP_Model *o1,
-              PQP_REAL R2[3][3], PQP_REAL T2[3], PQP_Model *o2,
-              PQP_REAL tolerance,
-              int qsize = 2);
-
-#endif 
-#endif
-
-
-
-
-
-
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/include/PQP_Compile.h b/trunk/PQP/build/pqp-tar/PQP_v1.3/include/PQP_Compile.h
deleted file mode 100644
index f76c981370ecd5833f257fa7e14564d5704ce2e6..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/include/PQP_Compile.h
+++ /dev/null
@@ -1,101 +0,0 @@
-/*************************************************************************\
-
-  Copyright 1999 The University of North Carolina at Chapel Hill.
-  All Rights Reserved.
-
-  Permission to use, copy, modify and distribute this software and its
-  documentation for educational, research and non-profit purposes, without
-  fee, and without a written agreement is hereby granted, provided that the
-  above copyright notice and the following three paragraphs appear in all
-  copies.
-
-  IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE
-  LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
-  CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE
-  USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY
-  OF NORTH CAROLINA HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
-  DAMAGES.
-
-  THE UNIVERSITY OF NORTH CAROLINA SPECIFICALLY DISCLAIM ANY
-  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE
-  PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
-  NORTH CAROLINA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
-  UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-
-  The authors may be contacted via:
-
-  US Mail:             S. Gottschalk, E. Larsen
-                       Department of Computer Science
-                       Sitterson Hall, CB #3175
-                       University of N. Carolina
-                       Chapel Hill, NC 27599-3175
-
-  Phone:               (919)962-1749
-
-  EMail:               geom@cs.unc.edu
-
-
-\**************************************************************************/
-
-#ifndef PQP_COMPILE_H
-#define PQP_COMPILE_H
-
-// prevents compiler warnings when PQP_REAL is float
-
-#include <math.h>
-inline float sqrt(float x) { return (float)sqrt((double)x); }
-inline float cos(float x) { return (float)cos((double)x); }
-inline float sin(float x) { return (float)sin((double)x); }
-inline float fabs(float x) { return (float)fabs((double)x); }
-
-//-------------------------------------------------------------------------
-//
-// PQP_REAL
-//
-// This is the floating point type used throughout PQP.  doubles are
-// recommended, both for their precision and because the software has
-// mainly been tested using them.  However, floats appear to be faster 
-// (by 60% on some machines).
-//
-//-------------------------------------------------------------------------
-
-typedef double PQP_REAL;
-
-//-------------------------------------------------------------------------
-//
-// PQP_BV_TYPE
-//
-// PQP introduces a bounding volume (BV) type known as the "rectangle
-// swept sphere" (RSS) - the volume created by sweeping a sphere so
-// that its center visits every point on a rectangle; it looks
-// something like a rounded box.
-//
-// In our experiments, the RSS type is comparable to the oriented 
-// bounding box (OBB) in terms of the number of BV-pair and triangle-pair 
-// tests incurred.  However, with our present implementations, overlap 
-// tests are cheaper for OBBs, while distance tests are cheaper for the 
-// RSS type (we used a public gjk implementation for the OBB distance test).
-//
-// Consequently, PQP is configured to use the RSS type in distance and 
-// tolerance queries (which use BV distance tests) and to use OBBs for
-// collision queries (which use BV overlap tests). Using both requires six
-// more PQP_REALs per BV node than using just one type. 
-//
-// To save space, you can configure PQP to use only one type, however, 
-// with RSS alone, collision queries will typically be slower.  With OBB's 
-// alone, distance and tolerance queries are currently not supported, since 
-// we have not developed our own OBB distance test.  The three options are:
-//
-// #define PQP_BV_TYPE  RSS_TYPE           
-// #define PQP_BV_TYPE  OBB_TYPE           
-// #define PQP_BV_TYPE  RSS_TYPE | OBB_TYPE
-//
-//-------------------------------------------------------------------------
-
-#define RSS_TYPE     1
-#define OBB_TYPE     2
-
-#define PQP_BV_TYPE  RSS_TYPE | OBB_TYPE
-
-#endif
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/include/PQP_Internal.h b/trunk/PQP/build/pqp-tar/PQP_v1.3/include/PQP_Internal.h
deleted file mode 100644
index 90cedcfa2d7f3ec96c3d378774c48f9e9a5a6d29..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/include/PQP_Internal.h
+++ /dev/null
@@ -1,203 +0,0 @@
-/*************************************************************************\
-
-  Copyright 1999 The University of North Carolina at Chapel Hill.
-  All Rights Reserved.
-
-  Permission to use, copy, modify and distribute this software and its
-  documentation for educational, research and non-profit purposes, without
-  fee, and without a written agreement is hereby granted, provided that the
-  above copyright notice and the following three paragraphs appear in all
-  copies.
-
-  IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE
-  LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
-  CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE
-  USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY
-  OF NORTH CAROLINA HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
-  DAMAGES.
-
-  THE UNIVERSITY OF NORTH CAROLINA SPECIFICALLY DISCLAIM ANY
-  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE
-  PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
-  NORTH CAROLINA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
-  UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-
-  The authors may be contacted via:
-
-  US Mail:             S. Gottschalk, E. Larsen
-                       Department of Computer Science
-                       Sitterson Hall, CB #3175
-                       University of N. Carolina
-                       Chapel Hill, NC 27599-3175
-
-  Phone:               (919)962-1749
-
-  EMail:               geom@cs.unc.edu
-
-
-\**************************************************************************/
-
-#include "Tri.h"
-#include "BV.h"
-
-class PQP_Model
-{
-
-public:
-
-  int build_state;
-
-  Tri *tris;  
-  int num_tris;
-  int num_tris_alloced;
-
-  BV *b;
-  int num_bvs;
-  int num_bvs_alloced;
-
-  Tri *last_tri;       // closest tri on this model in last distance test
-  
-  BV *child(int n) { return &b[n]; }
-
-  PQP_Model();
-  ~PQP_Model();
-
-  int BeginModel(int num_tris = 8); // preallocate for num_tris triangles;
-                                    // the parameter is optional, since
-                                    // arrays are reallocated as needed
-  int AddTri(const PQP_REAL *p1, const PQP_REAL *p2, const PQP_REAL *p3, 
-             int id);
-  int EndModel();
-  int MemUsage(int msg);  // returns model mem usage.  
-                          // prints message to stderr if msg == TRUE
-};
-
-struct CollisionPair
-{
-  int id1;
-  int id2;
-};
-
-struct PQP_CollideResult  
-{
-  // stats
-
-  int num_bv_tests;
-  int num_tri_tests;
-  double query_time_secs;
-
-  // xform from model 1 to model 2
-
-  PQP_REAL R[3][3];
-  PQP_REAL T[3];
-
-  int num_pairs_alloced;
-  int num_pairs;
-  CollisionPair *pairs;
-
-  void SizeTo(int n);    
-  void Add(int i1, int i2); 
-
-  PQP_CollideResult();
-  ~PQP_CollideResult();
-
-  // statistics
-
-  int NumBVTests() { return num_bv_tests; }
-  int NumTriTests() { return num_tri_tests; }
-  double QueryTimeSecs() { return query_time_secs; }
-
-  // free the list of contact pairs; ordinarily this list is reused
-  // for each query, and only deleted in the destructor.
-
-  void FreePairsList(); 
-
-  // query results
-
-  int Colliding() { return (num_pairs > 0); }
-  int NumPairs() { return num_pairs; }
-  int Id1(int k) { return pairs[k].id1; }
-  int Id2(int k) { return pairs[k].id2; }
-};
-
-#if PQP_BV_TYPE & RSS_TYPE // distance/tolerance are only available with RSS
-
-struct PQP_DistanceResult 
-{
-  // stats
-
-  int num_bv_tests;
-  int num_tri_tests;
-  double query_time_secs;
-
-  // xform from model 1 to model 2
-
-  PQP_REAL R[3][3];
-  PQP_REAL T[3];
-
-  PQP_REAL rel_err; 
-  PQP_REAL abs_err; 
-
-  PQP_REAL distance;
-  PQP_REAL p1[3]; 
-  PQP_REAL p2[3];
-  int qsize;
-  
-  // statistics
-
-  int NumBVTests() { return num_bv_tests; }
-  int NumTriTests() { return num_tri_tests; }
-  double QueryTimeSecs() { return query_time_secs; }
-
-  // The following distance and points established the minimum distance
-  // for the models, within the relative and absolute error bounds 
-  // specified.
-  // Points are defined: PQP_REAL p1[3], p2[3];
-
-  PQP_REAL Distance() { return distance; }
-  const PQP_REAL *P1() { return p1; }
-  const PQP_REAL *P2() { return p2; }
-};
-
-struct PQP_ToleranceResult 
-{
-  // stats
-
-  int num_bv_tests;
-  int num_tri_tests;
-  double query_time_secs;
-
-  // xform from model 1 to model 2
-
-  PQP_REAL R[3][3];
-  PQP_REAL T[3];
-
-  int    closer_than_tolerance;   
-  PQP_REAL tolerance;      
-
-  PQP_REAL distance;
-  PQP_REAL p1[3]; 
-  PQP_REAL p2[3]; 
-  int qsize;
-
-  // statistics
-
-  int NumBVTests() { return num_bv_tests; }
-  int NumTriTests() { return num_tri_tests; }
-  double QueryTimeSecs() { return query_time_secs; }
-
-  // If the models are closer than ( <= ) tolerance, these points 
-  // and distance were what established this.  Otherwise, 
-  // distance and point values are not meaningful.
-
-  PQP_REAL Distance() { return distance; }
-  const PQP_REAL *P1() { return p1; }
-  const PQP_REAL *P2() { return p2; }
-
-  // boolean says whether models are closer than tolerance distance
-
-  int CloserThanTolerance() { return closer_than_tolerance; }
-};
-
-#endif
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/include/Tri.h b/trunk/PQP/build/pqp-tar/PQP_v1.3/include/Tri.h
deleted file mode 100644
index 496cddd928e5ab4fe8c5b1046f55f2a6079f4c71..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/include/Tri.h
+++ /dev/null
@@ -1,54 +0,0 @@
-/*************************************************************************\
-
-  Copyright 1999 The University of North Carolina at Chapel Hill.
-  All Rights Reserved.
-
-  Permission to use, copy, modify and distribute this software and its
-  documentation for educational, research and non-profit purposes, without
-  fee, and without a written agreement is hereby granted, provided that the
-  above copyright notice and the following three paragraphs appear in all
-  copies.
-
-  IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE
-  LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
-  CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE
-  USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY
-  OF NORTH CAROLINA HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
-  DAMAGES.
-
-  THE UNIVERSITY OF NORTH CAROLINA SPECIFICALLY DISCLAIM ANY
-  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE
-  PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
-  NORTH CAROLINA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
-  UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-
-  The authors may be contacted via:
-
-  US Mail:             S. Gottschalk
-                       Department of Computer Science
-                       Sitterson Hall, CB #3175
-                       University of N. Carolina
-                       Chapel Hill, NC 27599-3175
-
-  Phone:               (919)962-1749
-
-  EMail:               geom@cs.unc.edu
-
-
-\**************************************************************************/
-
-#ifndef PQP_TRI_H
-#define PQP_TRI_H
-
-#include "PQP_Compile.h"
-
-struct Tri
-{
-  PQP_REAL p1[3];
-  PQP_REAL p2[3];
-  PQP_REAL p3[3];
-  int id;
-};
-
-#endif
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/src/BV.cpp b/trunk/PQP/build/pqp-tar/PQP_v1.3/src/BV.cpp
deleted file mode 100644
index adbe2fc139c29710d0567017f29b8ec8aba59f2b..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/src/BV.cpp
+++ /dev/null
@@ -1,323 +0,0 @@
-/*************************************************************************\
-
-  Copyright 1999 The University of North Carolina at Chapel Hill.
-  All Rights Reserved.
-
-  Permission to use, copy, modify and distribute this software and its
-  documentation for educational, research and non-profit purposes, without
-  fee, and without a written agreement is hereby granted, provided that the
-  above copyright notice and the following three paragraphs appear in all
-  copies.
-
-  IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE
-  LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
-  CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE
-  USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY
-  OF NORTH CAROLINA HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
-  DAMAGES.
-
-  THE UNIVERSITY OF NORTH CAROLINA SPECIFICALLY DISCLAIM ANY
-  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE
-  PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
-  NORTH CAROLINA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
-  UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-
-  The authors may be contacted via:
-
-  US Mail:             E. Larsen
-                       Department of Computer Science
-                       Sitterson Hall, CB #3175
-                       University of N. Carolina
-                       Chapel Hill, NC 27599-3175
-
-  Phone:               (919)962-1749
-
-  EMail:               geom@cs.unc.edu
-
-
-\**************************************************************************/
-
-#include <stdlib.h>
-#include <math.h>
-#include "BV.h"
-#include "MatVec.h"
-#include "RectDist.h"
-#include "OBB_Disjoint.h"
-
-BV::BV()
-{
-  first_child = 0;
-}
-
-BV::~BV()
-{
-}
-
-static
-inline 
-PQP_REAL 
-MaxOfTwo(PQP_REAL a, PQP_REAL b) 
-{
-  if (a > b) return a;
-  return b;
-}
-
-void
-BV::FitToTris(PQP_REAL O[3][3], Tri *tris, int num_tris)
-{
-  // store orientation
-
-  McM(R,O);
-
-  // project points of tris to R coordinates
-
-  int num_points = 3*num_tris;
-  PQP_REAL (*P)[3] = new PQP_REAL[num_points][3];
-  int point = 0;
-  int i;
-  for (i = 0; i < num_tris; i++) 
-  {
-    MTxV(P[point],R,tris[i].p1);
-    point++;
-
-    MTxV(P[point],R,tris[i].p2);
-    point++;
-
-    MTxV(P[point],R,tris[i].p3);
-    point++;
-  }
-
-  PQP_REAL minx, maxx, miny, maxy, minz, maxz, c[3];
-
-#if PQP_BV_TYPE & OBB_TYPE
-  minx = maxx = P[0][0];
-  miny = maxy = P[0][1];
-  minz = maxz = P[0][2];
-  for (i = 1; i < num_points; i++)
-  {
-    if (P[i][0] < minx) minx = P[i][0];
-    else if (P[i][0] > maxx) maxx = P[i][0];
-    if (P[i][1] < miny) miny = P[i][1];
-    else if (P[i][1] > maxy) maxy = P[i][1];
-    if (P[i][2] < minz) minz = P[i][2];
-    else if (P[i][2] > maxz) maxz = P[i][2];
-  }
-  c[0] = (PQP_REAL)0.5*(maxx + minx);
-  c[1] = (PQP_REAL)0.5*(maxy + miny);
-  c[2] = (PQP_REAL)0.5*(maxz + minz);
-  MxV(To,R,c);
-
-  d[0] = (PQP_REAL)0.5*(maxx - minx);
-  d[1] = (PQP_REAL)0.5*(maxy - miny);
-  d[2] = (PQP_REAL)0.5*(maxz - minz);
-#endif
-  
-#if PQP_BV_TYPE & RSS_TYPE
-
-  // compute thickness, which determines radius, and z of rectangle corner
-  
-  PQP_REAL cz,radsqr;
-  minz = maxz = P[0][2];
-  for (i = 1; i < num_points; i++) 
-  {
-    if (P[i][2] < minz) minz = P[i][2];
-    else if (P[i][2] > maxz) maxz = P[i][2];
-  }
-  r = (PQP_REAL)0.5*(maxz - minz);
-  radsqr = r*r;
-  cz = (PQP_REAL)0.5*(maxz + minz);
-
-  // compute an initial length of rectangle along x direction
-
-  // find minx and maxx as starting points
-
-  int minindex, maxindex;
-  minindex = maxindex = 0;
-  for (i = 1; i < num_points; i++) 
-  {
-    if (P[i][0] < P[minindex][0]) minindex = i; 
-    else if (P[i][0] > P[maxindex][0]) maxindex = i;
-  }
-  PQP_REAL x, dz;
-  dz = P[minindex][2] - cz;
-  minx = P[minindex][0] + sqrt(MaxOfTwo(radsqr - dz*dz,0));
-  dz = P[maxindex][2] - cz;
-  maxx = P[maxindex][0] - sqrt(MaxOfTwo(radsqr - dz*dz,0));
-
-  // grow minx
-
-  for (i = 0; i < num_points; i++) 
-  {
-    if (P[i][0] < minx) 
-    {
-      dz = P[i][2] - cz;
-      x = P[i][0] + sqrt(MaxOfTwo(radsqr - dz*dz,0));
-      if (x < minx) minx = x;
-    }
-  }
-
-  // grow maxx
-
-  for (i = 0; i < num_points; i++) 
-  {
-    if (P[i][0] > maxx) 
-    {
-      dz = P[i][2] - cz;
-      x = P[i][0] - sqrt(MaxOfTwo(radsqr - dz*dz,0));
-      if (x > maxx) maxx = x;
-    }
-  }
-  
-  // compute an initial length of rectangle along y direction
-
-  // find miny and maxy as starting points
-
-  minindex = maxindex = 0;
-  for (i = 1; i < num_points; i++) 
-  {
-    if (P[i][1] < P[minindex][1]) minindex = i;
-    else if (P[i][1] > P[maxindex][1]) maxindex = i;
-  }
-  PQP_REAL y;
-  dz = P[minindex][2] - cz;
-  miny = P[minindex][1] + sqrt(MaxOfTwo(radsqr - dz*dz,0));
-  dz = P[maxindex][2] - cz;
-  maxy = P[maxindex][1] - sqrt(MaxOfTwo(radsqr - dz*dz,0));
-
-  // grow miny
-
-  for (i = 0; i < num_points; i++) 
-  {
-    if (P[i][1] < miny) 
-    {
-      dz = P[i][2] - cz;
-      y = P[i][1] + sqrt(MaxOfTwo(radsqr - dz*dz,0));
-      if (y < miny) miny = y;
-    }
-  }
-
-  // grow maxy
-
-  for (i = 0; i < num_points; i++) 
-  {
-    if (P[i][1] > maxy) 
-    {
-      dz = P[i][2] - cz;
-      y = P[i][1] - sqrt(MaxOfTwo(radsqr - dz*dz,0));
-      if (y > maxy) maxy = y;
-    }
-  }
-  
-  // corners may have some points which are not covered - grow lengths if
-  // necessary
-  
-  PQP_REAL dx, dy, u, t;
-  PQP_REAL a = sqrt((PQP_REAL)0.5);
-  for (i = 0; i < num_points; i++) 
-  {
-    if (P[i][0] > maxx) 
-    {
-      if (P[i][1] > maxy) 
-      {
-        dx = P[i][0] - maxx;
-        dy = P[i][1] - maxy;
-        u = dx*a + dy*a;
-        t = (a*u - dx)*(a*u - dx) + 
-            (a*u - dy)*(a*u - dy) +
-            (cz - P[i][2])*(cz - P[i][2]);
-        u = u - sqrt(MaxOfTwo(radsqr - t,0));
-        if (u > 0) 
-        {
-          maxx += u*a;
-          maxy += u*a;
-        }
-      }
-      else if (P[i][1] < miny) 
-      {
-        dx = P[i][0] - maxx;
-        dy = P[i][1] - miny;
-        u = dx*a - dy*a;
-        t = (a*u - dx)*(a*u - dx) + 
-            (-a*u - dy)*(-a*u - dy) +
-            (cz - P[i][2])*(cz - P[i][2]);
-        u = u - sqrt(MaxOfTwo(radsqr - t,0));
-        if (u > 0) 
-        {
-          maxx += u*a;
-          miny -= u*a;
-        }
-      }
-    }
-    else if (P[i][0] < minx) 
-    {
-      if (P[i][1] > maxy) 
-      {
-        dx = P[i][0] - minx;
-        dy = P[i][1] - maxy;
-        u = dy*a - dx*a;
-        t = (-a*u - dx)*(-a*u - dx) + 
-            (a*u - dy)*(a*u - dy) +
-            (cz - P[i][2])*(cz - P[i][2]);
-        u = u - sqrt(MaxOfTwo(radsqr - t,0));
-        if (u > 0) 
-        {
-          minx -= u*a;
-          maxy += u*a;
-        }     
-      }
-      else if (P[i][1] < miny) 
-      {
-        dx = P[i][0] - minx;
-        dy = P[i][1] - miny;
-        u = -dx*a - dy*a;
-        t = (-a*u - dx)*(-a*u - dx) + 
-            (-a*u - dy)*(-a*u - dy) +
-            (cz - P[i][2])*(cz - P[i][2]);
-        u = u - sqrt(MaxOfTwo(radsqr - t,0));
-        if (u > 0) 
-        {
-          minx -= u*a; 
-          miny -= u*a;
-        }
-      }
-    }
-  }
-
-  c[0] = minx;
-  c[1] = miny;
-  c[2] = cz;
-  MxV(Tr,R,c);
-
-  l[0] = maxx - minx;  
-  if (l[0] < 0) l[0] = 0;
-  l[1] = maxy - miny;
-  if (l[1] < 0) l[1] = 0;
-#endif
-
-  delete [] P;
-}
-
-int 
-BV_Overlap(PQP_REAL R[3][3], PQP_REAL T[3], BV *b1, BV *b2)
-{
-#if PQP_BV_TYPE & OBB_TYPE
-  return (obb_disjoint(R,T,b1->d,b2->d) == 0);
-#else
-  PQP_REAL dist = RectDist(R,T,b1->l,b2->l);
-  if (dist <= (b1->r + b2->r)) return 1;
-  return 0;
-#endif
-}
-
-#if PQP_BV_TYPE & RSS_TYPE
-PQP_REAL
-BV_Distance(PQP_REAL R[3][3], PQP_REAL T[3], BV *b1, BV *b2)
-{
-  PQP_REAL dist = RectDist(R,T,b1->l,b2->l);
-  dist -= (b1->r + b2->r);
-  return (dist < (PQP_REAL)0.0)? (PQP_REAL)0.0 : dist;
-}
-#endif
-
-
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/src/BV.h b/trunk/PQP/build/pqp-tar/PQP_v1.3/src/BV.h
deleted file mode 100644
index cfe42c73785d1ebad055dfca953870eeb32d5a19..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/src/BV.h
+++ /dev/null
@@ -1,94 +0,0 @@
-/*************************************************************************\
-
-  Copyright 1999 The University of North Carolina at Chapel Hill.
-  All Rights Reserved.
-
-  Permission to use, copy, modify and distribute this software and its
-  documentation for educational, research and non-profit purposes, without
-  fee, and without a written agreement is hereby granted, provided that the
-  above copyright notice and the following three paragraphs appear in all
-  copies.
-
-  IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE
-  LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
-  CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE
-  USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY
-  OF NORTH CAROLINA HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
-  DAMAGES.
-
-  THE UNIVERSITY OF NORTH CAROLINA SPECIFICALLY DISCLAIM ANY
-  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE
-  PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
-  NORTH CAROLINA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
-  UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-
-  The authors may be contacted via:
-
-  US Mail:             E. Larsen
-                       Department of Computer Science
-                       Sitterson Hall, CB #3175
-                       University of N. Carolina
-                       Chapel Hill, NC 27599-3175
-
-  Phone:               (919)962-1749
-
-  EMail:               geom@cs.unc.edu
-
-
-\**************************************************************************/
-
-#ifndef PQP_BV_H
-#define PQP_BV_H
-
-#include <math.h>
-#include "Tri.h"
-#include "PQP_Compile.h"
-
-struct BV
-{
-  PQP_REAL R[3][3];     // orientation of RSS & OBB
-
-#if PQP_BV_TYPE & RSS_TYPE
-  PQP_REAL Tr[3];       // position of rectangle
-  PQP_REAL l[2];        // side lengths of rectangle
-  PQP_REAL r;           // radius of sphere summed with rectangle to form RSS
-#endif
-
-#if PQP_BV_TYPE & OBB_TYPE
-  PQP_REAL To[3];       // position of obb
-  PQP_REAL d[3];        // (half) dimensions of obb
-#endif
-
-  int first_child;      // positive value is index of first_child bv
-                        // negative value is -(index + 1) of triangle
-
-  BV();
-  ~BV();
-  int      Leaf()    { return first_child < 0; }
-  PQP_REAL GetSize(); 
-  void     FitToTris(PQP_REAL O[3][3], Tri *tris, int num_tris);
-};
-
-inline
-PQP_REAL 
-BV::GetSize()
-{
-#if PQP_BV_TYPE & RSS_TYPE
-  return (sqrt(l[0]*l[0] + l[1]*l[1]) + 2*r);
-#else
-  return (d[0]*d[0] + d[1]*d[1] + d[2]*d[2]);
-#endif
-}
-
-int
-BV_Overlap(PQP_REAL R[3][3], PQP_REAL T[3], BV *b1, BV *b2);
-
-#if PQP_BV_TYPE & RSS_TYPE
-PQP_REAL
-BV_Distance(PQP_REAL R[3][3], PQP_REAL T[3], BV *b1, BV *b2);
-#endif
-
-#endif
-
-
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/src/BVTQ.h b/trunk/PQP/build/pqp-tar/PQP_v1.3/src/BVTQ.h
deleted file mode 100644
index 94a6fc788fea5556f633b384e392f8e00cc2717c..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/src/BVTQ.h
+++ /dev/null
@@ -1,214 +0,0 @@
-/*************************************************************************\
-
-  Copyright 1999 The University of North Carolina at Chapel Hill.
-  All Rights Reserved.
-
-  Permission to use, copy, modify and distribute this software and its
-  documentation for educational, research and non-profit purposes, without
-  fee, and without a written agreement is hereby granted, provided that the
-  above copyright notice and the following three paragraphs appear in all
-  copies.
-
-  IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE
-  LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
-  CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE
-  USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY
-  OF NORTH CAROLINA HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
-  DAMAGES.
-
-  THE UNIVERSITY OF NORTH CAROLINA SPECIFICALLY DISCLAIM ANY
-  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE
-  PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
-  NORTH CAROLINA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
-  UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-
-  The authors may be contacted via:
-
-  US Mail:             E. Larsen
-                       Department of Computer Science
-                       Sitterson Hall, CB #3175
-                       University of N. Carolina
-                       Chapel Hill, NC 27599-3175
-
-  Phone:               (919)962-1749
-
-  EMail:               geom@cs.unc.edu
-
-
-\**************************************************************************/
-
-#ifndef PQP_BVTQ_H
-#define PQP_BVTQ_H
-
-#include <stdio.h>
-#include <stdlib.h>
-#include "PQP_Compile.h"
-
-inline
-int 
-LChild(int p)  
-{ 
-  return (2*p + 1); 
-} 
-
-inline 
-int 
-Parent(int c)  
-{ 
-  return ((c - 1)/2); 
-} 
-
-struct BVT 
-{ 
-  PQP_REAL d;       // distance between the bvs
-  int b1, b2;       // bv numbers - b1 is from model 1, b2 from model 2
-  PQP_REAL R[3][3]; // the relative rotation from b1 to b2
-  PQP_REAL T[3];    // the relative translation from b1 to b2
-  int pindex;       // the index of the pointer that points to this -
-                    // needed when filling the hole left by an ExtractMin
-};
-
-class BVTQ 
-{ 
-  int size;       // max number of bv tests
-  int numtests;   // number of bv tests in queue
-  BVT *bvt;       // an array of bv tests - seems faster than 'new' for each
-  BVT **bvtp;     // the queue: an array of pointers to elts of bvt
-
-public:
-  BVTQ(int sz) 
-  {
-    size = sz;              
-    bvt = new BVT[size];    
-    bvtp = new BVT*[size];  
-    numtests = 0;
-  }
-  ~BVTQ() { delete [] bvt; delete [] bvtp; }
-  int Empty() { return (numtests == 0); }
-  int GetNumTests() { return numtests; }
-  int GetSize() { return size; }
-  PQP_REAL MinTest() { return bvtp[0]->d; }
-  BVT ExtractMinTest();
-  void AddTest(BVT &);
-};
-
-inline
-void 
-BVTQ::AddTest(BVT &t)
-{
-  bvtp[numtests] = &bvt[numtests];
-
-  *bvtp[numtests] = t;
-  bvtp[numtests]->pindex = numtests;
-  
-  BVT *temp;
-  int c = numtests;
-  int p;
-  
-  while ((c != 0) && (bvtp[(p = Parent(c))]->d >= bvtp[c]->d)) 
-  {
-    // swap p and c pointers
-
-    temp = bvtp[p];
-    bvtp[p] = bvtp[c];
-    bvtp[c] = temp;	 
-
-    // the bv tests pointed to by p and c need new indices
-
-    bvtp[p]->pindex = p;
-    bvtp[c]->pindex = c;
-
-    c = p;
-  } 
-  numtests++; 
-}
-
-inline
-BVT
-BVTQ::ExtractMinTest()
-{
-  // store min test to be extracted
-
-  BVT min_test = *bvtp[0];
-
-  // copy last bvt to the empty space;
-  // reset the pointer to this moved bvt
-
-  *bvtp[0] = bvt[numtests-1];
-  bvtp[bvt[numtests-1].pindex] = bvtp[0];
-
-  // copy the last pointer to the first
-
-  bvtp[0] = bvtp[numtests-1];
-
-  numtests--; 
-
-  BVT *temp;
-  int p = 0; 
-  int c1,c2,c; 
-
-  while(1) 
-  {     
-    c1 = LChild(p); 
-    c2 = c1+1; 
-  
-    if (c1 < numtests) 
-    { 
-      if (c2 < numtests) 
-      { 	
-        // p has both children, promote the minimum 
-
-        if (bvtp[c1]->d < bvtp[c2]->d) c = c1; else c = c2; 
-
-        if (bvtp[c]->d < bvtp[p]->d) 
-        { 
-          temp = bvtp[p];
-          bvtp[p] = bvtp[c];
-          bvtp[c] = temp; 
-
-          bvtp[p]->pindex = p;
-          bvtp[c]->pindex = c;
-
-          p = c; 
-        } 
-        else 
-        { 
-          break; 
-        } 
-      } 
-      else  
-      { 	
-        // p has only left child 
-
-        if (bvtp[c1]->d < bvtp[p]->d) 
-        { 
-          temp = bvtp[p]; 
-          bvtp[p] = bvtp[c1]; 
-          bvtp[c1] = temp; 
-
-          bvtp[p]->pindex = p;
-          bvtp[c1]->pindex = c1;
-
-          p = c1;	 
-        } 
-        else 
-        { 
-          break; 
-        } 
-      } 
-    } 
-    else 
-    {   
-      // p has no children 
-
-      break; 
-    } 
-  } 
-
-  return min_test;
-}
-
-#endif
-
-
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/src/Build.cpp b/trunk/PQP/build/pqp-tar/PQP_v1.3/src/Build.cpp
deleted file mode 100644
index 4e37b16cc30a71276ed87c8dd8a0ab42733b4f68..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/src/Build.cpp
+++ /dev/null
@@ -1,551 +0,0 @@
-/*************************************************************************\
-
-  Copyright 1999 The University of North Carolina at Chapel Hill.
-  All Rights Reserved.
-
-  Permission to use, copy, modify and distribute this software and its
-  documentation for educational, research and non-profit purposes, without
-  fee, and without a written agreement is hereby granted, provided that the
-  above copyright notice and the following three paragraphs appear in all
-  copies.
-
-  IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE
-  LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
-  CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE
-  USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY
-  OF NORTH CAROLINA HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
-  DAMAGES.
-
-  THE UNIVERSITY OF NORTH CAROLINA SPECIFICALLY DISCLAIM ANY
-  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE
-  PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
-  NORTH CAROLINA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
-  UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-
-  The authors may be contacted via:
-
-  US Mail:             S. Gottschalk, E. Larsen
-                       Department of Computer Science
-                       Sitterson Hall, CB #3175
-                       University of N. Carolina
-                       Chapel Hill, NC 27599-3175
-
-  Phone:               (919)962-1749
-
-  EMail:               geom@cs.unc.edu
-
-
-\**************************************************************************/
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include "PQP.h"
-#include "MatVec.h"
-
-// If this is set, build routines will use covariance matrix 
-// and mean finding code from RAPID 2.
-
-#define RAPID2_FIT 0
-
-#if RAPID2_FIT
-
-struct moment
-{
-  PQP_REAL A;  
-  PQP_REAL m[3];
-  PQP_REAL s[3][3];
-};
-
-struct accum
-{
-  PQP_REAL A;
-  PQP_REAL m[3];
-  PQP_REAL s[3][3];
-};
-
-inline
-void
-clear_accum(accum &a)
-{
-  a.m[0] = a.m[1] = a.m[2] = 0.0;
-  a.s[0][0] = a.s[0][1] = a.s[0][2] = 0.0;
-  a.s[1][0] = a.s[1][1] = a.s[1][2] = 0.0;
-  a.s[2][0] = a.s[2][1] = a.s[2][2] = 0.0;
-  a.A = 0.0;
-}
-
-inline
-void
-accum_moment(accum &a, moment &b)
-{
-  a.m[0] += b.m[0] * b.A;
-  a.m[1] += b.m[1] * b.A;
-  a.m[2] += b.m[2] * b.A;
-  
-  a.s[0][0] += b.s[0][0];
-  a.s[0][1] += b.s[0][1];
-  a.s[0][2] += b.s[0][2];
-  a.s[1][0] += b.s[1][0];
-  a.s[1][1] += b.s[1][1];
-  a.s[1][2] += b.s[1][2];
-  a.s[2][0] += b.s[2][0];
-  a.s[2][1] += b.s[2][1];
-  a.s[2][2] += b.s[2][2];
-
-  a.A += b.A;
-}
-
-inline
-void
-mean_from_moment(PQP_REAL M[3], moment &m)
-{
-  M[0] = m.m[0];
-  M[1] = m.m[1];
-  M[2] = m.m[2];
-}
-
-inline
-void
-mean_from_accum(PQP_REAL M[3], accum &a)
-{
-  M[0] = a.m[0] / a.A;
-  M[1] = a.m[1] / a.A;
-  M[2] = a.m[2] / a.A;
-}
-
-inline
-void
-covariance_from_accum(PQP_REAL C[3][3], accum &a)
-{
-  int i,j;
-  for(i=0; i<3; i++)
-    for(j=0; j<3; j++)
-      C[i][j] = a.s[i][j] - a.m[i]*a.m[j]/a.A;
-}
-
-inline
-void
-compute_moment(moment &M, PQP_REAL p[3], PQP_REAL q[3], PQP_REAL r[3])
-{
-  PQP_REAL u[3], v[3], w[3];
-
-  // compute the area of the triangle
-  VmV(u, q, p);
-  VmV(v, r, p);
-  VcrossV(w, u, v);
-  M.A = 0.5 * Vlength(w);
-
-  if (M.A == 0.0)
-    {
-      // This triangle has zero area.  The second order components
-      // would be eliminated with the usual formula, so, for the 
-      // sake of robustness we use an alternative form.  These are the 
-      // centroid and second-order components of the triangle's vertices.
-
-      // centroid
-      M.m[0] = (p[0] + q[0] + r[0]) /3;
-      M.m[1] = (p[1] + q[1] + r[1]) /3;
-      M.m[2] = (p[2] + q[2] + r[2]) /3;
-
-      // second-order components
-      M.s[0][0] = (p[0]*p[0] + q[0]*q[0] + r[0]*r[0]);
-      M.s[0][1] = (p[0]*p[1] + q[0]*q[1] + r[0]*r[1]);
-      M.s[0][2] = (p[0]*p[2] + q[0]*q[2] + r[0]*r[2]);
-      M.s[1][1] = (p[1]*p[1] + q[1]*q[1] + r[1]*r[1]);
-      M.s[1][2] = (p[1]*p[2] + q[1]*q[2] + r[1]*r[2]);
-      M.s[2][2] = (p[2]*p[2] + q[2]*q[2] + r[2]*r[2]);      
-      M.s[2][1] = M.s[1][2];
-      M.s[1][0] = M.s[0][1];
-      M.s[2][0] = M.s[0][2];
-
-      return;
-    }
-
-  // get the centroid
-  M.m[0] = (p[0] + q[0] + r[0])/3;
-  M.m[1] = (p[1] + q[1] + r[1])/3;
-  M.m[2] = (p[2] + q[2] + r[2])/3;
-
-  // get the second order components -- note the weighting by the area
-  M.s[0][0] = M.A*(9*M.m[0]*M.m[0]+p[0]*p[0]+q[0]*q[0]+r[0]*r[0])/12;
-  M.s[0][1] = M.A*(9*M.m[0]*M.m[1]+p[0]*p[1]+q[0]*q[1]+r[0]*r[1])/12;
-  M.s[1][1] = M.A*(9*M.m[1]*M.m[1]+p[1]*p[1]+q[1]*q[1]+r[1]*r[1])/12;
-  M.s[0][2] = M.A*(9*M.m[0]*M.m[2]+p[0]*p[2]+q[0]*q[2]+r[0]*r[2])/12;
-  M.s[1][2] = M.A*(9*M.m[1]*M.m[2]+p[1]*p[2]+q[1]*q[2]+r[1]*r[2])/12;
-  M.s[2][2] = M.A*(9*M.m[2]*M.m[2]+p[2]*p[2]+q[2]*q[2]+r[2]*r[2])/12;
-  M.s[2][1] = M.s[1][2];
-  M.s[1][0] = M.s[0][1];
-  M.s[2][0] = M.s[0][2];
-}
-
-inline
-void
-compute_moments(moment *M, Tri *tris, int num_tris)
-{
-  int i;
-
-  // first collect all the moments, and obtain the area of the 
-  // smallest nonzero area triangle.
-
-  PQP_REAL Amin = 0.0;
-  int zero = 0;
-  int nonzero = 0;
-  for(i=0; i<num_tris; i++)
-  {
-    compute_moment(M[i], 
-		   tris[i].p1,
-		   tris[i].p2, 
-		   tris[i].p3);  
-    if (M[i].A == 0.0)
-    {
-	    zero = 1;
-    }
-    else
-    {
-	    nonzero = 1;
-	    if (Amin == 0.0) Amin = M[i].A;
-	    else if (M[i].A < Amin) Amin = M[i].A;
-    }
-  }
-
-  if (zero)
-  {
-    fprintf(stderr, "----\n");
-    fprintf(stderr, "Warning!  Some triangles have zero area!\n");
-    fprintf(stderr, "----\n");
-
-    // if there are any zero area triangles, go back and set their area
-  
-    // if ALL the triangles have zero area, then set the area thingy
-    // to some arbitrary value.
-    if (Amin == 0.0) Amin = 1.0;
-
-    for(i=0; i<num_tris; i++)
-    {
-      if (M[i].A == 0.0) M[i].A = Amin;
-    }    
-  }
-}
-
-#else
-
-PQP_REAL max(PQP_REAL a, PQP_REAL b, PQP_REAL c, PQP_REAL d)
-{
-  PQP_REAL t = a;
-  if (b > t) t = b;
-  if (c > t) t = c;
-  if (d > t) t = d;
-  return t;
-}
-
-PQP_REAL min(PQP_REAL a, PQP_REAL b, PQP_REAL c, PQP_REAL d)
-{
-  PQP_REAL t = a;
-  if (b < t) t = b;
-  if (c < t) t = c;
-  if (d < t) t = d;
-  return t;
-}
-
-void
-get_centroid_triverts(PQP_REAL c[3], Tri *tris, int num_tris)
-{
-  int i;
-
-  c[0] = c[1] = c[2] = 0.0;
-
-  // get center of mass
-  for(i=0; i<num_tris; i++)
-  {
-    PQP_REAL *p1 = tris[i].p1;
-    PQP_REAL *p2 = tris[i].p2;
-    PQP_REAL *p3 = tris[i].p3;
-
-    c[0] += p1[0] + p2[0] + p3[0];
-    c[1] += p1[1] + p2[1] + p3[1];
-    c[2] += p1[2] + p2[2] + p3[2];      
-  }
-
-  PQP_REAL n = (PQP_REAL)(3 * num_tris);
-
-  c[0] /= n;
-  c[1] /= n;
-  c[2] /= n;
-}
-
-void
-get_covariance_triverts(PQP_REAL M[3][3], Tri *tris, int num_tris)
-{
-  int i;
-  PQP_REAL S1[3];
-  PQP_REAL S2[3][3];
-
-  S1[0] = S1[1] = S1[2] = 0.0;
-  S2[0][0] = S2[1][0] = S2[2][0] = 0.0;
-  S2[0][1] = S2[1][1] = S2[2][1] = 0.0;
-  S2[0][2] = S2[1][2] = S2[2][2] = 0.0;
-
-  // get center of mass
-  for(i=0; i<num_tris; i++)
-  {
-    PQP_REAL *p1 = tris[i].p1;
-    PQP_REAL *p2 = tris[i].p2;
-    PQP_REAL *p3 = tris[i].p3;
-
-    S1[0] += p1[0] + p2[0] + p3[0];
-    S1[1] += p1[1] + p2[1] + p3[1];
-    S1[2] += p1[2] + p2[2] + p3[2];
-
-    S2[0][0] += (p1[0] * p1[0] +  
-                 p2[0] * p2[0] +  
-                 p3[0] * p3[0]);
-    S2[1][1] += (p1[1] * p1[1] +  
-                 p2[1] * p2[1] +  
-                 p3[1] * p3[1]);
-    S2[2][2] += (p1[2] * p1[2] +  
-                 p2[2] * p2[2] +  
-                 p3[2] * p3[2]);
-    S2[0][1] += (p1[0] * p1[1] +  
-                 p2[0] * p2[1] +  
-                 p3[0] * p3[1]);
-    S2[0][2] += (p1[0] * p1[2] +  
-                 p2[0] * p2[2] +  
-                 p3[0] * p3[2]);
-    S2[1][2] += (p1[1] * p1[2] +  
-                 p2[1] * p2[2] +  
-                 p3[1] * p3[2]);
-  }
-
-  PQP_REAL n = (PQP_REAL)(3 * num_tris);
-
-  // now get covariances
-
-  M[0][0] = S2[0][0] - S1[0]*S1[0] / n;
-  M[1][1] = S2[1][1] - S1[1]*S1[1] / n;
-  M[2][2] = S2[2][2] - S1[2]*S1[2] / n;
-  M[0][1] = S2[0][1] - S1[0]*S1[1] / n;
-  M[1][2] = S2[1][2] - S1[1]*S1[2] / n;
-  M[0][2] = S2[0][2] - S1[0]*S1[2] / n;
-  M[1][0] = M[0][1];
-  M[2][0] = M[0][2];
-  M[2][1] = M[1][2];
-}
-
-#endif
-
-// given a list of triangles, a splitting axis, and a coordinate on
-// that axis, partition the triangles into two groups according to
-// where their centroids fall on the axis (under axial projection).
-// Returns the number of tris in the first half
-
-int 
-split_tris(Tri *tris, int num_tris, PQP_REAL a[3], PQP_REAL c)
-{
-  int i;
-  int c1 = 0;
-  PQP_REAL p[3];
-  PQP_REAL x;
-  Tri temp;
-
-  for(i = 0; i < num_tris; i++)
-  {
-    // loop invariant: up to (but not including) index c1 in group 1,
-    // then up to (but not including) index i in group 2
-    //
-    //  [1] [1] [1] [1] [2] [2] [2] [x] [x] ... [x]
-    //                   c1          i
-    //
-    VcV(p, tris[i].p1);
-    VpV(p, p, tris[i].p2);
-    VpV(p, p, tris[i].p3);      
-    x = VdotV(p, a);
-    x /= 3.0;
-    if (x <= c)
-    {
-	    // group 1
-	    temp = tris[i];
-	    tris[i] = tris[c1];
-	    tris[c1] = temp;
-	    c1++;
-    }
-    else
-    {
-	    // group 2 -- do nothing
-    }
-  }
-
-  // split arbitrarily if one group empty
-
-  if ((c1 == 0) || (c1 == num_tris)) c1 = num_tris/2;
-
-  return c1;
-}
-
-// Fits m->child(bn) to the num_tris triangles starting at first_tri
-// Then, if num_tris is greater than one, partitions the tris into two
-// sets, and recursively builds two children of m->child(bn)
-
-int
-build_recurse(PQP_Model *m, int bn, int first_tri, int num_tris)
-{
-  BV *b = m->child(bn);
-
-  // compute a rotation matrix
-
-  PQP_REAL C[3][3], E[3][3], R[3][3], s[3], axis[3], mean[3], coord;
-
-#if RAPID2_FIT
-  moment *tri_moment = new moment[num_tris];
-  compute_moments(tri_moment, &(m->tris[first_tri]), num_tris);  
-  accum acc;
-  clear_accum(acc);
-  for(int i = 0; i < num_tris; i++) accum_moment(acc, tri_moment[i]);
-  delete [] tri_moment;
-  covariance_from_accum(C,acc);
-#else
-  get_covariance_triverts(C,&m->tris[first_tri],num_tris);
-#endif
-
-  Meigen(E, s, C);
-
-  // place axes of E in order of increasing s
-
-  int min, mid, max;
-  if (s[0] > s[1]) { max = 0; min = 1; }
-  else { min = 0; max = 1; }
-  if (s[2] < s[min]) { mid = min; min = 2; }
-  else if (s[2] > s[max]) { mid = max; max = 2; }
-  else { mid = 2; }
-  McolcMcol(R,0,E,max);
-  McolcMcol(R,1,E,mid);
-  R[0][2] = E[1][max]*E[2][mid] - E[1][mid]*E[2][max];
-  R[1][2] = E[0][mid]*E[2][max] - E[0][max]*E[2][mid];
-  R[2][2] = E[0][max]*E[1][mid] - E[0][mid]*E[1][max];
-
-  // fit the BV
-
-  b->FitToTris(R, &m->tris[first_tri], num_tris);
-
-  if (num_tris == 1)
-  {
-    // BV is a leaf BV - first_child will index a triangle
-
-    b->first_child = -(first_tri + 1);
-  }
-  else if (num_tris > 1)
-  {
-    // BV not a leaf - first_child will index a BV
-
-    b->first_child = m->num_bvs;
-    m->num_bvs+=2;
-
-    // choose splitting axis and splitting coord
-
-    McolcV(axis,R,0);
-
-#if RAPID2_FIT
-    mean_from_accum(mean,acc);
-#else
-    get_centroid_triverts(mean,&m->tris[first_tri],num_tris);
-#endif
-    coord = VdotV(axis, mean);
-
-    // now split
-
-    int num_first_half = split_tris(&m->tris[first_tri], num_tris, 
-                                    axis, coord);
-
-    // recursively build the children
-
-    build_recurse(m, m->child(bn)->first_child, first_tri, num_first_half); 
-    build_recurse(m, m->child(bn)->first_child + 1,
-                  first_tri + num_first_half, num_tris - num_first_half); 
-  }
-  return PQP_OK;
-}
-
-// this descends the hierarchy, converting world-relative 
-// transforms to parent-relative transforms
-
-void 
-make_parent_relative(PQP_Model *m, int bn,
-                     const PQP_REAL parentR[3][3]
-#if PQP_BV_TYPE & RSS_TYPE
-                     ,const PQP_REAL parentTr[3]
-#endif
-#if PQP_BV_TYPE & OBB_TYPE
-                     ,const PQP_REAL parentTo[3]
-#endif
-                    )
-{
-  PQP_REAL Rpc[3][3], Tpc[3];
-
-  if (!m->child(bn)->Leaf())
-  {
-    // make children parent-relative
-
-    make_parent_relative(m,m->child(bn)->first_child, 
-                         m->child(bn)->R
-#if PQP_BV_TYPE & RSS_TYPE
-                         ,m->child(bn)->Tr
-#endif
-#if PQP_BV_TYPE & OBB_TYPE
-                         ,m->child(bn)->To
-#endif
-                         );
-    make_parent_relative(m,m->child(bn)->first_child+1, 
-                         m->child(bn)->R
-#if PQP_BV_TYPE & RSS_TYPE
-                         ,m->child(bn)->Tr
-#endif
-#if PQP_BV_TYPE & OBB_TYPE
-                         ,m->child(bn)->To
-#endif
-                         );
-  }
-
-  // make self parent relative
-
-  MTxM(Rpc,parentR,m->child(bn)->R);
-  McM(m->child(bn)->R,Rpc);
-#if PQP_BV_TYPE & RSS_TYPE
-  VmV(Tpc,m->child(bn)->Tr,parentTr);
-  MTxV(m->child(bn)->Tr,parentR,Tpc);
-#endif
-#if PQP_BV_TYPE & OBB_TYPE
-  VmV(Tpc,m->child(bn)->To,parentTo);
-  MTxV(m->child(bn)->To,parentR,Tpc);
-#endif
-
-}
-
-int
-build_model(PQP_Model *m)
-{
-  // set num_bvs to 1, the first index for a child bv
-
-  m->num_bvs = 1;
-
-  // build recursively
-
-  build_recurse(m, 0, 0, m->num_tris);
-
-  // change BV orientations from world-relative to parent-relative
-
-  PQP_REAL R[3][3],T[3];
-  Midentity(R);
-  Videntity(T);
-
-  make_parent_relative(m,0,R
-#if PQP_BV_TYPE & RSS_TYPE
-                      ,T
-#endif
-#if PQP_BV_TYPE & OBB_TYPE
-                      ,T
-#endif
-                      );
-
-  return PQP_OK;
-}
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/src/Build.h b/trunk/PQP/build/pqp-tar/PQP_v1.3/src/Build.h
deleted file mode 100644
index bab05dd2e07e39f16bdbc50f788566699ebb8e9e..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/src/Build.h
+++ /dev/null
@@ -1,49 +0,0 @@
-/*************************************************************************\
-
-  Copyright 1999 The University of North Carolina at Chapel Hill.
-  All Rights Reserved.
-
-  Permission to use, copy, modify and distribute this software and its
-  documentation for educational, research and non-profit purposes, without
-  fee, and without a written agreement is hereby granted, provided that the
-  above copyright notice and the following three paragraphs appear in all
-  copies.
-
-  IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE
-  LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
-  CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE
-  USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY
-  OF NORTH CAROLINA HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
-  DAMAGES.
-
-  THE UNIVERSITY OF NORTH CAROLINA SPECIFICALLY DISCLAIM ANY
-  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE
-  PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
-  NORTH CAROLINA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
-  UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-
-  The authors may be contacted via:
-
-  US Mail:             S. Gottschalk, E. Larsen
-                       Department of Computer Science
-                       Sitterson Hall, CB #3175
-                       University of N. Carolina
-                       Chapel Hill, NC 27599-3175
-
-  Phone:               (919)962-1749
-
-  EMail:               geom@cs.unc.edu
-
-
-\**************************************************************************/
-
-#ifndef PQP_BUILD_H
-#define PQP_BUILD_H
-
-#include "PQP.h"
-
-int
-build_model(PQP_Model *m);
-
-#endif
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/src/GetTime.h b/trunk/PQP/build/pqp-tar/PQP_v1.3/src/GetTime.h
deleted file mode 100644
index 5529a08fb98d31ccdc04c584c58f3f8cc4e42447..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/src/GetTime.h
+++ /dev/null
@@ -1,71 +0,0 @@
-/*************************************************************************\
-
-  Copyright 1999 The University of North Carolina at Chapel Hill.
-  All Rights Reserved.
-
-  Permission to use, copy, modify and distribute this software and its
-  documentation for educational, research and non-profit purposes, without
-  fee, and without a written agreement is hereby granted, provided that the
-  above copyright notice and the following three paragraphs appear in all
-  copies.
-
-  IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE
-  LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
-  CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE
-  USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY
-  OF NORTH CAROLINA HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
-  DAMAGES.
-
-  THE UNIVERSITY OF NORTH CAROLINA SPECIFICALLY DISCLAIM ANY
-  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE
-  PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
-  NORTH CAROLINA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
-  UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-
-  The authors may be contacted via:
-
-  US Mail:             S. Gottschalk, E. Larsen
-                       Department of Computer Science
-                       Sitterson Hall, CB #3175
-                       University of N. Carolina
-                       Chapel Hill, NC 27599-3175
-
-  Phone:               (919)962-1749
-
-  EMail:               geom@cs.unc.edu
-
-
-\**************************************************************************/
-
-#ifndef PQP_GETTIME_H
-#define PQP_GETTIME_H
-
-#ifdef WIN32
-
-  #include <time.h>
-  #include <sys/timeb.h>
-  inline
-  double 
-  GetTime()
-  {
-    struct _timeb thistime;
-    _ftime(&thistime);    
-    return (thistime.time + thistime.millitm * 1e-3);
-  }
-
-#else
-
-  #include <sys/time.h>
-  inline
-  double 
-  GetTime()
-  {
-    struct timeval thistime;
-    gettimeofday(&thistime, 0);    
-    return (thistime.tv_sec + thistime.tv_usec * 1e-6);
-  }
-
-#endif
-
-#endif
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/src/MatVec.h b/trunk/PQP/build/pqp-tar/PQP_v1.3/src/MatVec.h
deleted file mode 100644
index c0198ad77aa2b60297f4a35cd5550c5d1bf21d75..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/src/MatVec.h
+++ /dev/null
@@ -1,877 +0,0 @@
-/*************************************************************************\
-
-  Copyright 1999 The University of North Carolina at Chapel Hill.
-  All Rights Reserved.
-
-  Permission to use, copy, modify and distribute this software and its
-  documentation for educational, research and non-profit purposes, without
-  fee, and without a written agreement is hereby granted, provided that the
-  above copyright notice and the following three paragraphs appear in all
-  copies.
-
-  IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE
-  LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
-  CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE
-  USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY
-  OF NORTH CAROLINA HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
-  DAMAGES.
-
-  THE UNIVERSITY OF NORTH CAROLINA SPECIFICALLY DISCLAIM ANY
-  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE
-  PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
-  NORTH CAROLINA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
-  UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-
-  The authors may be contacted via:
-
-  US Mail:             S. Gottschalk
-                       Department of Computer Science
-                       Sitterson Hall, CB #3175
-                       University of N. Carolina
-                       Chapel Hill, NC 27599-3175
-
-  Phone:               (919)962-1749
-
-  EMail:               geom@cs.unc.edu
-
-
-\**************************************************************************/
-
-#ifndef PQP_MATVEC_H
-#define PQP_MATVEC_H
-
-#include <math.h>
-#include <stdio.h>
-#include "PQP_Compile.h"
-
-#ifndef M_PI
-const PQP_REAL M_PI = (PQP_REAL)3.14159265359;
-#endif
-
-#ifdef gnu
-#include "zzzz.h"
-
-#ifdef hppa
-#define myfabs(x) \
- ({double __value, __arg = (x); \
-   asm("fabs,dbl %1, %0": "=f" (__value): "f" (__arg)); \
-   __value; \
-});
-#endif
-
-#ifdef mips
-#define myfabs(x) \
- ({double __value, __arg = (x); \
-   asm("abs.d %0, %1": "=f" (__value): "f" (__arg)); \
-   __value; \
-});
-#endif
-
-#else  
-
-#define myfabs(x) ((x < 0) ? -x : x)
-
-#endif
-
-
-inline
-void
-Mprintg(const PQP_REAL M[3][3])
-{
-  printf("%g %g %g\n%g %g %g\n%g %g %g\n",
-	 M[0][0], M[0][1], M[0][2],
-	 M[1][0], M[1][1], M[1][2],
-	 M[2][0], M[2][1], M[2][2]);
-}
-
-
-inline
-void
-Mfprint(FILE *f, const PQP_REAL M[3][3])
-{
-  fprintf(f, "%g %g %g\n%g %g %g\n%g %g %g\n",
-	 M[0][0], M[0][1], M[0][2],
-	 M[1][0], M[1][1], M[1][2],
-	 M[2][0], M[2][1], M[2][2]);
-}
-
-inline
-void
-Mprint(const PQP_REAL M[3][3])
-{
-  printf("%g %g %g\n%g %g %g\n%g %g %g\n",
-	 M[0][0], M[0][1], M[0][2],
-	 M[1][0], M[1][1], M[1][2],
-	 M[2][0], M[2][1], M[2][2]);
-}
-
-inline
-void
-Vprintg(const PQP_REAL V[3])
-{
-  printf("%g %g %g\n", V[0], V[1], V[2]);
-}
-
-inline
-void
-Vfprint(FILE *f, const PQP_REAL V[3])
-{
-  fprintf(f, "%g %g %g\n", V[0], V[1], V[2]);
-}
-
-inline
-void
-Vprint(const PQP_REAL V[3])
-{
-  printf("%g %g %g\n", V[0], V[1], V[2]);
-}
-
-inline
-void
-Midentity(PQP_REAL M[3][3])
-{
-  M[0][0] = M[1][1] = M[2][2] = 1.0;
-  M[0][1] = M[1][2] = M[2][0] = 0.0;
-  M[0][2] = M[1][0] = M[2][1] = 0.0;
-}
-
-inline
-void
-Videntity(PQP_REAL T[3])
-{
-  T[0] = T[1] = T[2] = 0.0;
-}
-
-inline
-void
-McM(PQP_REAL Mr[3][3], const PQP_REAL M[3][3])
-{
-  Mr[0][0] = M[0][0];  Mr[0][1] = M[0][1];  Mr[0][2] = M[0][2];
-  Mr[1][0] = M[1][0];  Mr[1][1] = M[1][1];  Mr[1][2] = M[1][2];
-  Mr[2][0] = M[2][0];  Mr[2][1] = M[2][1];  Mr[2][2] = M[2][2];
-}
-
-inline
-void
-MTcM(PQP_REAL Mr[3][3], const PQP_REAL M[3][3])
-{
-  Mr[0][0] = M[0][0];  Mr[1][0] = M[0][1];  Mr[2][0] = M[0][2];
-  Mr[0][1] = M[1][0];  Mr[1][1] = M[1][1];  Mr[2][1] = M[1][2];
-  Mr[0][2] = M[2][0];  Mr[1][2] = M[2][1];  Mr[2][2] = M[2][2];
-}
-
-inline
-void
-VcV(PQP_REAL Vr[3], const PQP_REAL V[3])
-{
-  Vr[0] = V[0];  Vr[1] = V[1];  Vr[2] = V[2];
-}
-
-inline
-void
-McolcV(PQP_REAL Vr[3], const PQP_REAL M[3][3], int c)
-{
-  Vr[0] = M[0][c];
-  Vr[1] = M[1][c];
-  Vr[2] = M[2][c];
-}
-
-inline
-void
-McolcMcol(PQP_REAL Mr[3][3], int cr, const PQP_REAL M[3][3], int c)
-{
-  Mr[0][cr] = M[0][c];
-  Mr[1][cr] = M[1][c];
-  Mr[2][cr] = M[2][c];
-}
-
-inline
-void
-MxMpV(PQP_REAL Mr[3][3], const PQP_REAL M1[3][3], const PQP_REAL M2[3][3], const PQP_REAL T[3])
-{
-  Mr[0][0] = (M1[0][0] * M2[0][0] +
-	      M1[0][1] * M2[1][0] +
-	      M1[0][2] * M2[2][0] +
-	      T[0]);
-  Mr[1][0] = (M1[1][0] * M2[0][0] +
-	      M1[1][1] * M2[1][0] +
-	      M1[1][2] * M2[2][0] +
-	      T[1]);
-  Mr[2][0] = (M1[2][0] * M2[0][0] +
-	      M1[2][1] * M2[1][0] +
-	      M1[2][2] * M2[2][0] +
-	      T[2]);
-  Mr[0][1] = (M1[0][0] * M2[0][1] +
-	      M1[0][1] * M2[1][1] +
-	      M1[0][2] * M2[2][1] +
-	      T[0]);
-  Mr[1][1] = (M1[1][0] * M2[0][1] +
-	      M1[1][1] * M2[1][1] +
- 	      M1[1][2] * M2[2][1] +
-	      T[1]);
-  Mr[2][1] = (M1[2][0] * M2[0][1] +
-	      M1[2][1] * M2[1][1] +
-	      M1[2][2] * M2[2][1] +
-	      T[2]);
-  Mr[0][2] = (M1[0][0] * M2[0][2] +
-	      M1[0][1] * M2[1][2] +
-	      M1[0][2] * M2[2][2] +
-	      T[0]);
-  Mr[1][2] = (M1[1][0] * M2[0][2] +
-	      M1[1][1] * M2[1][2] +
-	      M1[1][2] * M2[2][2] +
-	      T[1]);
-  Mr[2][2] = (M1[2][0] * M2[0][2] +
-	      M1[2][1] * M2[1][2] +
-	      M1[2][2] * M2[2][2] +
-	      T[2]);
-}
-
-inline
-void
-MxM(PQP_REAL Mr[3][3], const PQP_REAL M1[3][3], const PQP_REAL M2[3][3])
-{
-  Mr[0][0] = (M1[0][0] * M2[0][0] +
-	      M1[0][1] * M2[1][0] +
-	      M1[0][2] * M2[2][0]);
-  Mr[1][0] = (M1[1][0] * M2[0][0] +
-	      M1[1][1] * M2[1][0] +
-	      M1[1][2] * M2[2][0]);
-  Mr[2][0] = (M1[2][0] * M2[0][0] +
-	      M1[2][1] * M2[1][0] +
-	      M1[2][2] * M2[2][0]);
-  Mr[0][1] = (M1[0][0] * M2[0][1] +
-	      M1[0][1] * M2[1][1] +
-	      M1[0][2] * M2[2][1]);
-  Mr[1][1] = (M1[1][0] * M2[0][1] +
-	      M1[1][1] * M2[1][1] +
- 	      M1[1][2] * M2[2][1]);
-  Mr[2][1] = (M1[2][0] * M2[0][1] +
-	      M1[2][1] * M2[1][1] +
-	      M1[2][2] * M2[2][1]);
-  Mr[0][2] = (M1[0][0] * M2[0][2] +
-	      M1[0][1] * M2[1][2] +
-	      M1[0][2] * M2[2][2]);
-  Mr[1][2] = (M1[1][0] * M2[0][2] +
-	      M1[1][1] * M2[1][2] +
-	      M1[1][2] * M2[2][2]);
-  Mr[2][2] = (M1[2][0] * M2[0][2] +
-	      M1[2][1] * M2[1][2] +
-	      M1[2][2] * M2[2][2]);
-}
-
-
-inline
-void
-MxMT(PQP_REAL Mr[3][3], const PQP_REAL M1[3][3], const PQP_REAL M2[3][3])
-{
-  Mr[0][0] = (M1[0][0] * M2[0][0] +
-	      M1[0][1] * M2[0][1] +
-	      M1[0][2] * M2[0][2]);
-  Mr[1][0] = (M1[1][0] * M2[0][0] +
-	      M1[1][1] * M2[0][1] +
-	      M1[1][2] * M2[0][2]);
-  Mr[2][0] = (M1[2][0] * M2[0][0] +
-	      M1[2][1] * M2[0][1] +
-	      M1[2][2] * M2[0][2]);
-  Mr[0][1] = (M1[0][0] * M2[1][0] +
-	      M1[0][1] * M2[1][1] +
-	      M1[0][2] * M2[1][2]);
-  Mr[1][1] = (M1[1][0] * M2[1][0] +
-	      M1[1][1] * M2[1][1] +
- 	      M1[1][2] * M2[1][2]);
-  Mr[2][1] = (M1[2][0] * M2[1][0] +
-	      M1[2][1] * M2[1][1] +
-	      M1[2][2] * M2[1][2]);
-  Mr[0][2] = (M1[0][0] * M2[2][0] +
-	      M1[0][1] * M2[2][1] +
-	      M1[0][2] * M2[2][2]);
-  Mr[1][2] = (M1[1][0] * M2[2][0] +
-	      M1[1][1] * M2[2][1] +
-	      M1[1][2] * M2[2][2]);
-  Mr[2][2] = (M1[2][0] * M2[2][0] +
-	      M1[2][1] * M2[2][1] +
-	      M1[2][2] * M2[2][2]);
-}
-
-inline
-void
-MTxM(PQP_REAL Mr[3][3], const PQP_REAL M1[3][3], const PQP_REAL M2[3][3])
-{
-  Mr[0][0] = (M1[0][0] * M2[0][0] +
-	      M1[1][0] * M2[1][0] +
-	      M1[2][0] * M2[2][0]);
-  Mr[1][0] = (M1[0][1] * M2[0][0] +
-	      M1[1][1] * M2[1][0] +
-	      M1[2][1] * M2[2][0]);
-  Mr[2][0] = (M1[0][2] * M2[0][0] +
-	      M1[1][2] * M2[1][0] +
-	      M1[2][2] * M2[2][0]);
-  Mr[0][1] = (M1[0][0] * M2[0][1] +
-	      M1[1][0] * M2[1][1] +
-	      M1[2][0] * M2[2][1]);
-  Mr[1][1] = (M1[0][1] * M2[0][1] +
-	      M1[1][1] * M2[1][1] +
- 	      M1[2][1] * M2[2][1]);
-  Mr[2][1] = (M1[0][2] * M2[0][1] +
-	      M1[1][2] * M2[1][1] +
-	      M1[2][2] * M2[2][1]);
-  Mr[0][2] = (M1[0][0] * M2[0][2] +
-	      M1[1][0] * M2[1][2] +
-	      M1[2][0] * M2[2][2]);
-  Mr[1][2] = (M1[0][1] * M2[0][2] +
-	      M1[1][1] * M2[1][2] +
-	      M1[2][1] * M2[2][2]);
-  Mr[2][2] = (M1[0][2] * M2[0][2] +
-	      M1[1][2] * M2[1][2] +
-	      M1[2][2] * M2[2][2]);
-}
-
-inline
-void
-MxV(PQP_REAL Vr[3], const PQP_REAL M1[3][3], const PQP_REAL V1[3])
-{
-  Vr[0] = (M1[0][0] * V1[0] +
-	   M1[0][1] * V1[1] + 
-	   M1[0][2] * V1[2]);
-  Vr[1] = (M1[1][0] * V1[0] +
-	   M1[1][1] * V1[1] + 
-	   M1[1][2] * V1[2]);
-  Vr[2] = (M1[2][0] * V1[0] +
-	   M1[2][1] * V1[1] + 
-	   M1[2][2] * V1[2]);
-}
-
-
-inline
-void
-MxVpV(PQP_REAL Vr[3], const PQP_REAL M1[3][3], const PQP_REAL V1[3], const PQP_REAL V2[3])
-{
-  Vr[0] = (M1[0][0] * V1[0] +
-	   M1[0][1] * V1[1] + 
-	   M1[0][2] * V1[2] + 
-	   V2[0]);
-  Vr[1] = (M1[1][0] * V1[0] +
-	   M1[1][1] * V1[1] + 
-	   M1[1][2] * V1[2] + 
-	   V2[1]);
-  Vr[2] = (M1[2][0] * V1[0] +
-	   M1[2][1] * V1[1] + 
-	   M1[2][2] * V1[2] + 
-	   V2[2]);
-}
-
-
-inline
-void
-sMxVpV(PQP_REAL Vr[3], PQP_REAL s1, const PQP_REAL M1[3][3], const PQP_REAL V1[3], const PQP_REAL V2[3])
-{
-  Vr[0] = s1 * (M1[0][0] * V1[0] +
-		M1[0][1] * V1[1] + 
-		M1[0][2] * V1[2]) +
-		V2[0];
-  Vr[1] = s1 * (M1[1][0] * V1[0] +
-		M1[1][1] * V1[1] + 
-		M1[1][2] * V1[2]) + 
-		V2[1];
-  Vr[2] = s1 * (M1[2][0] * V1[0] +
-		M1[2][1] * V1[1] + 
-		M1[2][2] * V1[2]) + 
-		V2[2];
-}
-
-inline
-void
-MTxV(PQP_REAL Vr[3], const PQP_REAL M1[3][3], const PQP_REAL V1[3])
-{
-  Vr[0] = (M1[0][0] * V1[0] +
-	   M1[1][0] * V1[1] + 
-	   M1[2][0] * V1[2]); 
-  Vr[1] = (M1[0][1] * V1[0] +
-	   M1[1][1] * V1[1] + 
-	   M1[2][1] * V1[2]);
-  Vr[2] = (M1[0][2] * V1[0] +
-	   M1[1][2] * V1[1] + 
-	   M1[2][2] * V1[2]); 
-}
-
-inline
-void
-sMTxV(PQP_REAL Vr[3], PQP_REAL s1, const PQP_REAL M1[3][3], const PQP_REAL V1[3])
-{
-  Vr[0] = s1*(M1[0][0] * V1[0] +
-	      M1[1][0] * V1[1] + 
-	      M1[2][0] * V1[2]); 
-  Vr[1] = s1*(M1[0][1] * V1[0] +
-	      M1[1][1] * V1[1] + 
-	      M1[2][1] * V1[2]);
-  Vr[2] = s1*(M1[0][2] * V1[0] +
-	      M1[1][2] * V1[1] + 
-	      M1[2][2] * V1[2]); 
-}
-
-inline
-void
-sMxV(PQP_REAL Vr[3], PQP_REAL s1, const PQP_REAL M1[3][3], const PQP_REAL V1[3])
-{
-  Vr[0] = s1*(M1[0][0] * V1[0] +
-	      M1[0][1] * V1[1] + 
-	      M1[0][2] * V1[2]); 
-  Vr[1] = s1*(M1[1][0] * V1[0] +
-	      M1[1][1] * V1[1] + 
-	      M1[1][2] * V1[2]);
-  Vr[2] = s1*(M1[2][0] * V1[0] +
-	      M1[2][1] * V1[1] + 
-	      M1[2][2] * V1[2]); 
-}
-
-
-inline
-void
-VmV(PQP_REAL Vr[3], const PQP_REAL V1[3], const PQP_REAL V2[3])
-{
-  Vr[0] = V1[0] - V2[0];
-  Vr[1] = V1[1] - V2[1];
-  Vr[2] = V1[2] - V2[2];
-}
-
-inline
-void
-VpV(PQP_REAL Vr[3], const PQP_REAL V1[3], const PQP_REAL V2[3])
-{
-  Vr[0] = V1[0] + V2[0];
-  Vr[1] = V1[1] + V2[1];
-  Vr[2] = V1[2] + V2[2];
-}
-
-inline
-void
-VpVxS(PQP_REAL Vr[3], const PQP_REAL V1[3], const PQP_REAL V2[3], PQP_REAL s)
-{
-  Vr[0] = V1[0] + V2[0] * s;
-  Vr[1] = V1[1] + V2[1] * s;
-  Vr[2] = V1[2] + V2[2] * s;
-}
-
-inline 
-void
-MskewV(PQP_REAL M[3][3], const PQP_REAL v[3])
-{
-  M[0][0] = M[1][1] = M[2][2] = 0.0;
-  M[1][0] = v[2];
-  M[0][1] = -v[2];
-  M[0][2] = v[1];
-  M[2][0] = -v[1];
-  M[1][2] = -v[0];
-  M[2][1] = v[0];
-}
-
-
-inline
-void
-VcrossV(PQP_REAL Vr[3], const PQP_REAL V1[3], const PQP_REAL V2[3])
-{
-  Vr[0] = V1[1]*V2[2] - V1[2]*V2[1];
-  Vr[1] = V1[2]*V2[0] - V1[0]*V2[2];
-  Vr[2] = V1[0]*V2[1] - V1[1]*V2[0];
-}
-
-inline
-PQP_REAL
-Vlength(PQP_REAL V[3])
-{
-  return sqrt(V[0]*V[0] + V[1]*V[1] + V[2]*V[2]);
-}
-
-inline
-void
-Vnormalize(PQP_REAL V[3])
-{
-  PQP_REAL d = (PQP_REAL)1.0 / sqrt(V[0]*V[0] + V[1]*V[1] + V[2]*V[2]);
-  V[0] *= d;
-  V[1] *= d;
-  V[2] *= d;
-}
-
-inline
-PQP_REAL
-VdotV(const PQP_REAL V1[3], const PQP_REAL V2[3])
-{
-  return (V1[0]*V2[0] + V1[1]*V2[1] + V1[2]*V2[2]);
-}
-
-inline
-PQP_REAL
-VdistV2(const PQP_REAL V1[3], const PQP_REAL V2[3])
-{
-  return ( (V1[0]-V2[0]) * (V1[0]-V2[0]) + 
-	   (V1[1]-V2[1]) * (V1[1]-V2[1]) + 
-	   (V1[2]-V2[2]) * (V1[2]-V2[2]));
-}
-
-inline
-void
-VxS(PQP_REAL Vr[3], const PQP_REAL V[3], PQP_REAL s)
-{
-  Vr[0] = V[0] * s;
-  Vr[1] = V[1] * s;
-  Vr[2] = V[2] * s;
-}
-
-inline
-void
-MRotZ(PQP_REAL Mr[3][3], PQP_REAL t)
-{
-  Mr[0][0] = cos(t);
-  Mr[1][0] = sin(t);
-  Mr[0][1] = -Mr[1][0];
-  Mr[1][1] = Mr[0][0];
-  Mr[2][0] = Mr[2][1] = 0.0;
-  Mr[0][2] = Mr[1][2] = 0.0;
-  Mr[2][2] = 1.0;
-}
-
-inline
-void
-MRotX(PQP_REAL Mr[3][3], PQP_REAL t)
-{
-  Mr[1][1] = cos(t);
-  Mr[2][1] = sin(t);
-  Mr[1][2] = -Mr[2][1];
-  Mr[2][2] = Mr[1][1];
-  Mr[0][1] = Mr[0][2] = 0.0;
-  Mr[1][0] = Mr[2][0] = 0.0;
-  Mr[0][0] = 1.0;
-}
-
-inline
-void
-MRotY(PQP_REAL Mr[3][3], PQP_REAL t)
-{
-  Mr[2][2] = cos(t);
-  Mr[0][2] = sin(t);
-  Mr[2][0] = -Mr[0][2];
-  Mr[0][0] = Mr[2][2];
-  Mr[1][2] = Mr[1][0] = 0.0;
-  Mr[2][1] = Mr[0][1] = 0.0;
-  Mr[1][1] = 1.0;
-}
-
-inline
-void
-MVtoOGL(double oglm[16], const PQP_REAL R[3][3], const PQP_REAL T[3])
-{
-  oglm[0] = (double)R[0][0]; 
-  oglm[1] = (double)R[1][0]; 
-  oglm[2] = (double)R[2][0]; 
-  oglm[3] = 0.0;
-  oglm[4] = (double)R[0][1]; 
-  oglm[5] = (double)R[1][1];
-  oglm[6] = (double)R[2][1];
-  oglm[7] = 0.0;
-  oglm[8] = (double)R[0][2];
-  oglm[9] = (double)R[1][2];
-  oglm[10] = (double)R[2][2];
-  oglm[11] = 0.0;
-  oglm[12] = (double)T[0];
-  oglm[13] = (double)T[1];
-  oglm[14] = (double)T[2];
-  oglm[15] = 1.0;
-}
-
-inline 
-void
-OGLtoMV(PQP_REAL R[3][3], PQP_REAL T[3], const double oglm[16])
-{
-  R[0][0] = (PQP_REAL)oglm[0];
-  R[1][0] = (PQP_REAL)oglm[1];
-  R[2][0] = (PQP_REAL)oglm[2];
-
-  R[0][1] = (PQP_REAL)oglm[4];
-  R[1][1] = (PQP_REAL)oglm[5];
-  R[2][1] = (PQP_REAL)oglm[6];
-
-  R[0][2] = (PQP_REAL)oglm[8];
-  R[1][2] = (PQP_REAL)oglm[9];
-  R[2][2] = (PQP_REAL)oglm[10];
-
-  T[0] = (PQP_REAL)oglm[12];
-  T[1] = (PQP_REAL)oglm[13];
-  T[2] = (PQP_REAL)oglm[14];
-}
-
-// taken from quatlib, written by Richard Holloway
-const int QX = 0;
-const int QY = 1;
-const int QZ = 2;
-const int QW = 3;
-
-inline
-void 
-MRotQ(PQP_REAL destMatrix[3][3], PQP_REAL srcQuat[4])
-{
-  PQP_REAL  s;
-  PQP_REAL  xs, ys, zs,
-    	    wx, wy, wz,
-	        xx, xy, xz,
-	        yy, yz, zz;
-
-  /* 
-   * For unit srcQuat, just set s = 2.0; or set xs = srcQuat[QX] + 
-   *   srcQuat[QX], etc. 
-   */
-
-  s = (PQP_REAL)2.0 / (srcQuat[QX]*srcQuat[QX] + srcQuat[QY]*srcQuat[QY] + 
-    	     srcQuat[QZ]*srcQuat[QZ] + srcQuat[QW]*srcQuat[QW]);
-
-  xs = srcQuat[QX] * s;   ys = srcQuat[QY] * s;   zs = srcQuat[QZ] * s;
-  wx = srcQuat[QW] * xs;  wy = srcQuat[QW] * ys;  wz = srcQuat[QW] * zs;
-  xx = srcQuat[QX] * xs;  xy = srcQuat[QX] * ys;  xz = srcQuat[QX] * zs;
-  yy = srcQuat[QY] * ys;  yz = srcQuat[QY] * zs;  zz = srcQuat[QZ] * zs;
-
-  destMatrix[QX][QX] = (PQP_REAL)1.0 - (yy + zz);
-  destMatrix[QX][QY] = xy + wz;
-  destMatrix[QX][QZ] = xz - wy;
-
-  destMatrix[QY][QX] = xy - wz;
-  destMatrix[QY][QY] = (PQP_REAL)1.0 - (xx + zz);
-  destMatrix[QY][QZ] = yz + wx;
-
-  destMatrix[QZ][QX] = xz + wy;
-  destMatrix[QZ][QY] = yz - wx;
-  destMatrix[QZ][QZ] = (PQP_REAL)1.0 - (xx + yy);
-} 
-
-inline
-void
-Mqinverse(PQP_REAL Mr[3][3], PQP_REAL m[3][3])
-{
-  int i,j;
-
-  for(i=0; i<3; i++)
-    for(j=0; j<3; j++)
-    {
-      int i1 = (i+1)%3;
-      int i2 = (i+2)%3;
-      int j1 = (j+1)%3;
-      int j2 = (j+2)%3;
-      Mr[i][j] = (m[j1][i1]*m[j2][i2] - m[j1][i2]*m[j2][i1]);
-    }
-}
-
-// Meigen from Numerical Recipes in C
-
-#if 0
-
-#define rfabs(x) ((x < 0) ? -x : x)
-
-#define ROT(a,i,j,k,l) g=a[i][j]; h=a[k][l]; a[i][j]=g-s*(h+g*tau); a[k][l]=h+s*(g-h*tau);
-
-int
-inline
-Meigen(PQP_REAL vout[3][3], PQP_REAL dout[3], PQP_REAL a[3][3])
-{
-  int i;
-  PQP_REAL tresh,theta,tau,t,sm,s,h,g,c;
-  int nrot;
-  PQP_REAL b[3];
-  PQP_REAL z[3];
-  PQP_REAL v[3][3];
-  PQP_REAL d[3];
-
-  v[0][0] = v[1][1] = v[2][2] = 1.0;
-  v[0][1] = v[1][2] = v[2][0] = 0.0;
-  v[0][2] = v[1][0] = v[2][1] = 0.0;
-  
-  b[0] = a[0][0]; d[0] = a[0][0]; z[0] = 0.0;
-  b[1] = a[1][1]; d[1] = a[1][1]; z[1] = 0.0;
-  b[2] = a[2][2]; d[2] = a[2][2]; z[2] = 0.0;
-
-  nrot = 0;
-
-  
-  for(i=0; i<50; i++)
-    {
-
-      printf("2\n");
-
-      sm=0.0; sm+=fabs(a[0][1]); sm+=fabs(a[0][2]); sm+=fabs(a[1][2]);
-      if (sm == 0.0) { McM(vout,v); VcV(dout,d); return i; }
-      
-      if (i < 3) tresh=0.2*sm/(3*3); else tresh=0.0;
-      
-      {
-	g = 100.0*rfabs(a[0][1]);  
-	if (i>3 && rfabs(d[0])+g==rfabs(d[0]) && rfabs(d[1])+g==rfabs(d[1]))
-	  a[0][1]=0.0;
-	else if (rfabs(a[0][1])>tresh)
-	  {
-	    h = d[1]-d[0];
-	    if (rfabs(h)+g == rfabs(h)) t=(a[0][1])/h;
-	    else
-	      {
-		theta=0.5*h/(a[0][1]);
-		t=1.0/(rfabs(theta)+sqrt(1.0+theta*theta));
-		if (theta < 0.0) t = -t;
-	      }
-	    c=1.0/sqrt(1+t*t); s=t*c; tau=s/(1.0+c); h=t*a[0][1];
-	    z[0] -= h; z[1] += h; d[0] -= h; d[1] += h;
-	    a[0][1]=0.0;
-	    ROT(a,0,2,1,2); ROT(v,0,0,0,1); ROT(v,1,0,1,1); ROT(v,2,0,2,1); 
-	    nrot++;
-	  }
-      }
-
-      {
-	g = 100.0*rfabs(a[0][2]);
-	if (i>3 && rfabs(d[0])+g==rfabs(d[0]) && rfabs(d[2])+g==rfabs(d[2]))
-	  a[0][2]=0.0;
-	else if (rfabs(a[0][2])>tresh)
-	  {
-	    h = d[2]-d[0];
-	    if (rfabs(h)+g == rfabs(h)) t=(a[0][2])/h;
-	    else
-	      {
-		theta=0.5*h/(a[0][2]);
-		t=1.0/(rfabs(theta)+sqrt(1.0+theta*theta));
-		if (theta < 0.0) t = -t;
-	      }
-	    c=1.0/sqrt(1+t*t); s=t*c; tau=s/(1.0+c); h=t*a[0][2];
-	    z[0] -= h; z[2] += h; d[0] -= h; d[2] += h;
-	    a[0][2]=0.0;
-	    ROT(a,0,1,1,2); ROT(v,0,0,0,2); ROT(v,1,0,1,2); ROT(v,2,0,2,2); 
-	    nrot++;
-	  }
-      }
-
-
-      {
-	g = 100.0*rfabs(a[1][2]);
-	if (i>3 && rfabs(d[1])+g==rfabs(d[1]) && rfabs(d[2])+g==rfabs(d[2]))
-	  a[1][2]=0.0;
-	else if (rfabs(a[1][2])>tresh)
-	  {
-	    h = d[2]-d[1];
-	    if (rfabs(h)+g == rfabs(h)) t=(a[1][2])/h;
-	    else
-	      {
-		theta=0.5*h/(a[1][2]);
-		t=1.0/(rfabs(theta)+sqrt(1.0+theta*theta));
-		if (theta < 0.0) t = -t;
-	      }
-	    c=1.0/sqrt(1+t*t); s=t*c; tau=s/(1.0+c); h=t*a[1][2];
-	    z[1] -= h; z[2] += h; d[1] -= h; d[2] += h;
-	    a[1][2]=0.0;
-	    ROT(a,0,1,0,2); ROT(v,0,1,0,2); ROT(v,1,1,1,2); ROT(v,2,1,2,2); 
-	    nrot++;
-	  }
-      }
-
-      b[0] += z[0]; d[0] = b[0]; z[0] = 0.0;
-      b[1] += z[1]; d[1] = b[1]; z[1] = 0.0;
-      b[2] += z[2]; d[2] = b[2]; z[2] = 0.0;
-      
-    }
-
-  fprintf(stderr, "eigen: too many iterations in Jacobi transform (%d).\n", i);
-
-  return i;
-}
-
-#else
-
-
-
-#define ROTATE(a,i,j,k,l) g=a[i][j]; h=a[k][l]; a[i][j]=g-s*(h+g*tau); a[k][l]=h+s*(g-h*tau);
-
-void
-inline
-Meigen(PQP_REAL vout[3][3], PQP_REAL dout[3], PQP_REAL a[3][3])
-{
-  int n = 3;
-  int j,iq,ip,i;
-  PQP_REAL tresh,theta,tau,t,sm,s,h,g,c;
-  int nrot;
-  PQP_REAL b[3];
-  PQP_REAL z[3];
-  PQP_REAL v[3][3];
-  PQP_REAL d[3];
-  
-  Midentity(v);
-  for(ip=0; ip<n; ip++) 
-    {
-      b[ip] = a[ip][ip];
-      d[ip] = a[ip][ip];
-      z[ip] = 0.0;
-    }
-  
-  nrot = 0;
-  
-  for(i=0; i<50; i++)
-    {
-
-      sm=0.0;
-      for(ip=0;ip<n;ip++) for(iq=ip+1;iq<n;iq++) sm+=fabs(a[ip][iq]);
-      if (sm == 0.0)
-	{
-	  McM(vout, v);
-	  VcV(dout, d);
-	  return;
-	}
-      
-      
-      if (i < 3) tresh=(PQP_REAL)0.2*sm/(n*n);
-      else tresh=0.0;
-      
-      for(ip=0; ip<n; ip++) for(iq=ip+1; iq<n; iq++)
-	{
-	  g = (PQP_REAL)100.0*fabs(a[ip][iq]);
-	  if (i>3 && 
-	      fabs(d[ip])+g==fabs(d[ip]) && 
-	      fabs(d[iq])+g==fabs(d[iq]))
-	    a[ip][iq]=0.0;
-	  else if (fabs(a[ip][iq])>tresh)
-	    {
-	      h = d[iq]-d[ip];
-	      if (fabs(h)+g == fabs(h)) t=(a[ip][iq])/h;
-	      else
-		{
-		  theta=(PQP_REAL)0.5*h/(a[ip][iq]);
-		  t=(PQP_REAL)(1.0/(fabs(theta)+sqrt(1.0+theta*theta)));
-		  if (theta < 0.0) t = -t;
-		}
-	      c=(PQP_REAL)1.0/sqrt(1+t*t);
-	      s=t*c;
-	      tau=s/((PQP_REAL)1.0+c);
-	      h=t*a[ip][iq];
-	      z[ip] -= h;
-	      z[iq] += h;
-	      d[ip] -= h;
-	      d[iq] += h;
-	      a[ip][iq]=0.0;
-	      for(j=0;j<ip;j++) { ROTATE(a,j,ip,j,iq); } 
-	      for(j=ip+1;j<iq;j++) { ROTATE(a,ip,j,j,iq); } 
-	      for(j=iq+1;j<n;j++) { ROTATE(a,ip,j,iq,j); } 
-	      for(j=0;j<n;j++) { ROTATE(v,j,ip,j,iq); } 
-	      nrot++;
-	    }
-	}
-      for(ip=0;ip<n;ip++)
-	{
-	  b[ip] += z[ip];
-	  d[ip] = b[ip];
-	  z[ip] = 0.0;
-	}
-    }
-
-  fprintf(stderr, "eigen: too many iterations in Jacobi transform.\n");
-
-  return;
-}
-
-
-#endif
-
-#endif
-// MATVEC_H
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/src/OBB_Disjoint.h b/trunk/PQP/build/pqp-tar/PQP_v1.3/src/OBB_Disjoint.h
deleted file mode 100644
index 4a73203171ac3d21622246358fbceba12179e857..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/src/OBB_Disjoint.h
+++ /dev/null
@@ -1,216 +0,0 @@
-/*************************************************************************\
-
-  Copyright 1999 The University of North Carolina at Chapel Hill.
-  All Rights Reserved.
-
-  Permission to use, copy, modify and distribute this software and its
-  documentation for educational, research and non-profit purposes, without
-  fee, and without a written agreement is hereby granted, provided that the
-  above copyright notice and the following three paragraphs appear in all
-  copies.
-
-  IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE
-  LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
-  CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE
-  USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY
-  OF NORTH CAROLINA HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
-  DAMAGES.
-
-  THE UNIVERSITY OF NORTH CAROLINA SPECIFICALLY DISCLAIM ANY
-  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE
-  PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
-  NORTH CAROLINA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
-  UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-
-  The authors may be contacted via:
-
-  US Mail:             S. Gottschalk
-                       Department of Computer Science
-                       Sitterson Hall, CB #3175
-                       University of N. Carolina
-                       Chapel Hill, NC 27599-3175
-
-  Phone:               (919)962-1749
-
-  EMail:               geom@cs.unc.edu
-
-
-\**************************************************************************/
-
-#ifndef PQP_OBB_DISJOINT
-#define PQP_OBB_DISJOINT
-
-#include "MatVec.h"
-#include "PQP_Compile.h"
-
-// int
-// obb_disjoint(PQP_REAL B[3][3], PQP_REAL T[3], PQP_REAL a[3], PQP_REAL b[3]);
-//
-// This is a test between two boxes, box A and box B.  It is assumed that
-// the coordinate system is aligned and centered on box A.  The 3x3
-// matrix B specifies box B's orientation with respect to box A.
-// Specifically, the columns of B are the basis vectors (axis vectors) of
-// box B.  The center of box B is located at the vector T.  The
-// dimensions of box B are given in the array b.  The orientation and
-// placement of box A, in this coordinate system, are the identity matrix
-// and zero vector, respectively, so they need not be specified.  The
-// dimensions of box A are given in array a.
-
-inline
-int
-obb_disjoint(PQP_REAL B[3][3], PQP_REAL T[3], PQP_REAL a[3], PQP_REAL b[3])
-{
-  register PQP_REAL t, s;
-  register int r;
-  PQP_REAL Bf[3][3];
-  const PQP_REAL reps = (PQP_REAL)1e-6;
-  
-  // Bf = fabs(B)
-  Bf[0][0] = myfabs(B[0][0]);  Bf[0][0] += reps;
-  Bf[0][1] = myfabs(B[0][1]);  Bf[0][1] += reps;
-  Bf[0][2] = myfabs(B[0][2]);  Bf[0][2] += reps;
-  Bf[1][0] = myfabs(B[1][0]);  Bf[1][0] += reps;
-  Bf[1][1] = myfabs(B[1][1]);  Bf[1][1] += reps;
-  Bf[1][2] = myfabs(B[1][2]);  Bf[1][2] += reps;
-  Bf[2][0] = myfabs(B[2][0]);  Bf[2][0] += reps;
-  Bf[2][1] = myfabs(B[2][1]);  Bf[2][1] += reps;
-  Bf[2][2] = myfabs(B[2][2]);  Bf[2][2] += reps;
-
-  // if any of these tests are one-sided, then the polyhedra are disjoint
-  r = 1;
-
-  // A1 x A2 = A0
-  t = myfabs(T[0]);
-  
-  r &= (t <= 
-	  (a[0] + b[0] * Bf[0][0] + b[1] * Bf[0][1] + b[2] * Bf[0][2]));
-  if (!r) return 1;
-  
-  // B1 x B2 = B0
-  s = T[0]*B[0][0] + T[1]*B[1][0] + T[2]*B[2][0];
-  t = myfabs(s);
-
-  r &= ( t <=
-	  (b[0] + a[0] * Bf[0][0] + a[1] * Bf[1][0] + a[2] * Bf[2][0]));
-  if (!r) return 2;
-    
-  // A2 x A0 = A1
-  t = myfabs(T[1]);
-  
-  r &= ( t <= 
-	  (a[1] + b[0] * Bf[1][0] + b[1] * Bf[1][1] + b[2] * Bf[1][2]));
-  if (!r) return 3;
-
-  // A0 x A1 = A2
-  t = myfabs(T[2]);
-
-  r &= ( t <= 
-	  (a[2] + b[0] * Bf[2][0] + b[1] * Bf[2][1] + b[2] * Bf[2][2]));
-  if (!r) return 4;
-
-  // B2 x B0 = B1
-  s = T[0]*B[0][1] + T[1]*B[1][1] + T[2]*B[2][1];
-  t = myfabs(s);
-
-  r &= ( t <=
-	  (b[1] + a[0] * Bf[0][1] + a[1] * Bf[1][1] + a[2] * Bf[2][1]));
-  if (!r) return 5;
-
-  // B0 x B1 = B2
-  s = T[0]*B[0][2] + T[1]*B[1][2] + T[2]*B[2][2];
-  t = myfabs(s);
-
-  r &= ( t <=
-	  (b[2] + a[0] * Bf[0][2] + a[1] * Bf[1][2] + a[2] * Bf[2][2]));
-  if (!r) return 6;
-
-  // A0 x B0
-  s = T[2] * B[1][0] - T[1] * B[2][0];
-  t = myfabs(s);
-  
-  r &= ( t <= 
-	(a[1] * Bf[2][0] + a[2] * Bf[1][0] +
-	 b[1] * Bf[0][2] + b[2] * Bf[0][1]));
-  if (!r) return 7;
-  
-  // A0 x B1
-  s = T[2] * B[1][1] - T[1] * B[2][1];
-  t = myfabs(s);
-
-  r &= ( t <=
-	(a[1] * Bf[2][1] + a[2] * Bf[1][1] +
-	 b[0] * Bf[0][2] + b[2] * Bf[0][0]));
-  if (!r) return 8;
-
-  // A0 x B2
-  s = T[2] * B[1][2] - T[1] * B[2][2];
-  t = myfabs(s);
-
-  r &= ( t <=
-	  (a[1] * Bf[2][2] + a[2] * Bf[1][2] +
-	   b[0] * Bf[0][1] + b[1] * Bf[0][0]));
-  if (!r) return 9;
-
-  // A1 x B0
-  s = T[0] * B[2][0] - T[2] * B[0][0];
-  t = myfabs(s);
-
-  r &= ( t <=
-	  (a[0] * Bf[2][0] + a[2] * Bf[0][0] +
-	   b[1] * Bf[1][2] + b[2] * Bf[1][1]));
-  if (!r) return 10;
-
-  // A1 x B1
-  s = T[0] * B[2][1] - T[2] * B[0][1];
-  t = myfabs(s);
-
-  r &= ( t <=
-	  (a[0] * Bf[2][1] + a[2] * Bf[0][1] +
-	   b[0] * Bf[1][2] + b[2] * Bf[1][0]));
-  if (!r) return 11;
-
-  // A1 x B2
-  s = T[0] * B[2][2] - T[2] * B[0][2];
-  t = myfabs(s);
-
-  r &= (t <=
-	  (a[0] * Bf[2][2] + a[2] * Bf[0][2] +
-	   b[0] * Bf[1][1] + b[1] * Bf[1][0]));
-  if (!r) return 12;
-
-  // A2 x B0
-  s = T[1] * B[0][0] - T[0] * B[1][0];
-  t = myfabs(s);
-
-  r &= (t <=
-	  (a[0] * Bf[1][0] + a[1] * Bf[0][0] +
-	   b[1] * Bf[2][2] + b[2] * Bf[2][1]));
-  if (!r) return 13;
-
-  // A2 x B1
-  s = T[1] * B[0][1] - T[0] * B[1][1];
-  t = myfabs(s);
-
-  r &= ( t <=
-	  (a[0] * Bf[1][1] + a[1] * Bf[0][1] +
-	   b[0] * Bf[2][2] + b[2] * Bf[2][0]));
-  if (!r) return 14;
-
-  // A2 x B2
-  s = T[1] * B[0][2] - T[0] * B[1][2];
-  t = myfabs(s);
-
-  r &= ( t <=
-	  (a[0] * Bf[1][2] + a[1] * Bf[0][2] +
-	   b[0] * Bf[2][1] + b[1] * Bf[2][0]));
-  if (!r) return 15;
-
-  return 0;  // should equal 0
-}
-
-#endif
-
-
-
-
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/src/PQP.cpp b/trunk/PQP/build/pqp-tar/PQP_v1.3/src/PQP.cpp
deleted file mode 100644
index c185750345501c0866070b8bf7766ee4a2285b4b..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/src/PQP.cpp
+++ /dev/null
@@ -1,1376 +0,0 @@
-/*************************************************************************\
-
-  Copyright 1999 The University of North Carolina at Chapel Hill.
-  All Rights Reserved.
-
-  Permission to use, copy, modify and distribute this software and its
-  documentation for educational, research and non-profit purposes, without
-  fee, and without a written agreement is hereby granted, provided that the
-  above copyright notice and the following three paragraphs appear in all
-  copies.
-
-  IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE
-  LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
-  CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE
-  USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY
-  OF NORTH CAROLINA HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
-  DAMAGES.
-
-  THE UNIVERSITY OF NORTH CAROLINA SPECIFICALLY DISCLAIM ANY
-  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE
-  PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
-  NORTH CAROLINA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
-  UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-
-  The authors may be contacted via:
-
-  US Mail:             S. Gottschalk, E. Larsen
-                       Department of Computer Science
-                       Sitterson Hall, CB #3175
-                       University of N. Carolina
-                       Chapel Hill, NC 27599-3175
-
-  Phone:               (919)962-1749
-
-  EMail:               geom@cs.unc.edu
-
-
-\**************************************************************************/
-
-#include <stdio.h>
-#include <string.h>
-#include "PQP.h"
-#include "BVTQ.h"
-#include "Build.h"
-#include "MatVec.h"
-#include "GetTime.h"
-#include "TriDist.h"
-
-enum BUILD_STATE
-{ 
-  PQP_BUILD_STATE_EMPTY,     // empty state, immediately after constructor
-  PQP_BUILD_STATE_BEGUN,     // after BeginModel(), state for adding triangles
-  PQP_BUILD_STATE_PROCESSED  // after tree has been built, ready to use
-};
-
-PQP_Model::PQP_Model()
-{
-  // no bounding volume tree yet
-
-  b = 0;  
-  num_bvs_alloced = 0;
-  num_bvs = 0;
-
-  // no tri list yet
-
-  tris = 0;
-  num_tris = 0;
-  num_tris_alloced = 0;
-
-  last_tri = 0;
-
-  build_state = PQP_BUILD_STATE_EMPTY;
-}
-
-PQP_Model::~PQP_Model()
-{
-  if (b != NULL)
-    delete [] b;
-  if (tris != NULL)
-    delete [] tris;
-}
-
-int
-PQP_Model::BeginModel(int n)
-{
-  // reset to initial state if necessary
-
-  if (build_state != PQP_BUILD_STATE_EMPTY) 
-  {
-    delete [] b;
-    delete [] tris;
-  
-    num_tris = num_bvs = num_tris_alloced = num_bvs_alloced = 0;
-  }
-
-  // prepare model for addition of triangles
-
-  if (n <= 0) n = 8;
-  num_tris_alloced = n;
-  tris = new Tri[n];
-  if (!tris) 
-  {
-    fprintf(stderr, "PQP Error!  Out of memory for tri array on "
-                    "BeginModel() call!\n");
-    return PQP_ERR_MODEL_OUT_OF_MEMORY;  
-  }
-
-  // give a warning if called out of sequence
-
-  if (build_state != PQP_BUILD_STATE_EMPTY)
-  {
-    fprintf(stderr,
-            "PQP Warning! Called BeginModel() on a PQP_Model that \n"
-            "was not empty. This model was cleared and previous\n"
-            "triangle additions were lost.\n");
-    build_state = PQP_BUILD_STATE_BEGUN;
-    return PQP_ERR_BUILD_OUT_OF_SEQUENCE;
-  }
-
-  build_state = PQP_BUILD_STATE_BEGUN;
-  return PQP_OK;
-}
-
-int
-PQP_Model::AddTri(const PQP_REAL *p1, 
-                  const PQP_REAL *p2, 
-                  const PQP_REAL *p3, 
-                  int id)
-{
-  if (build_state == PQP_BUILD_STATE_EMPTY)
-  {
-    BeginModel();
-  }
-  else if (build_state == PQP_BUILD_STATE_PROCESSED)
-  {
-    fprintf(stderr,"PQP Warning! Called AddTri() on PQP_Model \n"
-                   "object that was already ended. AddTri() was\n"
-                   "ignored.  Must do a BeginModel() to clear the\n"
-                   "model for addition of new triangles\n");
-    return PQP_ERR_BUILD_OUT_OF_SEQUENCE;
-  }
-        
-  // allocate for new triangles
-
-  if (num_tris >= num_tris_alloced)
-  {
-    Tri *temp;
-    temp = new Tri[num_tris_alloced*2];
-    if (!temp)
-    {
-      fprintf(stderr, "PQP Error!  Out of memory for tri array on"
-	              " AddTri() call!\n");
-      return PQP_ERR_MODEL_OUT_OF_MEMORY;  
-    }
-    memcpy(temp, tris, sizeof(Tri)*num_tris);
-    delete [] tris;
-    tris = temp;
-    num_tris_alloced = num_tris_alloced*2;
-  }
-  
-  // initialize the new triangle
-
-  tris[num_tris].p1[0] = p1[0];
-  tris[num_tris].p1[1] = p1[1];
-  tris[num_tris].p1[2] = p1[2];
-
-  tris[num_tris].p2[0] = p2[0];
-  tris[num_tris].p2[1] = p2[1];
-  tris[num_tris].p2[2] = p2[2];
-
-  tris[num_tris].p3[0] = p3[0];
-  tris[num_tris].p3[1] = p3[1];
-  tris[num_tris].p3[2] = p3[2];
-
-  tris[num_tris].id = id;
-
-  num_tris += 1;
-
-  return PQP_OK;
-}
-
-int
-PQP_Model::EndModel()
-{
-  if (build_state == PQP_BUILD_STATE_PROCESSED)
-  {
-    fprintf(stderr,"PQP Warning! Called EndModel() on PQP_Model \n"
-                   "object that was already ended. EndModel() was\n"
-                   "ignored.  Must do a BeginModel() to clear the\n"
-                   "model for addition of new triangles\n");
-    return PQP_ERR_BUILD_OUT_OF_SEQUENCE;
-  }
-
-  // report error is no tris
-
-  if (num_tris == 0)
-  {
-    fprintf(stderr,"PQP Error! EndModel() called on model with"
-                   " no triangles\n");
-    return PQP_ERR_BUILD_EMPTY_MODEL;
-  }
-
-  // shrink fit tris array 
-
-  if (num_tris_alloced > num_tris)
-  {
-    Tri *new_tris = new Tri[num_tris];
-    if (!new_tris) 
-    {
-      fprintf(stderr, "PQP Error!  Out of memory for tri array "
-                      "in EndModel() call!\n");
-      return PQP_ERR_MODEL_OUT_OF_MEMORY;  
-    }
-    memcpy(new_tris, tris, sizeof(Tri)*num_tris);
-    delete [] tris;
-    tris = new_tris;
-    num_tris_alloced = num_tris;
-  }
-
-  // create an array of BVs for the model
-
-  b = new BV[2*num_tris - 1];
-  if (!b)
-  {
-    fprintf(stderr,"PQP Error! out of memory for BV array "
-                   "in EndModel()\n");
-    return PQP_ERR_MODEL_OUT_OF_MEMORY;
-  }
-  num_bvs_alloced = 2*num_tris - 1;
-  num_bvs = 0;
-
-  // we should build the model now.
-
-  build_model(this);
-  build_state = PQP_BUILD_STATE_PROCESSED;
-
-  last_tri = tris;
-
-  return PQP_OK;
-}
-
-int
-PQP_Model::MemUsage(int msg)
-{
-  int mem_bv_list = sizeof(BV)*num_bvs;
-  int mem_tri_list = sizeof(Tri)*num_tris;
-
-  int total_mem = mem_bv_list + mem_tri_list + sizeof(PQP_Model);
-
-  if (msg) 
-  {
-    fprintf(stderr,"Total for model %x: %d bytes\n", this, total_mem);
-    fprintf(stderr,"BVs: %d alloced, take %d bytes each\n", 
-            num_bvs, sizeof(BV));
-    fprintf(stderr,"Tris: %d alloced, take %d bytes each\n", 
-            num_tris, sizeof(Tri));
-  }
-  
-  return total_mem;
-}
-
-//  COLLIDE STUFF
-//
-//--------------------------------------------------------------------------
-
-PQP_CollideResult::PQP_CollideResult()
-{
-  pairs = 0;
-  num_pairs = num_pairs_alloced = 0;
-  num_bv_tests = 0;
-  num_tri_tests = 0;
-}
-
-PQP_CollideResult::~PQP_CollideResult()
-{
-  delete [] pairs;
-}
-
-void
-PQP_CollideResult::FreePairsList()
-{
-  num_pairs = num_pairs_alloced = 0;
-  delete [] pairs;
-  pairs = 0;
-}
-
-// may increase OR reduce mem usage
-void
-PQP_CollideResult::SizeTo(int n)
-{
-  CollisionPair *temp;
-
-  if (n < num_pairs) 
-  {
-    fprintf(stderr, "PQP Error: Internal error in "
-                    "'PQP_CollideResult::SizeTo(int n)'\n");
-    fprintf(stderr, "       n = %d, but num_pairs = %d\n", n, num_pairs);
-    return;
-  }
-  
-  temp = new CollisionPair[n];
-  memcpy(temp, pairs, num_pairs*sizeof(CollisionPair));
-  delete [] pairs;
-  pairs = temp;
-  num_pairs_alloced = n;
-  return;
-}
-
-void
-PQP_CollideResult::Add(int a, int b)
-{
-  if (num_pairs >= num_pairs_alloced) 
-  {
-    // allocate more
-
-    SizeTo(num_pairs_alloced*2+8);
-  }
-
-  // now proceed as usual
-
-  pairs[num_pairs].id1 = a;
-  pairs[num_pairs].id2 = b;
-  num_pairs++;
-}
-
-// TRIANGLE OVERLAP TEST
-       
-inline
-PQP_REAL
-max(PQP_REAL a, PQP_REAL b, PQP_REAL c)
-{
-  PQP_REAL t = a;
-  if (b > t) t = b;
-  if (c > t) t = c;
-  return t;
-}
-
-inline
-PQP_REAL
-min(PQP_REAL a, PQP_REAL b, PQP_REAL c)
-{
-  PQP_REAL t = a;
-  if (b < t) t = b;
-  if (c < t) t = c;
-  return t;
-}
-
-int
-project6(PQP_REAL *ax, 
-         PQP_REAL *p1, PQP_REAL *p2, PQP_REAL *p3, 
-         PQP_REAL *q1, PQP_REAL *q2, PQP_REAL *q3)
-{
-  PQP_REAL P1 = VdotV(ax, p1);
-  PQP_REAL P2 = VdotV(ax, p2);
-  PQP_REAL P3 = VdotV(ax, p3);
-  PQP_REAL Q1 = VdotV(ax, q1);
-  PQP_REAL Q2 = VdotV(ax, q2);
-  PQP_REAL Q3 = VdotV(ax, q3);
-  
-  PQP_REAL mx1 = max(P1, P2, P3);
-  PQP_REAL mn1 = min(P1, P2, P3);
-  PQP_REAL mx2 = max(Q1, Q2, Q3);
-  PQP_REAL mn2 = min(Q1, Q2, Q3);
-
-  if (mn1 > mx2) return 0;
-  if (mn2 > mx1) return 0;
-  return 1;
-}
-
-// very robust triangle intersection test
-// uses no divisions
-// works on coplanar triangles
-int 
-TriContact(PQP_REAL *P1, PQP_REAL *P2, PQP_REAL *P3,
-           PQP_REAL *Q1, PQP_REAL *Q2, PQP_REAL *Q3) 
-{
-
-  // One triangle is (p1,p2,p3).  Other is (q1,q2,q3).
-  // Edges are (e1,e2,e3) and (f1,f2,f3).
-  // Normals are n1 and m1
-  // Outwards are (g1,g2,g3) and (h1,h2,h3).
-  //  
-  // We assume that the triangle vertices are in the same coordinate system.
-  //
-  // First thing we do is establish a new c.s. so that p1 is at (0,0,0).
-
-  PQP_REAL p1[3], p2[3], p3[3];
-  PQP_REAL q1[3], q2[3], q3[3];
-  PQP_REAL e1[3], e2[3], e3[3];
-  PQP_REAL f1[3], f2[3], f3[3];
-  PQP_REAL g1[3], g2[3], g3[3];
-  PQP_REAL h1[3], h2[3], h3[3];
-  PQP_REAL n1[3], m1[3];
-
-  PQP_REAL ef11[3], ef12[3], ef13[3];
-  PQP_REAL ef21[3], ef22[3], ef23[3];
-  PQP_REAL ef31[3], ef32[3], ef33[3];
-  
-  p1[0] = P1[0] - P1[0];  p1[1] = P1[1] - P1[1];  p1[2] = P1[2] - P1[2];
-  p2[0] = P2[0] - P1[0];  p2[1] = P2[1] - P1[1];  p2[2] = P2[2] - P1[2];
-  p3[0] = P3[0] - P1[0];  p3[1] = P3[1] - P1[1];  p3[2] = P3[2] - P1[2];
-  
-  q1[0] = Q1[0] - P1[0];  q1[1] = Q1[1] - P1[1];  q1[2] = Q1[2] - P1[2];
-  q2[0] = Q2[0] - P1[0];  q2[1] = Q2[1] - P1[1];  q2[2] = Q2[2] - P1[2];
-  q3[0] = Q3[0] - P1[0];  q3[1] = Q3[1] - P1[1];  q3[2] = Q3[2] - P1[2];
-  
-  e1[0] = p2[0] - p1[0];  e1[1] = p2[1] - p1[1];  e1[2] = p2[2] - p1[2];
-  e2[0] = p3[0] - p2[0];  e2[1] = p3[1] - p2[1];  e2[2] = p3[2] - p2[2];
-  e3[0] = p1[0] - p3[0];  e3[1] = p1[1] - p3[1];  e3[2] = p1[2] - p3[2];
-
-  f1[0] = q2[0] - q1[0];  f1[1] = q2[1] - q1[1];  f1[2] = q2[2] - q1[2];
-  f2[0] = q3[0] - q2[0];  f2[1] = q3[1] - q2[1];  f2[2] = q3[2] - q2[2];
-  f3[0] = q1[0] - q3[0];  f3[1] = q1[1] - q3[1];  f3[2] = q1[2] - q3[2];
-  
-  VcrossV(n1, e1, e2);
-  VcrossV(m1, f1, f2);
-
-  VcrossV(g1, e1, n1);
-  VcrossV(g2, e2, n1);
-  VcrossV(g3, e3, n1);
-  VcrossV(h1, f1, m1);
-  VcrossV(h2, f2, m1);
-  VcrossV(h3, f3, m1);
-
-  VcrossV(ef11, e1, f1);
-  VcrossV(ef12, e1, f2);
-  VcrossV(ef13, e1, f3);
-  VcrossV(ef21, e2, f1);
-  VcrossV(ef22, e2, f2);
-  VcrossV(ef23, e2, f3);
-  VcrossV(ef31, e3, f1);
-  VcrossV(ef32, e3, f2);
-  VcrossV(ef33, e3, f3);
-  
-  // now begin the series of tests
-
-  if (!project6(n1, p1, p2, p3, q1, q2, q3)) return 0;
-  if (!project6(m1, p1, p2, p3, q1, q2, q3)) return 0;
-  
-  if (!project6(ef11, p1, p2, p3, q1, q2, q3)) return 0;
-  if (!project6(ef12, p1, p2, p3, q1, q2, q3)) return 0;
-  if (!project6(ef13, p1, p2, p3, q1, q2, q3)) return 0;
-  if (!project6(ef21, p1, p2, p3, q1, q2, q3)) return 0;
-  if (!project6(ef22, p1, p2, p3, q1, q2, q3)) return 0;
-  if (!project6(ef23, p1, p2, p3, q1, q2, q3)) return 0;
-  if (!project6(ef31, p1, p2, p3, q1, q2, q3)) return 0;
-  if (!project6(ef32, p1, p2, p3, q1, q2, q3)) return 0;
-  if (!project6(ef33, p1, p2, p3, q1, q2, q3)) return 0;
-
-  if (!project6(g1, p1, p2, p3, q1, q2, q3)) return 0;
-  if (!project6(g2, p1, p2, p3, q1, q2, q3)) return 0;
-  if (!project6(g3, p1, p2, p3, q1, q2, q3)) return 0;
-  if (!project6(h1, p1, p2, p3, q1, q2, q3)) return 0;
-  if (!project6(h2, p1, p2, p3, q1, q2, q3)) return 0;
-  if (!project6(h3, p1, p2, p3, q1, q2, q3)) return 0;
-
-  return 1;
-}
-
-inline
-PQP_REAL
-TriDistance(PQP_REAL R[3][3], PQP_REAL T[3], Tri *t1, Tri *t2,
-            PQP_REAL p[3], PQP_REAL q[3])
-{
-  // transform tri 2 into same space as tri 1
-
-  PQP_REAL tri1[3][3], tri2[3][3];
-
-  VcV(tri1[0], t1->p1);
-  VcV(tri1[1], t1->p2);
-  VcV(tri1[2], t1->p3);
-  MxVpV(tri2[0], R, t2->p1, T);
-  MxVpV(tri2[1], R, t2->p2, T);
-  MxVpV(tri2[2], R, t2->p3, T);
-                                
-  return TriDist(p,q,tri1,tri2);
-}
-
-
-void
-CollideRecurse(PQP_CollideResult *res,
-               PQP_REAL R[3][3], PQP_REAL T[3], // b2 relative to b1
-               PQP_Model *o1, int b1, 
-               PQP_Model *o2, int b2, int flag)
-{
-  // first thing, see if we're overlapping
-
-  res->num_bv_tests++;
-
-  if (!BV_Overlap(R, T, o1->child(b1), o2->child(b2))) return;
-
-  // if we are, see if we test triangles next
-
-  int l1 = o1->child(b1)->Leaf();
-  int l2 = o2->child(b2)->Leaf();
-
-  if (l1 && l2) 
-  {
-    res->num_tri_tests++;
-
-#if 1
-    // transform the points in b2 into space of b1, then compare
-
-    Tri *t1 = &o1->tris[-o1->child(b1)->first_child - 1];
-    Tri *t2 = &o2->tris[-o2->child(b2)->first_child - 1];
-    PQP_REAL q1[3], q2[3], q3[3];
-    PQP_REAL *p1 = t1->p1;
-    PQP_REAL *p2 = t1->p2;
-    PQP_REAL *p3 = t1->p3;    
-    MxVpV(q1, res->R, t2->p1, res->T);
-    MxVpV(q2, res->R, t2->p2, res->T);
-    MxVpV(q3, res->R, t2->p3, res->T);
-    if (TriContact(p1, p2, p3, q1, q2, q3)) 
-    {
-      // add this to result
-
-      res->Add(t1->id, t2->id);
-    }
-#else
-    PQP_REAL p[3], q[3];
-
-    Tri *t1 = &o1->tris[-o1->child(b1)->first_child - 1];
-    Tri *t2 = &o2->tris[-o2->child(b2)->first_child - 1];
-
-    if (TriDistance(res->R,res->T,t1,t2,p,q) == 0.0)
-    {
-      // add this to result
-
-      res->Add(t1->id, t2->id);
-    }
-#endif
-
-    return;
-  }
-
-  // we dont, so decide whose children to visit next
-
-  PQP_REAL sz1 = o1->child(b1)->GetSize();
-  PQP_REAL sz2 = o2->child(b2)->GetSize();
-
-  PQP_REAL Rc[3][3],Tc[3],Ttemp[3];
-    
-  if (l2 || (!l1 && (sz1 > sz2)))
-  {
-    int c1 = o1->child(b1)->first_child;
-    int c2 = c1 + 1;
-
-    MTxM(Rc,o1->child(c1)->R,R);
-#if PQP_BV_TYPE & OBB_TYPE
-    VmV(Ttemp,T,o1->child(c1)->To);
-#else
-    VmV(Ttemp,T,o1->child(c1)->Tr);
-#endif
-    MTxV(Tc,o1->child(c1)->R,Ttemp);
-    CollideRecurse(res,Rc,Tc,o1,c1,o2,b2,flag);
-
-    if ((flag == PQP_FIRST_CONTACT) && (res->num_pairs > 0)) return;
-
-    MTxM(Rc,o1->child(c2)->R,R);
-#if PQP_BV_TYPE & OBB_TYPE
-    VmV(Ttemp,T,o1->child(c2)->To);
-#else
-    VmV(Ttemp,T,o1->child(c2)->Tr);
-#endif
-    MTxV(Tc,o1->child(c2)->R,Ttemp);
-    CollideRecurse(res,Rc,Tc,o1,c2,o2,b2,flag);
-  }
-  else 
-  {
-    int c1 = o2->child(b2)->first_child;
-    int c2 = c1 + 1;
-
-    MxM(Rc,R,o2->child(c1)->R);
-#if PQP_BV_TYPE & OBB_TYPE
-    MxVpV(Tc,R,o2->child(c1)->To,T);
-#else
-    MxVpV(Tc,R,o2->child(c1)->Tr,T);
-#endif
-    CollideRecurse(res,Rc,Tc,o1,b1,o2,c1,flag);
-
-    if ((flag == PQP_FIRST_CONTACT) && (res->num_pairs > 0)) return;
-
-    MxM(Rc,R,o2->child(c2)->R);
-#if PQP_BV_TYPE & OBB_TYPE
-    MxVpV(Tc,R,o2->child(c2)->To,T);
-#else
-    MxVpV(Tc,R,o2->child(c2)->Tr,T);
-#endif
-    CollideRecurse(res,Rc,Tc,o1,b1,o2,c2,flag);
-  }
-}
-
-int 
-PQP_Collide(PQP_CollideResult *res,
-            PQP_REAL R1[3][3], PQP_REAL T1[3], PQP_Model *o1,
-            PQP_REAL R2[3][3], PQP_REAL T2[3], PQP_Model *o2,
-            int flag)
-{
-  double t1 = GetTime();
-
-  // make sure that the models are built
-
-  if (o1->build_state != PQP_BUILD_STATE_PROCESSED) 
-    return PQP_ERR_UNPROCESSED_MODEL;
-  if (o2->build_state != PQP_BUILD_STATE_PROCESSED) 
-    return PQP_ERR_UNPROCESSED_MODEL;
-
-  // clear the stats
-
-  res->num_bv_tests = 0;
-  res->num_tri_tests = 0;
-  
-  // don't release the memory, but reset the num_pairs counter
-
-  res->num_pairs = 0;
-  
-  // Okay, compute what transform [R,T] that takes us from cs1 to cs2.
-  // [R,T] = [R1,T1]'[R2,T2] = [R1',-R1'T][R2,T2] = [R1'R2, R1'(T2-T1)]
-  // First compute the rotation part, then translation part
-
-  MTxM(res->R,R1,R2);
-  PQP_REAL Ttemp[3];
-  VmV(Ttemp, T2, T1);  
-  MTxV(res->T, R1, Ttemp);
-  
-  // compute the transform from o1->child(0) to o2->child(0)
-
-  PQP_REAL Rtemp[3][3], R[3][3], T[3];
-
-  MxM(Rtemp,res->R,o2->child(0)->R);
-  MTxM(R,o1->child(0)->R,Rtemp);
-
-#if PQP_BV_TYPE & OBB_TYPE
-  MxVpV(Ttemp,res->R,o2->child(0)->To,res->T);
-  VmV(Ttemp,Ttemp,o1->child(0)->To);
-#else
-  MxVpV(Ttemp,res->R,o2->child(0)->Tr,res->T);
-  VmV(Ttemp,Ttemp,o1->child(0)->Tr);
-#endif
-
-  MTxV(T,o1->child(0)->R,Ttemp);
-
-  // now start with both top level BVs  
-
-  CollideRecurse(res,R,T,o1,0,o2,0,flag);
-  
-  double t2 = GetTime();
-  res->query_time_secs = t2 - t1;
-  
-  return PQP_OK; 
-}
-
-#if PQP_BV_TYPE & RSS_TYPE // distance/tolerance only available with RSS
-                           // unless an OBB distance test is supplied in 
-                           // BV.cpp
-
-// DISTANCE STUFF
-//
-//--------------------------------------------------------------------------
-
-void
-DistanceRecurse(PQP_DistanceResult *res,
-                PQP_REAL R[3][3], PQP_REAL T[3], // b2 relative to b1
-                PQP_Model *o1, int b1,
-                PQP_Model *o2, int b2)
-{
-  PQP_REAL sz1 = o1->child(b1)->GetSize();
-  PQP_REAL sz2 = o2->child(b2)->GetSize();
-  int l1 = o1->child(b1)->Leaf();
-  int l2 = o2->child(b2)->Leaf();
-
-  if (l1 && l2)
-  {
-    // both leaves.  Test the triangles beneath them.
-
-    res->num_tri_tests++;
-
-    PQP_REAL p[3], q[3];
-
-    Tri *t1 = &o1->tris[-o1->child(b1)->first_child - 1];
-    Tri *t2 = &o2->tris[-o2->child(b2)->first_child - 1];
-
-    PQP_REAL d = TriDistance(res->R,res->T,t1,t2,p,q);
-  
-    if (d < res->distance) 
-    {
-      res->distance = d;
-
-      VcV(res->p1, p);         // p already in c.s. 1
-      VcV(res->p2, q);         // q must be transformed 
-                               // into c.s. 2 later
-      o1->last_tri = t1;
-      o2->last_tri = t2;
-    }
-
-    return;
-  }
-
-  // First, perform distance tests on the children. Then traverse 
-  // them recursively, but test the closer pair first, the further 
-  // pair second.
-
-  int a1,a2,c1,c2;  // new bv tests 'a' and 'c'
-  PQP_REAL R1[3][3], T1[3], R2[3][3], T2[3], Ttemp[3];
-
-  if (l2 || (!l1 && (sz1 > sz2)))
-  {
-    // visit the children of b1
-
-    a1 = o1->child(b1)->first_child;
-    a2 = b2;
-    c1 = o1->child(b1)->first_child+1;
-    c2 = b2;
-    
-    MTxM(R1,o1->child(a1)->R,R);
-#if PQP_BV_TYPE & RSS_TYPE
-    VmV(Ttemp,T,o1->child(a1)->Tr);
-#else
-    VmV(Ttemp,T,o1->child(a1)->To);
-#endif
-    MTxV(T1,o1->child(a1)->R,Ttemp);
-
-    MTxM(R2,o1->child(c1)->R,R);
-#if PQP_BV_TYPE & RSS_TYPE
-    VmV(Ttemp,T,o1->child(c1)->Tr);
-#else
-    VmV(Ttemp,T,o1->child(c1)->To);
-#endif
-    MTxV(T2,o1->child(c1)->R,Ttemp);
-  }
-  else 
-  {
-    // visit the children of b2
-
-    a1 = b1;
-    a2 = o2->child(b2)->first_child;
-    c1 = b1;
-    c2 = o2->child(b2)->first_child+1;
-
-    MxM(R1,R,o2->child(a2)->R);
-#if PQP_BV_TYPE & RSS_TYPE
-    MxVpV(T1,R,o2->child(a2)->Tr,T);
-#else
-    MxVpV(T1,R,o2->child(a2)->To,T);
-#endif
-
-    MxM(R2,R,o2->child(c2)->R);
-#if PQP_BV_TYPE & RSS_TYPE
-    MxVpV(T2,R,o2->child(c2)->Tr,T);
-#else
-    MxVpV(T2,R,o2->child(c2)->To,T);
-#endif
-  }
-
-  res->num_bv_tests += 2;
-
-  PQP_REAL d1 = BV_Distance(R1, T1, o1->child(a1), o2->child(a2));
-  PQP_REAL d2 = BV_Distance(R2, T2, o1->child(c1), o2->child(c2));
-
-  if (d2 < d1)
-  {
-    if ((d2 < (res->distance - res->abs_err)) || 
-        (d2*(1 + res->rel_err) < res->distance)) 
-    {      
-      DistanceRecurse(res, R2, T2, o1, c1, o2, c2);      
-    }
-
-    if ((d1 < (res->distance - res->abs_err)) || 
-        (d1*(1 + res->rel_err) < res->distance)) 
-    {      
-      DistanceRecurse(res, R1, T1, o1, a1, o2, a2);
-    }
-  }
-  else 
-  {
-    if ((d1 < (res->distance - res->abs_err)) || 
-        (d1*(1 + res->rel_err) < res->distance)) 
-    {      
-      DistanceRecurse(res, R1, T1, o1, a1, o2, a2);
-    }
-
-    if ((d2 < (res->distance - res->abs_err)) || 
-        (d2*(1 + res->rel_err) < res->distance)) 
-    {      
-      DistanceRecurse(res, R2, T2, o1, c1, o2, c2);      
-    }
-  }
-}
-
-void
-DistanceQueueRecurse(PQP_DistanceResult *res, 
-                     PQP_REAL R[3][3], PQP_REAL T[3],
-                     PQP_Model *o1, int b1,
-                     PQP_Model *o2, int b2)
-{
-  BVTQ bvtq(res->qsize);
-
-  BVT min_test;
-  min_test.b1 = b1;
-  min_test.b2 = b2;
-  McM(min_test.R,R);
-  VcV(min_test.T,T);
-
-  while(1) 
-  {  
-    int l1 = o1->child(min_test.b1)->Leaf();
-    int l2 = o2->child(min_test.b2)->Leaf();
-    
-    if (l1 && l2) 
-    {  
-      // both leaves.  Test the triangles beneath them.
-
-      res->num_tri_tests++;
-
-      PQP_REAL p[3], q[3];
-
-      Tri *t1 = &o1->tris[-o1->child(min_test.b1)->first_child - 1];
-      Tri *t2 = &o2->tris[-o2->child(min_test.b2)->first_child - 1];
-
-      PQP_REAL d = TriDistance(res->R,res->T,t1,t2,p,q);
-  
-      if (d < res->distance)
-      {
-        res->distance = d;
-
-        VcV(res->p1, p);         // p already in c.s. 1
-        VcV(res->p2, q);         // q must be transformed 
-                                 // into c.s. 2 later
-        o1->last_tri = t1;
-        o2->last_tri = t2;
-      }
-    }		 
-    else if (bvtq.GetNumTests() == bvtq.GetSize() - 1) 
-    {  
-      // queue can't get two more tests, recur
-      
-      DistanceQueueRecurse(res,min_test.R,min_test.T,
-                           o1,min_test.b1,o2,min_test.b2);
-    }
-    else 
-    {  
-      // decide how to descend to children
-      
-      PQP_REAL sz1 = o1->child(min_test.b1)->GetSize();
-      PQP_REAL sz2 = o2->child(min_test.b2)->GetSize();
-
-      res->num_bv_tests += 2;
- 
-      BVT bvt1,bvt2;
-      PQP_REAL Ttemp[3];
-
-      if (l2 || (!l1 && (sz1 > sz2)))	
-      {  
-        // put new tests on queue consisting of min_test.b2 
-        // with children of min_test.b1 
-      
-        int c1 = o1->child(min_test.b1)->first_child;
-        int c2 = c1 + 1;
-
-        // init bv test 1
-
-        bvt1.b1 = c1;
-        bvt1.b2 = min_test.b2;
-        MTxM(bvt1.R,o1->child(c1)->R,min_test.R);
-#if PQP_BV_TYPE & RSS_TYPE
-        VmV(Ttemp,min_test.T,o1->child(c1)->Tr);
-#else
-        VmV(Ttemp,min_test.T,o1->child(c1)->To);
-#endif
-        MTxV(bvt1.T,o1->child(c1)->R,Ttemp);
-        bvt1.d = BV_Distance(bvt1.R,bvt1.T,
-                            o1->child(bvt1.b1),o2->child(bvt1.b2));
-
-        // init bv test 2
-
-        bvt2.b1 = c2;
-        bvt2.b2 = min_test.b2;
-        MTxM(bvt2.R,o1->child(c2)->R,min_test.R);
-#if PQP_BV_TYPE & RSS_TYPE
-        VmV(Ttemp,min_test.T,o1->child(c2)->Tr);
-#else
-        VmV(Ttemp,min_test.T,o1->child(c2)->To);
-#endif
-        MTxV(bvt2.T,o1->child(c2)->R,Ttemp);
-        bvt2.d = BV_Distance(bvt2.R,bvt2.T,
-                            o1->child(bvt2.b1),o2->child(bvt2.b2));
-      }
-      else 
-      {
-        // put new tests on queue consisting of min_test.b1 
-        // with children of min_test.b2
-      
-        int c1 = o2->child(min_test.b2)->first_child;
-        int c2 = c1 + 1;
-
-        // init bv test 1
-
-        bvt1.b1 = min_test.b1;
-        bvt1.b2 = c1;
-        MxM(bvt1.R,min_test.R,o2->child(c1)->R);
-#if PQP_BV_TYPE & RSS_TYPE
-        MxVpV(bvt1.T,min_test.R,o2->child(c1)->Tr,min_test.T);
-#else
-        MxVpV(bvt1.T,min_test.R,o2->child(c1)->To,min_test.T);
-#endif
-        bvt1.d = BV_Distance(bvt1.R,bvt1.T,
-                            o1->child(bvt1.b1),o2->child(bvt1.b2));
-
-        // init bv test 2
-
-        bvt2.b1 = min_test.b1;
-        bvt2.b2 = c2;
-        MxM(bvt2.R,min_test.R,o2->child(c2)->R);
-#if PQP_BV_TYPE & RSS_TYPE
-        MxVpV(bvt2.T,min_test.R,o2->child(c2)->Tr,min_test.T);
-#else
-        MxVpV(bvt2.T,min_test.R,o2->child(c2)->To,min_test.T);
-#endif
-        bvt2.d = BV_Distance(bvt2.R,bvt2.T,
-                            o1->child(bvt2.b1),o2->child(bvt2.b2));
-      }
-
-      bvtq.AddTest(bvt1);	
-      bvtq.AddTest(bvt2);
-    }
-
-    if (bvtq.Empty())
-    {
-      break;
-    }
-    else
-    {
-      min_test = bvtq.ExtractMinTest();
-
-      if ((min_test.d + res->abs_err >= res->distance) && 
-         ((min_test.d * (1 + res->rel_err)) >= res->distance)) 
-      {
-        break;
-      }
-    }
-  }  
-}	
-
-int 
-PQP_Distance(PQP_DistanceResult *res,
-             PQP_REAL R1[3][3], PQP_REAL T1[3], PQP_Model *o1,
-             PQP_REAL R2[3][3], PQP_REAL T2[3], PQP_Model *o2,
-             PQP_REAL rel_err, PQP_REAL abs_err,
-             int qsize)
-{
-  
-  double time1 = GetTime();
-  
-  // make sure that the models are built
-
-  if (o1->build_state != PQP_BUILD_STATE_PROCESSED) 
-    return PQP_ERR_UNPROCESSED_MODEL;
-  if (o2->build_state != PQP_BUILD_STATE_PROCESSED) 
-    return PQP_ERR_UNPROCESSED_MODEL;
-
-  // Okay, compute what transform [R,T] that takes us from cs2 to cs1.
-  // [R,T] = [R1,T1]'[R2,T2] = [R1',-R1'T][R2,T2] = [R1'R2, R1'(T2-T1)]
-  // First compute the rotation part, then translation part
-
-  MTxM(res->R,R1,R2);
-  PQP_REAL Ttemp[3];
-  VmV(Ttemp, T2, T1);  
-  MTxV(res->T, R1, Ttemp);
-  
-  // establish initial upper bound using last triangles which 
-  // provided the minimum distance
-
-  PQP_REAL p[3],q[3];
-  res->distance = TriDistance(res->R,res->T,o1->last_tri,o2->last_tri,p,q);
-  VcV(res->p1,p);
-  VcV(res->p2,q);
-
-  // initialize error bounds
-
-  res->abs_err = abs_err;
-  res->rel_err = rel_err;
-  
-  // clear the stats
-
-  res->num_bv_tests = 0;
-  res->num_tri_tests = 0;
-  
-  // compute the transform from o1->child(0) to o2->child(0)
-
-  PQP_REAL Rtemp[3][3], R[3][3], T[3];
-
-  MxM(Rtemp,res->R,o2->child(0)->R);
-  MTxM(R,o1->child(0)->R,Rtemp);
-  
-#if PQP_BV_TYPE & RSS_TYPE
-  MxVpV(Ttemp,res->R,o2->child(0)->Tr,res->T);
-  VmV(Ttemp,Ttemp,o1->child(0)->Tr);
-#else
-  MxVpV(Ttemp,res->R,o2->child(0)->To,res->T);
-  VmV(Ttemp,Ttemp,o1->child(0)->To);
-#endif
-  MTxV(T,o1->child(0)->R,Ttemp);
-
-  // choose routine according to queue size
-  
-  if (qsize <= 2)
-  {
-    DistanceRecurse(res,R,T,o1,0,o2,0);    
-  }
-  else 
-  { 
-    res->qsize = qsize;
-
-    DistanceQueueRecurse(res,R,T,o1,0,o2,0);
-  }
-
-  // res->p2 is in cs 1 ; transform it to cs 2
-
-  PQP_REAL u[3];
-  VmV(u, res->p2, res->T);
-  MTxV(res->p2, res->R, u);
-
-  double time2 = GetTime();
-  res->query_time_secs = time2 - time1;  
-
-  return PQP_OK;
-}
-
-// Tolerance Stuff
-//
-//---------------------------------------------------------------------------
-void 
-ToleranceRecurse(PQP_ToleranceResult *res, 
-                 PQP_REAL R[3][3], PQP_REAL T[3],
-                 PQP_Model *o1, int b1, PQP_Model *o2, int b2)
-{
-  PQP_REAL sz1 = o1->child(b1)->GetSize();
-  PQP_REAL sz2 = o2->child(b2)->GetSize();
-  int l1 = o1->child(b1)->Leaf();
-  int l2 = o2->child(b2)->Leaf();
-
-  if (l1 && l2) 
-  {
-    // both leaves - find if tri pair within tolerance
-    
-    res->num_tri_tests++;
-
-    PQP_REAL p[3], q[3];
-
-    Tri *t1 = &o1->tris[-o1->child(b1)->first_child - 1];
-    Tri *t2 = &o2->tris[-o2->child(b2)->first_child - 1];
-
-    PQP_REAL d = TriDistance(res->R,res->T,t1,t2,p,q);
-    
-    if (d <= res->tolerance)  
-    {  
-      // triangle pair distance less than tolerance
-
-      res->closer_than_tolerance = 1;
-      res->distance = d;
-      VcV(res->p1, p);         // p already in c.s. 1
-      VcV(res->p2, q);         // q must be transformed 
-                               // into c.s. 2 later
-    }
-
-    return;
-  }
-
-  int a1,a2,c1,c2;  // new bv tests 'a' and 'c'
-  PQP_REAL R1[3][3], T1[3], R2[3][3], T2[3], Ttemp[3];
-
-  if (l2 || (!l1 && (sz1 > sz2)))
-  {
-    // visit the children of b1
-
-    a1 = o1->child(b1)->first_child;
-    a2 = b2;
-    c1 = o1->child(b1)->first_child+1;
-    c2 = b2;
-    
-    MTxM(R1,o1->child(a1)->R,R);
-#if PQP_BV_TYPE & RSS_TYPE
-    VmV(Ttemp,T,o1->child(a1)->Tr);
-#else
-    VmV(Ttemp,T,o1->child(a1)->To);
-#endif
-    MTxV(T1,o1->child(a1)->R,Ttemp);
-
-    MTxM(R2,o1->child(c1)->R,R);
-#if PQP_BV_TYPE & RSS_TYPE
-    VmV(Ttemp,T,o1->child(c1)->Tr);
-#else
-    VmV(Ttemp,T,o1->child(c1)->To);
-#endif
-    MTxV(T2,o1->child(c1)->R,Ttemp);
-  }
-  else 
-  {
-    // visit the children of b2
-
-    a1 = b1;
-    a2 = o2->child(b2)->first_child;
-    c1 = b1;
-    c2 = o2->child(b2)->first_child+1;
-
-    MxM(R1,R,o2->child(a2)->R);
-#if PQP_BV_TYPE & RSS_TYPE
-    MxVpV(T1,R,o2->child(a2)->Tr,T);
-#else
-    MxVpV(T1,R,o2->child(a2)->To,T);
-#endif
-    MxM(R2,R,o2->child(c2)->R);
-#if PQP_BV_TYPE & RSS_TYPE
-    MxVpV(T2,R,o2->child(c2)->Tr,T);
-#else
-    MxVpV(T2,R,o2->child(c2)->To,T);
-#endif
-  }
-
-  res->num_bv_tests += 2;
-
-  PQP_REAL d1 = BV_Distance(R1, T1, o1->child(a1), o2->child(a2));
-  PQP_REAL d2 = BV_Distance(R2, T2, o1->child(c1), o2->child(c2));
-
-  if (d2 < d1) 
-  {
-    if (d2 <= res->tolerance) ToleranceRecurse(res, R2, T2, o1, c1, o2, c2);
-    if (res->closer_than_tolerance) return;
-    if (d1 <= res->tolerance) ToleranceRecurse(res, R1, T1, o1, a1, o2, a2);
-  }
-  else 
-  {
-    if (d1 <= res->tolerance) ToleranceRecurse(res, R1, T1, o1, a1, o2, a2);
-    if (res->closer_than_tolerance) return;
-    if (d2 <= res->tolerance) ToleranceRecurse(res, R2, T2, o1, c1, o2, c2);
-  }
-}
-
-void
-ToleranceQueueRecurse(PQP_ToleranceResult *res,
-                      PQP_REAL R[3][3], PQP_REAL T[3],
-                      PQP_Model *o1, int b1,
-                      PQP_Model *o2, int b2)
-{
-  BVTQ bvtq(res->qsize);
-  BVT min_test;
-  min_test.b1 = b1;
-  min_test.b2 = b2;
-  McM(min_test.R,R);
-  VcV(min_test.T,T);
-
-  while(1)
-  {  
-    int l1 = o1->child(min_test.b1)->Leaf();
-    int l2 = o2->child(min_test.b2)->Leaf();
-    
-    if (l1 && l2) 
-    {  
-      // both leaves - find if tri pair within tolerance
-    
-      res->num_tri_tests++;
-
-      PQP_REAL p[3], q[3];
-
-      Tri *t1 = &o1->tris[-o1->child(min_test.b1)->first_child - 1];
-      Tri *t2 = &o2->tris[-o2->child(min_test.b2)->first_child - 1];
-
-      PQP_REAL d = TriDistance(res->R,res->T,t1,t2,p,q);
-    
-      if (d <= res->tolerance)  
-      {  
-        // triangle pair distance less than tolerance
-
-        res->closer_than_tolerance = 1;
-        res->distance = d;
-        VcV(res->p1, p);         // p already in c.s. 1
-        VcV(res->p2, q);         // q must be transformed 
-                                 // into c.s. 2 later
-        return;
-      }
-    }
-    else if (bvtq.GetNumTests() == bvtq.GetSize() - 1)
-    {  
-      // queue can't get two more tests, recur
-      
-      ToleranceQueueRecurse(res,min_test.R,min_test.T,
-                            o1,min_test.b1,o2,min_test.b2);
-      if (res->closer_than_tolerance == 1) return;
-    }
-    else 
-    {  
-      // decide how to descend to children
-      
-      PQP_REAL sz1 = o1->child(min_test.b1)->GetSize();
-      PQP_REAL sz2 = o2->child(min_test.b2)->GetSize();
-
-      res->num_bv_tests += 2;
-      
-      BVT bvt1,bvt2;
-      PQP_REAL Ttemp[3];
-
-      if (l2 || (!l1 && (sz1 > sz2)))	
-      {
-	      // add two new tests to queue, consisting of min_test.b2
-        // with the children of min_test.b1
-
-        int c1 = o1->child(min_test.b1)->first_child;
-        int c2 = c1 + 1;
-
-        // init bv test 1
-
-        bvt1.b1 = c1;
-        bvt1.b2 = min_test.b2;
-        MTxM(bvt1.R,o1->child(c1)->R,min_test.R);
-#if PQP_BV_TYPE & RSS_TYPE
-        VmV(Ttemp,min_test.T,o1->child(c1)->Tr);
-#else
-        VmV(Ttemp,min_test.T,o1->child(c1)->To);
-#endif
-        MTxV(bvt1.T,o1->child(c1)->R,Ttemp);
-        bvt1.d = BV_Distance(bvt1.R,bvt1.T,
-                            o1->child(bvt1.b1),o2->child(bvt1.b2));
-
-	      // init bv test 2
-
-	      bvt2.b1 = c2;
-	      bvt2.b2 = min_test.b2;
-	      MTxM(bvt2.R,o1->child(c2)->R,min_test.R);
-#if PQP_BV_TYPE & RSS_TYPE
-	      VmV(Ttemp,min_test.T,o1->child(c2)->Tr);
-#else
-	      VmV(Ttemp,min_test.T,o1->child(c2)->To);
-#endif
-	      MTxV(bvt2.T,o1->child(c2)->R,Ttemp);
-        bvt2.d = BV_Distance(bvt2.R,bvt2.T,
-                            o1->child(bvt2.b1),o2->child(bvt2.b2));
-      }
-      else 
-      {
-        // add two new tests to queue, consisting of min_test.b1
-        // with the children of min_test.b2
-
-        int c1 = o2->child(min_test.b2)->first_child;
-        int c2 = c1 + 1;
-
-        // init bv test 1
-
-        bvt1.b1 = min_test.b1;
-        bvt1.b2 = c1;
-        MxM(bvt1.R,min_test.R,o2->child(c1)->R);
-#if PQP_BV_TYPE & RSS_TYPE
-        MxVpV(bvt1.T,min_test.R,o2->child(c1)->Tr,min_test.T);
-#else
-        MxVpV(bvt1.T,min_test.R,o2->child(c1)->To,min_test.T);
-#endif
-        bvt1.d = BV_Distance(bvt1.R,bvt1.T,
-                            o1->child(bvt1.b1),o2->child(bvt1.b2));
-
-        // init bv test 2
-
-        bvt2.b1 = min_test.b1;
-        bvt2.b2 = c2;
-        MxM(bvt2.R,min_test.R,o2->child(c2)->R);
-#if PQP_BV_TYPE & RSS_TYPE
-        MxVpV(bvt2.T,min_test.R,o2->child(c2)->Tr,min_test.T);
-#else
-        MxVpV(bvt2.T,min_test.R,o2->child(c2)->To,min_test.T);
-#endif
-        bvt2.d = BV_Distance(bvt2.R,bvt2.T,
-                            o1->child(bvt2.b1),o2->child(bvt2.b2));
-      }
-
-      // put children tests in queue
-
-      if (bvt1.d <= res->tolerance) bvtq.AddTest(bvt1);
-      if (bvt2.d <= res->tolerance) bvtq.AddTest(bvt2);
-    }
-
-    if (bvtq.Empty() || (bvtq.MinTest() > res->tolerance)) 
-    {
-      res->closer_than_tolerance = 0;
-      return;
-    }
-    else 
-    {
-      min_test = bvtq.ExtractMinTest();
-    }
-  }  
-}	
-
-int
-PQP_Tolerance(PQP_ToleranceResult *res,
-              PQP_REAL R1[3][3], PQP_REAL T1[3], PQP_Model *o1,
-              PQP_REAL R2[3][3], PQP_REAL T2[3], PQP_Model *o2,
-              PQP_REAL tolerance,
-              int qsize)
-{
-  double time1 = GetTime();
-
-  // make sure that the models are built
-
-  if (o1->build_state != PQP_BUILD_STATE_PROCESSED) 
-    return PQP_ERR_UNPROCESSED_MODEL;
-  if (o2->build_state != PQP_BUILD_STATE_PROCESSED) 
-    return PQP_ERR_UNPROCESSED_MODEL;
-  
-  // Compute the transform [R,T] that takes us from cs2 to cs1.
-  // [R,T] = [R1,T1]'[R2,T2] = [R1',-R1'T][R2,T2] = [R1'R2, R1'(T2-T1)]
-
-  MTxM(res->R,R1,R2);
-  PQP_REAL Ttemp[3];
-  VmV(Ttemp, T2, T1);
-  MTxV(res->T, R1, Ttemp);
-
-  // set tolerance, used to prune the search
-
-  if (tolerance < 0.0) tolerance = 0.0;
-  res->tolerance = tolerance;
-  
-  // clear the stats
-
-  res->num_bv_tests = 0;
-  res->num_tri_tests = 0;
-
-  // initially assume not closer than tolerance
-
-  res->closer_than_tolerance = 0;
-  
-  // compute the transform from o1->child(0) to o2->child(0)
-
-  PQP_REAL Rtemp[3][3], R[3][3], T[3];
-
-  MxM(Rtemp,res->R,o2->child(0)->R);
-  MTxM(R,o1->child(0)->R,Rtemp);
-#if PQP_BV_TYPE & RSS_TYPE
-  MxVpV(Ttemp,res->R,o2->child(0)->Tr,res->T);
-  VmV(Ttemp,Ttemp,o1->child(0)->Tr);
-#else
-  MxVpV(Ttemp,res->R,o2->child(0)->To,res->T);
-  VmV(Ttemp,Ttemp,o1->child(0)->To);
-#endif
-  MTxV(T,o1->child(0)->R,Ttemp);
-
-  // find a distance lower bound for trivial reject
-
-  PQP_REAL d = BV_Distance(R, T, o1->child(0), o2->child(0));
-  
-  if (d <= res->tolerance)
-  {
-    // more work needed - choose routine according to queue size
-
-    if (qsize <= 2) 
-    {
-      ToleranceRecurse(res, R, T, o1, 0, o2, 0);
-    }
-    else 
-    {
-      res->qsize = qsize;
-      ToleranceQueueRecurse(res, R, T, o1, 0, o2, 0);
-    }
-  }
-
-  // res->p2 is in cs 1 ; transform it to cs 2
-
-  PQP_REAL u[3];
-  VmV(u, res->p2, res->T);
-  MTxV(res->p2, res->R, u);
-
-  double time2 = GetTime();
-  res->query_time_secs = time2 - time1;
-
-  return PQP_OK;
-}
-
-#endif
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/src/PQP.h b/trunk/PQP/build/pqp-tar/PQP_v1.3/src/PQP.h
deleted file mode 100644
index f6f3e539581c4e118d2afecace8e8a35d10c3db2..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/src/PQP.h
+++ /dev/null
@@ -1,338 +0,0 @@
-/*************************************************************************\
-
-  Copyright 1999 The University of North Carolina at Chapel Hill.
-  All Rights Reserved.
-
-  Permission to use, copy, modify and distribute this software and its
-  documentation for educational, research and non-profit purposes, without
-  fee, and without a written agreement is hereby granted, provided that the
-  above copyright notice and the following three paragraphs appear in all
-  copies.
-
-  IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE
-  LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
-  CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE
-  USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY
-  OF NORTH CAROLINA HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
-  DAMAGES.
-
-  THE UNIVERSITY OF NORTH CAROLINA SPECIFICALLY DISCLAIM ANY
-  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE
-  PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
-  NORTH CAROLINA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
-  UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-
-  The authors may be contacted via:
-
-  US Mail:             S. Gottschalk, E. Larsen
-                       Department of Computer Science
-                       Sitterson Hall, CB #3175
-                       University of N. Carolina
-                       Chapel Hill, NC 27599-3175
-
-  Phone:               (919)962-1749
-
-  EMail:               geom@cs.unc.edu
-
-
-\**************************************************************************/
-
-#ifndef PQP_H
-#define PQP_H
-
-#include "PQP_Compile.h"   
-#include "PQP_Internal.h"                             
-                        
-//----------------------------------------------------------------------------
-//
-//  PQP API Return Values
-//
-//----------------------------------------------------------------------------
-
-const int PQP_OK = 0; 
-  // Used by all API routines upon successful completion except
-  // constructors and destructors
-
-const int PQP_ERR_MODEL_OUT_OF_MEMORY = -1; 
-  // Returned when an API function cannot obtain enough memory to
-  // store or process a PQP_Model object.
-
-const int PQP_ERR_OUT_OF_MEMORY = -2;
-  // Returned when a PQP query cannot allocate enough storage to
-  // compute or hold query information.  In this case, the returned
-  // data should not be trusted.
-
-const int PQP_ERR_UNPROCESSED_MODEL = -3;
-  // Returned when an unprocessed model is passed to a function which
-  // expects only processed models, such as PQP_Collide() or
-  // PQP_Distance().
-
-const int PQP_ERR_BUILD_OUT_OF_SEQUENCE = -4;
-  // Returned when: 
-  //       1. AddTri() is called before BeginModel().  
-  //       2. BeginModel() is called immediately after AddTri().  
-  // This error code is something like a warning: the invoked
-  // operation takes place anyway, and PQP does what makes "most
-  // sense", but the returned error code may tip off the client that
-  // something out of the ordinary is happenning.
-
-const int PQP_ERR_BUILD_EMPTY_MODEL = -5; 
-  // Returned when EndModel() is called on a model to which no
-  // triangles have been added.  This is similar in spirit to the
-  // OUT_OF_SEQUENCE return code, except that the requested operation
-  // has FAILED -- the model remains "unprocessed", and the client may
-  // NOT use it in queries.
-
-//----------------------------------------------------------------------------
-//
-//  PQP_REAL 
-//
-//  The floating point type used throughout the package. The type is defined 
-//  in PQP_Compile.h, and by default is "double"
-//
-//----------------------------------------------------------------------------
-
-//----------------------------------------------------------------------------
-//
-//  PQP_Model
-//
-//  A PQP_Model stores geometry to be used in a proximity query.
-//  The geometry is loaded with a call to BeginModel(), at least one call to 
-//  AddTri(), and then a call to EndModel().
-//
-//  // create a two triangle model, m
-//
-//  PQP_Model m;
-//
-//  PQP_REAL p1[3],p2[3],p3[3];  // 3 points will make triangle p
-//  PQP_REAL q1[3],q2[3],q3[3];  // another 3 points for triangle q
-//
-//  // some initialization of these vertices not shown
-//
-//  m.BeginModel();              // begin the model
-//  m.AddTri(p1,p2,p3,0);        // add triangle p
-//  m.AddTri(q1,q2,q3,1);        // add triangle q
-//  m.EndModel();                // end (build) the model
-//
-//  The last parameter of AddTri() is the number to be associated with the 
-//  triangle. These numbers are used to identify the triangles that overlap.
-// 
-//  AddTri() copies into the PQP_Model the data pointed to by the three vertex 
-//  pointers, so that it is safe to delete vertex data after you have 
-//  passed it to AddTri().
-//
-//----------------------------------------------------------------------------
-//
-//  class PQP_Model  - declaration contained in PQP_Internal.h
-//  {
-//
-//  public:
-//    PQP_Model();
-//    ~PQP_Model();
-//
-//    int BeginModel(int num_tris = 8); // preallocate for num_tris triangles;
-//                                      // the parameter is optional, since
-//                                      // arrays are reallocated as needed
-//
-//    int AddTri(const PQP_REAL *p1, const PQP_REAL *p2, const PQP_REAL *p3, 
-//               int id);
-//
-//    int EndModel();
-//    int MemUsage(int msg);  // returns model mem usage in bytes
-//                            // prints message to stderr if msg == TRUE
-//  };
-
-//----------------------------------------------------------------------------
-//
-//  PQP_CollideResult 
-//
-//  This saves and reports results from a collision query.  
-//
-//----------------------------------------------------------------------------
-//
-//  struct PQP_CollideResult - declaration contained in PQP_Internal.h
-//  {
-//    // statistics
-//
-//    int NumBVTests();
-//    int NumTriTests();
-//    PQP_REAL QueryTimeSecs();
-//
-//    // free the list of contact pairs; ordinarily this list is reused
-//    // for each query, and only deleted in the destructor.
-//
-//    void FreePairsList(); 
-//
-//    // query results
-//
-//    int Colliding();
-//    int NumPairs();
-//    int Id1(int k);
-//    int Id2(int k);
-//  };
-
-//----------------------------------------------------------------------------
-//
-//  PQP_Collide() - detects collision between two PQP_Models
-//
-//
-//  Declare a PQP_CollideResult struct and pass its pointer to collect 
-//  collision data.
-//
-//  [R1, T1] is the placement of model 1 in the world &
-//  [R2, T2] is the placement of model 2 in the world.
-//  The columns of each 3x3 matrix are the basis vectors for the model
-//  in world coordinates, and the matrices are in row-major order:
-//  R(row r, col c) = R[r][c].
-//
-//  If PQP_ALL_CONTACTS is the flag value, after calling PQP_Collide(),
-//  the PQP_CollideResult object will contain an array with all
-//  colliding triangle pairs. Suppose CR is a pointer to the
-//  PQP_CollideResult object.  The number of pairs is gotten from
-//  CR->NumPairs(), and the ids of the 15'th pair of colliding
-//  triangles is gotten from CR->Id1(14) and CR->Id2(14).
-//
-//  If PQP_FIRST_CONTACT is the flag value, the PQP_CollideResult array
-//  will only get the first colliding triangle pair found.  Thus
-//  CR->NumPairs() will be at most 1, and if 1, CR->Id1(0) and
-//  CR->Id2(0) give the ids of the colliding triangle pair.
-//
-//----------------------------------------------------------------------------
-
-const int PQP_ALL_CONTACTS = 1;  // find all pairwise intersecting triangles
-const int PQP_FIRST_CONTACT = 2; // report first intersecting tri pair found
-
-int 
-PQP_Collide(PQP_CollideResult *result,
-            PQP_REAL R1[3][3], PQP_REAL T1[3], PQP_Model *o1,
-            PQP_REAL R2[3][3], PQP_REAL T2[3], PQP_Model *o2,
-            int flag = PQP_ALL_CONTACTS);
-
-
-#if PQP_BV_TYPE & RSS_TYPE  // this is true by default,
-                            // and explained in PQP_Compile.h
-
-//----------------------------------------------------------------------------
-//
-//  PQP_DistanceResult
-//
-//  This saves and reports results from a distance query.  
-//
-//----------------------------------------------------------------------------
-//
-//  struct PQP_DistanceResult - declaration contained in PQP_Internal.h
-//  {
-//    // statistics
-//  
-//    int NumBVTests();
-//    int NumTriTests();
-//    PQP_REAL QueryTimeSecs();
-//  
-//    // The following distance and points established the minimum distance
-//    // for the models, within the relative and absolute error bounds 
-//    // specified.
-//
-//    PQP_REAL Distance();
-//    const PQP_REAL *P1();  // pointers to three PQP_REALs
-//    const PQP_REAL *P2();  
-//  };
-
-//----------------------------------------------------------------------------
-//
-//  PQP_Distance() - computes the distance between two PQP_Models
-//
-//
-//  Declare a PQP_DistanceResult struct and pass its pointer to collect
-//  distance information.
-//
-//  "rel_err" is the relative error margin from actual distance.
-//  "abs_err" is the absolute error margin from actual distance.  The
-//  smaller of the two will be satisfied, so set one large to nullify
-//  its effect.
-//
-//  "qsize" is an optional parameter controlling the size of a priority
-//  queue used to direct the search for closest points.  A larger queue
-//  can help the algorithm discover the minimum with fewer steps, but
-//  will increase the cost of each step. It is not beneficial to increase
-//  qsize if the application has frame-to-frame coherence, i.e., the
-//  pair of models take small steps between each call, since another
-//  speedup trick already accelerates this situation with no overhead.
-//
-//  However, a queue size of 100 to 200 has been seen to save time in a
-//  planning application with "non-coherent" placements of models.
-//
-//----------------------------------------------------------------------------
-
-int 
-PQP_Distance(PQP_DistanceResult *result, 
-             PQP_REAL R1[3][3], PQP_REAL T1[3], PQP_Model *o1,
-             PQP_REAL R2[3][3], PQP_REAL T2[3], PQP_Model *o2,
-             PQP_REAL rel_err, PQP_REAL abs_err,
-             int qsize = 2);
-
-//----------------------------------------------------------------------------
-//
-//  PQP_ToleranceResult
-//
-//  This saves and reports results from a tolerance query.  
-//
-//----------------------------------------------------------------------------
-//
-//  struct PQP_ToleranceResult - declaration contained in PQP_Internal.h
-//  {
-//    // statistics
-//  
-//    int NumBVTests(); 
-//    int NumTriTests();
-//    PQP_REAL QueryTimeSecs();
-//  
-//    // If the models are closer than ( <= ) tolerance, these points 
-//    // and distance were what established this.  Otherwise, 
-//    // distance and point values are not meaningful.
-//  
-//    PQP_REAL Distance();
-//    const PQP_REAL *P1();
-//    const PQP_REAL *P2();
-//  
-//    // boolean says whether models are closer than tolerance distance
-//  
-//    int CloserThanTolerance();
-//  };
-
-//----------------------------------------------------------------------------
-//
-// PQP_Tolerance() - checks if distance between PQP_Models is <= tolerance
-//
-//
-// Declare a PQP_ToleranceResult and pass its pointer to collect
-// tolerance information.
-//
-// The algorithm returns whether the true distance is <= or >
-// "tolerance".  This routine does not simply compute true distance
-// and compare to the tolerance - models can often be shown closer or
-// farther than the tolerance more trivially.  In most cases this
-// query should run faster than a distance query would on the same
-// models and configurations.
-// 
-// "qsize" again controls the size of a priority queue used for
-// searching.  Not setting qsize is the current recommendation, since
-// increasing it has only slowed down our applications.
-//
-//----------------------------------------------------------------------------
-
-int
-PQP_Tolerance(PQP_ToleranceResult *res, 
-              PQP_REAL R1[3][3], PQP_REAL T1[3], PQP_Model *o1,
-              PQP_REAL R2[3][3], PQP_REAL T2[3], PQP_Model *o2,
-              PQP_REAL tolerance,
-              int qsize = 2);
-
-#endif 
-#endif
-
-
-
-
-
-
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/src/PQP_Compile.h b/trunk/PQP/build/pqp-tar/PQP_v1.3/src/PQP_Compile.h
deleted file mode 100644
index f76c981370ecd5833f257fa7e14564d5704ce2e6..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/src/PQP_Compile.h
+++ /dev/null
@@ -1,101 +0,0 @@
-/*************************************************************************\
-
-  Copyright 1999 The University of North Carolina at Chapel Hill.
-  All Rights Reserved.
-
-  Permission to use, copy, modify and distribute this software and its
-  documentation for educational, research and non-profit purposes, without
-  fee, and without a written agreement is hereby granted, provided that the
-  above copyright notice and the following three paragraphs appear in all
-  copies.
-
-  IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE
-  LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
-  CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE
-  USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY
-  OF NORTH CAROLINA HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
-  DAMAGES.
-
-  THE UNIVERSITY OF NORTH CAROLINA SPECIFICALLY DISCLAIM ANY
-  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE
-  PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
-  NORTH CAROLINA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
-  UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-
-  The authors may be contacted via:
-
-  US Mail:             S. Gottschalk, E. Larsen
-                       Department of Computer Science
-                       Sitterson Hall, CB #3175
-                       University of N. Carolina
-                       Chapel Hill, NC 27599-3175
-
-  Phone:               (919)962-1749
-
-  EMail:               geom@cs.unc.edu
-
-
-\**************************************************************************/
-
-#ifndef PQP_COMPILE_H
-#define PQP_COMPILE_H
-
-// prevents compiler warnings when PQP_REAL is float
-
-#include <math.h>
-inline float sqrt(float x) { return (float)sqrt((double)x); }
-inline float cos(float x) { return (float)cos((double)x); }
-inline float sin(float x) { return (float)sin((double)x); }
-inline float fabs(float x) { return (float)fabs((double)x); }
-
-//-------------------------------------------------------------------------
-//
-// PQP_REAL
-//
-// This is the floating point type used throughout PQP.  doubles are
-// recommended, both for their precision and because the software has
-// mainly been tested using them.  However, floats appear to be faster 
-// (by 60% on some machines).
-//
-//-------------------------------------------------------------------------
-
-typedef double PQP_REAL;
-
-//-------------------------------------------------------------------------
-//
-// PQP_BV_TYPE
-//
-// PQP introduces a bounding volume (BV) type known as the "rectangle
-// swept sphere" (RSS) - the volume created by sweeping a sphere so
-// that its center visits every point on a rectangle; it looks
-// something like a rounded box.
-//
-// In our experiments, the RSS type is comparable to the oriented 
-// bounding box (OBB) in terms of the number of BV-pair and triangle-pair 
-// tests incurred.  However, with our present implementations, overlap 
-// tests are cheaper for OBBs, while distance tests are cheaper for the 
-// RSS type (we used a public gjk implementation for the OBB distance test).
-//
-// Consequently, PQP is configured to use the RSS type in distance and 
-// tolerance queries (which use BV distance tests) and to use OBBs for
-// collision queries (which use BV overlap tests). Using both requires six
-// more PQP_REALs per BV node than using just one type. 
-//
-// To save space, you can configure PQP to use only one type, however, 
-// with RSS alone, collision queries will typically be slower.  With OBB's 
-// alone, distance and tolerance queries are currently not supported, since 
-// we have not developed our own OBB distance test.  The three options are:
-//
-// #define PQP_BV_TYPE  RSS_TYPE           
-// #define PQP_BV_TYPE  OBB_TYPE           
-// #define PQP_BV_TYPE  RSS_TYPE | OBB_TYPE
-//
-//-------------------------------------------------------------------------
-
-#define RSS_TYPE     1
-#define OBB_TYPE     2
-
-#define PQP_BV_TYPE  RSS_TYPE | OBB_TYPE
-
-#endif
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/src/PQP_Internal.h b/trunk/PQP/build/pqp-tar/PQP_v1.3/src/PQP_Internal.h
deleted file mode 100644
index 90cedcfa2d7f3ec96c3d378774c48f9e9a5a6d29..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/src/PQP_Internal.h
+++ /dev/null
@@ -1,203 +0,0 @@
-/*************************************************************************\
-
-  Copyright 1999 The University of North Carolina at Chapel Hill.
-  All Rights Reserved.
-
-  Permission to use, copy, modify and distribute this software and its
-  documentation for educational, research and non-profit purposes, without
-  fee, and without a written agreement is hereby granted, provided that the
-  above copyright notice and the following three paragraphs appear in all
-  copies.
-
-  IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE
-  LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
-  CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE
-  USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY
-  OF NORTH CAROLINA HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
-  DAMAGES.
-
-  THE UNIVERSITY OF NORTH CAROLINA SPECIFICALLY DISCLAIM ANY
-  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE
-  PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
-  NORTH CAROLINA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
-  UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-
-  The authors may be contacted via:
-
-  US Mail:             S. Gottschalk, E. Larsen
-                       Department of Computer Science
-                       Sitterson Hall, CB #3175
-                       University of N. Carolina
-                       Chapel Hill, NC 27599-3175
-
-  Phone:               (919)962-1749
-
-  EMail:               geom@cs.unc.edu
-
-
-\**************************************************************************/
-
-#include "Tri.h"
-#include "BV.h"
-
-class PQP_Model
-{
-
-public:
-
-  int build_state;
-
-  Tri *tris;  
-  int num_tris;
-  int num_tris_alloced;
-
-  BV *b;
-  int num_bvs;
-  int num_bvs_alloced;
-
-  Tri *last_tri;       // closest tri on this model in last distance test
-  
-  BV *child(int n) { return &b[n]; }
-
-  PQP_Model();
-  ~PQP_Model();
-
-  int BeginModel(int num_tris = 8); // preallocate for num_tris triangles;
-                                    // the parameter is optional, since
-                                    // arrays are reallocated as needed
-  int AddTri(const PQP_REAL *p1, const PQP_REAL *p2, const PQP_REAL *p3, 
-             int id);
-  int EndModel();
-  int MemUsage(int msg);  // returns model mem usage.  
-                          // prints message to stderr if msg == TRUE
-};
-
-struct CollisionPair
-{
-  int id1;
-  int id2;
-};
-
-struct PQP_CollideResult  
-{
-  // stats
-
-  int num_bv_tests;
-  int num_tri_tests;
-  double query_time_secs;
-
-  // xform from model 1 to model 2
-
-  PQP_REAL R[3][3];
-  PQP_REAL T[3];
-
-  int num_pairs_alloced;
-  int num_pairs;
-  CollisionPair *pairs;
-
-  void SizeTo(int n);    
-  void Add(int i1, int i2); 
-
-  PQP_CollideResult();
-  ~PQP_CollideResult();
-
-  // statistics
-
-  int NumBVTests() { return num_bv_tests; }
-  int NumTriTests() { return num_tri_tests; }
-  double QueryTimeSecs() { return query_time_secs; }
-
-  // free the list of contact pairs; ordinarily this list is reused
-  // for each query, and only deleted in the destructor.
-
-  void FreePairsList(); 
-
-  // query results
-
-  int Colliding() { return (num_pairs > 0); }
-  int NumPairs() { return num_pairs; }
-  int Id1(int k) { return pairs[k].id1; }
-  int Id2(int k) { return pairs[k].id2; }
-};
-
-#if PQP_BV_TYPE & RSS_TYPE // distance/tolerance are only available with RSS
-
-struct PQP_DistanceResult 
-{
-  // stats
-
-  int num_bv_tests;
-  int num_tri_tests;
-  double query_time_secs;
-
-  // xform from model 1 to model 2
-
-  PQP_REAL R[3][3];
-  PQP_REAL T[3];
-
-  PQP_REAL rel_err; 
-  PQP_REAL abs_err; 
-
-  PQP_REAL distance;
-  PQP_REAL p1[3]; 
-  PQP_REAL p2[3];
-  int qsize;
-  
-  // statistics
-
-  int NumBVTests() { return num_bv_tests; }
-  int NumTriTests() { return num_tri_tests; }
-  double QueryTimeSecs() { return query_time_secs; }
-
-  // The following distance and points established the minimum distance
-  // for the models, within the relative and absolute error bounds 
-  // specified.
-  // Points are defined: PQP_REAL p1[3], p2[3];
-
-  PQP_REAL Distance() { return distance; }
-  const PQP_REAL *P1() { return p1; }
-  const PQP_REAL *P2() { return p2; }
-};
-
-struct PQP_ToleranceResult 
-{
-  // stats
-
-  int num_bv_tests;
-  int num_tri_tests;
-  double query_time_secs;
-
-  // xform from model 1 to model 2
-
-  PQP_REAL R[3][3];
-  PQP_REAL T[3];
-
-  int    closer_than_tolerance;   
-  PQP_REAL tolerance;      
-
-  PQP_REAL distance;
-  PQP_REAL p1[3]; 
-  PQP_REAL p2[3]; 
-  int qsize;
-
-  // statistics
-
-  int NumBVTests() { return num_bv_tests; }
-  int NumTriTests() { return num_tri_tests; }
-  double QueryTimeSecs() { return query_time_secs; }
-
-  // If the models are closer than ( <= ) tolerance, these points 
-  // and distance were what established this.  Otherwise, 
-  // distance and point values are not meaningful.
-
-  PQP_REAL Distance() { return distance; }
-  const PQP_REAL *P1() { return p1; }
-  const PQP_REAL *P2() { return p2; }
-
-  // boolean says whether models are closer than tolerance distance
-
-  int CloserThanTolerance() { return closer_than_tolerance; }
-};
-
-#endif
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/src/RectDist.h b/trunk/PQP/build/pqp-tar/PQP_v1.3/src/RectDist.h
deleted file mode 100644
index 429d2c71633771ff5b2db7ca3cffe71bfaf7b93e..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/src/RectDist.h
+++ /dev/null
@@ -1,753 +0,0 @@
-/*************************************************************************\
-
-  Copyright 1999 The University of North Carolina at Chapel Hill.
-  All Rights Reserved.
-
-  Permission to use, copy, modify and distribute this software and its
-  documentation for educational, research and non-profit purposes, without
-  fee, and without a written agreement is hereby granted, provided that the
-  above copyright notice and the following three paragraphs appear in all
-  copies.
-
-  IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE
-  LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
-  CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE
-  USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY
-  OF NORTH CAROLINA HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
-  DAMAGES.
-
-  THE UNIVERSITY OF NORTH CAROLINA SPECIFICALLY DISCLAIM ANY
-  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE
-  PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
-  NORTH CAROLINA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
-  UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-
-  The authors may be contacted via:
-
-  US Mail:             E. Larsen
-                       Department of Computer Science
-                       Sitterson Hall, CB #3175
-                       University of N. Carolina
-                       Chapel Hill, NC 27599-3175
-
-  Phone:               (919)962-1749
-
-  EMail:               geom@cs.unc.edu
-
-
-\**************************************************************************/
-
-#ifndef PQP_RECTDIST_H
-#define PQP_RECTDIST_H
-
-#include <math.h>
-#include "MatVec.h" 
-#include "PQP_Compile.h"
-  
-// ClipToRange
-//
-// clips val between a and b
-
-inline 
-void
-ClipToRange(PQP_REAL &val, const PQP_REAL &a, const PQP_REAL &b)
-{
-  if (val < a) val = a;
-  else if (val > b) val = b;
-}
-
-// SegCoords
-//
-// finds the parameters t & u corresponding to the two closest points 
-// on a pair of line segments 
-//
-// The first segment is defined as 
-//
-// Pa + A*t, 0 <= t <= a, 
-// 
-// where "Pa" is one endpoint of the segment, "A" is a unit vector 
-// pointing to the other endpoint, and t is a scalar that produces
-// all the points between the two endpoints. Since "A" is a unit
-// vector, "a" is the segment's length.
-//
-// The second segment is 
-//
-// Pb + B*u, 0 <= u <= b
-//
-// In my application, many of the terms needed by the algorithm
-// are already computed for other purposes, so I pass these terms to 
-// the function instead of complete specifications of each segment. 
-// "T" in the dot products is the vector between Pa and Pb.
-//
-// The algorithm is from
-//
-// Vladimir J. Lumelsky,
-// On fast computation of distance between line segments.
-// In Information Processing Letters, no. 21, pages 55-61, 1985.   
-
-inline
-void 
-SegCoords(PQP_REAL& t, PQP_REAL& u, 
-          const PQP_REAL& a, const PQP_REAL& b, 
-          const PQP_REAL& A_dot_B, 
-          const PQP_REAL& A_dot_T, 
-          const PQP_REAL& B_dot_T)
-{  
-  PQP_REAL denom = 1 - (A_dot_B)*(A_dot_B);
-
-  if (denom == 0) t = 0;
-  else
-  {
-    t = (A_dot_T - B_dot_T*A_dot_B)/denom;
-    ClipToRange(t,0,a);
-  }
-  
-  u = t*A_dot_B - B_dot_T;
-  if (u < 0) 
-  {
-    u = 0;
-    t = A_dot_T;
-    ClipToRange(t,0,a);
-  }
-  else if (u > b) 
-  {
-    u = b;
-    t = u*A_dot_B + A_dot_T;
-    ClipToRange(t,0,a);
-  }
-}
-
-// InVoronoi
-//
-// returns whether the nearest point on rectangle edge 
-// Pb + B*u, 0 <= u <= b, to the rectangle edge,
-// Pa + A*t, 0 <= t <= a, is within the half space 
-// determined by the point Pa and the direction Anorm.
-//
-// A,B, and Anorm are unit vectors.
-// T is the vector between Pa and Pb.
-
-inline
-int 
-InVoronoi(const PQP_REAL &a, 
-          const PQP_REAL &b,  
-          const PQP_REAL &Anorm_dot_B, 
-          const PQP_REAL &Anorm_dot_T,  
-          const PQP_REAL &A_dot_B,
-          const PQP_REAL &A_dot_T,
-          const PQP_REAL &B_dot_T)
-{ 
-  if (myfabs(Anorm_dot_B) < 1e-7) return 0;
-
-  PQP_REAL t, u, v;
- 
-  u = -Anorm_dot_T / Anorm_dot_B; 
-  ClipToRange(u,0,b); 
-  
-  t = u*A_dot_B + A_dot_T; 
-  ClipToRange(t,0,a); 
-  
-  v = t*A_dot_B - B_dot_T; 
-  
-  if (Anorm_dot_B > 0) 
-  {
-    if (v > (u + 1e-7)) return 1;
-  }
-  else 
-  {
-    if (v < (u - 1e-7)) return 1;
-  }
-  return 0; 
-} 
-
-
-// RectDist
-//
-// Finds the distance between two rectangles A and B.  A is assumed
-// to have its corner on the origin, one side aligned with
-// x, the other side aligned with y, and its normal aligned with z.
-// 
-// [Rab,Tab] gives the orientation and corner position of rectangle B
-// 
-// a[2] are the side lengths of A, b[2] are the side lengths of B
-
-inline
-PQP_REAL
-RectDist(PQP_REAL Rab[3][3], PQP_REAL Tab[3], 
-          PQP_REAL a[2], PQP_REAL b[2])
-{
-  PQP_REAL A0_dot_B0, A0_dot_B1, A1_dot_B0, A1_dot_B1;
-
-  A0_dot_B0 = Rab[0][0];
-  A0_dot_B1 = Rab[0][1];
-  A1_dot_B0 = Rab[1][0];
-  A1_dot_B1 = Rab[1][1];
-
-  PQP_REAL aA0_dot_B0, aA0_dot_B1, aA1_dot_B0, aA1_dot_B1;
-  PQP_REAL bA0_dot_B0, bA0_dot_B1, bA1_dot_B0, bA1_dot_B1; 
- 
-  aA0_dot_B0 = a[0]*A0_dot_B0;
-  aA0_dot_B1 = a[0]*A0_dot_B1;
-  aA1_dot_B0 = a[1]*A1_dot_B0;
-  aA1_dot_B1 = a[1]*A1_dot_B1;
-  bA0_dot_B0 = b[0]*A0_dot_B0;
-  bA1_dot_B0 = b[0]*A1_dot_B0;
-  bA0_dot_B1 = b[1]*A0_dot_B1;
-  bA1_dot_B1 = b[1]*A1_dot_B1;
-
-  PQP_REAL Tba[3];
-  MTxV(Tba,Rab,Tab);
-
-  PQP_REAL S[3], t, u;
-
-  // determine if any edge pair contains the closest points
-
-  PQP_REAL ALL_x, ALU_x, AUL_x, AUU_x;
-  PQP_REAL BLL_x, BLU_x, BUL_x, BUU_x;
-  PQP_REAL LA1_lx, LA1_ux, UA1_lx, UA1_ux, LB1_lx, LB1_ux, UB1_lx, UB1_ux;
-
-  ALL_x = -Tba[0];
-  ALU_x = ALL_x + aA1_dot_B0;
-  AUL_x = ALL_x + aA0_dot_B0;
-  AUU_x = ALU_x + aA0_dot_B0;
-
-  if (ALL_x < ALU_x)
-  { 
-    LA1_lx = ALL_x;
-    LA1_ux = ALU_x;
-    UA1_lx = AUL_x;    
-    UA1_ux = AUU_x;
-  }
-  else
-  { 
-    LA1_lx = ALU_x;
-    LA1_ux = ALL_x;
-    UA1_lx = AUU_x;    
-    UA1_ux = AUL_x;
-  }
-
-  BLL_x = Tab[0];
-  BLU_x = BLL_x + bA0_dot_B1;
-  BUL_x = BLL_x + bA0_dot_B0;
-  BUU_x = BLU_x + bA0_dot_B0;
-  
-  if (BLL_x < BLU_x)
-  { 
-    LB1_lx = BLL_x;
-    LB1_ux = BLU_x;
-    UB1_lx = BUL_x;    
-    UB1_ux = BUU_x;
-  }
-  else
-  { 
-    LB1_lx = BLU_x;
-    LB1_ux = BLL_x;
-    UB1_lx = BUU_x;    
-    UB1_ux = BUL_x;
-  }
-
-  // UA1, UB1
-  
-  if ((UA1_ux > b[0]) && (UB1_ux > a[0]))
-  {
-    if (((UA1_lx > b[0]) || 
-          InVoronoi(b[1],a[1],A1_dot_B0,aA0_dot_B0 - b[0] - Tba[0],
-		                A1_dot_B1, aA0_dot_B1 - Tba[1], 
-                    -Tab[1] - bA1_dot_B0))
-        &&
-	
-        ((UB1_lx > a[0]) || 
-          InVoronoi(a[1],b[1],A0_dot_B1,Tab[0] + bA0_dot_B0 - a[0],
-                    A1_dot_B1,Tab[1] + bA1_dot_B0,Tba[1] - aA0_dot_B1)))
-    {            
-      SegCoords(t,u,a[1],b[1],A1_dot_B1,Tab[1] + bA1_dot_B0,
-                Tba[1] - aA0_dot_B1);
-      
-      S[0] = Tab[0] + Rab[0][0]*b[0] + Rab[0][1]*u - a[0] ;
-      S[1] = Tab[1] + Rab[1][0]*b[0] + Rab[1][1]*u - t;
-      S[2] = Tab[2] + Rab[2][0]*b[0] + Rab[2][1]*u;
-      return sqrt(VdotV(S,S));
-    }    
-  }
-
-
-  // UA1, LB1
-
-  if ((UA1_lx < 0) && (LB1_ux > a[0]))
-  {
-    if (((UA1_ux < 0) ||
-          InVoronoi(b[1],a[1],-A1_dot_B0,Tba[0] - aA0_dot_B0,
-                    A1_dot_B1, aA0_dot_B1 - Tba[1], -Tab[1]))
-        &&
-
-        ((LB1_lx > a[0]) ||
-          InVoronoi(a[1],b[1],A0_dot_B1,Tab[0] - a[0],
-                    A1_dot_B1,Tab[1],Tba[1] - aA0_dot_B1)))
-    {
-      SegCoords(t,u,a[1],b[1],A1_dot_B1,Tab[1],Tba[1] - aA0_dot_B1);
-
-      S[0] = Tab[0] + Rab[0][1]*u - a[0];
-      S[1] = Tab[1] + Rab[1][1]*u - t;
-      S[2] = Tab[2] + Rab[2][1]*u;
-      return sqrt(VdotV(S,S));
-    }
-  }
-
-  // LA1, UB1
-
-  if ((LA1_ux > b[0]) && (UB1_lx < 0))
-  {
-    if (((LA1_lx > b[0]) || 
-          InVoronoi(b[1],a[1],A1_dot_B0,-Tba[0] - b[0],
-                    A1_dot_B1,-Tba[1], -Tab[1] - bA1_dot_B0))
-          &&
-	
-        ((UB1_ux < 0) || 
-          InVoronoi(a[1],b[1],-A0_dot_B1, -Tab[0] - bA0_dot_B0,
-                    A1_dot_B1, Tab[1] + bA1_dot_B0,Tba[1])))
-    {
-
-      SegCoords(t,u,a[1],b[1],A1_dot_B1,Tab[1] + bA1_dot_B0,Tba[1]);
-
-      S[0] = Tab[0] + Rab[0][0]*b[0] + Rab[0][1]*u;
-      S[1] = Tab[1] + Rab[1][0]*b[0] + Rab[1][1]*u - t;
-      S[2] = Tab[2] + Rab[2][0]*b[0] + Rab[2][1]*u;
-      return sqrt(VdotV(S,S));
-    }
-  }
-
-  // LA1, LB1
-
-  if ((LA1_lx < 0) && (LB1_lx < 0))
-  {   
-    if (((LA1_ux < 0) || 
-          InVoronoi(b[1],a[1],-A1_dot_B0,Tba[0],A1_dot_B1,
-                    -Tba[1],-Tab[1]))
-          &&
-
-        ((LB1_ux < 0) || 
-          InVoronoi(a[1],b[1],-A0_dot_B1,-Tab[0],A1_dot_B1,
-                    Tab[1], Tba[1])))
-    {
-      SegCoords(t,u,a[1],b[1],A1_dot_B1,Tab[1],Tba[1]);    
-
-      S[0] = Tab[0] + Rab[0][1]*u;
-      S[1] = Tab[1] + Rab[1][1]*u - t;
-      S[2] = Tab[2] + Rab[2][1]*u;
-      return sqrt(VdotV(S,S));
-    }
-  }
-
-  PQP_REAL ALL_y, ALU_y, AUL_y, AUU_y;
-
-  ALL_y = -Tba[1];
-  ALU_y = ALL_y + aA1_dot_B1;
-  AUL_y = ALL_y + aA0_dot_B1;
-  AUU_y = ALU_y + aA0_dot_B1;
-  
-  PQP_REAL LA1_ly, LA1_uy, UA1_ly, UA1_uy, LB0_lx, LB0_ux, UB0_lx, UB0_ux;
-
-  if (ALL_y < ALU_y)
-  { 
-    LA1_ly = ALL_y;
-    LA1_uy = ALU_y;
-    UA1_ly = AUL_y;    
-    UA1_uy = AUU_y;
-  }
-  else
-  { 
-    LA1_ly = ALU_y;
-    LA1_uy = ALL_y;
-    UA1_ly = AUU_y;    
-    UA1_uy = AUL_y;
-  }
-
-  if (BLL_x < BUL_x)
-  {
-    LB0_lx = BLL_x;
-    LB0_ux = BUL_x;
-    UB0_lx = BLU_x;
-    UB0_ux = BUU_x;
-  }
-  else
-  {
-    LB0_lx = BUL_x;
-    LB0_ux = BLL_x;
-    UB0_lx = BUU_x;
-    UB0_ux = BLU_x;
-  }
-
-  // UA1, UB0
-
-  if ((UA1_uy > b[1]) && (UB0_ux > a[0]))
-  {   
-    if (((UA1_ly > b[1]) || 
-          InVoronoi(b[0],a[1],A1_dot_B1, aA0_dot_B1 - Tba[1] - b[1],
-                    A1_dot_B0, aA0_dot_B0 - Tba[0], -Tab[1] - bA1_dot_B1))
-          &&
-	
-        ((UB0_lx > a[0]) || 
-          InVoronoi(a[1],b[0],A0_dot_B0, Tab[0] - a[0] + bA0_dot_B1,
-                    A1_dot_B0, Tab[1] + bA1_dot_B1, Tba[0] - aA0_dot_B0)))
-    {
-      SegCoords(t,u,a[1],b[0],A1_dot_B0,Tab[1] + bA1_dot_B1,
-                Tba[0] - aA0_dot_B0);
-
-      S[0] = Tab[0] + Rab[0][1]*b[1] + Rab[0][0]*u - a[0] ;
-      S[1] = Tab[1] + Rab[1][1]*b[1] + Rab[1][0]*u - t;
-      S[2] = Tab[2] + Rab[2][1]*b[1] + Rab[2][0]*u;
-      return sqrt(VdotV(S,S));
-    }
-  }
-
-  // UA1, LB0
-
-  if ((UA1_ly < 0) && (LB0_ux > a[0]))
-  {
-    if (((UA1_uy < 0) || 
-          InVoronoi(b[0],a[1],-A1_dot_B1, Tba[1] - aA0_dot_B1,A1_dot_B0,
-                    aA0_dot_B0 - Tba[0], -Tab[1]))
-          &&
-
-        ((LB0_lx > a[0]) || 
-          InVoronoi(a[1],b[0],A0_dot_B0,Tab[0] - a[0],
-                    A1_dot_B0,Tab[1],Tba[0] - aA0_dot_B0)))
-    {
-      SegCoords(t,u,a[1],b[0],A1_dot_B0,Tab[1],Tba[0] - aA0_dot_B0);
-
-      S[0] = Tab[0] + Rab[0][0]*u - a[0];
-      S[1] = Tab[1] + Rab[1][0]*u - t;
-      S[2] = Tab[2] + Rab[2][0]*u;
-      return sqrt(VdotV(S,S)); 
-    }
-  }
-
-  // LA1, UB0
-
-  if ((LA1_uy > b[1]) && (UB0_lx < 0))
-  {
-    if (((LA1_ly > b[1]) || 
-        InVoronoi(b[0],a[1],A1_dot_B1,-Tba[1] - b[1],
-                  A1_dot_B0, -Tba[0], -Tab[1] - bA1_dot_B1))     
-        &&
-
-        ((UB0_ux < 0) ||             
-          InVoronoi(a[1],b[0],-A0_dot_B0, -Tab[0] - bA0_dot_B1,A1_dot_B0,
-                    Tab[1] + bA1_dot_B1,Tba[0])))
-    {
-      SegCoords(t,u,a[1],b[0],A1_dot_B0,Tab[1] + bA1_dot_B1,Tba[0]);
-
-      S[0] = Tab[0] + Rab[0][1]*b[1] + Rab[0][0]*u;
-      S[1] = Tab[1] + Rab[1][1]*b[1] + Rab[1][0]*u - t;
-      S[2] = Tab[2] + Rab[2][1]*b[1] + Rab[2][0]*u;
-      return sqrt(VdotV(S,S));
-    }
-  }
-
-  // LA1, LB0
-
-  if ((LA1_ly < 0) && (LB0_lx < 0))
-  {
-    if (((LA1_uy < 0) || 
-          InVoronoi(b[0],a[1],-A1_dot_B1,Tba[1],A1_dot_B0,
-                    -Tba[0],-Tab[1]))
-        && 
-
-        ((LB0_ux < 0) || 
-          InVoronoi(a[1],b[0],-A0_dot_B0,-Tab[0],A1_dot_B0,
-                    Tab[1],Tba[0])))
-    {
-      SegCoords(t,u,a[1],b[0],A1_dot_B0,Tab[1],Tba[0]);
-	
-      S[0] = Tab[0] + Rab[0][0]*u;
-      S[1] = Tab[1] + Rab[1][0]*u - t;
-      S[2] = Tab[2] + Rab[2][0]*u;
-      return sqrt(VdotV(S,S));
-    }
-  }
-
-  PQP_REAL BLL_y, BLU_y, BUL_y, BUU_y;
-
-  BLL_y = Tab[1];
-  BLU_y = BLL_y + bA1_dot_B1;
-  BUL_y = BLL_y + bA1_dot_B0;
-  BUU_y = BLU_y + bA1_dot_B0;
-
-  PQP_REAL LA0_lx, LA0_ux, UA0_lx, UA0_ux, LB1_ly, LB1_uy, UB1_ly, UB1_uy;
-
-  if (ALL_x < AUL_x)
-  {
-    LA0_lx = ALL_x;
-    LA0_ux = AUL_x;
-    UA0_lx = ALU_x;
-    UA0_ux = AUU_x;
-  }
-  else
-  {
-    LA0_lx = AUL_x;
-    LA0_ux = ALL_x;
-    UA0_lx = AUU_x;
-    UA0_ux = ALU_x;
-  }
-
-  if (BLL_y < BLU_y)
-  {
-    LB1_ly = BLL_y;
-    LB1_uy = BLU_y;
-    UB1_ly = BUL_y;
-    UB1_uy = BUU_y;
-  }
-  else
-  {
-    LB1_ly = BLU_y;
-    LB1_uy = BLL_y;
-    UB1_ly = BUU_y;
-    UB1_uy = BUL_y;
-  }
-    
-  // UA0, UB1
-  
-  if ((UA0_ux > b[0]) && (UB1_uy > a[1]))
-  {
-    if (((UA0_lx > b[0]) || 
-          InVoronoi(b[1],a[0],A0_dot_B0, aA1_dot_B0 - Tba[0] - b[0],
-                    A0_dot_B1,aA1_dot_B1 - Tba[1], -Tab[0] - bA0_dot_B0))
-        &&
-	
-        ((UB1_ly > a[1]) || 
-          InVoronoi(a[0],b[1],A1_dot_B1, Tab[1] - a[1] + bA1_dot_B0,
-                    A0_dot_B1,Tab[0] + bA0_dot_B0, Tba[1] - aA1_dot_B1)))
-    {
-      SegCoords(t,u,a[0],b[1],A0_dot_B1,Tab[0] + bA0_dot_B0,
-                Tba[1] - aA1_dot_B1);
-    
-      S[0] = Tab[0] + Rab[0][0]*b[0] + Rab[0][1]*u - t;
-      S[1] = Tab[1] + Rab[1][0]*b[0] + Rab[1][1]*u - a[1];
-      S[2] = Tab[2] + Rab[2][0]*b[0] + Rab[2][1]*u;
-      return sqrt(VdotV(S,S));
-    }
-  }
-
-  // UA0, LB1
-
-  if ((UA0_lx < 0) && (LB1_uy > a[1]))
-  {
-    if (((UA0_ux < 0) || 
-          InVoronoi(b[1],a[0],-A0_dot_B0, Tba[0] - aA1_dot_B0,A0_dot_B1,
-                    aA1_dot_B1 - Tba[1],-Tab[0]))
-        &&
-
-        ((LB1_ly > a[1]) || 
-          InVoronoi(a[0],b[1],A1_dot_B1,Tab[1] - a[1],A0_dot_B1,Tab[0],
-                    Tba[1] - aA1_dot_B1)))
-    {
-      SegCoords(t,u,a[0],b[1],A0_dot_B1,Tab[0],Tba[1] - aA1_dot_B1);
-
-      S[0] = Tab[0] + Rab[0][1]*u - t;
-      S[1] = Tab[1] + Rab[1][1]*u - a[1];
-      S[2] = Tab[2] + Rab[2][1]*u;
-      return sqrt(VdotV(S,S));
-    }
-  }
-
-  // LA0, UB1
-
-  if ((LA0_ux > b[0]) && (UB1_ly < 0))
-  {
-    if (((LA0_lx > b[0]) || 
-          InVoronoi(b[1],a[0],A0_dot_B0,-b[0] - Tba[0],A0_dot_B1,-Tba[1],
-                    -bA0_dot_B0 - Tab[0]))
-        &&
-
-        ((UB1_uy < 0) || 
-          InVoronoi(a[0],b[1],-A1_dot_B1, -Tab[1] - bA1_dot_B0,A0_dot_B1,
-                    Tab[0] + bA0_dot_B0,Tba[1])))
-    {
-      SegCoords(t,u,a[0],b[1],A0_dot_B1,Tab[0] + bA0_dot_B0,Tba[1]);
-
-      S[0] = Tab[0] + Rab[0][0]*b[0] + Rab[0][1]*u - t;
-      S[1] = Tab[1] + Rab[1][0]*b[0] + Rab[1][1]*u;
-      S[2] = Tab[2] + Rab[2][0]*b[0] + Rab[2][1]*u;
-      return sqrt(VdotV(S,S));
-    }
-  }
-  
-  // LA0, LB1
-
-  if ((LA0_lx < 0) && (LB1_ly < 0))
-  {
-    if (((LA0_ux < 0) || 
-          InVoronoi(b[1],a[0],-A0_dot_B0,Tba[0],A0_dot_B1,-Tba[1],
-                    -Tab[0]))
-        &&
-	
-        ((LB1_uy < 0) || 
-          InVoronoi(a[0],b[1],-A1_dot_B1,-Tab[1],A0_dot_B1,
-                    Tab[0],Tba[1])))
-    {
-      SegCoords(t,u,a[0],b[1],A0_dot_B1,Tab[0],Tba[1]);
-
-      S[0] = Tab[0] + Rab[0][1]*u - t;
-      S[1] = Tab[1] + Rab[1][1]*u;
-      S[2] = Tab[2] + Rab[2][1]*u;
-      return sqrt(VdotV(S,S));
-    }
-  }
-
-  PQP_REAL LA0_ly, LA0_uy, UA0_ly, UA0_uy, LB0_ly, LB0_uy, UB0_ly, UB0_uy;
-
-  if (ALL_y < AUL_y)
-  {
-    LA0_ly = ALL_y;
-    LA0_uy = AUL_y;
-    UA0_ly = ALU_y;
-    UA0_uy = AUU_y;
-  }
-  else
-  {
-    LA0_ly = AUL_y;
-    LA0_uy = ALL_y;
-    UA0_ly = AUU_y;
-    UA0_uy = ALU_y;
-  }
-
-  if (BLL_y < BUL_y)
-  {
-    LB0_ly = BLL_y;
-    LB0_uy = BUL_y;
-    UB0_ly = BLU_y;
-    UB0_uy = BUU_y;
-  }
-  else
-  {
-    LB0_ly = BUL_y;
-    LB0_uy = BLL_y;
-    UB0_ly = BUU_y;
-    UB0_uy = BLU_y;
-  }
-
-  // UA0, UB0
-
-  if ((UA0_uy > b[1]) && (UB0_uy > a[1]))
-  {
-    if (((UA0_ly > b[1]) || 
-          InVoronoi(b[0],a[0],A0_dot_B1, aA1_dot_B1 - Tba[1] - b[1],
-                    A0_dot_B0, aA1_dot_B0 - Tba[0], -Tab[0] - bA0_dot_B1))
-        &&
-	
-        ((UB0_ly > a[1]) || 
-          InVoronoi(a[0],b[0],A1_dot_B0,Tab[1] - a[1] + bA1_dot_B1,A0_dot_B0,
-                    Tab[0] + bA0_dot_B1, Tba[0] - aA1_dot_B0)))
-    {
-      SegCoords(t,u,a[0],b[0],A0_dot_B0,Tab[0] + bA0_dot_B1,
-                Tba[0] - aA1_dot_B0);
-      
-      S[0] = Tab[0] + Rab[0][1]*b[1] + Rab[0][0]*u - t;
-      S[1] = Tab[1] + Rab[1][1]*b[1] + Rab[1][0]*u - a[1];
-      S[2] = Tab[2] + Rab[2][1]*b[1] + Rab[2][0]*u;
-      return sqrt(VdotV(S,S));
-    }
-  }
-
-  // UA0, LB0
-
-  if ((UA0_ly < 0) && (LB0_uy > a[1]))
-  {
-    if (((UA0_uy < 0) || 
-          InVoronoi(b[0],a[0],-A0_dot_B1,Tba[1] - aA1_dot_B1,A0_dot_B0,
-                    aA1_dot_B0 - Tba[0],-Tab[0]))
-        &&      
-
-        ((LB0_ly > a[1]) || 
-          InVoronoi(a[0],b[0],A1_dot_B0,Tab[1] - a[1],
-                    A0_dot_B0,Tab[0],Tba[0] - aA1_dot_B0)))
-    {
-      SegCoords(t,u,a[0],b[0],A0_dot_B0,Tab[0],Tba[0] - aA1_dot_B0);
-
-      S[0] = Tab[0] + Rab[0][0]*u - t;
-      S[1] = Tab[1] + Rab[1][0]*u - a[1];
-      S[2] = Tab[2] + Rab[2][0]*u;
-      return sqrt(VdotV(S,S));
-    }
-  }
-
-  // LA0, UB0
-
-  if ((LA0_uy > b[1]) && (UB0_ly < 0))
-  {  
-    if (((LA0_ly > b[1]) ||
-          InVoronoi(b[0],a[0],A0_dot_B1,-Tba[1] - b[1], A0_dot_B0,-Tba[0],
-                    -Tab[0] - bA0_dot_B1))
-        &&
-	
-        ((UB0_uy < 0) ||
-          InVoronoi(a[0],b[0],-A1_dot_B0, -Tab[1] - bA1_dot_B1, A0_dot_B0,
-                    Tab[0] + bA0_dot_B1,Tba[0])))
-    {
-      SegCoords(t,u,a[0],b[0],A0_dot_B0,Tab[0] + bA0_dot_B1,Tba[0]);
-      
-      S[0] = Tab[0] + Rab[0][1]*b[1] + Rab[0][0]*u - t;
-      S[1] = Tab[1] + Rab[1][1]*b[1] + Rab[1][0]*u;
-      S[2] = Tab[2] + Rab[2][1]*b[1] + Rab[2][0]*u;
-      return sqrt(VdotV(S,S));
-    }
-  }
-
-  // LA0, LB0
-
-  if ((LA0_ly < 0) && (LB0_ly < 0))
-  {   
-    if (((LA0_uy < 0) || 
-          InVoronoi(b[0],a[0],-A0_dot_B1,Tba[1],A0_dot_B0,
-                    -Tba[0],-Tab[0]))
-        &&
-	
-        ((LB0_uy < 0) || 
-          InVoronoi(a[0],b[0],-A1_dot_B0,-Tab[1],A0_dot_B0,
-                    Tab[0],Tba[0])))
-    {
-      SegCoords(t,u,a[0],b[0],A0_dot_B0,Tab[0],Tba[0]);
-
-      S[0] = Tab[0] + Rab[0][0]*u - t;
-      S[1] = Tab[1] + Rab[1][0]*u;
-      S[2] = Tab[2] + Rab[2][0]*u;
-      return sqrt(VdotV(S,S));
-    }
-  }
-
-  // no edges passed, take max separation along face normals
-
-  PQP_REAL sep1, sep2;
- 
-  if (Tab[2] > 0.0)
-  {
-    sep1 = Tab[2];
-    if (Rab[2][0] < 0.0) sep1 += b[0]*Rab[2][0];
-    if (Rab[2][1] < 0.0) sep1 += b[1]*Rab[2][1];
-  }
-  else
-  {
-    sep1 = -Tab[2];
-    if (Rab[2][0] > 0.0) sep1 -= b[0]*Rab[2][0];
-    if (Rab[2][1] > 0.0) sep1 -= b[1]*Rab[2][1];
-  }
-  
-  if (Tba[2] < 0)
-  {
-    sep2 = -Tba[2];
-    if (Rab[0][2] < 0.0) sep2 += a[0]*Rab[0][2];
-    if (Rab[1][2] < 0.0) sep2 += a[1]*Rab[1][2];
-  }
-  else
-  {
-    sep2 = Tba[2];
-    if (Rab[0][2] > 0.0) sep2 -= a[0]*Rab[0][2];
-    if (Rab[1][2] > 0.0) sep2 -= a[1]*Rab[1][2];
-  }
-
-  PQP_REAL sep = (sep1 > sep2? sep1 : sep2);
-  return (sep > 0? sep : 0);
-}
-
-#endif
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/src/Tri.h b/trunk/PQP/build/pqp-tar/PQP_v1.3/src/Tri.h
deleted file mode 100644
index 496cddd928e5ab4fe8c5b1046f55f2a6079f4c71..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/src/Tri.h
+++ /dev/null
@@ -1,54 +0,0 @@
-/*************************************************************************\
-
-  Copyright 1999 The University of North Carolina at Chapel Hill.
-  All Rights Reserved.
-
-  Permission to use, copy, modify and distribute this software and its
-  documentation for educational, research and non-profit purposes, without
-  fee, and without a written agreement is hereby granted, provided that the
-  above copyright notice and the following three paragraphs appear in all
-  copies.
-
-  IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE
-  LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
-  CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE
-  USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY
-  OF NORTH CAROLINA HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
-  DAMAGES.
-
-  THE UNIVERSITY OF NORTH CAROLINA SPECIFICALLY DISCLAIM ANY
-  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE
-  PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
-  NORTH CAROLINA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
-  UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-
-  The authors may be contacted via:
-
-  US Mail:             S. Gottschalk
-                       Department of Computer Science
-                       Sitterson Hall, CB #3175
-                       University of N. Carolina
-                       Chapel Hill, NC 27599-3175
-
-  Phone:               (919)962-1749
-
-  EMail:               geom@cs.unc.edu
-
-
-\**************************************************************************/
-
-#ifndef PQP_TRI_H
-#define PQP_TRI_H
-
-#include "PQP_Compile.h"
-
-struct Tri
-{
-  PQP_REAL p1[3];
-  PQP_REAL p2[3];
-  PQP_REAL p3[3];
-  int id;
-};
-
-#endif
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/src/TriDist.cpp b/trunk/PQP/build/pqp-tar/PQP_v1.3/src/TriDist.cpp
deleted file mode 100644
index 3cbd438b7a7ec1aaa2c9eaa9181d9e03d4ec4b17..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/src/TriDist.cpp
+++ /dev/null
@@ -1,407 +0,0 @@
-/*************************************************************************\
-
-  Copyright 1999 The University of North Carolina at Chapel Hill.
-  All Rights Reserved.
-
-  Permission to use, copy, modify and distribute this software and its
-  documentation for educational, research and non-profit purposes, without
-  fee, and without a written agreement is hereby granted, provided that the
-  above copyright notice and the following three paragraphs appear in all
-  copies.
-
-  IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE
-  LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
-  CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE
-  USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY
-  OF NORTH CAROLINA HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
-  DAMAGES.
-
-  THE UNIVERSITY OF NORTH CAROLINA SPECIFICALLY DISCLAIM ANY
-  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE
-  PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
-  NORTH CAROLINA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
-  UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-
-  The authors may be contacted via:
-
-  US Mail:             E. Larsen
-                       Department of Computer Science
-                       Sitterson Hall, CB #3175
-                       University of N. Carolina
-                       Chapel Hill, NC 27599-3175
-
-  Phone:               (919)962-1749
-
-  EMail:               geom@cs.unc.edu
-
-
-\**************************************************************************/
-
-//--------------------------------------------------------------------------
-// File:   TriDist.cpp
-// Author: Eric Larsen
-// Description:
-// contains SegPoints() for finding closest points on a pair of line
-// segments and TriDist() for finding closest points on a pair of triangles
-//--------------------------------------------------------------------------
-
-#include "MatVec.h"
-#ifdef _WIN32
-#include <float.h>
-#define isnan _isnan
-#endif
-
-//--------------------------------------------------------------------------
-// SegPoints() 
-//
-// Returns closest points between an segment pair.
-// Implemented from an algorithm described in
-//
-// Vladimir J. Lumelsky,
-// On fast computation of distance between line segments.
-// In Information Processing Letters, no. 21, pages 55-61, 1985.   
-//--------------------------------------------------------------------------
-
-void
-SegPoints(PQP_REAL VEC[3], 
-	  PQP_REAL X[3], PQP_REAL Y[3],             // closest points
-          const PQP_REAL P[3], const PQP_REAL A[3], // seg 1 origin, vector
-          const PQP_REAL Q[3], const PQP_REAL B[3]) // seg 2 origin, vector
-{
-  PQP_REAL T[3], A_dot_A, B_dot_B, A_dot_B, A_dot_T, B_dot_T;
-  PQP_REAL TMP[3];
-
-  VmV(T,Q,P);
-  A_dot_A = VdotV(A,A);
-  B_dot_B = VdotV(B,B);
-  A_dot_B = VdotV(A,B);
-  A_dot_T = VdotV(A,T);
-  B_dot_T = VdotV(B,T);
-
-  // t parameterizes ray P,A 
-  // u parameterizes ray Q,B 
-
-  PQP_REAL t,u;
-
-  // compute t for the closest point on ray P,A to
-  // ray Q,B
-
-  PQP_REAL denom = A_dot_A*B_dot_B - A_dot_B*A_dot_B;
-
-  t = (A_dot_T*B_dot_B - B_dot_T*A_dot_B) / denom;
-
-  // clamp result so t is on the segment P,A
-
-  if ((t < 0) || isnan(t)) t = 0; else if (t > 1) t = 1;
-
-  // find u for point on ray Q,B closest to point at t
-
-  u = (t*A_dot_B - B_dot_T) / B_dot_B;
-
-  // if u is on segment Q,B, t and u correspond to 
-  // closest points, otherwise, clamp u, recompute and
-  // clamp t 
-
-  if ((u <= 0) || isnan(u)) {
-
-    VcV(Y, Q);
-
-    t = A_dot_T / A_dot_A;
-
-    if ((t <= 0) || isnan(t)) {
-      VcV(X, P);
-      VmV(VEC, Q, P);
-    }
-    else if (t >= 1) {
-      VpV(X, P, A);
-      VmV(VEC, Q, X);
-    }
-    else {
-      VpVxS(X, P, A, t);
-      VcrossV(TMP, T, A);
-      VcrossV(VEC, A, TMP);
-    }
-  }
-  else if (u >= 1) {
-
-    VpV(Y, Q, B);
-
-    t = (A_dot_B + A_dot_T) / A_dot_A;
-
-    if ((t <= 0) || isnan(t)) {
-      VcV(X, P);
-      VmV(VEC, Y, P);
-    }
-    else if (t >= 1) {
-      VpV(X, P, A);
-      VmV(VEC, Y, X);
-    }
-    else {
-      VpVxS(X, P, A, t);
-      VmV(T, Y, P);
-      VcrossV(TMP, T, A);
-      VcrossV(VEC, A, TMP);
-    }
-  }
-  else {
-
-    VpVxS(Y, Q, B, u);
-
-    if ((t <= 0) || isnan(t)) {
-      VcV(X, P);
-      VcrossV(TMP, T, B);
-      VcrossV(VEC, B, TMP);
-    }
-    else if (t >= 1) {
-      VpV(X, P, A);
-      VmV(T, Q, X);
-      VcrossV(TMP, T, B);
-      VcrossV(VEC, B, TMP);
-    }
-    else {
-      VpVxS(X, P, A, t);
-      VcrossV(VEC, A, B);
-      if (VdotV(VEC, T) < 0) {
-        VxS(VEC, VEC, -1);
-      }
-    }
-  }
-}
-
-//--------------------------------------------------------------------------
-// TriDist() 
-//
-// Computes the closest points on two triangles, and returns the 
-// distance between them.
-// 
-// S and T are the triangles, stored tri[point][dimension].
-//
-// If the triangles are disjoint, P and Q give the closest points of 
-// S and T respectively. However, if the triangles overlap, P and Q 
-// are basically a random pair of points from the triangles, not 
-// coincident points on the intersection of the triangles, as might 
-// be expected.
-//--------------------------------------------------------------------------
-
-PQP_REAL 
-TriDist(PQP_REAL P[3], PQP_REAL Q[3],
-        const PQP_REAL S[3][3], const PQP_REAL T[3][3])  
-{
-  // Compute vectors along the 6 sides
-
-  PQP_REAL Sv[3][3], Tv[3][3];
-  PQP_REAL VEC[3];
-
-  VmV(Sv[0],S[1],S[0]);
-  VmV(Sv[1],S[2],S[1]);
-  VmV(Sv[2],S[0],S[2]);
-
-  VmV(Tv[0],T[1],T[0]);
-  VmV(Tv[1],T[2],T[1]);
-  VmV(Tv[2],T[0],T[2]);
-
-  // For each edge pair, the vector connecting the closest points 
-  // of the edges defines a slab (parallel planes at head and tail
-  // enclose the slab). If we can show that the off-edge vertex of 
-  // each triangle is outside of the slab, then the closest points
-  // of the edges are the closest points for the triangles.
-  // Even if these tests fail, it may be helpful to know the closest
-  // points found, and whether the triangles were shown disjoint
-
-  PQP_REAL V[3];
-  PQP_REAL Z[3];
-  PQP_REAL minP[3], minQ[3], mindd;
-  int shown_disjoint = 0;
-
-  mindd = VdistV2(S[0],T[0]) + 1;  // Set first minimum safely high
-
-  for (int i = 0; i < 3; i++)
-  {
-    for (int j = 0; j < 3; j++)
-    {
-      // Find closest points on edges i & j, plus the 
-      // vector (and distance squared) between these points
-
-      SegPoints(VEC,P,Q,S[i],Sv[i],T[j],Tv[j]);
-      
-      VmV(V,Q,P);
-      PQP_REAL dd = VdotV(V,V);
-
-      // Verify this closest point pair only if the distance 
-      // squared is less than the minimum found thus far.
-
-      if (dd <= mindd)
-      {
-        VcV(minP,P);
-        VcV(minQ,Q);
-        mindd = dd;
-
-        VmV(Z,S[(i+2)%3],P);
-        PQP_REAL a = VdotV(Z,VEC);
-        VmV(Z,T[(j+2)%3],Q);
-        PQP_REAL b = VdotV(Z,VEC);
-
-        if ((a <= 0) && (b >= 0)) return sqrt(dd);
-
-        PQP_REAL p = VdotV(V, VEC);
-
-        if (a < 0) a = 0;
-        if (b > 0) b = 0;
-        if ((p - a + b) > 0) shown_disjoint = 1;	
-      }
-    }
-  }
-
-  // No edge pairs contained the closest points.  
-  // either:
-  // 1. one of the closest points is a vertex, and the
-  //    other point is interior to a face.
-  // 2. the triangles are overlapping.
-  // 3. an edge of one triangle is parallel to the other's face. If
-  //    cases 1 and 2 are not true, then the closest points from the 9
-  //    edge pairs checks above can be taken as closest points for the
-  //    triangles.
-  // 4. possibly, the triangles were degenerate.  When the 
-  //    triangle points are nearly colinear or coincident, one 
-  //    of above tests might fail even though the edges tested
-  //    contain the closest points.
-
-  // First check for case 1
-
-  PQP_REAL Sn[3], Snl;       
-  VcrossV(Sn,Sv[0],Sv[1]); // Compute normal to S triangle
-  Snl = VdotV(Sn,Sn);      // Compute square of length of normal
-  
-  // If cross product is long enough,
-
-  if (Snl > 1e-15)  
-  {
-    // Get projection lengths of T points
-
-    PQP_REAL Tp[3]; 
-
-    VmV(V,S[0],T[0]);
-    Tp[0] = VdotV(V,Sn);
-
-    VmV(V,S[0],T[1]);
-    Tp[1] = VdotV(V,Sn);
-
-    VmV(V,S[0],T[2]);
-    Tp[2] = VdotV(V,Sn);
-
-    // If Sn is a separating direction,
-    // find point with smallest projection
-
-    int point = -1;
-    if ((Tp[0] > 0) && (Tp[1] > 0) && (Tp[2] > 0))
-    {
-      if (Tp[0] < Tp[1]) point = 0; else point = 1;
-      if (Tp[2] < Tp[point]) point = 2;
-    }
-    else if ((Tp[0] < 0) && (Tp[1] < 0) && (Tp[2] < 0))
-    {
-      if (Tp[0] > Tp[1]) point = 0; else point = 1;
-      if (Tp[2] > Tp[point]) point = 2;
-    }
-
-    // If Sn is a separating direction, 
-
-    if (point >= 0) 
-    {
-      shown_disjoint = 1;
-
-      // Test whether the point found, when projected onto the 
-      // other triangle, lies within the face.
-    
-      VmV(V,T[point],S[0]);
-      VcrossV(Z,Sn,Sv[0]);
-      if (VdotV(V,Z) > 0)
-      {
-        VmV(V,T[point],S[1]);
-        VcrossV(Z,Sn,Sv[1]);
-        if (VdotV(V,Z) > 0)
-        {
-          VmV(V,T[point],S[2]);
-          VcrossV(Z,Sn,Sv[2]);
-          if (VdotV(V,Z) > 0)
-          {
-            // T[point] passed the test - it's a closest point for 
-            // the T triangle; the other point is on the face of S
-
-            VpVxS(P,T[point],Sn,Tp[point]/Snl);
-            VcV(Q,T[point]);
-            return sqrt(VdistV2(P,Q));
-          }
-        }
-      }
-    }
-  }
-
-  PQP_REAL Tn[3], Tnl;       
-  VcrossV(Tn,Tv[0],Tv[1]); 
-  Tnl = VdotV(Tn,Tn);      
-  
-  if (Tnl > 1e-15)  
-  {
-    PQP_REAL Sp[3]; 
-
-    VmV(V,T[0],S[0]);
-    Sp[0] = VdotV(V,Tn);
-
-    VmV(V,T[0],S[1]);
-    Sp[1] = VdotV(V,Tn);
-
-    VmV(V,T[0],S[2]);
-    Sp[2] = VdotV(V,Tn);
-
-    int point = -1;
-    if ((Sp[0] > 0) && (Sp[1] > 0) && (Sp[2] > 0))
-    {
-      if (Sp[0] < Sp[1]) point = 0; else point = 1;
-      if (Sp[2] < Sp[point]) point = 2;
-    }
-    else if ((Sp[0] < 0) && (Sp[1] < 0) && (Sp[2] < 0))
-    {
-      if (Sp[0] > Sp[1]) point = 0; else point = 1;
-      if (Sp[2] > Sp[point]) point = 2;
-    }
-
-    if (point >= 0) 
-    { 
-      shown_disjoint = 1;
-
-      VmV(V,S[point],T[0]);
-      VcrossV(Z,Tn,Tv[0]);
-      if (VdotV(V,Z) > 0)
-      {
-        VmV(V,S[point],T[1]);
-        VcrossV(Z,Tn,Tv[1]);
-        if (VdotV(V,Z) > 0)
-        {
-          VmV(V,S[point],T[2]);
-          VcrossV(Z,Tn,Tv[2]);
-          if (VdotV(V,Z) > 0)
-          {
-            VcV(P,S[point]);
-            VpVxS(Q,S[point],Tn,Sp[point]/Tnl);
-            return sqrt(VdistV2(P,Q));
-          }
-        }
-      }
-    }
-  }
-
-  // Case 1 can't be shown.
-  // If one of these tests showed the triangles disjoint,
-  // we assume case 3 or 4, otherwise we conclude case 2, 
-  // that the triangles overlap.
-  
-  if (shown_disjoint)
-  {
-    VcV(P,minP);
-    VcV(Q,minQ);
-    return sqrt(mindd);
-  }
-  else return 0;
-}
diff --git a/trunk/PQP/build/pqp-tar/PQP_v1.3/src/TriDist.h b/trunk/PQP/build/pqp-tar/PQP_v1.3/src/TriDist.h
deleted file mode 100644
index dd20a8c3eac4fa47d53cfb012d2fa9a961542de0..0000000000000000000000000000000000000000
--- a/trunk/PQP/build/pqp-tar/PQP_v1.3/src/TriDist.h
+++ /dev/null
@@ -1,63 +0,0 @@
-/*************************************************************************\
-
-  Copyright 1999 The University of North Carolina at Chapel Hill.
-  All Rights Reserved.
-
-  Permission to use, copy, modify and distribute this software and its
-  documentation for educational, research and non-profit purposes, without
-  fee, and without a written agreement is hereby granted, provided that the
-  above copyright notice and the following three paragraphs appear in all
-  copies.
-
-  IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE
-  LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
-  CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE
-  USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY
-  OF NORTH CAROLINA HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
-  DAMAGES.
-
-  THE UNIVERSITY OF NORTH CAROLINA SPECIFICALLY DISCLAIM ANY
-  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE
-  PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
-  NORTH CAROLINA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
-  UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-
-  The authors may be contacted via:
-
-  US Mail:             E. Larsen
-                       Department of Computer Science
-                       Sitterson Hall, CB #3175
-                       University of N. Carolina
-                       Chapel Hill, NC 27599-3175
-
-  Phone:               (919)962-1749
-
-  EMail:               geom@cs.unc.edu
-
-
-\**************************************************************************/
-
-#ifndef PQP_TRIDIST_H
-#define PQP_TRIDIST_H
-
-#include "PQP_Compile.h"
-
-// TriDist()
-//
-// computes the closest points on two triangles, and returns the 
-// distance between them.
-// 
-// s and t are the triangles, stored tri[point][dimension].
-//
-// If the triangles are disjoint, p and q give the closest points of 
-// s and t respectively. However, if the triangles overlap, p and q 
-// are basically a random pair of points from the triangles, not 
-// coincident points on the intersection of the triangles, as might 
-// be expected.
-
-PQP_REAL 
-TriDist(PQP_REAL p[3], PQP_REAL q[3], 
-        const PQP_REAL s[3][3], const PQP_REAL t[3][3]);
-
-#endif
diff --git a/trunk/PQP/build/pqp-tar/unpacked b/trunk/PQP/build/pqp-tar/unpacked
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/trunk/PQP/installed b/trunk/PQP/installed
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/trunk/PQP/mainpage.dox b/trunk/PQP/mainpage.dox
deleted file mode 100644
index c315b415aebe971a6949979c8bd8f869c5180c15..0000000000000000000000000000000000000000
--- a/trunk/PQP/mainpage.dox
+++ /dev/null
@@ -1,26 +0,0 @@
-/**
-\mainpage
-\htmlinclude manifest.html
-
-\b PQP is ... 
-
-<!-- 
-Provide an overview of your package.
--->
-
-
-\section codeapi Code API
-
-<!--
-Provide links to specific auto-generated API documentation within your
-package that is of particular interest to a reader. Doxygen will
-document pretty much every part of your code, so do your best here to
-point the reader to the actual API.
-
-If your codebase is fairly large or has different sets of APIs, you
-should use the doxygen 'group' tag to keep these APIs together. For
-example, the roscpp documentation has 'libros' group.
--->
-
-
-*/
diff --git a/trunk/PQP/manifest.xml b/trunk/PQP/manifest.xml
deleted file mode 100644
index 6e8014660196b5f473892e28ba4b28475d48b66d..0000000000000000000000000000000000000000
--- a/trunk/PQP/manifest.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<package>
-  <description brief="PQP">
-    This package is a wrapper on the PQP library available from <a href="http://gamma.cs.unc.edu/software/downloads/SSV">here</a>. This package does not modify the contents of the original library in any manner and only wraps it for easy distribution with the ROS packaging system. PQP is not under BSD license and is optional for FCL. Users can choose to use PQP by setting flag USE_PQP=1 in FCL.
-  </description>
-  <author>Maintained by Jia Pan and Sachin Chitta</author>
-  <license>BSD</license>
-  <review status="unreviewed" notes=""/>
-  <url>http://ros.org/wiki/PQP</url>
-  <export>
-    <cpp cflags="-I${prefix}/PQP/include" lflags="-L${prefix}/PQP/lib -Wl,-rpath,${prefix}/PQP/lib -lPQP"/>
-  </export>
-
-</package>
-
-
diff --git a/trunk/PQP/pqp.diff b/trunk/PQP/pqp.diff
deleted file mode 100644
index 9a972d9954478e40046e40d538fccfec65ac0995..0000000000000000000000000000000000000000
--- a/trunk/PQP/pqp.diff
+++ /dev/null
@@ -1,10 +0,0 @@
---- PQP_v1.3/Makefile	2002-04-21 12:55:38.000000000 -0400
-+++ PQP_v1.3/Makefile	2011-09-06 23:17:24.535133167 -0400
-@@ -1,6 +1,6 @@
- CC = g++
- 
--CFLAGS		= -O2 -I.
-+CFLAGS		= -O2 -fPIC -I.
- 
- .SUFFIXES: .C .cpp
- 
diff --git a/trunk/PQP/wiped b/trunk/PQP/wiped
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/trunk/svm_light/Makefile b/trunk/svm_light/Makefile
deleted file mode 100644
index 3a68c58d65ed3b288c6112b76a2b9c4602bdf793..0000000000000000000000000000000000000000
--- a/trunk/svm_light/Makefile
+++ /dev/null
@@ -1,37 +0,0 @@
-all: installed
-
-#
-# Download, extract and compile from a released tarball:
-#
-TARBALL = build/svm_light.tar.gz
-TARBALL_URL = http://download.joachims.org/svm_light/current/svm_light.tar.gz
-TARBALL_PATCH = svm_light.diff
-UNPACK_CMD = mkdir svm_light; tar -C svm_light -xzf
-INITIAL_DIR = build/svm_light
-SOURCE_DIR = build/svm_light-tar
-include $(shell rospack find mk)/download_unpack_build.mk
-
-INSTALL_DIR = svm_light
-CMAKE = cmake 
-CMAKE_ARGS = -D CMAKE_BUILD_TYPE="Release" -D CMAKE_INSTALL_PREFIX=`rospack find svm_light`/$(INSTALL_DIR) 
-MAKE = make
-
-installed: wiped $(SOURCE_DIR)/unpacked
-	cd $(SOURCE_DIR) && make libsvmlight_hideo $(ROS_PARALLEL_JOBS)
-	mkdir -p $(INSTALL_DIR)/lib
-	mkdir -p $(INSTALL_DIR)/include
-	mkdir -p $(INSTALL_DIR)/include/svm_light
-	cp -r $(SOURCE_DIR)/*.h $(INSTALL_DIR)/include/svm_light
-	cp -r $(SOURCE_DIR)/*.so $(INSTALL_DIR)/lib
-	touch installed
-
-clean:
-	rm -rf build
-	rm -rf $(INSTALL_DIR) installed
-
-wiped: Makefile
-	make wipe
-	touch wiped
-
-wipe: clean
-	rm -rf build patched
diff --git a/trunk/svm_light/build/svm_light-tar/LICENSE.txt b/trunk/svm_light/build/svm_light-tar/LICENSE.txt
deleted file mode 100755
index 28d6db09f54f5efad2fd03db0d3a36be32844e9b..0000000000000000000000000000000000000000
--- a/trunk/svm_light/build/svm_light-tar/LICENSE.txt
+++ /dev/null
@@ -1,59 +0,0 @@
-SVM-Light
----------
-
-Available at http://svmlight.joachims.org/
-
-Author: Thorsten Joachims
-	thorsten@joachims.org
-
-	Cornell University
-	Department of Computer Science
-	4153 Upson Hall
-	Ithaca, NY 14853
-	USA
-
-LICENSING TERMS 
-
-This program is granted free of charge for research and education
-purposes. However you must obtain a license from the author to use it
-for commercial purposes.
-
-Scientific results produced using the software provided shall
-acknowledge the use of SVM-Light. Please cite as  
-
-       T. Joachims, Making large-Scale SVM Learning
-       Practical. Advances in Kernel Methods - Support Vector
-       Learning, B. Schölkopf and C. Burges and A. Smola (ed.),
-       MIT-Press, 1999. 
-       http://www-ai.cs.uni-dortmund.de/DOKUMENTE/joachims_99a.pdf
-
-Moreover shall the author of SVM-Light be informed about the
-publication.
-
-The software must not be modified and distributed without prior
-permission of the author.
-
-By using SVM-Light you agree to the licensing terms.
-
-
-NO WARRANTY 
-
-BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
-FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT
-WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER
-PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND,
-EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
-PROGRAM IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME
-THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
-
-IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
-WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
-REDISTRIBUTE THE PROGRAM, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
-GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF
-THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO
-LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
-YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY
-OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED
-OF THE POSSIBILITY OF SUCH DAMAGES.
diff --git a/trunk/svm_light/build/svm_light-tar/Makefile b/trunk/svm_light/build/svm_light-tar/Makefile
deleted file mode 100755
index 7bb164821c86ef9bdfd1f2ea69f8a3ed1690e34e..0000000000000000000000000000000000000000
--- a/trunk/svm_light/build/svm_light-tar/Makefile
+++ /dev/null
@@ -1,105 +0,0 @@
-#
-# makefile for svm_light 
-#
-# Thorsten Joachims, 2002
-#
-
-#Use the following to compile under unix or cygwin
-CC = gcc
-LD = gcc
-
-#Uncomment the following line to make CYGWIN produce stand-alone Windows executables
-#SFLAGS= -mno-cygwin
-
-CFLAGS=  $(SFLAGS) -fPIC -O3                     # release C-Compiler flags
-LFLAGS=  $(SFLAGS) -O3                     # release linker flags
-#CFLAGS= $(SFLAGS) -pg -Wall -pedantic      # debugging C-Compiler flags
-#LFLAGS= $(SFLAGS) -pg                      # debugging linker flags
-LIBS=-L. -lm                               # used libraries
-
-all: svm_learn_hideo svm_classify
-
-tidy: 
-	rm -f *.o 
-	rm -f pr_loqo/*.o
-
-clean:	tidy
-	rm -f svm_learn
-	rm -f svm_classify
-	rm -f libsvmlight.so
-
-help:   info
-
-info:
-	@echo
-	@echo "make for SVM-light               Thorsten Joachims, 1998"
-	@echo
-	@echo "Thanks to Ralf Herbrich for the initial version."
-	@echo 
-	@echo "USAGE: make [svm_learn | svm_learn_loqo | svm_learn_hideo | "
-	@echo "             libsvmlight_hideo | libsvmlight_loqo | "
-	@echo "             svm_classify | all | clean | tidy]"
-	@echo 
-	@echo "    svm_learn           builds the learning module (prefers HIDEO)"
-	@echo "    svm_learn_hideo     builds the learning module using HIDEO optimizer"
-	@echo "    svm_learn_loqo      builds the learning module using PR_LOQO optimizer"
-	@echo "    svm_classify        builds the classfication module"
-	@echo "    libsvmlight_hideo   builds shared object library that can be linked into"
-	@echo "                        other code using HIDEO"
-	@echo "    libsvmlight_loqo    builds shared object library that can be linked into"
-	@echo "                        other code using PR_LOQO"
-	@echo "    all (default)       builds svm_learn + svm_classify"
-	@echo "    clean               removes .o and target files"
-	@echo "    tidy                removes .o files"
-	@echo
-
-# Create executables svm_learn and svm_classify
-
-svm_learn_hideo: svm_learn_main.o svm_learn.o svm_common.o svm_hideo.o 
-	$(LD) $(LFLAGS) svm_learn_main.o svm_learn.o svm_common.o svm_hideo.o -o svm_learn $(LIBS)
-
-#svm_learn_loqo: svm_learn_main.o svm_learn.o svm_common.o svm_loqo.o loqo
-#	$(LD) $(LFLAGS) svm_learn_main.o svm_learn.o svm_common.o svm_loqo.o pr_loqo/pr_loqo.o -o svm_learn $(LIBS)
-
-svm_classify: svm_classify.o svm_common.o 
-	$(LD) $(LFLAGS) svm_classify.o svm_common.o -o svm_classify $(LIBS)
-
-
-# Create library libsvmlight.so, so that external code can get access to the
-# learning and classification functions of svm-light by linking this library.
-
-svm_learn_hideo_noexe: svm_learn_main.o svm_learn.o svm_common.o svm_hideo.o 
-
-libsvmlight_hideo: svm_learn_main.o svm_learn.o svm_common.o svm_hideo.o 
-	$(LD) -shared svm_learn.o svm_common.o svm_hideo.o -o libsvmlight.so
-
-#svm_learn_loqo_noexe: svm_learn_main.o svm_learn.o svm_common.o svm_loqo.o loqo
-
-#libsvmlight_loqo: svm_learn_main.o svm_learn.o svm_common.o svm_loqo.o 
-#	$(LD) -shared svm_learn.o svm_common.o svm_loqo.o  pr_loqo/pr_loqo.o -o libsvmlight.so
-
-# Compile components
-
-svm_hideo.o: svm_hideo.c
-	$(CC) -c $(CFLAGS) svm_hideo.c -o svm_hideo.o 
-
-#svm_loqo.o: svm_loqo.c 
-#	$(CC) -c $(CFLAGS) svm_loqo.c -o svm_loqo.o 
-
-svm_common.o: svm_common.c svm_common.h kernel.h
-	$(CC) -c $(CFLAGS) svm_common.c -o svm_common.o 
-
-svm_learn.o: svm_learn.c svm_common.h
-	$(CC) -c $(CFLAGS) svm_learn.c -o svm_learn.o 
-
-svm_learn_main.o: svm_learn_main.c svm_learn.h svm_common.h
-	$(CC) -c $(CFLAGS) svm_learn_main.c -o svm_learn_main.o 
-
-svm_classify.o: svm_classify.c svm_common.h kernel.h
-	$(CC) -c $(CFLAGS) svm_classify.c -o svm_classify.o
-
-#loqo: pr_loqo/pr_loqo.o
-
-#pr_loqo/pr_loqo.o: pr_loqo/pr_loqo.c
-#	$(CC) -c $(CFLAGS) pr_loqo/pr_loqo.c -o pr_loqo/pr_loqo.o
-
diff --git a/trunk/svm_light/build/svm_light-tar/kernel.h b/trunk/svm_light/build/svm_light-tar/kernel.h
deleted file mode 100755
index 0133b00661fe990c832eabe2f110166c991b814e..0000000000000000000000000000000000000000
--- a/trunk/svm_light/build/svm_light-tar/kernel.h
+++ /dev/null
@@ -1,40 +0,0 @@
-/************************************************************************/
-/*                                                                      */
-/*   kernel.h                                                           */
-/*                                                                      */
-/*   User defined kernel function. Feel free to plug in your own.       */
-/*                                                                      */
-/*   Copyright: Thorsten Joachims                                       */
-/*   Date: 16.12.97                                                     */
-/*                                                                      */
-/************************************************************************/
-
-/* KERNEL_PARM is defined in svm_common.h The field 'custom' is reserved for */
-/* parameters of the user defined kernel. You can also access and use */
-/* the parameters of the other kernels. Just replace the line 
-             return((double)(1.0)); 
-   with your own kernel. */
-
-  /* Example: The following computes the polynomial kernel. sprod_ss
-              computes the inner product between two sparse vectors. 
-
-      return((CFLOAT)pow(kernel_parm->coef_lin*sprod_ss(a->words,b->words)
-             +kernel_parm->coef_const,(double)kernel_parm->poly_degree)); 
-  */
-
-/* If you are implementing a kernel that is not based on a
-   feature/value representation, you might want to make use of the
-   field "userdefined" in SVECTOR. By default, this field will contain
-   whatever string you put behind a # sign in the example file. So, if
-   a line in your training file looks like
-
-   -1 1:3 5:6 #abcdefg
-
-   then the SVECTOR field "words" will contain the vector 1:3 5:6, and
-   "userdefined" will contain the string "abcdefg". */
-
-double custom_kernel(KERNEL_PARM *kernel_parm, SVECTOR *a, SVECTOR *b) 
-     /* plug in you favorite kernel */                          
-{
-  return((double)(1.0)); 
-}
diff --git a/trunk/svm_light/build/svm_light-tar/svm_classify.c b/trunk/svm_light/build/svm_light-tar/svm_classify.c
deleted file mode 100755
index 0b0333b05b6df2aa0ede76ee76e4b323c1e67c6d..0000000000000000000000000000000000000000
--- a/trunk/svm_light/build/svm_light-tar/svm_classify.c
+++ /dev/null
@@ -1,197 +0,0 @@
-/***********************************************************************/
-/*                                                                     */
-/*   svm_classify.c                                                    */
-/*                                                                     */
-/*   Classification module of Support Vector Machine.                  */
-/*                                                                     */
-/*   Author: Thorsten Joachims                                         */
-/*   Date: 02.07.02                                                    */
-/*                                                                     */
-/*   Copyright (c) 2002  Thorsten Joachims - All rights reserved       */
-/*                                                                     */
-/*   This software is available for non-commercial use only. It must   */
-/*   not be modified and distributed without prior permission of the   */
-/*   author. The author is not responsible for implications from the   */
-/*   use of this software.                                             */
-/*                                                                     */
-/************************************************************************/
-
-# include "svm_common.h"
-
-char docfile[200];
-char modelfile[200];
-char predictionsfile[200];
-
-void read_input_parameters(int, char **, char *, char *, char *, long *, 
-			   long *);
-void print_help(void);
-
-
-int main (int argc, char* argv[])
-{
-  DOC *doc;   /* test example */
-  WORD *words;
-  long max_docs,max_words_doc,lld;
-  long totdoc=0,queryid,slackid;
-  long correct=0,incorrect=0,no_accuracy=0;
-  long res_a=0,res_b=0,res_c=0,res_d=0,wnum,pred_format;
-  long j;
-  double t1,runtime=0;
-  double dist,doc_label,costfactor;
-  char *line,*comment; 
-  FILE *predfl,*docfl;
-  MODEL *model; 
-
-  read_input_parameters(argc,argv,docfile,modelfile,predictionsfile,
-			&verbosity,&pred_format);
-
-  nol_ll(docfile,&max_docs,&max_words_doc,&lld); /* scan size of input file */
-  max_words_doc+=2;
-  lld+=2;
-
-  line = (char *)my_malloc(sizeof(char)*lld);
-  words = (WORD *)my_malloc(sizeof(WORD)*(max_words_doc+10));
-
-  model=read_model(modelfile);
-
-  if(model->kernel_parm.kernel_type == 0) { /* linear kernel */
-    /* compute weight vector */
-    add_weight_vector_to_linear_model(model);
-  }
-  
-  if(verbosity>=2) {
-    printf("Classifying test examples.."); fflush(stdout);
-  }
-
-  if ((docfl = fopen (docfile, "r")) == NULL)
-  { perror (docfile); exit (1); }
-  if ((predfl = fopen (predictionsfile, "w")) == NULL)
-  { perror (predictionsfile); exit (1); }
-
-  while((!feof(docfl)) && fgets(line,(int)lld,docfl)) {
-    if(line[0] == '#') continue;  /* line contains comments */
-    parse_document(line,words,&doc_label,&queryid,&slackid,&costfactor,&wnum,
-		   max_words_doc,&comment);
-    totdoc++;
-    if(model->kernel_parm.kernel_type == 0) {   /* linear kernel */
-      for(j=0;(words[j]).wnum != 0;j++) {  /* Check if feature numbers   */
-	if((words[j]).wnum>model->totwords) /* are not larger than in     */
-	  (words[j]).wnum=0;               /* model. Remove feature if   */
-      }                                        /* necessary.                 */
-      doc = create_example(-1,0,0,0.0,create_svector(words,comment,1.0));
-      t1=get_runtime();
-      dist=classify_example_linear(model,doc);
-      runtime+=(get_runtime()-t1);
-      free_example(doc,1);
-    }
-    else {                             /* non-linear kernel */
-      doc = create_example(-1,0,0,0.0,create_svector(words,comment,1.0));
-      t1=get_runtime();
-      dist=classify_example(model,doc);
-      runtime+=(get_runtime()-t1);
-      free_example(doc,1);
-    }
-    if(dist>0) {
-      if(pred_format==0) { /* old weired output format */
-	fprintf(predfl,"%.8g:+1 %.8g:-1\n",dist,-dist);
-      }
-      if(doc_label>0) correct++; else incorrect++;
-      if(doc_label>0) res_a++; else res_b++;
-    }
-    else {
-      if(pred_format==0) { /* old weired output format */
-	fprintf(predfl,"%.8g:-1 %.8g:+1\n",-dist,dist);
-      }
-      if(doc_label<0) correct++; else incorrect++;
-      if(doc_label>0) res_c++; else res_d++;
-    }
-    if(pred_format==1) { /* output the value of decision function */
-      fprintf(predfl,"%.8g\n",dist);
-    }
-    if((int)(0.01+(doc_label*doc_label)) != 1) 
-      { no_accuracy=1; } /* test data is not binary labeled */
-    if(verbosity>=2) {
-      if(totdoc % 100 == 0) {
-	printf("%ld..",totdoc); fflush(stdout);
-      }
-    }
-  }  
-  fclose(predfl);
-  fclose(docfl);
-  free(line);
-  free(words);
-  free_model(model,1);
-
-  if(verbosity>=2) {
-    printf("done\n");
-
-/*   Note by Gary Boone                     Date: 29 April 2000        */
-/*      o Timing is inaccurate. The timer has 0.01 second resolution.  */
-/*        Because classification of a single vector takes less than    */
-/*        0.01 secs, the timer was underflowing.                       */
-    printf("Runtime (without IO) in cpu-seconds: %.2f\n",
-	   (float)(runtime/100.0));
-    
-  }
-  if((!no_accuracy) && (verbosity>=1)) {
-    printf("Accuracy on test set: %.2f%% (%ld correct, %ld incorrect, %ld total)\n",(float)(correct)*100.0/totdoc,correct,incorrect,totdoc);
-    printf("Precision/recall on test set: %.2f%%/%.2f%%\n",(float)(res_a)*100.0/(res_a+res_b),(float)(res_a)*100.0/(res_a+res_c));
-  }
-
-  return(0);
-}
-
-void read_input_parameters(int argc, char **argv, char *docfile, 
-			   char *modelfile, char *predictionsfile, 
-			   long int *verbosity, long int *pred_format)
-{
-  long i;
-  
-  /* set default */
-  strcpy (modelfile, "svm_model");
-  strcpy (predictionsfile, "svm_predictions"); 
-  (*verbosity)=2;
-  (*pred_format)=1;
-
-  for(i=1;(i<argc) && ((argv[i])[0] == '-');i++) {
-    switch ((argv[i])[1]) 
-      { 
-      case 'h': print_help(); exit(0);
-      case 'v': i++; (*verbosity)=atol(argv[i]); break;
-      case 'f': i++; (*pred_format)=atol(argv[i]); break;
-      default: printf("\nUnrecognized option %s!\n\n",argv[i]);
-	       print_help();
-	       exit(0);
-      }
-  }
-  if((i+1)>=argc) {
-    printf("\nNot enough input parameters!\n\n");
-    print_help();
-    exit(0);
-  }
-  strcpy (docfile, argv[i]);
-  strcpy (modelfile, argv[i+1]);
-  if((i+2)<argc) {
-    strcpy (predictionsfile, argv[i+2]);
-  }
-  if(((*pred_format) != 0) && ((*pred_format) != 1)) {
-    printf("\nOutput format can only take the values 0 or 1!\n\n");
-    print_help();
-    exit(0);
-  }
-}
-
-void print_help(void)
-{
-  printf("\nSVM-light %s: Support Vector Machine, classification module     %s\n",VERSION,VERSION_DATE);
-  copyright_notice();
-  printf("   usage: svm_classify [options] example_file model_file output_file\n\n");
-  printf("options: -h         -> this help\n");
-  printf("         -v [0..3]  -> verbosity level (default 2)\n");
-  printf("         -f [0,1]   -> 0: old output format of V1.0\n");
-  printf("                    -> 1: output the value of decision function (default)\n\n");
-}
-
-
-
-
diff --git a/trunk/svm_light/build/svm_light-tar/svm_common.c b/trunk/svm_light/build/svm_light-tar/svm_common.c
deleted file mode 100755
index 61e72800e3aef9af54111b35cfe432ff275b8205..0000000000000000000000000000000000000000
--- a/trunk/svm_light/build/svm_light-tar/svm_common.c
+++ /dev/null
@@ -1,985 +0,0 @@
-/************************************************************************/
-/*                                                                      */
-/*   svm_common.c                                                       */
-/*                                                                      */
-/*   Definitions and functions used in both svm_learn and svm_classify. */
-/*                                                                      */
-/*   Author: Thorsten Joachims                                          */
-/*   Date: 02.07.04                                                     */
-/*                                                                      */
-/*   Copyright (c) 2004  Thorsten Joachims - All rights reserved        */
-/*                                                                      */
-/*   This software is available for non-commercial use only. It must    */
-/*   not be modified and distributed without prior permission of the    */
-/*   author. The author is not responsible for implications from the    */
-/*   use of this software.                                              */
-/*                                                                      */
-/************************************************************************/
-
-# include "ctype.h"
-# include "svm_common.h"
-# include "kernel.h"           /* this contains a user supplied kernel */
-
-long   verbosity;              /* verbosity level (0-4) */
-long   kernel_cache_statistic;
-
-double classify_example(MODEL *model, DOC *ex) 
-     /* classifies one example */
-{
-  register long i;
-  register double dist;
-
-  if((model->kernel_parm.kernel_type == LINEAR) && (model->lin_weights))
-    return(classify_example_linear(model,ex));
-	   
-  dist=0;
-  for(i=1;i<model->sv_num;i++) {  
-    dist+=kernel(&model->kernel_parm,model->supvec[i],ex)*model->alpha[i];
-  }
-  return(dist-model->b);
-}
-
-double classify_example_linear(MODEL *model, DOC *ex) 
-     /* classifies example for linear kernel */
-     
-     /* important: the model must have the linear weight vector computed */
-     /* use: add_weight_vector_to_linear_model(&model); */
-
-
-     /* important: the feature numbers in the example to classify must */
-     /*            not be larger than the weight vector!               */
-{
-  double sum=0;
-  SVECTOR *f;
-
-  for(f=ex->fvec;f;f=f->next)  
-    sum+=f->factor*sprod_ns(model->lin_weights,f);
-  return(sum-model->b);
-}
-
-
-double kernel(KERNEL_PARM *kernel_parm, DOC *a, DOC *b) 
-     /* calculate the kernel function */
-{
-  double sum=0;
-  SVECTOR *fa,*fb;
-
-  /* in case the constraints are sums of feature vector as represented
-     as a list of SVECTOR's with their coefficient factor in the sum,
-     take the kernel between all pairs */ 
-  for(fa=a->fvec;fa;fa=fa->next) { 
-    for(fb=b->fvec;fb;fb=fb->next) {
-      if(fa->kernel_id == fb->kernel_id)
-	sum+=fa->factor*fb->factor*single_kernel(kernel_parm,fa,fb);
-    }
-  }
-  return(sum);
-}
-
-double single_kernel(KERNEL_PARM *kernel_parm, SVECTOR *a, SVECTOR *b) 
-     /* calculate the kernel function between two vectors */
-{
-  kernel_cache_statistic++;
-  switch(kernel_parm->kernel_type) {
-    case 0: /* linear */ 
-            return(sprod_ss(a,b)); 
-    case 1: /* polynomial */
-            return(pow(kernel_parm->coef_lin*sprod_ss(a,b)+kernel_parm->coef_const,(double)kernel_parm->poly_degree)); 
-    case 2: /* radial basis function */
-            return(exp(-kernel_parm->rbf_gamma*(a->twonorm_sq-2*sprod_ss(a,b)+b->twonorm_sq)));
-    case 3: /* sigmoid neural net */
-            return(tanh(kernel_parm->coef_lin*sprod_ss(a,b)+kernel_parm->coef_const)); 
-    case 4: /* custom-kernel supplied in file kernel.h*/
-            return(custom_kernel(kernel_parm,a,b)); 
-    default: printf("Error: Unknown kernel function\n"); exit(1);
-  }
-}
-
-
-SVECTOR *create_svector(WORD *words,char *userdefined,double factor)
-{
-  SVECTOR *vec;
-  long    fnum,i;
-
-  fnum=0;
-  while(words[fnum].wnum) {
-    fnum++;
-  }
-  fnum++;
-  vec = (SVECTOR *)my_malloc(sizeof(SVECTOR));
-  vec->words = (WORD *)my_malloc(sizeof(WORD)*(fnum));
-  for(i=0;i<fnum;i++) { 
-      vec->words[i]=words[i];
-  }
-  vec->twonorm_sq=sprod_ss(vec,vec);
-
-  fnum=0;
-  while(userdefined[fnum]) {
-    fnum++;
-  }
-  fnum++;
-  vec->userdefined = (char *)my_malloc(sizeof(char)*(fnum));
-  for(i=0;i<fnum;i++) { 
-      vec->userdefined[i]=userdefined[i];
-  }
-  vec->kernel_id=0;
-  vec->next=NULL;
-  vec->factor=factor;
-  return(vec);
-}
-
-SVECTOR *copy_svector(SVECTOR *vec)
-{
-  SVECTOR *newvec=NULL;
-  if(vec) {
-    newvec=create_svector(vec->words,vec->userdefined,vec->factor);
-    newvec->next=copy_svector(vec->next);
-  }
-  return(newvec);
-}
-    
-void free_svector(SVECTOR *vec)
-{
-  if(vec) {
-    free(vec->words);
-    if(vec->userdefined)
-      free(vec->userdefined);
-    free_svector(vec->next);
-    free(vec);
-  }
-}
-
-double sprod_ss(SVECTOR *a, SVECTOR *b) 
-     /* compute the inner product of two sparse vectors */
-{
-    register double sum=0;
-    register WORD *ai,*bj;
-    ai=a->words;
-    bj=b->words;
-    while (ai->wnum && bj->wnum) {
-      if(ai->wnum > bj->wnum) {
-	bj++;
-      }
-      else if (ai->wnum < bj->wnum) {
-	ai++;
-      }
-      else {
-	sum+=(ai->weight) * (bj->weight);
-	ai++;
-	bj++;
-      }
-    }
-    return((double)sum);
-}
-
-SVECTOR* sub_ss(SVECTOR *a, SVECTOR *b) 
-     /* compute the difference a-b of two sparse vectors */
-     /* Note: SVECTOR lists are not followed, but only the first
-	SVECTOR is used */
-{
-    SVECTOR *vec;
-    register WORD *sum,*sumi;
-    register WORD *ai,*bj;
-    long veclength;
-  
-    ai=a->words;
-    bj=b->words;
-    veclength=0;
-    while (ai->wnum && bj->wnum) {
-      if(ai->wnum > bj->wnum) {
-	veclength++;
-	bj++;
-      }
-      else if (ai->wnum < bj->wnum) {
-	veclength++;
-	ai++;
-      }
-      else {
-	veclength++;
-	ai++;
-	bj++;
-      }
-    }
-    while (bj->wnum) {
-      veclength++;
-      bj++;
-    }
-    while (ai->wnum) {
-      veclength++;
-      ai++;
-    }
-    veclength++;
-
-    sum=(WORD *)my_malloc(sizeof(WORD)*veclength);
-    sumi=sum;
-    ai=a->words;
-    bj=b->words;
-    while (ai->wnum && bj->wnum) {
-      if(ai->wnum > bj->wnum) {
-	(*sumi)=(*bj);
-	sumi->weight*=(-1);
-	sumi++;
-	bj++;
-      }
-      else if (ai->wnum < bj->wnum) {
-	(*sumi)=(*ai);
-	sumi++;
-	ai++;
-      }
-      else {
-	(*sumi)=(*ai);
-	sumi->weight-=bj->weight;
-	if(sumi->weight != 0)
-	  sumi++;
-	ai++;
-	bj++;
-      }
-    }
-    while (bj->wnum) {
-      (*sumi)=(*bj);
-      sumi->weight*=(-1);
-      sumi++;
-      bj++;
-    }
-    while (ai->wnum) {
-      (*sumi)=(*ai);
-      sumi++;
-      ai++;
-    }
-    sumi->wnum=0;
-
-    vec=create_svector(sum,"",1.0);
-    free(sum);
-
-    return(vec);
-}
-
-SVECTOR* add_ss(SVECTOR *a, SVECTOR *b) 
-     /* compute the sum a+b of two sparse vectors */
-     /* Note: SVECTOR lists are not followed, but only the first
-	SVECTOR is used */
-{
-    SVECTOR *vec;
-    register WORD *sum,*sumi;
-    register WORD *ai,*bj;
-    long veclength;
-  
-    ai=a->words;
-    bj=b->words;
-    veclength=0;
-    while (ai->wnum && bj->wnum) {
-      if(ai->wnum > bj->wnum) {
-	veclength++;
-	bj++;
-      }
-      else if (ai->wnum < bj->wnum) {
-	veclength++;
-	ai++;
-      }
-      else {
-	veclength++;
-	ai++;
-	bj++;
-      }
-    }
-    while (bj->wnum) {
-      veclength++;
-      bj++;
-    }
-    while (ai->wnum) {
-      veclength++;
-      ai++;
-    }
-    veclength++;
-
-    /*** is veclength=lengSequence(a)+lengthSequence(b)? ***/
-
-    sum=(WORD *)my_malloc(sizeof(WORD)*veclength);
-    sumi=sum;
-    ai=a->words;
-    bj=b->words;
-    while (ai->wnum && bj->wnum) {
-      if(ai->wnum > bj->wnum) {
-	(*sumi)=(*bj);
-	sumi++;
-	bj++;
-      }
-      else if (ai->wnum < bj->wnum) {
-	(*sumi)=(*ai);
-	sumi++;
-	ai++;
-      }
-      else {
-	(*sumi)=(*ai);
-	sumi->weight+=bj->weight;
-	if(sumi->weight != 0)
-	  sumi++;
-	ai++;
-	bj++;
-      }
-    }
-    while (bj->wnum) {
-      (*sumi)=(*bj);
-      sumi++;
-      bj++;
-    }
-    while (ai->wnum) {
-      (*sumi)=(*ai);
-      sumi++;
-      ai++;
-    }
-    sumi->wnum=0;
-
-    vec=create_svector(sum,"",1.0);
-    free(sum);
-
-    return(vec);
-}
-
-SVECTOR* add_list_ss(SVECTOR *a) 
-     /* computes the linear combination of the SVECTOR list weighted
-	by the factor of each SVECTOR */
-{
-  SVECTOR *scaled,*oldsum,*sum,*f;
-  WORD    empty[2];
-    
-  if(a){
-    sum=smult_s(a,a->factor);
-    for(f=a->next;f;f=f->next) {
-      scaled=smult_s(f,f->factor);
-      oldsum=sum;
-      sum=add_ss(sum,scaled);
-      free_svector(oldsum);
-      free_svector(scaled);
-    }
-    sum->factor=1.0;
-  }
-  else {
-    empty[0].wnum=0;
-    sum=create_svector(empty,"",1.0);
-  }
-  return(sum);
-}
-
-void append_svector_list(SVECTOR *a, SVECTOR *b) 
-     /* appends SVECTOR b to the end of SVECTOR a. */
-{
-    SVECTOR *f;
-    
-    for(f=a;f->next;f=f->next);  /* find end of first vector list */
-    f->next=b;                   /* append the two vector lists */
-}
-
-SVECTOR* smult_s(SVECTOR *a, double factor) 
-     /* scale sparse vector a by factor */
-{
-    SVECTOR *vec;
-    register WORD *sum,*sumi;
-    register WORD *ai;
-    long veclength;
-  
-    ai=a->words;
-    veclength=0;
-    while (ai->wnum) {
-      veclength++;
-      ai++;
-    }
-    veclength++;
-
-    sum=(WORD *)my_malloc(sizeof(WORD)*veclength);
-    sumi=sum;
-    ai=a->words;
-    while (ai->wnum) {
-	(*sumi)=(*ai);
-	sumi->weight*=factor;
-	if(sumi->weight != 0)
-	  sumi++;
-	ai++;
-    }
-    sumi->wnum=0;
-
-    vec=create_svector(sum,a->userdefined,a->factor);
-    free(sum);
-
-    return(vec);
-}
-
-int featvec_eq(SVECTOR *a, SVECTOR *b)
-     /* tests two sparse vectors for equality */
-{
-    register WORD *ai,*bj;
-    ai=a->words;
-    bj=b->words;
-    while (ai->wnum && bj->wnum) {
-      if(ai->wnum > bj->wnum) {
-	if((bj->weight) != 0)
-	  return(0);
-	bj++;
-      }
-      else if (ai->wnum < bj->wnum) {
-	if((ai->weight) != 0)
-	  return(0);
-	ai++;
-      }
-      else {
-	if((ai->weight) != (bj->weight)) 
-	  return(0);
-	ai++;
-	bj++;
-      }
-    }
-    return(1);
-}
-
-double model_length_s(MODEL *model, KERNEL_PARM *kernel_parm) 
-     /* compute length of weight vector */
-{
-  register long i,j;
-  register double sum=0,alphai;
-  register DOC *supveci;
-
-  for(i=1;i<model->sv_num;i++) {  
-    alphai=model->alpha[i];
-    supveci=model->supvec[i];
-    for(j=1;j<model->sv_num;j++) {
-      sum+=alphai*model->alpha[j]
-	   *kernel(kernel_parm,supveci,model->supvec[j]);
-    }
-  }
-  return(sqrt(sum));
-}
-
-void clear_vector_n(double *vec, long int n)
-{
-  register long i;
-  for(i=0;i<=n;i++) vec[i]=0;
-}
-
-void add_vector_ns(double *vec_n, SVECTOR *vec_s, double faktor)
-{
-  register WORD *ai;
-  ai=vec_s->words;
-  while (ai->wnum) {
-    vec_n[ai->wnum]+=(faktor*ai->weight);
-    ai++;
-  }
-}
-
-double sprod_ns(double *vec_n, SVECTOR *vec_s)
-{
-  register double sum=0;
-  register WORD *ai;
-  ai=vec_s->words;
-  while (ai->wnum) {
-    sum+=(vec_n[ai->wnum]*ai->weight);
-    ai++;
-  }
-  return(sum);
-}
-
-void add_weight_vector_to_linear_model(MODEL *model)
-     /* compute weight vector in linear case and add to model */
-{
-  long i;
-  SVECTOR *f;
-
-  model->lin_weights=(double *)my_malloc(sizeof(double)*(model->totwords+1));
-  clear_vector_n(model->lin_weights,model->totwords);
-  for(i=1;i<model->sv_num;i++) {
-    for(f=(model->supvec[i])->fvec;f;f=f->next)  
-      add_vector_ns(model->lin_weights,f,f->factor*model->alpha[i]);
-  }
-}
-
-
-DOC *create_example(long docnum, long queryid, long slackid, 
-		    double costfactor, SVECTOR *fvec)
-{
-  DOC *example;
-  example = (DOC *)my_malloc(sizeof(DOC));
-  example->docnum=docnum;
-  example->queryid=queryid;
-  example->slackid=slackid;
-  example->costfactor=costfactor;
-  example->fvec=fvec;
-  return(example);
-}
-
-void free_example(DOC *example, long deep)
-{
-  if(example) {
-    if(deep) {
-      if(example->fvec)
-	free_svector(example->fvec);
-    }
-    free(example);
-  }
-}
-
-void write_model(char *modelfile, MODEL *model)
-{
-  FILE *modelfl;
-  long j,i,sv_num;
-  SVECTOR *v;
-
-  if(verbosity>=1) {
-    printf("Writing model file..."); fflush(stdout);
-  }
-  if ((modelfl = fopen (modelfile, "w")) == NULL)
-  { perror (modelfile); exit (1); }
-  fprintf(modelfl,"SVM-light Version %s\n",VERSION);
-  fprintf(modelfl,"%ld # kernel type\n",
-	  model->kernel_parm.kernel_type);
-  fprintf(modelfl,"%ld # kernel parameter -d \n",
-	  model->kernel_parm.poly_degree);
-  fprintf(modelfl,"%.8g # kernel parameter -g \n",
-	  model->kernel_parm.rbf_gamma);
-  fprintf(modelfl,"%.8g # kernel parameter -s \n",
-	  model->kernel_parm.coef_lin);
-  fprintf(modelfl,"%.8g # kernel parameter -r \n",
-	  model->kernel_parm.coef_const);
-  fprintf(modelfl,"%s# kernel parameter -u \n",model->kernel_parm.custom);
-  fprintf(modelfl,"%ld # highest feature index \n",model->totwords);
-  fprintf(modelfl,"%ld # number of training documents \n",model->totdoc);
- 
-  sv_num=1;
-  for(i=1;i<model->sv_num;i++) {
-    for(v=model->supvec[i]->fvec;v;v=v->next) 
-      sv_num++;
-  }
-  fprintf(modelfl,"%ld # number of support vectors plus 1 \n",sv_num);
-  fprintf(modelfl,"%.8g # threshold b, each following line is a SV (starting with alpha*y)\n",model->b);
-
-  for(i=1;i<model->sv_num;i++) {
-    for(v=model->supvec[i]->fvec;v;v=v->next) {
-      fprintf(modelfl,"%.32g ",model->alpha[i]*v->factor);
-      for (j=0; (v->words[j]).wnum; j++) {
-	fprintf(modelfl,"%ld:%.8g ",
-		(long)(v->words[j]).wnum,
-		(double)(v->words[j]).weight);
-      }
-      fprintf(modelfl,"#%s\n",v->userdefined);
-    /* NOTE: this could be made more efficient by summing the
-       alpha's of identical vectors before writing them to the
-       file. */
-    }
-  }
-  fclose(modelfl);
-  if(verbosity>=1) {
-    printf("done\n");
-  }
-}
-
-
-MODEL *read_model(char *modelfile)
-{
-  FILE *modelfl;
-  long i,queryid,slackid;
-  double costfactor;
-  long max_sv,max_words,ll,wpos;
-  char *line,*comment;
-  WORD *words;
-  char version_buffer[100];
-  MODEL *model;
-
-  if(verbosity>=1) {
-    printf("Reading model..."); fflush(stdout);
-  }
-
-  nol_ll(modelfile,&max_sv,&max_words,&ll); /* scan size of model file */
-  max_words+=2;
-  ll+=2;
-
-  words = (WORD *)my_malloc(sizeof(WORD)*(max_words+10));
-  line = (char *)my_malloc(sizeof(char)*ll);
-  model = (MODEL *)my_malloc(sizeof(MODEL));
-
-  if ((modelfl = fopen (modelfile, "r")) == NULL)
-  { perror (modelfile); exit (1); }
-
-  fscanf(modelfl,"SVM-light Version %s\n",version_buffer);
-  if(strcmp(version_buffer,VERSION)) {
-    perror ("Version of model-file does not match version of svm_classify!"); 
-    exit (1); 
-  }
-  fscanf(modelfl,"%ld%*[^\n]\n", &model->kernel_parm.kernel_type);  
-  fscanf(modelfl,"%ld%*[^\n]\n", &model->kernel_parm.poly_degree);
-  fscanf(modelfl,"%lf%*[^\n]\n", &model->kernel_parm.rbf_gamma);
-  fscanf(modelfl,"%lf%*[^\n]\n", &model->kernel_parm.coef_lin);
-  fscanf(modelfl,"%lf%*[^\n]\n", &model->kernel_parm.coef_const);
-  fscanf(modelfl,"%[^#]%*[^\n]\n", model->kernel_parm.custom);
-
-  fscanf(modelfl,"%ld%*[^\n]\n", &model->totwords);
-  fscanf(modelfl,"%ld%*[^\n]\n", &model->totdoc);
-  fscanf(modelfl,"%ld%*[^\n]\n", &model->sv_num);
-  fscanf(modelfl,"%lf%*[^\n]\n", &model->b);
-
-  model->supvec = (DOC **)my_malloc(sizeof(DOC *)*model->sv_num);
-  model->alpha = (double *)my_malloc(sizeof(double)*model->sv_num);
-  model->index=NULL;
-  model->lin_weights=NULL;
-
-  for(i=1;i<model->sv_num;i++) {
-    fgets(line,(int)ll,modelfl);
-    if(!parse_document(line,words,&(model->alpha[i]),&queryid,&slackid,
-		       &costfactor,&wpos,max_words,&comment)) {
-      printf("\nParsing error while reading model file in SV %ld!\n%s",
-	     i,line);
-      exit(1);
-    }
-    model->supvec[i] = create_example(-1,
-				      0,0,
-				      0.0,
-				      create_svector(words,comment,1.0));
-  }
-  fclose(modelfl);
-  free(line);
-  free(words);
-  if(verbosity>=1) {
-    fprintf(stdout, "OK. (%d support vectors read)\n",(int)(model->sv_num-1));
-  }
-  return(model);
-}
-
-MODEL *copy_model(MODEL *model)
-{
-  MODEL *newmodel;
-  long  i;
-
-  newmodel=(MODEL *)my_malloc(sizeof(MODEL));
-  (*newmodel)=(*model);
-  newmodel->supvec = (DOC **)my_malloc(sizeof(DOC *)*model->sv_num);
-  newmodel->alpha = (double *)my_malloc(sizeof(double)*model->sv_num);
-  newmodel->index = NULL; /* index is not copied */
-  newmodel->supvec[0] = NULL;
-  newmodel->alpha[0] = 0;
-  for(i=1;i<model->sv_num;i++) {
-    newmodel->alpha[i]=model->alpha[i];
-    newmodel->supvec[i]=create_example(model->supvec[i]->docnum,
-				       model->supvec[i]->queryid,0,
-				       model->supvec[i]->costfactor,
-				       copy_svector(model->supvec[i]->fvec));
-  }
-  if(model->lin_weights) {
-    newmodel->lin_weights = (double *)my_malloc(sizeof(double)*(model->totwords+1));
-    for(i=0;i<model->totwords+1;i++) 
-      newmodel->lin_weights[i]=model->lin_weights[i];
-  }
-  return(newmodel);
-}
-
-void free_model(MODEL *model, int deep)
-{
-  long i;
-
-  if(model->supvec) {
-    if(deep) {
-      for(i=1;i<model->sv_num;i++) {
-	free_example(model->supvec[i],1);
-      }
-    }
-    free(model->supvec);
-  }
-  if(model->alpha) free(model->alpha);
-  if(model->index) free(model->index);
-  if(model->lin_weights) free(model->lin_weights);
-  free(model);
-}
-
-
-void read_documents(char *docfile, DOC ***docs, double **label, 
-		    long int *totwords, long int *totdoc)
-{
-  char *line,*comment;
-  WORD *words;
-  long dnum=0,wpos,dpos=0,dneg=0,dunlab=0,queryid,slackid,max_docs;
-  long max_words_doc, ll;
-  double doc_label,costfactor;
-  FILE *docfl;
-
-  if(verbosity>=1) {
-    printf("Scanning examples..."); fflush(stdout);
-  }
-  nol_ll(docfile,&max_docs,&max_words_doc,&ll); /* scan size of input file */
-  max_words_doc+=2;
-  ll+=2;
-  max_docs+=2;
-  if(verbosity>=1) {
-    printf("done\n"); fflush(stdout);
-  }
-
-  (*docs) = (DOC **)my_malloc(sizeof(DOC *)*max_docs);    /* feature vectors */
-  (*label) = (double *)my_malloc(sizeof(double)*max_docs); /* target values */
-  line = (char *)my_malloc(sizeof(char)*ll);
-
-  if ((docfl = fopen (docfile, "r")) == NULL)
-  { perror (docfile); exit (1); }
-
-  words = (WORD *)my_malloc(sizeof(WORD)*(max_words_doc+10));
-  if(verbosity>=1) {
-    printf("Reading examples into memory..."); fflush(stdout);
-  }
-  dnum=0;
-  (*totwords)=0;
-  while((!feof(docfl)) && fgets(line,(int)ll,docfl)) {
-    if(line[0] == '#') continue;  /* line contains comments */
-    if(!parse_document(line,words,&doc_label,&queryid,&slackid,&costfactor,
-		       &wpos,max_words_doc,&comment)) {
-      printf("\nParsing error in line %ld!\n%s",dnum,line);
-      exit(1);
-    }
-    (*label)[dnum]=doc_label;
-    /* printf("docnum=%ld: Class=%f ",dnum,doc_label); */
-    if(doc_label > 0) dpos++;
-    if (doc_label < 0) dneg++;
-    if (doc_label == 0) dunlab++;
-    if((wpos>1) && ((words[wpos-2]).wnum>(*totwords))) 
-      (*totwords)=(words[wpos-2]).wnum;
-    if((*totwords) > MAXFEATNUM) {
-      printf("\nMaximum feature number exceeds limit defined in MAXFEATNUM!\n");
-      printf("LINE: %s\n",line);
-      exit(1);
-    }
-    (*docs)[dnum] = create_example(dnum,queryid,slackid,costfactor,
-				   create_svector(words,comment,1.0));
-    /* printf("\nNorm=%f\n",((*docs)[dnum]->fvec)->twonorm_sq);  */
-    dnum++;  
-    if(verbosity>=1) {
-      if((dnum % 100) == 0) {
-	printf("%ld..",dnum); fflush(stdout);
-      }
-    }
-  } 
-
-  fclose(docfl);
-  free(line);
-  free(words);
-  if(verbosity>=1) {
-    fprintf(stdout, "OK. (%ld examples read)\n", dnum);
-  }
-  (*totdoc)=dnum;
-}
-
-int parse_document(char *line, WORD *words, double *label,
-		   long *queryid, long *slackid, double *costfactor,
-		   long int *numwords, long int max_words_doc,
-		   char **comment)
-{
-  register long wpos,pos;
-  long wnum;
-  double weight;
-  int numread;
-  char featurepair[1000],junk[1000];
-
-  (*queryid)=0;
-  (*slackid)=0;
-  (*costfactor)=1;
-
-  pos=0;
-  (*comment)=NULL;
-  while(line[pos] ) {      /* cut off comments */
-    if((line[pos] == '#') && (!(*comment))) {
-      line[pos]=0;
-      (*comment)=&(line[pos+1]);
-    }
-    if(line[pos] == '\n') { /* strip the CR */
-      line[pos]=0;
-    }
-    pos++;
-  }
-  if(!(*comment)) (*comment)=&(line[pos]);
-  /* printf("Comment: '%s'\n",(*comment)); */
-
-  wpos=0;
-  /* check, that line starts with target value or zero, but not with
-     feature pair */
-  if(sscanf(line,"%s",featurepair) == EOF) return(0);
-  pos=0;
-  while((featurepair[pos] != ':') && featurepair[pos]) pos++;
-  if(featurepair[pos] == ':') {
-	perror ("Line must start with label or 0!!!\n"); 
-	printf("LINE: %s\n",line);
-	exit (1); 
-  }
-  /* read the target value */
-  if(sscanf(line,"%lf",label) == EOF) return(0);
-  pos=0;
-  while(space_or_null((int)line[pos])) pos++;
-  while((!space_or_null((int)line[pos])) && line[pos]) pos++;
-  while(((numread=sscanf(line+pos,"%s",featurepair)) != EOF) && 
-	(numread > 0) && 
-	(wpos<max_words_doc)) {
-    /* printf("%s\n",featurepair); */
-    while(space_or_null((int)line[pos])) pos++;
-    while((!space_or_null((int)line[pos])) && line[pos]) pos++;
-    if(sscanf(featurepair,"qid:%ld%s",&wnum,junk)==1) {
-      /* it is the query id */
-      (*queryid)=(long)wnum;
-    }
-    else if(sscanf(featurepair,"sid:%ld%s",&wnum,junk)==1) {
-      /* it is the slack id */
-      if(wnum > 0) 
-	(*slackid)=(long)wnum;
-      else {
-	perror ("Slack-id must be greater or equal to 1!!!\n"); 
-	printf("LINE: %s\n",line);
-	exit (1); 
-      }
-    }
-    else if(sscanf(featurepair,"cost:%lf%s",&weight,junk)==1) {
-      /* it is the example-dependent cost factor */
-      (*costfactor)=(double)weight;
-    }
-    else if(sscanf(featurepair,"%ld:%lf%s",&wnum,&weight,junk)==2) {
-      /* it is a regular feature */
-      if(wnum<=0) { 
-	perror ("Feature numbers must be larger or equal to 1!!!\n"); 
-	printf("LINE: %s\n",line);
-	exit (1); 
-      }
-      if((wpos>0) && ((words[wpos-1]).wnum >= wnum)) { 
-	perror ("Features must be in increasing order!!!\n"); 
-	printf("LINE: %s\n",line);
-	exit (1); 
-      }
-      (words[wpos]).wnum=wnum;
-      (words[wpos]).weight=(FVAL)weight; 
-      wpos++;
-    }
-    else {
-      perror ("Cannot parse feature/value pair!!!\n"); 
-      printf("'%s' in LINE: %s\n",featurepair,line);
-      exit (1); 
-    }
-  }
-  (words[wpos]).wnum=0;
-  (*numwords)=wpos+1;
-  return(1);
-}
-
-double *read_alphas(char *alphafile,long totdoc)
-     /* reads the alpha vector from a file as written by the
-        write_alphas function */
-{
-  FILE *fl;
-  double *alpha;
-  long dnum;
-
-  if ((fl = fopen (alphafile, "r")) == NULL)
-  { perror (alphafile); exit (1); }
-
-  alpha = (double *)my_malloc(sizeof(double)*totdoc);
-  if(verbosity>=1) {
-    printf("Reading alphas..."); fflush(stdout);
-  }
-  dnum=0;
-  while((!feof(fl)) && fscanf(fl,"%lf\n",&alpha[dnum]) && (dnum<totdoc)) {
-    dnum++;
-  }
-  if(dnum != totdoc)
-  { perror ("\nNot enough values in alpha file!"); exit (1); }
-  fclose(fl);
-
-  if(verbosity>=1) {
-    printf("done\n"); fflush(stdout);
-  }
-
-  return(alpha);
-}
-
-void nol_ll(char *file, long int *nol, long int *wol, long int *ll) 
-     /* Grep through file and count number of lines, maximum number of
-        spaces per line, and longest line. */
-{
-  FILE *fl;
-  int ic;
-  char c;
-  long current_length,current_wol;
-
-  if ((fl = fopen (file, "r")) == NULL)
-  { perror (file); exit (1); }
-  current_length=0;
-  current_wol=0;
-  (*ll)=0;
-  (*nol)=1;
-  (*wol)=0;
-  while((ic=getc(fl)) != EOF) {
-    c=(char)ic;
-    current_length++;
-    if(space_or_null((int)c)) {
-      current_wol++;
-    }
-    if(c == '\n') {
-      (*nol)++;
-      if(current_length>(*ll)) {
-	(*ll)=current_length;
-      }
-      if(current_wol>(*wol)) {
-	(*wol)=current_wol;
-      }
-      current_length=0;
-      current_wol=0;
-    }
-  }
-  fclose(fl);
-}
-
-long minl(long int a, long int b)
-{
-  if(a<b)
-    return(a);
-  else
-    return(b);
-}
-
-long maxl(long int a, long int b)
-{
-  if(a>b)
-    return(a);
-  else
-    return(b);
-}
-
-long get_runtime(void)
-{
-  clock_t start;
-  start = clock();
-  return((long)((double)start*100.0/(double)CLOCKS_PER_SEC));
-}
-
-
-# ifdef _MSC_VER
-
-int isnan(double a)
-{
-  return(_isnan(a));
-}
-
-# endif 
-
-int space_or_null(int c) {
-  if (c==0)
-    return 1;
-  return isspace((unsigned char)c);
-}
-
-void *my_malloc(size_t size)
-{
-  void *ptr;
-  if(size<=0) size=1; /* for AIX compatibility */
-  ptr=(void *)malloc(size);
-  if(!ptr) { 
-    perror ("Out of memory!\n"); 
-    exit (1); 
-  }
-  return(ptr);
-}
-
-void copyright_notice(void)
-{
-  printf("\nCopyright: Thorsten Joachims, thorsten@joachims.org\n\n");
-  printf("This software is available for non-commercial use only. It must not\n");
-  printf("be modified and distributed without prior permission of the author.\n");
-  printf("The author is not responsible for implications from the use of this\n");
-  printf("software.\n\n");
-}
diff --git a/trunk/svm_light/build/svm_light-tar/svm_common.h b/trunk/svm_light/build/svm_light-tar/svm_common.h
deleted file mode 100755
index 6487fa1d1017d9fcb3b32d7e66cc514b4af9bddf..0000000000000000000000000000000000000000
--- a/trunk/svm_light/build/svm_light-tar/svm_common.h
+++ /dev/null
@@ -1,301 +0,0 @@
-/************************************************************************/
-/*                                                                      */
-/*   svm_common.h                                                       */
-/*                                                                      */
-/*   Definitions and functions used in both svm_learn and svm_classify. */
-/*                                                                      */
-/*   Author: Thorsten Joachims                                          */
-/*   Date: 02.07.02                                                     */
-/*                                                                      */
-/*   Copyright (c) 2002  Thorsten Joachims - All rights reserved        */
-/*                                                                      */
-/*   This software is available for non-commercial use only. It must    */
-/*   not be modified and distributed without prior permission of the    */
-/*   author. The author is not responsible for implications from the    */
-/*   use of this software.                                              */
-/*                                                                      */
-/************************************************************************/
-
-#ifndef SVM_COMMON
-#define SVM_COMMON
-
-# include <stdio.h>
-# include <ctype.h>
-# include <math.h>
-# include <string.h>
-# include <stdlib.h>
-# include <time.h> 
-# include <float.h>
-
-# define VERSION       "V6.02"
-# define VERSION_DATE  "14.08.08"
-
-# define CFLOAT  float       /* the type of float to use for caching */
-                             /* kernel evaluations. Using float saves */
-                             /* us some memory, but you can use double, too */
-# define FNUM    long        /* the type used for storing feature ids */
-# define FVAL    float       /* the type used for storing feature values */
-# define MAXFEATNUM 99999999 /* maximum feature number (must be in
-			  	valid range of FNUM type and long int!) */
-
-# define LINEAR  0           /* linear kernel type */
-# define POLY    1           /* polynoial kernel type */
-# define RBF     2           /* rbf kernel type */
-# define SIGMOID 3           /* sigmoid kernel type */
-
-# define CLASSIFICATION 1    /* train classification model */
-# define REGRESSION     2    /* train regression model */
-# define RANKING        3    /* train ranking model */
-# define OPTIMIZATION   4    /* train on general set of constraints */
-
-# define MAXSHRINK     50000    /* maximum number of shrinking rounds */
-
-typedef struct word {
-  FNUM    wnum;	               /* word number */
-  FVAL    weight;              /* word weight */
-} WORD;
-
-typedef struct svector {
-  WORD    *words;              /* The features/values in the vector by
-				  increasing feature-number. Feature
-				  numbers that are skipped are
-				  interpreted as having value zero. */
-  double  twonorm_sq;          /* The squared euclidian length of the
-                                  vector. Used to speed up the RBF kernel. */
-  char    *userdefined;        /* You can put additional information
-				  here. This can be useful, if you are
-				  implementing your own kernel that
-				  does not work with feature/values
-				  representations (for example a
-				  string kernel). By default,
-				  svm-light will put here the string
-				  after the # sign from each line of
-				  the input file. */
-  long    kernel_id;           /* Feature vectors with different
-				  kernel_id's are orthogonal (ie. the
-				  feature number do not match). This
-				  is used for computing component
-				  kernels for linear constraints which
-				  are a sum of several different
-				  weight vectors. (currently not
-				  implemented). */
-  struct svector *next;        /* Let's you set up a list of SVECTOR's
-				  for linear constraints which are a
-				  sum of multiple feature
-				  vectors. List is terminated by
-				  NULL. */
-  double  factor;              /* Factor by which this feature vector
-				  is multiplied in the sum. */
-} SVECTOR;
-
-typedef struct doc {
-  long    docnum;              /* Document ID. This has to be the position of 
-                                  the document in the training set array. */
-  long    queryid;             /* for learning rankings, constraints are 
-				  generated for documents with the same 
-				  queryID. */
-  double  costfactor;          /* Scales the cost of misclassifying this
-				  document by this factor. The effect of this
-				  value is, that the upper bound on the alpha
-				  for this example is scaled by this factor.
-				  The factors are set by the feature 
-				  'cost:<val>' in the training data. */
-  long    slackid;             /* Index of the slack variable
-				  corresponding to this
-				  constraint. All constraints with the
-				  same slackid share the same slack
-				  variable. This can only be used for
-				  svm_learn_optimization. */
-  SVECTOR *fvec;               /* Feature vector of the example. The
-				  feature vector can actually be a
-				  list of feature vectors. For
-				  example, the list will have two
-				  elements, if this DOC is a
-				  preference constraint. The one
-				  vector that is supposed to be ranked
-				  higher, will have a factor of +1,
-				  the lower ranked one should have a
-				  factor of -1. */
-} DOC;
-
-typedef struct learn_parm {
-  long   type;                 /* selects between regression and
-				  classification */
-  double svm_c;                /* upper bound C on alphas */
-  double eps;                  /* regression epsilon (eps=1.0 for
-				  classification */
-  double svm_costratio;        /* factor to multiply C for positive examples */
-  double transduction_posratio;/* fraction of unlabeled examples to be */
-                               /* classified as positives */
-  long   biased_hyperplane;    /* if nonzero, use hyperplane w*x+b=0 
-				  otherwise w*x=0 */
-  long   sharedslack;          /* if nonzero, it will use the shared
-                                  slack variable mode in
-                                  svm_learn_optimization. It requires
-                                  that the slackid is set for every
-                                  training example */
-  long   svm_maxqpsize;        /* size q of working set */
-  long   svm_newvarsinqp;      /* new variables to enter the working set 
-				  in each iteration */
-  long   kernel_cache_size;    /* size of kernel cache in megabytes */
-  double epsilon_crit;         /* tolerable error for distances used 
-				  in stopping criterion */
-  double epsilon_shrink;       /* how much a multiplier should be above 
-				  zero for shrinking */
-  long   svm_iter_to_shrink;   /* iterations h after which an example can
-				  be removed by shrinking */
-  long   maxiter;              /* number of iterations after which the
-				  optimizer terminates, if there was
-				  no progress in maxdiff */
-  long   remove_inconsistent;  /* exclude examples with alpha at C and 
-				  retrain */
-  long   skip_final_opt_check; /* do not check KT-Conditions at the end of
-				  optimization for examples removed by 
-				  shrinking. WARNING: This might lead to 
-				  sub-optimal solutions! */
-  long   compute_loo;          /* if nonzero, computes leave-one-out
-				  estimates */
-  double rho;                  /* parameter in xi/alpha-estimates and for
-				  pruning leave-one-out range [1..2] */
-  long   xa_depth;             /* parameter in xi/alpha-estimates upper
-				  bounding the number of SV the current
-				  alpha_t is distributed over */
-  char predfile[200];          /* file for predicitions on unlabeled examples
-				  in transduction */
-  char alphafile[200];         /* file to store optimal alphas in. use  
-				  empty string if alphas should not be 
-				  output */
-
-  /* you probably do not want to touch the following */
-  double epsilon_const;        /* tolerable error on eq-constraint */
-  double epsilon_a;            /* tolerable error on alphas at bounds */
-  double opt_precision;        /* precision of solver, set to e.g. 1e-21 
-				  if you get convergence problems */
-
-  /* the following are only for internal use */
-  long   svm_c_steps;          /* do so many steps for finding optimal C */
-  double svm_c_factor;         /* increase C by this factor every step */
-  double svm_costratio_unlab;
-  double svm_unlabbound;
-  double *svm_cost;            /* individual upper bounds for each var */
-  long   totwords;             /* number of features */
-} LEARN_PARM;
-
-typedef struct kernel_parm {
-  long    kernel_type;   /* 0=linear, 1=poly, 2=rbf, 3=sigmoid, 4=custom */
-  long    poly_degree;
-  double  rbf_gamma;
-  double  coef_lin;
-  double  coef_const;
-  char    custom[50];    /* for user supplied kernel */
-} KERNEL_PARM;
-
-typedef struct model {
-  long    sv_num;	
-  long    at_upper_bound;
-  double  b;
-  DOC     **supvec;
-  double  *alpha;
-  long    *index;       /* index from docnum to position in model */
-  long    totwords;     /* number of features */
-  long    totdoc;       /* number of training documents */
-  KERNEL_PARM kernel_parm; /* kernel */
-
-  /* the following values are not written to file */
-  double  loo_error,loo_recall,loo_precision; /* leave-one-out estimates */
-  double  xa_error,xa_recall,xa_precision;    /* xi/alpha estimates */
-  double  *lin_weights;                       /* weights for linear case using
-						 folding */
-  double  maxdiff;                            /* precision, up to which this 
-						 model is accurate */
-} MODEL;
-
-typedef struct quadratic_program {
-  long   opt_n;            /* number of variables */
-  long   opt_m;            /* number of linear equality constraints */
-  double *opt_ce,*opt_ce0; /* linear equality constraints */
-  double *opt_g;           /* hessian of objective */
-  double *opt_g0;          /* linear part of objective */
-  double *opt_xinit;       /* initial value for variables */
-  double *opt_low,*opt_up; /* box constraints */
-} QP;
-
-typedef struct kernel_cache {
-  long   *index;  /* cache some kernel evalutations */
-  CFLOAT *buffer; /* to improve speed */
-  long   *invindex;
-  long   *active2totdoc;
-  long   *totdoc2active;
-  long   *lru;
-  long   *occu;
-  long   elems;
-  long   max_elems;
-  long   time;
-  long   activenum;
-  long   buffsize;
-} KERNEL_CACHE;
-
-
-typedef struct timing_profile {
-  long   time_kernel;
-  long   time_opti;
-  long   time_shrink;
-  long   time_update;
-  long   time_model;
-  long   time_check;
-  long   time_select;
-} TIMING;
-
-typedef struct shrink_state {
-  long   *active;
-  long   *inactive_since;
-  long   deactnum;
-  double **a_history;  /* for shrinking with non-linear kernel */
-  long   maxhistory;
-  double *last_a;      /* for shrinking with linear kernel */
-  double *last_lin;    /* for shrinking with linear kernel */
-} SHRINK_STATE;
-
-double classify_example(MODEL *, DOC *);
-double classify_example_linear(MODEL *, DOC *);
-double kernel(KERNEL_PARM *, DOC *, DOC *); 
-double single_kernel(KERNEL_PARM *, SVECTOR *, SVECTOR *); 
-double custom_kernel(KERNEL_PARM *, SVECTOR *, SVECTOR *); 
-SVECTOR *create_svector(WORD *, char *, double);
-SVECTOR *copy_svector(SVECTOR *);
-void   free_svector(SVECTOR *);
-double    sprod_ss(SVECTOR *, SVECTOR *);
-SVECTOR*  sub_ss(SVECTOR *, SVECTOR *); 
-SVECTOR*  add_ss(SVECTOR *, SVECTOR *); 
-SVECTOR*  add_list_ss(SVECTOR *); 
-void      append_svector_list(SVECTOR *a, SVECTOR *b);
-SVECTOR*  smult_s(SVECTOR *, double);
-int       featvec_eq(SVECTOR *, SVECTOR *); 
-double model_length_s(MODEL *, KERNEL_PARM *);
-void   clear_vector_n(double *, long);
-void   add_vector_ns(double *, SVECTOR *, double);
-double sprod_ns(double *, SVECTOR *);
-void   add_weight_vector_to_linear_model(MODEL *);
-DOC    *create_example(long, long, long, double, SVECTOR *);
-void   free_example(DOC *, long);
-MODEL  *read_model(char *);
-MODEL  *copy_model(MODEL *);
-void   free_model(MODEL *, int);
-void   read_documents(char *, DOC ***, double **, long *, long *);
-int    parse_document(char *, WORD *, double *, long *, long *, double *, long *, long, char **);
-double *read_alphas(char *,long);
-void   nol_ll(char *, long *, long *, long *);
-long   minl(long, long);
-long   maxl(long, long);
-long   get_runtime(void);
-int    space_or_null(int);
-void   *my_malloc(size_t); 
-void   copyright_notice(void);
-# ifdef _MSC_VER
-   int isnan(double);
-# endif
-
-extern long   verbosity;              /* verbosity level (0-4) */
-extern long   kernel_cache_statistic;
-
-#endif
diff --git a/trunk/svm_light/build/svm_light-tar/svm_hideo.c b/trunk/svm_light/build/svm_light-tar/svm_hideo.c
deleted file mode 100755
index ffad2d3c1c0ae41e63ff57f6cb40aad005952e05..0000000000000000000000000000000000000000
--- a/trunk/svm_light/build/svm_light-tar/svm_hideo.c
+++ /dev/null
@@ -1,1062 +0,0 @@
-/***********************************************************************/
-/*                                                                     */
-/*   svm_hideo.c                                                       */
-/*                                                                     */
-/*   The Hildreth and D'Espo solver specialized for SVMs.              */
-/*                                                                     */
-/*   Author: Thorsten Joachims                                         */
-/*   Date: 02.07.02                                                    */
-/*                                                                     */
-/*   Copyright (c) 2002  Thorsten Joachims - All rights reserved       */
-/*                                                                     */
-/*   This software is available for non-commercial use only. It must   */
-/*   not be modified and distributed without prior permission of the   */
-/*   author. The author is not responsible for implications from the   */
-/*   use of this software.                                             */
-/*                                                                     */
-/***********************************************************************/
-
-# include <math.h>
-# include "svm_common.h"
-
-/* 
-  solve the quadratic programming problem
- 
-  minimize   g0 * x + 1/2 x' * G * x
-  subject to ce*x = ce0
-             l <= x <= u
- 
-  The linear constraint vector ce can only have -1/+1 as entries 
-*/
-
-/* Common Block Declarations */
-
-long verbosity;
-
-# define PRIMAL_OPTIMAL      1
-# define DUAL_OPTIMAL        2
-# define MAXITER_EXCEEDED    3
-# define NAN_SOLUTION        4
-# define ONLY_ONE_VARIABLE   5
-
-# define LARGEROUND          0
-# define SMALLROUND          1
-
-/* /////////////////////////////////////////////////////////////// */
-
-# define DEF_PRECISION          1E-5
-# define DEF_MAX_ITERATIONS     200
-# define DEF_LINDEP_SENSITIVITY 1E-8
-# define EPSILON_HIDEO          1E-20
-# define EPSILON_EQ             1E-5
-
-double *optimize_qp(QP *, double *, long, double *, LEARN_PARM *);
-double *primal=0,*dual=0;
-long   precision_violations=0;
-double opt_precision=DEF_PRECISION;
-long   maxiter=DEF_MAX_ITERATIONS;
-double lindep_sensitivity=DEF_LINDEP_SENSITIVITY;
-double *buffer;
-long   *nonoptimal;
-
-long  smallroundcount=0;
-long  roundnumber=0;
-
-/* /////////////////////////////////////////////////////////////// */
-
-void *my_malloc();
-
-int optimize_hildreth_despo(long,long,double,double,double,long,long,long,double,double *,
-			    double *,double *,double *,double *,double *,
-			    double *,double *,double *,long *,double *,double *);
-int solve_dual(long,long,double,double,long,double *,double *,double *,
-	       double *,double *,double *,double *,double *,double *,
-	       double *,double *,double *,double *,long);
-
-void linvert_matrix(double *, long, double *, double, long *);
-void lprint_matrix(double *, long);
-void ladd_matrix(double *, long, double);
-void lcopy_matrix(double *, long, double *);
-void lswitch_rows_matrix(double *, long, long, long);
-void lswitchrk_matrix(double *, long, long, long);
-
-double calculate_qp_objective(long, double *, double *, double *);
-
-
-
-double *optimize_qp(qp,epsilon_crit,nx,threshold,learn_parm)
-QP *qp;
-double *epsilon_crit;
-long nx; /* Maximum number of variables in QP */
-double *threshold; 
-LEARN_PARM *learn_parm;
-/* start the optimizer and return the optimal values */
-/* The HIDEO optimizer does not necessarily fully solve the problem. */
-/* Since it requires a strictly positive definite hessian, the solution */
-/* is restricted to a linear independent subset in case the matrix is */
-/* only semi-definite. */
-{
-  long i,j;
-  int result;
-  double eq,progress;
-
-  roundnumber++;
-
-  if(!primal) { /* allocate memory at first call */
-    primal=(double *)my_malloc(sizeof(double)*nx);
-    dual=(double *)my_malloc(sizeof(double)*((nx+1)*2));
-    nonoptimal=(long *)my_malloc(sizeof(long)*(nx));
-    buffer=(double *)my_malloc(sizeof(double)*((nx+1)*2*(nx+1)*2+
-					       nx*nx+2*(nx+1)*2+2*nx+1+2*nx+
-					       nx+nx+nx*nx));
-    (*threshold)=0;
-    for(i=0;i<nx;i++) {
-      primal[i]=0;
-    }
-  }
-
-  if(verbosity>=4) { /* really verbose */
-    printf("\n\n");
-    eq=qp->opt_ce0[0];
-    for(i=0;i<qp->opt_n;i++) {
-      eq+=qp->opt_xinit[i]*qp->opt_ce[i];
-      printf("%f: ",qp->opt_g0[i]);
-      for(j=0;j<qp->opt_n;j++) {
-	printf("%f ",qp->opt_g[i*qp->opt_n+j]);
-      }
-      printf(": a=%.10f < %f",qp->opt_xinit[i],qp->opt_up[i]);
-      printf(": y=%f\n",qp->opt_ce[i]);
-    }
-    if(qp->opt_m) {
-      printf("EQ: %f*x0",qp->opt_ce[0]);
-      for(i=1;i<qp->opt_n;i++) {
-	printf(" + %f*x%ld",qp->opt_ce[i],i);
-      }
-      printf(" = %f\n\n",-qp->opt_ce0[0]);
-    }
-  }
-
-  result=optimize_hildreth_despo(qp->opt_n,qp->opt_m,
-				 opt_precision,(*epsilon_crit),
-				 learn_parm->epsilon_a,maxiter,
-				 /* (long)PRIMAL_OPTIMAL, */
-				 (long)0, (long)0,
-				 lindep_sensitivity,
-				 qp->opt_g,qp->opt_g0,qp->opt_ce,qp->opt_ce0,
-				 qp->opt_low,qp->opt_up,primal,qp->opt_xinit,
-				 dual,nonoptimal,buffer,&progress);
-  if(verbosity>=3) { 
-    printf("return(%d)...",result);
-  }
-
-  if(learn_parm->totwords < learn_parm->svm_maxqpsize) { 
-    /* larger working sets will be linear dependent anyway */
-    learn_parm->svm_maxqpsize=maxl(learn_parm->totwords,(long)2);
-  }
-
-  if(result == NAN_SOLUTION) {
-    lindep_sensitivity*=2;  /* throw out linear dependent examples more */
-                            /* generously */
-    if(learn_parm->svm_maxqpsize>2) {
-      learn_parm->svm_maxqpsize--;  /* decrease size of qp-subproblems */
-    }
-    precision_violations++;
-  }
-
-  /* take one round of only two variable to get unstuck */
-  if((result != PRIMAL_OPTIMAL) || (!(roundnumber % 31)) || (progress <= 0)) {
-
-    smallroundcount++;
-
-    result=optimize_hildreth_despo(qp->opt_n,qp->opt_m,
-				   opt_precision,(*epsilon_crit),
-				   learn_parm->epsilon_a,(long)maxiter,
-				   (long)PRIMAL_OPTIMAL,(long)SMALLROUND,
-				   lindep_sensitivity,
-				   qp->opt_g,qp->opt_g0,qp->opt_ce,qp->opt_ce0,
-				   qp->opt_low,qp->opt_up,primal,qp->opt_xinit,
-				   dual,nonoptimal,buffer,&progress);
-    if(verbosity>=3) { 
-      printf("return_srd(%d)...",result);
-    }
-
-    if(result != PRIMAL_OPTIMAL) {
-      if(result != ONLY_ONE_VARIABLE) 
-	precision_violations++;
-      if(result == MAXITER_EXCEEDED) 
-	maxiter+=100;
-      if(result == NAN_SOLUTION) {
-	lindep_sensitivity*=2;  /* throw out linear dependent examples more */
-	                        /* generously */
-	/* results not valid, so return inital values */
-	for(i=0;i<qp->opt_n;i++) {
-	  primal[i]=qp->opt_xinit[i];
-	}
-      }
-    }
-  }
-
-
-  if(precision_violations > 50) {
-    precision_violations=0;
-    (*epsilon_crit)*=10.0; 
-    if(verbosity>=1) {
-      printf("\nWARNING: Relaxing epsilon on KT-Conditions (%f).\n",
-	     (*epsilon_crit));
-    }
-  }	  
-
-  if((qp->opt_m>0) && (result != NAN_SOLUTION) && (!isnan(dual[1]-dual[0])))
-    (*threshold)=dual[1]-dual[0];
-  else
-    (*threshold)=0;
-
-  if(verbosity>=4) { /* really verbose */
-    printf("\n\n");
-    eq=qp->opt_ce0[0];
-    for(i=0;i<qp->opt_n;i++) {
-      eq+=primal[i]*qp->opt_ce[i];
-      printf("%f: ",qp->opt_g0[i]);
-      for(j=0;j<qp->opt_n;j++) {
-	printf("%f ",qp->opt_g[i*qp->opt_n+j]);
-      }
-      printf(": a=%.30f",primal[i]);
-      printf(": nonopti=%ld",nonoptimal[i]);
-      printf(": y=%f\n",qp->opt_ce[i]);
-    }
-    printf("eq-constraint=%.30f\n",eq);
-    printf("b=%f\n",(*threshold));
-    printf(" smallroundcount=%ld ",smallroundcount);
-  }
-
-  return(primal);
-}
-
-
-
-int optimize_hildreth_despo(n,m,precision,epsilon_crit,epsilon_a,maxiter,goal,
-			    smallround,lindep_sensitivity,g,g0,ce,ce0,low,up,
-			    primal,init,dual,lin_dependent,buffer,progress)
-     long   n;            /* number of variables */
-     long   m;            /* number of linear equality constraints [0,1] */
-     double precision;    /* solve at least to this dual precision */
-     double epsilon_crit; /* stop, if KT-Conditions approx fulfilled */
-     double epsilon_a;    /* precision of alphas at bounds */
-     long   maxiter;      /* stop after this many iterations */
-     long   goal;         /* keep going until goal fulfilled */
-     long   smallround;   /* use only two variables of steepest descent */
-     double lindep_sensitivity; /* epsilon for detecting linear dependent ex */
-     double *g;           /* hessian of objective */
-     double *g0;          /* linear part of objective */
-     double *ce,*ce0;     /* linear equality constraints */
-     double *low,*up;     /* box constraints */
-     double *primal;      /* primal variables */
-     double *init;        /* initial values of primal */
-     double *dual;        /* dual variables */
-     long   *lin_dependent;
-     double *buffer;
-     double *progress;    /* delta in the objective function between
-                             before and after */
-{
-  long i,j,k,from,to,n_indep,changed;
-  double sum,bmin=0,bmax=0;
-  double *d,*d0,*ig,*dual_old,*temp,*start;       
-  double *g0_new,*g_new,*ce_new,*ce0_new,*low_new,*up_new;
-  double add,t;
-  int result;
-  double obj_before,obj_after; 
-  long b1,b2;
-  double g0_b1,g0_b2,ce0_b;
-
-  g0_new=&(buffer[0]);    /* claim regions of buffer */
-  d=&(buffer[n]);
-  d0=&(buffer[n+(n+m)*2*(n+m)*2]);
-  ce_new=&(buffer[n+(n+m)*2*(n+m)*2+(n+m)*2]);
-  ce0_new=&(buffer[n+(n+m)*2*(n+m)*2+(n+m)*2+n]);
-  ig=&(buffer[n+(n+m)*2*(n+m)*2+(n+m)*2+n+m]);
-  dual_old=&(buffer[n+(n+m)*2*(n+m)*2+(n+m)*2+n+m+n*n]);
-  low_new=&(buffer[n+(n+m)*2*(n+m)*2+(n+m)*2+n+m+n*n+(n+m)*2]);
-  up_new=&(buffer[n+(n+m)*2*(n+m)*2+(n+m)*2+n+m+n*n+(n+m)*2+n]);
-  start=&(buffer[n+(n+m)*2*(n+m)*2+(n+m)*2+n+m+n*n+(n+m)*2+n+n]);
-  g_new=&(buffer[n+(n+m)*2*(n+m)*2+(n+m)*2+n+m+n*n+(n+m)*2+n+n+n]);
-  temp=&(buffer[n+(n+m)*2*(n+m)*2+(n+m)*2+n+m+n*n+(n+m)*2+n+n+n+n*n]);
-
-  b1=-1;
-  b2=-1;
-  for(i=0;i<n;i++) {   /* get variables with steepest feasible descent */
-    sum=g0[i];         
-    for(j=0;j<n;j++) 
-      sum+=init[j]*g[i*n+j];
-    sum=sum*ce[i];
-    if(((b1==-1) || (sum<bmin)) 
-       && (!((init[i]<=(low[i]+epsilon_a)) && (ce[i]<0.0)))
-       && (!((init[i]>=( up[i]-epsilon_a)) && (ce[i]>0.0)))
-       ) {
-      bmin=sum;
-      b1=i;
-    }
-    if(((b2==-1) || (sum>=bmax)) 
-       && (!((init[i]<=(low[i]+epsilon_a)) && (ce[i]>0.0)))
-       && (!((init[i]>=( up[i]-epsilon_a)) && (ce[i]<0.0)))
-       ) {
-      bmax=sum;
-      b2=i;
-    }
-  }
-  /* in case of unbiased hyperplane, the previous projection on */
-  /* equality constraint can lead to b1 or b2 being -1. */
-  if((b1 == -1) || (b2 == -1)) {
-    b1=maxl(b1,b2);
-    b2=maxl(b1,b2);
-  }
-
-  for(i=0;i<n;i++) {
-    start[i]=init[i];
-  }
-
-  /* in case both example vectors are linearly dependent */
-  /* WARNING: Assumes that ce[] in {-1,1} */
-  add=0;
-  changed=0;
-  if((b1 != b2) && (m==1)) {
-    for(i=0;i<n;i++) {  /* fix other vectors */
-      if(i==b1) 
-	g0_b1=g0[i];
-      if(i==b2) 
-	g0_b2=g0[i];
-    }
-    ce0_b=ce0[0];
-    for(i=0;i<n;i++) {  
-      if((i!=b1) && (i!=b2)) {
-	for(j=0;j<n;j++) {
-	  if(j==b1) 
-	    g0_b1+=start[i]*g[i*n+j];
-	  if(j==b2) 
-	    g0_b2+=start[i]*g[i*n+j];
-	}
-	ce0_b-=(start[i]*ce[i]);
-      }
-    }
-    if((g[b1*n+b2] == g[b1*n+b1]) && (g[b1*n+b2] == g[b2*n+b2])) {
-      /* printf("euqal\n"); */
-      if(ce[b1] == ce[b2]) { 
-	if(g0_b1 <= g0_b2) { /* set b1 to upper bound */
-	  /* printf("case +=<\n"); */
-	  changed=1;
-	  t=up[b1]-init[b1];
-	  if((init[b2]-low[b2]) < t) {
-	    t=init[b2]-low[b2];
-	  }
-	  start[b1]=init[b1]+t;
-	  start[b2]=init[b2]-t;
-	}
-	else if(g0_b1 > g0_b2) { /* set b2 to upper bound */
-	  /* printf("case +=>\n"); */
-	  changed=1;
-	  t=up[b2]-init[b2];
-	  if((init[b1]-low[b1]) < t) {
-	    t=init[b1]-low[b1];
-	  }
-	  start[b1]=init[b1]-t;
-	  start[b2]=init[b2]+t;
-	}
-      }
-      else if(((g[b1*n+b1]>0) || (g[b2*n+b2]>0))) { /* (ce[b1] != ce[b2]) */ 
-	/* printf("case +!\n"); */
-	t=((ce[b2]/ce[b1])*g0[b1]-g0[b2]+ce0[0]*(g[b1*n+b1]*ce[b2]/ce[b1]-g[b1*n+b2]/ce[b1]))/((ce[b2]*ce[b2]/(ce[b1]*ce[b1]))*g[b1*n+b1]+g[b2*n+b2]-2*(g[b1*n+b2]*ce[b2]/ce[b1]))-init[b2];
-	changed=1;
-	if((up[b2]-init[b2]) < t) {
-	  t=up[b2]-init[b2];
-	}
-	if((init[b2]-low[b2]) < -t) {
-	  t=-(init[b2]-low[b2]);
-	}
-	if((up[b1]-init[b1]) < t) {
-	  t=(up[b1]-init[b1]);
-	}
-	if((init[b1]-low[b1]) < -t) {
-	  t=-(init[b1]-low[b1]);
-	}
-	start[b1]=init[b1]+t;
-	start[b2]=init[b2]+t;
-      }
-    }
-    if((-g[b1*n+b2] == g[b1*n+b1]) && (-g[b1*n+b2] == g[b2*n+b2])) {
-      /* printf("diffeuqal\n"); */
-      if(ce[b1] != ce[b2]) {
-	if((g0_b1+g0_b2) < 0) { /* set b1 and b2 to upper bound */
-	  /* printf("case -!<\n"); */
-	  changed=1;
-	  t=up[b1]-init[b1];
-	  if((up[b2]-init[b2]) < t) {
-	    t=up[b2]-init[b2];
-	  }
-	  start[b1]=init[b1]+t;
-	  start[b2]=init[b2]+t;
-	}     
-	else if((g0_b1+g0_b2) >= 0) { /* set b1 and b2 to lower bound */
-	  /* printf("case -!>\n"); */
-	  changed=1;
-	  t=init[b1]-low[b1];
-	  if((init[b2]-low[b2]) < t) {
-	    t=init[b2]-low[b2];
-	  }
-	  start[b1]=init[b1]-t;
-	  start[b2]=init[b2]-t;
-	}
-      }
-      else if(((g[b1*n+b1]>0) || (g[b2*n+b2]>0))) { /* (ce[b1]==ce[b2]) */
-	/*  printf("case -=\n"); */
-	t=((ce[b2]/ce[b1])*g0[b1]-g0[b2]+ce0[0]*(g[b1*n+b1]*ce[b2]/ce[b1]-g[b1*n+b2]/ce[b1]))/((ce[b2]*ce[b2]/(ce[b1]*ce[b1]))*g[b1*n+b1]+g[b2*n+b2]-2*(g[b1*n+b2]*ce[b2]/ce[b1]))-init[b2];
-	changed=1;
-	if((up[b2]-init[b2]) < t) {
-	  t=up[b2]-init[b2];
-	}
-	if((init[b2]-low[b2]) < -t) {
-	  t=-(init[b2]-low[b2]);
-	}
-	if((up[b1]-init[b1]) < -t) {
-	  t=-(up[b1]-init[b1]);
-	}
-	if((init[b1]-low[b1]) < t) {
-	  t=init[b1]-low[b1];
-	}
-	start[b1]=init[b1]-t;
-	start[b2]=init[b2]+t;
-      }	
-    }
-  }
-  /* if we have a biased hyperplane, then adding a constant to the */
-  /* hessian does not change the solution. So that is done for examples */
-  /* with zero diagonal entry, since HIDEO cannot handle them. */
-  if((m>0) 
-     && ((fabs(g[b1*n+b1]) < lindep_sensitivity) 
-	 || (fabs(g[b2*n+b2]) < lindep_sensitivity))) {
-    /* printf("Case 0\n"); */
-    add+=0.093274;
-  }    
-  /* in case both examples are linear dependent */
-  else if((m>0) 
-	  && (g[b1*n+b2] != 0 && g[b2*n+b2] != 0)
-	  && (fabs(g[b1*n+b1]/g[b1*n+b2] - g[b1*n+b2]/g[b2*n+b2])
-	      < lindep_sensitivity)) { 
-    /* printf("Case lindep\n"); */
-    add+=0.078274;
-  }
-
-  /* special case for zero diagonal entry on unbiased hyperplane */
-  if((m==0) && (b1>=0))  {
-    if(fabs(g[b1*n+b1]) < lindep_sensitivity) { 
-      /* printf("Case 0b1\n"); */
-      for(i=0;i<n;i++) {  /* fix other vectors */
-	if(i==b1) 
-	  g0_b1=g0[i];
-      }
-      for(i=0;i<n;i++) {  
-	if(i!=b1) {
-	  for(j=0;j<n;j++) {
-	    if(j==b1) 
-	      g0_b1+=start[i]*g[i*n+j];
-	  }
-	}
-      }
-      if(g0_b1<0)
-	start[b1]=up[b1];
-      if(g0_b1>=0)
-	start[b1]=low[b1];
-    }
-  }
-  if((m==0) && (b2>=0))  {
-    if(fabs(g[b2*n+b2]) < lindep_sensitivity) { 
-      /* printf("Case 0b2\n"); */
-      for(i=0;i<n;i++) {  /* fix other vectors */
-	if(i==b2) 
-	  g0_b2=g0[i];
-      }
-      for(i=0;i<n;i++) {  
-	if(i!=b2) {
-	  for(j=0;j<n;j++) {
-	    if(j==b2) 
-	      g0_b2+=start[i]*g[i*n+j];
-	  }
-	}
-      }
-      if(g0_b2<0)
-	start[b2]=up[b2];
-      if(g0_b2>=0)
-	start[b2]=low[b2];
-    }
-  }
-
-  /* printf("b1=%ld,b2=%ld\n",b1,b2); */
-
-  lcopy_matrix(g,n,d);
-  if((m==1) && (add>0.0)) {
-    for(j=0;j<n;j++) {
-      for(k=0;k<n;k++) {
-	d[j*n+k]+=add*ce[j]*ce[k];
-      }
-    }
-  }
-  else {
-    add=0.0;
-  }
-
-  if(n>2) {                    /* switch, so that variables are better mixed */
-    lswitchrk_matrix(d,n,b1,(long)0); 
-    if(b2 == 0) 
-      lswitchrk_matrix(d,n,b1,(long)1); 
-    else
-      lswitchrk_matrix(d,n,b2,(long)1); 
-  }
-  if(smallround == SMALLROUND) {
-    for(i=2;i<n;i++) {
-      lin_dependent[i]=1;
-    }
-    if(m>0) { /* for biased hyperplane, pick two variables */
-      lin_dependent[0]=0;
-      lin_dependent[1]=0;
-    }
-    else {    /* for unbiased hyperplane, pick only one variable */
-      lin_dependent[0]=smallroundcount % 2;
-      lin_dependent[1]=(smallroundcount+1) % 2;
-    }
-  }
-  else {
-    for(i=0;i<n;i++) {
-      lin_dependent[i]=0;
-    }
-  }
-  linvert_matrix(d,n,ig,lindep_sensitivity,lin_dependent);
-  if(n>2) {                    /* now switch back */
-    if(b2 == 0) {
-      lswitchrk_matrix(ig,n,b1,(long)1); 
-      i=lin_dependent[1];  
-      lin_dependent[1]=lin_dependent[b1];
-      lin_dependent[b1]=i;
-    }
-    else {
-      lswitchrk_matrix(ig,n,b2,(long)1); 
-      i=lin_dependent[1];  
-      lin_dependent[1]=lin_dependent[b2];
-      lin_dependent[b2]=i;
-    }
-    lswitchrk_matrix(ig,n,b1,(long)0); 
-    i=lin_dependent[0];  
-    lin_dependent[0]=lin_dependent[b1];
-    lin_dependent[b1]=i;
-  }
-  /* lprint_matrix(d,n); */
-  /* lprint_matrix(ig,n); */
-
-  lcopy_matrix(g,n,g_new);   /* restore g_new matrix */
-  if(add>0)
-    for(j=0;j<n;j++) {
-      for(k=0;k<n;k++) {
-	g_new[j*n+k]+=add*ce[j]*ce[k];
-      }
-    }
-
-  for(i=0;i<n;i++) {  /* fix linear dependent vectors */
-    g0_new[i]=g0[i]+add*ce0[0]*ce[i];
-  }
-  if(m>0) ce0_new[0]=-ce0[0];
-  for(i=0;i<n;i++) {  /* fix linear dependent vectors */
-    if(lin_dependent[i]) {
-      for(j=0;j<n;j++) {
-	if(!lin_dependent[j]) {
-	  g0_new[j]+=start[i]*g_new[i*n+j];
-	}
-      }
-      if(m>0) ce0_new[0]-=(start[i]*ce[i]);
-    }
-  }
-  from=0;   /* remove linear dependent vectors */
-  to=0;
-  n_indep=0;
-  for(i=0;i<n;i++) {
-    if(!lin_dependent[i]) {
-      g0_new[n_indep]=g0_new[i];
-      ce_new[n_indep]=ce[i]; 
-      low_new[n_indep]=low[i];
-      up_new[n_indep]=up[i];
-      primal[n_indep]=start[i];
-      n_indep++;
-    }
-    for(j=0;j<n;j++) {
-      if((!lin_dependent[i]) && (!lin_dependent[j])) {
-        ig[to]=ig[from];
-        g_new[to]=g_new[from];
-	to++;
-      }
-      from++;
-    }
-  }
-
-  if(verbosity>=3) {
-    printf("real_qp_size(%ld)...",n_indep);
-  }
-  
-  /* cannot optimize with only one variable */
-  if((n_indep<=1) && (m>0) && (!changed)) { 
-    for(i=n-1;i>=0;i--) {
-      primal[i]=init[i];
-    }
-    return((int)ONLY_ONE_VARIABLE);
-  }
-
-  if((!changed) || (n_indep>1)) { 
-    result=solve_dual(n_indep,m,precision,epsilon_crit,maxiter,g_new,g0_new,
-		      ce_new,ce0_new,low_new,up_new,primal,d,d0,ig,
-		      dual,dual_old,temp,goal);
-  }
-  else {
-    result=PRIMAL_OPTIMAL;
-  }
-  
-  j=n_indep;
-  for(i=n-1;i>=0;i--) {
-    if(!lin_dependent[i]) {
-      j--;
-      primal[i]=primal[j];
-    }
-    else {
-      primal[i]=start[i];  /* leave as is */
-    }
-    temp[i]=primal[i];
-  }
-   
-  obj_before=calculate_qp_objective(n,g,g0,init);
-  obj_after=calculate_qp_objective(n,g,g0,primal);
-  (*progress)=obj_before-obj_after;
-  if(verbosity>=3) {
-    printf("before(%.30f)...after(%.30f)...result_sd(%d)...",
-	   obj_before,obj_after,result); 
-  }
-
-  return((int)result);
-}
-
-
-int solve_dual(n,m,precision,epsilon_crit,maxiter,g,g0,ce,ce0,low,up,primal,
-	       d,d0,ig,dual,dual_old,temp,goal)
-     /* Solves the dual using the method of Hildreth and D'Espo. */
-     /* Can only handle problems with zero or exactly one */
-     /* equality constraints. */
-
-     long   n;            /* number of variables */
-     long   m;            /* number of linear equality constraints */
-     double precision;    /* solve at least to this dual precision */
-     double epsilon_crit; /* stop, if KT-Conditions approx fulfilled */
-     long   maxiter;      /* stop after that many iterations */
-     double *g;
-     double *g0;          /* linear part of objective */
-     double *ce,*ce0;     /* linear equality constraints */
-     double *low,*up;     /* box constraints */
-     double *primal;      /* variables (with initial values) */
-     double *d,*d0,*ig,*dual,*dual_old,*temp;       /* buffer  */
-     long goal;
-{
-  long i,j,k,iter;
-  double sum,w,maxviol,viol,temp1,temp2,isnantest;
-  double model_b,dist;
-  long retrain,maxfaktor,primal_optimal=0,at_bound,scalemaxiter;
-  double epsilon_a=1E-15,epsilon_hideo;
-  double eq; 
-
-  if((m<0) || (m>1)) 
-    perror("SOLVE DUAL: inappropriate number of eq-constrains!");
-
-  /*  
-  printf("\n");
-  for(i=0;i<n;i++) {
-    printf("%f: ",g0[i]);
-    for(j=0;j<n;j++) {
-      printf("%f ",g[i*n+j]);
-    }
-    printf(": a=%.30f",primal[i]);
-    printf(": y=%f\n",ce[i]);
-  }
-  */
-
-  for(i=0;i<2*(n+m);i++) {
-    dual[i]=0;
-    dual_old[i]=0;
-  }
-  for(i=0;i<n;i++) {   
-    for(j=0;j<n;j++) {   /* dual hessian for box constraints */
-      d[i*2*(n+m)+j]=ig[i*n+j];
-      d[(i+n)*2*(n+m)+j]=-ig[i*n+j];
-      d[i*2*(n+m)+j+n]=-ig[i*n+j];
-      d[(i+n)*2*(n+m)+j+n]=ig[i*n+j];
-    }
-    if(m>0) {
-      sum=0;              /* dual hessian for eq constraints */
-      for(j=0;j<n;j++) {
-	sum+=(ce[j]*ig[i*n+j]);
-      }
-      d[i*2*(n+m)+2*n]=sum;
-      d[i*2*(n+m)+2*n+1]=-sum;
-      d[(n+i)*2*(n+m)+2*n]=-sum;
-      d[(n+i)*2*(n+m)+2*n+1]=sum;
-      d[(n+n)*2*(n+m)+i]=sum;
-      d[(n+n+1)*2*(n+m)+i]=-sum;
-      d[(n+n)*2*(n+m)+(n+i)]=-sum;
-      d[(n+n+1)*2*(n+m)+(n+i)]=sum;
-      
-      sum=0;
-      for(j=0;j<n;j++) {
-	for(k=0;k<n;k++) {
-	  sum+=(ce[k]*ce[j]*ig[j*n+k]);
-	}
-      }
-      d[(n+n)*2*(n+m)+2*n]=sum;
-      d[(n+n)*2*(n+m)+2*n+1]=-sum;
-      d[(n+n+1)*2*(n+m)+2*n]=-sum;
-      d[(n+n+1)*2*(n+m)+2*n+1]=sum;
-    } 
-  }
-
-  for(i=0;i<n;i++) {   /* dual linear component for the box constraints */
-    w=0;
-    for(j=0;j<n;j++) {
-      w+=(ig[i*n+j]*g0[j]); 
-    }
-    d0[i]=up[i]+w;
-    d0[i+n]=-low[i]-w;
-  }
-
-  if(m>0) {  
-    sum=0;             /* dual linear component for eq constraints */
-    for(j=0;j<n;j++) {
-      for(k=0;k<n;k++) {
-	sum+=(ce[k]*ig[k*n+j]*g0[j]); 
-      }
-    }
-    d0[2*n]=ce0[0]+sum;
-    d0[2*n+1]=-ce0[0]-sum;
-  }
-
-  maxviol=999999;
-  iter=0;
-  retrain=1;
-  maxfaktor=1;
-  scalemaxiter=maxiter/5;
-  while((retrain) && (maxviol > 0) && (iter < (scalemaxiter*maxfaktor))) {
-    iter++;
-    
-    while((maxviol > precision) && (iter < (scalemaxiter*maxfaktor))) {
-      iter++;
-      maxviol=0;
-      for(i=0;i<2*(n+m);i++) {
-	sum=d0[i];
-	for(j=0;j<2*(n+m);j++) {
-	  sum+=d[i*2*(n+m)+j]*dual_old[j];
-	}
-	sum-=d[i*2*(n+m)+i]*dual_old[i];
-	dual[i]=-sum/d[i*2*(n+m)+i];
-	if(dual[i]<0) dual[i]=0;
-	
-	viol=fabs(dual[i]-dual_old[i]);
-	if(viol>maxviol) 
-	  maxviol=viol;
-	dual_old[i]=dual[i];
-      }
-      /*
-      printf("%d) maxviol=%20f precision=%f\n",iter,maxviol,precision); 
-      */
-    }
-  
-    if(m>0) {
-      for(i=0;i<n;i++) {
-	temp[i]=dual[i]-dual[i+n]+ce[i]*(dual[n+n]-dual[n+n+1])+g0[i];
-      }
-    } 
-    else {
-      for(i=0;i<n;i++) {
-	temp[i]=dual[i]-dual[i+n]+g0[i];
-      }
-    }
-    for(i=0;i<n;i++) {
-      primal[i]=0;             /* calc value of primal variables */
-      for(j=0;j<n;j++) {
-	primal[i]+=ig[i*n+j]*temp[j];
-      }
-      primal[i]*=-1.0;
-      if(primal[i]<=(low[i])) {  /* clip conservatively */
-	primal[i]=low[i];
-      }
-      else if(primal[i]>=(up[i])) {
-	primal[i]=up[i];
-      }
-    }
-
-    if(m>0) 
-      model_b=dual[n+n+1]-dual[n+n];
-    else
-      model_b=0;
-
-    epsilon_hideo=EPSILON_HIDEO;
-    for(i=0;i<n;i++) {           /* check precision of alphas */
-      dist=-model_b*ce[i]; 
-      dist+=(g0[i]+1.0);
-      for(j=0;j<i;j++) {
-	dist+=(primal[j]*g[j*n+i]);
-      }
-      for(j=i;j<n;j++) {
-	dist+=(primal[j]*g[i*n+j]);
-      }
-      if((primal[i]<(up[i]-epsilon_hideo)) && (dist < (1.0-epsilon_crit))) {
-	epsilon_hideo=(up[i]-primal[i])*2.0;
-      }
-      else if((primal[i]>(low[i]+epsilon_hideo)) &&(dist>(1.0+epsilon_crit))) {
-	epsilon_hideo=(primal[i]-low[i])*2.0;
-      }
-    }
-    /* printf("\nEPSILON_HIDEO=%.30f\n",epsilon_hideo); */
-
-    for(i=0;i<n;i++) {           /* clip alphas to bounds */
-      if(primal[i]<=(low[i]+epsilon_hideo)) {
-	primal[i]=low[i];
-      }
-      else if(primal[i]>=(up[i]-epsilon_hideo)) {
-	primal[i]=up[i];
-      }
-    }
-
-    retrain=0;
-    primal_optimal=1;
-    at_bound=0;
-    for(i=0;(i<n);i++) {  /* check primal KT-Conditions */
-      dist=-model_b*ce[i]; 
-      dist+=(g0[i]+1.0);
-      for(j=0;j<i;j++) {
-	dist+=(primal[j]*g[j*n+i]);
-      }
-      for(j=i;j<n;j++) {
-	dist+=(primal[j]*g[i*n+j]);
-      }
-      if((primal[i]<(up[i]-epsilon_a)) && (dist < (1.0-epsilon_crit))) {
-	retrain=1;
-	primal_optimal=0;
-      }
-      else if((primal[i]>(low[i]+epsilon_a)) && (dist > (1.0+epsilon_crit))) {
-	retrain=1;
-	primal_optimal=0;
-      }
-      if((primal[i]<=(low[i]+epsilon_a)) || (primal[i]>=(up[i]-epsilon_a))) {
-	at_bound++;
-      }
-      /*    printf("HIDEOtemp: a[%ld]=%.30f, dist=%.6f, b=%f, at_bound=%ld\n",i,primal[i],dist,model_b,at_bound);  */
-    }
-    if(m>0) {
-      eq=-ce0[0];               /* check precision of eq-constraint */
-      for(i=0;i<n;i++) { 
-	eq+=(ce[i]*primal[i]);
-      }
-      if((EPSILON_EQ < fabs(eq)) 
-	 /*
-	 && !((goal==PRIMAL_OPTIMAL) 
-	       && (at_bound==n)) */
-	 ) {
-	retrain=1;
-	primal_optimal=0;
-      }
-      /* printf("\n eq=%.30f ce0=%f at-bound=%ld\n",eq,ce0[0],at_bound);  */
-    }
-
-    if(retrain) {
-      precision/=10;
-      if(((goal == PRIMAL_OPTIMAL) && (maxfaktor < 50000))
-	 || (maxfaktor < 5)) {
-	maxfaktor++;
-      }
-    }
-  }
-
-  if(!primal_optimal) {
-    for(i=0;i<n;i++) {
-      primal[i]=0;             /* calc value of primal variables */
-      for(j=0;j<n;j++) {
-	primal[i]+=ig[i*n+j]*temp[j];
-      }
-      primal[i]*=-1.0;
-      if(primal[i]<=(low[i]+epsilon_a)) {  /* clip conservatively */
-	primal[i]=low[i];
-      }
-      else if(primal[i]>=(up[i]-epsilon_a)) {
-	primal[i]=up[i];
-      }
-    }
-  }
-
-  isnantest=0;
-  for(i=0;i<n;i++) {           /* check for isnan */
-    isnantest+=primal[i];
-  }
-
-  if(m>0) {
-    temp1=dual[n+n+1];   /* copy the dual variables for the eq */
-    temp2=dual[n+n];     /* constraints to a handier location */
-    for(i=n+n+1;i>=2;i--) {
-      dual[i]=dual[i-2];
-    }
-    dual[0]=temp2;
-    dual[1]=temp1;
-    isnantest+=temp1+temp2;
-  }
-
-  if(isnan(isnantest)) {
-    return((int)NAN_SOLUTION);
-  }
-  else if(primal_optimal) {
-    return((int)PRIMAL_OPTIMAL);
-  }
-  else if(maxviol == 0.0) {
-    return((int)DUAL_OPTIMAL);
-  }
-  else {
-    return((int)MAXITER_EXCEEDED);
-  }
-}
-
-
-void linvert_matrix(matrix,depth,inverse,lindep_sensitivity,lin_dependent)
-double *matrix;
-long depth;
-double *inverse,lindep_sensitivity;
-long *lin_dependent;  /* indicates the active parts of matrix on 
-			 input and output*/
-{
-  long i,j,k;
-  double factor;
-
-  for(i=0;i<depth;i++) {
-    /*    lin_dependent[i]=0; */
-    for(j=0;j<depth;j++) {
-      inverse[i*depth+j]=0.0;
-    }
-    inverse[i*depth+i]=1.0;
-  }
-  for(i=0;i<depth;i++) {
-    if(lin_dependent[i] || (fabs(matrix[i*depth+i])<lindep_sensitivity)) {
-      lin_dependent[i]=1;
-    }
-    else {
-      for(j=i+1;j<depth;j++) {
-	factor=matrix[j*depth+i]/matrix[i*depth+i];
-	for(k=i;k<depth;k++) {
-	  matrix[j*depth+k]-=(factor*matrix[i*depth+k]);
-	}
-	for(k=0;k<depth;k++) {
-	  inverse[j*depth+k]-=(factor*inverse[i*depth+k]);
-	}
-      }
-    }
-  }
-  for(i=depth-1;i>=0;i--) {
-    if(!lin_dependent[i]) {
-      factor=1/matrix[i*depth+i];
-      for(k=0;k<depth;k++) {
-	inverse[i*depth+k]*=factor;
-      }
-      matrix[i*depth+i]=1;
-      for(j=i-1;j>=0;j--) {
-	factor=matrix[j*depth+i];
-	matrix[j*depth+i]=0;
-	for(k=0;k<depth;k++) {
-	  inverse[j*depth+k]-=(factor*inverse[i*depth+k]);
-	}
-      }
-    }
-  }
-}
-
-void lprint_matrix(matrix,depth)
-double *matrix;
-long depth;
-{
-  long i,j;
-  for(i=0;i<depth;i++) {
-    for(j=0;j<depth;j++) {
-      printf("%5.2f ",(double)(matrix[i*depth+j]));
-    }
-    printf("\n");
-  }
-  printf("\n");
-}
-
-void ladd_matrix(matrix,depth,scalar)
-double *matrix;
-long depth;
-double scalar;
-{
-  long i,j;
-  for(i=0;i<depth;i++) {
-    for(j=0;j<depth;j++) {
-      matrix[i*depth+j]+=scalar;
-    }
-  }
-}
-
-void lcopy_matrix(matrix,depth,matrix2) 
-double *matrix;
-long depth;
-double *matrix2;
-{
-  long i;
-  
-  for(i=0;i<(depth)*(depth);i++) {
-    matrix2[i]=matrix[i];
-  }
-}
-
-void lswitch_rows_matrix(matrix,depth,r1,r2) 
-double *matrix;
-long depth,r1,r2;
-{
-  long i;
-  double temp;
-
-  for(i=0;i<depth;i++) {
-    temp=matrix[r1*depth+i];
-    matrix[r1*depth+i]=matrix[r2*depth+i];
-    matrix[r2*depth+i]=temp;
-  }
-}
-
-void lswitchrk_matrix(matrix,depth,rk1,rk2) 
-double *matrix;
-long depth,rk1,rk2;
-{
-  long i;
-  double temp;
-
-  for(i=0;i<depth;i++) {
-    temp=matrix[rk1*depth+i];
-    matrix[rk1*depth+i]=matrix[rk2*depth+i];
-    matrix[rk2*depth+i]=temp;
-  }
-  for(i=0;i<depth;i++) {
-    temp=matrix[i*depth+rk1];
-    matrix[i*depth+rk1]=matrix[i*depth+rk2];
-    matrix[i*depth+rk2]=temp;
-  }
-}
-
-double calculate_qp_objective(opt_n,opt_g,opt_g0,alpha)
-long opt_n;
-double *opt_g,*opt_g0,*alpha;
-{
-  double obj;
-  long i,j;
-  obj=0;  /* calculate objective  */
-  for(i=0;i<opt_n;i++) {
-    obj+=(opt_g0[i]*alpha[i]);
-    obj+=(0.5*alpha[i]*alpha[i]*opt_g[i*opt_n+i]);
-    for(j=0;j<i;j++) {
-      obj+=(alpha[j]*alpha[i]*opt_g[j*opt_n+i]);
-    }
-  }
-  return(obj);
-}
diff --git a/trunk/svm_light/build/svm_light-tar/svm_learn.c b/trunk/svm_light/build/svm_light-tar/svm_learn.c
deleted file mode 100755
index d2b5a89b93dcdefb444bae5f306448bbf877f695..0000000000000000000000000000000000000000
--- a/trunk/svm_light/build/svm_light-tar/svm_learn.c
+++ /dev/null
@@ -1,4650 +0,0 @@
-/***********************************************************************/
-/*                                                                     */
-/*   svm_learn.c                                                       */
-/*                                                                     */
-/*   Learning module of Support Vector Machine.                        */
-/*                                                                     */
-/*   Author: Thorsten Joachims                                         */
-/*   Date: 02.07.02                                                    */
-/*                                                                     */
-/*   Copyright (c) 2002  Thorsten Joachims - All rights reserved       */
-/*                                                                     */
-/*   This software is available for non-commercial use only. It must   */
-/*   not be modified and distributed without prior permission of the   */
-/*   author. The author is not responsible for implications from the   */
-/*   use of this software.                                             */
-/*                                                                     */
-/***********************************************************************/
-
-
-# include "svm_common.h"
-# include "svm_learn.h"
-
-
-/* interface to QP-solver */
-double *optimize_qp(QP *, double *, long, double *, LEARN_PARM *);
-
-/*---------------------------------------------------------------------------*/
-
-void svm_learn_classification_extend(DOC **docs, double *class, long int
-                              totdoc, long int totwords,
-                              LEARN_PARM *learn_parm,
-                              KERNEL_PARM *kernel_parm,
-                              KERNEL_CACHE *kernel_cache,
-                              MODEL *model,
-                              double *alpha,
-                              int* nerrors,
-                              double* maxerror)
-{
-	long *inconsistent, i, *label;
-	long inconsistentnum;
-	long misclassified, upsupvecnum;
-	double loss, model_length, example_length;
-	double maxdiff, *lin, *a, *c;
-	long runtime_start, runtime_end;
-	long iterations;
-	long *unlabeled, transduction;
-	long heldout;
-	long loo_count = 0, loo_count_pos = 0, loo_count_neg = 0, trainpos = 0, trainneg = 0;
-	long loocomputed = 0, runtime_start_loo = 0, runtime_start_xa = 0;
-	double heldout_c = 0, r_delta_sq = 0, r_delta, r_delta_avg;
-	long *index, *index2dnum;
-	double *weights;
-	CFLOAT *aicache;  /* buffer to keep one row of hessian */
-	
-	double *xi_fullset; /* buffer for storing xi on full sample in loo */
-	double *a_fullset;  /* buffer for storing alpha on full sample in loo */
-	TIMING timing_profile;
-	SHRINK_STATE shrink_state;
-	
-	runtime_start = get_runtime();
-	timing_profile.time_kernel = 0;
-	timing_profile.time_opti = 0;
-	timing_profile.time_shrink = 0;
-	timing_profile.time_update = 0;
-	timing_profile.time_model = 0;
-	timing_profile.time_check = 0;
-	timing_profile.time_select = 0;
-	kernel_cache_statistic = 0;
-	
-	learn_parm->totwords = totwords;
-	
-	/* make sure -n value is reasonable */
-	if ((learn_parm->svm_newvarsinqp < 2)
-	        || (learn_parm->svm_newvarsinqp > learn_parm->svm_maxqpsize))
-	{
-		learn_parm->svm_newvarsinqp = learn_parm->svm_maxqpsize;
-	}
-	
-	init_shrink_state(&shrink_state, totdoc, (long)MAXSHRINK);
-	
-	label = (long *)my_malloc(sizeof(long) * totdoc);
-	inconsistent = (long *)my_malloc(sizeof(long) * totdoc);
-	unlabeled = (long *)my_malloc(sizeof(long) * totdoc);
-	c = (double *)my_malloc(sizeof(double) * totdoc);
-	a = (double *)my_malloc(sizeof(double) * totdoc);
-	a_fullset = (double *)my_malloc(sizeof(double) * totdoc);
-	xi_fullset = (double *)my_malloc(sizeof(double) * totdoc);
-	lin = (double *)my_malloc(sizeof(double) * totdoc);
-	learn_parm->svm_cost = (double *)my_malloc(sizeof(double) * totdoc);
-	model->supvec = (DOC **)my_malloc(sizeof(DOC *) * (totdoc + 2));
-	model->alpha = (double *)my_malloc(sizeof(double) * (totdoc + 2));
-	model->index = (long *)my_malloc(sizeof(long) * (totdoc + 2));
-	
-	model->at_upper_bound = 0;
-	model->b = 0;
-	model->supvec[0] = 0;  /* element 0 reserved and empty for now */
-	model->alpha[0] = 0;
-	model->lin_weights = NULL;
-	model->totwords = totwords;
-	model->totdoc = totdoc;
-	model->kernel_parm = (*kernel_parm);
-	model->sv_num = 1;
-	model->loo_error = -1;
-	model->loo_recall = -1;
-	model->loo_precision = -1;
-	model->xa_error = -1;
-	model->xa_recall = -1;
-	model->xa_precision = -1;
-	inconsistentnum = 0;
-	transduction = 0;
-	
-	r_delta = estimate_r_delta(docs, totdoc, kernel_parm);
-	r_delta_sq = r_delta * r_delta;
-	
-	r_delta_avg = estimate_r_delta_average(docs, totdoc, kernel_parm);
-	if (learn_parm->svm_c == 0.0)   /* default value for C */
-	{
-		learn_parm->svm_c = 1.0 / (r_delta_avg * r_delta_avg);
-		if (verbosity >= 1)
-			printf("Setting default regularization parameter C=%.4f\n",
-			       learn_parm->svm_c);
-	}
-	
-	learn_parm->eps = -1.0;      /* equivalent regression epsilon for
-				classification */
-
-	for (i = 0; i < totdoc; i++)      /* various inits */
-	{
-		docs[i]->docnum = i;
-		inconsistent[i] = 0;
-		a[i] = 0;
-		lin[i] = 0;
-		c[i] = 0.0;
-		unlabeled[i] = 0;
-		if (class[i] == 0)
-		{
-			unlabeled[i] = 1;
-			label[i] = 0;
-			transduction = 1;
-		}
-		if (class[i] > 0)
-		{
-			learn_parm->svm_cost[i] = learn_parm->svm_c * learn_parm->svm_costratio *
-			                          docs[i]->costfactor;
-			label[i] = 1;
-			trainpos++;
-		}
-		else if (class[i] < 0)
-		{
-			learn_parm->svm_cost[i] = learn_parm->svm_c * docs[i]->costfactor;
-			label[i] = -1;
-			trainneg++;
-		}
-		else
-		{
-			learn_parm->svm_cost[i] = 0;
-		}
-	}
-	if (verbosity >= 2)
-	{
-		printf("%ld positive, %ld negative, and %ld unlabeled examples.\n", trainpos, trainneg, totdoc - trainpos - trainneg);
-		fflush(stdout);
-	}
-	
-	/* caching makes no sense for linear kernel */
-	if (kernel_parm->kernel_type == LINEAR)
-	{
-		kernel_cache = NULL;
-	}
-	
-	/* compute starting state for initial alpha values */
-	if (alpha)
-	{
-		if (verbosity >= 1)
-		{
-			printf("Computing starting state...");
-			fflush(stdout);
-		}
-		index = (long *)my_malloc(sizeof(long) * totdoc);
-		index2dnum = (long *)my_malloc(sizeof(long) * (totdoc + 11));
-		weights = (double *)my_malloc(sizeof(double) * (totwords + 1));
-		aicache = (CFLOAT *)my_malloc(sizeof(CFLOAT) * totdoc);
-		for (i = 0; i < totdoc; i++)      /* create full index and clip alphas */
-		{
-			index[i] = 1;
-			alpha[i] = fabs(alpha[i]);
-			if (alpha[i] < 0) alpha[i] = 0;
-			if (alpha[i] > learn_parm->svm_cost[i]) alpha[i] = learn_parm->svm_cost[i];
-		}
-		if (kernel_parm->kernel_type != LINEAR)
-		{
-			for (i = 0; i < totdoc; i++)     /* fill kernel cache with unbounded SV */
-				if ((alpha[i] > 0) && (alpha[i] < learn_parm->svm_cost[i])
-				        && (kernel_cache_space_available(kernel_cache)))
-					cache_kernel_row(kernel_cache, docs, i, kernel_parm);
-			for (i = 0; i < totdoc; i++)     /* fill rest of kernel cache with bounded SV */
-				if ((alpha[i] == learn_parm->svm_cost[i])
-				        && (kernel_cache_space_available(kernel_cache)))
-					cache_kernel_row(kernel_cache, docs, i, kernel_parm);
-		}
-		(void)compute_index(index, totdoc, index2dnum);
-		update_linear_component(docs, label, index2dnum, alpha, a, index2dnum, totdoc,
-		                        totwords, kernel_parm, kernel_cache, lin, aicache,
-		                        weights);
-		(void)calculate_svm_model(docs, label, unlabeled, lin, alpha, a, c,
-		                          learn_parm, index2dnum, index2dnum, model);
-		for (i = 0; i < totdoc; i++)      /* copy initial alphas */
-		{
-			a[i] = alpha[i];
-		}
-		free(index);
-		free(index2dnum);
-		free(weights);
-		free(aicache);
-		if (verbosity >= 1)
-		{
-			printf("done.\n");
-			fflush(stdout);
-		}
-	}
-	
-	if (transduction)
-	{
-		learn_parm->svm_iter_to_shrink = 99999999;
-		if (verbosity >= 1)
-			printf("\nDeactivating Shrinking due to an incompatibility with the transductive \nlearner in the current version.\n\n");
-	}
-
-	
-	if (transduction && learn_parm->compute_loo)
-	{
-		learn_parm->compute_loo = 0;
-		if (verbosity >= 1)
-			printf("\nCannot compute leave-one-out estimates for transductive learner.\n\n");
-	}
-	
-	if (learn_parm->remove_inconsistent && learn_parm->compute_loo)
-	{
-		learn_parm->compute_loo = 0;
-		printf("\nCannot compute leave-one-out estimates when removing inconsistent examples.\n\n");
-	}
-	
-	if (learn_parm->compute_loo && ((trainpos == 1) || (trainneg == 1)))
-	{
-		learn_parm->compute_loo = 0;
-		printf("\nCannot compute leave-one-out with only one example in one class.\n\n");
-	}
-	
-	
-	if (verbosity == 1)
-	{
-		printf("Optimizing");
-		fflush(stdout);
-	}
-	
-	/* train the svm */
-	iterations = optimize_to_convergence(docs, label, totdoc, totwords, learn_parm,
-	                                     kernel_parm, kernel_cache, &shrink_state, model,
-	                                     inconsistent, unlabeled, a, lin,
-	                                     c, &timing_profile,
-	                                     &maxdiff, (long) - 1,
-	                                     (long)1);
-
-	misclassified = 0;
-	double maxerror_ = 0;
-	for (i = 0; (i < totdoc); i++)   /* get final statistic */
-	{
-		if ((lin[i] - model->b)*(double)label[i] <= 0.0)
-		{
-			misclassified++;
-			if(maxerror_ < -(lin[i] - model->b)*(double)label[i])
-				maxerror_ = -(lin[i] - model->b)*(double)label[i];
-		}
-	}
-
-	*nerrors = misclassified;
-	*maxerror = maxerror_;
-	                                     
-	if (verbosity >= 1)
-	{
-		if (verbosity == 1) printf("done. (%ld iterations)\n", iterations);
-		
-		misclassified = 0;
-		for (i = 0; (i < totdoc); i++)   /* get final statistic */
-		{
-			if ((lin[i] - model->b)*(double)label[i] <= 0.0)
-				misclassified++;
-		}
-		
-		printf("Optimization finished (%ld misclassified, maxdiff=%.5f).\n",
-		       misclassified, maxdiff);
-		       
-		runtime_end = get_runtime();
-		if (verbosity >= 2)
-		{
-			printf("Runtime in cpu-seconds: %.2f (%.2f%% for kernel/%.2f%% for optimizer/%.2f%% for final/%.2f%% for update/%.2f%% for model/%.2f%% for check/%.2f%% for select)\n",
-			       ((float)runtime_end - (float)runtime_start) / 100.0,
-			       (100.0*timing_profile.time_kernel) / (float)(runtime_end - runtime_start),
-			       (100.0*timing_profile.time_opti) / (float)(runtime_end - runtime_start),
-			       (100.0*timing_profile.time_shrink) / (float)(runtime_end - runtime_start),
-			       (100.0*timing_profile.time_update) / (float)(runtime_end - runtime_start),
-			       (100.0*timing_profile.time_model) / (float)(runtime_end - runtime_start),
-			       (100.0*timing_profile.time_check) / (float)(runtime_end - runtime_start),
-			       (100.0*timing_profile.time_select) / (float)(runtime_end - runtime_start));
-		}
-		else
-		{
-			printf("Runtime in cpu-seconds: %.2f\n",
-			       (runtime_end - runtime_start) / 100.0);
-		}
-		
-		if (learn_parm->remove_inconsistent)
-		{
-			inconsistentnum = 0;
-			for (i = 0; i < totdoc; i++)
-				if (inconsistent[i])
-					inconsistentnum++;
-			printf("Number of SV: %ld (plus %ld inconsistent examples)\n",
-			       model->sv_num - 1, inconsistentnum);
-		}
-		else
-		{
-			upsupvecnum = 0;
-			for (i = 1; i < model->sv_num; i++)
-			{
-				if (fabs(model->alpha[i]) >=
-				        (learn_parm->svm_cost[(model->supvec[i])->docnum] -
-				         learn_parm->epsilon_a))
-					upsupvecnum++;
-			}
-			printf("Number of SV: %ld (including %ld at upper bound)\n",
-			       model->sv_num - 1, upsupvecnum);
-		}
-		
-		if ((verbosity >= 1) && (!learn_parm->skip_final_opt_check))
-		{
-			loss = 0;
-			model_length = 0;
-			for (i = 0; i < totdoc; i++)
-			{
-				if ((lin[i] - model->b)*(double)label[i] < 1.0 - learn_parm->epsilon_crit)
-					loss += 1.0 - (lin[i] - model->b) * (double)label[i];
-				model_length += a[i] * label[i] * lin[i];
-			}
-			model_length = sqrt(model_length);
-			fprintf(stdout, "L1 loss: loss=%.5f\n", loss);
-			fprintf(stdout, "Norm of weight vector: |w|=%.5f\n", model_length);
-			example_length = estimate_sphere(model, kernel_parm);
-			fprintf(stdout, "Norm of longest example vector: |x|=%.5f\n",
-			        length_of_longest_document_vector(docs, totdoc, kernel_parm));
-			fprintf(stdout, "Estimated VCdim of classifier: VCdim<=%.5f\n",
-			        estimate_margin_vcdim(model, model_length, example_length,
-			                              kernel_parm));
-			if ((!learn_parm->remove_inconsistent) && (!transduction))
-			{
-				runtime_start_xa = get_runtime();
-				if (verbosity >= 1)
-				{
-					printf("Computing XiAlpha-estimates...");
-					fflush(stdout);
-				}
-				compute_xa_estimates(model, label, unlabeled, totdoc, docs, lin, a,
-				                     kernel_parm, learn_parm, &(model->xa_error),
-				                     &(model->xa_recall), &(model->xa_precision));
-				if (verbosity >= 1)
-				{
-					printf("done\n");
-				}
-				printf("Runtime for XiAlpha-estimates in cpu-seconds: %.2f\n",
-				       (get_runtime() - runtime_start_xa) / 100.0);
-				       
-				fprintf(stdout, "XiAlpha-estimate of the error: error<=%.2f%% (rho=%.2f,depth=%ld)\n",
-				        model->xa_error, learn_parm->rho, learn_parm->xa_depth);
-				fprintf(stdout, "XiAlpha-estimate of the recall: recall=>%.2f%% (rho=%.2f,depth=%ld)\n",
-				        model->xa_recall, learn_parm->rho, learn_parm->xa_depth);
-				fprintf(stdout, "XiAlpha-estimate of the precision: precision=>%.2f%% (rho=%.2f,depth=%ld)\n",
-				        model->xa_precision, learn_parm->rho, learn_parm->xa_depth);
-			}
-			else if (!learn_parm->remove_inconsistent)
-			{
-				estimate_transduction_quality(model, label, unlabeled, totdoc, docs, lin);
-			}
-		}
-		if (verbosity >= 1)
-		{
-			printf("Number of kernel evaluations: %ld\n", kernel_cache_statistic);
-		}
-	}
-	
-	
-	/* leave-one-out testing starts now */
-	if (learn_parm->compute_loo)
-	{
-		/* save results of training on full dataset for leave-one-out */
-		runtime_start_loo = get_runtime();
-		for (i = 0; i < totdoc; i++)
-		{
-			xi_fullset[i] = 1.0 - ((lin[i] - model->b) * (double)label[i]);
-			if (xi_fullset[i] < 0) xi_fullset[i] = 0;
-			a_fullset[i] = a[i];
-		}
-		if (verbosity >= 1)
-		{
-			printf("Computing leave-one-out");
-		}
-		
-		/* repeat this loop for every held-out example */
-		for (heldout = 0; (heldout < totdoc); heldout++)
-		{
-			if (learn_parm->rho*a_fullset[heldout]*r_delta_sq + xi_fullset[heldout]
-			        < 1.0)
-			{
-				/* guaranteed to not produce a leave-one-out error */
-				if (verbosity == 1)
-				{
-					printf("+");
-					fflush(stdout);
-				}
-			}
-			else if (xi_fullset[heldout] > 1.0)
-			{
-				/* guaranteed to produce a leave-one-out error */
-				loo_count++;
-				if (label[heldout] > 0)  loo_count_pos++;
-				else loo_count_neg++;
-				if (verbosity == 1)
-				{
-					printf("-");
-					fflush(stdout);
-				}
-			}
-			else
-			{
-				loocomputed++;
-				heldout_c = learn_parm->svm_cost[heldout]; /* set upper bound to zero */
-				learn_parm->svm_cost[heldout] = 0;
-				/* make sure heldout example is not currently  */
-				/* shrunk away. Assumes that lin is up to date! */
-				shrink_state.active[heldout] = 1;
-				if (verbosity >= 2)
-					printf("\nLeave-One-Out test on example %ld\n", heldout);
-				if (verbosity >= 1)
-				{
-					printf("(?[%ld]", heldout);
-					fflush(stdout);
-				}
-				
-				optimize_to_convergence(docs, label, totdoc, totwords, learn_parm,
-				                        kernel_parm,
-				                        kernel_cache, &shrink_state, model, inconsistent, unlabeled,
-				                        a, lin, c, &timing_profile,
-				                        &maxdiff, heldout, (long)2);
-				                        
-				/* printf("%.20f\n",(lin[heldout]-model->b)*(double)label[heldout]); */
-				
-				if (((lin[heldout] - model->b)*(double)label[heldout]) <= 0.0)
-				{
-					loo_count++;                            /* there was a loo-error */
-					if (label[heldout] > 0)  loo_count_pos++;
-					else loo_count_neg++;
-					if (verbosity >= 1)
-					{
-						printf("-)");
-						fflush(stdout);
-					}
-				}
-				else
-				{
-					if (verbosity >= 1)
-					{
-						printf("+)");
-						fflush(stdout);
-					}
-				}
-				/* now we need to restore the original data set*/
-				learn_parm->svm_cost[heldout] = heldout_c; /* restore upper bound */
-			}
-		} /* end of leave-one-out loop */
-		
-		
-		if (verbosity >= 1)
-		{
-			printf("\nRetrain on full problem");
-			fflush(stdout);
-		}
-		optimize_to_convergence(docs, label, totdoc, totwords, learn_parm,
-		                        kernel_parm,
-		                        kernel_cache, &shrink_state, model, inconsistent, unlabeled,
-		                        a, lin, c, &timing_profile,
-		                        &maxdiff, (long) - 1, (long)1);
-		if (verbosity >= 1)
-			printf("done.\n");
-			
-			
-		/* after all leave-one-out computed */
-		model->loo_error = 100.0 * loo_count / (double)totdoc;
-
-		model->loo_recall = (1.0 - (double)loo_count_pos / (double)trainpos) * 100.0;
-		model->loo_precision = (trainpos - loo_count_pos) /
-		                       (double)(trainpos - loo_count_pos + loo_count_neg) * 100.0;
-		if (verbosity >= 1)
-		{
-			fprintf(stdout, "Leave-one-out estimate of the error: error=%.2f%%\n",
-			        model->loo_error);
-			fprintf(stdout, "Leave-one-out estimate of the recall: recall=%.2f%%\n",
-			        model->loo_recall);
-			fprintf(stdout, "Leave-one-out estimate of the precision: precision=%.2f%%\n",
-			        model->loo_precision);
-			fprintf(stdout, "Actual leave-one-outs computed:  %ld (rho=%.2f)\n",
-			        loocomputed, learn_parm->rho);
-			printf("Runtime for leave-one-out in cpu-seconds: %.2f\n",
-			       (double)(get_runtime() - runtime_start_loo) / 100.0);
-		}
-	}
-	
-	if (learn_parm->alphafile[0])
-		write_alphas(learn_parm->alphafile, a, label, totdoc);
-		
-	shrink_state_cleanup(&shrink_state);
-	free(label);
-	free(inconsistent);
-	free(unlabeled);
-	free(c);
-	free(a);
-	free(a_fullset);
-	free(xi_fullset);
-	free(lin);
-	free(learn_parm->svm_cost);	
-}
-
-
-/* Learns an SVM classification model based on the training data in
-   docs/label. The resulting model is returned in the structure
-   model. */
-
-void svm_learn_classification(DOC **docs, double *class, long int
-			      totdoc, long int totwords, 
-			      LEARN_PARM *learn_parm, 
-			      KERNEL_PARM *kernel_parm, 
-			      KERNEL_CACHE *kernel_cache, 
-			      MODEL *model,
-			      double *alpha)
-     /* docs:        Training vectors (x-part) */
-     /* class:       Training labels (y-part, zero if test example for
-                     transduction) */
-     /* totdoc:      Number of examples in docs/label */
-     /* totwords:    Number of features (i.e. highest feature index) */
-     /* learn_parm:  Learning paramenters */
-     /* kernel_parm: Kernel paramenters */
-     /* kernel_cache:Initialized Cache of size totdoc, if using a kernel. 
-                     NULL if linear.*/
-     /* model:       Returns learning result (assumed empty before called) */
-     /* alpha:       Start values for the alpha variables or NULL
-	             pointer. The new alpha values are returned after 
-		     optimization if not NULL. Array must be of size totdoc. */
-{
-  long *inconsistent,i,*label;
-  long inconsistentnum;
-  long misclassified,upsupvecnum;
-  double loss,model_length,example_length;
-  double maxdiff,*lin,*a,*c;
-  long runtime_start,runtime_end;
-  long iterations;
-  long *unlabeled,transduction;
-  long heldout;
-  long loo_count=0,loo_count_pos=0,loo_count_neg=0,trainpos=0,trainneg=0;
-  long loocomputed=0,runtime_start_loo=0,runtime_start_xa=0;
-  double heldout_c=0,r_delta_sq=0,r_delta,r_delta_avg;
-  long *index,*index2dnum;
-  double *weights;
-  CFLOAT *aicache;  /* buffer to keep one row of hessian */
-
-  double *xi_fullset; /* buffer for storing xi on full sample in loo */
-  double *a_fullset;  /* buffer for storing alpha on full sample in loo */
-  TIMING timing_profile;
-  SHRINK_STATE shrink_state;
-
-  runtime_start=get_runtime();
-  timing_profile.time_kernel=0;
-  timing_profile.time_opti=0;
-  timing_profile.time_shrink=0;
-  timing_profile.time_update=0;
-  timing_profile.time_model=0;
-  timing_profile.time_check=0;
-  timing_profile.time_select=0;
-  kernel_cache_statistic=0;
-
-  learn_parm->totwords=totwords;
-
-  /* make sure -n value is reasonable */
-  if((learn_parm->svm_newvarsinqp < 2) 
-     || (learn_parm->svm_newvarsinqp > learn_parm->svm_maxqpsize)) {
-    learn_parm->svm_newvarsinqp=learn_parm->svm_maxqpsize;
-  }
-
-  init_shrink_state(&shrink_state,totdoc,(long)MAXSHRINK);
-
-  label = (long *)my_malloc(sizeof(long)*totdoc);
-  inconsistent = (long *)my_malloc(sizeof(long)*totdoc);
-  unlabeled = (long *)my_malloc(sizeof(long)*totdoc);
-  c = (double *)my_malloc(sizeof(double)*totdoc);
-  a = (double *)my_malloc(sizeof(double)*totdoc);
-  a_fullset = (double *)my_malloc(sizeof(double)*totdoc);
-  xi_fullset = (double *)my_malloc(sizeof(double)*totdoc);
-  lin = (double *)my_malloc(sizeof(double)*totdoc);
-  learn_parm->svm_cost = (double *)my_malloc(sizeof(double)*totdoc);
-  model->supvec = (DOC **)my_malloc(sizeof(DOC *)*(totdoc+2));
-  model->alpha = (double *)my_malloc(sizeof(double)*(totdoc+2));
-  model->index = (long *)my_malloc(sizeof(long)*(totdoc+2));
-
-  model->at_upper_bound=0;
-  model->b=0;	       
-  model->supvec[0]=0;  /* element 0 reserved and empty for now */
-  model->alpha[0]=0;
-  model->lin_weights=NULL;
-  model->totwords=totwords;
-  model->totdoc=totdoc;
-  model->kernel_parm=(*kernel_parm);
-  model->sv_num=1;
-  model->loo_error=-1;
-  model->loo_recall=-1;
-  model->loo_precision=-1;
-  model->xa_error=-1;
-  model->xa_recall=-1;
-  model->xa_precision=-1;
-  inconsistentnum=0;
-  transduction=0;
-
-  r_delta=estimate_r_delta(docs,totdoc,kernel_parm);
-  r_delta_sq=r_delta*r_delta;
-
-  r_delta_avg=estimate_r_delta_average(docs,totdoc,kernel_parm);
-  if(learn_parm->svm_c == 0.0) {  /* default value for C */
-    learn_parm->svm_c=1.0/(r_delta_avg*r_delta_avg);
-    if(verbosity>=1) 
-      printf("Setting default regularization parameter C=%.4f\n",
-	     learn_parm->svm_c);
-  }
-
-  learn_parm->eps=-1.0;      /* equivalent regression epsilon for
-				classification */
-
-  for(i=0;i<totdoc;i++) {    /* various inits */
-    docs[i]->docnum=i;
-    inconsistent[i]=0;
-    a[i]=0;
-    lin[i]=0;
-    c[i]=0.0;
-    unlabeled[i]=0;
-    if(class[i] == 0) {
-      unlabeled[i]=1;
-      label[i]=0;
-      transduction=1;
-    }
-    if(class[i] > 0) {
-      learn_parm->svm_cost[i]=learn_parm->svm_c*learn_parm->svm_costratio*
-	docs[i]->costfactor;
-      label[i]=1;
-      trainpos++;
-    }
-    else if(class[i] < 0) {
-      learn_parm->svm_cost[i]=learn_parm->svm_c*docs[i]->costfactor;
-      label[i]=-1;
-      trainneg++;
-    }
-    else {
-      learn_parm->svm_cost[i]=0;
-    }
-  }
-  if(verbosity>=2) {
-    printf("%ld positive, %ld negative, and %ld unlabeled examples.\n",trainpos,trainneg,totdoc-trainpos-trainneg); fflush(stdout);
-  }
-
-  /* caching makes no sense for linear kernel */
-  if(kernel_parm->kernel_type == LINEAR) {
-    kernel_cache = NULL;   
-  } 
-
-  /* compute starting state for initial alpha values */
-  if(alpha) {
-    if(verbosity>=1) {
-      printf("Computing starting state..."); fflush(stdout);
-    }
-    index = (long *)my_malloc(sizeof(long)*totdoc);
-    index2dnum = (long *)my_malloc(sizeof(long)*(totdoc+11));
-    weights=(double *)my_malloc(sizeof(double)*(totwords+1));
-    aicache = (CFLOAT *)my_malloc(sizeof(CFLOAT)*totdoc);
-    for(i=0;i<totdoc;i++) {    /* create full index and clip alphas */
-      index[i]=1;
-      alpha[i]=fabs(alpha[i]);
-      if(alpha[i]<0) alpha[i]=0;
-      if(alpha[i]>learn_parm->svm_cost[i]) alpha[i]=learn_parm->svm_cost[i];
-    }
-    if(kernel_parm->kernel_type != LINEAR) {
-      for(i=0;i<totdoc;i++)     /* fill kernel cache with unbounded SV */
-	if((alpha[i]>0) && (alpha[i]<learn_parm->svm_cost[i]) 
-	   && (kernel_cache_space_available(kernel_cache))) 
-	  cache_kernel_row(kernel_cache,docs,i,kernel_parm);
-      for(i=0;i<totdoc;i++)     /* fill rest of kernel cache with bounded SV */
-	if((alpha[i]==learn_parm->svm_cost[i]) 
-	   && (kernel_cache_space_available(kernel_cache))) 
-	  cache_kernel_row(kernel_cache,docs,i,kernel_parm);
-    }
-    (void)compute_index(index,totdoc,index2dnum);
-    update_linear_component(docs,label,index2dnum,alpha,a,index2dnum,totdoc,
-			    totwords,kernel_parm,kernel_cache,lin,aicache,
-			    weights);
-    (void)calculate_svm_model(docs,label,unlabeled,lin,alpha,a,c,
-			      learn_parm,index2dnum,index2dnum,model);
-    for(i=0;i<totdoc;i++) {    /* copy initial alphas */
-      a[i]=alpha[i];
-    }
-    free(index);
-    free(index2dnum);
-    free(weights);
-    free(aicache);
-    if(verbosity>=1) {
-      printf("done.\n");  fflush(stdout);
-    }   
-  } 
-
-  if(transduction) {
-    learn_parm->svm_iter_to_shrink=99999999;
-    if(verbosity >= 1)
-      printf("\nDeactivating Shrinking due to an incompatibility with the transductive \nlearner in the current version.\n\n");
-  }
-
-  if(transduction && learn_parm->compute_loo) {
-    learn_parm->compute_loo=0;
-    if(verbosity >= 1)
-      printf("\nCannot compute leave-one-out estimates for transductive learner.\n\n");
-  }    
-
-  if(learn_parm->remove_inconsistent && learn_parm->compute_loo) {
-    learn_parm->compute_loo=0;
-    printf("\nCannot compute leave-one-out estimates when removing inconsistent examples.\n\n");
-  }    
-
-  if(learn_parm->compute_loo && ((trainpos == 1) || (trainneg == 1))) {
-    learn_parm->compute_loo=0;
-    printf("\nCannot compute leave-one-out with only one example in one class.\n\n");
-  }    
-
-
-  if(verbosity==1) {
-    printf("Optimizing"); fflush(stdout);
-  }
-
-  /* train the svm */
-  iterations=optimize_to_convergence(docs,label,totdoc,totwords,learn_parm,
-				     kernel_parm,kernel_cache,&shrink_state,model,
-				     inconsistent,unlabeled,a,lin,
-				     c,&timing_profile,
-				     &maxdiff,(long)-1,
-				     (long)1);
-  
-  if(verbosity>=1) {
-    if(verbosity==1) printf("done. (%ld iterations)\n",iterations);
-
-    misclassified=0;
-    for(i=0;(i<totdoc);i++) { /* get final statistic */
-      if((lin[i]-model->b)*(double)label[i] <= 0.0) 
-	misclassified++;
-    }
-
-    printf("Optimization finished (%ld misclassified, maxdiff=%.5f).\n",
-	   misclassified,maxdiff); 
-
-    runtime_end=get_runtime();
-    if(verbosity>=2) {
-      printf("Runtime in cpu-seconds: %.2f (%.2f%% for kernel/%.2f%% for optimizer/%.2f%% for final/%.2f%% for update/%.2f%% for model/%.2f%% for check/%.2f%% for select)\n",
-        ((float)runtime_end-(float)runtime_start)/100.0,
-        (100.0*timing_profile.time_kernel)/(float)(runtime_end-runtime_start),
-	(100.0*timing_profile.time_opti)/(float)(runtime_end-runtime_start),
-	(100.0*timing_profile.time_shrink)/(float)(runtime_end-runtime_start),
-        (100.0*timing_profile.time_update)/(float)(runtime_end-runtime_start),
-        (100.0*timing_profile.time_model)/(float)(runtime_end-runtime_start),
-        (100.0*timing_profile.time_check)/(float)(runtime_end-runtime_start),
-        (100.0*timing_profile.time_select)/(float)(runtime_end-runtime_start));
-    }
-    else {
-      printf("Runtime in cpu-seconds: %.2f\n",
-	     (runtime_end-runtime_start)/100.0);
-    }
-
-    if(learn_parm->remove_inconsistent) {	  
-      inconsistentnum=0;
-      for(i=0;i<totdoc;i++) 
-	if(inconsistent[i]) 
-	  inconsistentnum++;
-      printf("Number of SV: %ld (plus %ld inconsistent examples)\n",
-	     model->sv_num-1,inconsistentnum);
-    }
-    else {
-      upsupvecnum=0;
-      for(i=1;i<model->sv_num;i++) {
-	if(fabs(model->alpha[i]) >= 
-	   (learn_parm->svm_cost[(model->supvec[i])->docnum]-
-	    learn_parm->epsilon_a)) 
-	  upsupvecnum++;
-      }
-      printf("Number of SV: %ld (including %ld at upper bound)\n",
-	     model->sv_num-1,upsupvecnum);
-    }
-    
-    if((verbosity>=1) && (!learn_parm->skip_final_opt_check)) {
-      loss=0;
-      model_length=0; 
-      for(i=0;i<totdoc;i++) {
-	if((lin[i]-model->b)*(double)label[i] < 1.0-learn_parm->epsilon_crit)
-	  loss+=1.0-(lin[i]-model->b)*(double)label[i];
-	model_length+=a[i]*label[i]*lin[i];
-      }
-      model_length=sqrt(model_length);
-      fprintf(stdout,"L1 loss: loss=%.5f\n",loss);
-      fprintf(stdout,"Norm of weight vector: |w|=%.5f\n",model_length);
-      example_length=estimate_sphere(model,kernel_parm); 
-      fprintf(stdout,"Norm of longest example vector: |x|=%.5f\n",
-	      length_of_longest_document_vector(docs,totdoc,kernel_parm));
-      fprintf(stdout,"Estimated VCdim of classifier: VCdim<=%.5f\n",
-	      estimate_margin_vcdim(model,model_length,example_length,
-				    kernel_parm));
-      if((!learn_parm->remove_inconsistent) && (!transduction)) {
-	runtime_start_xa=get_runtime();
-	if(verbosity>=1) {
-	  printf("Computing XiAlpha-estimates..."); fflush(stdout);
-	}
-	compute_xa_estimates(model,label,unlabeled,totdoc,docs,lin,a,
-			     kernel_parm,learn_parm,&(model->xa_error),
-			     &(model->xa_recall),&(model->xa_precision));
-	if(verbosity>=1) {
-	  printf("done\n");
-	}
-	printf("Runtime for XiAlpha-estimates in cpu-seconds: %.2f\n",
-	       (get_runtime()-runtime_start_xa)/100.0);
-	
-	fprintf(stdout,"XiAlpha-estimate of the error: error<=%.2f%% (rho=%.2f,depth=%ld)\n",
-		model->xa_error,learn_parm->rho,learn_parm->xa_depth);
-	fprintf(stdout,"XiAlpha-estimate of the recall: recall=>%.2f%% (rho=%.2f,depth=%ld)\n",
-		model->xa_recall,learn_parm->rho,learn_parm->xa_depth);
-	fprintf(stdout,"XiAlpha-estimate of the precision: precision=>%.2f%% (rho=%.2f,depth=%ld)\n",
-		model->xa_precision,learn_parm->rho,learn_parm->xa_depth);
-      }
-      else if(!learn_parm->remove_inconsistent) {
-	estimate_transduction_quality(model,label,unlabeled,totdoc,docs,lin);
-      }
-    }
-    if(verbosity>=1) {
-      printf("Number of kernel evaluations: %ld\n",kernel_cache_statistic);
-    }
-  }
-
-
-  /* leave-one-out testing starts now */
-  if(learn_parm->compute_loo) {
-    /* save results of training on full dataset for leave-one-out */
-    runtime_start_loo=get_runtime();
-    for(i=0;i<totdoc;i++) {
-      xi_fullset[i]=1.0-((lin[i]-model->b)*(double)label[i]);
-      if(xi_fullset[i]<0) xi_fullset[i]=0;
-      a_fullset[i]=a[i];
-    }
-    if(verbosity>=1) {
-      printf("Computing leave-one-out");
-    }
-    
-    /* repeat this loop for every held-out example */
-    for(heldout=0;(heldout<totdoc);heldout++) {
-      if(learn_parm->rho*a_fullset[heldout]*r_delta_sq+xi_fullset[heldout]
-	 < 1.0) { 
-	/* guaranteed to not produce a leave-one-out error */
-	if(verbosity==1) {
-	  printf("+"); fflush(stdout); 
-	}
-      }
-      else if(xi_fullset[heldout] > 1.0) {
-	/* guaranteed to produce a leave-one-out error */
-	loo_count++;
-	if(label[heldout] > 0)  loo_count_pos++; else loo_count_neg++;
-	if(verbosity==1) {
-	  printf("-"); fflush(stdout); 
-	}
-      }
-      else {
-	loocomputed++;
-	heldout_c=learn_parm->svm_cost[heldout]; /* set upper bound to zero */
-	learn_parm->svm_cost[heldout]=0;
-	/* make sure heldout example is not currently  */
-	/* shrunk away. Assumes that lin is up to date! */
-	shrink_state.active[heldout]=1;  
-	if(verbosity>=2) 
-	  printf("\nLeave-One-Out test on example %ld\n",heldout);
-	if(verbosity>=1) {
-	  printf("(?[%ld]",heldout); fflush(stdout); 
-	}
-	
-	optimize_to_convergence(docs,label,totdoc,totwords,learn_parm,
-				kernel_parm,
-				kernel_cache,&shrink_state,model,inconsistent,unlabeled,
-				a,lin,c,&timing_profile,
-				&maxdiff,heldout,(long)2);
-
-	/* printf("%.20f\n",(lin[heldout]-model->b)*(double)label[heldout]); */
-
-	if(((lin[heldout]-model->b)*(double)label[heldout]) <= 0.0) { 
-	  loo_count++;                            /* there was a loo-error */
-	  if(label[heldout] > 0)  loo_count_pos++; else loo_count_neg++;
-	  if(verbosity>=1) {
-	    printf("-)"); fflush(stdout); 
-	  }
-	}
-	else {
-	  if(verbosity>=1) {
-	    printf("+)"); fflush(stdout); 
-	  }
-	}
-	/* now we need to restore the original data set*/
-	learn_parm->svm_cost[heldout]=heldout_c; /* restore upper bound */
-      }
-    } /* end of leave-one-out loop */
-
-
-    if(verbosity>=1) {
-      printf("\nRetrain on full problem"); fflush(stdout); 
-    }
-    optimize_to_convergence(docs,label,totdoc,totwords,learn_parm,
-			    kernel_parm,
-			    kernel_cache,&shrink_state,model,inconsistent,unlabeled,
-			    a,lin,c,&timing_profile,
-			    &maxdiff,(long)-1,(long)1);
-    if(verbosity >= 1) 
-      printf("done.\n");
-    
-    
-    /* after all leave-one-out computed */
-    model->loo_error=100.0*loo_count/(double)totdoc;
-    model->loo_recall=(1.0-(double)loo_count_pos/(double)trainpos)*100.0;
-    model->loo_precision=(trainpos-loo_count_pos)/
-      (double)(trainpos-loo_count_pos+loo_count_neg)*100.0;
-    if(verbosity >= 1) {
-      fprintf(stdout,"Leave-one-out estimate of the error: error=%.2f%%\n",
-	      model->loo_error);
-      fprintf(stdout,"Leave-one-out estimate of the recall: recall=%.2f%%\n",
-	      model->loo_recall);
-      fprintf(stdout,"Leave-one-out estimate of the precision: precision=%.2f%%\n",
-	      model->loo_precision);
-      fprintf(stdout,"Actual leave-one-outs computed:  %ld (rho=%.2f)\n",
-	      loocomputed,learn_parm->rho);
-      printf("Runtime for leave-one-out in cpu-seconds: %.2f\n",
-	     (double)(get_runtime()-runtime_start_loo)/100.0);
-    }
-  }
-    
-  if(learn_parm->alphafile[0])
-    write_alphas(learn_parm->alphafile,a,label,totdoc);
-  
-  shrink_state_cleanup(&shrink_state);
-  free(label);
-  free(inconsistent);
-  free(unlabeled);
-  free(c);
-  free(a);
-  free(a_fullset);
-  free(xi_fullset);
-  free(lin);
-  free(learn_parm->svm_cost);
-}
-
-
-/* Learns an SVM regression model based on the training data in
-   docs/label. The resulting model is returned in the structure
-   model. */
-
-void svm_learn_regression(DOC **docs, double *value, long int totdoc, 
-			  long int totwords, LEARN_PARM *learn_parm, 
-			  KERNEL_PARM *kernel_parm, 
-			  KERNEL_CACHE **kernel_cache, MODEL *model)
-     /* docs:        Training vectors (x-part) */
-     /* class:       Training value (y-part) */
-     /* totdoc:      Number of examples in docs/label */
-     /* totwords:    Number of features (i.e. highest feature index) */
-     /* learn_parm:  Learning paramenters */
-     /* kernel_parm: Kernel paramenters */
-     /* kernel_cache:Initialized Cache, if using a kernel. NULL if
-                     linear. Note that it will be free'd and reassigned */
-     /* model:       Returns learning result (assumed empty before called) */
-{
-  long *inconsistent,i,j;
-  long inconsistentnum;
-  long upsupvecnum;
-  double loss,model_length,example_length;
-  double maxdiff,*lin,*a,*c;
-  long runtime_start,runtime_end;
-  long iterations,kernel_cache_size;
-  long *unlabeled;
-  double r_delta_sq=0,r_delta,r_delta_avg;
-  double *xi_fullset; /* buffer for storing xi on full sample in loo */
-  double *a_fullset;  /* buffer for storing alpha on full sample in loo */
-  TIMING timing_profile;
-  SHRINK_STATE shrink_state;
-  DOC **docs_org;
-  long *label;
-
-  /* set up regression problem in standard form */
-  docs_org=docs;
-  docs = (DOC **)my_malloc(sizeof(DOC)*2*totdoc);
-  label = (long *)my_malloc(sizeof(long)*2*totdoc);
-  c = (double *)my_malloc(sizeof(double)*2*totdoc);
-  for(i=0;i<totdoc;i++) {   
-    j=2*totdoc-1-i;
-    docs[i]=create_example(i,0,0,docs_org[i]->costfactor,docs_org[i]->fvec);
-    label[i]=+1;
-    c[i]=value[i];
-    docs[j]=create_example(j,0,0,docs_org[i]->costfactor,docs_org[i]->fvec);
-    label[j]=-1;
-    c[j]=value[i];
-  }
-  totdoc*=2;
-
-  /* need to get a bigger kernel cache */
-  if(*kernel_cache) {
-    kernel_cache_size=(*kernel_cache)->buffsize*sizeof(CFLOAT)/(1024*1024);
-    kernel_cache_cleanup(*kernel_cache);
-    (*kernel_cache)=kernel_cache_init(totdoc,kernel_cache_size);
-  }
-
-  runtime_start=get_runtime();
-  timing_profile.time_kernel=0;
-  timing_profile.time_opti=0;
-  timing_profile.time_shrink=0;
-  timing_profile.time_update=0;
-  timing_profile.time_model=0;
-  timing_profile.time_check=0;
-  timing_profile.time_select=0;
-  kernel_cache_statistic=0;
-
-  learn_parm->totwords=totwords;
-
-  /* make sure -n value is reasonable */
-  if((learn_parm->svm_newvarsinqp < 2) 
-     || (learn_parm->svm_newvarsinqp > learn_parm->svm_maxqpsize)) {
-    learn_parm->svm_newvarsinqp=learn_parm->svm_maxqpsize;
-  }
-
-  init_shrink_state(&shrink_state,totdoc,(long)MAXSHRINK);
-
-  inconsistent = (long *)my_malloc(sizeof(long)*totdoc);
-  unlabeled = (long *)my_malloc(sizeof(long)*totdoc);
-  a = (double *)my_malloc(sizeof(double)*totdoc);
-  a_fullset = (double *)my_malloc(sizeof(double)*totdoc);
-  xi_fullset = (double *)my_malloc(sizeof(double)*totdoc);
-  lin = (double *)my_malloc(sizeof(double)*totdoc);
-  learn_parm->svm_cost = (double *)my_malloc(sizeof(double)*totdoc);
-  model->supvec = (DOC **)my_malloc(sizeof(DOC *)*(totdoc+2));
-  model->alpha = (double *)my_malloc(sizeof(double)*(totdoc+2));
-  model->index = (long *)my_malloc(sizeof(long)*(totdoc+2));
-
-  model->at_upper_bound=0;
-  model->b=0;	       
-  model->supvec[0]=0;  /* element 0 reserved and empty for now */
-  model->alpha[0]=0;
-  model->lin_weights=NULL;
-  model->totwords=totwords;
-  model->totdoc=totdoc;
-  model->kernel_parm=(*kernel_parm);
-  model->sv_num=1;
-  model->loo_error=-1;
-  model->loo_recall=-1;
-  model->loo_precision=-1;
-  model->xa_error=-1;
-  model->xa_recall=-1;
-  model->xa_precision=-1;
-  inconsistentnum=0;
-
-  r_delta=estimate_r_delta(docs,totdoc,kernel_parm);
-  r_delta_sq=r_delta*r_delta;
-
-  r_delta_avg=estimate_r_delta_average(docs,totdoc,kernel_parm);
-  if(learn_parm->svm_c == 0.0) {  /* default value for C */
-    learn_parm->svm_c=1.0/(r_delta_avg*r_delta_avg);
-    if(verbosity>=1) 
-      printf("Setting default regularization parameter C=%.4f\n",
-	     learn_parm->svm_c);
-  }
-
-  for(i=0;i<totdoc;i++) {    /* various inits */
-    inconsistent[i]=0;
-    a[i]=0;
-    lin[i]=0;
-    unlabeled[i]=0;
-    if(label[i] > 0) {
-      learn_parm->svm_cost[i]=learn_parm->svm_c*learn_parm->svm_costratio*
-	docs[i]->costfactor;
-    }
-    else if(label[i] < 0) {
-      learn_parm->svm_cost[i]=learn_parm->svm_c*docs[i]->costfactor;
-    }
-  }
-
-  /* caching makes no sense for linear kernel */
-  if((kernel_parm->kernel_type == LINEAR) && (*kernel_cache)) {
-    printf("WARNING: Using a kernel cache for linear case will slow optimization down!\n");
-  } 
-
-  if(verbosity==1) {
-    printf("Optimizing"); fflush(stdout);
-  }
-
-  /* train the svm */
-  iterations=optimize_to_convergence(docs,label,totdoc,totwords,learn_parm,
-				     kernel_parm,*kernel_cache,&shrink_state,
-				     model,inconsistent,unlabeled,a,lin,c,
-				     &timing_profile,&maxdiff,(long)-1,
-				     (long)1);
-  
-  if(verbosity>=1) {
-    if(verbosity==1) printf("done. (%ld iterations)\n",iterations);
-
-    printf("Optimization finished (maxdiff=%.5f).\n",maxdiff); 
-
-    runtime_end=get_runtime();
-    if(verbosity>=2) {
-      printf("Runtime in cpu-seconds: %.2f (%.2f%% for kernel/%.2f%% for optimizer/%.2f%% for final/%.2f%% for update/%.2f%% for model/%.2f%% for check/%.2f%% for select)\n",
-        ((float)runtime_end-(float)runtime_start)/100.0,
-        (100.0*timing_profile.time_kernel)/(float)(runtime_end-runtime_start),
-	(100.0*timing_profile.time_opti)/(float)(runtime_end-runtime_start),
-	(100.0*timing_profile.time_shrink)/(float)(runtime_end-runtime_start),
-        (100.0*timing_profile.time_update)/(float)(runtime_end-runtime_start),
-        (100.0*timing_profile.time_model)/(float)(runtime_end-runtime_start),
-        (100.0*timing_profile.time_check)/(float)(runtime_end-runtime_start),
-        (100.0*timing_profile.time_select)/(float)(runtime_end-runtime_start));
-    }
-    else {
-      printf("Runtime in cpu-seconds: %.2f\n",
-	     (runtime_end-runtime_start)/100.0);
-    }
-
-    if(learn_parm->remove_inconsistent) {	  
-      inconsistentnum=0;
-      for(i=0;i<totdoc;i++) 
-	if(inconsistent[i]) 
-	  inconsistentnum++;
-      printf("Number of SV: %ld (plus %ld inconsistent examples)\n",
-	     model->sv_num-1,inconsistentnum);
-    }
-    else {
-      upsupvecnum=0;
-      for(i=1;i<model->sv_num;i++) {
-	if(fabs(model->alpha[i]) >= 
-	   (learn_parm->svm_cost[(model->supvec[i])->docnum]-
-	    learn_parm->epsilon_a)) 
-	  upsupvecnum++;
-      }
-      printf("Number of SV: %ld (including %ld at upper bound)\n",
-	     model->sv_num-1,upsupvecnum);
-    }
-    
-    if((verbosity>=1) && (!learn_parm->skip_final_opt_check)) {
-      loss=0;
-      model_length=0; 
-      for(i=0;i<totdoc;i++) {
-	if((lin[i]-model->b)*(double)label[i] < (-learn_parm->eps+(double)label[i]*c[i])-learn_parm->epsilon_crit)
-	  loss+=-learn_parm->eps+(double)label[i]*c[i]-(lin[i]-model->b)*(double)label[i];
-	model_length+=a[i]*label[i]*lin[i];
-      }
-      model_length=sqrt(model_length);
-      fprintf(stdout,"L1 loss: loss=%.5f\n",loss);
-      fprintf(stdout,"Norm of weight vector: |w|=%.5f\n",model_length);
-      example_length=estimate_sphere(model,kernel_parm); 
-      fprintf(stdout,"Norm of longest example vector: |x|=%.5f\n",
-	      length_of_longest_document_vector(docs,totdoc,kernel_parm));
-    }
-    if(verbosity>=1) {
-      printf("Number of kernel evaluations: %ld\n",kernel_cache_statistic);
-    }
-  }
-    
-  if(learn_parm->alphafile[0])
-    write_alphas(learn_parm->alphafile,a,label,totdoc);
-
-  /* this makes sure the model we return does not contain pointers to the 
-     temporary documents */
-  for(i=1;i<model->sv_num;i++) { 
-    j=model->supvec[i]->docnum;
-    if(j >= (totdoc/2)) {
-      j=totdoc-j-1;
-    }
-    model->supvec[i]=docs_org[j];
-  }
-  
-  shrink_state_cleanup(&shrink_state);
-  for(i=0;i<totdoc;i++)
-    free_example(docs[i],0);
-  free(docs);
-  free(label);
-  free(inconsistent);
-  free(unlabeled);
-  free(c);
-  free(a);
-  free(a_fullset);
-  free(xi_fullset);
-  free(lin);
-  free(learn_parm->svm_cost);
-}
-
-void svm_learn_ranking(DOC **docs, double *rankvalue, long int totdoc, 
-		       long int totwords, LEARN_PARM *learn_parm, 
-		       KERNEL_PARM *kernel_parm, KERNEL_CACHE **kernel_cache, 
-		       MODEL *model)
-     /* docs:        Training vectors (x-part) */
-     /* rankvalue:   Training target values that determine the ranking */
-     /* totdoc:      Number of examples in docs/label */
-     /* totwords:    Number of features (i.e. highest feature index) */
-     /* learn_parm:  Learning paramenters */
-     /* kernel_parm: Kernel paramenters */
-     /* kernel_cache:Initialized pointer to Cache of size 1*totdoc, if 
-	             using a kernel. NULL if linear. NOTE: Cache is 
-                     getting reinitialized in this function */
-     /* model:       Returns learning result (assumed empty before called) */
-{
-  DOC **docdiff;
-  long i,j,k,totpair,kernel_cache_size;
-  double *target,*alpha,cost;
-  long *greater,*lesser;
-  MODEL *pairmodel;
-  SVECTOR *flow,*fhigh;
-
-  totpair=0;
-  for(i=0;i<totdoc;i++) {
-    for(j=i+1;j<totdoc;j++) {
-      if((docs[i]->queryid==docs[j]->queryid) && (rankvalue[i] != rankvalue[j])) {
-	totpair++;
-      }
-    }
-  }
-
-  printf("Constructing %ld rank constraints...",totpair); fflush(stdout);
-  docdiff=(DOC **)my_malloc(sizeof(DOC)*totpair);
-  target=(double *)my_malloc(sizeof(double)*totpair); 
-  greater=(long *)my_malloc(sizeof(long)*totpair); 
-  lesser=(long *)my_malloc(sizeof(long)*totpair); 
-
-  k=0;
-  for(i=0;i<totdoc;i++) {
-    for(j=i+1;j<totdoc;j++) {
-      if(docs[i]->queryid == docs[j]->queryid) {
-	cost=(docs[i]->costfactor+docs[j]->costfactor)/2.0;
-	if(rankvalue[i] > rankvalue[j]) {
-	  if(kernel_parm->kernel_type == LINEAR)
-	    docdiff[k]=create_example(k,0,0,cost,
-				      sub_ss(docs[i]->fvec,docs[j]->fvec));
-	  else {
-	    flow=copy_svector(docs[j]->fvec);
-	    flow->factor=-1.0;
-	    flow->next=NULL;
-	    fhigh=copy_svector(docs[i]->fvec);
-	    fhigh->factor=1.0;
-	    fhigh->next=flow;
-	    docdiff[k]=create_example(k,0,0,cost,fhigh);
-	  }
-	  target[k]=1;
-	  greater[k]=i;
-	  lesser[k]=j;
-	  k++;
-	}
-	else if(rankvalue[i] < rankvalue[j]) {
-	  if(kernel_parm->kernel_type == LINEAR)
-	    docdiff[k]=create_example(k,0,0,cost,
-				      sub_ss(docs[i]->fvec,docs[j]->fvec));
-	  else {
-	    flow=copy_svector(docs[j]->fvec);
-	    flow->factor=-1.0;
-	    flow->next=NULL;
-	    fhigh=copy_svector(docs[i]->fvec);
-	    fhigh->factor=1.0;
-	    fhigh->next=flow;
-	    docdiff[k]=create_example(k,0,0,cost,fhigh);
-	  }
-	  target[k]=-1;
-	  greater[k]=i;
-	  lesser[k]=j;
-	  k++;
-	}
-      }
-    }
-  }
-  printf("done.\n"); fflush(stdout);
-
-  /* need to get a bigger kernel cache */
-  if(*kernel_cache) {
-    kernel_cache_size=(*kernel_cache)->buffsize*sizeof(CFLOAT)/(1024*1024);
-    kernel_cache_cleanup(*kernel_cache);
-    (*kernel_cache)=kernel_cache_init(totpair,kernel_cache_size);
-  }
-
-  /* must use unbiased hyperplane on difference vectors */
-  learn_parm->biased_hyperplane=0;
-  pairmodel=(MODEL *)my_malloc(sizeof(MODEL));
-  svm_learn_classification(docdiff,target,totpair,totwords,learn_parm,
-			   kernel_parm,(*kernel_cache),pairmodel,NULL);
-
-  /* Transfer the result into a more compact model. If you would like
-     to output the original model on pairs of documents, see below. */
-  alpha=(double *)my_malloc(sizeof(double)*totdoc); 
-  for(i=0;i<totdoc;i++) {
-    alpha[i]=0;
-  }
-  for(i=1;i<pairmodel->sv_num;i++) {
-    alpha[lesser[(pairmodel->supvec[i])->docnum]]-=pairmodel->alpha[i];
-    alpha[greater[(pairmodel->supvec[i])->docnum]]+=pairmodel->alpha[i];
-  }
-  model->supvec = (DOC **)my_malloc(sizeof(DOC *)*(totdoc+2));
-  model->alpha = (double *)my_malloc(sizeof(double)*(totdoc+2));
-  model->index = (long *)my_malloc(sizeof(long)*(totdoc+2));
-  model->supvec[0]=0;  /* element 0 reserved and empty for now */
-  model->alpha[0]=0;
-  model->sv_num=1;
-  for(i=0;i<totdoc;i++) {
-    if(alpha[i]) {
-      model->supvec[model->sv_num]=docs[i];
-      model->alpha[model->sv_num]=alpha[i];
-      model->index[i]=model->sv_num;
-      model->sv_num++;
-    }
-    else {
-      model->index[i]=-1;
-    }
-  }
-  model->at_upper_bound=0;
-  model->b=0;	       
-  model->lin_weights=NULL;
-  model->totwords=totwords;
-  model->totdoc=totdoc;
-  model->kernel_parm=(*kernel_parm);
-  model->loo_error=-1;
-  model->loo_recall=-1;
-  model->loo_precision=-1;
-  model->xa_error=-1;
-  model->xa_recall=-1;
-  model->xa_precision=-1;
-
-  free(alpha);
-  free(greater);
-  free(lesser);
-  free(target);
-
-  /* If you would like to output the original model on pairs of
-     document, replace the following lines with '(*model)=(*pairmodel);' */
-  for(i=0;i<totpair;i++)
-    free_example(docdiff[i],1);
-  free(docdiff);
-  free_model(pairmodel,0);
-}
-
-
-/* The following solves a freely defined and given set of
-   inequalities. The optimization problem is of the following form:
-
-   min 0.5 w*w + C sum_i C_i \xi_i
-   s.t. x_i * w > rhs_i - \xi_i
-
-   This corresponds to the -z o option. */
-
-void svm_learn_optimization(DOC **docs, double *rhs, long int
-			    totdoc, long int totwords, 
-			    LEARN_PARM *learn_parm, 
-			    KERNEL_PARM *kernel_parm, 
-			    KERNEL_CACHE *kernel_cache, MODEL *model,
-			    double *alpha)
-     /* docs:        Left-hand side of inequalities (x-part) */
-     /* rhs:         Right-hand side of inequalities */
-     /* totdoc:      Number of examples in docs/label */
-     /* totwords:    Number of features (i.e. highest feature index) */
-     /* learn_parm:  Learning paramenters */
-     /* kernel_parm: Kernel paramenters */
-     /* kernel_cache:Initialized Cache of size 1*totdoc, if using a kernel. 
-                     NULL if linear.*/
-     /* model:       Returns solution as SV expansion (assumed empty before called) */
-     /* alpha:       Start values for the alpha variables or NULL
-	             pointer. The new alpha values are returned after 
-		     optimization if not NULL. Array must be of size totdoc. */
-{
-  long i,*label;
-  long misclassified,upsupvecnum;
-  double loss,model_length,example_length;
-  double maxdiff,*lin,*a,*c;
-  long runtime_start,runtime_end;
-  long iterations,maxslackid,svsetnum;
-  long *unlabeled,*inconsistent;
-  double r_delta_sq=0,r_delta,r_delta_avg;
-  long *index,*index2dnum;
-  double *weights,*slack,*alphaslack;
-  CFLOAT *aicache;  /* buffer to keep one row of hessian */
-
-  TIMING timing_profile;
-  SHRINK_STATE shrink_state;
-
-  runtime_start=get_runtime();
-  timing_profile.time_kernel=0;
-  timing_profile.time_opti=0;
-  timing_profile.time_shrink=0;
-  timing_profile.time_update=0;
-  timing_profile.time_model=0;
-  timing_profile.time_check=0;
-  timing_profile.time_select=0;
-  kernel_cache_statistic=0;
-
-  learn_parm->totwords=totwords;
-
-  /* make sure -n value is reasonable */
-  if((learn_parm->svm_newvarsinqp < 2) 
-     || (learn_parm->svm_newvarsinqp > learn_parm->svm_maxqpsize)) {
-    learn_parm->svm_newvarsinqp=learn_parm->svm_maxqpsize;
-  }
-
-  init_shrink_state(&shrink_state,totdoc,(long)MAXSHRINK);
-
-  label = (long *)my_malloc(sizeof(long)*totdoc);
-  unlabeled = (long *)my_malloc(sizeof(long)*totdoc);
-  inconsistent = (long *)my_malloc(sizeof(long)*totdoc);
-  c = (double *)my_malloc(sizeof(double)*totdoc);
-  a = (double *)my_malloc(sizeof(double)*totdoc);
-  lin = (double *)my_malloc(sizeof(double)*totdoc);
-  learn_parm->svm_cost = (double *)my_malloc(sizeof(double)*totdoc);
-  model->supvec = (DOC **)my_malloc(sizeof(DOC *)*(totdoc+2));
-  model->alpha = (double *)my_malloc(sizeof(double)*(totdoc+2));
-  model->index = (long *)my_malloc(sizeof(long)*(totdoc+2));
-
-  model->at_upper_bound=0;
-  model->b=0;	       
-  model->supvec[0]=0;  /* element 0 reserved and empty for now */
-  model->alpha[0]=0;
-  model->lin_weights=NULL;
-  model->totwords=totwords;
-  model->totdoc=totdoc;
-  model->kernel_parm=(*kernel_parm);
-  model->sv_num=1;
-  model->loo_error=-1;
-  model->loo_recall=-1;
-  model->loo_precision=-1;
-  model->xa_error=-1;
-  model->xa_recall=-1;
-  model->xa_precision=-1;
-
-  r_delta=estimate_r_delta(docs,totdoc,kernel_parm);
-  r_delta_sq=r_delta*r_delta;
-
-  r_delta_avg=estimate_r_delta_average(docs,totdoc,kernel_parm);
-  if(learn_parm->svm_c == 0.0) {  /* default value for C */
-    learn_parm->svm_c=1.0/(r_delta_avg*r_delta_avg);
-    if(verbosity>=1) 
-      printf("Setting default regularization parameter C=%.4f\n",
-	     learn_parm->svm_c);
-  }
-
-  learn_parm->biased_hyperplane=0; /* learn an unbiased hyperplane */
-
-  learn_parm->eps=0.0;      /* No margin, unless explicitly handcoded
-                               in the right-hand side in the training
-                               set.  */
-
-  for(i=0;i<totdoc;i++) {    /* various inits */
-    docs[i]->docnum=i;
-    a[i]=0;
-    lin[i]=0;
-    c[i]=rhs[i];       /* set right-hand side */
-    unlabeled[i]=0;
-    inconsistent[i]=0;
-    learn_parm->svm_cost[i]=learn_parm->svm_c*learn_parm->svm_costratio*
-      docs[i]->costfactor;
-    label[i]=1;
-  }
-  if(learn_parm->sharedslack) /* if shared slacks are used, they must */
-    for(i=0;i<totdoc;i++)     /*  be used on every constraint */
-      if(!docs[i]->slackid) {
-	perror("Error: Missing shared slacks definitions in some of the examples.");
-	exit(0);
-      }
-      
-  /* compute starting state for initial alpha values */
-  if(alpha) {
-    if(verbosity>=1) {
-      printf("Computing starting state..."); fflush(stdout);
-    }
-    index = (long *)my_malloc(sizeof(long)*totdoc);
-    index2dnum = (long *)my_malloc(sizeof(long)*(totdoc+11));
-    weights=(double *)my_malloc(sizeof(double)*(totwords+1));
-    aicache = (CFLOAT *)my_malloc(sizeof(CFLOAT)*totdoc);
-    for(i=0;i<totdoc;i++) {    /* create full index and clip alphas */
-      index[i]=1;
-      alpha[i]=fabs(alpha[i]);
-      if(alpha[i]<0) alpha[i]=0;
-      if(alpha[i]>learn_parm->svm_cost[i]) alpha[i]=learn_parm->svm_cost[i];
-    }
-    if(kernel_parm->kernel_type != LINEAR) {
-      for(i=0;i<totdoc;i++)     /* fill kernel cache with unbounded SV */
-	if((alpha[i]>0) && (alpha[i]<learn_parm->svm_cost[i]) 
-	   && (kernel_cache_space_available(kernel_cache))) 
-	  cache_kernel_row(kernel_cache,docs,i,kernel_parm);
-      for(i=0;i<totdoc;i++)     /* fill rest of kernel cache with bounded SV */
-	if((alpha[i]==learn_parm->svm_cost[i]) 
-	   && (kernel_cache_space_available(kernel_cache))) 
-	  cache_kernel_row(kernel_cache,docs,i,kernel_parm);
-    }
-    (void)compute_index(index,totdoc,index2dnum);
-    update_linear_component(docs,label,index2dnum,alpha,a,index2dnum,totdoc,
-			    totwords,kernel_parm,kernel_cache,lin,aicache,
-			    weights);
-    (void)calculate_svm_model(docs,label,unlabeled,lin,alpha,a,c,
-			      learn_parm,index2dnum,index2dnum,model);
-    for(i=0;i<totdoc;i++) {    /* copy initial alphas */
-      a[i]=alpha[i];
-    }
-    free(index);
-    free(index2dnum);
-    free(weights);
-    free(aicache);
-    if(verbosity>=1) {
-      printf("done.\n");  fflush(stdout);
-    }   
-  } 
-
-  /* removing inconsistent does not work for general optimization problem */
-  if(learn_parm->remove_inconsistent) {	  
-    learn_parm->remove_inconsistent = 0;
-    printf("'remove inconsistent' not available in this mode. Switching option off!"); fflush(stdout);
-  }
-
-  /* caching makes no sense for linear kernel */
-  if(kernel_parm->kernel_type == LINEAR) {
-    kernel_cache = NULL;   
-  } 
-
-  if(verbosity==1) {
-    printf("Optimizing"); fflush(stdout);
-  }
-
-  /* train the svm */
-  if(learn_parm->sharedslack)
-    iterations=optimize_to_convergence_sharedslack(docs,label,totdoc,
-				     totwords,learn_parm,kernel_parm,
-				     kernel_cache,&shrink_state,model,
-				     a,lin,c,&timing_profile,
-				     &maxdiff);
-  else
-    iterations=optimize_to_convergence(docs,label,totdoc,
-				     totwords,learn_parm,kernel_parm,
-				     kernel_cache,&shrink_state,model,
-				     inconsistent,unlabeled,
-				     a,lin,c,&timing_profile,
-				     &maxdiff,(long)-1,(long)1);
-  
-  if(verbosity>=1) {
-    if(verbosity==1) printf("done. (%ld iterations)\n",iterations);
-
-    misclassified=0;
-    for(i=0;(i<totdoc);i++) { /* get final statistic */
-      if((lin[i]-model->b)*(double)label[i] <= 0.0) 
-	misclassified++;
-    }
-
-    printf("Optimization finished (maxdiff=%.5f).\n",maxdiff); 
-
-    runtime_end=get_runtime();
-    if(verbosity>=2) {
-      printf("Runtime in cpu-seconds: %.2f (%.2f%% for kernel/%.2f%% for optimizer/%.2f%% for final/%.2f%% for update/%.2f%% for model/%.2f%% for check/%.2f%% for select)\n",
-        ((float)runtime_end-(float)runtime_start)/100.0,
-        (100.0*timing_profile.time_kernel)/(float)(runtime_end-runtime_start),
-	(100.0*timing_profile.time_opti)/(float)(runtime_end-runtime_start),
-	(100.0*timing_profile.time_shrink)/(float)(runtime_end-runtime_start),
-        (100.0*timing_profile.time_update)/(float)(runtime_end-runtime_start),
-        (100.0*timing_profile.time_model)/(float)(runtime_end-runtime_start),
-        (100.0*timing_profile.time_check)/(float)(runtime_end-runtime_start),
-        (100.0*timing_profile.time_select)/(float)(runtime_end-runtime_start));
-    }
-    else {
-      printf("Runtime in cpu-seconds: %.2f\n",
-	     (runtime_end-runtime_start)/100.0);
-    }
-  }
-  if((verbosity>=1) && (!learn_parm->skip_final_opt_check)) {
-    loss=0;
-    model_length=0; 
-    for(i=0;i<totdoc;i++) {
-      if((lin[i]-model->b)*(double)label[i] < c[i]-learn_parm->epsilon_crit)
-	loss+=c[i]-(lin[i]-model->b)*(double)label[i];
-      model_length+=a[i]*label[i]*lin[i];
-    }
-    model_length=sqrt(model_length);
-    fprintf(stdout,"Norm of weight vector: |w|=%.5f\n",model_length);
-  }
-  
-  if(learn_parm->sharedslack) {
-    index = (long *)my_malloc(sizeof(long)*totdoc);
-    index2dnum = (long *)my_malloc(sizeof(long)*(totdoc+11));
-    maxslackid=0;
-    for(i=0;i<totdoc;i++) {    /* create full index */
-      index[i]=1;
-      if(maxslackid<docs[i]->slackid)
-	maxslackid=docs[i]->slackid;
-    }
-    (void)compute_index(index,totdoc,index2dnum);
-    slack=(double *)my_malloc(sizeof(double)*(maxslackid+1));
-    alphaslack=(double *)my_malloc(sizeof(double)*(maxslackid+1));
-    for(i=0;i<=maxslackid;i++) {    /* init shared slacks */
-      slack[i]=0;
-      alphaslack[i]=0;
-    }
-    compute_shared_slacks(docs,label,a,lin,c,index2dnum,learn_parm,
-			  slack,alphaslack);
-    loss=0;
-    model->at_upper_bound=0;
-    svsetnum=0;
-    for(i=0;i<=maxslackid;i++) {    /* create full index */
-      loss+=slack[i];
-      if(alphaslack[i] > (learn_parm->svm_c - learn_parm->epsilon_a)) 
-	model->at_upper_bound++;
-      if(alphaslack[i] > learn_parm->epsilon_a)
-	svsetnum++;
-    }
-    free(index);
-    free(index2dnum);
-    free(slack);
-    free(alphaslack);
-  }
-  
-  if((verbosity>=1) && (!learn_parm->skip_final_opt_check)) {
-    if(learn_parm->sharedslack) {
-      printf("Number of SV: %ld\n",
-	     model->sv_num-1);
-      printf("Number of non-zero slack variables: %ld (out of %ld)\n",
-	     model->at_upper_bound,svsetnum);
-      fprintf(stdout,"L1 loss: loss=%.5f\n",loss);
-    }
-    else {
-      upsupvecnum=0;
-      for(i=1;i<model->sv_num;i++) {
-	if(fabs(model->alpha[i]) >= 
-	   (learn_parm->svm_cost[(model->supvec[i])->docnum]-
-	    learn_parm->epsilon_a)) 
-	  upsupvecnum++;
-      }
-      printf("Number of SV: %ld (including %ld at upper bound)\n",
-	     model->sv_num-1,upsupvecnum);
-      fprintf(stdout,"L1 loss: loss=%.5f\n",loss);
-    }
-    example_length=estimate_sphere(model,kernel_parm); 
-    fprintf(stdout,"Norm of longest example vector: |x|=%.5f\n",
-	    length_of_longest_document_vector(docs,totdoc,kernel_parm));
-  }
-  if(verbosity>=1) {
-    printf("Number of kernel evaluations: %ld\n",kernel_cache_statistic);
-  }
-    
-  if(alpha) {
-    for(i=0;i<totdoc;i++) {    /* copy final alphas */
-      alpha[i]=a[i];
-    }
-  }
- 
-  if(learn_parm->alphafile[0])
-    write_alphas(learn_parm->alphafile,a,label,totdoc);
-  
-  shrink_state_cleanup(&shrink_state);
-  free(label);
-  free(unlabeled);
-  free(inconsistent);
-  free(c);
-  free(a);
-  free(lin);
-  free(learn_parm->svm_cost);
-}
-
-
-long optimize_to_convergence(DOC **docs, long int *label, long int totdoc, 
-			     long int totwords, LEARN_PARM *learn_parm, 
-			     KERNEL_PARM *kernel_parm, 
-			     KERNEL_CACHE *kernel_cache, 
-			     SHRINK_STATE *shrink_state, MODEL *model, 
-			     long int *inconsistent, long int *unlabeled, 
-			     double *a, double *lin, double *c, 
-			     TIMING *timing_profile, double *maxdiff, 
-			     long int heldout, long int retrain)
-     /* docs: Training vectors (x-part) */
-     /* label: Training labels/value (y-part, zero if test example for
-			      transduction) */
-     /* totdoc: Number of examples in docs/label */
-     /* totwords: Number of features (i.e. highest feature index) */
-     /* laern_parm: Learning paramenters */
-     /* kernel_parm: Kernel paramenters */
-     /* kernel_cache: Initialized/partly filled Cache, if using a kernel. 
-                      NULL if linear. */
-     /* shrink_state: State of active variables */
-     /* model: Returns learning result */
-     /* inconsistent: examples thrown out as inconstistent */
-     /* unlabeled: test examples for transduction */
-     /* a: alphas */
-     /* lin: linear component of gradient */
-     /* c: right hand side of inequalities (margin) */
-     /* maxdiff: returns maximum violation of KT-conditions */
-     /* heldout: marks held-out example for leave-one-out (or -1) */
-     /* retrain: selects training mode (1=regular / 2=holdout) */
-{
-  long *chosen,*key,i,j,jj,*last_suboptimal_at,noshrink;
-  long inconsistentnum,choosenum,already_chosen=0,iteration;
-  long misclassified,supvecnum=0,*active2dnum,inactivenum;
-  long *working2dnum,*selexam;
-  long activenum;
-  double criterion,eq;
-  double *a_old;
-  long t0=0,t1=0,t2=0,t3=0,t4=0,t5=0,t6=0; /* timing */
-  long transductcycle;
-  long transduction;
-  double epsilon_crit_org; 
-  double bestmaxdiff;
-  long   bestmaxdiffiter,terminate;
-
-  double *selcrit;  /* buffer for sorting */        
-  CFLOAT *aicache;  /* buffer to keep one row of hessian */
-  double *weights;  /* buffer for weight vector in linear case */
-  QP qp;            /* buffer for one quadratic program */
-
-  epsilon_crit_org=learn_parm->epsilon_crit; /* save org */
-  if(kernel_parm->kernel_type == LINEAR) {
-    learn_parm->epsilon_crit=2.0;
-    kernel_cache=NULL;   /* caching makes no sense for linear kernel */
-  } 
-  learn_parm->epsilon_shrink=2;
-  (*maxdiff)=1;
-
-  learn_parm->totwords=totwords;
-
-  chosen = (long *)my_malloc(sizeof(long)*totdoc);
-  last_suboptimal_at = (long *)my_malloc(sizeof(long)*totdoc);
-  key = (long *)my_malloc(sizeof(long)*(totdoc+11)); 
-  selcrit = (double *)my_malloc(sizeof(double)*totdoc);
-  selexam = (long *)my_malloc(sizeof(long)*totdoc);
-  a_old = (double *)my_malloc(sizeof(double)*totdoc);
-  aicache = (CFLOAT *)my_malloc(sizeof(CFLOAT)*totdoc);
-  working2dnum = (long *)my_malloc(sizeof(long)*(totdoc+11));
-  active2dnum = (long *)my_malloc(sizeof(long)*(totdoc+11));
-  qp.opt_ce = (double *)my_malloc(sizeof(double)*learn_parm->svm_maxqpsize);
-  qp.opt_ce0 = (double *)my_malloc(sizeof(double));
-  qp.opt_g = (double *)my_malloc(sizeof(double)*learn_parm->svm_maxqpsize
-				 *learn_parm->svm_maxqpsize);
-  qp.opt_g0 = (double *)my_malloc(sizeof(double)*learn_parm->svm_maxqpsize);
-  qp.opt_xinit = (double *)my_malloc(sizeof(double)*learn_parm->svm_maxqpsize);
-  qp.opt_low=(double *)my_malloc(sizeof(double)*learn_parm->svm_maxqpsize);
-  qp.opt_up=(double *)my_malloc(sizeof(double)*learn_parm->svm_maxqpsize);
-  weights=(double *)my_malloc(sizeof(double)*(totwords+1));
-
-  choosenum=0;
-  inconsistentnum=0;
-  transductcycle=0;
-  transduction=0;
-  if(!retrain) retrain=1;
-  iteration=1;
-  bestmaxdiffiter=1;
-  bestmaxdiff=999999999;
-  terminate=0;
-
-  if(kernel_cache) {
-    kernel_cache->time=iteration;  /* for lru cache */
-    kernel_cache_reset_lru(kernel_cache);
-  }
-
-  for(i=0;i<totdoc;i++) {    /* various inits */
-    chosen[i]=0;
-    a_old[i]=a[i];
-    last_suboptimal_at[i]=1;
-    if(inconsistent[i]) 
-      inconsistentnum++;
-    if(unlabeled[i]) {
-      transduction=1;
-    }
-  }
-  activenum=compute_index(shrink_state->active,totdoc,active2dnum);
-  inactivenum=totdoc-activenum;
-  clear_index(working2dnum);
-
-                            /* repeat this loop until we have convergence */
-  for(;retrain && (!terminate);iteration++) {
-
-    if(kernel_cache)
-      kernel_cache->time=iteration;  /* for lru cache */
-    if(verbosity>=2) {
-      printf(
-	"Iteration %ld: ",iteration); fflush(stdout);
-    }
-    else if(verbosity==1) {
-      printf("."); fflush(stdout);
-    }
-
-    if(verbosity>=2) t0=get_runtime();
-    if(verbosity>=3) {
-      printf("\nSelecting working set... "); fflush(stdout); 
-    }
-
-    if(learn_parm->svm_newvarsinqp>learn_parm->svm_maxqpsize) 
-      learn_parm->svm_newvarsinqp=learn_parm->svm_maxqpsize;
-
-    i=0;
-    for(jj=0;(j=working2dnum[jj])>=0;jj++) { /* clear working set */
-      if((chosen[j]>=(learn_parm->svm_maxqpsize/
-		      minl(learn_parm->svm_maxqpsize,
-			   learn_parm->svm_newvarsinqp))) 
-	 || (inconsistent[j])
-	 || (j == heldout)) {
-	chosen[j]=0; 
-	choosenum--; 
-      }
-      else {
-	chosen[j]++;
-	working2dnum[i++]=j;
-      }
-    }
-    working2dnum[i]=-1;
-
-    if(retrain == 2) {
-      choosenum=0;
-      for(jj=0;(j=working2dnum[jj])>=0;jj++) { /* fully clear working set */
-	chosen[j]=0; 
-      }
-      clear_index(working2dnum);
-      for(i=0;i<totdoc;i++) { /* set inconsistent examples to zero (-i 1) */
-	if((inconsistent[i] || (heldout==i)) && (a[i] != 0.0)) {
-	  chosen[i]=99999;
-	  choosenum++;
-	  a[i]=0;
-	}
-      }
-      if(learn_parm->biased_hyperplane) {
-	eq=0;
-	for(i=0;i<totdoc;i++) { /* make sure we fulfill equality constraint */
-	  eq+=a[i]*label[i];
-	}
-	for(i=0;(i<totdoc) && (fabs(eq) > learn_parm->epsilon_a);i++) {
-	  if((eq*label[i] > 0) && (a[i] > 0)) {
-	    chosen[i]=88888;
-	    choosenum++;
-	    if((eq*label[i]) > a[i]) {
-	      eq-=(a[i]*label[i]);
-	      a[i]=0;
-	    }
-	    else {
-	      a[i]-=(eq*label[i]);
-	      eq=0;
-	    }
-	  }
-	}
-      }
-      compute_index(chosen,totdoc,working2dnum);
-    }
-    else {      /* select working set according to steepest gradient */
-      if(iteration % 101) {
-        already_chosen=0;
-	if((minl(learn_parm->svm_newvarsinqp,
-		 learn_parm->svm_maxqpsize-choosenum)>=4) 
-	   && (kernel_parm->kernel_type != LINEAR)) {
-	  /* select part of the working set from cache */
-	  already_chosen=select_next_qp_subproblem_grad(
-			      label,unlabeled,a,lin,c,totdoc,
-			      (long)(minl(learn_parm->svm_maxqpsize-choosenum,
-					  learn_parm->svm_newvarsinqp)
-				     /2),
-			      learn_parm,inconsistent,active2dnum,
-			      working2dnum,selcrit,selexam,kernel_cache,1,
-			      key,chosen);
-	  choosenum+=already_chosen;
-	}
-	choosenum+=select_next_qp_subproblem_grad(
-                              label,unlabeled,a,lin,c,totdoc,
-                              minl(learn_parm->svm_maxqpsize-choosenum,
-				   learn_parm->svm_newvarsinqp-already_chosen),
-                              learn_parm,inconsistent,active2dnum,
-			      working2dnum,selcrit,selexam,kernel_cache,0,key,
-			      chosen);
-      }
-      else { /* once in a while, select a somewhat random working set
-		to get unlocked of infinite loops due to numerical
-		inaccuracies in the core qp-solver */
-	choosenum+=select_next_qp_subproblem_rand(
-                              label,unlabeled,a,lin,c,totdoc,
-                              minl(learn_parm->svm_maxqpsize-choosenum,
-				   learn_parm->svm_newvarsinqp),
-                              learn_parm,inconsistent,active2dnum,
-			      working2dnum,selcrit,selexam,kernel_cache,key,
-			      chosen,iteration);
-      }
-    }
-
-    if(verbosity>=2) {
-      printf(" %ld vectors chosen\n",choosenum); fflush(stdout); 
-    }
-
-    if(verbosity>=2) t1=get_runtime();
-
-    if(kernel_cache) 
-      cache_multiple_kernel_rows(kernel_cache,docs,working2dnum,
-				 choosenum,kernel_parm); 
-    
-    if(verbosity>=2) t2=get_runtime();
-    if(retrain != 2) {
-      optimize_svm(docs,label,unlabeled,inconsistent,0.0,chosen,active2dnum,
-		   model,totdoc,working2dnum,choosenum,a,lin,c,learn_parm,
-		   aicache,kernel_parm,&qp,&epsilon_crit_org);
-    }
-
-    if(verbosity>=2) t3=get_runtime();
-    update_linear_component(docs,label,active2dnum,a,a_old,working2dnum,totdoc,
-			    totwords,kernel_parm,kernel_cache,lin,aicache,
-			    weights);
-
-    if(verbosity>=2) t4=get_runtime();
-    supvecnum=calculate_svm_model(docs,label,unlabeled,lin,a,a_old,c,
-		                  learn_parm,working2dnum,active2dnum,model);
-
-    if(verbosity>=2) t5=get_runtime();
-
-    /* The following computation of the objective function works only */
-    /* relative to the active variables */
-    if(verbosity>=3) {
-      criterion=compute_objective_function(a,lin,c,learn_parm->eps,label,
-		                           active2dnum);
-      printf("Objective function (over active variables): %.16f\n",criterion);
-      fflush(stdout); 
-    }
-
-    for(jj=0;(i=working2dnum[jj])>=0;jj++) {
-      a_old[i]=a[i];
-    }
-
-    if(retrain == 2) {  /* reset inconsistent unlabeled examples */
-      for(i=0;(i<totdoc);i++) {
-	if(inconsistent[i] && unlabeled[i]) {
-	  inconsistent[i]=0;
-	  label[i]=0;
-	}
-      }
-    }
-
-    retrain=check_optimality(model,label,unlabeled,a,lin,c,totdoc,learn_parm,
-			     maxdiff,epsilon_crit_org,&misclassified,
-			     inconsistent,active2dnum,last_suboptimal_at,
-			     iteration,kernel_parm);
-
-    if(verbosity>=2) {
-      t6=get_runtime();
-      timing_profile->time_select+=t1-t0;
-      timing_profile->time_kernel+=t2-t1;
-      timing_profile->time_opti+=t3-t2;
-      timing_profile->time_update+=t4-t3;
-      timing_profile->time_model+=t5-t4;
-      timing_profile->time_check+=t6-t5;
-    }
-
-    /* checking whether optimizer got stuck */
-    if((*maxdiff) < bestmaxdiff) {
-      bestmaxdiff=(*maxdiff);
-      bestmaxdiffiter=iteration;
-    }
-    if(iteration > (bestmaxdiffiter+learn_parm->maxiter)) { 
-      /* long time no progress? */
-      terminate=1;
-      retrain=0;
-      if(verbosity>=1) 
-	printf("\nWARNING: Relaxing KT-Conditions due to slow progress! Terminating!\n");
-    }
-
-    noshrink=0;
-    if((!retrain) && (inactivenum>0) 
-       && ((!learn_parm->skip_final_opt_check) 
-	   || (kernel_parm->kernel_type == LINEAR))) { 
-      if(((verbosity>=1) && (kernel_parm->kernel_type != LINEAR)) 
-	 || (verbosity>=2)) {
-	if(verbosity==1) {
-	  printf("\n");
-	}
-	printf(" Checking optimality of inactive variables..."); 
-	fflush(stdout);
-      }
-      t1=get_runtime();
-      reactivate_inactive_examples(label,unlabeled,a,shrink_state,lin,c,totdoc,
-				   totwords,iteration,learn_parm,inconsistent,
-				   docs,kernel_parm,kernel_cache,model,aicache,
-				   weights,maxdiff);
-      /* Update to new active variables. */
-      activenum=compute_index(shrink_state->active,totdoc,active2dnum);
-      inactivenum=totdoc-activenum;
-      /* reset watchdog */
-      bestmaxdiff=(*maxdiff);
-      bestmaxdiffiter=iteration;
-      /* termination criterion */
-      noshrink=1;
-      retrain=0;
-      if((*maxdiff) > learn_parm->epsilon_crit) 
-	retrain=1;
-      timing_profile->time_shrink+=get_runtime()-t1;
-      if(((verbosity>=1) && (kernel_parm->kernel_type != LINEAR)) 
-	 || (verbosity>=2)) {
-	printf("done.\n");  fflush(stdout);
-        printf(" Number of inactive variables = %ld\n",inactivenum);
-      }		  
-    }
-
-    if((!retrain) && (learn_parm->epsilon_crit>(*maxdiff))) 
-      learn_parm->epsilon_crit=(*maxdiff);
-    if((!retrain) && (learn_parm->epsilon_crit>epsilon_crit_org)) {
-      learn_parm->epsilon_crit/=2.0;
-      retrain=1;
-      noshrink=1;
-    }
-    if(learn_parm->epsilon_crit<epsilon_crit_org) 
-      learn_parm->epsilon_crit=epsilon_crit_org;
-    
-    if(verbosity>=2) {
-      printf(" => (%ld SV (incl. %ld SV at u-bound), max violation=%.5f)\n",
-	     supvecnum,model->at_upper_bound,(*maxdiff)); 
-      fflush(stdout);
-    }
-    if(verbosity>=3) {
-      printf("\n");
-    }
-
-    if((!retrain) && (transduction)) {
-      for(i=0;(i<totdoc);i++) {
-	shrink_state->active[i]=1;
-      }
-      activenum=compute_index(shrink_state->active,totdoc,active2dnum);
-      inactivenum=0;
-      if(verbosity==1) printf("done\n");
-      retrain=incorporate_unlabeled_examples(model,label,inconsistent,
-					     unlabeled,a,lin,totdoc,
-					     selcrit,selexam,key,
-					     transductcycle,kernel_parm,
-					     learn_parm);
-      epsilon_crit_org=learn_parm->epsilon_crit;
-      if(kernel_parm->kernel_type == LINEAR)
-	learn_parm->epsilon_crit=1; 
-      transductcycle++;
-      /* reset watchdog */
-      bestmaxdiff=(*maxdiff);
-      bestmaxdiffiter=iteration;
-    } 
-    else if(((iteration % 10) == 0) && (!noshrink)) {
-      activenum=shrink_problem(docs,learn_parm,shrink_state,kernel_parm,
-			       active2dnum,last_suboptimal_at,iteration,totdoc,
-			       maxl((long)(activenum/10),
-				    maxl((long)(totdoc/500),100)),
-			       a,inconsistent);
-      inactivenum=totdoc-activenum;
-      if((kernel_cache)
-	 && (supvecnum>kernel_cache->max_elems)
-	 && ((kernel_cache->activenum-activenum)>maxl((long)(activenum/10),500))) {
-	kernel_cache_shrink(kernel_cache,totdoc,
-			    minl((kernel_cache->activenum-activenum),
-				 (kernel_cache->activenum-supvecnum)),
-			    shrink_state->active); 
-      }
-    }
-
-    if((!retrain) && learn_parm->remove_inconsistent) {
-      if(verbosity>=1) {
-	printf(" Moving training errors to inconsistent examples...");
-	fflush(stdout);
-      }
-      if(learn_parm->remove_inconsistent == 1) {
-	retrain=identify_inconsistent(a,label,unlabeled,totdoc,learn_parm,
-				      &inconsistentnum,inconsistent); 
-      }
-      else if(learn_parm->remove_inconsistent == 2) {
-	retrain=identify_misclassified(lin,label,unlabeled,totdoc,
-				       model,&inconsistentnum,inconsistent); 
-      }
-      else if(learn_parm->remove_inconsistent == 3) {
-	retrain=identify_one_misclassified(lin,label,unlabeled,totdoc,
-				   model,&inconsistentnum,inconsistent);
-      }
-      if(retrain) {
-	if(kernel_parm->kernel_type == LINEAR) { /* reinit shrinking */
-	  learn_parm->epsilon_crit=2.0;
-	} 
-      }
-      if(verbosity>=1) {
-	printf("done.\n");
-	if(retrain) {
-	  printf(" Now %ld inconsistent examples.\n",inconsistentnum);
-	}
-      }
-    }
-  } /* end of loop */
-
-  free(chosen);
-  free(last_suboptimal_at);
-  free(key);
-  free(selcrit);
-  free(selexam);
-  free(a_old);
-  free(aicache);
-  free(working2dnum);
-  free(active2dnum);
-  free(qp.opt_ce);
-  free(qp.opt_ce0);
-  free(qp.opt_g);
-  free(qp.opt_g0);
-  free(qp.opt_xinit);
-  free(qp.opt_low);
-  free(qp.opt_up);
-  free(weights);
-
-  learn_parm->epsilon_crit=epsilon_crit_org; /* restore org */
-  model->maxdiff=(*maxdiff);
-
-  return(iteration);
-}
-
-long optimize_to_convergence_sharedslack(DOC **docs, long int *label, 
-			     long int totdoc, 
-			     long int totwords, LEARN_PARM *learn_parm, 
-			     KERNEL_PARM *kernel_parm, 
-			     KERNEL_CACHE *kernel_cache, 
-			     SHRINK_STATE *shrink_state, MODEL *model, 
-			     double *a, double *lin, double *c, 
-			     TIMING *timing_profile, double *maxdiff)
-     /* docs: Training vectors (x-part) */
-     /* label: Training labels/value (y-part, zero if test example for
-			      transduction) */
-     /* totdoc: Number of examples in docs/label */
-     /* totwords: Number of features (i.e. highest feature index) */
-     /* learn_parm: Learning paramenters */
-     /* kernel_parm: Kernel paramenters */
-     /* kernel_cache: Initialized/partly filled Cache, if using a kernel. 
-                      NULL if linear. */
-     /* shrink_state: State of active variables */
-     /* model: Returns learning result */
-     /* a: alphas */
-     /* lin: linear component of gradient */
-     /* c: right hand side of inequalities (margin) */
-     /* maxdiff: returns maximum violation of KT-conditions */
-{
-  long *chosen,*key,i,j,jj,*last_suboptimal_at,noshrink,*unlabeled;
-  long *inconsistent,choosenum,already_chosen=0,iteration;
-  long misclassified,supvecnum=0,*active2dnum,inactivenum;
-  long *working2dnum,*selexam,*ignore;
-  long activenum,retrain,maxslackid,slackset,jointstep;
-  double criterion,eq_target;
-  double *a_old,*alphaslack;
-  long t0=0,t1=0,t2=0,t3=0,t4=0,t5=0,t6=0; /* timing */
-  double epsilon_crit_org,maxsharedviol; 
-  double bestmaxdiff;
-  long   bestmaxdiffiter,terminate;
-
-  double *selcrit;  /* buffer for sorting */        
-  CFLOAT *aicache;  /* buffer to keep one row of hessian */
-  double *weights;  /* buffer for weight vector in linear case */
-  QP qp;            /* buffer for one quadratic program */
-  double *slack;    /* vector of slack variables for optimization with
-		       shared slacks */
-
-  epsilon_crit_org=learn_parm->epsilon_crit; /* save org */
-  if(kernel_parm->kernel_type == LINEAR) {
-    learn_parm->epsilon_crit=2.0;
-    kernel_cache=NULL;   /* caching makes no sense for linear kernel */
-  } 
-  learn_parm->epsilon_shrink=2;
-  (*maxdiff)=1;
-
-  learn_parm->totwords=totwords;
-
-  chosen = (long *)my_malloc(sizeof(long)*totdoc);
-  unlabeled = (long *)my_malloc(sizeof(long)*totdoc);
-  inconsistent = (long *)my_malloc(sizeof(long)*totdoc);
-  ignore = (long *)my_malloc(sizeof(long)*totdoc);
-  key = (long *)my_malloc(sizeof(long)*(totdoc+11)); 
-  selcrit = (double *)my_malloc(sizeof(double)*totdoc);
-  selexam = (long *)my_malloc(sizeof(long)*totdoc);
-  a_old = (double *)my_malloc(sizeof(double)*totdoc);
-  aicache = (CFLOAT *)my_malloc(sizeof(CFLOAT)*totdoc);
-  working2dnum = (long *)my_malloc(sizeof(long)*(totdoc+11));
-  active2dnum = (long *)my_malloc(sizeof(long)*(totdoc+11));
-  qp.opt_ce = (double *)my_malloc(sizeof(double)*learn_parm->svm_maxqpsize);
-  qp.opt_ce0 = (double *)my_malloc(sizeof(double));
-  qp.opt_g = (double *)my_malloc(sizeof(double)*learn_parm->svm_maxqpsize
-				 *learn_parm->svm_maxqpsize);
-  qp.opt_g0 = (double *)my_malloc(sizeof(double)*learn_parm->svm_maxqpsize);
-  qp.opt_xinit = (double *)my_malloc(sizeof(double)*learn_parm->svm_maxqpsize);
-  qp.opt_low=(double *)my_malloc(sizeof(double)*learn_parm->svm_maxqpsize);
-  qp.opt_up=(double *)my_malloc(sizeof(double)*learn_parm->svm_maxqpsize);
-  weights=(double *)my_malloc(sizeof(double)*(totwords+1));
-  maxslackid=0;
-  for(i=0;i<totdoc;i++) {    /* determine size of slack array */
-    if(maxslackid<docs[i]->slackid)
-      maxslackid=docs[i]->slackid;
-  }
-  slack=(double *)my_malloc(sizeof(double)*(maxslackid+1));
-  alphaslack=(double *)my_malloc(sizeof(double)*(maxslackid+1));
-  last_suboptimal_at = (long *)my_malloc(sizeof(long)*(maxslackid+1));
-  for(i=0;i<=maxslackid;i++) {    /* init shared slacks */
-    slack[i]=0;
-    alphaslack[i]=0;
-    last_suboptimal_at[i]=1;
-  }
-
-  choosenum=0;
-  retrain=1;
-  iteration=1;
-  bestmaxdiffiter=1;
-  bestmaxdiff=999999999;
-  terminate=0;
-
-  if(kernel_cache) {
-    kernel_cache->time=iteration;  /* for lru cache */
-    kernel_cache_reset_lru(kernel_cache);
-  }
-
-  for(i=0;i<totdoc;i++) {    /* various inits */
-    chosen[i]=0;
-    unlabeled[i]=0;
-    inconsistent[i]=0;
-    ignore[i]=0;
-    a_old[i]=a[i];
-  }
-  activenum=compute_index(shrink_state->active,totdoc,active2dnum);
-  inactivenum=totdoc-activenum;
-  clear_index(working2dnum);
-
-  /* call to init slack and alphaslack */
-  compute_shared_slacks(docs,label,a,lin,c,active2dnum,learn_parm,
-			slack,alphaslack);
-
-                            /* repeat this loop until we have convergence */
-  for(;retrain && (!terminate);iteration++) {
-
-    if(kernel_cache)
-      kernel_cache->time=iteration;  /* for lru cache */
-    if(verbosity>=2) {
-      printf(
-	"Iteration %ld: ",iteration); fflush(stdout);
-    }
-    else if(verbosity==1) {
-      printf("."); fflush(stdout);
-    }
-
-    if(verbosity>=2) t0=get_runtime();
-    if(verbosity>=3) {
-      printf("\nSelecting working set... "); fflush(stdout); 
-    }
-
-    if(learn_parm->svm_newvarsinqp>learn_parm->svm_maxqpsize) 
-      learn_parm->svm_newvarsinqp=learn_parm->svm_maxqpsize;
-
-    /* select working set according to steepest gradient */
-    jointstep=0;
-    eq_target=0;
-    if(iteration % 101) {
-      slackset=select_next_qp_slackset(docs,label,a,lin,slack,alphaslack,c,
-				       learn_parm,active2dnum,&maxsharedviol);
-      if((iteration % 2) 
-	 || (!slackset) || (maxsharedviol<learn_parm->epsilon_crit)){
-	/* do a step with examples from different slack sets */
-	if(verbosity >= 2) {
-	  printf("(i-step)"); fflush(stdout);
-	}
-	i=0;
-	for(jj=0;(j=working2dnum[jj])>=0;jj++) { /* clear old part of working set */
-	  if((chosen[j]>=(learn_parm->svm_maxqpsize/
-			  minl(learn_parm->svm_maxqpsize,
-			       learn_parm->svm_newvarsinqp)))) {
-	    chosen[j]=0; 
-	    choosenum--; 
-	  }
-	  else {
-	    chosen[j]++;
-	    working2dnum[i++]=j;
-	  }
-	}
-	working2dnum[i]=-1;
-	
-	already_chosen=0;
-	if((minl(learn_parm->svm_newvarsinqp,
-		 learn_parm->svm_maxqpsize-choosenum)>=4) 
-	   && (kernel_parm->kernel_type != LINEAR)) {
-	  /* select part of the working set from cache */
-	  already_chosen=select_next_qp_subproblem_grad(
-			      label,unlabeled,a,lin,c,totdoc,
-			      (long)(minl(learn_parm->svm_maxqpsize-choosenum,
-					  learn_parm->svm_newvarsinqp)
-				     /2),
-			      learn_parm,inconsistent,active2dnum,
-			      working2dnum,selcrit,selexam,kernel_cache,
-			      (long)1,key,chosen);
-	  choosenum+=already_chosen;
-	}
-	choosenum+=select_next_qp_subproblem_grad(
-                              label,unlabeled,a,lin,c,totdoc,
-                              minl(learn_parm->svm_maxqpsize-choosenum,
-				   learn_parm->svm_newvarsinqp-already_chosen),
-                              learn_parm,inconsistent,active2dnum,
-			      working2dnum,selcrit,selexam,kernel_cache,
-			      (long)0,key,chosen);
-      }
-      else { /* do a step with all examples from same slack set */
-	if(verbosity >= 2) {
-	  printf("(j-step on %ld)",slackset); fflush(stdout);
-	}
-	jointstep=1;
-	for(jj=0;(j=working2dnum[jj])>=0;jj++) { /* clear working set */
-	    chosen[j]=0; 
-	}
-	working2dnum[0]=-1;
-	eq_target=alphaslack[slackset];
-	for(j=0;j<totdoc;j++) {                  /* mask all but slackset */
-	  /* for(jj=0;(j=active2dnum[jj])>=0;jj++) { */
-	  if(docs[j]->slackid != slackset)
-	    ignore[j]=1; 
-	  else {
-	    ignore[j]=0; 
-	    learn_parm->svm_cost[j]=learn_parm->svm_c;
-	    /* printf("Inslackset(%ld,%ld)",j,shrink_state->active[j]); */
-	  }
-	}
-	learn_parm->biased_hyperplane=1;
-	choosenum=select_next_qp_subproblem_grad(
-                              label,unlabeled,a,lin,c,totdoc,
-                              learn_parm->svm_maxqpsize,
-                              learn_parm,ignore,active2dnum,
-			      working2dnum,selcrit,selexam,kernel_cache,
-			      (long)0,key,chosen);
-	learn_parm->biased_hyperplane=0;
-      }
-    }
-    else { /* once in a while, select a somewhat random working set
-	      to get unlocked of infinite loops due to numerical
-	      inaccuracies in the core qp-solver */
-      choosenum+=select_next_qp_subproblem_rand(
-                              label,unlabeled,a,lin,c,totdoc,
-                              minl(learn_parm->svm_maxqpsize-choosenum,
-				   learn_parm->svm_newvarsinqp),
-                              learn_parm,inconsistent,active2dnum,
-			      working2dnum,selcrit,selexam,kernel_cache,key,
-			      chosen,iteration);
-    }
-
-    if(verbosity>=2) {
-      printf(" %ld vectors chosen\n",choosenum); fflush(stdout); 
-    }
-
-    if(verbosity>=2) t1=get_runtime();
-
-    if(kernel_cache) 
-      cache_multiple_kernel_rows(kernel_cache,docs,working2dnum,
-				 choosenum,kernel_parm); 
-
-    if(verbosity>=2) t2=get_runtime();
-    if(jointstep) learn_parm->biased_hyperplane=1;
-    optimize_svm(docs,label,unlabeled,ignore,eq_target,chosen,active2dnum,
-		 model,totdoc,working2dnum,choosenum,a,lin,c,learn_parm,
-		 aicache,kernel_parm,&qp,&epsilon_crit_org);
-    learn_parm->biased_hyperplane=0;
-
-    for(jj=0;(i=working2dnum[jj])>=0;jj++)   /* recompute sums of alphas */
-      alphaslack[docs[i]->slackid]+=(a[i]-a_old[i]);
-    for(jj=0;(i=working2dnum[jj])>=0;jj++) { /* reduce alpha to fulfill
-						constraints */
-      if(alphaslack[docs[i]->slackid] > learn_parm->svm_c) {
-	if(a[i] < (alphaslack[docs[i]->slackid]-learn_parm->svm_c)) {
-	  alphaslack[docs[i]->slackid]-=a[i];
-	  a[i]=0;
-	}
-	else {
-	  a[i]-=(alphaslack[docs[i]->slackid]-learn_parm->svm_c);
-	  alphaslack[docs[i]->slackid]=learn_parm->svm_c;
-	}
-      }
-    }
-    for(jj=0;(i=active2dnum[jj])>=0;jj++) 
-      learn_parm->svm_cost[i]=a[i]+(learn_parm->svm_c
-				    -alphaslack[docs[i]->slackid]);
-
-    if(verbosity>=2) t3=get_runtime();
-    update_linear_component(docs,label,active2dnum,a,a_old,working2dnum,totdoc,
-			    totwords,kernel_parm,kernel_cache,lin,aicache,
-			    weights);
-    compute_shared_slacks(docs,label,a,lin,c,active2dnum,learn_parm,
-			  slack,alphaslack);
-
-    if(verbosity>=2) t4=get_runtime();
-    supvecnum=calculate_svm_model(docs,label,unlabeled,lin,a,a_old,c,
-		                  learn_parm,working2dnum,active2dnum,model);
-
-    if(verbosity>=2) t5=get_runtime();
-
-    /* The following computation of the objective function works only */
-    /* relative to the active variables */
-    if(verbosity>=3) {
-      criterion=compute_objective_function(a,lin,c,learn_parm->eps,label,
-		                           active2dnum);
-      printf("Objective function (over active variables): %.16f\n",criterion);
-      fflush(stdout); 
-    }
-
-    for(jj=0;(i=working2dnum[jj])>=0;jj++) {
-      a_old[i]=a[i];
-    }
-
-    retrain=check_optimality_sharedslack(docs,model,label,a,lin,c,
-                             slack,alphaslack,totdoc,learn_parm,
-			     maxdiff,epsilon_crit_org,&misclassified,
-			     active2dnum,last_suboptimal_at,
-			     iteration,kernel_parm);
-
-    if(verbosity>=2) {
-      t6=get_runtime();
-      timing_profile->time_select+=t1-t0;
-      timing_profile->time_kernel+=t2-t1;
-      timing_profile->time_opti+=t3-t2;
-      timing_profile->time_update+=t4-t3;
-      timing_profile->time_model+=t5-t4;
-      timing_profile->time_check+=t6-t5;
-    }
-
-    /* checking whether optimizer got stuck */
-    if((*maxdiff) < bestmaxdiff) {
-      bestmaxdiff=(*maxdiff);
-      bestmaxdiffiter=iteration;
-    }
-    if(iteration > (bestmaxdiffiter+learn_parm->maxiter)) { 
-      /* long time no progress? */
-      terminate=1;
-      retrain=0;
-      if(verbosity>=1) 
-	printf("\nWARNING: Relaxing KT-Conditions due to slow progress! Terminating!\n");
-    }
-
-    noshrink=0; 
-
-    if((!retrain) && (inactivenum>0) 
-       && ((!learn_parm->skip_final_opt_check) 
-	   || (kernel_parm->kernel_type == LINEAR))) { 
-      if(((verbosity>=1) && (kernel_parm->kernel_type != LINEAR)) 
-	 || (verbosity>=2)) {
-	if(verbosity==1) {
-	  printf("\n");
-	}
-	printf(" Checking optimality of inactive variables..."); 
-	fflush(stdout);
-      }
-      t1=get_runtime();
-      reactivate_inactive_examples(label,unlabeled,a,shrink_state,lin,c,totdoc,
-				   totwords,iteration,learn_parm,inconsistent,
-				   docs,kernel_parm,kernel_cache,model,aicache,
-				   weights,maxdiff);
-      /* Update to new active variables. */
-      activenum=compute_index(shrink_state->active,totdoc,active2dnum);
-      inactivenum=totdoc-activenum;
-      /* check optimality, since check in reactivate does not work for
-	 sharedslacks */
-      retrain=check_optimality_sharedslack(docs,model,label,a,lin,c,
-			     slack,alphaslack,totdoc,learn_parm,
-			     maxdiff,epsilon_crit_org,&misclassified,
-			     active2dnum,last_suboptimal_at,
-			     iteration,kernel_parm);
-
-      /* reset watchdog */
-      bestmaxdiff=(*maxdiff);
-      bestmaxdiffiter=iteration;
-      /* termination criterion */
-      noshrink=1;
-      retrain=0;
-      if((*maxdiff) > learn_parm->epsilon_crit) 
-	retrain=1;
-      timing_profile->time_shrink+=get_runtime()-t1;
-      if(((verbosity>=1) && (kernel_parm->kernel_type != LINEAR)) 
-	 || (verbosity>=2)) {
-	printf("done.\n");  fflush(stdout);
-        printf(" Number of inactive variables = %ld\n",inactivenum);
-      }		  
-    }
-
-    if((!retrain) && (learn_parm->epsilon_crit>(*maxdiff))) 
-      learn_parm->epsilon_crit=(*maxdiff);
-    if((!retrain) && (learn_parm->epsilon_crit>epsilon_crit_org)) {
-      learn_parm->epsilon_crit/=2.0;
-      retrain=1;
-      noshrink=1;
-    }
-    if(learn_parm->epsilon_crit<epsilon_crit_org) 
-      learn_parm->epsilon_crit=epsilon_crit_org;
-    
-    if(verbosity>=2) {
-      printf(" => (%ld SV (incl. %ld SV at u-bound), max violation=%.5f)\n",
-	     supvecnum,model->at_upper_bound,(*maxdiff)); 
-      fflush(stdout);
-    }
-    if(verbosity>=3) {
-      printf("\n");
-    }
-
-    if(((iteration % 10) == 0) && (!noshrink)) {
-      activenum=shrink_problem(docs,learn_parm,shrink_state,
-			       kernel_parm,active2dnum,
-			       last_suboptimal_at,iteration,totdoc,
-			       maxl((long)(activenum/10),
-				    maxl((long)(totdoc/500),100)),
-			       a,inconsistent);
-      inactivenum=totdoc-activenum;
-      if((kernel_cache)
-	 && (supvecnum>kernel_cache->max_elems)
-	 && ((kernel_cache->activenum-activenum)>maxl((long)(activenum/10),500))) {
-	kernel_cache_shrink(kernel_cache,totdoc,
-			    minl((kernel_cache->activenum-activenum),
-				 (kernel_cache->activenum-supvecnum)),
-			    shrink_state->active); 
-      }
-    }
-
-  } /* end of loop */
-
-
-  free(alphaslack);
-  free(slack);
-  free(chosen);
-  free(unlabeled);
-  free(inconsistent);
-  free(ignore);
-  free(last_suboptimal_at);
-  free(key);
-  free(selcrit);
-  free(selexam);
-  free(a_old);
-  free(aicache);
-  free(working2dnum);
-  free(active2dnum);
-  free(qp.opt_ce);
-  free(qp.opt_ce0);
-  free(qp.opt_g);
-  free(qp.opt_g0);
-  free(qp.opt_xinit);
-  free(qp.opt_low);
-  free(qp.opt_up);
-  free(weights);
-
-  learn_parm->epsilon_crit=epsilon_crit_org; /* restore org */
-  model->maxdiff=(*maxdiff);
-
-  return(iteration);
-}
-
-
-double compute_objective_function(double *a, double *lin, double *c, 
-				  double eps, long int *label, 
-				  long int *active2dnum)
-     /* Return value of objective function. */
-     /* Works only relative to the active variables! */
-{
-  long i,ii;
-  double criterion;
-  /* calculate value of objective function */
-  criterion=0;
-  for(ii=0;active2dnum[ii]>=0;ii++) {
-    i=active2dnum[ii];
-    criterion=criterion+(eps-(double)label[i]*c[i])*a[i]+0.5*a[i]*label[i]*lin[i];
-  } 
-  return(criterion);
-}
-
-void clear_index(long int *index)
-              /* initializes and empties index */
-{
-  index[0]=-1;
-} 
-
-void add_to_index(long int *index, long int elem)
-     /* initializes and empties index */
-{
-  register long i;
-  for(i=0;index[i] != -1;i++);
-  index[i]=elem;
-  index[i+1]=-1;
-}
-
-long compute_index(long int *binfeature, long int range, long int *index)
-     /* create an inverted index of binfeature */
-{               
-  register long i,ii;
-
-  ii=0;
-  for(i=0;i<range;i++) {
-    if(binfeature[i]) {
-      index[ii]=i;
-      ii++;
-    }
-  }
-  for(i=0;i<4;i++) {
-    index[ii+i]=-1;
-  }
-  return(ii);
-}
-
-
-void optimize_svm(DOC **docs, long int *label, long int *unlabeled, 
-		  long int *exclude_from_eq_const, double eq_target,
-		  long int *chosen, long int *active2dnum, MODEL *model, 
-		  long int totdoc, long int *working2dnum, long int varnum, 
-		  double *a, double *lin, double *c, LEARN_PARM *learn_parm, 
-		  CFLOAT *aicache, KERNEL_PARM *kernel_parm, QP *qp, 
-		  double *epsilon_crit_target)
-     /* Do optimization on the working set. */
-{
-    long i;
-    double *a_v;
-
-    compute_matrices_for_optimization(docs,label,unlabeled,
-				      exclude_from_eq_const,eq_target,chosen,
-				      active2dnum,working2dnum,model,a,lin,c,
-				      varnum,totdoc,learn_parm,aicache,
-				      kernel_parm,qp);
-
-    if(verbosity>=3) {
-      printf("Running optimizer..."); fflush(stdout);
-    }
-    /* call the qp-subsolver */
-    a_v=optimize_qp(qp,epsilon_crit_target,
-		    learn_parm->svm_maxqpsize,
-		    &(model->b),   /* in case the optimizer gives us */
-                                   /* the threshold for free. otherwise */
-                                   /* b is calculated in calculate_model. */
-		    learn_parm);
-    if(verbosity>=3) {         
-      printf("done\n");
-    }
-
-    for(i=0;i<varnum;i++) {
-      a[working2dnum[i]]=a_v[i];
-      /*
-      if(a_v[i]<=(0+learn_parm->epsilon_a)) {
-	a[working2dnum[i]]=0;
-      }
-      else if(a_v[i]>=(learn_parm->svm_cost[working2dnum[i]]-learn_parm->epsilon_a)) {
-	a[working2dnum[i]]=learn_parm->svm_cost[working2dnum[i]];
-      }
-      */
-    }
-}
-
-void compute_matrices_for_optimization(DOC **docs, long int *label, 
-          long int *unlabeled, long *exclude_from_eq_const, double eq_target,
-	  long int *chosen, long int *active2dnum, 
-          long int *key, MODEL *model, double *a, double *lin, double *c, 
-	  long int varnum, long int totdoc, LEARN_PARM *learn_parm, 
-          CFLOAT *aicache, KERNEL_PARM *kernel_parm, QP *qp)
-{
-  register long ki,kj,i,j;
-  register double kernel_temp;
-
-  if(verbosity>=3) {
-    fprintf(stdout,"Computing qp-matrices (type %ld kernel [degree %ld, rbf_gamma %f, coef_lin %f, coef_const %f])...",kernel_parm->kernel_type,kernel_parm->poly_degree,kernel_parm->rbf_gamma,kernel_parm->coef_lin,kernel_parm->coef_const); 
-    fflush(stdout);
-  }
-
-  qp->opt_n=varnum;
-  qp->opt_ce0[0]=-eq_target; /* compute the constant for equality constraint */
-  for(j=1;j<model->sv_num;j++) { /* start at 1 */
-    if((!chosen[(model->supvec[j])->docnum])
-       && (!exclude_from_eq_const[(model->supvec[j])->docnum])) {
-      qp->opt_ce0[0]+=model->alpha[j];
-    }
-  } 
-  if(learn_parm->biased_hyperplane) 
-    qp->opt_m=1;
-  else 
-    qp->opt_m=0;  /* eq-constraint will be ignored */
-
-  /* init linear part of objective function */
-  for(i=0;i<varnum;i++) {
-    qp->opt_g0[i]=lin[key[i]];
-  }
-
-  for(i=0;i<varnum;i++) {
-    ki=key[i];
-
-    /* Compute the matrix for equality constraints */
-    qp->opt_ce[i]=label[ki];
-    qp->opt_low[i]=0;
-    qp->opt_up[i]=learn_parm->svm_cost[ki];
-
-    kernel_temp=(double)kernel(kernel_parm,docs[ki],docs[ki]); 
-    /* compute linear part of objective function */
-    qp->opt_g0[i]-=(kernel_temp*a[ki]*(double)label[ki]); 
-    /* compute quadratic part of objective function */
-    qp->opt_g[varnum*i+i]=kernel_temp;
-    for(j=i+1;j<varnum;j++) {
-      kj=key[j];
-      kernel_temp=(double)kernel(kernel_parm,docs[ki],docs[kj]);
-      /* compute linear part of objective function */
-      qp->opt_g0[i]-=(kernel_temp*a[kj]*(double)label[kj]);
-      qp->opt_g0[j]-=(kernel_temp*a[ki]*(double)label[ki]); 
-      /* compute quadratic part of objective function */
-      qp->opt_g[varnum*i+j]=(double)label[ki]*(double)label[kj]*kernel_temp;
-      qp->opt_g[varnum*j+i]=(double)label[ki]*(double)label[kj]*kernel_temp;
-    }
-
-    if(verbosity>=3) {
-      if(i % 20 == 0) {
-	fprintf(stdout,"%ld..",i); fflush(stdout);
-      }
-    }
-  }
-
-  for(i=0;i<varnum;i++) {
-    /* assure starting at feasible point */
-    qp->opt_xinit[i]=a[key[i]];
-    /* set linear part of objective function */
-    qp->opt_g0[i]=(learn_parm->eps-(double)label[key[i]]*c[key[i]])+qp->opt_g0[i]*(double)label[key[i]];    
-  }
-
-  if(verbosity>=3) {
-    fprintf(stdout,"done\n");
-  }
-}
-
-long calculate_svm_model(DOC **docs, long int *label, long int *unlabeled, 
-			 double *lin, double *a, double *a_old, double *c, 
-			 LEARN_PARM *learn_parm, long int *working2dnum, 
-			 long int *active2dnum, MODEL *model)
-     /* Compute decision function based on current values */
-     /* of alpha. */
-{
-  long i,ii,pos,b_calculated=0,first_low,first_high;
-  double ex_c,b_temp,b_low,b_high;
-
-  if(verbosity>=3) {
-    printf("Calculating model..."); fflush(stdout);
-  }
-
-  if(!learn_parm->biased_hyperplane) {
-    model->b=0;
-    b_calculated=1;
-  }
-
-  for(ii=0;(i=working2dnum[ii])>=0;ii++) {
-    if((a_old[i]>0) && (a[i]==0)) { /* remove from model */
-      pos=model->index[i]; 
-      model->index[i]=-1;
-      (model->sv_num)--;
-      model->supvec[pos]=model->supvec[model->sv_num];
-      model->alpha[pos]=model->alpha[model->sv_num];
-      model->index[(model->supvec[pos])->docnum]=pos;
-    }
-    else if((a_old[i]==0) && (a[i]>0)) { /* add to model */
-      model->supvec[model->sv_num]=docs[i];
-      model->alpha[model->sv_num]=a[i]*(double)label[i];
-      model->index[i]=model->sv_num;
-      (model->sv_num)++;
-    }
-    else if(a_old[i]==a[i]) { /* nothing to do */
-    }
-    else {  /* just update alpha */
-      model->alpha[model->index[i]]=a[i]*(double)label[i];
-    }
-      
-    ex_c=learn_parm->svm_cost[i]-learn_parm->epsilon_a;
-    if((a_old[i]>=ex_c) && (a[i]<ex_c)) { 
-      (model->at_upper_bound)--;
-    }
-    else if((a_old[i]<ex_c) && (a[i]>=ex_c)) { 
-      (model->at_upper_bound)++;
-    }
-
-    if((!b_calculated) 
-       && (a[i]>learn_parm->epsilon_a) && (a[i]<ex_c)) {   /* calculate b */
-     	model->b=((double)label[i]*learn_parm->eps-c[i]+lin[i]); 
-	/* model->b=(-(double)label[i]+lin[i]); */
-	b_calculated=1;
-    }
-  }      
-
-  /* No alpha in the working set not at bounds, so b was not
-     calculated in the usual way. The following handles this special
-     case. */
-  if(learn_parm->biased_hyperplane 
-     && (!b_calculated)
-     && (model->sv_num-1 == model->at_upper_bound)) { 
-    first_low=1;
-    first_high=1;
-    b_low=0;
-    b_high=0;
-    for(ii=0;(i=active2dnum[ii])>=0;ii++) {
-      ex_c=learn_parm->svm_cost[i]-learn_parm->epsilon_a;
-      if(a[i]<ex_c) { 
-	if(label[i]>0)  {
-	  b_temp=-(learn_parm->eps-c[i]+lin[i]);
-	  if((b_temp>b_low) || (first_low)) {
-	    b_low=b_temp;
-	    first_low=0;
-	  }
-	}
-	else {
-	  b_temp=-(-learn_parm->eps-c[i]+lin[i]);
-	  if((b_temp<b_high) || (first_high)) {
-	    b_high=b_temp;
-	    first_high=0;
-	  }
-	}
-      }
-      else {
-	if(label[i]<0)  {
-	  b_temp=-(-learn_parm->eps-c[i]+lin[i]);
-	  if((b_temp>b_low) || (first_low)) {
-	    b_low=b_temp;
-	    first_low=0;
-	  }
-	}
-	else {
-	  b_temp=-(learn_parm->eps-c[i]+lin[i]);
-	  if((b_temp<b_high) || (first_high)) {
-	    b_high=b_temp;
-	    first_high=0;
-	  }
-	}
-      }
-    }
-    if(first_high) {
-      model->b=-b_low;
-    }
-    else if(first_low) {
-      model->b=-b_high;
-    }
-    else {
-      model->b=-(b_high+b_low)/2.0;  /* select b as the middle of range */
-      /* printf("\nb_low=%f, b_high=%f,b=%f\n",b_low,b_high,model->b); */
-    }
-  }
-
-  if(verbosity>=3) {
-    printf("done\n"); fflush(stdout);
-  }
-
-  return(model->sv_num-1); /* have to substract one, since element 0 is empty*/
-}
-
-long check_optimality(MODEL *model, long int *label, long int *unlabeled, 
-		      double *a, double *lin, double *c, long int totdoc, 
-		      LEARN_PARM *learn_parm, double *maxdiff, 
-		      double epsilon_crit_org, long int *misclassified, 
-		      long int *inconsistent, long int *active2dnum,
-		      long int *last_suboptimal_at, 
-		      long int iteration, KERNEL_PARM *kernel_parm)
-     /* Check KT-conditions */
-{
-  long i,ii,retrain;
-  double dist,ex_c,target;
-
-  if(kernel_parm->kernel_type == LINEAR) {  /* be optimistic */
-    learn_parm->epsilon_shrink=-learn_parm->epsilon_crit+epsilon_crit_org;  
-  }
-  else {  /* be conservative */
-    learn_parm->epsilon_shrink=learn_parm->epsilon_shrink*0.7+(*maxdiff)*0.3; 
-  }
-  retrain=0;
-  (*maxdiff)=0;
-  (*misclassified)=0;
-  for(ii=0;(i=active2dnum[ii])>=0;ii++) {
-    if((!inconsistent[i]) && label[i]) {
-      dist=(lin[i]-model->b)*(double)label[i];/* 'distance' from
-						 hyperplane*/
-      target=-(learn_parm->eps-(double)label[i]*c[i]);
-      ex_c=learn_parm->svm_cost[i]-learn_parm->epsilon_a;
-      if(dist <= 0) {       
-	(*misclassified)++;  /* does not work due to deactivation of var */
-      }
-      if((a[i]>learn_parm->epsilon_a) && (dist > target)) {
-	if((dist-target)>(*maxdiff))  /* largest violation */
-	  (*maxdiff)=dist-target;
-      }
-      else if((a[i]<ex_c) && (dist < target)) {
-	if((target-dist)>(*maxdiff))  /* largest violation */
-	  (*maxdiff)=target-dist;
-      }
-      /* Count how long a variable was at lower/upper bound (and optimal).*/
-      /* Variables, which were at the bound and optimal for a long */
-      /* time are unlikely to become support vectors. In case our */
-      /* cache is filled up, those variables are excluded to save */
-      /* kernel evaluations. (See chapter 'Shrinking').*/ 
-      if((a[i]>(learn_parm->epsilon_a)) 
-	 && (a[i]<ex_c)) { 
-	last_suboptimal_at[i]=iteration;         /* not at bound */
-      }
-      else if((a[i]<=(learn_parm->epsilon_a)) 
-	      && (dist < (target+learn_parm->epsilon_shrink))) {
-	last_suboptimal_at[i]=iteration;         /* not likely optimal */
-      }
-      else if((a[i]>=ex_c)
-	      && (dist > (target-learn_parm->epsilon_shrink)))  { 
-	last_suboptimal_at[i]=iteration;         /* not likely optimal */
-      }
-    }   
-  }
-  /* termination criterion */
-  if((!retrain) && ((*maxdiff) > learn_parm->epsilon_crit)) {  
-    retrain=1;
-  }
-  return(retrain);
-}
-
-long check_optimality_sharedslack(DOC **docs, MODEL *model, long int *label,
-		      double *a, double *lin, double *c, double *slack,
-		      double *alphaslack,
-		      long int totdoc, 
-		      LEARN_PARM *learn_parm, double *maxdiff, 
-		      double epsilon_crit_org, long int *misclassified, 
-		      long int *active2dnum,
-		      long int *last_suboptimal_at, 
-		      long int iteration, KERNEL_PARM *kernel_parm)
-     /* Check KT-conditions */
-{
-  long i,ii,retrain;
-  double dist,ex_c=0,target;
-
-  if(kernel_parm->kernel_type == LINEAR) {  /* be optimistic */
-    learn_parm->epsilon_shrink=-learn_parm->epsilon_crit+epsilon_crit_org;  
-  }
-  else {  /* be conservative */
-    learn_parm->epsilon_shrink=learn_parm->epsilon_shrink*0.7+(*maxdiff)*0.3; 
-  }
-
-  retrain=0;
-  (*maxdiff)=0;
-  (*misclassified)=0;
-  for(ii=0;(i=active2dnum[ii])>=0;ii++) {
-    /* 'distance' from hyperplane*/
-    dist=(lin[i]-model->b)*(double)label[i]+slack[docs[i]->slackid];
-    target=-(learn_parm->eps-(double)label[i]*c[i]);
-    ex_c=learn_parm->svm_c-learn_parm->epsilon_a;
-    if((a[i]>learn_parm->epsilon_a) && (dist > target)) {
-      if((dist-target)>(*maxdiff)) {  /* largest violation */
-	(*maxdiff)=dist-target;
-	if(verbosity>=5) printf("sid %ld: dist=%.2f, target=%.2f, slack=%.2f, a=%f, alphaslack=%f\n",docs[i]->slackid,dist,target,slack[docs[i]->slackid],a[i],alphaslack[docs[i]->slackid]);
-	if(verbosity>=5) printf(" (single %f)\n",(*maxdiff));
-      }
-    }
-    if((alphaslack[docs[i]->slackid]<ex_c) && (slack[docs[i]->slackid]>0)) {
-      if((slack[docs[i]->slackid])>(*maxdiff)) { /* largest violation */
-	(*maxdiff)=slack[docs[i]->slackid];
-	if(verbosity>=5) printf("sid %ld: dist=%.2f, target=%.2f, slack=%.2f, a=%f, alphaslack=%f\n",docs[i]->slackid,dist,target,slack[docs[i]->slackid],a[i],alphaslack[docs[i]->slackid]);
-	if(verbosity>=5) printf(" (joint %f)\n",(*maxdiff));
-      }
-    }
-    /* Count how long a variable was at lower/upper bound (and optimal).*/
-    /* Variables, which were at the bound and optimal for a long */
-    /* time are unlikely to become support vectors. In case our */
-    /* cache is filled up, those variables are excluded to save */
-    /* kernel evaluations. (See chapter 'Shrinking').*/ 
-    if((a[i]>(learn_parm->epsilon_a)) 
-       && (a[i]<ex_c)) { 
-      last_suboptimal_at[docs[i]->slackid]=iteration;  /* not at bound */
-    }
-    else if((a[i]<=(learn_parm->epsilon_a)) 
-	    && (dist < (target+learn_parm->epsilon_shrink))) {
-      last_suboptimal_at[docs[i]->slackid]=iteration;  /* not likely optimal */
-    }
-    else if((a[i]>=ex_c)
-	    && (slack[docs[i]->slackid] < learn_parm->epsilon_shrink))  { 
-      last_suboptimal_at[docs[i]->slackid]=iteration;  /* not likely optimal */
-    }
-  }   
-  /* termination criterion */
-  if((!retrain) && ((*maxdiff) > learn_parm->epsilon_crit)) {  
-    retrain=1;
-  }
-  return(retrain);
-}
-
-void compute_shared_slacks(DOC **docs, long int *label, 
-			   double *a, double *lin, 
-			   double *c, long int *active2dnum,
-			   LEARN_PARM *learn_parm, 
-			   double *slack, double *alphaslack)
-     /* compute the value of shared slacks and the joint alphas */
-{
-  long jj,i;
-  double dist,target;
-
-  for(jj=0;(i=active2dnum[jj])>=0;jj++) { /* clear slack variables */
-    slack[docs[i]->slackid]=0.0;
-    alphaslack[docs[i]->slackid]=0.0;
-  }
-  for(jj=0;(i=active2dnum[jj])>=0;jj++) { /* recompute slack variables */
-    dist=(lin[i])*(double)label[i];
-    target=-(learn_parm->eps-(double)label[i]*c[i]);
-    if((target-dist) > slack[docs[i]->slackid])
-      slack[docs[i]->slackid]=target-dist;
-    alphaslack[docs[i]->slackid]+=a[i];
-  }
-}
-
-
-long identify_inconsistent(double *a, long int *label, 
-			   long int *unlabeled, long int totdoc, 
-			   LEARN_PARM *learn_parm, 
-			   long int *inconsistentnum, long int *inconsistent)
-{
-  long i,retrain;
-
-  /* Throw out examples with multipliers at upper bound. This */
-  /* corresponds to the -i 1 option. */
-  /* ATTENTION: this is just a heuristic for finding a close */
-  /*            to minimum number of examples to exclude to */
-  /*            make the problem separable with desired margin */
-  retrain=0;
-  for(i=0;i<totdoc;i++) {
-    if((!inconsistent[i]) && (!unlabeled[i]) 
-       && (a[i]>=(learn_parm->svm_cost[i]-learn_parm->epsilon_a))) { 
-	(*inconsistentnum)++;
-	inconsistent[i]=1;  /* never choose again */
-	retrain=2;          /* start over */
-	if(verbosity>=3) {
-	  printf("inconsistent(%ld)..",i); fflush(stdout);
-	}
-    }
-  }
-  return(retrain);
-}
-
-long identify_misclassified(double *lin, long int *label, 
-			    long int *unlabeled, long int totdoc, 
-			    MODEL *model, long int *inconsistentnum, 
-			    long int *inconsistent)
-{
-  long i,retrain;
-  double dist;
-
-  /* Throw out misclassified examples. This */
-  /* corresponds to the -i 2 option. */
-  /* ATTENTION: this is just a heuristic for finding a close */
-  /*            to minimum number of examples to exclude to */
-  /*            make the problem separable with desired margin */
-  retrain=0;
-  for(i=0;i<totdoc;i++) {
-    dist=(lin[i]-model->b)*(double)label[i]; /* 'distance' from hyperplane*/  
-    if((!inconsistent[i]) && (!unlabeled[i]) && (dist <= 0)) { 
-	(*inconsistentnum)++;
-	inconsistent[i]=1;  /* never choose again */
-	retrain=2;          /* start over */
-	if(verbosity>=3) {
-	  printf("inconsistent(%ld)..",i); fflush(stdout);
-	}
-    }
-  }
-  return(retrain);
-}
-
-long identify_one_misclassified(double *lin, long int *label, 
-				long int *unlabeled, 
-				long int totdoc, MODEL *model, 
-				long int *inconsistentnum, 
-				long int *inconsistent)
-{
-  long i,retrain,maxex=-1;
-  double dist,maxdist=0;
-
-  /* Throw out the 'most misclassified' example. This */
-  /* corresponds to the -i 3 option. */
-  /* ATTENTION: this is just a heuristic for finding a close */
-  /*            to minimum number of examples to exclude to */
-  /*            make the problem separable with desired margin */
-  retrain=0;
-  for(i=0;i<totdoc;i++) {
-    if((!inconsistent[i]) && (!unlabeled[i])) {
-      dist=(lin[i]-model->b)*(double)label[i];/* 'distance' from hyperplane*/  
-      if(dist<maxdist) {
-	maxdist=dist;
-	maxex=i;
-      }
-    }
-  }
-  if(maxex>=0) {
-    (*inconsistentnum)++;
-    inconsistent[maxex]=1;  /* never choose again */
-    retrain=2;          /* start over */
-    if(verbosity>=3) {
-      printf("inconsistent(%ld)..",i); fflush(stdout);
-    }
-  }
-  return(retrain);
-}
-
-void update_linear_component(DOC **docs, long int *label, 
-			     long int *active2dnum, double *a, 
-			     double *a_old, long int *working2dnum, 
-			     long int totdoc, long int totwords, 
-			     KERNEL_PARM *kernel_parm, 
-			     KERNEL_CACHE *kernel_cache, 
-			     double *lin, CFLOAT *aicache, double *weights)
-     /* keep track of the linear component */
-     /* lin of the gradient etc. by updating */
-     /* based on the change of the variables */
-     /* in the current working set */
-{
-  register long i,ii,j,jj;
-  register double tec;
-  SVECTOR *f;
-
-  if(kernel_parm->kernel_type==0) { /* special linear case */
-    clear_vector_n(weights,totwords);
-    for(ii=0;(i=working2dnum[ii])>=0;ii++) {
-      if(a[i] != a_old[i]) {
-	for(f=docs[i]->fvec;f;f=f->next)  
-	  add_vector_ns(weights,f,
-			f->factor*((a[i]-a_old[i])*(double)label[i]));
-      }
-    }
-    for(jj=0;(j=active2dnum[jj])>=0;jj++) {
-      for(f=docs[j]->fvec;f;f=f->next)  
-	lin[j]+=f->factor*sprod_ns(weights,f);
-    }
-  }
-  else {                            /* general case */
-    for(jj=0;(i=working2dnum[jj])>=0;jj++) {
-      if(a[i] != a_old[i]) {
-	get_kernel_row(kernel_cache,docs,i,totdoc,active2dnum,aicache,
-		       kernel_parm);
-	for(ii=0;(j=active2dnum[ii])>=0;ii++) {
-	  tec=aicache[j];
-	  lin[j]+=(((a[i]*tec)-(a_old[i]*tec))*(double)label[i]);
-	}
-      }
-    }
-  }
-}
-
-
-long incorporate_unlabeled_examples(MODEL *model, long int *label, 
-				    long int *inconsistent, 
-				    long int *unlabeled, 
-				    double *a, double *lin, 
-				    long int totdoc, double *selcrit, 
-				    long int *select, long int *key, 
-				    long int transductcycle, 
-				    KERNEL_PARM *kernel_parm, 
-				    LEARN_PARM *learn_parm)
-{
-  long i,j,k,j1,j2,j3,j4,unsupaddnum1=0,unsupaddnum2=0;
-  long pos,neg,upos,uneg,orgpos,orgneg,nolabel,newpos,newneg,allunlab;
-  double dist,model_length,posratio,negratio;
-  long check_every=2;
-  double loss;
-  static double switchsens=0.0,switchsensorg=0.0;
-  double umin,umax,sumalpha;
-  long imin=0,imax=0;
-  static long switchnum=0;
-
-  switchsens/=1.2;
-
-  /* assumes that lin[] is up to date -> no inactive vars */
-
-  orgpos=0;
-  orgneg=0;
-  newpos=0;
-  newneg=0;
-  nolabel=0;
-  allunlab=0;
-  for(i=0;i<totdoc;i++) {
-    if(!unlabeled[i]) {
-      if(label[i] > 0) {
-	orgpos++;
-      }
-      else {
-	orgneg++;
-      }
-    }
-    else {
-      allunlab++;
-      if(unlabeled[i]) {
-	if(label[i] > 0) {
-	  newpos++;
-	}
-	else if(label[i] < 0) {
-	  newneg++;
-	}
-      }
-    }
-    if(label[i]==0) {
-      nolabel++;
-    }
-  }
-
-  if(learn_parm->transduction_posratio >= 0) {
-    posratio=learn_parm->transduction_posratio;
-  }
-  else {
-    posratio=(double)orgpos/(double)(orgpos+orgneg); /* use ratio of pos/neg */
-  }                                                  /* in training data */
-  negratio=1.0-posratio;
-
-  learn_parm->svm_costratio=1.0;                     /* global */
-  if(posratio>0) {
-    learn_parm->svm_costratio_unlab=negratio/posratio;
-  }
-  else {
-    learn_parm->svm_costratio_unlab=1.0;
-  }
-  
-  pos=0;
-  neg=0;
-  upos=0;
-  uneg=0;
-  for(i=0;i<totdoc;i++) {
-    dist=(lin[i]-model->b);  /* 'distance' from hyperplane*/
-    if(dist>0) {
-      pos++;
-    }
-    else {
-      neg++;
-    }
-    if(unlabeled[i]) {
-      if(dist>0) {
-	upos++;
-      }
-      else {
-	uneg++;
-      }
-    }
-    if((!unlabeled[i]) && (a[i]>(learn_parm->svm_cost[i]-learn_parm->epsilon_a))) {
-      /*      printf("Ubounded %ld (class %ld, unlabeled %ld)\n",i,label[i],unlabeled[i]); */
-    }
-  }
-  if(verbosity>=2) {
-    printf("POS=%ld, ORGPOS=%ld, ORGNEG=%ld\n",pos,orgpos,orgneg);
-    printf("POS=%ld, NEWPOS=%ld, NEWNEG=%ld\n",pos,newpos,newneg);
-    printf("pos ratio = %f (%f).\n",(double)(upos)/(double)(allunlab),posratio);
-    fflush(stdout);
-  }
-
-  if(transductcycle == 0) {
-    j1=0; 
-    j2=0;
-    j4=0;
-    for(i=0;i<totdoc;i++) {
-      dist=(lin[i]-model->b);  /* 'distance' from hyperplane*/
-      if((label[i]==0) && (unlabeled[i])) {
-	selcrit[j4]=dist;
-	key[j4]=i;
-	j4++;
-      }
-    }
-    unsupaddnum1=0;	
-    unsupaddnum2=0;	
-    select_top_n(selcrit,j4,select,(long)(allunlab*posratio+0.5));
-    for(k=0;(k<(long)(allunlab*posratio+0.5));k++) {
-      i=key[select[k]];
-      label[i]=1;
-      unsupaddnum1++;	
-      j1++;
-    }
-    for(i=0;i<totdoc;i++) {
-      if((label[i]==0) && (unlabeled[i])) {
-	label[i]=-1;
-	j2++;
-	unsupaddnum2++;
-      }
-    }
-    for(i=0;i<totdoc;i++) {  /* set upper bounds on vars */
-      if(unlabeled[i]) {
-	if(label[i] == 1) {
-	  learn_parm->svm_cost[i]=learn_parm->svm_c*
-	    learn_parm->svm_costratio_unlab*learn_parm->svm_unlabbound;
-	}
-	else if(label[i] == -1) {
-	  learn_parm->svm_cost[i]=learn_parm->svm_c*
-	    learn_parm->svm_unlabbound;
-	}
-      }
-    }
-    if(verbosity>=1) {
-      /* printf("costratio %f, costratio_unlab %f, unlabbound %f\n",
-	 learn_parm->svm_costratio,learn_parm->svm_costratio_unlab,
-	 learn_parm->svm_unlabbound); */
-      printf("Classifying unlabeled data as %ld POS / %ld NEG.\n",
-	     unsupaddnum1,unsupaddnum2); 
-      fflush(stdout);
-    }
-    if(verbosity >= 1) 
-      printf("Retraining.");
-    if(verbosity >= 2) printf("\n");
-    return((long)3);
-  }
-  if((transductcycle % check_every) == 0) {
-    if(verbosity >= 1) 
-      printf("Retraining.");
-    if(verbosity >= 2) printf("\n");
-    j1=0;
-    j2=0;
-    unsupaddnum1=0;
-    unsupaddnum2=0;
-    for(i=0;i<totdoc;i++) {
-      if((unlabeled[i] == 2)) {
-	unlabeled[i]=1;
-	label[i]=1;
-	j1++;
-	unsupaddnum1++;
-      }
-      else if((unlabeled[i] == 3)) {
-	unlabeled[i]=1;
-	label[i]=-1;
-	j2++;
-	unsupaddnum2++;
-      }
-    }
-    for(i=0;i<totdoc;i++) {  /* set upper bounds on vars */
-      if(unlabeled[i]) {
-	if(label[i] == 1) {
-	  learn_parm->svm_cost[i]=learn_parm->svm_c*
-	    learn_parm->svm_costratio_unlab*learn_parm->svm_unlabbound;
-	}
-	else if(label[i] == -1) {
-	  learn_parm->svm_cost[i]=learn_parm->svm_c*
-	    learn_parm->svm_unlabbound;
-	}
-      }
-    }
-
-    if(verbosity>=2) {
-      /* printf("costratio %f, costratio_unlab %f, unlabbound %f\n",
-	     learn_parm->svm_costratio,learn_parm->svm_costratio_unlab,
-	     learn_parm->svm_unlabbound); */
-      printf("%ld positive -> Added %ld POS / %ld NEG unlabeled examples.\n",
-	     upos,unsupaddnum1,unsupaddnum2); 
-      fflush(stdout);
-    }
-
-    if(learn_parm->svm_unlabbound == 1) {
-      learn_parm->epsilon_crit=0.001; /* do the last run right */
-    }
-    else {
-      learn_parm->epsilon_crit=0.01; /* otherwise, no need to be so picky */
-    }
-
-    return((long)3);
-  }
-  else if(((transductcycle % check_every) < check_every)) { 
-    model_length=0;
-    sumalpha=0;
-    loss=0;
-    for(i=0;i<totdoc;i++) {
-      model_length+=a[i]*label[i]*lin[i];
-      sumalpha+=a[i];
-      dist=(lin[i]-model->b);  /* 'distance' from hyperplane*/
-      if((label[i]*dist)<(1.0-learn_parm->epsilon_crit)) {
-	loss+=(1.0-(label[i]*dist))*learn_parm->svm_cost[i]; 
-      }
-    }
-    model_length=sqrt(model_length); 
-    if(verbosity>=2) {
-      printf("Model-length = %f (%f), loss = %f, objective = %f\n",
-	     model_length,sumalpha,loss,loss+0.5*model_length*model_length);
-      fflush(stdout);
-    }
-    j1=0;
-    j2=0;
-    j3=0;
-    j4=0;
-    unsupaddnum1=0;	
-    unsupaddnum2=0;	
-    umin=99999;
-    umax=-99999;
-    j4=1;
-    while(j4) {
-      umin=99999;
-      umax=-99999;
-      for(i=0;(i<totdoc);i++) { 
-	dist=(lin[i]-model->b);  
-	if((label[i]>0) && (unlabeled[i]) && (!inconsistent[i]) 
-	   && (dist<umin)) {
-	  umin=dist;
-	  imin=i;
-	}
-	if((label[i]<0) && (unlabeled[i])  && (!inconsistent[i]) 
-	   && (dist>umax)) {
-	  umax=dist;
-	  imax=i;
-	}
-      }
-      if((umin < (umax+switchsens-1E-4))) {
-	j1++;
-	j2++;
-	unsupaddnum1++;	
-	unlabeled[imin]=3;
-	inconsistent[imin]=1;
-	unsupaddnum2++;	
-	unlabeled[imax]=2;
-	inconsistent[imax]=1;
-      }
-      else
-	j4=0;
-      j4=0;
-    }
-    for(j=0;(j<totdoc);j++) {
-      if(unlabeled[j] && (!inconsistent[j])) {
-	if(label[j]>0) {
-	  unlabeled[j]=2;
-	}
-	else if(label[j]<0) {
-	  unlabeled[j]=3;
-	}
-	/* inconsistent[j]=1; */
-	j3++;
-      }
-    }
-    switchnum+=unsupaddnum1+unsupaddnum2;
-
-    /* stop and print out current margin
-       printf("switchnum %ld %ld\n",switchnum,kernel_parm->poly_degree);
-       if(switchnum == 2*kernel_parm->poly_degree) {
-       learn_parm->svm_unlabbound=1;
-       }
-       */
-
-    if((!unsupaddnum1) && (!unsupaddnum2)) {
-      if((learn_parm->svm_unlabbound>=1) && ((newpos+newneg) == allunlab)) {
-	for(j=0;(j<totdoc);j++) {
-	  inconsistent[j]=0;
-	  if(unlabeled[j]) unlabeled[j]=1;
-	}
-	write_prediction(learn_parm->predfile,model,lin,a,unlabeled,label,
-			 totdoc,learn_parm);  
-	if(verbosity>=1)
-	  printf("Number of switches: %ld\n",switchnum);
-	return((long)0);
-      }
-      switchsens=switchsensorg;
-      learn_parm->svm_unlabbound*=1.5;
-      if(learn_parm->svm_unlabbound>1) {
-	learn_parm->svm_unlabbound=1;
-      }
-      model->at_upper_bound=0; /* since upper bound increased */
-      if(verbosity>=1) 
-	printf("Increasing influence of unlabeled examples to %f%% .",
-	       learn_parm->svm_unlabbound*100.0);
-    }
-    else if(verbosity>=1) {
-      printf("%ld positive -> Switching labels of %ld POS / %ld NEG unlabeled examples.",
-	     upos,unsupaddnum1,unsupaddnum2); 
-      fflush(stdout);
-    }
-
-    if(verbosity >= 2) printf("\n");
-    
-    learn_parm->epsilon_crit=0.5; /* don't need to be so picky */
-
-    for(i=0;i<totdoc;i++) {  /* set upper bounds on vars */
-      if(unlabeled[i]) {
-	if(label[i] == 1) {
-	  learn_parm->svm_cost[i]=learn_parm->svm_c*
-	    learn_parm->svm_costratio_unlab*learn_parm->svm_unlabbound;
-	}
-	else if(label[i] == -1) {
-	  learn_parm->svm_cost[i]=learn_parm->svm_c*
-	    learn_parm->svm_unlabbound;
-	}
-      }
-    }
-
-    return((long)2);
-  }
-
-  return((long)0); 
-}
-
-/*************************** Working set selection ***************************/
-
-long select_next_qp_subproblem_grad(long int *label, 
-				    long int *unlabeled, 
-				    double *a, double *lin, 
-				    double *c, long int totdoc, 
-				    long int qp_size, 
-				    LEARN_PARM *learn_parm, 
-				    long int *inconsistent, 
-				    long int *active2dnum, 
-				    long int *working2dnum, 
-				    double *selcrit, 
-				    long int *select, 
-				    KERNEL_CACHE *kernel_cache, 
-				    long int cache_only,
-				    long int *key, long int *chosen)
-     /* Use the feasible direction approach to select the next
-      qp-subproblem (see chapter 'Selecting a good working set'). If
-      'cache_only' is true, then the variables are selected only among
-      those for which the kernel evaluations are cached. */
-{
-  long choosenum,i,j,k,activedoc,inum,valid;
-  double s;
-
-  for(inum=0;working2dnum[inum]>=0;inum++); /* find end of index */
-  choosenum=0;
-  activedoc=0;
-  for(i=0;(j=active2dnum[i])>=0;i++) {
-    s=-label[j];
-    if(kernel_cache && cache_only) 
-      valid=(kernel_cache->index[j]>=0);
-    else
-      valid=1;
-    if(valid
-       && (!((a[j]<=(0+learn_parm->epsilon_a)) && (s<0)))
-       && (!((a[j]>=(learn_parm->svm_cost[j]-learn_parm->epsilon_a)) 
-	     && (s>0)))
-       && (!chosen[j]) 
-       && (label[j])
-       && (!inconsistent[j]))
-      {
-      selcrit[activedoc]=(double)label[j]*(learn_parm->eps-(double)label[j]*c[j]+(double)label[j]*lin[j]);
-      /*      selcrit[activedoc]=(double)label[j]*(-1.0+(double)label[j]*lin[j]); */
-      key[activedoc]=j;
-      activedoc++;
-    }
-  }
-  select_top_n(selcrit,activedoc,select,(long)(qp_size/2));
-  for(k=0;(choosenum<(qp_size/2)) && (k<(qp_size/2)) && (k<activedoc);k++) {
-    /* if(learn_parm->biased_hyperplane || (selcrit[select[k]] > 0)) { */
-      i=key[select[k]];
-      chosen[i]=1;
-      working2dnum[inum+choosenum]=i;
-      choosenum+=1;
-      if(kernel_cache)
-	kernel_cache_touch(kernel_cache,i); /* make sure it does not get
-					       kicked out of cache */
-      /* } */
-  }
-
-  activedoc=0;
-  for(i=0;(j=active2dnum[i])>=0;i++) {
-    s=label[j];
-    if(kernel_cache && cache_only) 
-      valid=(kernel_cache->index[j]>=0);
-    else
-      valid=1;
-    if(valid
-       && (!((a[j]<=(0+learn_parm->epsilon_a)) && (s<0)))
-       && (!((a[j]>=(learn_parm->svm_cost[j]-learn_parm->epsilon_a)) 
-	     && (s>0))) 
-       && (!chosen[j]) 
-       && (label[j])
-       && (!inconsistent[j])) 
-      {
-      selcrit[activedoc]=-(double)label[j]*(learn_parm->eps-(double)label[j]*c[j]+(double)label[j]*lin[j]);
-      /*  selcrit[activedoc]=-(double)(label[j]*(-1.0+(double)label[j]*lin[j])); */
-      key[activedoc]=j;
-      activedoc++;
-    }
-  }
-  select_top_n(selcrit,activedoc,select,(long)(qp_size/2));
-  for(k=0;(choosenum<qp_size) && (k<(qp_size/2)) && (k<activedoc);k++) {
-    /* if(learn_parm->biased_hyperplane || (selcrit[select[k]] > 0)) { */
-      i=key[select[k]];
-      chosen[i]=1;
-      working2dnum[inum+choosenum]=i;
-      choosenum+=1;
-      if(kernel_cache)
-	kernel_cache_touch(kernel_cache,i); /* make sure it does not get
-					       kicked out of cache */
-      /* } */
-  } 
-  working2dnum[inum+choosenum]=-1; /* complete index */
-  return(choosenum);
-}
-
-long select_next_qp_subproblem_rand(long int *label, 
-				    long int *unlabeled, 
-				    double *a, double *lin, 
-				    double *c, long int totdoc, 
-				    long int qp_size, 
-				    LEARN_PARM *learn_parm, 
-				    long int *inconsistent, 
-				    long int *active2dnum, 
-				    long int *working2dnum, 
-				    double *selcrit, 
-				    long int *select, 
-				    KERNEL_CACHE *kernel_cache, 
-				    long int *key, 
-				    long int *chosen, 
-				    long int iteration)
-/* Use the feasible direction approach to select the next
-   qp-subproblem (see section 'Selecting a good working set'). Chooses
-   a feasible direction at (pseudo) random to help jump over numerical
-   problem. */
-{
-  long choosenum,i,j,k,activedoc,inum;
-  double s;
-
-  for(inum=0;working2dnum[inum]>=0;inum++); /* find end of index */
-  choosenum=0;
-  activedoc=0;
-  for(i=0;(j=active2dnum[i])>=0;i++) {
-    s=-label[j];
-    if((!((a[j]<=(0+learn_parm->epsilon_a)) && (s<0)))
-       && (!((a[j]>=(learn_parm->svm_cost[j]-learn_parm->epsilon_a)) 
-	     && (s>0)))
-       && (!inconsistent[j]) 
-       && (label[j])
-       && (!chosen[j])) {
-      selcrit[activedoc]=(j+iteration) % totdoc;
-      key[activedoc]=j;
-      activedoc++;
-    }
-  }
-  select_top_n(selcrit,activedoc,select,(long)(qp_size/2));
-  for(k=0;(choosenum<(qp_size/2)) && (k<(qp_size/2)) && (k<activedoc);k++) {
-    i=key[select[k]];
-    chosen[i]=1;
-    working2dnum[inum+choosenum]=i;
-    choosenum+=1;
-    kernel_cache_touch(kernel_cache,i); /* make sure it does not get kicked */
-                                        /* out of cache */
-  }
-
-  activedoc=0;
-  for(i=0;(j=active2dnum[i])>=0;i++) {
-    s=label[j];
-    if((!((a[j]<=(0+learn_parm->epsilon_a)) && (s<0)))
-       && (!((a[j]>=(learn_parm->svm_cost[j]-learn_parm->epsilon_a)) 
-	     && (s>0))) 
-       && (!inconsistent[j]) 
-       && (label[j])
-       && (!chosen[j])) {
-      selcrit[activedoc]=(j+iteration) % totdoc;
-      key[activedoc]=j;
-      activedoc++;
-    }
-  }
-  select_top_n(selcrit,activedoc,select,(long)(qp_size/2));
-  for(k=0;(choosenum<qp_size) && (k<(qp_size/2)) && (k<activedoc);k++) {
-    i=key[select[k]];
-    chosen[i]=1;
-    working2dnum[inum+choosenum]=i;
-    choosenum+=1;
-    kernel_cache_touch(kernel_cache,i); /* make sure it does not get kicked */
-                                        /* out of cache */
-  } 
-  working2dnum[inum+choosenum]=-1; /* complete index */
-  return(choosenum);
-}
-
-long select_next_qp_slackset(DOC **docs, long int *label, 
-			     double *a, double *lin, 
-			     double *slack, double *alphaslack, 
-			     double *c,
-			     LEARN_PARM *learn_parm, 
-			     long int *active2dnum, double *maxviol)
-     /* returns the slackset with the largest internal violation */
-{
-  long i,ii,maxdiffid;
-  double dist,target,maxdiff,ex_c;
-
-  maxdiff=0;
-  maxdiffid=0;
-  for(ii=0;(i=active2dnum[ii])>=0;ii++) {
-    ex_c=learn_parm->svm_c-learn_parm->epsilon_a;
-    if(alphaslack[docs[i]->slackid] >= ex_c) {
-      dist=(lin[i])*(double)label[i]+slack[docs[i]->slackid]; /* distance */
-      target=-(learn_parm->eps-(double)label[i]*c[i]); /* rhs of constraint */
-      if((a[i]>learn_parm->epsilon_a) && (dist > target)) {
-	if((dist-target)>maxdiff) { /* largest violation */
-	  maxdiff=dist-target;
-	  maxdiffid=docs[i]->slackid;
-	}
-      }
-    }
-  }
-  (*maxviol)=maxdiff;
-  return(maxdiffid);
-}
-
-
-void select_top_n(double *selcrit, long int range, long int *select, 
-		  long int n)
-{
-  register long i,j;
-
-  for(i=0;(i<n) && (i<range);i++) { /* Initialize with the first n elements */
-    for(j=i;j>=0;j--) {
-      if((j>0) && (selcrit[select[j-1]]<selcrit[i])){
-	select[j]=select[j-1];
-      }
-      else {
-	select[j]=i;
-	j=-1;
-      }
-    }
-  }
-  if(n>0) {
-    for(i=n;i<range;i++) {  
-      if(selcrit[i]>selcrit[select[n-1]]) {
-	for(j=n-1;j>=0;j--) {
-	  if((j>0) && (selcrit[select[j-1]]<selcrit[i])) {
-	    select[j]=select[j-1];
-	  }
-	  else {
-	    select[j]=i;
-	    j=-1;
-	  }
-	}
-      }
-    }
-  }
-}      
-      
-
-/******************************** Shrinking  *********************************/
-
-void init_shrink_state(SHRINK_STATE *shrink_state, long int totdoc, 
-		       long int maxhistory)
-{
-  long i;
-
-  shrink_state->deactnum=0;
-  shrink_state->active = (long *)my_malloc(sizeof(long)*totdoc);
-  shrink_state->inactive_since = (long *)my_malloc(sizeof(long)*totdoc);
-  shrink_state->a_history = (double **)my_malloc(sizeof(double *)*maxhistory);
-  shrink_state->maxhistory=maxhistory;
-  shrink_state->last_lin = (double *)my_malloc(sizeof(double)*totdoc);
-  shrink_state->last_a = (double *)my_malloc(sizeof(double)*totdoc);
-
-  for(i=0;i<totdoc;i++) { 
-    shrink_state->active[i]=1;
-    shrink_state->inactive_since[i]=0;
-    shrink_state->last_a[i]=0;
-    shrink_state->last_lin[i]=0;
-  }
-}
-
-void shrink_state_cleanup(SHRINK_STATE *shrink_state)
-{
-  free(shrink_state->active);
-  free(shrink_state->inactive_since);
-  if(shrink_state->deactnum > 0) 
-    free(shrink_state->a_history[shrink_state->deactnum-1]);
-  free(shrink_state->a_history);
-  free(shrink_state->last_a);
-  free(shrink_state->last_lin);
-}
-
-long shrink_problem(DOC **docs,
-		    LEARN_PARM *learn_parm, 
-		    SHRINK_STATE *shrink_state, 
-		    KERNEL_PARM *kernel_parm,
-		    long int *active2dnum, 
-		    long int *last_suboptimal_at, 
-		    long int iteration, 
-		    long int totdoc, 
-		    long int minshrink, 
-		    double *a, 
-		    long int *inconsistent)
-     /* Shrink some variables away.  Do the shrinking only if at least
-        minshrink variables can be removed. */
-{
-  long i,ii,change,activenum,lastiter;
-  double *a_old;
-  
-  activenum=0;
-  change=0;
-  for(ii=0;active2dnum[ii]>=0;ii++) {
-    i=active2dnum[ii];
-    activenum++;
-    if(learn_parm->sharedslack)
-      lastiter=last_suboptimal_at[docs[i]->slackid];
-    else
-      lastiter=last_suboptimal_at[i];
-    if(((iteration-lastiter) > learn_parm->svm_iter_to_shrink) 
-       || (inconsistent[i])) {
-      change++;
-    }
-  }
-  if((change>=minshrink) /* shrink only if sufficiently many candidates */
-     && (shrink_state->deactnum<shrink_state->maxhistory)) { /* and enough memory */
-    /* Shrink problem by removing those variables which are */
-    /* optimal at a bound for a minimum number of iterations */
-    if(verbosity>=2) {
-      printf(" Shrinking..."); fflush(stdout);
-    }
-    if(kernel_parm->kernel_type != LINEAR) { /*  non-linear case save alphas */
-      a_old=(double *)my_malloc(sizeof(double)*totdoc);
-      shrink_state->a_history[shrink_state->deactnum]=a_old;
-      for(i=0;i<totdoc;i++) {
-	a_old[i]=a[i];
-      }
-    }
-    for(ii=0;active2dnum[ii]>=0;ii++) {
-      i=active2dnum[ii];
-      if(learn_parm->sharedslack)
-	lastiter=last_suboptimal_at[docs[i]->slackid];
-      else
-	lastiter=last_suboptimal_at[i];
-      if(((iteration-lastiter) > learn_parm->svm_iter_to_shrink) 
-	 || (inconsistent[i])) {
-	shrink_state->active[i]=0;
-	shrink_state->inactive_since[i]=shrink_state->deactnum;
-      }
-    }
-    activenum=compute_index(shrink_state->active,totdoc,active2dnum);
-    shrink_state->deactnum++;
-    if(kernel_parm->kernel_type == LINEAR) { 
-      shrink_state->deactnum=0;
-    }
-    if(verbosity>=2) {
-      printf("done.\n"); fflush(stdout);
-      printf(" Number of inactive variables = %ld\n",totdoc-activenum);
-    }
-  }
-  return(activenum);
-} 
-
-
-void reactivate_inactive_examples(long int *label, 
-				  long int *unlabeled, 
-				  double *a, 
-				  SHRINK_STATE *shrink_state, 
-				  double *lin, 
-				  double *c, 
-				  long int totdoc, 
-				  long int totwords, 
-				  long int iteration, 
-				  LEARN_PARM *learn_parm, 
-				  long int *inconsistent, 
-				  DOC **docs, 
-				  KERNEL_PARM *kernel_parm, 
-				  KERNEL_CACHE *kernel_cache, 
-				  MODEL *model, 
-				  CFLOAT *aicache, 
-				  double *weights, 
-				  double *maxdiff)
-     /* Make all variables active again which had been removed by
-        shrinking. */
-     /* Computes lin for those variables from scratch. */
-{
-  register long i,j,ii,jj,t,*changed2dnum,*inactive2dnum;
-  long *changed,*inactive;
-  register double kernel_val,*a_old,dist;
-  double ex_c,target;
-  SVECTOR *f;
-
-  if(kernel_parm->kernel_type == LINEAR) { /* special linear case */
-    a_old=shrink_state->last_a;    
-    clear_vector_n(weights,totwords);
-    for(i=0;i<totdoc;i++) {
-      if(a[i] != a_old[i]) {
-	for(f=docs[i]->fvec;f;f=f->next)  
-	  add_vector_ns(weights,f,
-			f->factor*((a[i]-a_old[i])*(double)label[i]));
-	a_old[i]=a[i];
-      }
-    }
-    for(i=0;i<totdoc;i++) {
-      if(!shrink_state->active[i]) {
-	for(f=docs[i]->fvec;f;f=f->next)  
-	  lin[i]=shrink_state->last_lin[i]+f->factor*sprod_ns(weights,f);
-      }
-      shrink_state->last_lin[i]=lin[i];
-    }
-  }
-  else {
-    changed=(long *)my_malloc(sizeof(long)*totdoc);
-    changed2dnum=(long *)my_malloc(sizeof(long)*(totdoc+11));
-    inactive=(long *)my_malloc(sizeof(long)*totdoc);
-    inactive2dnum=(long *)my_malloc(sizeof(long)*(totdoc+11));
-    for(t=shrink_state->deactnum-1;(t>=0) && shrink_state->a_history[t];t--) {
-      if(verbosity>=2) {
-	printf("%ld..",t); fflush(stdout);
-      }
-      a_old=shrink_state->a_history[t];    
-      for(i=0;i<totdoc;i++) {
-	inactive[i]=((!shrink_state->active[i]) 
-		     && (shrink_state->inactive_since[i] == t));
-	changed[i]= (a[i] != a_old[i]);
-      }
-      compute_index(inactive,totdoc,inactive2dnum);
-      compute_index(changed,totdoc,changed2dnum);
-      
-      for(ii=0;(i=changed2dnum[ii])>=0;ii++) {
-	get_kernel_row(kernel_cache,docs,i,totdoc,inactive2dnum,aicache,
-		       kernel_parm);
-	for(jj=0;(j=inactive2dnum[jj])>=0;jj++) {
-	  kernel_val=aicache[j];
-	  lin[j]+=(((a[i]*kernel_val)-(a_old[i]*kernel_val))*(double)label[i]);
-	}
-      }
-    }
-    free(changed);
-    free(changed2dnum);
-    free(inactive);
-    free(inactive2dnum);
-  }
-  (*maxdiff)=0;
-  for(i=0;i<totdoc;i++) {
-    shrink_state->inactive_since[i]=shrink_state->deactnum-1;
-    if(!inconsistent[i]) {
-      dist=(lin[i]-model->b)*(double)label[i];
-      target=-(learn_parm->eps-(double)label[i]*c[i]);
-      ex_c=learn_parm->svm_cost[i]-learn_parm->epsilon_a;
-      if((a[i]>learn_parm->epsilon_a) && (dist > target)) {
-	if((dist-target)>(*maxdiff))  /* largest violation */
-	  (*maxdiff)=dist-target;
-      }
-      else if((a[i]<ex_c) && (dist < target)) {
-	if((target-dist)>(*maxdiff))  /* largest violation */
-	  (*maxdiff)=target-dist;
-      }
-      if((a[i]>(0+learn_parm->epsilon_a)) 
-	 && (a[i]<ex_c)) { 
-	shrink_state->active[i]=1;                         /* not at bound */
-      }
-      else if((a[i]<=(0+learn_parm->epsilon_a)) && (dist < (target+learn_parm->epsilon_shrink))) {
-	shrink_state->active[i]=1;
-      }
-      else if((a[i]>=ex_c)
-	      && (dist > (target-learn_parm->epsilon_shrink))) {
-	shrink_state->active[i]=1;
-      }
-      else if(learn_parm->sharedslack) { /* make all active when sharedslack */
-	shrink_state->active[i]=1;
-      }
-    }
-  }
-  if(kernel_parm->kernel_type != LINEAR) { /* update history for non-linear */
-    for(i=0;i<totdoc;i++) {
-      (shrink_state->a_history[shrink_state->deactnum-1])[i]=a[i];
-    }
-    for(t=shrink_state->deactnum-2;(t>=0) && shrink_state->a_history[t];t--) {
-      free(shrink_state->a_history[t]);
-      shrink_state->a_history[t]=0;
-    }
-  }
-}
-
-/****************************** Cache handling *******************************/
-
-void get_kernel_row(KERNEL_CACHE *kernel_cache, DOC **docs, 
-		    long int docnum, long int totdoc, 
-		    long int *active2dnum, CFLOAT *buffer, 
-		    KERNEL_PARM *kernel_parm)
-     /* Get's a row of the matrix of kernel values This matrix has the
-      same form as the Hessian, just that the elements are not
-      multiplied by */
-     /* y_i * y_j * a_i * a_j */
-     /* Takes the values from the cache if available. */
-{
-  register long i,j,start;
-  DOC *ex;
-
-  ex=docs[docnum];
-
-  if(kernel_cache->index[docnum] != -1) { /* row is cached? */
-    kernel_cache->lru[kernel_cache->index[docnum]]=kernel_cache->time; /* lru */
-    start=kernel_cache->activenum*kernel_cache->index[docnum];
-    for(i=0;(j=active2dnum[i])>=0;i++) {
-      if(kernel_cache->totdoc2active[j] >= 0) { /* column is cached? */
-	buffer[j]=kernel_cache->buffer[start+kernel_cache->totdoc2active[j]];
-      }
-      else {
-	buffer[j]=(CFLOAT)kernel(kernel_parm,ex,docs[j]);
-      }
-    }
-  }
-  else {
-    for(i=0;(j=active2dnum[i])>=0;i++) {
-      buffer[j]=(CFLOAT)kernel(kernel_parm,ex,docs[j]);
-    }
-  }
-}
-
-
-void cache_kernel_row(KERNEL_CACHE *kernel_cache, DOC **docs, 
-		      long int m, KERNEL_PARM *kernel_parm)
-     /* Fills cache for the row m */
-{
-  register DOC *ex;
-  register long j,k,l;
-  register CFLOAT *cache;
-
-  if(!kernel_cache_check(kernel_cache,m)) {  /* not cached yet*/
-    cache = kernel_cache_clean_and_malloc(kernel_cache,m);
-    if(cache) {
-      l=kernel_cache->totdoc2active[m];
-      ex=docs[m];
-      for(j=0;j<kernel_cache->activenum;j++) {  /* fill cache */
-	k=kernel_cache->active2totdoc[j];
-	if((kernel_cache->index[k] != -1) && (l != -1) && (k != m)) {
-	  cache[j]=kernel_cache->buffer[kernel_cache->activenum
-				       *kernel_cache->index[k]+l];
-	}
-	else {
-	  cache[j]=kernel(kernel_parm,ex,docs[k]);
-	} 
-      }
-    }
-    else {
-      perror("Error: Kernel cache full! => increase cache size");
-    }
-  }
-}
-
- 
-void cache_multiple_kernel_rows(KERNEL_CACHE *kernel_cache, DOC **docs, 
-				long int *key, long int varnum, 
-				KERNEL_PARM *kernel_parm)
-     /* Fills cache for the rows in key */
-{
-  register long i;
-
-  for(i=0;i<varnum;i++) {  /* fill up kernel cache */
-    cache_kernel_row(kernel_cache,docs,key[i],kernel_parm);
-  }
-}
-
- 
-void kernel_cache_shrink(KERNEL_CACHE *kernel_cache, long int totdoc, 
-			 long int numshrink, long int *after)
-     /* Remove numshrink columns in the cache which correspond to
-        examples marked 0 in after. */
-{
-  register long i,j,jj,from=0,to=0,scount;  
-  long *keep;
-
-  if(verbosity>=2) {
-    printf(" Reorganizing cache..."); fflush(stdout);
-  }
-
-  keep=(long *)my_malloc(sizeof(long)*totdoc);
-  for(j=0;j<totdoc;j++) {
-    keep[j]=1;
-  }
-  scount=0;
-  for(jj=0;(jj<kernel_cache->activenum) && (scount<numshrink);jj++) {
-    j=kernel_cache->active2totdoc[jj];
-    if(!after[j]) {
-      scount++;
-      keep[j]=0;
-    }
-  }
-
-  for(i=0;i<kernel_cache->max_elems;i++) {
-    for(jj=0;jj<kernel_cache->activenum;jj++) {
-      j=kernel_cache->active2totdoc[jj];
-      if(!keep[j]) {
-	from++;
-      }
-      else {
-	kernel_cache->buffer[to]=kernel_cache->buffer[from];
-	to++;
-	from++;
-      }
-    }
-  }
-
-  kernel_cache->activenum=0;
-  for(j=0;j<totdoc;j++) {
-    if((keep[j]) && (kernel_cache->totdoc2active[j] != -1)) {
-      kernel_cache->active2totdoc[kernel_cache->activenum]=j;
-      kernel_cache->totdoc2active[j]=kernel_cache->activenum;
-      kernel_cache->activenum++;
-    }
-    else {
-      kernel_cache->totdoc2active[j]=-1;
-    }
-  }
-
-  kernel_cache->max_elems=(long)(kernel_cache->buffsize/kernel_cache->activenum);
-  if(kernel_cache->max_elems>totdoc) {
-    kernel_cache->max_elems=totdoc;
-  }
-
-  free(keep);
-
-  if(verbosity>=2) {
-    printf("done.\n"); fflush(stdout);
-    printf(" Cache-size in rows = %ld\n",kernel_cache->max_elems);
-  }
-}
-
-KERNEL_CACHE *kernel_cache_init(long int totdoc, long int buffsize)
-{
-  long i;
-  KERNEL_CACHE *kernel_cache;
-
-  kernel_cache=(KERNEL_CACHE *)my_malloc(sizeof(KERNEL_CACHE));
-  kernel_cache->index = (long *)my_malloc(sizeof(long)*totdoc);
-  kernel_cache->occu = (long *)my_malloc(sizeof(long)*totdoc);
-  kernel_cache->lru = (long *)my_malloc(sizeof(long)*totdoc);
-  kernel_cache->invindex = (long *)my_malloc(sizeof(long)*totdoc);
-  kernel_cache->active2totdoc = (long *)my_malloc(sizeof(long)*totdoc);
-  kernel_cache->totdoc2active = (long *)my_malloc(sizeof(long)*totdoc);
-  kernel_cache->buffer = (CFLOAT *)my_malloc((size_t)(buffsize)*1024*1024);
-
-  kernel_cache->buffsize=(long)(buffsize/sizeof(CFLOAT)*1024*1024);
-
-  kernel_cache->max_elems=(long)(kernel_cache->buffsize/totdoc);
-  if(kernel_cache->max_elems>totdoc) {
-    kernel_cache->max_elems=totdoc;
-  }
-
-  if(verbosity>=2) {
-    printf(" Cache-size in rows = %ld\n",kernel_cache->max_elems);
-    printf(" Kernel evals so far: %ld\n",kernel_cache_statistic);    
-  }
-
-  kernel_cache->elems=0;   /* initialize cache */
-  for(i=0;i<totdoc;i++) {
-    kernel_cache->index[i]=-1;
-    kernel_cache->lru[i]=0;
-  }
-  for(i=0;i<totdoc;i++) {
-    kernel_cache->occu[i]=0;
-    kernel_cache->invindex[i]=-1;
-  }
-
-  kernel_cache->activenum=totdoc;;
-  for(i=0;i<totdoc;i++) {
-      kernel_cache->active2totdoc[i]=i;
-      kernel_cache->totdoc2active[i]=i;
-  }
-
-  kernel_cache->time=0;  
-
-  return(kernel_cache);
-} 
-
-void kernel_cache_reset_lru(KERNEL_CACHE *kernel_cache)
-{
-  long maxlru=0,k;
-  
-  for(k=0;k<kernel_cache->max_elems;k++) {
-    if(maxlru < kernel_cache->lru[k]) 
-      maxlru=kernel_cache->lru[k];
-  }
-  for(k=0;k<kernel_cache->max_elems;k++) {
-      kernel_cache->lru[k]-=maxlru;
-  }
-}
-
-void kernel_cache_cleanup(KERNEL_CACHE *kernel_cache)
-{
-  free(kernel_cache->index);
-  free(kernel_cache->occu);
-  free(kernel_cache->lru);
-  free(kernel_cache->invindex);
-  free(kernel_cache->active2totdoc);
-  free(kernel_cache->totdoc2active);
-  free(kernel_cache->buffer);
-  free(kernel_cache);
-}
-
-long kernel_cache_malloc(KERNEL_CACHE *kernel_cache)
-{
-  long i;
-
-  if(kernel_cache_space_available(kernel_cache)) {
-    for(i=0;i<kernel_cache->max_elems;i++) {
-      if(!kernel_cache->occu[i]) {
-	kernel_cache->occu[i]=1;
-	kernel_cache->elems++;
-	return(i);
-      }
-    }
-  }
-  return(-1);
-}
-
-void kernel_cache_free(KERNEL_CACHE *kernel_cache, long int i)
-{
-  kernel_cache->occu[i]=0;
-  kernel_cache->elems--;
-}
-
-long kernel_cache_free_lru(KERNEL_CACHE *kernel_cache) 
-     /* remove least recently used cache element */
-{                                     
-  register long k,least_elem=-1,least_time;
-
-  least_time=kernel_cache->time+1;
-  for(k=0;k<kernel_cache->max_elems;k++) {
-    if(kernel_cache->invindex[k] != -1) {
-      if(kernel_cache->lru[k]<least_time) {
-	least_time=kernel_cache->lru[k];
-	least_elem=k;
-      }
-    }
-  }
-  if(least_elem != -1) {
-    kernel_cache_free(kernel_cache,least_elem);
-    kernel_cache->index[kernel_cache->invindex[least_elem]]=-1;
-    kernel_cache->invindex[least_elem]=-1;
-    return(1);
-  }
-  return(0);
-}
-
-
-CFLOAT *kernel_cache_clean_and_malloc(KERNEL_CACHE *kernel_cache, 
-				      long int docnum)
-     /* Get a free cache entry. In case cache is full, the lru element
-        is removed. */
-{
-  long result;
-  if((result = kernel_cache_malloc(kernel_cache)) == -1) {
-    if(kernel_cache_free_lru(kernel_cache)) {
-      result = kernel_cache_malloc(kernel_cache);
-    }
-  }
-  kernel_cache->index[docnum]=result;
-  if(result == -1) {
-    return(0);
-  }
-  kernel_cache->invindex[result]=docnum;
-  kernel_cache->lru[kernel_cache->index[docnum]]=kernel_cache->time; /* lru */
-  return((CFLOAT *)((long)kernel_cache->buffer
-		    +(kernel_cache->activenum*sizeof(CFLOAT)*
-		      kernel_cache->index[docnum])));
-}
-
-long kernel_cache_touch(KERNEL_CACHE *kernel_cache, long int docnum)
-     /* Update lru time to avoid removal from cache. */
-{
-  if(kernel_cache && kernel_cache->index[docnum] != -1) {
-    kernel_cache->lru[kernel_cache->index[docnum]]=kernel_cache->time; /* lru */
-    return(1);
-  }
-  return(0);
-}
-  
-long kernel_cache_check(KERNEL_CACHE *kernel_cache, long int docnum)
-     /* Is that row cached? */
-{
-  return(kernel_cache->index[docnum] != -1);
-}
-  
-long kernel_cache_space_available(KERNEL_CACHE *kernel_cache)
-     /* Is there room for one more row? */
-{
-  return(kernel_cache->elems < kernel_cache->max_elems);
-}
-  
-/************************** Compute estimates ******************************/
-
-void compute_xa_estimates(MODEL *model, long int *label, 
-			  long int *unlabeled, long int totdoc, 
-			  DOC **docs, double *lin, double *a, 
-			  KERNEL_PARM *kernel_parm, 
-			  LEARN_PARM *learn_parm, double *error, 
-			  double *recall, double *precision) 
-     /* Computes xa-estimate of error rate, recall, and precision. See
-        T. Joachims, Estimating the Generalization Performance of an SVM
-        Efficiently, IMCL, 2000. */
-{
-  long i,looerror,looposerror,loonegerror;
-  long totex,totposex;
-  double xi,r_delta,r_delta_sq,sim=0;
-  long *sv2dnum=NULL,*sv=NULL,svnum;
-
-  r_delta=estimate_r_delta(docs,totdoc,kernel_parm); 
-  r_delta_sq=r_delta*r_delta;
-
-  looerror=0;
-  looposerror=0;
-  loonegerror=0;
-  totex=0;
-  totposex=0;
-  svnum=0;
-
-  if(learn_parm->xa_depth > 0) {
-    sv = (long *)my_malloc(sizeof(long)*(totdoc+11));
-    for(i=0;i<totdoc;i++) 
-      sv[i]=0;
-    for(i=1;i<model->sv_num;i++) 
-      if(a[model->supvec[i]->docnum] 
-	 < (learn_parm->svm_cost[model->supvec[i]->docnum]
-	    -learn_parm->epsilon_a)) {
-	sv[model->supvec[i]->docnum]=1;
-	svnum++;
-      }
-    sv2dnum = (long *)my_malloc(sizeof(long)*(totdoc+11));
-    clear_index(sv2dnum);
-    compute_index(sv,totdoc,sv2dnum);
-  }
-
-  for(i=0;i<totdoc;i++) {
-    if(unlabeled[i]) {
-      /* ignore it */
-    }
-    else {
-      xi=1.0-((lin[i]-model->b)*(double)label[i]);
-      if(xi<0) xi=0;
-      if(label[i]>0) {
-	totposex++;
-      }
-      if((learn_parm->rho*a[i]*r_delta_sq+xi) >= 1.0) {
-	if(learn_parm->xa_depth > 0) {  /* makes assumptions */
-	  sim=distribute_alpha_t_greedily(sv2dnum,svnum,docs,a,i,label,
-					  kernel_parm,learn_parm,
-		            (double)((1.0-xi-a[i]*r_delta_sq)/(2.0*a[i])));
-	}
-	if((learn_parm->xa_depth == 0) || 
-	   ((a[i]*kernel(kernel_parm,docs[i],docs[i])+a[i]*2.0*sim+xi) >= 1.0)) { 
-	  looerror++;
-	  if(label[i]>0) {
-	    looposerror++;
-	  }
-	  else {
-	    loonegerror++;
-	  }
-	}
-      }
-      totex++;
-    }
-  }
-
-  (*error)=((double)looerror/(double)totex)*100.0;
-  (*recall)=(1.0-(double)looposerror/(double)totposex)*100.0;
-  (*precision)=(((double)totposex-(double)looposerror)
-    /((double)totposex-(double)looposerror+(double)loonegerror))*100.0;
-
-  free(sv);
-  free(sv2dnum);
-}
-
-
-double distribute_alpha_t_greedily(long int *sv2dnum, long int svnum, 
-				   DOC **docs, double *a, 
-				   long int docnum, 
-				   long int *label, 
-				   KERNEL_PARM *kernel_parm, 
-				   LEARN_PARM *learn_parm, double thresh)
-     /* Experimental Code improving plain XiAlpha Estimates by
-	computing a better bound using a greedy optimzation strategy. */
-{
-  long best_depth=0;
-  long i,j,k,d,skip,allskip;
-  double best,best_val[101],val,init_val_sq,init_val_lin;
-  long best_ex[101];
-  CFLOAT *cache,*trow;
-
-  cache=(CFLOAT *)my_malloc(sizeof(CFLOAT)*learn_parm->xa_depth*svnum);
-  trow = (CFLOAT *)my_malloc(sizeof(CFLOAT)*svnum);
-
-  for(k=0;k<svnum;k++) {
-    trow[k]=kernel(kernel_parm,docs[docnum],docs[sv2dnum[k]]);
-  }
-
-  init_val_sq=0;
-  init_val_lin=0;
-  best=0;
-
-  for(d=0;d<learn_parm->xa_depth;d++) {
-    allskip=1;
-    if(d>=1) {
-      init_val_sq+=cache[best_ex[d-1]+svnum*(d-1)]; 
-      for(k=0;k<d-1;k++) {
-        init_val_sq+=2.0*cache[best_ex[k]+svnum*(d-1)]; 
-      }
-      init_val_lin+=trow[best_ex[d-1]]; 
-    }
-    for(i=0;i<svnum;i++) {
-      skip=0;
-      if(sv2dnum[i] == docnum) skip=1;
-      for(j=0;j<d;j++) {
-	if(i == best_ex[j]) skip=1;
-      }
-
-      if(!skip) {
-	val=init_val_sq;
-	if(kernel_parm->kernel_type == LINEAR) 
-	  val+=docs[sv2dnum[i]]->fvec->twonorm_sq;
-	else
-	  val+=kernel(kernel_parm,docs[sv2dnum[i]],docs[sv2dnum[i]]);
-	for(j=0;j<d;j++) {
-	  val+=2.0*cache[i+j*svnum];
-	}
-	val*=(1.0/(2.0*(d+1.0)*(d+1.0)));
-	val-=((init_val_lin+trow[i])/(d+1.0));
-
-	if(allskip || (val < best_val[d])) {
-	  best_val[d]=val;
-	  best_ex[d]=i;
-	}
-	allskip=0;
-	if(val < thresh) {
-	  i=svnum;
-	  /*	  printf("EARLY"); */
-	}
-      }
-    }
-    if(!allskip) {
-      for(k=0;k<svnum;k++) {
-	  cache[d*svnum+k]=kernel(kernel_parm,
-				  docs[sv2dnum[best_ex[d]]],
-				  docs[sv2dnum[k]]);
-      }
-    }
-    if((!allskip) && ((best_val[d] < best) || (d == 0))) {
-      best=best_val[d];
-      best_depth=d;
-    }
-    if(allskip || (best < thresh)) {
-      d=learn_parm->xa_depth;
-    }
-  }    
-
-  free(cache);
-  free(trow);
-
-  /*  printf("Distribute[%ld](%ld)=%f, ",docnum,best_depth,best); */
-  return(best);
-}
-
-
-void estimate_transduction_quality(MODEL *model, long int *label, 
-				   long int *unlabeled, 
-				   long int totdoc, DOC **docs, double *lin) 
-     /* Loo-bound based on observation that loo-errors must have an
-	equal distribution in both training and test examples, given
-	that the test examples are classified correctly. Compare
-	chapter "Constraints on the Transductive Hyperplane" in my
-	Dissertation. */
-{
-  long i,j,l=0,ulab=0,lab=0,labpos=0,labneg=0,ulabpos=0,ulabneg=0,totulab=0;
-  double totlab=0,totlabpos=0,totlabneg=0,labsum=0,ulabsum=0;
-  double r_delta,r_delta_sq,xi,xisum=0,asum=0;
-
-  r_delta=estimate_r_delta(docs,totdoc,&(model->kernel_parm)); 
-  r_delta_sq=r_delta*r_delta;
-
-  for(j=0;j<totdoc;j++) {
-    if(unlabeled[j]) {
-      totulab++;
-    }
-    else {
-      totlab++;
-      if(label[j] > 0) 
-	totlabpos++;
-      else 
-	totlabneg++;
-    }
-  }
-  for(j=1;j<model->sv_num;j++) {
-    i=model->supvec[j]->docnum;
-    xi=1.0-((lin[i]-model->b)*(double)label[i]);
-    if(xi<0) xi=0;
-
-    xisum+=xi;
-    asum+=fabs(model->alpha[j]);
-    if(unlabeled[i]) {
-      ulabsum+=(fabs(model->alpha[j])*r_delta_sq+xi);
-    }
-    else {
-      labsum+=(fabs(model->alpha[j])*r_delta_sq+xi);
-    }
-    if((fabs(model->alpha[j])*r_delta_sq+xi) >= 1) { 
-      l++;
-      if(unlabeled[model->supvec[j]->docnum]) {
-	ulab++;
-	if(model->alpha[j] > 0) 
-	  ulabpos++;
-	else 
-	  ulabneg++;
-      }
-      else {
-	lab++;
-	if(model->alpha[j] > 0) 
-	  labpos++;
-	else 
-	  labneg++;
-      }
-    }
-  }
-  printf("xacrit>=1: labeledpos=%.5f labeledneg=%.5f default=%.5f\n",(double)labpos/(double)totlab*100.0,(double)labneg/(double)totlab*100.0,(double)totlabpos/(double)(totlab)*100.0);
-  printf("xacrit>=1: unlabelpos=%.5f unlabelneg=%.5f\n",(double)ulabpos/(double)totulab*100.0,(double)ulabneg/(double)totulab*100.0);
-  printf("xacrit>=1: labeled=%.5f unlabled=%.5f all=%.5f\n",(double)lab/(double)totlab*100.0,(double)ulab/(double)totulab*100.0,(double)l/(double)(totdoc)*100.0);
-  printf("xacritsum: labeled=%.5f unlabled=%.5f all=%.5f\n",(double)labsum/(double)totlab*100.0,(double)ulabsum/(double)totulab*100.0,(double)(labsum+ulabsum)/(double)(totdoc)*100.0);
-  printf("r_delta_sq=%.5f xisum=%.5f asum=%.5f\n",r_delta_sq,xisum,asum);
-}
-
-double estimate_margin_vcdim(MODEL *model, double w, double R, 
-			     KERNEL_PARM *kernel_parm) 
-     /* optional: length of model vector in feature space */
-     /* optional: radius of ball containing the data */
-{
-  double h;
-
-  /* follows chapter 5.6.4 in [Vapnik/95] */
-
-  if(w<0) {
-    w=model_length_s(model,kernel_parm);
-  }
-  if(R<0) {
-    R=estimate_sphere(model,kernel_parm); 
-  }
-  h = w*w * R*R +1; 
-  return(h);
-}
-
-double estimate_sphere(MODEL *model, KERNEL_PARM *kernel_parm) 
-                          /* Approximates the radius of the ball containing */
-                          /* the support vectors by bounding it with the */
-{                         /* length of the longest support vector. This is */
-  register long j;        /* pretty good for text categorization, since all */
-  double xlen,maxxlen=0;  /* documents have feature vectors of length 1. It */
-  DOC *nulldoc;           /* assumes that the center of the ball is at the */
-  WORD nullword;          /* origin of the space. */
-
-  nullword.wnum=0;
-  nulldoc=create_example(-2,0,0,0.0,create_svector(&nullword,"",1.0)); 
-
-  for(j=1;j<model->sv_num;j++) {
-    xlen=sqrt(kernel(kernel_parm,model->supvec[j],model->supvec[j])
-	      -2*kernel(kernel_parm,model->supvec[j],nulldoc)
-	      +kernel(kernel_parm,nulldoc,nulldoc));
-    if(xlen>maxxlen) {
-      maxxlen=xlen;
-    }
-  }
-
-  free_example(nulldoc,1);
-  return(maxxlen);
-}
-
-double estimate_r_delta(DOC **docs, long int totdoc, KERNEL_PARM *kernel_parm)
-{
-  long i;
-  double maxxlen,xlen;
-  DOC *nulldoc;           /* assumes that the center of the ball is at the */
-  WORD nullword;          /* origin of the space. */
-
-  nullword.wnum=0;
-  nulldoc=create_example(-2,0,0,0.0,create_svector(&nullword,"",1.0)); 
-
-  maxxlen=0;
-  for(i=0;i<totdoc;i++) {
-    xlen=sqrt(kernel(kernel_parm,docs[i],docs[i])
-	      -2*kernel(kernel_parm,docs[i],nulldoc)
-	      +kernel(kernel_parm,nulldoc,nulldoc));
-    if(xlen>maxxlen) {
-      maxxlen=xlen;
-    }
-  }
-
-  free_example(nulldoc,1);
-  return(maxxlen);
-}
-
-double estimate_r_delta_average(DOC **docs, long int totdoc, 
-				KERNEL_PARM *kernel_parm)
-{
-  long i;
-  double avgxlen;
-  DOC *nulldoc;           /* assumes that the center of the ball is at the */
-  WORD nullword;          /* origin of the space. */
-
-  nullword.wnum=0;
-  nulldoc=create_example(-2,0,0,0.0,create_svector(&nullword,"",1.0)); 
-
-  avgxlen=0;
-  for(i=0;i<totdoc;i++) {
-    avgxlen+=sqrt(kernel(kernel_parm,docs[i],docs[i])
-		  -2*kernel(kernel_parm,docs[i],nulldoc)
-		  +kernel(kernel_parm,nulldoc,nulldoc));
-  }
-
-  free_example(nulldoc,1);
-  return(avgxlen/totdoc);
-}
-
-double length_of_longest_document_vector(DOC **docs, long int totdoc, 
-					 KERNEL_PARM *kernel_parm)
-{
-  long i;
-  double maxxlen,xlen;
-
-  maxxlen=0;
-  for(i=0;i<totdoc;i++) {
-    xlen=sqrt(kernel(kernel_parm,docs[i],docs[i]));
-    if(xlen>maxxlen) {
-      maxxlen=xlen;
-    }
-  }
-
-  return(maxxlen);
-}
-
-/****************************** IO-handling **********************************/
-
-void write_prediction(char *predfile, MODEL *model, double *lin, 
-		      double *a, long int *unlabeled, 
-		      long int *label, long int totdoc, 
-		      LEARN_PARM *learn_parm)
-{
-  FILE *predfl;
-  long i;
-  double dist,a_max;
-
-  if(verbosity>=1) {
-    printf("Writing prediction file..."); fflush(stdout);
-  }
-  if ((predfl = fopen (predfile, "w")) == NULL)
-  { perror (predfile); exit (1); }
-  a_max=learn_parm->epsilon_a;
-  for(i=0;i<totdoc;i++) {
-    if((unlabeled[i]) && (a[i]>a_max)) {
-      a_max=a[i];
-    }
-  }
-  for(i=0;i<totdoc;i++) {
-    if(unlabeled[i]) {
-      if((a[i]>(learn_parm->epsilon_a))) {
-	dist=(double)label[i]*(1.0-learn_parm->epsilon_crit-a[i]/(a_max*2.0));
-      }
-      else {
-	dist=(lin[i]-model->b);
-      }
-      if(dist>0) {
-	fprintf(predfl,"%.8g:+1 %.8g:-1\n",dist,-dist);
-      }
-      else {
-	fprintf(predfl,"%.8g:-1 %.8g:+1\n",-dist,dist);
-      }
-    }
-  }
-  fclose(predfl);
-  if(verbosity>=1) {
-    printf("done\n");
-  }
-}
-
-void write_alphas(char *alphafile, double *a, 
-		  long int *label, long int totdoc)
-{
-  FILE *alphafl;
-  long i;
-
-  if(verbosity>=1) {
-    printf("Writing alpha file..."); fflush(stdout);
-  }
-  if ((alphafl = fopen (alphafile, "w")) == NULL)
-  { perror (alphafile); exit (1); }
-  for(i=0;i<totdoc;i++) {
-    fprintf(alphafl,"%.18g\n",a[i]*(double)label[i]);
-  }
-  fclose(alphafl);
-  if(verbosity>=1) {
-    printf("done\n");
-  }
-}
-
diff --git a/trunk/svm_light/build/svm_light-tar/svm_learn.h b/trunk/svm_light/build/svm_light-tar/svm_learn.h
deleted file mode 100755
index 8a1edf7b75c6b2b6ea6952062a61ee7e7b4f8fbd..0000000000000000000000000000000000000000
--- a/trunk/svm_light/build/svm_light-tar/svm_learn.h
+++ /dev/null
@@ -1,173 +0,0 @@
-/***********************************************************************/
-/*                                                                     */
-/*   svm_learn.h                                                       */
-/*                                                                     */
-/*   Declarations for learning module of Support Vector Machine.       */
-/*                                                                     */
-/*   Author: Thorsten Joachims                                         */
-/*   Date: 02.07.02                                                    */
-/*                                                                     */
-/*   Copyright (c) 2002  Thorsten Joachims - All rights reserved       */
-/*                                                                     */
-/*   This software is available for non-commercial use only. It must   */
-/*   not be modified and distributed without prior permission of the   */
-/*   author. The author is not responsible for implications from the   */
-/*   use of this software.                                             */
-/*                                                                     */
-/***********************************************************************/
-
-#ifndef SVM_LEARN
-#define SVM_LEARN
-
-void   svm_learn_classification_extend(DOC **, double *, long, long, LEARN_PARM *,
-                                KERNEL_PARM *, KERNEL_CACHE *, MODEL *,
-                                double *, int *, double *);
-void   svm_learn_classification(DOC **, double *, long, long, LEARN_PARM *, 
-				KERNEL_PARM *, KERNEL_CACHE *, MODEL *,
-				double *);
-void   svm_learn_regression(DOC **, double *, long, long, LEARN_PARM *, 
-			    KERNEL_PARM *, KERNEL_CACHE **, MODEL *);
-void   svm_learn_ranking(DOC **, double *, long, long, LEARN_PARM *, 
-			 KERNEL_PARM *, KERNEL_CACHE **, MODEL *);
-void   svm_learn_optimization(DOC **, double *, long, long, LEARN_PARM *, 
-			      KERNEL_PARM *, KERNEL_CACHE *, MODEL *,
-			      double *);
-long   optimize_to_convergence(DOC **, long *, long, long, LEARN_PARM *,
-			       KERNEL_PARM *, KERNEL_CACHE *, SHRINK_STATE *,
-			       MODEL *, long *, long *, double *,
-			       double *, double *,
-			       TIMING *, double *, long, long);
-long   optimize_to_convergence_sharedslack(DOC **, long *, long, long, 
-			       LEARN_PARM *,
-			       KERNEL_PARM *, KERNEL_CACHE *, SHRINK_STATE *,
-			       MODEL *, double *, double *, double *,
-			       TIMING *, double *);
-double compute_objective_function(double *, double *, double *, double,
-				  long *, long *);
-void   clear_index(long *);
-void   add_to_index(long *, long);
-long   compute_index(long *,long, long *);
-void   optimize_svm(DOC **, long *, long *, long *, double, long *, long *, 
-		    MODEL *, 
-		    long, long *, long, double *, double *, double *, 
-		    LEARN_PARM *, CFLOAT *, KERNEL_PARM *, QP *, double *);
-void   compute_matrices_for_optimization(DOC **, long *, long *, long *, double,
-					 long *,
-					 long *, long *, MODEL *, double *, 
-					 double *, double *, long, long, LEARN_PARM *, 
-					 CFLOAT *, KERNEL_PARM *, QP *);
-long   calculate_svm_model(DOC **, long *, long *, double *, double *, 
-			   double *, double *, LEARN_PARM *, long *,
-			   long *, MODEL *);
-long   check_optimality(MODEL *, long *, long *, double *, double *,
-			double *, long, 
-			LEARN_PARM *,double *, double, long *, long *, long *,
-			long *, long, KERNEL_PARM *);
-long   check_optimality_sharedslack(DOC **docs, MODEL *model, long int *label,
-		      double *a, double *lin, double *c, double *slack,
-		      double *alphaslack, long int totdoc, 
-		      LEARN_PARM *learn_parm, double *maxdiff, 
-		      double epsilon_crit_org, long int *misclassified, 
-		      long int *active2dnum,
-		      long int *last_suboptimal_at, 
-		      long int iteration, KERNEL_PARM *kernel_parm);
-void   compute_shared_slacks(DOC **docs, long int *label, double *a, 
-			     double *lin, double *c, long int *active2dnum, 
-			     LEARN_PARM *learn_parm,
-			     double *slack, double *alphaslack);
-long   identify_inconsistent(double *, long *, long *, long, LEARN_PARM *, 
-			     long *, long *);
-long   identify_misclassified(double *, long *, long *, long,
-			      MODEL *, long *, long *);
-long   identify_one_misclassified(double *, long *, long *, long,
-				  MODEL *, long *, long *);
-long   incorporate_unlabeled_examples(MODEL *, long *,long *, long *,
-				      double *, double *, long, double *,
-				      long *, long *, long, KERNEL_PARM *,
-				      LEARN_PARM *);
-void   update_linear_component(DOC **, long *, long *, double *, double *, 
-			       long *, long, long, KERNEL_PARM *, 
-			       KERNEL_CACHE *, double *,
-			       CFLOAT *, double *);
-long   select_next_qp_subproblem_grad(long *, long *, double *, 
-				      double *, double *, long,
-				      long, LEARN_PARM *, long *, long *, 
-				      long *, double *, long *, KERNEL_CACHE *,
-				      long, long *, long *);
-long   select_next_qp_subproblem_rand(long *, long *, double *, 
-				      double *, double *, long,
-				      long, LEARN_PARM *, long *, long *, 
-				      long *, double *, long *, KERNEL_CACHE *,
-				      long *, long *, long);
-long   select_next_qp_slackset(DOC **docs, long int *label, double *a, 
-			       double *lin, double *slack, double *alphaslack, 
-			       double *c, LEARN_PARM *learn_parm, 
-			       long int *active2dnum, double *maxviol);
-void   select_top_n(double *, long, long *, long);
-void   init_shrink_state(SHRINK_STATE *, long, long);
-void   shrink_state_cleanup(SHRINK_STATE *);
-long   shrink_problem(DOC **, LEARN_PARM *, SHRINK_STATE *, KERNEL_PARM *, 
-		      long *, long *, long, long, long, double *, long *);
-void   reactivate_inactive_examples(long *, long *, double *, SHRINK_STATE *,
-				    double *, double*, long, long, long, LEARN_PARM *, 
-				    long *, DOC **, KERNEL_PARM *,
-				    KERNEL_CACHE *, MODEL *, CFLOAT *, 
-				    double *, double *);
-
-/* cache kernel evalutations to improve speed */
-KERNEL_CACHE *kernel_cache_init(long, long);
-void   kernel_cache_cleanup(KERNEL_CACHE *);
-void   get_kernel_row(KERNEL_CACHE *,DOC **, long, long, long *, CFLOAT *, 
-		      KERNEL_PARM *);
-void   cache_kernel_row(KERNEL_CACHE *,DOC **, long, KERNEL_PARM *);
-void   cache_multiple_kernel_rows(KERNEL_CACHE *,DOC **, long *, long, 
-				  KERNEL_PARM *);
-void   kernel_cache_shrink(KERNEL_CACHE *,long, long, long *);
-void   kernel_cache_reset_lru(KERNEL_CACHE *);
-long   kernel_cache_malloc(KERNEL_CACHE *);
-void   kernel_cache_free(KERNEL_CACHE *,long);
-long   kernel_cache_free_lru(KERNEL_CACHE *);
-CFLOAT *kernel_cache_clean_and_malloc(KERNEL_CACHE *,long);
-long   kernel_cache_touch(KERNEL_CACHE *,long);
-long   kernel_cache_check(KERNEL_CACHE *,long);
-long   kernel_cache_space_available(KERNEL_CACHE *);
-
-void compute_xa_estimates(MODEL *, long *, long *, long, DOC **, 
-			  double *, double *, KERNEL_PARM *, 
-			  LEARN_PARM *, double *, double *, double *);
-double xa_estimate_error(MODEL *, long *, long *, long, DOC **, 
-			 double *, double *, KERNEL_PARM *, 
-			 LEARN_PARM *);
-double xa_estimate_recall(MODEL *, long *, long *, long, DOC **, 
-			  double *, double *, KERNEL_PARM *, 
-			  LEARN_PARM *);
-double xa_estimate_precision(MODEL *, long *, long *, long, DOC **, 
-			     double *, double *, KERNEL_PARM *, 
-			     LEARN_PARM *);
-void avg_similarity_of_sv_of_one_class(MODEL *, DOC **, double *, long *, KERNEL_PARM *, double *, double *);
-double most_similar_sv_of_same_class(MODEL *, DOC **, double *, long, long *, KERNEL_PARM *, LEARN_PARM *);
-double distribute_alpha_t_greedily(long *, long, DOC **, double *, long, long *, KERNEL_PARM *, LEARN_PARM *, double);
-double distribute_alpha_t_greedily_noindex(MODEL *, DOC **, double *, long, long *, KERNEL_PARM *, LEARN_PARM *, double); 
-void estimate_transduction_quality(MODEL *, long *, long *, long, DOC **, double *);
-double estimate_margin_vcdim(MODEL *, double, double, KERNEL_PARM *);
-double estimate_sphere(MODEL *, KERNEL_PARM *);
-double estimate_r_delta_average(DOC **, long, KERNEL_PARM *); 
-double estimate_r_delta(DOC **, long, KERNEL_PARM *); 
-double length_of_longest_document_vector(DOC **, long, KERNEL_PARM *); 
-
-
-void   write_model(char *, MODEL *);
-void   write_prediction(char *, MODEL *, double *, double *, long *, long *,
-			long, LEARN_PARM *);
-void   write_alphas(char *, double *, long *, long);
-
-typedef struct cache_parm_s {
-  KERNEL_CACHE *kernel_cache;
-  CFLOAT *cache;
-  DOC **docs; 
-  long m;
-  KERNEL_PARM *kernel_parm;
-  long offset,stepsize;
-} cache_parm_t;
-
-#endif
diff --git a/trunk/svm_light/build/svm_light-tar/svm_learn_main.c b/trunk/svm_light/build/svm_light-tar/svm_learn_main.c
deleted file mode 100755
index e2a157dad12a25097bbf335d603497ac09534d9a..0000000000000000000000000000000000000000
--- a/trunk/svm_light/build/svm_light-tar/svm_learn_main.c
+++ /dev/null
@@ -1,397 +0,0 @@
-/***********************************************************************/
-/*                                                                     */
-/*   svm_learn_main.c                                                  */
-/*                                                                     */
-/*   Command line interface to the learning module of the              */
-/*   Support Vector Machine.                                           */
-/*                                                                     */
-/*   Author: Thorsten Joachims                                         */
-/*   Date: 02.07.02                                                    */
-/*                                                                     */
-/*   Copyright (c) 2000  Thorsten Joachims - All rights reserved       */
-/*                                                                     */
-/*   This software is available for non-commercial use only. It must   */
-/*   not be modified and distributed without prior permission of the   */
-/*   author. The author is not responsible for implications from the   */
-/*   use of this software.                                             */
-/*                                                                     */
-/***********************************************************************/
-
-
-/* if svm-learn is used out of C++, define it as extern "C" */
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-# include "svm_common.h"
-# include "svm_learn.h"
-
-#ifdef __cplusplus
-}
-#endif
-
-char docfile[200];           /* file with training examples */
-char modelfile[200];         /* file for resulting classifier */
-char restartfile[200];       /* file with initial alphas */
-
-void   read_input_parameters(int, char **, char *, char *, char *, long *, 
-			     LEARN_PARM *, KERNEL_PARM *);
-void   wait_any_key();
-void   print_help();
-
-
-
-int main (int argc, char* argv[])
-{  
-  DOC **docs;  /* training examples */
-  long totwords,totdoc,i;
-  double *target;
-  double *alpha_in=NULL;
-  KERNEL_CACHE *kernel_cache;
-  LEARN_PARM learn_parm;
-  KERNEL_PARM kernel_parm;
-  MODEL *model=(MODEL *)my_malloc(sizeof(MODEL));
-
-  read_input_parameters(argc,argv,docfile,modelfile,restartfile,&verbosity,
-			&learn_parm,&kernel_parm);
-  read_documents(docfile,&docs,&target,&totwords,&totdoc);
-  if(restartfile[0]) alpha_in=read_alphas(restartfile,totdoc);
-
-  if(kernel_parm.kernel_type == LINEAR) { /* don't need the cache */
-    kernel_cache=NULL;
-  }
-  else {
-    /* Always get a new kernel cache. It is not possible to use the
-       same cache for two different training runs */
-    kernel_cache=kernel_cache_init(totdoc,learn_parm.kernel_cache_size);
-  }
-
-  if(learn_parm.type == CLASSIFICATION) {
-    svm_learn_classification(docs,target,totdoc,totwords,&learn_parm,
-			     &kernel_parm,kernel_cache,model,alpha_in);
-  }
-  else if(learn_parm.type == REGRESSION) {
-    svm_learn_regression(docs,target,totdoc,totwords,&learn_parm,
-			 &kernel_parm,&kernel_cache,model);
-  }
-  else if(learn_parm.type == RANKING) {
-    svm_learn_ranking(docs,target,totdoc,totwords,&learn_parm,
-		      &kernel_parm,&kernel_cache,model);
-  }
-  else if(learn_parm.type == OPTIMIZATION) {
-    svm_learn_optimization(docs,target,totdoc,totwords,&learn_parm,
-			   &kernel_parm,kernel_cache,model,alpha_in);
-  }
-
-  if(kernel_cache) {
-    /* Free the memory used for the cache. */
-    kernel_cache_cleanup(kernel_cache);
-  }
-
-  /* Warning: The model contains references to the original data 'docs'.
-     If you want to free the original data, and only keep the model, you 
-     have to make a deep copy of 'model'. */
-  /* deep_copy_of_model=copy_model(model); */
-  write_model(modelfile,model);
-
-  free(alpha_in);
-  free_model(model,0);
-  for(i=0;i<totdoc;i++) 
-    free_example(docs[i],1);
-  free(docs);
-  free(target);
-
-  return(0);
-}
-
-/*---------------------------------------------------------------------------*/
-
-void read_input_parameters(int argc,char *argv[],char *docfile,char *modelfile,
-			   char *restartfile,long *verbosity,
-			   LEARN_PARM *learn_parm,KERNEL_PARM *kernel_parm)
-{
-  long i;
-  char type[100];
-  
-  /* set default */
-  strcpy (modelfile, "svm_model");
-  strcpy (learn_parm->predfile, "trans_predictions");
-  strcpy (learn_parm->alphafile, "");
-  strcpy (restartfile, "");
-  (*verbosity)=1;
-  learn_parm->biased_hyperplane=1;
-  learn_parm->sharedslack=0;
-  learn_parm->remove_inconsistent=0;
-  learn_parm->skip_final_opt_check=0;
-  learn_parm->svm_maxqpsize=10;
-  learn_parm->svm_newvarsinqp=0;
-  learn_parm->svm_iter_to_shrink=-9999;
-  learn_parm->maxiter=100000;
-  learn_parm->kernel_cache_size=40;
-  learn_parm->svm_c=0.0;
-  learn_parm->eps=0.1;
-  learn_parm->transduction_posratio=-1.0;
-  learn_parm->svm_costratio=1.0;
-  learn_parm->svm_costratio_unlab=1.0;
-  learn_parm->svm_unlabbound=1E-5;
-  learn_parm->epsilon_crit=0.001;
-  learn_parm->epsilon_a=1E-15;
-  learn_parm->compute_loo=0;
-  learn_parm->rho=1.0;
-  learn_parm->xa_depth=0;
-  kernel_parm->kernel_type=0;
-  kernel_parm->poly_degree=3;
-  kernel_parm->rbf_gamma=1.0;
-  kernel_parm->coef_lin=1;
-  kernel_parm->coef_const=1;
-  strcpy(kernel_parm->custom,"empty");
-  strcpy(type,"c");
-
-  for(i=1;(i<argc) && ((argv[i])[0] == '-');i++) {
-    switch ((argv[i])[1]) 
-      { 
-      case '?': print_help(); exit(0);
-      case 'z': i++; strcpy(type,argv[i]); break;
-      case 'v': i++; (*verbosity)=atol(argv[i]); break;
-      case 'b': i++; learn_parm->biased_hyperplane=atol(argv[i]); break;
-      case 'i': i++; learn_parm->remove_inconsistent=atol(argv[i]); break;
-      case 'f': i++; learn_parm->skip_final_opt_check=!atol(argv[i]); break;
-      case 'q': i++; learn_parm->svm_maxqpsize=atol(argv[i]); break;
-      case 'n': i++; learn_parm->svm_newvarsinqp=atol(argv[i]); break;
-      case '#': i++; learn_parm->maxiter=atol(argv[i]); break;
-      case 'h': i++; learn_parm->svm_iter_to_shrink=atol(argv[i]); break;
-      case 'm': i++; learn_parm->kernel_cache_size=atol(argv[i]); break;
-      case 'c': i++; learn_parm->svm_c=atof(argv[i]); break;
-      case 'w': i++; learn_parm->eps=atof(argv[i]); break;
-      case 'p': i++; learn_parm->transduction_posratio=atof(argv[i]); break;
-      case 'j': i++; learn_parm->svm_costratio=atof(argv[i]); break;
-      case 'e': i++; learn_parm->epsilon_crit=atof(argv[i]); break;
-      case 'o': i++; learn_parm->rho=atof(argv[i]); break;
-      case 'k': i++; learn_parm->xa_depth=atol(argv[i]); break;
-      case 'x': i++; learn_parm->compute_loo=atol(argv[i]); break;
-      case 't': i++; kernel_parm->kernel_type=atol(argv[i]); break;
-      case 'd': i++; kernel_parm->poly_degree=atol(argv[i]); break;
-      case 'g': i++; kernel_parm->rbf_gamma=atof(argv[i]); break;
-      case 's': i++; kernel_parm->coef_lin=atof(argv[i]); break;
-      case 'r': i++; kernel_parm->coef_const=atof(argv[i]); break;
-      case 'u': i++; strcpy(kernel_parm->custom,argv[i]); break;
-      case 'l': i++; strcpy(learn_parm->predfile,argv[i]); break;
-      case 'a': i++; strcpy(learn_parm->alphafile,argv[i]); break;
-      case 'y': i++; strcpy(restartfile,argv[i]); break;
-      default: printf("\nUnrecognized option %s!\n\n",argv[i]);
-	       print_help();
-	       exit(0);
-      }
-  }
-  if(i>=argc) {
-    printf("\nNot enough input parameters!\n\n");
-    wait_any_key();
-    print_help();
-    exit(0);
-  }
-  strcpy (docfile, argv[i]);
-  if((i+1)<argc) {
-    strcpy (modelfile, argv[i+1]);
-  }
-  if(learn_parm->svm_iter_to_shrink == -9999) {
-    if(kernel_parm->kernel_type == LINEAR) 
-      learn_parm->svm_iter_to_shrink=2;
-    else
-      learn_parm->svm_iter_to_shrink=100;
-  }
-  if(strcmp(type,"c")==0) {
-    learn_parm->type=CLASSIFICATION;
-  }
-  else if(strcmp(type,"r")==0) {
-    learn_parm->type=REGRESSION;
-  }
-  else if(strcmp(type,"p")==0) {
-    learn_parm->type=RANKING;
-  }
-  else if(strcmp(type,"o")==0) {
-    learn_parm->type=OPTIMIZATION;
-  }
-  else if(strcmp(type,"s")==0) {
-    learn_parm->type=OPTIMIZATION;
-    learn_parm->sharedslack=1;
-  }
-  else {
-    printf("\nUnknown type '%s': Valid types are 'c' (classification), 'r' regession, and 'p' preference ranking.\n",type);
-    wait_any_key();
-    print_help();
-    exit(0);
-  }    
-  if((learn_parm->skip_final_opt_check) 
-     && (kernel_parm->kernel_type == LINEAR)) {
-    printf("\nIt does not make sense to skip the final optimality check for linear kernels.\n\n");
-    learn_parm->skip_final_opt_check=0;
-  }    
-  if((learn_parm->skip_final_opt_check) 
-     && (learn_parm->remove_inconsistent)) {
-    printf("\nIt is necessary to do the final optimality check when removing inconsistent \nexamples.\n");
-    wait_any_key();
-    print_help();
-    exit(0);
-  }    
-  if((learn_parm->svm_maxqpsize<2)) {
-    printf("\nMaximum size of QP-subproblems not in valid range: %ld [2..]\n",learn_parm->svm_maxqpsize); 
-    wait_any_key();
-    print_help();
-    exit(0);
-  }
-  if((learn_parm->svm_maxqpsize<learn_parm->svm_newvarsinqp)) {
-    printf("\nMaximum size of QP-subproblems [%ld] must be larger than the number of\n",learn_parm->svm_maxqpsize); 
-    printf("new variables [%ld] entering the working set in each iteration.\n",learn_parm->svm_newvarsinqp); 
-    wait_any_key();
-    print_help();
-    exit(0);
-  }
-  if(learn_parm->svm_iter_to_shrink<1) {
-    printf("\nMaximum number of iterations for shrinking not in valid range: %ld [1,..]\n",learn_parm->svm_iter_to_shrink);
-    wait_any_key();
-    print_help();
-    exit(0);
-  }
-  if(learn_parm->svm_c<0) {
-    printf("\nThe C parameter must be greater than zero!\n\n");
-    wait_any_key();
-    print_help();
-    exit(0);
-  }
-  if(learn_parm->transduction_posratio>1) {
-    printf("\nThe fraction of unlabeled examples to classify as positives must\n");
-    printf("be less than 1.0 !!!\n\n");
-    wait_any_key();
-    print_help();
-    exit(0);
-  }
-  if(learn_parm->svm_costratio<=0) {
-    printf("\nThe COSTRATIO parameter must be greater than zero!\n\n");
-    wait_any_key();
-    print_help();
-    exit(0);
-  }
-  if(learn_parm->epsilon_crit<=0) {
-    printf("\nThe epsilon parameter must be greater than zero!\n\n");
-    wait_any_key();
-    print_help();
-    exit(0);
-  }
-  if(learn_parm->rho<0) {
-    printf("\nThe parameter rho for xi/alpha-estimates and leave-one-out pruning must\n");
-    printf("be greater than zero (typically 1.0 or 2.0, see T. Joachims, Estimating the\n");
-    printf("Generalization Performance of an SVM Efficiently, ICML, 2000.)!\n\n");
-    wait_any_key();
-    print_help();
-    exit(0);
-  }
-  if((learn_parm->xa_depth<0) || (learn_parm->xa_depth>100)) {
-    printf("\nThe parameter depth for ext. xi/alpha-estimates must be in [0..100] (zero\n");
-    printf("for switching to the conventional xa/estimates described in T. Joachims,\n");
-    printf("Estimating the Generalization Performance of an SVM Efficiently, ICML, 2000.)\n");
-    wait_any_key();
-    print_help();
-    exit(0);
-  }
-}
-
-void wait_any_key()
-{
-  printf("\n(more)\n");
-  (void)getc(stdin);
-}
-
-void print_help()
-{
-  printf("\nSVM-light %s: Support Vector Machine, learning module     %s\n",VERSION,VERSION_DATE);
-  copyright_notice();
-  printf("   usage: svm_learn [options] example_file model_file\n\n");
-  printf("Arguments:\n");
-  printf("         example_file-> file with training data\n");
-  printf("         model_file  -> file to store learned decision rule in\n");
-
-  printf("General options:\n");
-  printf("         -?          -> this help\n");
-  printf("         -v [0..3]   -> verbosity level (default 1)\n");
-  printf("Learning options:\n");
-  printf("         -z {c,r,p}  -> select between classification (c), regression (r),\n");
-  printf("                        and preference ranking (p) (default classification)\n");
-  printf("         -c float    -> C: trade-off between training error\n");
-  printf("                        and margin (default [avg. x*x]^-1)\n");
-  printf("         -w [0..]    -> epsilon width of tube for regression\n");
-  printf("                        (default 0.1)\n");
-  printf("         -j float    -> Cost: cost-factor, by which training errors on\n");
-  printf("                        positive examples outweight errors on negative\n");
-  printf("                        examples (default 1) (see [4])\n");
-  printf("         -b [0,1]    -> use biased hyperplane (i.e. x*w+b>0) instead\n");
-  printf("                        of unbiased hyperplane (i.e. x*w>0) (default 1)\n");
-  printf("         -i [0,1]    -> remove inconsistent training examples\n");
-  printf("                        and retrain (default 0)\n");
-  printf("Performance estimation options:\n");
-  printf("         -x [0,1]    -> compute leave-one-out estimates (default 0)\n");
-  printf("                        (see [5])\n");
-  printf("         -o ]0..2]   -> value of rho for XiAlpha-estimator and for pruning\n");
-  printf("                        leave-one-out computation (default 1.0) (see [2])\n");
-  printf("         -k [0..100] -> search depth for extended XiAlpha-estimator \n");
-  printf("                        (default 0)\n");
-  printf("Transduction options (see [3]):\n");
-  printf("         -p [0..1]   -> fraction of unlabeled examples to be classified\n");
-  printf("                        into the positive class (default is the ratio of\n");
-  printf("                        positive and negative examples in the training data)\n");
-  printf("Kernel options:\n");
-  printf("         -t int      -> type of kernel function:\n");
-  printf("                        0: linear (default)\n");
-  printf("                        1: polynomial (s a*b+c)^d\n");
-  printf("                        2: radial basis function exp(-gamma ||a-b||^2)\n");
-  printf("                        3: sigmoid tanh(s a*b + c)\n");
-  printf("                        4: user defined kernel from kernel.h\n");
-  printf("         -d int      -> parameter d in polynomial kernel\n");
-  printf("         -g float    -> parameter gamma in rbf kernel\n");
-  printf("         -s float    -> parameter s in sigmoid/poly kernel\n");
-  printf("         -r float    -> parameter c in sigmoid/poly kernel\n");
-  printf("         -u string   -> parameter of user defined kernel\n");
-  printf("Optimization options (see [1]):\n");
-  printf("         -q [2..]    -> maximum size of QP-subproblems (default 10)\n");
-  printf("         -n [2..q]   -> number of new variables entering the working set\n");
-  printf("                        in each iteration (default n = q). Set n<q to prevent\n");
-  printf("                        zig-zagging.\n");
-  printf("         -m [5..]    -> size of cache for kernel evaluations in MB (default 40)\n");
-  printf("                        The larger the faster...\n");
-  printf("         -e float    -> eps: Allow that error for termination criterion\n");
-  printf("                        [y [w*x+b] - 1] >= eps (default 0.001)\n");
-  printf("         -y [0,1]    -> restart the optimization from alpha values in file\n");
-  printf("                        specified by -a option. (default 0)\n");
-  printf("         -h [5..]    -> number of iterations a variable needs to be\n"); 
-  printf("                        optimal before considered for shrinking (default 100)\n");
-  printf("         -f [0,1]    -> do final optimality check for variables removed\n");
-  printf("                        by shrinking. Although this test is usually \n");
-  printf("                        positive, there is no guarantee that the optimum\n");
-  printf("                        was found if the test is omitted. (default 1)\n");
-  printf("         -y string   -> if option is given, reads alphas from file with given\n");
-  printf("                        and uses them as starting point. (default 'disabled')\n");
-  printf("         -# int      -> terminate optimization, if no progress after this\n");
-  printf("                        number of iterations. (default 100000)\n");
-  printf("Output options:\n");
-  printf("         -l string   -> file to write predicted labels of unlabeled\n");
-  printf("                        examples into after transductive learning\n");
-  printf("         -a string   -> write all alphas to this file after learning\n");
-  printf("                        (in the same order as in the training set)\n");
-  wait_any_key();
-  printf("\nMore details in:\n");
-  printf("[1] T. Joachims, Making Large-Scale SVM Learning Practical. Advances in\n");
-  printf("    Kernel Methods - Support Vector Learning, B. Schölkopf and C. Burges and\n");
-  printf("    A. Smola (ed.), MIT Press, 1999.\n");
-  printf("[2] T. Joachims, Estimating the Generalization performance of an SVM\n");
-  printf("    Efficiently. International Conference on Machine Learning (ICML), 2000.\n");
-  printf("[3] T. Joachims, Transductive Inference for Text Classification using Support\n");
-  printf("    Vector Machines. International Conference on Machine Learning (ICML),\n");
-  printf("    1999.\n");
-  printf("[4] K. Morik, P. Brockhausen, and T. Joachims, Combining statistical learning\n");
-  printf("    with a knowledge-based approach - A case study in intensive care  \n");
-  printf("    monitoring. International Conference on Machine Learning (ICML), 1999.\n");
-  printf("[5] T. Joachims, Learning to Classify Text Using Support Vector\n");
-  printf("    Machines: Methods, Theory, and Algorithms. Dissertation, Kluwer,\n");
-  printf("    2002.\n\n");
-}
-
-
diff --git a/trunk/svm_light/build/svm_light-tar/svm_loqo.c b/trunk/svm_light/build/svm_light-tar/svm_loqo.c
deleted file mode 100755
index ff31a655f26948a95a3ef0537d8a8b95fd1148c0..0000000000000000000000000000000000000000
--- a/trunk/svm_light/build/svm_light-tar/svm_loqo.c
+++ /dev/null
@@ -1,211 +0,0 @@
-/***********************************************************************/
-/*                                                                     */
-/*   svm_loqo.c                                                        */
-/*                                                                     */
-/*   Interface to the PR_LOQO optimization package for SVM.            */
-/*                                                                     */
-/*   Author: Thorsten Joachims                                         */
-/*   Date: 19.07.99                                                    */
-/*                                                                     */
-/*   Copyright (c) 1999  Universitaet Dortmund - All rights reserved   */
-/*                                                                     */
-/*   This software is available for non-commercial use only. It must   */
-/*   not be modified and distributed without prior permission of the   */
-/*   author. The author is not responsible for implications from the   */
-/*   use of this software.                                             */
-/*                                                                     */
-/***********************************************************************/
-
-# include <math.h>
-# include "pr_loqo/pr_loqo.h"
-# include "svm_common.h"
-
-/* Common Block Declarations */
-
-long verbosity;
-
-/* /////////////////////////////////////////////////////////////// */
-
-# define DEF_PRECISION_LINEAR    1E-8
-# define DEF_PRECISION_NONLINEAR 1E-14
-
-double *optimize_qp();
-double *primal=0,*dual=0;
-double init_margin=0.15;
-long   init_iter=500,precision_violations=0;
-double model_b;
-double opt_precision=DEF_PRECISION_LINEAR;
-
-/* /////////////////////////////////////////////////////////////// */
-
-void *my_malloc();
-
-double *optimize_qp(qp,epsilon_crit,nx,threshold,learn_parm)
-QP *qp;
-double *epsilon_crit;
-long nx; /* Maximum number of variables in QP */
-double *threshold;
-LEARN_PARM *learn_parm;
-/* start the optimizer and return the optimal values */
-{
-  register long i,j,result;
-  double margin,obj_before,obj_after;
-  double sigdig,dist,epsilon_loqo;
-  int iter;
- 
-  if(!primal) { /* allocate memory at first call */
-    primal=(double *)my_malloc(sizeof(double)*nx*3);
-    dual=(double *)my_malloc(sizeof(double)*(nx*2+1));
-  }
-  
-  if(verbosity>=4) { /* really verbose */
-    printf("\n\n");
-    for(i=0;i<qp->opt_n;i++) {
-      printf("%f: ",qp->opt_g0[i]);
-      for(j=0;j<qp->opt_n;j++) {
-	printf("%f ",qp->opt_g[i*qp->opt_n+j]);
-      }
-      printf(": a%ld=%.10f < %f",i,qp->opt_xinit[i],qp->opt_up[i]);
-      printf(": y=%f\n",qp->opt_ce[i]);
-    }
-    for(j=0;j<qp->opt_m;j++) {
-      printf("EQ-%ld: %f*a0",j,qp->opt_ce[j]);
-      for(i=1;i<qp->opt_n;i++) {
-	printf(" + %f*a%ld",qp->opt_ce[i],i);
-      }
-      printf(" = %f\n\n",-qp->opt_ce0[0]);
-    }
-}
-
-  obj_before=0; /* calculate objective before optimization */
-  for(i=0;i<qp->opt_n;i++) {
-    obj_before+=(qp->opt_g0[i]*qp->opt_xinit[i]);
-    obj_before+=(0.5*qp->opt_xinit[i]*qp->opt_xinit[i]*qp->opt_g[i*qp->opt_n+i]);
-    for(j=0;j<i;j++) {
-      obj_before+=(qp->opt_xinit[j]*qp->opt_xinit[i]*qp->opt_g[j*qp->opt_n+i]);
-    }
-  }
-
-  result=STILL_RUNNING;
-  qp->opt_ce0[0]*=(-1.0);
-  /* Run pr_loqo. If a run fails, try again with parameters which lead */
-  /* to a slower, but more robust setting. */
-  for(margin=init_margin,iter=init_iter;
-      (margin<=0.9999999) && (result!=OPTIMAL_SOLUTION);) {
-    sigdig=-log10(opt_precision);
-
-    result=pr_loqo((int)qp->opt_n,(int)qp->opt_m,
-		   (double *)qp->opt_g0,(double *)qp->opt_g,
-		   (double *)qp->opt_ce,(double *)qp->opt_ce0,
-		   (double *)qp->opt_low,(double *)qp->opt_up,
-		   (double *)primal,(double *)dual, 
-		   (int)(verbosity-2),
-		   (double)sigdig,(int)iter, 
-		   (double)margin,(double)(qp->opt_up[0])/4.0,(int)0);
-
-    if(isnan(dual[0])) {     /* check for choldc problem */
-      if(verbosity>=2) {
-	printf("NOTICE: Restarting PR_LOQO with more conservative parameters.\n");
-      }
-      if(init_margin<0.80) { /* become more conservative in general */
-	init_margin=(4.0*margin+1.0)/5.0;
-      }
-      margin=(margin+1.0)/2.0;
-      (opt_precision)*=10.0;   /* reduce precision */
-      if(verbosity>=2) {
-	printf("NOTICE: Reducing precision of PR_LOQO.\n");
-      }
-    }
-    else if(result!=OPTIMAL_SOLUTION) {
-      iter+=2000; 
-      init_iter+=10;
-      (opt_precision)*=10.0;   /* reduce precision */
-      if(verbosity>=2) {
-	printf("NOTICE: Reducing precision of PR_LOQO due to (%ld).\n",result);
-      }      
-    }
-  }
-
-  if(qp->opt_m)         /* Thanks to Alex Smola for this hint */
-    model_b=dual[0];
-  else
-    model_b=0;
-
-  /* Check the precision of the alphas. If results of current optimization */
-  /* violate KT-Conditions, relax the epsilon on the bounds on alphas. */
-  epsilon_loqo=1E-10;
-  for(i=0;i<qp->opt_n;i++) {
-    dist=-model_b*qp->opt_ce[i]; 
-    dist+=(qp->opt_g0[i]+1.0);
-    for(j=0;j<i;j++) {
-      dist+=(primal[j]*qp->opt_g[j*qp->opt_n+i]);
-    }
-    for(j=i;j<qp->opt_n;j++) {
-      dist+=(primal[j]*qp->opt_g[i*qp->opt_n+j]);
-    }
-    /*  printf("LOQO: a[%d]=%f, dist=%f, b=%f\n",i,primal[i],dist,dual[0]); */
-    if((primal[i]<(qp->opt_up[i]-epsilon_loqo)) && (dist < (1.0-(*epsilon_crit)))) {
-      epsilon_loqo=(qp->opt_up[i]-primal[i])*2.0;
-    }
-    else if((primal[i]>(0+epsilon_loqo)) && (dist > (1.0+(*epsilon_crit)))) {
-      epsilon_loqo=primal[i]*2.0;
-    }
-  }
-
-  for(i=0;i<qp->opt_n;i++) {  /* clip alphas to bounds */
-    if(primal[i]<=(0+epsilon_loqo)) {
-      primal[i]=0;
-    }
-    else if(primal[i]>=(qp->opt_up[i]-epsilon_loqo)) {
-      primal[i]=qp->opt_up[i];
-    }
-  }
-
-  obj_after=0;  /* calculate objective after optimization */
-  for(i=0;i<qp->opt_n;i++) {
-    obj_after+=(qp->opt_g0[i]*primal[i]);
-    obj_after+=(0.5*primal[i]*primal[i]*qp->opt_g[i*qp->opt_n+i]);
-    for(j=0;j<i;j++) {
-      obj_after+=(primal[j]*primal[i]*qp->opt_g[j*qp->opt_n+i]);
-    }
-  }
-
-  /* if optimizer returned NAN values, reset and retry with smaller */
-  /* working set. */
-  if(isnan(obj_after) || isnan(model_b)) {
-    for(i=0;i<qp->opt_n;i++) {
-      primal[i]=qp->opt_xinit[i];
-    }     
-    model_b=0;
-    if(learn_parm->svm_maxqpsize>2) {
-      learn_parm->svm_maxqpsize--;  /* decrease size of qp-subproblems */
-    }
-  }
-
-  if(obj_after >= obj_before) { /* check whether there was progress */
-    (opt_precision)/=100.0;
-    precision_violations++;
-    if(verbosity>=2) {
-      printf("NOTICE: Increasing Precision of PR_LOQO.\n");
-    }
-  }
-
-  if(precision_violations > 500) { 
-    (*epsilon_crit)*=10.0;
-    precision_violations=0;
-    if(verbosity>=1) {
-      printf("\nWARNING: Relaxing epsilon on KT-Conditions.\n");
-    }
-  }	  
-
-  (*threshold)=model_b;
-
-  if(result!=OPTIMAL_SOLUTION) {
-    printf("\nERROR: PR_LOQO did not converge. \n");
-    return(qp->opt_xinit);
-  }
-  else {
-    return(primal);
-  }
-}
-
diff --git a/trunk/svm_light/build/svm_light-tar/unpacked b/trunk/svm_light/build/svm_light-tar/unpacked
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/trunk/svm_light/build/svm_light.tar.gz b/trunk/svm_light/build/svm_light.tar.gz
deleted file mode 100644
index 8c57097c83079c08b5b70bee20fb4a74ae09d608..0000000000000000000000000000000000000000
Binary files a/trunk/svm_light/build/svm_light.tar.gz and /dev/null differ
diff --git a/trunk/svm_light/installed b/trunk/svm_light/installed
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/trunk/svm_light/mainpage.dox b/trunk/svm_light/mainpage.dox
deleted file mode 100644
index c09c7e54e44ded6627795401c90abd3ed89b4713..0000000000000000000000000000000000000000
--- a/trunk/svm_light/mainpage.dox
+++ /dev/null
@@ -1,26 +0,0 @@
-/**
-\mainpage
-\htmlinclude manifest.html
-
-\b svm_light is ... 
-
-<!-- 
-Provide an overview of your package.
--->
-
-
-\section codeapi Code API
-
-<!--
-Provide links to specific auto-generated API documentation within your
-package that is of particular interest to a reader. Doxygen will
-document pretty much every part of your code, so do your best here to
-point the reader to the actual API.
-
-If your codebase is fairly large or has different sets of APIs, you
-should use the doxygen 'group' tag to keep these APIs together. For
-example, the roscpp documentation has 'libros' group.
--->
-
-
-*/
diff --git a/trunk/svm_light/manifest.xml b/trunk/svm_light/manifest.xml
deleted file mode 100644
index 00e23c6afd98bcfcd309b60c5ff322848cafda7b..0000000000000000000000000000000000000000
--- a/trunk/svm_light/manifest.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<package>
-  <description brief="svm_light">
-    This package is a wrapper on the svm_light library available from <a href="http://svmlight.joachims.org/">here</a>. This package does not modify the contents of the original library in any manner and only wraps it for easy distribution with the ROS packaging system. svm_light is not under BSD license and is optional for FCL. Users can choose to use it by setting flag USE_SVM_LIGHT=1 in FCL.
-  </description>
-  <author>Maintained by Jia Pan and Sachin Chitta</author>
-  <license>BSD</license>
-  <review status="unreviewed" notes=""/>
-  <url>http://ros.org/wiki/svm_light</url>
-  <export>
-    <cpp cflags="-I${prefix}/svm_light/include" lflags="-L${prefix}/svm_light/lib -Wl,-rpath,${prefix}/svm_light/lib -lsvmlight"/>
-  </export>
-
-</package>
-
-
diff --git a/trunk/svm_light/svm_light.diff b/trunk/svm_light/svm_light.diff
deleted file mode 100644
index 86410f3fd1729f18794f39243276aebbc4dda45f..0000000000000000000000000000000000000000
--- a/trunk/svm_light/svm_light.diff
+++ /dev/null
@@ -1,543 +0,0 @@
---- Makefile	2011-09-06 22:14:22.363126903 -0400
-+++ Makefile	2011-09-06 22:14:53.859177783 -0400
-@@ -11,7 +11,7 @@ LD = gcc
- #Uncomment the following line to make CYGWIN produce stand-alone Windows executables
- #SFLAGS= -mno-cygwin
- 
--CFLAGS=  $(SFLAGS) -O3                     # release C-Compiler flags
-+CFLAGS=  $(SFLAGS) -fPIC -O3                     # release C-Compiler flags
- LFLAGS=  $(SFLAGS) -O3                     # release linker flags
- #CFLAGS= $(SFLAGS) -pg -Wall -pedantic      # debugging C-Compiler flags
- #LFLAGS= $(SFLAGS) -pg                      # debugging linker flags
---- svm_learn.c	2011-09-06 22:14:22.363126903 -0400
-+++ svm_learn.c	2011-09-06 22:49:10.011383409 -0400
-@@ -26,6 +26,509 @@ double *optimize_qp(QP *, double *, long
- 
- /*---------------------------------------------------------------------------*/
- 
-+void svm_learn_classification_extend(DOC **docs, double *class, long int
-+                              totdoc, long int totwords,
-+                              LEARN_PARM *learn_parm,
-+                              KERNEL_PARM *kernel_parm,
-+                              KERNEL_CACHE *kernel_cache,
-+                              MODEL *model,
-+                              double *alpha,
-+                              int* nerrors,
-+                              double* maxerror)
-+{
-+	long *inconsistent, i, *label;
-+	long inconsistentnum;
-+	long misclassified, upsupvecnum;
-+	double loss, model_length, example_length;
-+	double maxdiff, *lin, *a, *c;
-+	long runtime_start, runtime_end;
-+	long iterations;
-+	long *unlabeled, transduction;
-+	long heldout;
-+	long loo_count = 0, loo_count_pos = 0, loo_count_neg = 0, trainpos = 0, trainneg = 0;
-+	long loocomputed = 0, runtime_start_loo = 0, runtime_start_xa = 0;
-+	double heldout_c = 0, r_delta_sq = 0, r_delta, r_delta_avg;
-+	long *index, *index2dnum;
-+	double *weights;
-+	CFLOAT *aicache;  /* buffer to keep one row of hessian */
-+	
-+	double *xi_fullset; /* buffer for storing xi on full sample in loo */
-+	double *a_fullset;  /* buffer for storing alpha on full sample in loo */
-+	TIMING timing_profile;
-+	SHRINK_STATE shrink_state;
-+	
-+	runtime_start = get_runtime();
-+	timing_profile.time_kernel = 0;
-+	timing_profile.time_opti = 0;
-+	timing_profile.time_shrink = 0;
-+	timing_profile.time_update = 0;
-+	timing_profile.time_model = 0;
-+	timing_profile.time_check = 0;
-+	timing_profile.time_select = 0;
-+	kernel_cache_statistic = 0;
-+	
-+	learn_parm->totwords = totwords;
-+	
-+	/* make sure -n value is reasonable */
-+	if ((learn_parm->svm_newvarsinqp < 2)
-+	        || (learn_parm->svm_newvarsinqp > learn_parm->svm_maxqpsize))
-+	{
-+		learn_parm->svm_newvarsinqp = learn_parm->svm_maxqpsize;
-+	}
-+	
-+	init_shrink_state(&shrink_state, totdoc, (long)MAXSHRINK);
-+	
-+	label = (long *)my_malloc(sizeof(long) * totdoc);
-+	inconsistent = (long *)my_malloc(sizeof(long) * totdoc);
-+	unlabeled = (long *)my_malloc(sizeof(long) * totdoc);
-+	c = (double *)my_malloc(sizeof(double) * totdoc);
-+	a = (double *)my_malloc(sizeof(double) * totdoc);
-+	a_fullset = (double *)my_malloc(sizeof(double) * totdoc);
-+	xi_fullset = (double *)my_malloc(sizeof(double) * totdoc);
-+	lin = (double *)my_malloc(sizeof(double) * totdoc);
-+	learn_parm->svm_cost = (double *)my_malloc(sizeof(double) * totdoc);
-+	model->supvec = (DOC **)my_malloc(sizeof(DOC *) * (totdoc + 2));
-+	model->alpha = (double *)my_malloc(sizeof(double) * (totdoc + 2));
-+	model->index = (long *)my_malloc(sizeof(long) * (totdoc + 2));
-+	
-+	model->at_upper_bound = 0;
-+	model->b = 0;
-+	model->supvec[0] = 0;  /* element 0 reserved and empty for now */
-+	model->alpha[0] = 0;
-+	model->lin_weights = NULL;
-+	model->totwords = totwords;
-+	model->totdoc = totdoc;
-+	model->kernel_parm = (*kernel_parm);
-+	model->sv_num = 1;
-+	model->loo_error = -1;
-+	model->loo_recall = -1;
-+	model->loo_precision = -1;
-+	model->xa_error = -1;
-+	model->xa_recall = -1;
-+	model->xa_precision = -1;
-+	inconsistentnum = 0;
-+	transduction = 0;
-+	
-+	r_delta = estimate_r_delta(docs, totdoc, kernel_parm);
-+	r_delta_sq = r_delta * r_delta;
-+	
-+	r_delta_avg = estimate_r_delta_average(docs, totdoc, kernel_parm);
-+	if (learn_parm->svm_c == 0.0)   /* default value for C */
-+	{
-+		learn_parm->svm_c = 1.0 / (r_delta_avg * r_delta_avg);
-+		if (verbosity >= 1)
-+			printf("Setting default regularization parameter C=%.4f\n",
-+			       learn_parm->svm_c);
-+	}
-+	
-+	learn_parm->eps = -1.0;      /* equivalent regression epsilon for
-+				classification */
-+
-+	for (i = 0; i < totdoc; i++)      /* various inits */
-+	{
-+		docs[i]->docnum = i;
-+		inconsistent[i] = 0;
-+		a[i] = 0;
-+		lin[i] = 0;
-+		c[i] = 0.0;
-+		unlabeled[i] = 0;
-+		if (class[i] == 0)
-+		{
-+			unlabeled[i] = 1;
-+			label[i] = 0;
-+			transduction = 1;
-+		}
-+		if (class[i] > 0)
-+		{
-+			learn_parm->svm_cost[i] = learn_parm->svm_c * learn_parm->svm_costratio *
-+			                          docs[i]->costfactor;
-+			label[i] = 1;
-+			trainpos++;
-+		}
-+		else if (class[i] < 0)
-+		{
-+			learn_parm->svm_cost[i] = learn_parm->svm_c * docs[i]->costfactor;
-+			label[i] = -1;
-+			trainneg++;
-+		}
-+		else
-+		{
-+			learn_parm->svm_cost[i] = 0;
-+		}
-+	}
-+	if (verbosity >= 2)
-+	{
-+		printf("%ld positive, %ld negative, and %ld unlabeled examples.\n", trainpos, trainneg, totdoc - trainpos - trainneg);
-+		fflush(stdout);
-+	}
-+	
-+	/* caching makes no sense for linear kernel */
-+	if (kernel_parm->kernel_type == LINEAR)
-+	{
-+		kernel_cache = NULL;
-+	}
-+	
-+	/* compute starting state for initial alpha values */
-+	if (alpha)
-+	{
-+		if (verbosity >= 1)
-+		{
-+			printf("Computing starting state...");
-+			fflush(stdout);
-+		}
-+		index = (long *)my_malloc(sizeof(long) * totdoc);
-+		index2dnum = (long *)my_malloc(sizeof(long) * (totdoc + 11));
-+		weights = (double *)my_malloc(sizeof(double) * (totwords + 1));
-+		aicache = (CFLOAT *)my_malloc(sizeof(CFLOAT) * totdoc);
-+		for (i = 0; i < totdoc; i++)      /* create full index and clip alphas */
-+		{
-+			index[i] = 1;
-+			alpha[i] = fabs(alpha[i]);
-+			if (alpha[i] < 0) alpha[i] = 0;
-+			if (alpha[i] > learn_parm->svm_cost[i]) alpha[i] = learn_parm->svm_cost[i];
-+		}
-+		if (kernel_parm->kernel_type != LINEAR)
-+		{
-+			for (i = 0; i < totdoc; i++)     /* fill kernel cache with unbounded SV */
-+				if ((alpha[i] > 0) && (alpha[i] < learn_parm->svm_cost[i])
-+				        && (kernel_cache_space_available(kernel_cache)))
-+					cache_kernel_row(kernel_cache, docs, i, kernel_parm);
-+			for (i = 0; i < totdoc; i++)     /* fill rest of kernel cache with bounded SV */
-+				if ((alpha[i] == learn_parm->svm_cost[i])
-+				        && (kernel_cache_space_available(kernel_cache)))
-+					cache_kernel_row(kernel_cache, docs, i, kernel_parm);
-+		}
-+		(void)compute_index(index, totdoc, index2dnum);
-+		update_linear_component(docs, label, index2dnum, alpha, a, index2dnum, totdoc,
-+		                        totwords, kernel_parm, kernel_cache, lin, aicache,
-+		                        weights);
-+		(void)calculate_svm_model(docs, label, unlabeled, lin, alpha, a, c,
-+		                          learn_parm, index2dnum, index2dnum, model);
-+		for (i = 0; i < totdoc; i++)      /* copy initial alphas */
-+		{
-+			a[i] = alpha[i];
-+		}
-+		free(index);
-+		free(index2dnum);
-+		free(weights);
-+		free(aicache);
-+		if (verbosity >= 1)
-+		{
-+			printf("done.\n");
-+			fflush(stdout);
-+		}
-+	}
-+	
-+	if (transduction)
-+	{
-+		learn_parm->svm_iter_to_shrink = 99999999;
-+		if (verbosity >= 1)
-+			printf("\nDeactivating Shrinking due to an incompatibility with the transductive \nlearner in the current version.\n\n");
-+	}
-+
-+	
-+	if (transduction && learn_parm->compute_loo)
-+	{
-+		learn_parm->compute_loo = 0;
-+		if (verbosity >= 1)
-+			printf("\nCannot compute leave-one-out estimates for transductive learner.\n\n");
-+	}
-+	
-+	if (learn_parm->remove_inconsistent && learn_parm->compute_loo)
-+	{
-+		learn_parm->compute_loo = 0;
-+		printf("\nCannot compute leave-one-out estimates when removing inconsistent examples.\n\n");
-+	}
-+	
-+	if (learn_parm->compute_loo && ((trainpos == 1) || (trainneg == 1)))
-+	{
-+		learn_parm->compute_loo = 0;
-+		printf("\nCannot compute leave-one-out with only one example in one class.\n\n");
-+	}
-+	
-+	
-+	if (verbosity == 1)
-+	{
-+		printf("Optimizing");
-+		fflush(stdout);
-+	}
-+	
-+	/* train the svm */
-+	iterations = optimize_to_convergence(docs, label, totdoc, totwords, learn_parm,
-+	                                     kernel_parm, kernel_cache, &shrink_state, model,
-+	                                     inconsistent, unlabeled, a, lin,
-+	                                     c, &timing_profile,
-+	                                     &maxdiff, (long) - 1,
-+	                                     (long)1);
-+
-+	misclassified = 0;
-+	double maxerror_ = 0;
-+	for (i = 0; (i < totdoc); i++)   /* get final statistic */
-+	{
-+		if ((lin[i] - model->b)*(double)label[i] <= 0.0)
-+		{
-+			misclassified++;
-+			if(maxerror_ < -(lin[i] - model->b)*(double)label[i])
-+				maxerror_ = -(lin[i] - model->b)*(double)label[i];
-+		}
-+	}
-+
-+	*nerrors = misclassified;
-+	*maxerror = maxerror_;
-+	                                     
-+	if (verbosity >= 1)
-+	{
-+		if (verbosity == 1) printf("done. (%ld iterations)\n", iterations);
-+		
-+		misclassified = 0;
-+		for (i = 0; (i < totdoc); i++)   /* get final statistic */
-+		{
-+			if ((lin[i] - model->b)*(double)label[i] <= 0.0)
-+				misclassified++;
-+		}
-+		
-+		printf("Optimization finished (%ld misclassified, maxdiff=%.5f).\n",
-+		       misclassified, maxdiff);
-+		       
-+		runtime_end = get_runtime();
-+		if (verbosity >= 2)
-+		{
-+			printf("Runtime in cpu-seconds: %.2f (%.2f%% for kernel/%.2f%% for optimizer/%.2f%% for final/%.2f%% for update/%.2f%% for model/%.2f%% for check/%.2f%% for select)\n",
-+			       ((float)runtime_end - (float)runtime_start) / 100.0,
-+			       (100.0*timing_profile.time_kernel) / (float)(runtime_end - runtime_start),
-+			       (100.0*timing_profile.time_opti) / (float)(runtime_end - runtime_start),
-+			       (100.0*timing_profile.time_shrink) / (float)(runtime_end - runtime_start),
-+			       (100.0*timing_profile.time_update) / (float)(runtime_end - runtime_start),
-+			       (100.0*timing_profile.time_model) / (float)(runtime_end - runtime_start),
-+			       (100.0*timing_profile.time_check) / (float)(runtime_end - runtime_start),
-+			       (100.0*timing_profile.time_select) / (float)(runtime_end - runtime_start));
-+		}
-+		else
-+		{
-+			printf("Runtime in cpu-seconds: %.2f\n",
-+			       (runtime_end - runtime_start) / 100.0);
-+		}
-+		
-+		if (learn_parm->remove_inconsistent)
-+		{
-+			inconsistentnum = 0;
-+			for (i = 0; i < totdoc; i++)
-+				if (inconsistent[i])
-+					inconsistentnum++;
-+			printf("Number of SV: %ld (plus %ld inconsistent examples)\n",
-+			       model->sv_num - 1, inconsistentnum);
-+		}
-+		else
-+		{
-+			upsupvecnum = 0;
-+			for (i = 1; i < model->sv_num; i++)
-+			{
-+				if (fabs(model->alpha[i]) >=
-+				        (learn_parm->svm_cost[(model->supvec[i])->docnum] -
-+				         learn_parm->epsilon_a))
-+					upsupvecnum++;
-+			}
-+			printf("Number of SV: %ld (including %ld at upper bound)\n",
-+			       model->sv_num - 1, upsupvecnum);
-+		}
-+		
-+		if ((verbosity >= 1) && (!learn_parm->skip_final_opt_check))
-+		{
-+			loss = 0;
-+			model_length = 0;
-+			for (i = 0; i < totdoc; i++)
-+			{
-+				if ((lin[i] - model->b)*(double)label[i] < 1.0 - learn_parm->epsilon_crit)
-+					loss += 1.0 - (lin[i] - model->b) * (double)label[i];
-+				model_length += a[i] * label[i] * lin[i];
-+			}
-+			model_length = sqrt(model_length);
-+			fprintf(stdout, "L1 loss: loss=%.5f\n", loss);
-+			fprintf(stdout, "Norm of weight vector: |w|=%.5f\n", model_length);
-+			example_length = estimate_sphere(model, kernel_parm);
-+			fprintf(stdout, "Norm of longest example vector: |x|=%.5f\n",
-+			        length_of_longest_document_vector(docs, totdoc, kernel_parm));
-+			fprintf(stdout, "Estimated VCdim of classifier: VCdim<=%.5f\n",
-+			        estimate_margin_vcdim(model, model_length, example_length,
-+			                              kernel_parm));
-+			if ((!learn_parm->remove_inconsistent) && (!transduction))
-+			{
-+				runtime_start_xa = get_runtime();
-+				if (verbosity >= 1)
-+				{
-+					printf("Computing XiAlpha-estimates...");
-+					fflush(stdout);
-+				}
-+				compute_xa_estimates(model, label, unlabeled, totdoc, docs, lin, a,
-+				                     kernel_parm, learn_parm, &(model->xa_error),
-+				                     &(model->xa_recall), &(model->xa_precision));
-+				if (verbosity >= 1)
-+				{
-+					printf("done\n");
-+				}
-+				printf("Runtime for XiAlpha-estimates in cpu-seconds: %.2f\n",
-+				       (get_runtime() - runtime_start_xa) / 100.0);
-+				       
-+				fprintf(stdout, "XiAlpha-estimate of the error: error<=%.2f%% (rho=%.2f,depth=%ld)\n",
-+				        model->xa_error, learn_parm->rho, learn_parm->xa_depth);
-+				fprintf(stdout, "XiAlpha-estimate of the recall: recall=>%.2f%% (rho=%.2f,depth=%ld)\n",
-+				        model->xa_recall, learn_parm->rho, learn_parm->xa_depth);
-+				fprintf(stdout, "XiAlpha-estimate of the precision: precision=>%.2f%% (rho=%.2f,depth=%ld)\n",
-+				        model->xa_precision, learn_parm->rho, learn_parm->xa_depth);
-+			}
-+			else if (!learn_parm->remove_inconsistent)
-+			{
-+				estimate_transduction_quality(model, label, unlabeled, totdoc, docs, lin);
-+			}
-+		}
-+		if (verbosity >= 1)
-+		{
-+			printf("Number of kernel evaluations: %ld\n", kernel_cache_statistic);
-+		}
-+	}
-+	
-+	
-+	/* leave-one-out testing starts now */
-+	if (learn_parm->compute_loo)
-+	{
-+		/* save results of training on full dataset for leave-one-out */
-+		runtime_start_loo = get_runtime();
-+		for (i = 0; i < totdoc; i++)
-+		{
-+			xi_fullset[i] = 1.0 - ((lin[i] - model->b) * (double)label[i]);
-+			if (xi_fullset[i] < 0) xi_fullset[i] = 0;
-+			a_fullset[i] = a[i];
-+		}
-+		if (verbosity >= 1)
-+		{
-+			printf("Computing leave-one-out");
-+		}
-+		
-+		/* repeat this loop for every held-out example */
-+		for (heldout = 0; (heldout < totdoc); heldout++)
-+		{
-+			if (learn_parm->rho*a_fullset[heldout]*r_delta_sq + xi_fullset[heldout]
-+			        < 1.0)
-+			{
-+				/* guaranteed to not produce a leave-one-out error */
-+				if (verbosity == 1)
-+				{
-+					printf("+");
-+					fflush(stdout);
-+				}
-+			}
-+			else if (xi_fullset[heldout] > 1.0)
-+			{
-+				/* guaranteed to produce a leave-one-out error */
-+				loo_count++;
-+				if (label[heldout] > 0)  loo_count_pos++;
-+				else loo_count_neg++;
-+				if (verbosity == 1)
-+				{
-+					printf("-");
-+					fflush(stdout);
-+				}
-+			}
-+			else
-+			{
-+				loocomputed++;
-+				heldout_c = learn_parm->svm_cost[heldout]; /* set upper bound to zero */
-+				learn_parm->svm_cost[heldout] = 0;
-+				/* make sure heldout example is not currently  */
-+				/* shrunk away. Assumes that lin is up to date! */
-+				shrink_state.active[heldout] = 1;
-+				if (verbosity >= 2)
-+					printf("\nLeave-One-Out test on example %ld\n", heldout);
-+				if (verbosity >= 1)
-+				{
-+					printf("(?[%ld]", heldout);
-+					fflush(stdout);
-+				}
-+				
-+				optimize_to_convergence(docs, label, totdoc, totwords, learn_parm,
-+				                        kernel_parm,
-+				                        kernel_cache, &shrink_state, model, inconsistent, unlabeled,
-+				                        a, lin, c, &timing_profile,
-+				                        &maxdiff, heldout, (long)2);
-+				                        
-+				/* printf("%.20f\n",(lin[heldout]-model->b)*(double)label[heldout]); */
-+				
-+				if (((lin[heldout] - model->b)*(double)label[heldout]) <= 0.0)
-+				{
-+					loo_count++;                            /* there was a loo-error */
-+					if (label[heldout] > 0)  loo_count_pos++;
-+					else loo_count_neg++;
-+					if (verbosity >= 1)
-+					{
-+						printf("-)");
-+						fflush(stdout);
-+					}
-+				}
-+				else
-+				{
-+					if (verbosity >= 1)
-+					{
-+						printf("+)");
-+						fflush(stdout);
-+					}
-+				}
-+				/* now we need to restore the original data set*/
-+				learn_parm->svm_cost[heldout] = heldout_c; /* restore upper bound */
-+			}
-+		} /* end of leave-one-out loop */
-+		
-+		
-+		if (verbosity >= 1)
-+		{
-+			printf("\nRetrain on full problem");
-+			fflush(stdout);
-+		}
-+		optimize_to_convergence(docs, label, totdoc, totwords, learn_parm,
-+		                        kernel_parm,
-+		                        kernel_cache, &shrink_state, model, inconsistent, unlabeled,
-+		                        a, lin, c, &timing_profile,
-+		                        &maxdiff, (long) - 1, (long)1);
-+		if (verbosity >= 1)
-+			printf("done.\n");
-+			
-+			
-+		/* after all leave-one-out computed */
-+		model->loo_error = 100.0 * loo_count / (double)totdoc;
-+
-+		model->loo_recall = (1.0 - (double)loo_count_pos / (double)trainpos) * 100.0;
-+		model->loo_precision = (trainpos - loo_count_pos) /
-+		                       (double)(trainpos - loo_count_pos + loo_count_neg) * 100.0;
-+		if (verbosity >= 1)
-+		{
-+			fprintf(stdout, "Leave-one-out estimate of the error: error=%.2f%%\n",
-+			        model->loo_error);
-+			fprintf(stdout, "Leave-one-out estimate of the recall: recall=%.2f%%\n",
-+			        model->loo_recall);
-+			fprintf(stdout, "Leave-one-out estimate of the precision: precision=%.2f%%\n",
-+			        model->loo_precision);
-+			fprintf(stdout, "Actual leave-one-outs computed:  %ld (rho=%.2f)\n",
-+			        loocomputed, learn_parm->rho);
-+			printf("Runtime for leave-one-out in cpu-seconds: %.2f\n",
-+			       (double)(get_runtime() - runtime_start_loo) / 100.0);
-+		}
-+	}
-+	
-+	if (learn_parm->alphafile[0])
-+		write_alphas(learn_parm->alphafile, a, label, totdoc);
-+		
-+	shrink_state_cleanup(&shrink_state);
-+	free(label);
-+	free(inconsistent);
-+	free(unlabeled);
-+	free(c);
-+	free(a);
-+	free(a_fullset);
-+	free(xi_fullset);
-+	free(lin);
-+	free(learn_parm->svm_cost);	
-+}
-+
-+
- /* Learns an SVM classification model based on the training data in
-    docs/label. The resulting model is returned in the structure
-    model. */
---- svm_learn.h	2011-09-06 22:14:22.363126903 -0400
-+++ svm_learn.h	2011-09-06 22:49:59.247171372 -0400
-@@ -19,6 +19,9 @@
- #ifndef SVM_LEARN
- #define SVM_LEARN
- 
-+void   svm_learn_classification_extend(DOC **, double *, long, long, LEARN_PARM *,
-+                                KERNEL_PARM *, KERNEL_CACHE *, MODEL *,
-+                                double *, int *, double *);
- void   svm_learn_classification(DOC **, double *, long, long, LEARN_PARM *, 
- 				KERNEL_PARM *, KERNEL_CACHE *, MODEL *,
- 				double *);
-@@ -152,6 +155,7 @@ double estimate_r_delta_average(DOC **, 
- double estimate_r_delta(DOC **, long, KERNEL_PARM *); 
- double length_of_longest_document_vector(DOC **, long, KERNEL_PARM *); 
- 
-+
- void   write_model(char *, MODEL *);
- void   write_prediction(char *, MODEL *, double *, double *, long *, long *,
- 			long, LEARN_PARM *);
diff --git a/trunk/svm_light/svm_light/include/svm_light/kernel.h b/trunk/svm_light/svm_light/include/svm_light/kernel.h
deleted file mode 100755
index 0133b00661fe990c832eabe2f110166c991b814e..0000000000000000000000000000000000000000
--- a/trunk/svm_light/svm_light/include/svm_light/kernel.h
+++ /dev/null
@@ -1,40 +0,0 @@
-/************************************************************************/
-/*                                                                      */
-/*   kernel.h                                                           */
-/*                                                                      */
-/*   User defined kernel function. Feel free to plug in your own.       */
-/*                                                                      */
-/*   Copyright: Thorsten Joachims                                       */
-/*   Date: 16.12.97                                                     */
-/*                                                                      */
-/************************************************************************/
-
-/* KERNEL_PARM is defined in svm_common.h The field 'custom' is reserved for */
-/* parameters of the user defined kernel. You can also access and use */
-/* the parameters of the other kernels. Just replace the line 
-             return((double)(1.0)); 
-   with your own kernel. */
-
-  /* Example: The following computes the polynomial kernel. sprod_ss
-              computes the inner product between two sparse vectors. 
-
-      return((CFLOAT)pow(kernel_parm->coef_lin*sprod_ss(a->words,b->words)
-             +kernel_parm->coef_const,(double)kernel_parm->poly_degree)); 
-  */
-
-/* If you are implementing a kernel that is not based on a
-   feature/value representation, you might want to make use of the
-   field "userdefined" in SVECTOR. By default, this field will contain
-   whatever string you put behind a # sign in the example file. So, if
-   a line in your training file looks like
-
-   -1 1:3 5:6 #abcdefg
-
-   then the SVECTOR field "words" will contain the vector 1:3 5:6, and
-   "userdefined" will contain the string "abcdefg". */
-
-double custom_kernel(KERNEL_PARM *kernel_parm, SVECTOR *a, SVECTOR *b) 
-     /* plug in you favorite kernel */                          
-{
-  return((double)(1.0)); 
-}
diff --git a/trunk/svm_light/svm_light/include/svm_light/svm_common.h b/trunk/svm_light/svm_light/include/svm_light/svm_common.h
deleted file mode 100755
index 6487fa1d1017d9fcb3b32d7e66cc514b4af9bddf..0000000000000000000000000000000000000000
--- a/trunk/svm_light/svm_light/include/svm_light/svm_common.h
+++ /dev/null
@@ -1,301 +0,0 @@
-/************************************************************************/
-/*                                                                      */
-/*   svm_common.h                                                       */
-/*                                                                      */
-/*   Definitions and functions used in both svm_learn and svm_classify. */
-/*                                                                      */
-/*   Author: Thorsten Joachims                                          */
-/*   Date: 02.07.02                                                     */
-/*                                                                      */
-/*   Copyright (c) 2002  Thorsten Joachims - All rights reserved        */
-/*                                                                      */
-/*   This software is available for non-commercial use only. It must    */
-/*   not be modified and distributed without prior permission of the    */
-/*   author. The author is not responsible for implications from the    */
-/*   use of this software.                                              */
-/*                                                                      */
-/************************************************************************/
-
-#ifndef SVM_COMMON
-#define SVM_COMMON
-
-# include <stdio.h>
-# include <ctype.h>
-# include <math.h>
-# include <string.h>
-# include <stdlib.h>
-# include <time.h> 
-# include <float.h>
-
-# define VERSION       "V6.02"
-# define VERSION_DATE  "14.08.08"
-
-# define CFLOAT  float       /* the type of float to use for caching */
-                             /* kernel evaluations. Using float saves */
-                             /* us some memory, but you can use double, too */
-# define FNUM    long        /* the type used for storing feature ids */
-# define FVAL    float       /* the type used for storing feature values */
-# define MAXFEATNUM 99999999 /* maximum feature number (must be in
-			  	valid range of FNUM type and long int!) */
-
-# define LINEAR  0           /* linear kernel type */
-# define POLY    1           /* polynoial kernel type */
-# define RBF     2           /* rbf kernel type */
-# define SIGMOID 3           /* sigmoid kernel type */
-
-# define CLASSIFICATION 1    /* train classification model */
-# define REGRESSION     2    /* train regression model */
-# define RANKING        3    /* train ranking model */
-# define OPTIMIZATION   4    /* train on general set of constraints */
-
-# define MAXSHRINK     50000    /* maximum number of shrinking rounds */
-
-typedef struct word {
-  FNUM    wnum;	               /* word number */
-  FVAL    weight;              /* word weight */
-} WORD;
-
-typedef struct svector {
-  WORD    *words;              /* The features/values in the vector by
-				  increasing feature-number. Feature
-				  numbers that are skipped are
-				  interpreted as having value zero. */
-  double  twonorm_sq;          /* The squared euclidian length of the
-                                  vector. Used to speed up the RBF kernel. */
-  char    *userdefined;        /* You can put additional information
-				  here. This can be useful, if you are
-				  implementing your own kernel that
-				  does not work with feature/values
-				  representations (for example a
-				  string kernel). By default,
-				  svm-light will put here the string
-				  after the # sign from each line of
-				  the input file. */
-  long    kernel_id;           /* Feature vectors with different
-				  kernel_id's are orthogonal (ie. the
-				  feature number do not match). This
-				  is used for computing component
-				  kernels for linear constraints which
-				  are a sum of several different
-				  weight vectors. (currently not
-				  implemented). */
-  struct svector *next;        /* Let's you set up a list of SVECTOR's
-				  for linear constraints which are a
-				  sum of multiple feature
-				  vectors. List is terminated by
-				  NULL. */
-  double  factor;              /* Factor by which this feature vector
-				  is multiplied in the sum. */
-} SVECTOR;
-
-typedef struct doc {
-  long    docnum;              /* Document ID. This has to be the position of 
-                                  the document in the training set array. */
-  long    queryid;             /* for learning rankings, constraints are 
-				  generated for documents with the same 
-				  queryID. */
-  double  costfactor;          /* Scales the cost of misclassifying this
-				  document by this factor. The effect of this
-				  value is, that the upper bound on the alpha
-				  for this example is scaled by this factor.
-				  The factors are set by the feature 
-				  'cost:<val>' in the training data. */
-  long    slackid;             /* Index of the slack variable
-				  corresponding to this
-				  constraint. All constraints with the
-				  same slackid share the same slack
-				  variable. This can only be used for
-				  svm_learn_optimization. */
-  SVECTOR *fvec;               /* Feature vector of the example. The
-				  feature vector can actually be a
-				  list of feature vectors. For
-				  example, the list will have two
-				  elements, if this DOC is a
-				  preference constraint. The one
-				  vector that is supposed to be ranked
-				  higher, will have a factor of +1,
-				  the lower ranked one should have a
-				  factor of -1. */
-} DOC;
-
-typedef struct learn_parm {
-  long   type;                 /* selects between regression and
-				  classification */
-  double svm_c;                /* upper bound C on alphas */
-  double eps;                  /* regression epsilon (eps=1.0 for
-				  classification */
-  double svm_costratio;        /* factor to multiply C for positive examples */
-  double transduction_posratio;/* fraction of unlabeled examples to be */
-                               /* classified as positives */
-  long   biased_hyperplane;    /* if nonzero, use hyperplane w*x+b=0 
-				  otherwise w*x=0 */
-  long   sharedslack;          /* if nonzero, it will use the shared
-                                  slack variable mode in
-                                  svm_learn_optimization. It requires
-                                  that the slackid is set for every
-                                  training example */
-  long   svm_maxqpsize;        /* size q of working set */
-  long   svm_newvarsinqp;      /* new variables to enter the working set 
-				  in each iteration */
-  long   kernel_cache_size;    /* size of kernel cache in megabytes */
-  double epsilon_crit;         /* tolerable error for distances used 
-				  in stopping criterion */
-  double epsilon_shrink;       /* how much a multiplier should be above 
-				  zero for shrinking */
-  long   svm_iter_to_shrink;   /* iterations h after which an example can
-				  be removed by shrinking */
-  long   maxiter;              /* number of iterations after which the
-				  optimizer terminates, if there was
-				  no progress in maxdiff */
-  long   remove_inconsistent;  /* exclude examples with alpha at C and 
-				  retrain */
-  long   skip_final_opt_check; /* do not check KT-Conditions at the end of
-				  optimization for examples removed by 
-				  shrinking. WARNING: This might lead to 
-				  sub-optimal solutions! */
-  long   compute_loo;          /* if nonzero, computes leave-one-out
-				  estimates */
-  double rho;                  /* parameter in xi/alpha-estimates and for
-				  pruning leave-one-out range [1..2] */
-  long   xa_depth;             /* parameter in xi/alpha-estimates upper
-				  bounding the number of SV the current
-				  alpha_t is distributed over */
-  char predfile[200];          /* file for predicitions on unlabeled examples
-				  in transduction */
-  char alphafile[200];         /* file to store optimal alphas in. use  
-				  empty string if alphas should not be 
-				  output */
-
-  /* you probably do not want to touch the following */
-  double epsilon_const;        /* tolerable error on eq-constraint */
-  double epsilon_a;            /* tolerable error on alphas at bounds */
-  double opt_precision;        /* precision of solver, set to e.g. 1e-21 
-				  if you get convergence problems */
-
-  /* the following are only for internal use */
-  long   svm_c_steps;          /* do so many steps for finding optimal C */
-  double svm_c_factor;         /* increase C by this factor every step */
-  double svm_costratio_unlab;
-  double svm_unlabbound;
-  double *svm_cost;            /* individual upper bounds for each var */
-  long   totwords;             /* number of features */
-} LEARN_PARM;
-
-typedef struct kernel_parm {
-  long    kernel_type;   /* 0=linear, 1=poly, 2=rbf, 3=sigmoid, 4=custom */
-  long    poly_degree;
-  double  rbf_gamma;
-  double  coef_lin;
-  double  coef_const;
-  char    custom[50];    /* for user supplied kernel */
-} KERNEL_PARM;
-
-typedef struct model {
-  long    sv_num;	
-  long    at_upper_bound;
-  double  b;
-  DOC     **supvec;
-  double  *alpha;
-  long    *index;       /* index from docnum to position in model */
-  long    totwords;     /* number of features */
-  long    totdoc;       /* number of training documents */
-  KERNEL_PARM kernel_parm; /* kernel */
-
-  /* the following values are not written to file */
-  double  loo_error,loo_recall,loo_precision; /* leave-one-out estimates */
-  double  xa_error,xa_recall,xa_precision;    /* xi/alpha estimates */
-  double  *lin_weights;                       /* weights for linear case using
-						 folding */
-  double  maxdiff;                            /* precision, up to which this 
-						 model is accurate */
-} MODEL;
-
-typedef struct quadratic_program {
-  long   opt_n;            /* number of variables */
-  long   opt_m;            /* number of linear equality constraints */
-  double *opt_ce,*opt_ce0; /* linear equality constraints */
-  double *opt_g;           /* hessian of objective */
-  double *opt_g0;          /* linear part of objective */
-  double *opt_xinit;       /* initial value for variables */
-  double *opt_low,*opt_up; /* box constraints */
-} QP;
-
-typedef struct kernel_cache {
-  long   *index;  /* cache some kernel evalutations */
-  CFLOAT *buffer; /* to improve speed */
-  long   *invindex;
-  long   *active2totdoc;
-  long   *totdoc2active;
-  long   *lru;
-  long   *occu;
-  long   elems;
-  long   max_elems;
-  long   time;
-  long   activenum;
-  long   buffsize;
-} KERNEL_CACHE;
-
-
-typedef struct timing_profile {
-  long   time_kernel;
-  long   time_opti;
-  long   time_shrink;
-  long   time_update;
-  long   time_model;
-  long   time_check;
-  long   time_select;
-} TIMING;
-
-typedef struct shrink_state {
-  long   *active;
-  long   *inactive_since;
-  long   deactnum;
-  double **a_history;  /* for shrinking with non-linear kernel */
-  long   maxhistory;
-  double *last_a;      /* for shrinking with linear kernel */
-  double *last_lin;    /* for shrinking with linear kernel */
-} SHRINK_STATE;
-
-double classify_example(MODEL *, DOC *);
-double classify_example_linear(MODEL *, DOC *);
-double kernel(KERNEL_PARM *, DOC *, DOC *); 
-double single_kernel(KERNEL_PARM *, SVECTOR *, SVECTOR *); 
-double custom_kernel(KERNEL_PARM *, SVECTOR *, SVECTOR *); 
-SVECTOR *create_svector(WORD *, char *, double);
-SVECTOR *copy_svector(SVECTOR *);
-void   free_svector(SVECTOR *);
-double    sprod_ss(SVECTOR *, SVECTOR *);
-SVECTOR*  sub_ss(SVECTOR *, SVECTOR *); 
-SVECTOR*  add_ss(SVECTOR *, SVECTOR *); 
-SVECTOR*  add_list_ss(SVECTOR *); 
-void      append_svector_list(SVECTOR *a, SVECTOR *b);
-SVECTOR*  smult_s(SVECTOR *, double);
-int       featvec_eq(SVECTOR *, SVECTOR *); 
-double model_length_s(MODEL *, KERNEL_PARM *);
-void   clear_vector_n(double *, long);
-void   add_vector_ns(double *, SVECTOR *, double);
-double sprod_ns(double *, SVECTOR *);
-void   add_weight_vector_to_linear_model(MODEL *);
-DOC    *create_example(long, long, long, double, SVECTOR *);
-void   free_example(DOC *, long);
-MODEL  *read_model(char *);
-MODEL  *copy_model(MODEL *);
-void   free_model(MODEL *, int);
-void   read_documents(char *, DOC ***, double **, long *, long *);
-int    parse_document(char *, WORD *, double *, long *, long *, double *, long *, long, char **);
-double *read_alphas(char *,long);
-void   nol_ll(char *, long *, long *, long *);
-long   minl(long, long);
-long   maxl(long, long);
-long   get_runtime(void);
-int    space_or_null(int);
-void   *my_malloc(size_t); 
-void   copyright_notice(void);
-# ifdef _MSC_VER
-   int isnan(double);
-# endif
-
-extern long   verbosity;              /* verbosity level (0-4) */
-extern long   kernel_cache_statistic;
-
-#endif
diff --git a/trunk/svm_light/svm_light/include/svm_light/svm_learn.h b/trunk/svm_light/svm_light/include/svm_light/svm_learn.h
deleted file mode 100755
index 8a1edf7b75c6b2b6ea6952062a61ee7e7b4f8fbd..0000000000000000000000000000000000000000
--- a/trunk/svm_light/svm_light/include/svm_light/svm_learn.h
+++ /dev/null
@@ -1,173 +0,0 @@
-/***********************************************************************/
-/*                                                                     */
-/*   svm_learn.h                                                       */
-/*                                                                     */
-/*   Declarations for learning module of Support Vector Machine.       */
-/*                                                                     */
-/*   Author: Thorsten Joachims                                         */
-/*   Date: 02.07.02                                                    */
-/*                                                                     */
-/*   Copyright (c) 2002  Thorsten Joachims - All rights reserved       */
-/*                                                                     */
-/*   This software is available for non-commercial use only. It must   */
-/*   not be modified and distributed without prior permission of the   */
-/*   author. The author is not responsible for implications from the   */
-/*   use of this software.                                             */
-/*                                                                     */
-/***********************************************************************/
-
-#ifndef SVM_LEARN
-#define SVM_LEARN
-
-void   svm_learn_classification_extend(DOC **, double *, long, long, LEARN_PARM *,
-                                KERNEL_PARM *, KERNEL_CACHE *, MODEL *,
-                                double *, int *, double *);
-void   svm_learn_classification(DOC **, double *, long, long, LEARN_PARM *, 
-				KERNEL_PARM *, KERNEL_CACHE *, MODEL *,
-				double *);
-void   svm_learn_regression(DOC **, double *, long, long, LEARN_PARM *, 
-			    KERNEL_PARM *, KERNEL_CACHE **, MODEL *);
-void   svm_learn_ranking(DOC **, double *, long, long, LEARN_PARM *, 
-			 KERNEL_PARM *, KERNEL_CACHE **, MODEL *);
-void   svm_learn_optimization(DOC **, double *, long, long, LEARN_PARM *, 
-			      KERNEL_PARM *, KERNEL_CACHE *, MODEL *,
-			      double *);
-long   optimize_to_convergence(DOC **, long *, long, long, LEARN_PARM *,
-			       KERNEL_PARM *, KERNEL_CACHE *, SHRINK_STATE *,
-			       MODEL *, long *, long *, double *,
-			       double *, double *,
-			       TIMING *, double *, long, long);
-long   optimize_to_convergence_sharedslack(DOC **, long *, long, long, 
-			       LEARN_PARM *,
-			       KERNEL_PARM *, KERNEL_CACHE *, SHRINK_STATE *,
-			       MODEL *, double *, double *, double *,
-			       TIMING *, double *);
-double compute_objective_function(double *, double *, double *, double,
-				  long *, long *);
-void   clear_index(long *);
-void   add_to_index(long *, long);
-long   compute_index(long *,long, long *);
-void   optimize_svm(DOC **, long *, long *, long *, double, long *, long *, 
-		    MODEL *, 
-		    long, long *, long, double *, double *, double *, 
-		    LEARN_PARM *, CFLOAT *, KERNEL_PARM *, QP *, double *);
-void   compute_matrices_for_optimization(DOC **, long *, long *, long *, double,
-					 long *,
-					 long *, long *, MODEL *, double *, 
-					 double *, double *, long, long, LEARN_PARM *, 
-					 CFLOAT *, KERNEL_PARM *, QP *);
-long   calculate_svm_model(DOC **, long *, long *, double *, double *, 
-			   double *, double *, LEARN_PARM *, long *,
-			   long *, MODEL *);
-long   check_optimality(MODEL *, long *, long *, double *, double *,
-			double *, long, 
-			LEARN_PARM *,double *, double, long *, long *, long *,
-			long *, long, KERNEL_PARM *);
-long   check_optimality_sharedslack(DOC **docs, MODEL *model, long int *label,
-		      double *a, double *lin, double *c, double *slack,
-		      double *alphaslack, long int totdoc, 
-		      LEARN_PARM *learn_parm, double *maxdiff, 
-		      double epsilon_crit_org, long int *misclassified, 
-		      long int *active2dnum,
-		      long int *last_suboptimal_at, 
-		      long int iteration, KERNEL_PARM *kernel_parm);
-void   compute_shared_slacks(DOC **docs, long int *label, double *a, 
-			     double *lin, double *c, long int *active2dnum, 
-			     LEARN_PARM *learn_parm,
-			     double *slack, double *alphaslack);
-long   identify_inconsistent(double *, long *, long *, long, LEARN_PARM *, 
-			     long *, long *);
-long   identify_misclassified(double *, long *, long *, long,
-			      MODEL *, long *, long *);
-long   identify_one_misclassified(double *, long *, long *, long,
-				  MODEL *, long *, long *);
-long   incorporate_unlabeled_examples(MODEL *, long *,long *, long *,
-				      double *, double *, long, double *,
-				      long *, long *, long, KERNEL_PARM *,
-				      LEARN_PARM *);
-void   update_linear_component(DOC **, long *, long *, double *, double *, 
-			       long *, long, long, KERNEL_PARM *, 
-			       KERNEL_CACHE *, double *,
-			       CFLOAT *, double *);
-long   select_next_qp_subproblem_grad(long *, long *, double *, 
-				      double *, double *, long,
-				      long, LEARN_PARM *, long *, long *, 
-				      long *, double *, long *, KERNEL_CACHE *,
-				      long, long *, long *);
-long   select_next_qp_subproblem_rand(long *, long *, double *, 
-				      double *, double *, long,
-				      long, LEARN_PARM *, long *, long *, 
-				      long *, double *, long *, KERNEL_CACHE *,
-				      long *, long *, long);
-long   select_next_qp_slackset(DOC **docs, long int *label, double *a, 
-			       double *lin, double *slack, double *alphaslack, 
-			       double *c, LEARN_PARM *learn_parm, 
-			       long int *active2dnum, double *maxviol);
-void   select_top_n(double *, long, long *, long);
-void   init_shrink_state(SHRINK_STATE *, long, long);
-void   shrink_state_cleanup(SHRINK_STATE *);
-long   shrink_problem(DOC **, LEARN_PARM *, SHRINK_STATE *, KERNEL_PARM *, 
-		      long *, long *, long, long, long, double *, long *);
-void   reactivate_inactive_examples(long *, long *, double *, SHRINK_STATE *,
-				    double *, double*, long, long, long, LEARN_PARM *, 
-				    long *, DOC **, KERNEL_PARM *,
-				    KERNEL_CACHE *, MODEL *, CFLOAT *, 
-				    double *, double *);
-
-/* cache kernel evalutations to improve speed */
-KERNEL_CACHE *kernel_cache_init(long, long);
-void   kernel_cache_cleanup(KERNEL_CACHE *);
-void   get_kernel_row(KERNEL_CACHE *,DOC **, long, long, long *, CFLOAT *, 
-		      KERNEL_PARM *);
-void   cache_kernel_row(KERNEL_CACHE *,DOC **, long, KERNEL_PARM *);
-void   cache_multiple_kernel_rows(KERNEL_CACHE *,DOC **, long *, long, 
-				  KERNEL_PARM *);
-void   kernel_cache_shrink(KERNEL_CACHE *,long, long, long *);
-void   kernel_cache_reset_lru(KERNEL_CACHE *);
-long   kernel_cache_malloc(KERNEL_CACHE *);
-void   kernel_cache_free(KERNEL_CACHE *,long);
-long   kernel_cache_free_lru(KERNEL_CACHE *);
-CFLOAT *kernel_cache_clean_and_malloc(KERNEL_CACHE *,long);
-long   kernel_cache_touch(KERNEL_CACHE *,long);
-long   kernel_cache_check(KERNEL_CACHE *,long);
-long   kernel_cache_space_available(KERNEL_CACHE *);
-
-void compute_xa_estimates(MODEL *, long *, long *, long, DOC **, 
-			  double *, double *, KERNEL_PARM *, 
-			  LEARN_PARM *, double *, double *, double *);
-double xa_estimate_error(MODEL *, long *, long *, long, DOC **, 
-			 double *, double *, KERNEL_PARM *, 
-			 LEARN_PARM *);
-double xa_estimate_recall(MODEL *, long *, long *, long, DOC **, 
-			  double *, double *, KERNEL_PARM *, 
-			  LEARN_PARM *);
-double xa_estimate_precision(MODEL *, long *, long *, long, DOC **, 
-			     double *, double *, KERNEL_PARM *, 
-			     LEARN_PARM *);
-void avg_similarity_of_sv_of_one_class(MODEL *, DOC **, double *, long *, KERNEL_PARM *, double *, double *);
-double most_similar_sv_of_same_class(MODEL *, DOC **, double *, long, long *, KERNEL_PARM *, LEARN_PARM *);
-double distribute_alpha_t_greedily(long *, long, DOC **, double *, long, long *, KERNEL_PARM *, LEARN_PARM *, double);
-double distribute_alpha_t_greedily_noindex(MODEL *, DOC **, double *, long, long *, KERNEL_PARM *, LEARN_PARM *, double); 
-void estimate_transduction_quality(MODEL *, long *, long *, long, DOC **, double *);
-double estimate_margin_vcdim(MODEL *, double, double, KERNEL_PARM *);
-double estimate_sphere(MODEL *, KERNEL_PARM *);
-double estimate_r_delta_average(DOC **, long, KERNEL_PARM *); 
-double estimate_r_delta(DOC **, long, KERNEL_PARM *); 
-double length_of_longest_document_vector(DOC **, long, KERNEL_PARM *); 
-
-
-void   write_model(char *, MODEL *);
-void   write_prediction(char *, MODEL *, double *, double *, long *, long *,
-			long, LEARN_PARM *);
-void   write_alphas(char *, double *, long *, long);
-
-typedef struct cache_parm_s {
-  KERNEL_CACHE *kernel_cache;
-  CFLOAT *cache;
-  DOC **docs; 
-  long m;
-  KERNEL_PARM *kernel_parm;
-  long offset,stepsize;
-} cache_parm_t;
-
-#endif
diff --git a/trunk/svm_light/wiped b/trunk/svm_light/wiped
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000