diff --git a/OpenGL/GLKBaseEffectDrawing/AppDelegate.cs b/OpenGL/GLKBaseEffectDrawing/AppDelegate.cs new file mode 100644 index 000000000..568ec8030 --- /dev/null +++ b/OpenGL/GLKBaseEffectDrawing/AppDelegate.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using MonoTouch.Foundation; +using MonoTouch.UIKit; + +namespace GLKBaseEffectDrawing +{ + [Register ("AppDelegate")] + public partial class AppDelegate : UIApplicationDelegate + { + UIWindow window; + MCViewController controller; + + public override bool FinishedLaunching (UIApplication app, NSDictionary options) + { + window = new UIWindow (UIScreen.MainScreen.Bounds); + + controller = new MCViewController (); + window.RootViewController = controller; + + window.MakeKeyAndVisible (); + + return true; + } + } +} + diff --git a/OpenGL/GLKBaseEffectDrawing/GLKBaseEffectDrawing.csproj b/OpenGL/GLKBaseEffectDrawing/GLKBaseEffectDrawing.csproj new file mode 100644 index 000000000..b80f2babb --- /dev/null +++ b/OpenGL/GLKBaseEffectDrawing/GLKBaseEffectDrawing.csproj @@ -0,0 +1,92 @@ + + + + Debug + iPhoneSimulator + 10.0.0 + 2.0 + {F17A7552-709F-4109-AFD2-FE557F0C4CD7} + {6BC8ED88-2882-458C-8E55-DFD12B67127B};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + Exe + GLKBaseEffectDrawing + Resources + GLKBaseEffectDrawing + + + true + false + bin\iPhoneSimulator\Debug + DEBUG; + prompt + 4 + false + None + true + + + true + bin\iPhoneSimulator\Release + prompt + 4 + false + None + + + true + false + bin\iPhone\Debug + DEBUG; + prompt + 4 + false + true + iPhone Developer + + + true + bin\iPhone\Release + prompt + 4 + false + iPhone Developer + + + true + bin\iPhone\Ad-Hoc + prompt + 4 + true + iPhone Distribution + false + Automatic:AdHoc + + + true + bin\iPhone\AppStore + prompt + 4 + false + iPhone Distribution + Automatic:AppStore + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/OpenGL/GLKBaseEffectDrawing/Info.plist b/OpenGL/GLKBaseEffectDrawing/Info.plist new file mode 100644 index 000000000..cce0988b0 --- /dev/null +++ b/OpenGL/GLKBaseEffectDrawing/Info.plist @@ -0,0 +1,19 @@ + + + + + UIDeviceFamily + + 2 + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + MinimumOSVersion + 3.2 + + diff --git a/OpenGL/GLKBaseEffectDrawing/MCViewController.cs b/OpenGL/GLKBaseEffectDrawing/MCViewController.cs new file mode 100644 index 000000000..2ca303eb7 --- /dev/null +++ b/OpenGL/GLKBaseEffectDrawing/MCViewController.cs @@ -0,0 +1,118 @@ +using System; +using MonoTouch.UIKit; +using OpenTK; +using MonoTouch.OpenGLES; +using MonoTouch.GLKit; +using MonoTouch; +using OpenTK.Graphics.ES20; +using MonoTouch.CoreGraphics; +using System.Drawing; + +namespace GLKBaseEffectDrawing +{ + public class MCViewController : GLKViewController + { + float rotation; + uint vertexArray; + uint vertexBuffer; + EAGLContext context; + GLKBaseEffect effect; + + public MCViewController () + { + + } + + public override void ViewDidLoad () + { + base.ViewDidLoad (); + + context = new EAGLContext (EAGLRenderingAPI.OpenGLES2); + + if (context == null) + Console.WriteLine ("Failed to create ES context"); + + GLKView view = View as GLKView; + view.Context = context; + view.DrawableDepthFormat = GLKViewDrawableDepthFormat.Format24; + view.DrawInRect += Draw; + + setupGL (); + } + + void setupGL () + { + EAGLContext.SetCurrentContext (context); + + effect = new GLKBaseEffect (); + effect.LightingType = GLKLightingType.PerPixel; + + effect.Light0.Enabled = true; + effect.Light0.DiffuseColor = new Vector4 (1.0f, 0.4f, 0.4f, 1.0f); + effect.Light0.Position = new Vector4 (-5f, -5f, 10f, 1f); + effect.Light0.SpecularColor = new Vector4 (1f, 0f, 0f, 1f); + + effect.Light1.Enabled = true; + effect.Light1.DiffuseColor = new Vector4 (1f, 0.4f, 0.4f, 1f); + effect.Light1.Position = new Vector4 (15f, 15f, 10f, 1f); + effect.Light1.SpecularColor = new Vector4 (1f, 0f, 0f, 1f); + + effect.Material.DiffuseColor = new Vector4 (0f, 0.5f, 1f, 1f); + effect.Material.AmbientColor = new Vector4 (0f, 0.5f, 0f, 1f); + effect.Material.SpecularColor = new Vector4 (1f, 0f, 0f, 1f); + effect.Material.Shininess = 20f; + effect.Material.EmissiveColor = new Vector4 (0.2f, 0f, 0.2f, 1f); + + GL.Enable (EnableCap.DepthTest); + + GL.Oes.GenVertexArrays (1, out vertexArray); + GL.Oes.BindVertexArray (vertexArray); + + GL.GenBuffers (1, out vertexBuffer); + GL.BindBuffer (BufferTarget.ArrayBuffer, vertexBuffer); + GL.BufferData (BufferTarget.ArrayBuffer, (IntPtr)(Monkey.MeshVertexData.Length * sizeof(float)), + Monkey.MeshVertexData, BufferUsage.StaticDraw); + + GL.EnableVertexAttribArray ((int) GLKVertexAttrib.Position); + GL.VertexAttribPointer ((int) GLKVertexAttrib.Position, 3, VertexAttribPointerType.Float, + false, 6 * sizeof(float), 0); + + GL.EnableVertexAttribArray ((int) GLKVertexAttrib.Normal); + GL.VertexAttribPointer ((int) GLKVertexAttrib.Normal, 3, VertexAttribPointerType.Float, + false, 6 * sizeof(float), 12); + + GL.Oes.BindVertexArray (0); + } + + public override void Update () + { + float aspect = (float)Math.Abs (View.Bounds.Size.Width / View.Bounds.Size.Height); + + Matrix4 projectionMatrix = + Matrix4.CreatePerspectiveFieldOfView ((float) (Math.PI * 65f / 180.0f), + aspect, 0.1f, 100.0f); + + effect.Transform.ProjectionMatrix = projectionMatrix; + + Matrix4 modelViewMatrix = Matrix4.CreateTranslation (new Vector3 (0f, 0f, -3.5f)); + modelViewMatrix = Matrix4.Mult (Matrix4.CreateFromAxisAngle (new Vector3 (1f, 1f, 1f), rotation), modelViewMatrix); + + effect.Transform.ModelViewMatrix = modelViewMatrix; + + rotation += (float)TimeSinceLastUpdate * 0.5f; + } + + public void Draw (object sender, GLKViewDrawEventArgs args) + { + GL.ClearColor (0.65f, 0.65f, 0.65f, 1f); + GL.Clear (ClearBufferMask.ColorBufferBit | ClearBufferMask.DepthBufferBit); + + GL.Oes.BindVertexArray (vertexArray); + + effect.PrepareToDraw (); + + GL.DrawArrays (BeginMode.Triangles, 0, Monkey.MeshVertexData.Length / 6); + } + } +} + diff --git a/OpenGL/GLKBaseEffectDrawing/Main.cs b/OpenGL/GLKBaseEffectDrawing/Main.cs new file mode 100644 index 000000000..4f6ec71ba --- /dev/null +++ b/OpenGL/GLKBaseEffectDrawing/Main.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using MonoTouch.Foundation; +using MonoTouch.UIKit; + +namespace GLKBaseEffectDrawing +{ + public class Application + { + // This is the main entry point of the application. + static void Main (string[] args) + { + // if you want to use a different Application Delegate class from "AppDelegate" + // you can specify it here. + UIApplication.Main (args, null, "AppDelegate"); + } + } +} diff --git a/OpenGL/GLKBaseEffectDrawing/Monkey.cs b/OpenGL/GLKBaseEffectDrawing/Monkey.cs new file mode 100644 index 000000000..34a551cf8 --- /dev/null +++ b/OpenGL/GLKBaseEffectDrawing/Monkey.cs @@ -0,0 +1,2916 @@ +using System; +using OpenTK; + +namespace GLKBaseEffectDrawing +{ + public static class Monkey + { + public static float[] MeshVertexData = { + /*v:*/0.351562f, 0.500724f, 0.433432f, /*n:*/0.183599f, -0.005310f, 0.982971f, + /*v:*/0.445312f, 0.414787f, 0.386557f, /*n:*/0.715171f, -0.662465f, 0.222724f, + /*v:*/0.476562f, 0.500724f, 0.378744f, /*n:*/0.964446f, -0.012665f, 0.263863f, + /*v:*/-0.476562f, 0.500724f, 0.378744f, /*n:*/-0.964446f, -0.012665f, 0.263863f, + /*v:*/-0.445312f, 0.414787f, 0.386557f, /*n:*/-0.715171f, -0.662465f, 0.222724f, + /*v:*/-0.351562f, 0.500724f, 0.433432f, /*n:*/-0.183599f, -0.005310f, 0.982971f, + /*v:*/0.351562f, 0.375724f, 0.409994f, /*n:*/0.042543f, -0.940336f, 0.337474f, + /*v:*/0.445312f, 0.414787f, 0.386557f, /*n:*/0.715171f, -0.662465f, 0.222724f, + /*v:*/0.351562f, 0.500724f, 0.433432f, /*n:*/0.183599f, -0.005310f, 0.982971f, + /*v:*/-0.351562f, 0.500724f, 0.433432f, /*n:*/-0.183599f, -0.005310f, 0.982971f, + /*v:*/-0.445312f, 0.414787f, 0.386557f, /*n:*/-0.715171f, -0.662465f, 0.222724f, + /*v:*/-0.351562f, 0.375724f, 0.409994f, /*n:*/-0.042543f, -0.940336f, 0.337474f, + /*v:*/0.351562f, 0.500724f, 0.433432f, /*n:*/0.183599f, -0.005310f, 0.982971f, + /*v:*/0.265625f, 0.414787f, 0.425619f, /*n:*/-0.615864f, -0.636616f, 0.464095f, + /*v:*/0.351562f, 0.375724f, 0.409994f, /*n:*/0.042543f, -0.940336f, 0.337474f, + /*v:*/-0.351562f, 0.375724f, 0.409994f, /*n:*/-0.042543f, -0.940336f, 0.337474f, + /*v:*/-0.265625f, 0.414787f, 0.425619f, /*n:*/0.615864f, -0.636616f, 0.464095f, + /*v:*/-0.351562f, 0.500724f, 0.433432f, /*n:*/-0.183599f, -0.005310f, 0.982971f, + /*v:*/0.351562f, 0.500724f, 0.433432f, /*n:*/0.183599f, -0.005310f, 0.982971f, + /*v:*/0.226562f, 0.500724f, 0.425619f, /*n:*/-0.926969f, -0.012940f, 0.374889f, + /*v:*/0.265625f, 0.414787f, 0.425619f, /*n:*/-0.615864f, -0.636616f, 0.464095f, + /*v:*/-0.265625f, 0.414787f, 0.425619f, /*n:*/0.615864f, -0.636616f, 0.464095f, + /*v:*/-0.226562f, 0.500724f, 0.425619f, /*n:*/0.926969f, -0.012940f, 0.374889f, + /*v:*/-0.351562f, 0.500724f, 0.433432f, /*n:*/-0.183599f, -0.005310f, 0.982971f, + /*v:*/0.351562f, 0.500724f, 0.433432f, /*n:*/0.183599f, -0.005310f, 0.982971f, + /*v:*/0.265625f, 0.594474f, 0.425619f, /*n:*/-0.623676f, 0.628529f, 0.464675f, + /*v:*/0.226562f, 0.500724f, 0.425619f, /*n:*/-0.926969f, -0.012940f, 0.374889f, + /*v:*/-0.226562f, 0.500724f, 0.425619f, /*n:*/0.926969f, -0.012940f, 0.374889f, + /*v:*/-0.265625f, 0.594474f, 0.425619f, /*n:*/0.623676f, 0.628529f, 0.464675f, + /*v:*/-0.351562f, 0.500724f, 0.433432f, /*n:*/-0.183599f, -0.005310f, 0.982971f, + /*v:*/0.351562f, 0.500724f, 0.433432f, /*n:*/0.183599f, -0.005310f, 0.982971f, + /*v:*/0.351562f, 0.633537f, 0.409994f, /*n:*/0.043153f, 0.938902f, 0.341441f, + /*v:*/0.265625f, 0.594474f, 0.425619f, /*n:*/-0.623676f, 0.628529f, 0.464675f, + /*v:*/-0.265625f, 0.594474f, 0.425619f, /*n:*/0.623676f, 0.628529f, 0.464675f, + /*v:*/-0.351562f, 0.633537f, 0.409994f, /*n:*/-0.043153f, 0.938902f, 0.341441f, + /*v:*/-0.351562f, 0.500724f, 0.433432f, /*n:*/-0.183599f, -0.005310f, 0.982971f, + /*v:*/0.351562f, 0.500724f, 0.433432f, /*n:*/0.183599f, -0.005310f, 0.982971f, + /*v:*/0.445312f, 0.594474f, 0.386557f, /*n:*/0.721610f, 0.655568f, 0.222388f, + /*v:*/0.351562f, 0.633537f, 0.409994f, /*n:*/0.043153f, 0.938902f, 0.341441f, + /*v:*/-0.351562f, 0.633537f, 0.409994f, /*n:*/-0.043153f, 0.938902f, 0.341441f, + /*v:*/-0.445312f, 0.594474f, 0.386557f, /*n:*/-0.721610f, 0.655568f, 0.222388f, + /*v:*/-0.351562f, 0.500724f, 0.433432f, /*n:*/-0.183599f, -0.005310f, 0.982971f, + /*v:*/0.351562f, 0.500724f, 0.433432f, /*n:*/0.183599f, -0.005310f, 0.982971f, + /*v:*/0.476562f, 0.500724f, 0.378744f, /*n:*/0.964446f, -0.012665f, 0.263863f, + /*v:*/0.445312f, 0.594474f, 0.386557f, /*n:*/0.721610f, 0.655568f, 0.222388f, + /*v:*/-0.445312f, 0.594474f, 0.386557f, /*n:*/-0.721610f, 0.655568f, 0.222388f, + /*v:*/-0.476562f, 0.500724f, 0.378744f, /*n:*/-0.964446f, -0.012665f, 0.263863f, + /*v:*/-0.351562f, 0.500724f, 0.433432f, /*n:*/-0.183599f, -0.005310f, 0.982971f, + /*v:*/0.093750f, -0.491463f, 0.269370f, /*n:*/-0.517655f, -0.704123f, 0.486007f, + /*v:*/0.046875f, -0.593026f, 0.238120f, /*n:*/-0.295846f, 0.474960f, 0.828761f, + /*v:*/0.093750f, -0.553963f, 0.245932f, /*n:*/-0.673757f, 0.115452f, 0.729850f, + /*v:*/-0.093750f, -0.553963f, 0.245932f, /*n:*/0.673757f, 0.115452f, 0.729850f, + /*v:*/-0.046875f, -0.593026f, 0.238120f, /*n:*/0.295846f, 0.474960f, 0.828761f, + /*v:*/-0.093750f, -0.491463f, 0.269370f, /*n:*/0.517655f, -0.704123f, 0.486007f, + /*v:*/0.000000f, 0.664787f, 0.206869f, /*n:*/0.000000f, 0.859188f, 0.511612f, + /*v:*/0.109375f, 0.719474f, 0.214682f, /*n:*/-0.459304f, 0.862453f, 0.212561f, + /*v:*/0.000000f, 0.828849f, 0.175619f, /*n:*/0.000000f, 0.529252f, 0.848445f, + /*v:*/0.000000f, 0.828849f, 0.175619f, /*n:*/0.000000f, 0.529252f, 0.848445f, + /*v:*/-0.109375f, 0.719474f, 0.214682f, /*n:*/0.459304f, 0.862453f, 0.212561f, + /*v:*/0.000000f, 0.664787f, 0.206869f, /*n:*/0.000000f, 0.859188f, 0.511612f, + /*v:*/0.218750f, -0.022713f, 0.034994f, /*n:*/0.978698f, -0.195837f, 0.061495f, + /*v:*/0.210938f, -0.132088f, -0.230631f, /*n:*/0.572680f, -0.819666f, 0.011994f, + /*v:*/0.406250f, 0.086662f, -0.246256f, /*n:*/0.579028f, -0.802698f, 0.142705f, + /*v:*/-0.406250f, 0.086662f, -0.246256f, /*n:*/-0.579028f, -0.802698f, 0.142705f, + /*v:*/-0.210938f, -0.132088f, -0.230631f, /*n:*/-0.572680f, -0.819666f, 0.011994f, + /*v:*/-0.218750f, -0.022713f, 0.034994f, /*n:*/-0.978698f, -0.195837f, 0.061495f, + /*v:*/0.437500f, 0.164787f, 0.074057f, /*n:*/0.471969f, -0.863674f, -0.176794f, + /*v:*/0.203125f, 0.086662f, 0.105307f, /*n:*/0.785699f, -0.571459f, 0.236732f, + /*v:*/0.210938f, 0.031974f, 0.074057f, /*n:*/0.887173f, -0.157720f, 0.433607f, + /*v:*/-0.210938f, 0.031974f, 0.074057f, /*n:*/-0.887173f, -0.157720f, 0.433607f, + /*v:*/-0.203125f, 0.086662f, 0.105307f, /*n:*/-0.785699f, -0.571459f, 0.236732f, + /*v:*/-0.437500f, 0.164787f, 0.074057f, /*n:*/-0.471969f, -0.863674f, -0.176794f, + /*v:*/0.335938f, 0.313224f, -1.058756f, /*n:*/0.445479f, -0.358348f, -0.820399f, + /*v:*/0.484375f, 0.281974f, -0.941568f, /*n:*/0.529221f, -0.505112f, -0.681722f, + /*v:*/0.343750f, 0.110099f, -0.933756f, /*n:*/0.522263f, -0.653615f, -0.547685f, + /*v:*/-0.343750f, 0.110099f, -0.933756f, /*n:*/-0.522263f, -0.653615f, -0.547685f, + /*v:*/-0.484375f, 0.281974f, -0.941568f, /*n:*/-0.529221f, -0.505112f, -0.681722f, + /*v:*/-0.335938f, 0.313224f, -1.058756f, /*n:*/-0.445479f, -0.358348f, -0.820399f, + /*v:*/0.726562f, 0.258537f, -0.465006f, /*n:*/0.857204f, -0.493118f, -0.148289f, + /*v:*/0.718750f, 0.235099f, -0.566568f, /*n:*/0.731193f, 0.114414f, 0.672475f, + /*v:*/0.718750f, 0.297599f, -0.582193f, /*n:*/0.960936f, -0.118839f, 0.249855f, + /*v:*/-0.718750f, 0.297599f, -0.582193f, /*n:*/-0.960936f, -0.118839f, 0.249855f, + /*v:*/-0.718750f, 0.235099f, -0.566568f, /*n:*/-0.731193f, 0.114414f, 0.672475f, + /*v:*/-0.726562f, 0.258537f, -0.465006f, /*n:*/-0.857204f, -0.493118f, -0.148289f, + /*v:*/1.039062f, 0.586662f, -0.808756f, /*n:*/0.461776f, -0.329142f, 0.823664f, + /*v:*/1.085938f, 0.531974f, -0.785318f, /*n:*/0.289651f, 0.315806f, 0.903500f, + /*v:*/1.187500f, 0.602287f, -0.879068f, /*n:*/-0.262398f, -0.533067f, 0.804346f, + /*v:*/-1.187500f, 0.602287f, -0.879068f, /*n:*/0.262398f, -0.533067f, 0.804346f, + /*v:*/-1.085938f, 0.531974f, -0.785318f, /*n:*/-0.289651f, 0.315806f, 0.903500f, + /*v:*/-1.039062f, 0.586662f, -0.808756f, /*n:*/-0.461776f, -0.329142f, 0.823664f, + /*v:*/1.250000f, 0.727287f, -0.941568f, /*n:*/0.286996f, 0.597766f, -0.748497f, + /*v:*/1.367188f, 0.555412f, -0.894693f, /*n:*/0.925260f, 0.091830f, -0.367992f, + /*v:*/1.312500f, 0.313224f, -0.925943f, /*n:*/0.636586f, -0.504318f, -0.583392f, + /*v:*/-1.312500f, 0.313224f, -0.925943f, /*n:*/-0.636586f, -0.504318f, -0.583392f, + /*v:*/-1.367188f, 0.555412f, -0.894693f, /*n:*/-0.925260f, 0.091830f, -0.367992f, + /*v:*/-1.250000f, 0.727287f, -0.941568f, /*n:*/-0.286996f, 0.597766f, -0.748497f, + /*v:*/-0.789062f, 0.133537f, -0.722818f, /*n:*/0.098849f, -0.840846f, -0.532151f, + /*v:*/-0.640625f, 0.250724f, -0.824381f, /*n:*/-0.325510f, -0.602924f, -0.728355f, + /*v:*/-0.593750f, 0.133537f, -0.558756f, /*n:*/-0.312296f, -0.949950f, 0.001160f, + /*v:*/-0.789062f, 0.133537f, -0.722818f, /*n:*/0.098849f, -0.840846f, -0.532151f, + /*v:*/-0.593750f, 0.133537f, -0.558756f, /*n:*/-0.312296f, -0.949950f, 0.001160f, + /*v:*/-0.773438f, 0.117912f, -0.519693f, /*n:*/-0.029542f, -0.634999f, 0.771905f, + /*v:*/0.593750f, 0.133537f, -0.558756f, /*n:*/0.312296f, -0.949950f, 0.001160f, + /*v:*/0.640625f, 0.250724f, -0.824381f, /*n:*/0.325510f, -0.602924f, -0.728355f, + /*v:*/0.789062f, 0.133537f, -0.722818f, /*n:*/-0.098849f, -0.840846f, -0.532151f, + /*v:*/0.593750f, 0.133537f, -0.558756f, /*n:*/0.312296f, -0.949950f, 0.001160f, + /*v:*/0.789062f, 0.133537f, -0.722818f, /*n:*/-0.098849f, -0.840846f, -0.532151f, + /*v:*/0.773438f, 0.117912f, -0.519693f, /*n:*/0.029542f, -0.634999f, 0.771905f, + /*v:*/-0.789062f, 0.133537f, -0.722818f, /*n:*/0.098849f, -0.840846f, -0.532151f, + /*v:*/-0.859375f, 0.641349f, -0.777506f, /*n:*/0.650044f, 0.584643f, -0.485336f, + /*v:*/-0.773438f, 0.524162f, -0.832193f, /*n:*/-0.670766f, -0.045289f, -0.740257f, + /*v:*/-0.789062f, 0.133537f, -0.722818f, /*n:*/0.098849f, -0.840846f, -0.532151f, + /*v:*/-0.773438f, 0.524162f, -0.832193f, /*n:*/-0.670766f, -0.045289f, -0.740257f, + /*v:*/-0.640625f, 0.250724f, -0.824381f, /*n:*/-0.325510f, -0.602924f, -0.728355f, + /*v:*/0.773438f, 0.524162f, -0.832193f, /*n:*/0.670766f, -0.045289f, -0.740257f, + /*v:*/0.859375f, 0.641349f, -0.777506f, /*n:*/-0.650044f, 0.584643f, -0.485336f, + /*v:*/0.789062f, 0.133537f, -0.722818f, /*n:*/-0.098849f, -0.840846f, -0.532151f, + /*v:*/0.773438f, 0.524162f, -0.832193f, /*n:*/0.670766f, -0.045289f, -0.740257f, + /*v:*/0.789062f, 0.133537f, -0.722818f, /*n:*/-0.098849f, -0.840846f, -0.532151f, + /*v:*/0.640625f, 0.250724f, -0.824381f, /*n:*/0.325510f, -0.602924f, -0.728355f, + /*v:*/-0.890625f, 0.664787f, -0.629068f, /*n:*/0.279244f, 0.768303f, 0.575884f, + /*v:*/-0.820312f, 0.586662f, -0.597818f, /*n:*/-0.908536f, 0.224219f, 0.352489f, + /*v:*/-0.859375f, 0.641349f, -0.777506f, /*n:*/0.650044f, 0.584643f, -0.485336f, + /*v:*/-0.820312f, 0.586662f, -0.597818f, /*n:*/-0.908536f, 0.224219f, 0.352489f, + /*v:*/-0.773438f, 0.524162f, -0.832193f, /*n:*/-0.670766f, -0.045289f, -0.740257f, + /*v:*/-0.859375f, 0.641349f, -0.777506f, /*n:*/0.650044f, 0.584643f, -0.485336f, + /*v:*/0.773438f, 0.524162f, -0.832193f, /*n:*/0.670766f, -0.045289f, -0.740257f, + /*v:*/0.820312f, 0.586662f, -0.597818f, /*n:*/0.908536f, 0.224219f, 0.352489f, + /*v:*/0.859375f, 0.641349f, -0.777506f, /*n:*/-0.650044f, 0.584643f, -0.485336f, + /*v:*/0.820312f, 0.586662f, -0.597818f, /*n:*/0.908536f, 0.224219f, 0.352489f, + /*v:*/0.890625f, 0.664787f, -0.629068f, /*n:*/-0.279244f, 0.768303f, 0.575884f, + /*v:*/0.859375f, 0.641349f, -0.777506f, /*n:*/-0.650044f, 0.584643f, -0.485336f, + /*v:*/-1.312500f, 0.313224f, -0.925943f, /*n:*/-0.636586f, -0.504318f, -0.583392f, + /*v:*/-1.250000f, 0.727287f, -0.941568f, /*n:*/-0.286996f, 0.597766f, -0.748497f, + /*v:*/-1.023438f, 0.696037f, -0.879068f, /*n:*/0.414228f, 0.550890f, -0.724479f, + /*v:*/-1.312500f, 0.313224f, -0.925943f, /*n:*/-0.636586f, -0.504318f, -0.583392f, + /*v:*/-1.023438f, 0.696037f, -0.879068f, /*n:*/0.414228f, 0.550890f, -0.724479f, + /*v:*/-1.039062f, 0.172599f, -0.886881f, /*n:*/0.025269f, -0.679586f, -0.733116f, + /*v:*/1.023438f, 0.696037f, -0.879068f, /*n:*/-0.414228f, 0.550890f, -0.724479f, + /*v:*/1.250000f, 0.727287f, -0.941568f, /*n:*/0.286996f, 0.597766f, -0.748497f, + /*v:*/1.312500f, 0.313224f, -0.925943f, /*n:*/0.636586f, -0.504318f, -0.583392f, + /*v:*/1.023438f, 0.696037f, -0.879068f, /*n:*/-0.414228f, 0.550890f, -0.724479f, + /*v:*/1.312500f, 0.313224f, -0.925943f, /*n:*/0.636586f, -0.504318f, -0.583392f, + /*v:*/1.039062f, 0.172599f, -0.886881f, /*n:*/-0.025269f, -0.679586f, -0.733116f, + /*v:*/-0.789062f, 0.133537f, -0.722818f, /*n:*/0.098849f, -0.840846f, -0.532151f, + /*v:*/-1.039062f, 0.172599f, -0.886881f, /*n:*/0.025269f, -0.679586f, -0.733116f, + /*v:*/-0.859375f, 0.641349f, -0.777506f, /*n:*/0.650044f, 0.584643f, -0.485336f, + /*v:*/-1.039062f, 0.172599f, -0.886881f, /*n:*/0.025269f, -0.679586f, -0.733116f, + /*v:*/-1.023438f, 0.696037f, -0.879068f, /*n:*/0.414228f, 0.550890f, -0.724479f, + /*v:*/-0.859375f, 0.641349f, -0.777506f, /*n:*/0.650044f, 0.584643f, -0.485336f, + /*v:*/1.023438f, 0.696037f, -0.879068f, /*n:*/-0.414228f, 0.550890f, -0.724479f, + /*v:*/1.039062f, 0.172599f, -0.886881f, /*n:*/-0.025269f, -0.679586f, -0.733116f, + /*v:*/0.859375f, 0.641349f, -0.777506f, /*n:*/-0.650044f, 0.584643f, -0.485336f, + /*v:*/1.039062f, 0.172599f, -0.886881f, /*n:*/-0.025269f, -0.679586f, -0.733116f, + /*v:*/0.789062f, 0.133537f, -0.722818f, /*n:*/-0.098849f, -0.840846f, -0.532151f, + /*v:*/0.859375f, 0.641349f, -0.777506f, /*n:*/-0.650044f, 0.584643f, -0.485336f, + /*v:*/-1.023438f, 0.696037f, -0.879068f, /*n:*/0.414228f, 0.550890f, -0.724479f, + /*v:*/-1.023438f, 0.735099f, -0.707193f, /*n:*/-0.018799f, 0.872250f, 0.488632f, + /*v:*/-0.859375f, 0.641349f, -0.777506f, /*n:*/0.650044f, 0.584643f, -0.485336f, + /*v:*/-1.023438f, 0.735099f, -0.707193f, /*n:*/-0.018799f, 0.872250f, 0.488632f, + /*v:*/-0.890625f, 0.664787f, -0.629068f, /*n:*/0.279244f, 0.768303f, 0.575884f, + /*v:*/-0.859375f, 0.641349f, -0.777506f, /*n:*/0.650044f, 0.584643f, -0.485336f, + /*v:*/0.890625f, 0.664787f, -0.629068f, /*n:*/-0.279244f, 0.768303f, 0.575884f, + /*v:*/1.023438f, 0.735099f, -0.707193f, /*n:*/0.018799f, 0.872250f, 0.488632f, + /*v:*/0.859375f, 0.641349f, -0.777506f, /*n:*/-0.650044f, 0.584643f, -0.485336f, + /*v:*/1.023438f, 0.735099f, -0.707193f, /*n:*/0.018799f, 0.872250f, 0.488632f, + /*v:*/1.023438f, 0.696037f, -0.879068f, /*n:*/-0.414228f, 0.550890f, -0.724479f, + /*v:*/0.859375f, 0.641349f, -0.777506f, /*n:*/-0.650044f, 0.584643f, -0.485336f, + /*v:*/-1.250000f, 0.727287f, -0.941568f, /*n:*/-0.286996f, 0.597766f, -0.748497f, + /*v:*/-1.234375f, 0.766349f, -0.816568f, /*n:*/-0.383557f, 0.862972f, 0.328776f, + /*v:*/-1.023438f, 0.696037f, -0.879068f, /*n:*/0.414228f, 0.550890f, -0.724479f, + /*v:*/-1.234375f, 0.766349f, -0.816568f, /*n:*/-0.383557f, 0.862972f, 0.328776f, + /*v:*/-1.023438f, 0.735099f, -0.707193f, /*n:*/-0.018799f, 0.872250f, 0.488632f, + /*v:*/-1.023438f, 0.696037f, -0.879068f, /*n:*/0.414228f, 0.550890f, -0.724479f, + /*v:*/1.023438f, 0.735099f, -0.707193f, /*n:*/0.018799f, 0.872250f, 0.488632f, + /*v:*/1.234375f, 0.766349f, -0.816568f, /*n:*/0.383557f, 0.862972f, 0.328776f, + /*v:*/1.023438f, 0.696037f, -0.879068f, /*n:*/-0.414228f, 0.550890f, -0.724479f, + /*v:*/1.234375f, 0.766349f, -0.816568f, /*n:*/0.383557f, 0.862972f, 0.328776f, + /*v:*/1.250000f, 0.727287f, -0.941568f, /*n:*/0.286996f, 0.597766f, -0.748497f, + /*v:*/1.023438f, 0.696037f, -0.879068f, /*n:*/-0.414228f, 0.550890f, -0.724479f, + /*v:*/-1.367188f, 0.555412f, -0.894693f, /*n:*/-0.925260f, 0.091830f, -0.367992f, + /*v:*/-1.351562f, 0.578849f, -0.816568f, /*n:*/-0.778802f, 0.167791f, 0.604389f, + /*v:*/-1.250000f, 0.727287f, -0.941568f, /*n:*/-0.286996f, 0.597766f, -0.748497f, + /*v:*/-1.351562f, 0.578849f, -0.816568f, /*n:*/-0.778802f, 0.167791f, 0.604389f, + /*v:*/-1.234375f, 0.766349f, -0.816568f, /*n:*/-0.383557f, 0.862972f, 0.328776f, + /*v:*/-1.250000f, 0.727287f, -0.941568f, /*n:*/-0.286996f, 0.597766f, -0.748497f, + /*v:*/1.234375f, 0.766349f, -0.816568f, /*n:*/0.383557f, 0.862972f, 0.328776f, + /*v:*/1.351562f, 0.578849f, -0.816568f, /*n:*/0.778802f, 0.167791f, 0.604389f, + /*v:*/1.250000f, 0.727287f, -0.941568f, /*n:*/0.286996f, 0.597766f, -0.748497f, + /*v:*/1.351562f, 0.578849f, -0.816568f, /*n:*/0.778802f, 0.167791f, 0.604389f, + /*v:*/1.367188f, 0.555412f, -0.894693f, /*n:*/0.925260f, 0.091830f, -0.367992f, + /*v:*/1.250000f, 0.727287f, -0.941568f, /*n:*/0.286996f, 0.597766f, -0.748497f, + /*v:*/-1.312500f, 0.313224f, -0.925943f, /*n:*/-0.636586f, -0.504318f, -0.583392f, + /*v:*/-1.281250f, 0.313224f, -0.824381f, /*n:*/-0.652608f, -0.476821f, 0.588794f, + /*v:*/-1.367188f, 0.555412f, -0.894693f, /*n:*/-0.925260f, 0.091830f, -0.367992f, + /*v:*/-1.281250f, 0.313224f, -0.824381f, /*n:*/-0.652608f, -0.476821f, 0.588794f, + /*v:*/-1.351562f, 0.578849f, -0.816568f, /*n:*/-0.778802f, 0.167791f, 0.604389f, + /*v:*/-1.367188f, 0.555412f, -0.894693f, /*n:*/-0.925260f, 0.091830f, -0.367992f, + /*v:*/1.351562f, 0.578849f, -0.816568f, /*n:*/0.778802f, 0.167791f, 0.604389f, + /*v:*/1.281250f, 0.313224f, -0.824381f, /*n:*/0.652608f, -0.476821f, 0.588794f, + /*v:*/1.367188f, 0.555412f, -0.894693f, /*n:*/0.925260f, 0.091830f, -0.367992f, + /*v:*/1.281250f, 0.313224f, -0.824381f, /*n:*/0.652608f, -0.476821f, 0.588794f, + /*v:*/1.312500f, 0.313224f, -0.925943f, /*n:*/0.636586f, -0.504318f, -0.583392f, + /*v:*/1.367188f, 0.555412f, -0.894693f, /*n:*/0.925260f, 0.091830f, -0.367992f, + /*v:*/-1.039062f, 0.172599f, -0.886881f, /*n:*/0.025269f, -0.679586f, -0.733116f, + /*v:*/-1.039062f, 0.156974f, -0.722818f, /*n:*/-0.502884f, -0.780999f, 0.370312f, + /*v:*/-1.281250f, 0.313224f, -0.824381f, /*n:*/-0.652608f, -0.476821f, 0.588794f, + /*v:*/-1.039062f, 0.172599f, -0.886881f, /*n:*/0.025269f, -0.679586f, -0.733116f, + /*v:*/-1.281250f, 0.313224f, -0.824381f, /*n:*/-0.652608f, -0.476821f, 0.588794f, + /*v:*/-1.312500f, 0.313224f, -0.925943f, /*n:*/-0.636586f, -0.504318f, -0.583392f, + /*v:*/1.281250f, 0.313224f, -0.824381f, /*n:*/0.652608f, -0.476821f, 0.588794f, + /*v:*/1.039062f, 0.156974f, -0.722818f, /*n:*/0.502884f, -0.780999f, 0.370312f, + /*v:*/1.039062f, 0.172599f, -0.886881f, /*n:*/-0.025269f, -0.679586f, -0.733116f, + /*v:*/1.281250f, 0.313224f, -0.824381f, /*n:*/0.652608f, -0.476821f, 0.588794f, + /*v:*/1.039062f, 0.172599f, -0.886881f, /*n:*/-0.025269f, -0.679586f, -0.733116f, + /*v:*/1.312500f, 0.313224f, -0.925943f, /*n:*/0.636586f, -0.504318f, -0.583392f, + /*v:*/-0.789062f, 0.133537f, -0.722818f, /*n:*/0.098849f, -0.840846f, -0.532151f, + /*v:*/-0.773438f, 0.117912f, -0.519693f, /*n:*/-0.029542f, -0.634999f, 0.771905f, + /*v:*/-1.039062f, 0.156974f, -0.722818f, /*n:*/-0.502884f, -0.780999f, 0.370312f, + /*v:*/-0.789062f, 0.133537f, -0.722818f, /*n:*/0.098849f, -0.840846f, -0.532151f, + /*v:*/-1.039062f, 0.156974f, -0.722818f, /*n:*/-0.502884f, -0.780999f, 0.370312f, + /*v:*/-1.039062f, 0.172599f, -0.886881f, /*n:*/0.025269f, -0.679586f, -0.733116f, + /*v:*/1.039062f, 0.156974f, -0.722818f, /*n:*/0.502884f, -0.780999f, 0.370312f, + /*v:*/0.773438f, 0.117912f, -0.519693f, /*n:*/0.029542f, -0.634999f, 0.771905f, + /*v:*/0.789062f, 0.133537f, -0.722818f, /*n:*/-0.098849f, -0.840846f, -0.532151f, + /*v:*/1.039062f, 0.156974f, -0.722818f, /*n:*/0.502884f, -0.780999f, 0.370312f, + /*v:*/0.789062f, 0.133537f, -0.722818f, /*n:*/-0.098849f, -0.840846f, -0.532151f, + /*v:*/1.039062f, 0.172599f, -0.886881f, /*n:*/-0.025269f, -0.679586f, -0.733116f, + /*v:*/-1.109375f, 0.469474f, -0.785318f, /*n:*/-0.383129f, -0.068514f, 0.921140f, + /*v:*/-1.085938f, 0.531974f, -0.785318f, /*n:*/-0.289651f, 0.315806f, 0.903500f, + /*v:*/-1.187500f, 0.602287f, -0.879068f, /*n:*/0.262398f, -0.533067f, 0.804346f, + /*v:*/-1.109375f, 0.469474f, -0.785318f, /*n:*/-0.383129f, -0.068514f, 0.921140f, + /*v:*/-1.187500f, 0.602287f, -0.879068f, /*n:*/0.262398f, -0.533067f, 0.804346f, + /*v:*/-1.257812f, 0.500724f, -0.886881f, /*n:*/0.752861f, -0.033784f, 0.657277f, + /*v:*/1.187500f, 0.602287f, -0.879068f, /*n:*/-0.262398f, -0.533067f, 0.804346f, + /*v:*/1.085938f, 0.531974f, -0.785318f, /*n:*/0.289651f, 0.315806f, 0.903500f, + /*v:*/1.109375f, 0.469474f, -0.785318f, /*n:*/0.383129f, -0.068514f, 0.921140f, + /*v:*/1.187500f, 0.602287f, -0.879068f, /*n:*/-0.262398f, -0.533067f, 0.804346f, + /*v:*/1.109375f, 0.469474f, -0.785318f, /*n:*/0.383129f, -0.068514f, 0.921140f, + /*v:*/1.257812f, 0.500724f, -0.886881f, /*n:*/-0.752861f, -0.033784f, 0.657277f, + /*v:*/-1.054688f, 0.446037f, -0.777506f, /*n:*/-0.314371f, -0.103732f, 0.943602f, + /*v:*/-1.109375f, 0.469474f, -0.785318f, /*n:*/-0.383129f, -0.068514f, 0.921140f, + /*v:*/-1.210938f, 0.344474f, -0.879068f, /*n:*/0.583117f, 0.499893f, 0.640339f, + /*v:*/-1.109375f, 0.469474f, -0.785318f, /*n:*/-0.383129f, -0.068514f, 0.921140f, + /*v:*/-1.257812f, 0.500724f, -0.886881f, /*n:*/0.752861f, -0.033784f, 0.657277f, + /*v:*/-1.210938f, 0.344474f, -0.879068f, /*n:*/0.583117f, 0.499893f, 0.640339f, + /*v:*/1.257812f, 0.500724f, -0.886881f, /*n:*/-0.752861f, -0.033784f, 0.657277f, + /*v:*/1.109375f, 0.469474f, -0.785318f, /*n:*/0.383129f, -0.068514f, 0.921140f, + /*v:*/1.210938f, 0.344474f, -0.879068f, /*n:*/-0.583117f, 0.499893f, 0.640339f, + /*v:*/1.109375f, 0.469474f, -0.785318f, /*n:*/0.383129f, -0.068514f, 0.921140f, + /*v:*/1.054688f, 0.446037f, -0.777506f, /*n:*/0.314371f, -0.103732f, 0.943602f, + /*v:*/1.210938f, 0.344474f, -0.879068f, /*n:*/-0.583117f, 0.499893f, 0.640339f, + /*v:*/-1.000000f, 0.383537f, -0.761881f, /*n:*/-0.444807f, -0.093692f, 0.890683f, + /*v:*/-1.054688f, 0.446037f, -0.777506f, /*n:*/-0.314371f, -0.103732f, 0.943602f, + /*v:*/-1.046875f, 0.258537f, -0.816568f, /*n:*/-0.065004f, 0.703848f, 0.707358f, + /*v:*/-1.054688f, 0.446037f, -0.777506f, /*n:*/-0.314371f, -0.103732f, 0.943602f, + /*v:*/-1.210938f, 0.344474f, -0.879068f, /*n:*/0.583117f, 0.499893f, 0.640339f, + /*v:*/-1.046875f, 0.258537f, -0.816568f, /*n:*/-0.065004f, 0.703848f, 0.707358f, + /*v:*/1.210938f, 0.344474f, -0.879068f, /*n:*/-0.583117f, 0.499893f, 0.640339f, + /*v:*/1.054688f, 0.446037f, -0.777506f, /*n:*/0.314371f, -0.103732f, 0.943602f, + /*v:*/1.046875f, 0.258537f, -0.816568f, /*n:*/0.065004f, 0.703848f, 0.707358f, + /*v:*/1.054688f, 0.446037f, -0.777506f, /*n:*/0.314371f, -0.103732f, 0.943602f, + /*v:*/1.000000f, 0.383537f, -0.761881f, /*n:*/0.444807f, -0.093692f, 0.890683f, + /*v:*/1.046875f, 0.258537f, -0.816568f, /*n:*/0.065004f, 0.703848f, 0.707358f, + /*v:*/-0.937500f, 0.321037f, -0.730631f, /*n:*/-0.408429f, 0.127262f, 0.903836f, + /*v:*/-1.000000f, 0.383537f, -0.761881f, /*n:*/-0.444807f, -0.093692f, 0.890683f, + /*v:*/-1.046875f, 0.258537f, -0.816568f, /*n:*/-0.065004f, 0.703848f, 0.707358f, + /*v:*/-0.937500f, 0.321037f, -0.730631f, /*n:*/-0.408429f, 0.127262f, 0.903836f, + /*v:*/-1.046875f, 0.258537f, -0.816568f, /*n:*/-0.065004f, 0.703848f, 0.707358f, + /*v:*/-0.882812f, 0.242912f, -0.660318f, /*n:*/0.033113f, 0.944914f, 0.325602f, + /*v:*/1.046875f, 0.258537f, -0.816568f, /*n:*/0.065004f, 0.703848f, 0.707358f, + /*v:*/1.000000f, 0.383537f, -0.761881f, /*n:*/0.444807f, -0.093692f, 0.890683f, + /*v:*/0.937500f, 0.321037f, -0.730631f, /*n:*/0.408429f, 0.127262f, 0.903836f, + /*v:*/1.046875f, 0.258537f, -0.816568f, /*n:*/0.065004f, 0.703848f, 0.707358f, + /*v:*/0.937500f, 0.321037f, -0.730631f, /*n:*/0.408429f, 0.127262f, 0.903836f, + /*v:*/0.882812f, 0.242912f, -0.660318f, /*n:*/-0.033113f, 0.944914f, 0.325602f, + /*v:*/-0.937500f, 0.321037f, -0.730631f, /*n:*/-0.408429f, 0.127262f, 0.903836f, + /*v:*/-0.882812f, 0.242912f, -0.660318f, /*n:*/0.033113f, 0.944914f, 0.325602f, + /*v:*/-0.851562f, 0.274162f, -0.715006f, /*n:*/-0.292917f, 0.370922f, 0.881222f, + /*v:*/-0.882812f, 0.242912f, -0.660318f, /*n:*/0.033113f, 0.944914f, 0.325602f, + /*v:*/-0.812500f, 0.242912f, -0.715006f, /*n:*/-0.644978f, 0.310129f, 0.698386f, + /*v:*/-0.851562f, 0.274162f, -0.715006f, /*n:*/-0.292917f, 0.370922f, 0.881222f, + /*v:*/0.812500f, 0.242912f, -0.715006f, /*n:*/0.644978f, 0.310129f, 0.698386f, + /*v:*/0.882812f, 0.242912f, -0.660318f, /*n:*/-0.033113f, 0.944914f, 0.325602f, + /*v:*/0.851562f, 0.274162f, -0.715006f, /*n:*/0.292917f, 0.370922f, 0.881222f, + /*v:*/0.882812f, 0.242912f, -0.660318f, /*n:*/-0.033113f, 0.944914f, 0.325602f, + /*v:*/0.937500f, 0.321037f, -0.730631f, /*n:*/0.408429f, 0.127262f, 0.903836f, + /*v:*/0.851562f, 0.274162f, -0.715006f, /*n:*/0.292917f, 0.370922f, 0.881222f, + /*v:*/-0.843750f, 0.430412f, -0.715006f, /*n:*/-0.572527f, -0.418928f, 0.704733f, + /*v:*/-0.890625f, 0.367912f, -0.722818f, /*n:*/-0.195105f, 0.038942f, 0.979980f, + /*v:*/-0.828125f, 0.336662f, -0.715006f, /*n:*/-0.449232f, 0.379864f, 0.808618f, + /*v:*/-0.843750f, 0.430412f, -0.715006f, /*n:*/-0.572527f, -0.418928f, 0.704733f, + /*v:*/-0.828125f, 0.336662f, -0.715006f, /*n:*/-0.449232f, 0.379864f, 0.808618f, + /*v:*/-0.765625f, 0.352287f, -0.715006f, /*n:*/-0.758354f, 0.266518f, 0.594806f, + /*v:*/0.828125f, 0.336662f, -0.715006f, /*n:*/0.449232f, 0.379864f, 0.808618f, + /*v:*/0.890625f, 0.367912f, -0.722818f, /*n:*/0.195105f, 0.038942f, 0.979980f, + /*v:*/0.843750f, 0.430412f, -0.715006f, /*n:*/0.572527f, -0.418928f, 0.704733f, + /*v:*/0.828125f, 0.336662f, -0.715006f, /*n:*/0.449232f, 0.379864f, 0.808618f, + /*v:*/0.843750f, 0.430412f, -0.715006f, /*n:*/0.572527f, -0.418928f, 0.704733f, + /*v:*/0.765625f, 0.352287f, -0.715006f, /*n:*/0.758354f, 0.266518f, 0.594806f, + /*v:*/-0.890625f, 0.367912f, -0.722818f, /*n:*/-0.195105f, 0.038942f, 0.979980f, + /*v:*/-0.843750f, 0.430412f, -0.715006f, /*n:*/-0.572527f, -0.418928f, 0.704733f, + /*v:*/-0.960938f, 0.430412f, -0.746256f, /*n:*/-0.334666f, -0.004578f, 0.942289f, + /*v:*/-0.843750f, 0.430412f, -0.715006f, /*n:*/-0.572527f, -0.418928f, 0.704733f, + /*v:*/-0.890625f, 0.492912f, -0.715006f, /*n:*/-0.659291f, -0.468490f, 0.588061f, + /*v:*/-0.960938f, 0.430412f, -0.746256f, /*n:*/-0.334666f, -0.004578f, 0.942289f, + /*v:*/0.890625f, 0.492912f, -0.715006f, /*n:*/0.659291f, -0.468490f, 0.588061f, + /*v:*/0.843750f, 0.430412f, -0.715006f, /*n:*/0.572527f, -0.418928f, 0.704733f, + /*v:*/0.960938f, 0.430412f, -0.746256f, /*n:*/0.334666f, -0.004578f, 0.942289f, + /*v:*/0.843750f, 0.430412f, -0.715006f, /*n:*/0.572527f, -0.418928f, 0.704733f, + /*v:*/0.890625f, 0.367912f, -0.722818f, /*n:*/0.195105f, 0.038942f, 0.979980f, + /*v:*/0.960938f, 0.430412f, -0.746256f, /*n:*/0.334666f, -0.004578f, 0.942289f, + /*v:*/-1.015625f, 0.492912f, -0.769693f, /*n:*/-0.334300f, 0.106784f, 0.936369f, + /*v:*/-0.960938f, 0.430412f, -0.746256f, /*n:*/-0.334666f, -0.004578f, 0.942289f, + /*v:*/-0.953125f, 0.547599f, -0.738443f, /*n:*/-0.648213f, -0.420576f, 0.634724f, + /*v:*/-0.960938f, 0.430412f, -0.746256f, /*n:*/-0.334666f, -0.004578f, 0.942289f, + /*v:*/-0.890625f, 0.492912f, -0.715006f, /*n:*/-0.659291f, -0.468490f, 0.588061f, + /*v:*/-0.953125f, 0.547599f, -0.738443f, /*n:*/-0.648213f, -0.420576f, 0.634724f, + /*v:*/0.890625f, 0.492912f, -0.715006f, /*n:*/0.659291f, -0.468490f, 0.588061f, + /*v:*/0.960938f, 0.430412f, -0.746256f, /*n:*/0.334666f, -0.004578f, 0.942289f, + /*v:*/0.953125f, 0.547599f, -0.738443f, /*n:*/0.648213f, -0.420576f, 0.634724f, + /*v:*/0.960938f, 0.430412f, -0.746256f, /*n:*/0.334666f, -0.004578f, 0.942289f, + /*v:*/1.015625f, 0.492912f, -0.769693f, /*n:*/0.334300f, 0.106784f, 0.936369f, + /*v:*/0.953125f, 0.547599f, -0.738443f, /*n:*/0.648213f, -0.420576f, 0.634724f, + /*v:*/-1.015625f, 0.492912f, -0.769693f, /*n:*/-0.334300f, 0.106784f, 0.936369f, + /*v:*/-0.953125f, 0.547599f, -0.738443f, /*n:*/-0.648213f, -0.420576f, 0.634724f, + /*v:*/-1.039062f, 0.586662f, -0.808756f, /*n:*/-0.461776f, -0.329142f, 0.823664f, + /*v:*/-1.015625f, 0.492912f, -0.769693f, /*n:*/-0.334300f, 0.106784f, 0.936369f, + /*v:*/-1.039062f, 0.586662f, -0.808756f, /*n:*/-0.461776f, -0.329142f, 0.823664f, + /*v:*/-1.085938f, 0.531974f, -0.785318f, /*n:*/-0.289651f, 0.315806f, 0.903500f, + /*v:*/1.039062f, 0.586662f, -0.808756f, /*n:*/0.461776f, -0.329142f, 0.823664f, + /*v:*/0.953125f, 0.547599f, -0.738443f, /*n:*/0.648213f, -0.420576f, 0.634724f, + /*v:*/1.015625f, 0.492912f, -0.769693f, /*n:*/0.334300f, 0.106784f, 0.936369f, + /*v:*/1.039062f, 0.586662f, -0.808756f, /*n:*/0.461776f, -0.329142f, 0.823664f, + /*v:*/1.015625f, 0.492912f, -0.769693f, /*n:*/0.334300f, 0.106784f, 0.936369f, + /*v:*/1.085938f, 0.531974f, -0.785318f, /*n:*/0.289651f, 0.315806f, 0.903500f, + /*v:*/-1.109375f, 0.469474f, -0.785318f, /*n:*/-0.383129f, -0.068514f, 0.921140f, + /*v:*/-1.054688f, 0.446037f, -0.777506f, /*n:*/-0.314371f, -0.103732f, 0.943602f, + /*v:*/-1.085938f, 0.531974f, -0.785318f, /*n:*/-0.289651f, 0.315806f, 0.903500f, + /*v:*/-1.054688f, 0.446037f, -0.777506f, /*n:*/-0.314371f, -0.103732f, 0.943602f, + /*v:*/-1.015625f, 0.492912f, -0.769693f, /*n:*/-0.334300f, 0.106784f, 0.936369f, + /*v:*/-1.085938f, 0.531974f, -0.785318f, /*n:*/-0.289651f, 0.315806f, 0.903500f, + /*v:*/1.015625f, 0.492912f, -0.769693f, /*n:*/0.334300f, 0.106784f, 0.936369f, + /*v:*/1.054688f, 0.446037f, -0.777506f, /*n:*/0.314371f, -0.103732f, 0.943602f, + /*v:*/1.085938f, 0.531974f, -0.785318f, /*n:*/0.289651f, 0.315806f, 0.903500f, + /*v:*/1.054688f, 0.446037f, -0.777506f, /*n:*/0.314371f, -0.103732f, 0.943602f, + /*v:*/1.109375f, 0.469474f, -0.785318f, /*n:*/0.383129f, -0.068514f, 0.921140f, + /*v:*/1.085938f, 0.531974f, -0.785318f, /*n:*/0.289651f, 0.315806f, 0.903500f, + /*v:*/-1.054688f, 0.446037f, -0.777506f, /*n:*/-0.314371f, -0.103732f, 0.943602f, + /*v:*/-1.000000f, 0.383537f, -0.761881f, /*n:*/-0.444807f, -0.093692f, 0.890683f, + /*v:*/-0.960938f, 0.430412f, -0.746256f, /*n:*/-0.334666f, -0.004578f, 0.942289f, + /*v:*/-1.054688f, 0.446037f, -0.777506f, /*n:*/-0.314371f, -0.103732f, 0.943602f, + /*v:*/-0.960938f, 0.430412f, -0.746256f, /*n:*/-0.334666f, -0.004578f, 0.942289f, + /*v:*/-1.015625f, 0.492912f, -0.769693f, /*n:*/-0.334300f, 0.106784f, 0.936369f, + /*v:*/0.960938f, 0.430412f, -0.746256f, /*n:*/0.334666f, -0.004578f, 0.942289f, + /*v:*/1.000000f, 0.383537f, -0.761881f, /*n:*/0.444807f, -0.093692f, 0.890683f, + /*v:*/1.054688f, 0.446037f, -0.777506f, /*n:*/0.314371f, -0.103732f, 0.943602f, + /*v:*/0.960938f, 0.430412f, -0.746256f, /*n:*/0.334666f, -0.004578f, 0.942289f, + /*v:*/1.054688f, 0.446037f, -0.777506f, /*n:*/0.314371f, -0.103732f, 0.943602f, + /*v:*/1.015625f, 0.492912f, -0.769693f, /*n:*/0.334300f, 0.106784f, 0.936369f, + /*v:*/-1.000000f, 0.383537f, -0.761881f, /*n:*/-0.444807f, -0.093692f, 0.890683f, + /*v:*/-0.937500f, 0.321037f, -0.730631f, /*n:*/-0.408429f, 0.127262f, 0.903836f, + /*v:*/-0.960938f, 0.430412f, -0.746256f, /*n:*/-0.334666f, -0.004578f, 0.942289f, + /*v:*/-0.937500f, 0.321037f, -0.730631f, /*n:*/-0.408429f, 0.127262f, 0.903836f, + /*v:*/-0.890625f, 0.367912f, -0.722818f, /*n:*/-0.195105f, 0.038942f, 0.979980f, + /*v:*/-0.960938f, 0.430412f, -0.746256f, /*n:*/-0.334666f, -0.004578f, 0.942289f, + /*v:*/0.890625f, 0.367912f, -0.722818f, /*n:*/0.195105f, 0.038942f, 0.979980f, + /*v:*/0.937500f, 0.321037f, -0.730631f, /*n:*/0.408429f, 0.127262f, 0.903836f, + /*v:*/0.960938f, 0.430412f, -0.746256f, /*n:*/0.334666f, -0.004578f, 0.942289f, + /*v:*/0.937500f, 0.321037f, -0.730631f, /*n:*/0.408429f, 0.127262f, 0.903836f, + /*v:*/1.000000f, 0.383537f, -0.761881f, /*n:*/0.444807f, -0.093692f, 0.890683f, + /*v:*/0.960938f, 0.430412f, -0.746256f, /*n:*/0.334666f, -0.004578f, 0.942289f, + /*v:*/-0.937500f, 0.321037f, -0.730631f, /*n:*/-0.408429f, 0.127262f, 0.903836f, + /*v:*/-0.851562f, 0.274162f, -0.715006f, /*n:*/-0.292917f, 0.370922f, 0.881222f, + /*v:*/-0.890625f, 0.367912f, -0.722818f, /*n:*/-0.195105f, 0.038942f, 0.979980f, + /*v:*/-0.851562f, 0.274162f, -0.715006f, /*n:*/-0.292917f, 0.370922f, 0.881222f, + /*v:*/-0.828125f, 0.336662f, -0.715006f, /*n:*/-0.449232f, 0.379864f, 0.808618f, + /*v:*/-0.890625f, 0.367912f, -0.722818f, /*n:*/-0.195105f, 0.038942f, 0.979980f, + /*v:*/0.828125f, 0.336662f, -0.715006f, /*n:*/0.449232f, 0.379864f, 0.808618f, + /*v:*/0.851562f, 0.274162f, -0.715006f, /*n:*/0.292917f, 0.370922f, 0.881222f, + /*v:*/0.890625f, 0.367912f, -0.722818f, /*n:*/0.195105f, 0.038942f, 0.979980f, + /*v:*/0.851562f, 0.274162f, -0.715006f, /*n:*/0.292917f, 0.370922f, 0.881222f, + /*v:*/0.937500f, 0.321037f, -0.730631f, /*n:*/0.408429f, 0.127262f, 0.903836f, + /*v:*/0.890625f, 0.367912f, -0.722818f, /*n:*/0.195105f, 0.038942f, 0.979980f, + /*v:*/-1.046875f, 0.258537f, -0.816568f, /*n:*/-0.065004f, 0.703848f, 0.707358f, + /*v:*/-1.039062f, 0.258537f, -0.761881f, /*n:*/0.186804f, 0.953825f, 0.235084f, + /*v:*/-0.882812f, 0.242912f, -0.660318f, /*n:*/0.033113f, 0.944914f, 0.325602f, + /*v:*/-1.039062f, 0.258537f, -0.761881f, /*n:*/0.186804f, 0.953825f, 0.235084f, + /*v:*/-0.882812f, 0.235099f, -0.605631f, /*n:*/-0.162877f, 0.858028f, 0.487014f, + /*v:*/-0.882812f, 0.242912f, -0.660318f, /*n:*/0.033113f, 0.944914f, 0.325602f, + /*v:*/0.882812f, 0.235099f, -0.605631f, /*n:*/0.162877f, 0.858028f, 0.487014f, + /*v:*/1.039062f, 0.258537f, -0.761881f, /*n:*/-0.186804f, 0.953825f, 0.235084f, + /*v:*/0.882812f, 0.242912f, -0.660318f, /*n:*/-0.033113f, 0.944914f, 0.325602f, + /*v:*/1.039062f, 0.258537f, -0.761881f, /*n:*/-0.186804f, 0.953825f, 0.235084f, + /*v:*/1.046875f, 0.258537f, -0.816568f, /*n:*/0.065004f, 0.703848f, 0.707358f, + /*v:*/0.882812f, 0.242912f, -0.660318f, /*n:*/-0.033113f, 0.944914f, 0.325602f, + /*v:*/-1.210938f, 0.344474f, -0.879068f, /*n:*/0.583117f, 0.499893f, 0.640339f, + /*v:*/-1.187500f, 0.352287f, -0.840006f, /*n:*/0.762139f, 0.647084f, -0.019318f, + /*v:*/-1.046875f, 0.258537f, -0.816568f, /*n:*/-0.065004f, 0.703848f, 0.707358f, + /*v:*/-1.187500f, 0.352287f, -0.840006f, /*n:*/0.762139f, 0.647084f, -0.019318f, + /*v:*/-1.039062f, 0.258537f, -0.761881f, /*n:*/0.186804f, 0.953825f, 0.235084f, + /*v:*/-1.046875f, 0.258537f, -0.816568f, /*n:*/-0.065004f, 0.703848f, 0.707358f, + /*v:*/1.039062f, 0.258537f, -0.761881f, /*n:*/-0.186804f, 0.953825f, 0.235084f, + /*v:*/1.187500f, 0.352287f, -0.840006f, /*n:*/-0.762139f, 0.647084f, -0.019318f, + /*v:*/1.046875f, 0.258537f, -0.816568f, /*n:*/0.065004f, 0.703848f, 0.707358f, + /*v:*/1.187500f, 0.352287f, -0.840006f, /*n:*/-0.762139f, 0.647084f, -0.019318f, + /*v:*/1.210938f, 0.344474f, -0.879068f, /*n:*/-0.583117f, 0.499893f, 0.640339f, + /*v:*/1.046875f, 0.258537f, -0.816568f, /*n:*/0.065004f, 0.703848f, 0.707358f, + /*v:*/-1.257812f, 0.500724f, -0.886881f, /*n:*/0.752861f, -0.033784f, 0.657277f, + /*v:*/-1.234375f, 0.508537f, -0.840006f, /*n:*/0.984741f, -0.099582f, 0.142613f, + /*v:*/-1.210938f, 0.344474f, -0.879068f, /*n:*/0.583117f, 0.499893f, 0.640339f, + /*v:*/-1.234375f, 0.508537f, -0.840006f, /*n:*/0.984741f, -0.099582f, 0.142613f, + /*v:*/-1.187500f, 0.352287f, -0.840006f, /*n:*/0.762139f, 0.647084f, -0.019318f, + /*v:*/-1.210938f, 0.344474f, -0.879068f, /*n:*/0.583117f, 0.499893f, 0.640339f, + /*v:*/1.187500f, 0.352287f, -0.840006f, /*n:*/-0.762139f, 0.647084f, -0.019318f, + /*v:*/1.234375f, 0.508537f, -0.840006f, /*n:*/-0.984741f, -0.099582f, 0.142613f, + /*v:*/1.210938f, 0.344474f, -0.879068f, /*n:*/-0.583117f, 0.499893f, 0.640339f, + /*v:*/1.234375f, 0.508537f, -0.840006f, /*n:*/-0.984741f, -0.099582f, 0.142613f, + /*v:*/1.257812f, 0.500724f, -0.886881f, /*n:*/-0.752861f, -0.033784f, 0.657277f, + /*v:*/1.210938f, 0.344474f, -0.879068f, /*n:*/-0.583117f, 0.499893f, 0.640339f, + /*v:*/-1.187500f, 0.602287f, -0.879068f, /*n:*/0.262398f, -0.533067f, 0.804346f, + /*v:*/-1.171875f, 0.617912f, -0.832193f, /*n:*/0.149571f, -0.745506f, 0.649464f, + /*v:*/-1.234375f, 0.508537f, -0.840006f, /*n:*/0.984741f, -0.099582f, 0.142613f, + /*v:*/-1.187500f, 0.602287f, -0.879068f, /*n:*/0.262398f, -0.533067f, 0.804346f, + /*v:*/-1.234375f, 0.508537f, -0.840006f, /*n:*/0.984741f, -0.099582f, 0.142613f, + /*v:*/-1.257812f, 0.500724f, -0.886881f, /*n:*/0.752861f, -0.033784f, 0.657277f, + /*v:*/1.234375f, 0.508537f, -0.840006f, /*n:*/-0.984741f, -0.099582f, 0.142613f, + /*v:*/1.171875f, 0.617912f, -0.832193f, /*n:*/-0.149571f, -0.745506f, 0.649464f, + /*v:*/1.187500f, 0.602287f, -0.879068f, /*n:*/-0.262398f, -0.533067f, 0.804346f, + /*v:*/1.234375f, 0.508537f, -0.840006f, /*n:*/-0.984741f, -0.099582f, 0.142613f, + /*v:*/1.187500f, 0.602287f, -0.879068f, /*n:*/-0.262398f, -0.533067f, 0.804346f, + /*v:*/1.257812f, 0.500724f, -0.886881f, /*n:*/-0.752861f, -0.033784f, 0.657277f, + /*v:*/-1.039062f, 0.586662f, -0.808756f, /*n:*/-0.461776f, -0.329142f, 0.823664f, + /*v:*/-1.023438f, 0.602287f, -0.754068f, /*n:*/-0.560442f, -0.660878f, 0.499100f, + /*v:*/-1.171875f, 0.617912f, -0.832193f, /*n:*/0.149571f, -0.745506f, 0.649464f, + /*v:*/-1.039062f, 0.586662f, -0.808756f, /*n:*/-0.461776f, -0.329142f, 0.823664f, + /*v:*/-1.171875f, 0.617912f, -0.832193f, /*n:*/0.149571f, -0.745506f, 0.649464f, + /*v:*/-1.187500f, 0.602287f, -0.879068f, /*n:*/0.262398f, -0.533067f, 0.804346f, + /*v:*/1.171875f, 0.617912f, -0.832193f, /*n:*/-0.149571f, -0.745506f, 0.649464f, + /*v:*/1.023438f, 0.602287f, -0.754068f, /*n:*/0.560442f, -0.660878f, 0.499100f, + /*v:*/1.039062f, 0.586662f, -0.808756f, /*n:*/0.461776f, -0.329142f, 0.823664f, + /*v:*/1.171875f, 0.617912f, -0.832193f, /*n:*/-0.149571f, -0.745506f, 0.649464f, + /*v:*/1.039062f, 0.586662f, -0.808756f, /*n:*/0.461776f, -0.329142f, 0.823664f, + /*v:*/1.187500f, 0.602287f, -0.879068f, /*n:*/-0.262398f, -0.533067f, 0.804346f, + /*v:*/-0.953125f, 0.547599f, -0.738443f, /*n:*/-0.648213f, -0.420576f, 0.634724f, + /*v:*/-0.945312f, 0.563224f, -0.683756f, /*n:*/-0.684194f, -0.555773f, 0.472182f, + /*v:*/-1.023438f, 0.602287f, -0.754068f, /*n:*/-0.560442f, -0.660878f, 0.499100f, + /*v:*/-0.953125f, 0.547599f, -0.738443f, /*n:*/-0.648213f, -0.420576f, 0.634724f, + /*v:*/-1.023438f, 0.602287f, -0.754068f, /*n:*/-0.560442f, -0.660878f, 0.499100f, + /*v:*/-1.039062f, 0.586662f, -0.808756f, /*n:*/-0.461776f, -0.329142f, 0.823664f, + /*v:*/1.023438f, 0.602287f, -0.754068f, /*n:*/0.560442f, -0.660878f, 0.499100f, + /*v:*/0.945312f, 0.563224f, -0.683756f, /*n:*/0.684194f, -0.555773f, 0.472182f, + /*v:*/0.953125f, 0.547599f, -0.738443f, /*n:*/0.648213f, -0.420576f, 0.634724f, + /*v:*/1.023438f, 0.602287f, -0.754068f, /*n:*/0.560442f, -0.660878f, 0.499100f, + /*v:*/0.953125f, 0.547599f, -0.738443f, /*n:*/0.648213f, -0.420576f, 0.634724f, + /*v:*/1.039062f, 0.586662f, -0.808756f, /*n:*/0.461776f, -0.329142f, 0.823664f, + /*v:*/-0.882812f, 0.242912f, -0.660318f, /*n:*/0.033113f, 0.944914f, 0.325602f, + /*v:*/-0.882812f, 0.235099f, -0.605631f, /*n:*/-0.162877f, 0.858028f, 0.487014f, + /*v:*/-0.812500f, 0.242912f, -0.668131f, /*n:*/-0.599841f, 0.513138f, 0.613880f, + /*v:*/-0.882812f, 0.242912f, -0.660318f, /*n:*/0.033113f, 0.944914f, 0.325602f, + /*v:*/-0.812500f, 0.242912f, -0.668131f, /*n:*/-0.599841f, 0.513138f, 0.613880f, + /*v:*/-0.812500f, 0.242912f, -0.715006f, /*n:*/-0.644978f, 0.310129f, 0.698386f, + /*v:*/0.812500f, 0.242912f, -0.668131f, /*n:*/0.599841f, 0.513138f, 0.613880f, + /*v:*/0.882812f, 0.235099f, -0.605631f, /*n:*/0.162877f, 0.858028f, 0.487014f, + /*v:*/0.882812f, 0.242912f, -0.660318f, /*n:*/-0.033113f, 0.944914f, 0.325602f, + /*v:*/0.812500f, 0.242912f, -0.668131f, /*n:*/0.599841f, 0.513138f, 0.613880f, + /*v:*/0.882812f, 0.242912f, -0.660318f, /*n:*/-0.033113f, 0.944914f, 0.325602f, + /*v:*/0.812500f, 0.242912f, -0.715006f, /*n:*/0.644978f, 0.310129f, 0.698386f, + /*v:*/-0.812500f, 0.242912f, -0.715006f, /*n:*/-0.644978f, 0.310129f, 0.698386f, + /*v:*/-0.812500f, 0.242912f, -0.668131f, /*n:*/-0.599841f, 0.513138f, 0.613880f, + /*v:*/-0.843750f, 0.274162f, -0.668131f, /*n:*/-0.842036f, -0.176244f, 0.509781f, + /*v:*/-0.812500f, 0.242912f, -0.715006f, /*n:*/-0.644978f, 0.310129f, 0.698386f, + /*v:*/-0.843750f, 0.274162f, -0.668131f, /*n:*/-0.842036f, -0.176244f, 0.509781f, + /*v:*/-0.851562f, 0.274162f, -0.715006f, /*n:*/-0.292917f, 0.370922f, 0.881222f, + /*v:*/0.843750f, 0.274162f, -0.668131f, /*n:*/0.842036f, -0.176244f, 0.509781f, + /*v:*/0.812500f, 0.242912f, -0.668131f, /*n:*/0.599841f, 0.513138f, 0.613880f, + /*v:*/0.812500f, 0.242912f, -0.715006f, /*n:*/0.644978f, 0.310129f, 0.698386f, + /*v:*/0.843750f, 0.274162f, -0.668131f, /*n:*/0.842036f, -0.176244f, 0.509781f, + /*v:*/0.812500f, 0.242912f, -0.715006f, /*n:*/0.644978f, 0.310129f, 0.698386f, + /*v:*/0.851562f, 0.274162f, -0.715006f, /*n:*/0.292917f, 0.370922f, 0.881222f, + /*v:*/-0.851562f, 0.274162f, -0.715006f, /*n:*/-0.292917f, 0.370922f, 0.881222f, + /*v:*/-0.843750f, 0.274162f, -0.668131f, /*n:*/-0.842036f, -0.176244f, 0.509781f, + /*v:*/-0.828125f, 0.336662f, -0.715006f, /*n:*/-0.449232f, 0.379864f, 0.808618f, + /*v:*/-0.843750f, 0.274162f, -0.668131f, /*n:*/-0.842036f, -0.176244f, 0.509781f, + /*v:*/-0.820312f, 0.344474f, -0.668131f, /*n:*/-0.481368f, 0.634388f, 0.604816f, + /*v:*/-0.828125f, 0.336662f, -0.715006f, /*n:*/-0.449232f, 0.379864f, 0.808618f, + /*v:*/0.820312f, 0.344474f, -0.668131f, /*n:*/0.481368f, 0.634388f, 0.604816f, + /*v:*/0.843750f, 0.274162f, -0.668131f, /*n:*/0.842036f, -0.176244f, 0.509781f, + /*v:*/0.828125f, 0.336662f, -0.715006f, /*n:*/0.449232f, 0.379864f, 0.808618f, + /*v:*/0.843750f, 0.274162f, -0.668131f, /*n:*/0.842036f, -0.176244f, 0.509781f, + /*v:*/0.851562f, 0.274162f, -0.715006f, /*n:*/0.292917f, 0.370922f, 0.881222f, + /*v:*/0.828125f, 0.336662f, -0.715006f, /*n:*/0.449232f, 0.379864f, 0.808618f, + /*v:*/-0.828125f, 0.336662f, -0.715006f, /*n:*/-0.449232f, 0.379864f, 0.808618f, + /*v:*/-0.820312f, 0.344474f, -0.668131f, /*n:*/-0.481368f, 0.634388f, 0.604816f, + /*v:*/-0.765625f, 0.352287f, -0.715006f, /*n:*/-0.758354f, 0.266518f, 0.594806f, + /*v:*/-0.820312f, 0.344474f, -0.668131f, /*n:*/-0.481368f, 0.634388f, 0.604816f, + /*v:*/-0.757812f, 0.352287f, -0.668131f, /*n:*/-0.851466f, 0.041353f, 0.522752f, + /*v:*/-0.765625f, 0.352287f, -0.715006f, /*n:*/-0.758354f, 0.266518f, 0.594806f, + /*v:*/0.757812f, 0.352287f, -0.668131f, /*n:*/0.851466f, 0.041353f, 0.522752f, + /*v:*/0.820312f, 0.344474f, -0.668131f, /*n:*/0.481368f, 0.634388f, 0.604816f, + /*v:*/0.765625f, 0.352287f, -0.715006f, /*n:*/0.758354f, 0.266518f, 0.594806f, + /*v:*/0.820312f, 0.344474f, -0.668131f, /*n:*/0.481368f, 0.634388f, 0.604816f, + /*v:*/0.828125f, 0.336662f, -0.715006f, /*n:*/0.449232f, 0.379864f, 0.808618f, + /*v:*/0.765625f, 0.352287f, -0.715006f, /*n:*/0.758354f, 0.266518f, 0.594806f, + /*v:*/-0.765625f, 0.352287f, -0.715006f, /*n:*/-0.758354f, 0.266518f, 0.594806f, + /*v:*/-0.757812f, 0.352287f, -0.668131f, /*n:*/-0.851466f, 0.041353f, 0.522752f, + /*v:*/-0.835938f, 0.430412f, -0.668131f, /*n:*/-0.686361f, -0.623371f, 0.374554f, + /*v:*/-0.765625f, 0.352287f, -0.715006f, /*n:*/-0.758354f, 0.266518f, 0.594806f, + /*v:*/-0.835938f, 0.430412f, -0.668131f, /*n:*/-0.686361f, -0.623371f, 0.374554f, + /*v:*/-0.843750f, 0.430412f, -0.715006f, /*n:*/-0.572527f, -0.418928f, 0.704733f, + /*v:*/0.835938f, 0.430412f, -0.668131f, /*n:*/0.686361f, -0.623371f, 0.374554f, + /*v:*/0.757812f, 0.352287f, -0.668131f, /*n:*/0.851466f, 0.041353f, 0.522752f, + /*v:*/0.765625f, 0.352287f, -0.715006f, /*n:*/0.758354f, 0.266518f, 0.594806f, + /*v:*/0.835938f, 0.430412f, -0.668131f, /*n:*/0.686361f, -0.623371f, 0.374554f, + /*v:*/0.765625f, 0.352287f, -0.715006f, /*n:*/0.758354f, 0.266518f, 0.594806f, + /*v:*/0.843750f, 0.430412f, -0.715006f, /*n:*/0.572527f, -0.418928f, 0.704733f, + /*v:*/-0.843750f, 0.430412f, -0.715006f, /*n:*/-0.572527f, -0.418928f, 0.704733f, + /*v:*/-0.835938f, 0.430412f, -0.668131f, /*n:*/-0.686361f, -0.623371f, 0.374554f, + /*v:*/-0.890625f, 0.492912f, -0.715006f, /*n:*/-0.659291f, -0.468490f, 0.588061f, + /*v:*/-0.835938f, 0.430412f, -0.668131f, /*n:*/-0.686361f, -0.623371f, 0.374554f, + /*v:*/-0.890625f, 0.500724f, -0.660318f, /*n:*/-0.726066f, -0.498917f, 0.473128f, + /*v:*/-0.890625f, 0.492912f, -0.715006f, /*n:*/-0.659291f, -0.468490f, 0.588061f, + /*v:*/0.890625f, 0.500724f, -0.660318f, /*n:*/0.726066f, -0.498917f, 0.473128f, + /*v:*/0.835938f, 0.430412f, -0.668131f, /*n:*/0.686361f, -0.623371f, 0.374554f, + /*v:*/0.890625f, 0.492912f, -0.715006f, /*n:*/0.659291f, -0.468490f, 0.588061f, + /*v:*/0.835938f, 0.430412f, -0.668131f, /*n:*/0.686361f, -0.623371f, 0.374554f, + /*v:*/0.843750f, 0.430412f, -0.715006f, /*n:*/0.572527f, -0.418928f, 0.704733f, + /*v:*/0.890625f, 0.492912f, -0.715006f, /*n:*/0.659291f, -0.468490f, 0.588061f, + /*v:*/-0.890625f, 0.492912f, -0.715006f, /*n:*/-0.659291f, -0.468490f, 0.588061f, + /*v:*/-0.890625f, 0.500724f, -0.660318f, /*n:*/-0.726066f, -0.498917f, 0.473128f, + /*v:*/-0.945312f, 0.563224f, -0.683756f, /*n:*/-0.684194f, -0.555773f, 0.472182f, + /*v:*/-0.890625f, 0.492912f, -0.715006f, /*n:*/-0.659291f, -0.468490f, 0.588061f, + /*v:*/-0.945312f, 0.563224f, -0.683756f, /*n:*/-0.684194f, -0.555773f, 0.472182f, + /*v:*/-0.953125f, 0.547599f, -0.738443f, /*n:*/-0.648213f, -0.420576f, 0.634724f, + /*v:*/0.945312f, 0.563224f, -0.683756f, /*n:*/0.684194f, -0.555773f, 0.472182f, + /*v:*/0.890625f, 0.500724f, -0.660318f, /*n:*/0.726066f, -0.498917f, 0.473128f, + /*v:*/0.890625f, 0.492912f, -0.715006f, /*n:*/0.659291f, -0.468490f, 0.588061f, + /*v:*/0.945312f, 0.563224f, -0.683756f, /*n:*/0.684194f, -0.555773f, 0.472182f, + /*v:*/0.890625f, 0.492912f, -0.715006f, /*n:*/0.659291f, -0.468490f, 0.588061f, + /*v:*/0.953125f, 0.547599f, -0.738443f, /*n:*/0.648213f, -0.420576f, 0.634724f, + /*v:*/-0.718750f, 0.297599f, -0.582193f, /*n:*/-0.960936f, -0.118839f, 0.249855f, + /*v:*/-0.726562f, 0.258537f, -0.465006f, /*n:*/-0.857204f, -0.493118f, -0.148289f, + /*v:*/-0.796875f, 0.461662f, -0.605631f, /*n:*/-0.848354f, -0.435377f, 0.301157f, + /*v:*/-0.726562f, 0.258537f, -0.465006f, /*n:*/-0.857204f, -0.493118f, -0.148289f, + /*v:*/-0.859375f, 0.578849f, -0.441568f, /*n:*/-0.997009f, -0.033296f, -0.069521f, + /*v:*/-0.796875f, 0.461662f, -0.605631f, /*n:*/-0.848354f, -0.435377f, 0.301157f, + /*v:*/0.859375f, 0.578849f, -0.441568f, /*n:*/0.997009f, -0.033296f, -0.069521f, + /*v:*/0.726562f, 0.258537f, -0.465006f, /*n:*/0.857204f, -0.493118f, -0.148289f, + /*v:*/0.796875f, 0.461662f, -0.605631f, /*n:*/0.848354f, -0.435377f, 0.301157f, + /*v:*/0.726562f, 0.258537f, -0.465006f, /*n:*/0.857204f, -0.493118f, -0.148289f, + /*v:*/0.718750f, 0.297599f, -0.582193f, /*n:*/0.960936f, -0.118839f, 0.249855f, + /*v:*/0.796875f, 0.461662f, -0.605631f, /*n:*/0.848354f, -0.435377f, 0.301157f, + /*v:*/-0.843750f, 0.547599f, -0.605631f, /*n:*/-0.372723f, -0.224158f, 0.900449f, + /*v:*/-0.796875f, 0.461662f, -0.605631f, /*n:*/-0.848354f, -0.435377f, 0.301157f, + /*v:*/-0.820312f, 0.586662f, -0.597818f, /*n:*/-0.908536f, 0.224219f, 0.352489f, + /*v:*/-0.796875f, 0.461662f, -0.605631f, /*n:*/-0.848354f, -0.435377f, 0.301157f, + /*v:*/-0.859375f, 0.578849f, -0.441568f, /*n:*/-0.997009f, -0.033296f, -0.069521f, + /*v:*/-0.820312f, 0.586662f, -0.597818f, /*n:*/-0.908536f, 0.224219f, 0.352489f, + /*v:*/0.859375f, 0.578849f, -0.441568f, /*n:*/0.997009f, -0.033296f, -0.069521f, + /*v:*/0.796875f, 0.461662f, -0.605631f, /*n:*/0.848354f, -0.435377f, 0.301157f, + /*v:*/0.820312f, 0.586662f, -0.597818f, /*n:*/0.908536f, 0.224219f, 0.352489f, + /*v:*/0.796875f, 0.461662f, -0.605631f, /*n:*/0.848354f, -0.435377f, 0.301157f, + /*v:*/0.843750f, 0.547599f, -0.605631f, /*n:*/0.372723f, -0.224158f, 0.900449f, + /*v:*/0.820312f, 0.586662f, -0.597818f, /*n:*/0.908536f, 0.224219f, 0.352489f, + /*v:*/-0.890625f, 0.500724f, -0.660318f, /*n:*/-0.726066f, -0.498917f, 0.473128f, + /*v:*/-0.843750f, 0.547599f, -0.605631f, /*n:*/-0.372723f, -0.224158f, 0.900449f, + /*v:*/-0.945312f, 0.563224f, -0.683756f, /*n:*/-0.684194f, -0.555773f, 0.472182f, + /*v:*/-0.843750f, 0.547599f, -0.605631f, /*n:*/-0.372723f, -0.224158f, 0.900449f, + /*v:*/-0.921875f, 0.617912f, -0.613443f, /*n:*/-0.449232f, -0.038331f, 0.892575f, + /*v:*/-0.945312f, 0.563224f, -0.683756f, /*n:*/-0.684194f, -0.555773f, 0.472182f, + /*v:*/0.921875f, 0.617912f, -0.613443f, /*n:*/0.449232f, -0.038331f, 0.892575f, + /*v:*/0.843750f, 0.547599f, -0.605631f, /*n:*/0.372723f, -0.224158f, 0.900449f, + /*v:*/0.945312f, 0.563224f, -0.683756f, /*n:*/0.684194f, -0.555773f, 0.472182f, + /*v:*/0.843750f, 0.547599f, -0.605631f, /*n:*/0.372723f, -0.224158f, 0.900449f, + /*v:*/0.890625f, 0.500724f, -0.660318f, /*n:*/0.726066f, -0.498917f, 0.473128f, + /*v:*/0.945312f, 0.563224f, -0.683756f, /*n:*/0.684194f, -0.555773f, 0.472182f, + /*v:*/-0.835938f, 0.430412f, -0.668131f, /*n:*/-0.686361f, -0.623371f, 0.374554f, + /*v:*/-0.796875f, 0.461662f, -0.605631f, /*n:*/-0.848354f, -0.435377f, 0.301157f, + /*v:*/-0.890625f, 0.500724f, -0.660318f, /*n:*/-0.726066f, -0.498917f, 0.473128f, + /*v:*/-0.796875f, 0.461662f, -0.605631f, /*n:*/-0.848354f, -0.435377f, 0.301157f, + /*v:*/-0.843750f, 0.547599f, -0.605631f, /*n:*/-0.372723f, -0.224158f, 0.900449f, + /*v:*/-0.890625f, 0.500724f, -0.660318f, /*n:*/-0.726066f, -0.498917f, 0.473128f, + /*v:*/0.843750f, 0.547599f, -0.605631f, /*n:*/0.372723f, -0.224158f, 0.900449f, + /*v:*/0.796875f, 0.461662f, -0.605631f, /*n:*/0.848354f, -0.435377f, 0.301157f, + /*v:*/0.890625f, 0.500724f, -0.660318f, /*n:*/0.726066f, -0.498917f, 0.473128f, + /*v:*/0.796875f, 0.461662f, -0.605631f, /*n:*/0.848354f, -0.435377f, 0.301157f, + /*v:*/0.835938f, 0.430412f, -0.668131f, /*n:*/0.686361f, -0.623371f, 0.374554f, + /*v:*/0.890625f, 0.500724f, -0.660318f, /*n:*/0.726066f, -0.498917f, 0.473128f, + /*v:*/-0.718750f, 0.297599f, -0.582193f, /*n:*/-0.960936f, -0.118839f, 0.249855f, + /*v:*/-0.796875f, 0.461662f, -0.605631f, /*n:*/-0.848354f, -0.435377f, 0.301157f, + /*v:*/-0.757812f, 0.352287f, -0.668131f, /*n:*/-0.851466f, 0.041353f, 0.522752f, + /*v:*/-0.796875f, 0.461662f, -0.605631f, /*n:*/-0.848354f, -0.435377f, 0.301157f, + /*v:*/-0.835938f, 0.430412f, -0.668131f, /*n:*/-0.686361f, -0.623371f, 0.374554f, + /*v:*/-0.757812f, 0.352287f, -0.668131f, /*n:*/-0.851466f, 0.041353f, 0.522752f, + /*v:*/0.835938f, 0.430412f, -0.668131f, /*n:*/0.686361f, -0.623371f, 0.374554f, + /*v:*/0.796875f, 0.461662f, -0.605631f, /*n:*/0.848354f, -0.435377f, 0.301157f, + /*v:*/0.757812f, 0.352287f, -0.668131f, /*n:*/0.851466f, 0.041353f, 0.522752f, + /*v:*/0.796875f, 0.461662f, -0.605631f, /*n:*/0.848354f, -0.435377f, 0.301157f, + /*v:*/0.718750f, 0.297599f, -0.582193f, /*n:*/0.960936f, -0.118839f, 0.249855f, + /*v:*/0.757812f, 0.352287f, -0.668131f, /*n:*/0.851466f, 0.041353f, 0.522752f, + /*v:*/-0.843750f, 0.274162f, -0.668131f, /*n:*/-0.842036f, -0.176244f, 0.509781f, + /*v:*/-0.718750f, 0.297599f, -0.582193f, /*n:*/-0.960936f, -0.118839f, 0.249855f, + /*v:*/-0.757812f, 0.352287f, -0.668131f, /*n:*/-0.851466f, 0.041353f, 0.522752f, + /*v:*/-0.843750f, 0.274162f, -0.668131f, /*n:*/-0.842036f, -0.176244f, 0.509781f, + /*v:*/-0.757812f, 0.352287f, -0.668131f, /*n:*/-0.851466f, 0.041353f, 0.522752f, + /*v:*/-0.820312f, 0.344474f, -0.668131f, /*n:*/-0.481368f, 0.634388f, 0.604816f, + /*v:*/0.757812f, 0.352287f, -0.668131f, /*n:*/0.851466f, 0.041353f, 0.522752f, + /*v:*/0.718750f, 0.297599f, -0.582193f, /*n:*/0.960936f, -0.118839f, 0.249855f, + /*v:*/0.843750f, 0.274162f, -0.668131f, /*n:*/0.842036f, -0.176244f, 0.509781f, + /*v:*/0.757812f, 0.352287f, -0.668131f, /*n:*/0.851466f, 0.041353f, 0.522752f, + /*v:*/0.843750f, 0.274162f, -0.668131f, /*n:*/0.842036f, -0.176244f, 0.509781f, + /*v:*/0.820312f, 0.344474f, -0.668131f, /*n:*/0.481368f, 0.634388f, 0.604816f, + /*v:*/-0.718750f, 0.235099f, -0.566568f, /*n:*/-0.731193f, 0.114414f, 0.672475f, + /*v:*/-0.718750f, 0.297599f, -0.582193f, /*n:*/-0.960936f, -0.118839f, 0.249855f, + /*v:*/-0.812500f, 0.242912f, -0.668131f, /*n:*/-0.599841f, 0.513138f, 0.613880f, + /*v:*/-0.718750f, 0.297599f, -0.582193f, /*n:*/-0.960936f, -0.118839f, 0.249855f, + /*v:*/-0.843750f, 0.274162f, -0.668131f, /*n:*/-0.842036f, -0.176244f, 0.509781f, + /*v:*/-0.812500f, 0.242912f, -0.668131f, /*n:*/-0.599841f, 0.513138f, 0.613880f, + /*v:*/0.843750f, 0.274162f, -0.668131f, /*n:*/0.842036f, -0.176244f, 0.509781f, + /*v:*/0.718750f, 0.297599f, -0.582193f, /*n:*/0.960936f, -0.118839f, 0.249855f, + /*v:*/0.812500f, 0.242912f, -0.668131f, /*n:*/0.599841f, 0.513138f, 0.613880f, + /*v:*/0.718750f, 0.297599f, -0.582193f, /*n:*/0.960936f, -0.118839f, 0.249855f, + /*v:*/0.718750f, 0.235099f, -0.566568f, /*n:*/0.731193f, 0.114414f, 0.672475f, + /*v:*/0.812500f, 0.242912f, -0.668131f, /*n:*/0.599841f, 0.513138f, 0.613880f, + /*v:*/-0.812500f, 0.242912f, -0.668131f, /*n:*/-0.599841f, 0.513138f, 0.613880f, + /*v:*/-0.882812f, 0.235099f, -0.605631f, /*n:*/-0.162877f, 0.858028f, 0.487014f, + /*v:*/-0.828125f, 0.188224f, -0.527506f, /*n:*/-0.329936f, 0.315653f, 0.889645f, + /*v:*/-0.812500f, 0.242912f, -0.668131f, /*n:*/-0.599841f, 0.513138f, 0.613880f, + /*v:*/-0.828125f, 0.188224f, -0.527506f, /*n:*/-0.329936f, 0.315653f, 0.889645f, + /*v:*/-0.718750f, 0.235099f, -0.566568f, /*n:*/-0.731193f, 0.114414f, 0.672475f, + /*v:*/0.828125f, 0.188224f, -0.527506f, /*n:*/0.329936f, 0.315653f, 0.889645f, + /*v:*/0.882812f, 0.235099f, -0.605631f, /*n:*/0.162877f, 0.858028f, 0.487014f, + /*v:*/0.812500f, 0.242912f, -0.668131f, /*n:*/0.599841f, 0.513138f, 0.613880f, + /*v:*/0.828125f, 0.188224f, -0.527506f, /*n:*/0.329936f, 0.315653f, 0.889645f, + /*v:*/0.812500f, 0.242912f, -0.668131f, /*n:*/0.599841f, 0.513138f, 0.613880f, + /*v:*/0.718750f, 0.235099f, -0.566568f, /*n:*/0.731193f, 0.114414f, 0.672475f, + /*v:*/-0.921875f, 0.617912f, -0.613443f, /*n:*/-0.449232f, -0.038331f, 0.892575f, + /*v:*/-0.843750f, 0.547599f, -0.605631f, /*n:*/-0.372723f, -0.224158f, 0.900449f, + /*v:*/-0.820312f, 0.586662f, -0.597818f, /*n:*/-0.908536f, 0.224219f, 0.352489f, + /*v:*/-0.921875f, 0.617912f, -0.613443f, /*n:*/-0.449232f, -0.038331f, 0.892575f, + /*v:*/-0.820312f, 0.586662f, -0.597818f, /*n:*/-0.908536f, 0.224219f, 0.352489f, + /*v:*/-0.890625f, 0.664787f, -0.629068f, /*n:*/0.279244f, 0.768303f, 0.575884f, + /*v:*/0.820312f, 0.586662f, -0.597818f, /*n:*/0.908536f, 0.224219f, 0.352489f, + /*v:*/0.843750f, 0.547599f, -0.605631f, /*n:*/0.372723f, -0.224158f, 0.900449f, + /*v:*/0.921875f, 0.617912f, -0.613443f, /*n:*/0.449232f, -0.038331f, 0.892575f, + /*v:*/0.820312f, 0.586662f, -0.597818f, /*n:*/0.908536f, 0.224219f, 0.352489f, + /*v:*/0.921875f, 0.617912f, -0.613443f, /*n:*/0.449232f, -0.038331f, 0.892575f, + /*v:*/0.890625f, 0.664787f, -0.629068f, /*n:*/-0.279244f, 0.768303f, 0.575884f, + /*v:*/-0.726562f, 0.258537f, -0.465006f, /*n:*/-0.857204f, -0.493118f, -0.148289f, + /*v:*/-0.734375f, 0.211662f, -0.324381f, /*n:*/-0.721030f, -0.689810f, 0.065065f, + /*v:*/-0.851562f, 0.492912f, -0.340006f, /*n:*/-0.985015f, -0.160466f, 0.063051f, + /*v:*/-0.726562f, 0.258537f, -0.465006f, /*n:*/-0.857204f, -0.493118f, -0.148289f, + /*v:*/-0.851562f, 0.492912f, -0.340006f, /*n:*/-0.985015f, -0.160466f, 0.063051f, + /*v:*/-0.859375f, 0.578849f, -0.441568f, /*n:*/-0.997009f, -0.033296f, -0.069521f, + /*v:*/0.851562f, 0.492912f, -0.340006f, /*n:*/0.985015f, -0.160466f, 0.063051f, + /*v:*/0.734375f, 0.211662f, -0.324381f, /*n:*/0.721030f, -0.689810f, 0.065065f, + /*v:*/0.726562f, 0.258537f, -0.465006f, /*n:*/0.857204f, -0.493118f, -0.148289f, + /*v:*/0.851562f, 0.492912f, -0.340006f, /*n:*/0.985015f, -0.160466f, 0.063051f, + /*v:*/0.726562f, 0.258537f, -0.465006f, /*n:*/0.857204f, -0.493118f, -0.148289f, + /*v:*/0.859375f, 0.578849f, -0.441568f, /*n:*/0.997009f, -0.033296f, -0.069521f, + /*v:*/-0.828125f, 0.188224f, -0.527506f, /*n:*/-0.329936f, 0.315653f, 0.889645f, + /*v:*/-0.773438f, 0.117912f, -0.519693f, /*n:*/-0.029542f, -0.634999f, 0.771905f, + /*v:*/-0.718750f, 0.235099f, -0.566568f, /*n:*/-0.731193f, 0.114414f, 0.672475f, + /*v:*/-0.773438f, 0.117912f, -0.519693f, /*n:*/-0.029542f, -0.634999f, 0.771905f, + /*v:*/-0.593750f, 0.133537f, -0.558756f, /*n:*/-0.312296f, -0.949950f, 0.001160f, + /*v:*/-0.718750f, 0.235099f, -0.566568f, /*n:*/-0.731193f, 0.114414f, 0.672475f, + /*v:*/0.593750f, 0.133537f, -0.558756f, /*n:*/0.312296f, -0.949950f, 0.001160f, + /*v:*/0.773438f, 0.117912f, -0.519693f, /*n:*/0.029542f, -0.634999f, 0.771905f, + /*v:*/0.718750f, 0.235099f, -0.566568f, /*n:*/0.731193f, 0.114414f, 0.672475f, + /*v:*/0.773438f, 0.117912f, -0.519693f, /*n:*/0.029542f, -0.634999f, 0.771905f, + /*v:*/0.828125f, 0.188224f, -0.527506f, /*n:*/0.329936f, 0.315653f, 0.889645f, + /*v:*/0.718750f, 0.235099f, -0.566568f, /*n:*/0.731193f, 0.114414f, 0.672475f, + /*v:*/-0.718750f, 0.235099f, -0.566568f, /*n:*/-0.731193f, 0.114414f, 0.672475f, + /*v:*/-0.593750f, 0.133537f, -0.558756f, /*n:*/-0.312296f, -0.949950f, 0.001160f, + /*v:*/-0.726562f, 0.258537f, -0.465006f, /*n:*/-0.857204f, -0.493118f, -0.148289f, + /*v:*/-0.593750f, 0.133537f, -0.558756f, /*n:*/-0.312296f, -0.949950f, 0.001160f, + /*v:*/-0.734375f, 0.211662f, -0.324381f, /*n:*/-0.721030f, -0.689810f, 0.065065f, + /*v:*/-0.726562f, 0.258537f, -0.465006f, /*n:*/-0.857204f, -0.493118f, -0.148289f, + /*v:*/0.734375f, 0.211662f, -0.324381f, /*n:*/0.721030f, -0.689810f, 0.065065f, + /*v:*/0.593750f, 0.133537f, -0.558756f, /*n:*/0.312296f, -0.949950f, 0.001160f, + /*v:*/0.726562f, 0.258537f, -0.465006f, /*n:*/0.857204f, -0.493118f, -0.148289f, + /*v:*/0.593750f, 0.133537f, -0.558756f, /*n:*/0.312296f, -0.949950f, 0.001160f, + /*v:*/0.718750f, 0.235099f, -0.566568f, /*n:*/0.731193f, 0.114414f, 0.672475f, + /*v:*/0.726562f, 0.258537f, -0.465006f, /*n:*/0.857204f, -0.493118f, -0.148289f, + /*v:*/-0.945312f, 0.563224f, -0.683756f, /*n:*/-0.684194f, -0.555773f, 0.472182f, + /*v:*/-0.921875f, 0.617912f, -0.613443f, /*n:*/-0.449232f, -0.038331f, 0.892575f, + /*v:*/-1.015625f, 0.672599f, -0.683756f, /*n:*/-0.551164f, -0.078768f, 0.830622f, + /*v:*/-0.945312f, 0.563224f, -0.683756f, /*n:*/-0.684194f, -0.555773f, 0.472182f, + /*v:*/-1.015625f, 0.672599f, -0.683756f, /*n:*/-0.551164f, -0.078768f, 0.830622f, + /*v:*/-1.023438f, 0.602287f, -0.754068f, /*n:*/-0.560442f, -0.660878f, 0.499100f, + /*v:*/1.015625f, 0.672599f, -0.683756f, /*n:*/0.551164f, -0.078768f, 0.830622f, + /*v:*/0.921875f, 0.617912f, -0.613443f, /*n:*/0.449232f, -0.038331f, 0.892575f, + /*v:*/0.945312f, 0.563224f, -0.683756f, /*n:*/0.684194f, -0.555773f, 0.472182f, + /*v:*/1.015625f, 0.672599f, -0.683756f, /*n:*/0.551164f, -0.078768f, 0.830622f, + /*v:*/0.945312f, 0.563224f, -0.683756f, /*n:*/0.684194f, -0.555773f, 0.472182f, + /*v:*/1.023438f, 0.602287f, -0.754068f, /*n:*/0.560442f, -0.660878f, 0.499100f, + /*v:*/-1.171875f, 0.617912f, -0.832193f, /*n:*/0.149571f, -0.745506f, 0.649464f, + /*v:*/-1.023438f, 0.602287f, -0.754068f, /*n:*/-0.560442f, -0.660878f, 0.499100f, + /*v:*/-1.187500f, 0.696037f, -0.785318f, /*n:*/-0.321451f, -0.092318f, 0.942381f, + /*v:*/-1.023438f, 0.602287f, -0.754068f, /*n:*/-0.560442f, -0.660878f, 0.499100f, + /*v:*/-1.015625f, 0.672599f, -0.683756f, /*n:*/-0.551164f, -0.078768f, 0.830622f, + /*v:*/-1.187500f, 0.696037f, -0.785318f, /*n:*/-0.321451f, -0.092318f, 0.942381f, + /*v:*/1.015625f, 0.672599f, -0.683756f, /*n:*/0.551164f, -0.078768f, 0.830622f, + /*v:*/1.023438f, 0.602287f, -0.754068f, /*n:*/0.560442f, -0.660878f, 0.499100f, + /*v:*/1.187500f, 0.696037f, -0.785318f, /*n:*/0.321451f, -0.092318f, 0.942381f, + /*v:*/1.023438f, 0.602287f, -0.754068f, /*n:*/0.560442f, -0.660878f, 0.499100f, + /*v:*/1.171875f, 0.617912f, -0.832193f, /*n:*/-0.149571f, -0.745506f, 0.649464f, + /*v:*/1.187500f, 0.696037f, -0.785318f, /*n:*/0.321451f, -0.092318f, 0.942381f, + /*v:*/-1.234375f, 0.508537f, -0.840006f, /*n:*/0.984741f, -0.099582f, 0.142613f, + /*v:*/-1.171875f, 0.617912f, -0.832193f, /*n:*/0.149571f, -0.745506f, 0.649464f, + /*v:*/-1.265625f, 0.547599f, -0.800943f, /*n:*/0.154454f, -0.123875f, 0.980193f, + /*v:*/-1.171875f, 0.617912f, -0.832193f, /*n:*/0.149571f, -0.745506f, 0.649464f, + /*v:*/-1.187500f, 0.696037f, -0.785318f, /*n:*/-0.321451f, -0.092318f, 0.942381f, + /*v:*/-1.265625f, 0.547599f, -0.800943f, /*n:*/0.154454f, -0.123875f, 0.980193f, + /*v:*/1.187500f, 0.696037f, -0.785318f, /*n:*/0.321451f, -0.092318f, 0.942381f, + /*v:*/1.171875f, 0.617912f, -0.832193f, /*n:*/-0.149571f, -0.745506f, 0.649464f, + /*v:*/1.265625f, 0.547599f, -0.800943f, /*n:*/-0.154454f, -0.123875f, 0.980193f, + /*v:*/1.171875f, 0.617912f, -0.832193f, /*n:*/-0.149571f, -0.745506f, 0.649464f, + /*v:*/1.234375f, 0.508537f, -0.840006f, /*n:*/-0.984741f, -0.099582f, 0.142613f, + /*v:*/1.265625f, 0.547599f, -0.800943f, /*n:*/-0.154454f, -0.123875f, 0.980193f, + /*v:*/-1.187500f, 0.352287f, -0.840006f, /*n:*/0.762139f, 0.647084f, -0.019318f, + /*v:*/-1.234375f, 0.508537f, -0.840006f, /*n:*/0.984741f, -0.099582f, 0.142613f, + /*v:*/-1.210938f, 0.336662f, -0.800943f, /*n:*/0.041108f, 0.310831f, 0.949553f, + /*v:*/-1.234375f, 0.508537f, -0.840006f, /*n:*/0.984741f, -0.099582f, 0.142613f, + /*v:*/-1.265625f, 0.547599f, -0.800943f, /*n:*/0.154454f, -0.123875f, 0.980193f, + /*v:*/-1.210938f, 0.336662f, -0.800943f, /*n:*/0.041108f, 0.310831f, 0.949553f, + /*v:*/1.265625f, 0.547599f, -0.800943f, /*n:*/-0.154454f, -0.123875f, 0.980193f, + /*v:*/1.234375f, 0.508537f, -0.840006f, /*n:*/-0.984741f, -0.099582f, 0.142613f, + /*v:*/1.210938f, 0.336662f, -0.800943f, /*n:*/-0.041108f, 0.310831f, 0.949553f, + /*v:*/1.234375f, 0.508537f, -0.840006f, /*n:*/-0.984741f, -0.099582f, 0.142613f, + /*v:*/1.187500f, 0.352287f, -0.840006f, /*n:*/-0.762139f, 0.647084f, -0.019318f, + /*v:*/1.210938f, 0.336662f, -0.800943f, /*n:*/-0.041108f, 0.310831f, 0.949553f, + /*v:*/-1.039062f, 0.258537f, -0.761881f, /*n:*/0.186804f, 0.953825f, 0.235084f, + /*v:*/-1.187500f, 0.352287f, -0.840006f, /*n:*/0.762139f, 0.647084f, -0.019318f, + /*v:*/-1.210938f, 0.336662f, -0.800943f, /*n:*/0.041108f, 0.310831f, 0.949553f, + /*v:*/-1.039062f, 0.258537f, -0.761881f, /*n:*/0.186804f, 0.953825f, 0.235084f, + /*v:*/-1.210938f, 0.336662f, -0.800943f, /*n:*/0.041108f, 0.310831f, 0.949553f, + /*v:*/-1.031250f, 0.219474f, -0.699381f, /*n:*/-0.538377f, 0.295267f, 0.789239f, + /*v:*/1.210938f, 0.336662f, -0.800943f, /*n:*/-0.041108f, 0.310831f, 0.949553f, + /*v:*/1.187500f, 0.352287f, -0.840006f, /*n:*/-0.762139f, 0.647084f, -0.019318f, + /*v:*/1.039062f, 0.258537f, -0.761881f, /*n:*/-0.186804f, 0.953825f, 0.235084f, + /*v:*/1.210938f, 0.336662f, -0.800943f, /*n:*/-0.041108f, 0.310831f, 0.949553f, + /*v:*/1.039062f, 0.258537f, -0.761881f, /*n:*/-0.186804f, 0.953825f, 0.235084f, + /*v:*/1.031250f, 0.219474f, -0.699381f, /*n:*/0.538377f, 0.295267f, 0.789239f, + /*v:*/-0.882812f, 0.235099f, -0.605631f, /*n:*/-0.162877f, 0.858028f, 0.487014f, + /*v:*/-1.039062f, 0.258537f, -0.761881f, /*n:*/0.186804f, 0.953825f, 0.235084f, + /*v:*/-1.031250f, 0.219474f, -0.699381f, /*n:*/-0.538377f, 0.295267f, 0.789239f, + /*v:*/-0.882812f, 0.235099f, -0.605631f, /*n:*/-0.162877f, 0.858028f, 0.487014f, + /*v:*/-1.031250f, 0.219474f, -0.699381f, /*n:*/-0.538377f, 0.295267f, 0.789239f, + /*v:*/-0.828125f, 0.188224f, -0.527506f, /*n:*/-0.329936f, 0.315653f, 0.889645f, + /*v:*/1.031250f, 0.219474f, -0.699381f, /*n:*/0.538377f, 0.295267f, 0.789239f, + /*v:*/1.039062f, 0.258537f, -0.761881f, /*n:*/-0.186804f, 0.953825f, 0.235084f, + /*v:*/0.882812f, 0.235099f, -0.605631f, /*n:*/0.162877f, 0.858028f, 0.487014f, + /*v:*/1.031250f, 0.219474f, -0.699381f, /*n:*/0.538377f, 0.295267f, 0.789239f, + /*v:*/0.882812f, 0.235099f, -0.605631f, /*n:*/0.162877f, 0.858028f, 0.487014f, + /*v:*/0.828125f, 0.188224f, -0.527506f, /*n:*/0.329936f, 0.315653f, 0.889645f, + /*v:*/-0.828125f, 0.188224f, -0.527506f, /*n:*/-0.329936f, 0.315653f, 0.889645f, + /*v:*/-1.031250f, 0.219474f, -0.699381f, /*n:*/-0.538377f, 0.295267f, 0.789239f, + /*v:*/-1.039062f, 0.156974f, -0.722818f, /*n:*/-0.502884f, -0.780999f, 0.370312f, + /*v:*/-0.828125f, 0.188224f, -0.527506f, /*n:*/-0.329936f, 0.315653f, 0.889645f, + /*v:*/-1.039062f, 0.156974f, -0.722818f, /*n:*/-0.502884f, -0.780999f, 0.370312f, + /*v:*/-0.773438f, 0.117912f, -0.519693f, /*n:*/-0.029542f, -0.634999f, 0.771905f, + /*v:*/1.039062f, 0.156974f, -0.722818f, /*n:*/0.502884f, -0.780999f, 0.370312f, + /*v:*/1.031250f, 0.219474f, -0.699381f, /*n:*/0.538377f, 0.295267f, 0.789239f, + /*v:*/0.828125f, 0.188224f, -0.527506f, /*n:*/0.329936f, 0.315653f, 0.889645f, + /*v:*/1.039062f, 0.156974f, -0.722818f, /*n:*/0.502884f, -0.780999f, 0.370312f, + /*v:*/0.828125f, 0.188224f, -0.527506f, /*n:*/0.329936f, 0.315653f, 0.889645f, + /*v:*/0.773438f, 0.117912f, -0.519693f, /*n:*/0.029542f, -0.634999f, 0.771905f, + /*v:*/-1.031250f, 0.219474f, -0.699381f, /*n:*/-0.538377f, 0.295267f, 0.789239f, + /*v:*/-1.210938f, 0.336662f, -0.800943f, /*n:*/0.041108f, 0.310831f, 0.949553f, + /*v:*/-1.039062f, 0.156974f, -0.722818f, /*n:*/-0.502884f, -0.780999f, 0.370312f, + /*v:*/-1.210938f, 0.336662f, -0.800943f, /*n:*/0.041108f, 0.310831f, 0.949553f, + /*v:*/-1.281250f, 0.313224f, -0.824381f, /*n:*/-0.652608f, -0.476821f, 0.588794f, + /*v:*/-1.039062f, 0.156974f, -0.722818f, /*n:*/-0.502884f, -0.780999f, 0.370312f, + /*v:*/1.281250f, 0.313224f, -0.824381f, /*n:*/0.652608f, -0.476821f, 0.588794f, + /*v:*/1.210938f, 0.336662f, -0.800943f, /*n:*/-0.041108f, 0.310831f, 0.949553f, + /*v:*/1.039062f, 0.156974f, -0.722818f, /*n:*/0.502884f, -0.780999f, 0.370312f, + /*v:*/1.210938f, 0.336662f, -0.800943f, /*n:*/-0.041108f, 0.310831f, 0.949553f, + /*v:*/1.031250f, 0.219474f, -0.699381f, /*n:*/0.538377f, 0.295267f, 0.789239f, + /*v:*/1.039062f, 0.156974f, -0.722818f, /*n:*/0.502884f, -0.780999f, 0.370312f, + /*v:*/-1.210938f, 0.336662f, -0.800943f, /*n:*/0.041108f, 0.310831f, 0.949553f, + /*v:*/-1.265625f, 0.547599f, -0.800943f, /*n:*/0.154454f, -0.123875f, 0.980193f, + /*v:*/-1.281250f, 0.313224f, -0.824381f, /*n:*/-0.652608f, -0.476821f, 0.588794f, + /*v:*/-1.265625f, 0.547599f, -0.800943f, /*n:*/0.154454f, -0.123875f, 0.980193f, + /*v:*/-1.351562f, 0.578849f, -0.816568f, /*n:*/-0.778802f, 0.167791f, 0.604389f, + /*v:*/-1.281250f, 0.313224f, -0.824381f, /*n:*/-0.652608f, -0.476821f, 0.588794f, + /*v:*/1.351562f, 0.578849f, -0.816568f, /*n:*/0.778802f, 0.167791f, 0.604389f, + /*v:*/1.265625f, 0.547599f, -0.800943f, /*n:*/-0.154454f, -0.123875f, 0.980193f, + /*v:*/1.281250f, 0.313224f, -0.824381f, /*n:*/0.652608f, -0.476821f, 0.588794f, + /*v:*/1.265625f, 0.547599f, -0.800943f, /*n:*/-0.154454f, -0.123875f, 0.980193f, + /*v:*/1.210938f, 0.336662f, -0.800943f, /*n:*/-0.041108f, 0.310831f, 0.949553f, + /*v:*/1.281250f, 0.313224f, -0.824381f, /*n:*/0.652608f, -0.476821f, 0.588794f, + /*v:*/-1.265625f, 0.547599f, -0.800943f, /*n:*/0.154454f, -0.123875f, 0.980193f, + /*v:*/-1.187500f, 0.696037f, -0.785318f, /*n:*/-0.321451f, -0.092318f, 0.942381f, + /*v:*/-1.351562f, 0.578849f, -0.816568f, /*n:*/-0.778802f, 0.167791f, 0.604389f, + /*v:*/-1.187500f, 0.696037f, -0.785318f, /*n:*/-0.321451f, -0.092318f, 0.942381f, + /*v:*/-1.234375f, 0.766349f, -0.816568f, /*n:*/-0.383557f, 0.862972f, 0.328776f, + /*v:*/-1.351562f, 0.578849f, -0.816568f, /*n:*/-0.778802f, 0.167791f, 0.604389f, + /*v:*/1.234375f, 0.766349f, -0.816568f, /*n:*/0.383557f, 0.862972f, 0.328776f, + /*v:*/1.187500f, 0.696037f, -0.785318f, /*n:*/0.321451f, -0.092318f, 0.942381f, + /*v:*/1.351562f, 0.578849f, -0.816568f, /*n:*/0.778802f, 0.167791f, 0.604389f, + /*v:*/1.187500f, 0.696037f, -0.785318f, /*n:*/0.321451f, -0.092318f, 0.942381f, + /*v:*/1.265625f, 0.547599f, -0.800943f, /*n:*/-0.154454f, -0.123875f, 0.980193f, + /*v:*/1.351562f, 0.578849f, -0.816568f, /*n:*/0.778802f, 0.167791f, 0.604389f, + /*v:*/-1.187500f, 0.696037f, -0.785318f, /*n:*/-0.321451f, -0.092318f, 0.942381f, + /*v:*/-1.015625f, 0.672599f, -0.683756f, /*n:*/-0.551164f, -0.078768f, 0.830622f, + /*v:*/-1.023438f, 0.735099f, -0.707193f, /*n:*/-0.018799f, 0.872250f, 0.488632f, + /*v:*/-1.187500f, 0.696037f, -0.785318f, /*n:*/-0.321451f, -0.092318f, 0.942381f, + /*v:*/-1.023438f, 0.735099f, -0.707193f, /*n:*/-0.018799f, 0.872250f, 0.488632f, + /*v:*/-1.234375f, 0.766349f, -0.816568f, /*n:*/-0.383557f, 0.862972f, 0.328776f, + /*v:*/1.023438f, 0.735099f, -0.707193f, /*n:*/0.018799f, 0.872250f, 0.488632f, + /*v:*/1.015625f, 0.672599f, -0.683756f, /*n:*/0.551164f, -0.078768f, 0.830622f, + /*v:*/1.187500f, 0.696037f, -0.785318f, /*n:*/0.321451f, -0.092318f, 0.942381f, + /*v:*/1.023438f, 0.735099f, -0.707193f, /*n:*/0.018799f, 0.872250f, 0.488632f, + /*v:*/1.187500f, 0.696037f, -0.785318f, /*n:*/0.321451f, -0.092318f, 0.942381f, + /*v:*/1.234375f, 0.766349f, -0.816568f, /*n:*/0.383557f, 0.862972f, 0.328776f, + /*v:*/-0.921875f, 0.617912f, -0.613443f, /*n:*/-0.449232f, -0.038331f, 0.892575f, + /*v:*/-0.890625f, 0.664787f, -0.629068f, /*n:*/0.279244f, 0.768303f, 0.575884f, + /*v:*/-1.015625f, 0.672599f, -0.683756f, /*n:*/-0.551164f, -0.078768f, 0.830622f, + /*v:*/-0.890625f, 0.664787f, -0.629068f, /*n:*/0.279244f, 0.768303f, 0.575884f, + /*v:*/-1.023438f, 0.735099f, -0.707193f, /*n:*/-0.018799f, 0.872250f, 0.488632f, + /*v:*/-1.015625f, 0.672599f, -0.683756f, /*n:*/-0.551164f, -0.078768f, 0.830622f, + /*v:*/1.023438f, 0.735099f, -0.707193f, /*n:*/0.018799f, 0.872250f, 0.488632f, + /*v:*/0.890625f, 0.664787f, -0.629068f, /*n:*/-0.279244f, 0.768303f, 0.575884f, + /*v:*/1.015625f, 0.672599f, -0.683756f, /*n:*/0.551164f, -0.078768f, 0.830622f, + /*v:*/0.890625f, 0.664787f, -0.629068f, /*n:*/-0.279244f, 0.768303f, 0.575884f, + /*v:*/0.921875f, 0.617912f, -0.613443f, /*n:*/0.449232f, -0.038331f, 0.892575f, + /*v:*/1.015625f, 0.672599f, -0.683756f, /*n:*/0.551164f, -0.078768f, 0.830622f, + /*v:*/-0.484375f, 0.281974f, -0.941568f, /*n:*/-0.529221f, -0.505112f, -0.681722f, + /*v:*/-0.343750f, 0.110099f, -0.933756f, /*n:*/-0.522263f, -0.653615f, -0.547685f, + /*v:*/-0.429688f, 0.063224f, -0.605631f, /*n:*/-0.563280f, -0.817286f, -0.121311f, + /*v:*/-0.343750f, 0.110099f, -0.933756f, /*n:*/-0.522263f, -0.653615f, -0.547685f, + /*v:*/-0.296875f, -0.053963f, -0.660318f, /*n:*/-0.507065f, -0.837581f, -0.203314f, + /*v:*/-0.429688f, 0.063224f, -0.605631f, /*n:*/-0.563280f, -0.817286f, -0.121311f, + /*v:*/0.296875f, -0.053963f, -0.660318f, /*n:*/0.507065f, -0.837581f, -0.203314f, + /*v:*/0.343750f, 0.110099f, -0.933756f, /*n:*/0.522263f, -0.653615f, -0.547685f, + /*v:*/0.429688f, 0.063224f, -0.605631f, /*n:*/0.563280f, -0.817286f, -0.121311f, + /*v:*/0.343750f, 0.110099f, -0.933756f, /*n:*/0.522263f, -0.653615f, -0.547685f, + /*v:*/0.484375f, 0.281974f, -0.941568f, /*n:*/0.529221f, -0.505112f, -0.681722f, + /*v:*/0.429688f, 0.063224f, -0.605631f, /*n:*/0.563280f, -0.817286f, -0.121311f, + /*v:*/-0.484375f, 0.281974f, -0.941568f, /*n:*/-0.529221f, -0.505112f, -0.681722f, + /*v:*/-0.429688f, 0.063224f, -0.605631f, /*n:*/-0.563280f, -0.817286f, -0.121311f, + /*v:*/-0.640625f, 0.250724f, -0.824381f, /*n:*/-0.325510f, -0.602924f, -0.728355f, + /*v:*/-0.429688f, 0.063224f, -0.605631f, /*n:*/-0.563280f, -0.817286f, -0.121311f, + /*v:*/-0.593750f, 0.133537f, -0.558756f, /*n:*/-0.312296f, -0.949950f, 0.001160f, + /*v:*/-0.640625f, 0.250724f, -0.824381f, /*n:*/-0.325510f, -0.602924f, -0.728355f, + /*v:*/0.593750f, 0.133537f, -0.558756f, /*n:*/0.312296f, -0.949950f, 0.001160f, + /*v:*/0.429688f, 0.063224f, -0.605631f, /*n:*/0.563280f, -0.817286f, -0.121311f, + /*v:*/0.640625f, 0.250724f, -0.824381f, /*n:*/0.325510f, -0.602924f, -0.728355f, + /*v:*/0.429688f, 0.063224f, -0.605631f, /*n:*/0.563280f, -0.817286f, -0.121311f, + /*v:*/0.484375f, 0.281974f, -0.941568f, /*n:*/0.529221f, -0.505112f, -0.681722f, + /*v:*/0.640625f, 0.250724f, -0.824381f, /*n:*/0.325510f, -0.602924f, -0.728355f, + /*v:*/-0.484375f, 0.281974f, -0.941568f, /*n:*/-0.529221f, -0.505112f, -0.681722f, + /*v:*/-0.617188f, 0.586662f, -0.980631f, /*n:*/-0.619648f, -0.060457f, -0.782525f, + /*v:*/-0.335938f, 0.313224f, -1.058756f, /*n:*/-0.445479f, -0.358348f, -0.820399f, + /*v:*/-0.617188f, 0.586662f, -0.980631f, /*n:*/-0.619648f, -0.060457f, -0.782525f, + /*v:*/-0.460938f, 0.696037f, -1.097818f, /*n:*/-0.473006f, 0.176305f, -0.863216f, + /*v:*/-0.335938f, 0.313224f, -1.058756f, /*n:*/-0.445479f, -0.358348f, -0.820399f, + /*v:*/0.460938f, 0.696037f, -1.097818f, /*n:*/0.473006f, 0.176305f, -0.863216f, + /*v:*/0.617188f, 0.586662f, -0.980631f, /*n:*/0.619648f, -0.060457f, -0.782525f, + /*v:*/0.335938f, 0.313224f, -1.058756f, /*n:*/0.445479f, -0.358348f, -0.820399f, + /*v:*/0.617188f, 0.586662f, -0.980631f, /*n:*/0.619648f, -0.060457f, -0.782525f, + /*v:*/0.484375f, 0.281974f, -0.941568f, /*n:*/0.529221f, -0.505112f, -0.681722f, + /*v:*/0.335938f, 0.313224f, -1.058756f, /*n:*/0.445479f, -0.358348f, -0.820399f, + /*v:*/-0.484375f, 0.281974f, -0.941568f, /*n:*/-0.529221f, -0.505112f, -0.681722f, + /*v:*/-0.640625f, 0.250724f, -0.824381f, /*n:*/-0.325510f, -0.602924f, -0.728355f, + /*v:*/-0.617188f, 0.586662f, -0.980631f, /*n:*/-0.619648f, -0.060457f, -0.782525f, + /*v:*/-0.640625f, 0.250724f, -0.824381f, /*n:*/-0.325510f, -0.602924f, -0.728355f, + /*v:*/-0.773438f, 0.524162f, -0.832193f, /*n:*/-0.670766f, -0.045289f, -0.740257f, + /*v:*/-0.617188f, 0.586662f, -0.980631f, /*n:*/-0.619648f, -0.060457f, -0.782525f, + /*v:*/0.773438f, 0.524162f, -0.832193f, /*n:*/0.670766f, -0.045289f, -0.740257f, + /*v:*/0.640625f, 0.250724f, -0.824381f, /*n:*/0.325510f, -0.602924f, -0.728355f, + /*v:*/0.617188f, 0.586662f, -0.980631f, /*n:*/0.619648f, -0.060457f, -0.782525f, + /*v:*/0.640625f, 0.250724f, -0.824381f, /*n:*/0.325510f, -0.602924f, -0.728355f, + /*v:*/0.484375f, 0.281974f, -0.941568f, /*n:*/0.529221f, -0.505112f, -0.681722f, + /*v:*/0.617188f, 0.586662f, -0.980631f, /*n:*/0.619648f, -0.060457f, -0.782525f, + /*v:*/-0.218750f, -0.022713f, 0.034994f, /*n:*/-0.978698f, -0.195837f, 0.061495f, + /*v:*/-0.210938f, 0.031974f, 0.074057f, /*n:*/-0.887173f, -0.157720f, 0.433607f, + /*v:*/-0.437500f, 0.164787f, 0.074057f, /*n:*/-0.471969f, -0.863674f, -0.176794f, + /*v:*/-0.218750f, -0.022713f, 0.034994f, /*n:*/-0.978698f, -0.195837f, 0.061495f, + /*v:*/-0.437500f, 0.164787f, 0.074057f, /*n:*/-0.471969f, -0.863674f, -0.176794f, + /*v:*/-0.406250f, 0.086662f, -0.246256f, /*n:*/-0.579028f, -0.802698f, 0.142705f, + /*v:*/0.437500f, 0.164787f, 0.074057f, /*n:*/0.471969f, -0.863674f, -0.176794f, + /*v:*/0.210938f, 0.031974f, 0.074057f, /*n:*/0.887173f, -0.157720f, 0.433607f, + /*v:*/0.218750f, -0.022713f, 0.034994f, /*n:*/0.978698f, -0.195837f, 0.061495f, + /*v:*/0.437500f, 0.164787f, 0.074057f, /*n:*/0.471969f, -0.863674f, -0.176794f, + /*v:*/0.218750f, -0.022713f, 0.034994f, /*n:*/0.978698f, -0.195837f, 0.061495f, + /*v:*/0.406250f, 0.086662f, -0.246256f, /*n:*/0.579028f, -0.802698f, 0.142705f, + /*v:*/-0.406250f, 0.086662f, -0.246256f, /*n:*/-0.579028f, -0.802698f, 0.142705f, + /*v:*/-0.437500f, 0.164787f, 0.074057f, /*n:*/-0.471969f, -0.863674f, -0.176794f, + /*v:*/-0.601562f, 0.258537f, 0.019369f, /*n:*/-0.544328f, -0.837153f, -0.053316f, + /*v:*/-0.406250f, 0.086662f, -0.246256f, /*n:*/-0.579028f, -0.802698f, 0.142705f, + /*v:*/-0.601562f, 0.258537f, 0.019369f, /*n:*/-0.544328f, -0.837153f, -0.053316f, + /*v:*/-0.734375f, 0.211662f, -0.324381f, /*n:*/-0.721030f, -0.689810f, 0.065065f, + /*v:*/0.601562f, 0.258537f, 0.019369f, /*n:*/0.544328f, -0.837153f, -0.053316f, + /*v:*/0.437500f, 0.164787f, 0.074057f, /*n:*/0.471969f, -0.863674f, -0.176794f, + /*v:*/0.406250f, 0.086662f, -0.246256f, /*n:*/0.579028f, -0.802698f, 0.142705f, + /*v:*/0.601562f, 0.258537f, 0.019369f, /*n:*/0.544328f, -0.837153f, -0.053316f, + /*v:*/0.406250f, 0.086662f, -0.246256f, /*n:*/0.579028f, -0.802698f, 0.142705f, + /*v:*/0.734375f, 0.211662f, -0.324381f, /*n:*/0.721030f, -0.689810f, 0.065065f, + /*v:*/-0.429688f, 0.063224f, -0.605631f, /*n:*/-0.563280f, -0.817286f, -0.121311f, + /*v:*/-0.406250f, 0.086662f, -0.246256f, /*n:*/-0.579028f, -0.802698f, 0.142705f, + /*v:*/-0.593750f, 0.133537f, -0.558756f, /*n:*/-0.312296f, -0.949950f, 0.001160f, + /*v:*/-0.406250f, 0.086662f, -0.246256f, /*n:*/-0.579028f, -0.802698f, 0.142705f, + /*v:*/-0.734375f, 0.211662f, -0.324381f, /*n:*/-0.721030f, -0.689810f, 0.065065f, + /*v:*/-0.593750f, 0.133537f, -0.558756f, /*n:*/-0.312296f, -0.949950f, 0.001160f, + /*v:*/0.734375f, 0.211662f, -0.324381f, /*n:*/0.721030f, -0.689810f, 0.065065f, + /*v:*/0.406250f, 0.086662f, -0.246256f, /*n:*/0.579028f, -0.802698f, 0.142705f, + /*v:*/0.593750f, 0.133537f, -0.558756f, /*n:*/0.312296f, -0.949950f, 0.001160f, + /*v:*/0.406250f, 0.086662f, -0.246256f, /*n:*/0.579028f, -0.802698f, 0.142705f, + /*v:*/0.429688f, 0.063224f, -0.605631f, /*n:*/0.563280f, -0.817286f, -0.121311f, + /*v:*/0.593750f, 0.133537f, -0.558756f, /*n:*/0.312296f, -0.949950f, 0.001160f, + /*v:*/-0.429688f, 0.063224f, -0.605631f, /*n:*/-0.563280f, -0.817286f, -0.121311f, + /*v:*/-0.296875f, -0.053963f, -0.660318f, /*n:*/-0.507065f, -0.837581f, -0.203314f, + /*v:*/-0.406250f, 0.086662f, -0.246256f, /*n:*/-0.579028f, -0.802698f, 0.142705f, + /*v:*/-0.296875f, -0.053963f, -0.660318f, /*n:*/-0.507065f, -0.837581f, -0.203314f, + /*v:*/-0.210938f, -0.132088f, -0.230631f, /*n:*/-0.572680f, -0.819666f, 0.011994f, + /*v:*/-0.406250f, 0.086662f, -0.246256f, /*n:*/-0.579028f, -0.802698f, 0.142705f, + /*v:*/0.210938f, -0.132088f, -0.230631f, /*n:*/0.572680f, -0.819666f, 0.011994f, + /*v:*/0.296875f, -0.053963f, -0.660318f, /*n:*/0.507065f, -0.837581f, -0.203314f, + /*v:*/0.406250f, 0.086662f, -0.246256f, /*n:*/0.579028f, -0.802698f, 0.142705f, + /*v:*/0.296875f, -0.053963f, -0.660318f, /*n:*/0.507065f, -0.837581f, -0.203314f, + /*v:*/0.429688f, 0.063224f, -0.605631f, /*n:*/0.563280f, -0.817286f, -0.121311f, + /*v:*/0.406250f, 0.086662f, -0.246256f, /*n:*/0.579028f, -0.802698f, 0.142705f, + /*v:*/-0.796875f, 0.875724f, -0.511881f, /*n:*/-0.848628f, 0.528764f, -0.014008f, + /*v:*/-0.796875f, 0.797599f, -0.754068f, /*n:*/-0.872158f, 0.314554f, -0.374645f, + /*v:*/-0.820312f, 0.586662f, -0.597818f, /*n:*/-0.908536f, 0.224219f, 0.352489f, + /*v:*/-0.796875f, 0.797599f, -0.754068f, /*n:*/-0.872158f, 0.314554f, -0.374645f, + /*v:*/-0.773438f, 0.524162f, -0.832193f, /*n:*/-0.670766f, -0.045289f, -0.740257f, + /*v:*/-0.820312f, 0.586662f, -0.597818f, /*n:*/-0.908536f, 0.224219f, 0.352489f, + /*v:*/0.773438f, 0.524162f, -0.832193f, /*n:*/0.670766f, -0.045289f, -0.740257f, + /*v:*/0.796875f, 0.797599f, -0.754068f, /*n:*/0.872158f, 0.314554f, -0.374645f, + /*v:*/0.820312f, 0.586662f, -0.597818f, /*n:*/0.908536f, 0.224219f, 0.352489f, + /*v:*/0.796875f, 0.797599f, -0.754068f, /*n:*/0.872158f, 0.314554f, -0.374645f, + /*v:*/0.796875f, 0.875724f, -0.511881f, /*n:*/0.848628f, 0.528764f, -0.014008f, + /*v:*/0.820312f, 0.586662f, -0.597818f, /*n:*/0.908536f, 0.224219f, 0.352489f, + /*v:*/-0.796875f, 0.875724f, -0.511881f, /*n:*/-0.848628f, 0.528764f, -0.014008f, + /*v:*/-0.820312f, 0.586662f, -0.597818f, /*n:*/-0.908536f, 0.224219f, 0.352489f, + /*v:*/-0.859375f, 0.578849f, -0.441568f, /*n:*/-0.997009f, -0.033296f, -0.069521f, + /*v:*/-0.796875f, 0.875724f, -0.511881f, /*n:*/-0.848628f, 0.528764f, -0.014008f, + /*v:*/-0.859375f, 0.578849f, -0.441568f, /*n:*/-0.997009f, -0.033296f, -0.069521f, + /*v:*/-0.796875f, 0.821037f, -0.269693f, /*n:*/-0.741752f, 0.516434f, 0.427839f, + /*v:*/0.859375f, 0.578849f, -0.441568f, /*n:*/0.997009f, -0.033296f, -0.069521f, + /*v:*/0.820312f, 0.586662f, -0.597818f, /*n:*/0.908536f, 0.224219f, 0.352489f, + /*v:*/0.796875f, 0.875724f, -0.511881f, /*n:*/0.848628f, 0.528764f, -0.014008f, + /*v:*/0.859375f, 0.578849f, -0.441568f, /*n:*/0.997009f, -0.033296f, -0.069521f, + /*v:*/0.796875f, 0.875724f, -0.511881f, /*n:*/0.848628f, 0.528764f, -0.014008f, + /*v:*/0.796875f, 0.821037f, -0.269693f, /*n:*/0.741752f, 0.516434f, 0.427839f, + /*v:*/-0.796875f, 0.821037f, -0.269693f, /*n:*/-0.741752f, 0.516434f, 0.427839f, + /*v:*/-0.859375f, 0.578849f, -0.441568f, /*n:*/-0.997009f, -0.033296f, -0.069521f, + /*v:*/-0.851562f, 0.492912f, -0.340006f, /*n:*/-0.985015f, -0.160466f, 0.063051f, + /*v:*/-0.796875f, 0.821037f, -0.269693f, /*n:*/-0.741752f, 0.516434f, 0.427839f, + /*v:*/-0.851562f, 0.492912f, -0.340006f, /*n:*/-0.985015f, -0.160466f, 0.063051f, + /*v:*/-0.726562f, 0.664787f, -0.058756f, /*n:*/-0.771722f, 0.631062f, 0.078494f, + /*v:*/0.851562f, 0.492912f, -0.340006f, /*n:*/0.985015f, -0.160466f, 0.063051f, + /*v:*/0.859375f, 0.578849f, -0.441568f, /*n:*/0.997009f, -0.033296f, -0.069521f, + /*v:*/0.796875f, 0.821037f, -0.269693f, /*n:*/0.741752f, 0.516434f, 0.427839f, + /*v:*/0.851562f, 0.492912f, -0.340006f, /*n:*/0.985015f, -0.160466f, 0.063051f, + /*v:*/0.796875f, 0.821037f, -0.269693f, /*n:*/0.741752f, 0.516434f, 0.427839f, + /*v:*/0.726562f, 0.664787f, -0.058756f, /*n:*/0.771722f, 0.631062f, 0.078494f, + /*v:*/-0.851562f, 0.492912f, -0.340006f, /*n:*/-0.985015f, -0.160466f, 0.063051f, + /*v:*/-0.773438f, 0.422599f, -0.019693f, /*n:*/-0.930204f, -0.306192f, -0.202338f, + /*v:*/-0.726562f, 0.664787f, -0.058756f, /*n:*/-0.771722f, 0.631062f, 0.078494f, + /*v:*/-0.773438f, 0.422599f, -0.019693f, /*n:*/-0.930204f, -0.306192f, -0.202338f, + /*v:*/-0.796875f, 0.664787f, 0.066244f, /*n:*/-0.695700f, 0.581378f, -0.421827f, + /*v:*/-0.726562f, 0.664787f, -0.058756f, /*n:*/-0.771722f, 0.631062f, 0.078494f, + /*v:*/0.796875f, 0.664787f, 0.066244f, /*n:*/0.695700f, 0.581378f, -0.421827f, + /*v:*/0.773438f, 0.422599f, -0.019693f, /*n:*/0.930204f, -0.306192f, -0.202338f, + /*v:*/0.726562f, 0.664787f, -0.058756f, /*n:*/0.771722f, 0.631062f, 0.078494f, + /*v:*/0.773438f, 0.422599f, -0.019693f, /*n:*/0.930204f, -0.306192f, -0.202338f, + /*v:*/0.851562f, 0.492912f, -0.340006f, /*n:*/0.985015f, -0.160466f, 0.063051f, + /*v:*/0.726562f, 0.664787f, -0.058756f, /*n:*/0.771722f, 0.631062f, 0.078494f, + /*v:*/-0.460938f, 0.781974f, 0.034994f, /*n:*/-0.340648f, 0.883206f, 0.322306f, + /*v:*/-0.484375f, 0.813224f, 0.159994f, /*n:*/-0.226691f, 0.874813f, -0.428114f, + /*v:*/-0.109375f, 0.719474f, 0.214682f, /*n:*/0.459304f, 0.862453f, 0.212561f, + /*v:*/-0.460938f, 0.781974f, 0.034994f, /*n:*/-0.340648f, 0.883206f, 0.322306f, + /*v:*/-0.109375f, 0.719474f, 0.214682f, /*n:*/0.459304f, 0.862453f, 0.212561f, + /*v:*/0.000000f, 0.828849f, 0.175619f, /*n:*/0.000000f, 0.529252f, 0.848445f, + /*v:*/0.109375f, 0.719474f, 0.214682f, /*n:*/-0.459304f, 0.862453f, 0.212561f, + /*v:*/0.484375f, 0.813224f, 0.159994f, /*n:*/0.226691f, 0.874813f, -0.428114f, + /*v:*/0.460938f, 0.781974f, 0.034994f, /*n:*/0.340648f, 0.883206f, 0.322306f, + /*v:*/0.109375f, 0.719474f, 0.214682f, /*n:*/-0.459304f, 0.862453f, 0.212561f, + /*v:*/0.460938f, 0.781974f, 0.034994f, /*n:*/0.340648f, 0.883206f, 0.322306f, + /*v:*/0.000000f, 0.828849f, 0.175619f, /*n:*/0.000000f, 0.529252f, 0.848445f, + /*v:*/-0.335938f, 0.946037f, 0.199057f, /*n:*/-0.119297f, 0.646138f, -0.753807f, + /*v:*/-0.195312f, 0.922599f, 0.222494f, /*n:*/0.476638f, 0.509445f, -0.716392f, + /*v:*/-0.484375f, 0.813224f, 0.159994f, /*n:*/-0.226691f, 0.874813f, -0.428114f, + /*v:*/-0.195312f, 0.922599f, 0.222494f, /*n:*/0.476638f, 0.509445f, -0.716392f, + /*v:*/-0.109375f, 0.719474f, 0.214682f, /*n:*/0.459304f, 0.862453f, 0.212561f, + /*v:*/-0.484375f, 0.813224f, 0.159994f, /*n:*/-0.226691f, 0.874813f, -0.428114f, + /*v:*/0.109375f, 0.719474f, 0.214682f, /*n:*/-0.459304f, 0.862453f, 0.212561f, + /*v:*/0.195312f, 0.922599f, 0.222494f, /*n:*/-0.476638f, 0.509445f, -0.716392f, + /*v:*/0.484375f, 0.813224f, 0.159994f, /*n:*/0.226691f, 0.874813f, -0.428114f, + /*v:*/0.195312f, 0.922599f, 0.222494f, /*n:*/-0.476638f, 0.509445f, -0.716392f, + /*v:*/0.335938f, 0.946037f, 0.199057f, /*n:*/0.119297f, 0.646138f, -0.753807f, + /*v:*/0.484375f, 0.813224f, 0.159994f, /*n:*/0.226691f, 0.874813f, -0.428114f, + /*v:*/-0.453125f, 1.110099f, -0.160318f, /*n:*/-0.444227f, 0.724418f, 0.527085f, + /*v:*/-0.460938f, 0.781974f, 0.034994f, /*n:*/-0.340648f, 0.883206f, 0.322306f, + /*v:*/0.000000f, 1.156974f, -0.105631f, /*n:*/0.000000f, 0.830622f, 0.556810f, + /*v:*/-0.460938f, 0.781974f, 0.034994f, /*n:*/-0.340648f, 0.883206f, 0.322306f, + /*v:*/0.000000f, 0.828849f, 0.175619f, /*n:*/0.000000f, 0.529252f, 0.848445f, + /*v:*/0.000000f, 1.156974f, -0.105631f, /*n:*/0.000000f, 0.830622f, 0.556810f, + /*v:*/0.000000f, 0.828849f, 0.175619f, /*n:*/0.000000f, 0.529252f, 0.848445f, + /*v:*/0.460938f, 0.781974f, 0.034994f, /*n:*/0.340648f, 0.883206f, 0.322306f, + /*v:*/0.000000f, 1.156974f, -0.105631f, /*n:*/0.000000f, 0.830622f, 0.556810f, + /*v:*/0.460938f, 0.781974f, 0.034994f, /*n:*/0.340648f, 0.883206f, 0.322306f, + /*v:*/0.453125f, 1.110099f, -0.160318f, /*n:*/0.444227f, 0.724418f, 0.527085f, + /*v:*/0.000000f, 1.156974f, -0.105631f, /*n:*/0.000000f, 0.830622f, 0.556810f, + /*v:*/-0.632812f, 0.711662f, -0.113443f, /*n:*/-0.444411f, 0.788537f, 0.425031f, + /*v:*/-0.679688f, 0.711662f, 0.097494f, /*n:*/-0.345531f, 0.912442f, -0.219123f, + /*v:*/-0.460938f, 0.781974f, 0.034994f, /*n:*/-0.340648f, 0.883206f, 0.322306f, + /*v:*/-0.679688f, 0.711662f, 0.097494f, /*n:*/-0.345531f, 0.912442f, -0.219123f, + /*v:*/-0.484375f, 0.813224f, 0.159994f, /*n:*/-0.226691f, 0.874813f, -0.428114f, + /*v:*/-0.460938f, 0.781974f, 0.034994f, /*n:*/-0.340648f, 0.883206f, 0.322306f, + /*v:*/0.484375f, 0.813224f, 0.159994f, /*n:*/0.226691f, 0.874813f, -0.428114f, + /*v:*/0.679688f, 0.711662f, 0.097494f, /*n:*/0.345531f, 0.912442f, -0.219123f, + /*v:*/0.460938f, 0.781974f, 0.034994f, /*n:*/0.340648f, 0.883206f, 0.322306f, + /*v:*/0.679688f, 0.711662f, 0.097494f, /*n:*/0.345531f, 0.912442f, -0.219123f, + /*v:*/0.632812f, 0.711662f, -0.113443f, /*n:*/0.444411f, 0.788537f, 0.425031f, + /*v:*/0.460938f, 0.781974f, 0.034994f, /*n:*/0.340648f, 0.883206f, 0.322306f, + /*v:*/-0.632812f, 0.711662f, -0.113443f, /*n:*/-0.444411f, 0.788537f, 0.425031f, + /*v:*/-0.460938f, 0.781974f, 0.034994f, /*n:*/-0.340648f, 0.883206f, 0.322306f, + /*v:*/-0.453125f, 1.110099f, -0.160318f, /*n:*/-0.444227f, 0.724418f, 0.527085f, + /*v:*/-0.632812f, 0.711662f, -0.113443f, /*n:*/-0.444411f, 0.788537f, 0.425031f, + /*v:*/-0.453125f, 1.110099f, -0.160318f, /*n:*/-0.444227f, 0.724418f, 0.527085f, + /*v:*/-0.640625f, 0.961662f, -0.340006f, /*n:*/-0.668172f, 0.671865f, 0.319498f, + /*v:*/0.453125f, 1.110099f, -0.160318f, /*n:*/0.444227f, 0.724418f, 0.527085f, + /*v:*/0.460938f, 0.781974f, 0.034994f, /*n:*/0.340648f, 0.883206f, 0.322306f, + /*v:*/0.632812f, 0.711662f, -0.113443f, /*n:*/0.444411f, 0.788537f, 0.425031f, + /*v:*/0.453125f, 1.110099f, -0.160318f, /*n:*/0.444227f, 0.724418f, 0.527085f, + /*v:*/0.632812f, 0.711662f, -0.113443f, /*n:*/0.444411f, 0.788537f, 0.425031f, + /*v:*/0.640625f, 0.961662f, -0.340006f, /*n:*/0.668172f, 0.671865f, 0.319498f, + /*v:*/-0.640625f, 0.961662f, -0.340006f, /*n:*/-0.668172f, 0.671865f, 0.319498f, + /*v:*/-0.453125f, 1.110099f, -0.160318f, /*n:*/-0.444227f, 0.724418f, 0.527085f, + /*v:*/-0.453125f, 1.188224f, -0.465006f, /*n:*/-0.413495f, 0.909635f, 0.039460f, + /*v:*/-0.640625f, 0.961662f, -0.340006f, /*n:*/-0.668172f, 0.671865f, 0.319498f, + /*v:*/-0.453125f, 1.188224f, -0.465006f, /*n:*/-0.413495f, 0.909635f, 0.039460f, + /*v:*/-0.640625f, 1.008537f, -0.590006f, /*n:*/-0.678396f, 0.731376f, -0.069521f, + /*v:*/0.453125f, 1.188224f, -0.465006f, /*n:*/0.413495f, 0.909635f, 0.039460f, + /*v:*/0.453125f, 1.110099f, -0.160318f, /*n:*/0.444227f, 0.724418f, 0.527085f, + /*v:*/0.640625f, 0.961662f, -0.340006f, /*n:*/0.668172f, 0.671865f, 0.319498f, + /*v:*/0.453125f, 1.188224f, -0.465006f, /*n:*/0.413495f, 0.909635f, 0.039460f, + /*v:*/0.640625f, 0.961662f, -0.340006f, /*n:*/0.668172f, 0.671865f, 0.319498f, + /*v:*/0.640625f, 1.008537f, -0.590006f, /*n:*/0.678396f, 0.731376f, -0.069521f, + /*v:*/-0.640625f, 1.008537f, -0.590006f, /*n:*/-0.678396f, 0.731376f, -0.069521f, + /*v:*/-0.453125f, 1.188224f, -0.465006f, /*n:*/-0.413495f, 0.909635f, 0.039460f, + /*v:*/-0.453125f, 1.125724f, -0.777506f, /*n:*/-0.391247f, 0.815271f, -0.426832f, + /*v:*/-0.640625f, 1.008537f, -0.590006f, /*n:*/-0.678396f, 0.731376f, -0.069521f, + /*v:*/-0.453125f, 1.125724f, -0.777506f, /*n:*/-0.391247f, 0.815271f, -0.426832f, + /*v:*/-0.640625f, 0.938224f, -0.840006f, /*n:*/-0.607532f, 0.569567f, -0.553575f, + /*v:*/0.453125f, 1.125724f, -0.777506f, /*n:*/0.391247f, 0.815271f, -0.426832f, + /*v:*/0.453125f, 1.188224f, -0.465006f, /*n:*/0.413495f, 0.909635f, 0.039460f, + /*v:*/0.640625f, 1.008537f, -0.590006f, /*n:*/0.678396f, 0.731376f, -0.069521f, + /*v:*/0.453125f, 1.125724f, -0.777506f, /*n:*/0.391247f, 0.815271f, -0.426832f, + /*v:*/0.640625f, 1.008537f, -0.590006f, /*n:*/0.678396f, 0.731376f, -0.069521f, + /*v:*/0.640625f, 0.938224f, -0.840006f, /*n:*/0.607532f, 0.569567f, -0.553575f, + /*v:*/-0.640625f, 0.938224f, -0.840006f, /*n:*/-0.607532f, 0.569567f, -0.553575f, + /*v:*/-0.453125f, 1.125724f, -0.777506f, /*n:*/-0.391247f, 0.815271f, -0.426832f, + /*v:*/-0.460938f, 0.696037f, -1.097818f, /*n:*/-0.473006f, 0.176305f, -0.863216f, + /*v:*/-0.640625f, 0.938224f, -0.840006f, /*n:*/-0.607532f, 0.569567f, -0.553575f, + /*v:*/-0.460938f, 0.696037f, -1.097818f, /*n:*/-0.473006f, 0.176305f, -0.863216f, + /*v:*/-0.617188f, 0.586662f, -0.980631f, /*n:*/-0.619648f, -0.060457f, -0.782525f, + /*v:*/0.460938f, 0.696037f, -1.097818f, /*n:*/0.473006f, 0.176305f, -0.863216f, + /*v:*/0.453125f, 1.125724f, -0.777506f, /*n:*/0.391247f, 0.815271f, -0.426832f, + /*v:*/0.640625f, 0.938224f, -0.840006f, /*n:*/0.607532f, 0.569567f, -0.553575f, + /*v:*/0.460938f, 0.696037f, -1.097818f, /*n:*/0.473006f, 0.176305f, -0.863216f, + /*v:*/0.640625f, 0.938224f, -0.840006f, /*n:*/0.607532f, 0.569567f, -0.553575f, + /*v:*/0.617188f, 0.586662f, -0.980631f, /*n:*/0.619648f, -0.060457f, -0.782525f, + /*v:*/-0.640625f, 0.938224f, -0.840006f, /*n:*/-0.607532f, 0.569567f, -0.553575f, + /*v:*/-0.617188f, 0.586662f, -0.980631f, /*n:*/-0.619648f, -0.060457f, -0.782525f, + /*v:*/-0.796875f, 0.797599f, -0.754068f, /*n:*/-0.872158f, 0.314554f, -0.374645f, + /*v:*/-0.617188f, 0.586662f, -0.980631f, /*n:*/-0.619648f, -0.060457f, -0.782525f, + /*v:*/-0.773438f, 0.524162f, -0.832193f, /*n:*/-0.670766f, -0.045289f, -0.740257f, + /*v:*/-0.796875f, 0.797599f, -0.754068f, /*n:*/-0.872158f, 0.314554f, -0.374645f, + /*v:*/0.773438f, 0.524162f, -0.832193f, /*n:*/0.670766f, -0.045289f, -0.740257f, + /*v:*/0.617188f, 0.586662f, -0.980631f, /*n:*/0.619648f, -0.060457f, -0.782525f, + /*v:*/0.796875f, 0.797599f, -0.754068f, /*n:*/0.872158f, 0.314554f, -0.374645f, + /*v:*/0.617188f, 0.586662f, -0.980631f, /*n:*/0.619648f, -0.060457f, -0.782525f, + /*v:*/0.640625f, 0.938224f, -0.840006f, /*n:*/0.607532f, 0.569567f, -0.553575f, + /*v:*/0.796875f, 0.797599f, -0.754068f, /*n:*/0.872158f, 0.314554f, -0.374645f, + /*v:*/-0.796875f, 0.797599f, -0.754068f, /*n:*/-0.872158f, 0.314554f, -0.374645f, + /*v:*/-0.796875f, 0.875724f, -0.511881f, /*n:*/-0.848628f, 0.528764f, -0.014008f, + /*v:*/-0.640625f, 1.008537f, -0.590006f, /*n:*/-0.678396f, 0.731376f, -0.069521f, + /*v:*/-0.796875f, 0.797599f, -0.754068f, /*n:*/-0.872158f, 0.314554f, -0.374645f, + /*v:*/-0.640625f, 1.008537f, -0.590006f, /*n:*/-0.678396f, 0.731376f, -0.069521f, + /*v:*/-0.640625f, 0.938224f, -0.840006f, /*n:*/-0.607532f, 0.569567f, -0.553575f, + /*v:*/0.640625f, 1.008537f, -0.590006f, /*n:*/0.678396f, 0.731376f, -0.069521f, + /*v:*/0.796875f, 0.875724f, -0.511881f, /*n:*/0.848628f, 0.528764f, -0.014008f, + /*v:*/0.796875f, 0.797599f, -0.754068f, /*n:*/0.872158f, 0.314554f, -0.374645f, + /*v:*/0.640625f, 1.008537f, -0.590006f, /*n:*/0.678396f, 0.731376f, -0.069521f, + /*v:*/0.796875f, 0.797599f, -0.754068f, /*n:*/0.872158f, 0.314554f, -0.374645f, + /*v:*/0.640625f, 0.938224f, -0.840006f, /*n:*/0.607532f, 0.569567f, -0.553575f, + /*v:*/-0.796875f, 0.875724f, -0.511881f, /*n:*/-0.848628f, 0.528764f, -0.014008f, + /*v:*/-0.796875f, 0.821037f, -0.269693f, /*n:*/-0.741752f, 0.516434f, 0.427839f, + /*v:*/-0.640625f, 0.961662f, -0.340006f, /*n:*/-0.668172f, 0.671865f, 0.319498f, + /*v:*/-0.796875f, 0.875724f, -0.511881f, /*n:*/-0.848628f, 0.528764f, -0.014008f, + /*v:*/-0.640625f, 0.961662f, -0.340006f, /*n:*/-0.668172f, 0.671865f, 0.319498f, + /*v:*/-0.640625f, 1.008537f, -0.590006f, /*n:*/-0.678396f, 0.731376f, -0.069521f, + /*v:*/0.640625f, 0.961662f, -0.340006f, /*n:*/0.668172f, 0.671865f, 0.319498f, + /*v:*/0.796875f, 0.821037f, -0.269693f, /*n:*/0.741752f, 0.516434f, 0.427839f, + /*v:*/0.796875f, 0.875724f, -0.511881f, /*n:*/0.848628f, 0.528764f, -0.014008f, + /*v:*/0.640625f, 0.961662f, -0.340006f, /*n:*/0.668172f, 0.671865f, 0.319498f, + /*v:*/0.796875f, 0.875724f, -0.511881f, /*n:*/0.848628f, 0.528764f, -0.014008f, + /*v:*/0.640625f, 1.008537f, -0.590006f, /*n:*/0.678396f, 0.731376f, -0.069521f, + /*v:*/-0.796875f, 0.821037f, -0.269693f, /*n:*/-0.741752f, 0.516434f, 0.427839f, + /*v:*/-0.726562f, 0.664787f, -0.058756f, /*n:*/-0.771722f, 0.631062f, 0.078494f, + /*v:*/-0.632812f, 0.711662f, -0.113443f, /*n:*/-0.444411f, 0.788537f, 0.425031f, + /*v:*/-0.796875f, 0.821037f, -0.269693f, /*n:*/-0.741752f, 0.516434f, 0.427839f, + /*v:*/-0.632812f, 0.711662f, -0.113443f, /*n:*/-0.444411f, 0.788537f, 0.425031f, + /*v:*/-0.640625f, 0.961662f, -0.340006f, /*n:*/-0.668172f, 0.671865f, 0.319498f, + /*v:*/0.632812f, 0.711662f, -0.113443f, /*n:*/0.444411f, 0.788537f, 0.425031f, + /*v:*/0.726562f, 0.664787f, -0.058756f, /*n:*/0.771722f, 0.631062f, 0.078494f, + /*v:*/0.796875f, 0.821037f, -0.269693f, /*n:*/0.741752f, 0.516434f, 0.427839f, + /*v:*/0.632812f, 0.711662f, -0.113443f, /*n:*/0.444411f, 0.788537f, 0.425031f, + /*v:*/0.796875f, 0.821037f, -0.269693f, /*n:*/0.741752f, 0.516434f, 0.427839f, + /*v:*/0.640625f, 0.961662f, -0.340006f, /*n:*/0.668172f, 0.671865f, 0.319498f, + /*v:*/-0.726562f, 0.664787f, -0.058756f, /*n:*/-0.771722f, 0.631062f, 0.078494f, + /*v:*/-0.796875f, 0.664787f, 0.066244f, /*n:*/-0.695700f, 0.581378f, -0.421827f, + /*v:*/-0.679688f, 0.711662f, 0.097494f, /*n:*/-0.345531f, 0.912442f, -0.219123f, + /*v:*/-0.726562f, 0.664787f, -0.058756f, /*n:*/-0.771722f, 0.631062f, 0.078494f, + /*v:*/-0.679688f, 0.711662f, 0.097494f, /*n:*/-0.345531f, 0.912442f, -0.219123f, + /*v:*/-0.632812f, 0.711662f, -0.113443f, /*n:*/-0.444411f, 0.788537f, 0.425031f, + /*v:*/0.679688f, 0.711662f, 0.097494f, /*n:*/0.345531f, 0.912442f, -0.219123f, + /*v:*/0.796875f, 0.664787f, 0.066244f, /*n:*/0.695700f, 0.581378f, -0.421827f, + /*v:*/0.726562f, 0.664787f, -0.058756f, /*n:*/0.771722f, 0.631062f, 0.078494f, + /*v:*/0.679688f, 0.711662f, 0.097494f, /*n:*/0.345531f, 0.912442f, -0.219123f, + /*v:*/0.726562f, 0.664787f, -0.058756f, /*n:*/0.771722f, 0.631062f, 0.078494f, + /*v:*/0.632812f, 0.711662f, -0.113443f, /*n:*/0.444411f, 0.788537f, 0.425031f, + /*v:*/-0.460938f, 0.696037f, -1.097818f, /*n:*/-0.473006f, 0.176305f, -0.863216f, + /*v:*/-0.453125f, 1.125724f, -0.777506f, /*n:*/-0.391247f, 0.815271f, -0.426832f, + /*v:*/0.000000f, 1.156974f, -0.941568f, /*n:*/0.000000f, 0.834223f, -0.551378f, + /*v:*/-0.460938f, 0.696037f, -1.097818f, /*n:*/-0.473006f, 0.176305f, -0.863216f, + /*v:*/0.000000f, 1.156974f, -0.941568f, /*n:*/0.000000f, 0.834223f, -0.551378f, + /*v:*/0.000000f, 0.821037f, -1.246256f, /*n:*/0.000000f, 0.365032f, -0.930967f, + /*v:*/0.000000f, 1.156974f, -0.941568f, /*n:*/0.000000f, 0.834223f, -0.551378f, + /*v:*/0.453125f, 1.125724f, -0.777506f, /*n:*/0.391247f, 0.815271f, -0.426832f, + /*v:*/0.460938f, 0.696037f, -1.097818f, /*n:*/0.473006f, 0.176305f, -0.863216f, + /*v:*/0.000000f, 1.156974f, -0.941568f, /*n:*/0.000000f, 0.834223f, -0.551378f, + /*v:*/0.460938f, 0.696037f, -1.097818f, /*n:*/0.473006f, 0.176305f, -0.863216f, + /*v:*/0.000000f, 0.821037f, -1.246256f, /*n:*/0.000000f, 0.365032f, -0.930967f, + /*v:*/-0.453125f, 1.125724f, -0.777506f, /*n:*/-0.391247f, 0.815271f, -0.426832f, + /*v:*/-0.453125f, 1.188224f, -0.465006f, /*n:*/-0.413495f, 0.909635f, 0.039460f, + /*v:*/0.000000f, 1.242912f, -0.472818f, /*n:*/0.000000f, 0.999725f, 0.022584f, + /*v:*/-0.453125f, 1.125724f, -0.777506f, /*n:*/-0.391247f, 0.815271f, -0.426832f, + /*v:*/0.000000f, 1.242912f, -0.472818f, /*n:*/0.000000f, 0.999725f, 0.022584f, + /*v:*/0.000000f, 1.156974f, -0.941568f, /*n:*/0.000000f, 0.834223f, -0.551378f, + /*v:*/0.000000f, 1.242912f, -0.472818f, /*n:*/0.000000f, 0.999725f, 0.022584f, + /*v:*/0.453125f, 1.188224f, -0.465006f, /*n:*/0.413495f, 0.909635f, 0.039460f, + /*v:*/0.453125f, 1.125724f, -0.777506f, /*n:*/0.391247f, 0.815271f, -0.426832f, + /*v:*/0.000000f, 1.242912f, -0.472818f, /*n:*/0.000000f, 0.999725f, 0.022584f, + /*v:*/0.453125f, 1.125724f, -0.777506f, /*n:*/0.391247f, 0.815271f, -0.426832f, + /*v:*/0.000000f, 1.156974f, -0.941568f, /*n:*/0.000000f, 0.834223f, -0.551378f, + /*v:*/-0.453125f, 1.188224f, -0.465006f, /*n:*/-0.413495f, 0.909635f, 0.039460f, + /*v:*/-0.453125f, 1.110099f, -0.160318f, /*n:*/-0.444227f, 0.724418f, 0.527085f, + /*v:*/0.000000f, 1.242912f, -0.472818f, /*n:*/0.000000f, 0.999725f, 0.022584f, + /*v:*/-0.453125f, 1.110099f, -0.160318f, /*n:*/-0.444227f, 0.724418f, 0.527085f, + /*v:*/0.000000f, 1.156974f, -0.105631f, /*n:*/0.000000f, 0.830622f, 0.556810f, + /*v:*/0.000000f, 1.242912f, -0.472818f, /*n:*/0.000000f, 0.999725f, 0.022584f, + /*v:*/0.000000f, 1.156974f, -0.105631f, /*n:*/0.000000f, 0.830622f, 0.556810f, + /*v:*/0.453125f, 1.110099f, -0.160318f, /*n:*/0.444227f, 0.724418f, 0.527085f, + /*v:*/0.000000f, 1.242912f, -0.472818f, /*n:*/0.000000f, 0.999725f, 0.022584f, + /*v:*/0.453125f, 1.110099f, -0.160318f, /*n:*/0.444227f, 0.724418f, 0.527085f, + /*v:*/0.453125f, 1.188224f, -0.465006f, /*n:*/0.413495f, 0.909635f, 0.039460f, + /*v:*/0.000000f, 1.242912f, -0.472818f, /*n:*/0.000000f, 0.999725f, 0.022584f, + /*v:*/-0.335938f, 0.313224f, -1.058756f, /*n:*/-0.445479f, -0.358348f, -0.820399f, + /*v:*/-0.460938f, 0.696037f, -1.097818f, /*n:*/-0.473006f, 0.176305f, -0.863216f, + /*v:*/0.000000f, 0.328849f, -1.222818f, /*n:*/0.000000f, -0.304941f, -0.952361f, + /*v:*/-0.460938f, 0.696037f, -1.097818f, /*n:*/-0.473006f, 0.176305f, -0.863216f, + /*v:*/0.000000f, 0.821037f, -1.246256f, /*n:*/0.000000f, 0.365032f, -0.930967f, + /*v:*/0.000000f, 0.328849f, -1.222818f, /*n:*/0.000000f, -0.304941f, -0.952361f, + /*v:*/0.000000f, 0.821037f, -1.246256f, /*n:*/0.000000f, 0.365032f, -0.930967f, + /*v:*/0.460938f, 0.696037f, -1.097818f, /*n:*/0.473006f, 0.176305f, -0.863216f, + /*v:*/0.000000f, 0.328849f, -1.222818f, /*n:*/0.000000f, -0.304941f, -0.952361f, + /*v:*/0.460938f, 0.696037f, -1.097818f, /*n:*/0.473006f, 0.176305f, -0.863216f, + /*v:*/0.335938f, 0.313224f, -1.058756f, /*n:*/0.445479f, -0.358348f, -0.820399f, + /*v:*/0.000000f, 0.328849f, -1.222818f, /*n:*/0.000000f, -0.304941f, -0.952361f, + /*v:*/-0.734375f, 0.211662f, -0.324381f, /*n:*/-0.721030f, -0.689810f, 0.065065f, + /*v:*/-0.601562f, 0.258537f, 0.019369f, /*n:*/-0.544328f, -0.837153f, -0.053316f, + /*v:*/-0.773438f, 0.422599f, -0.019693f, /*n:*/-0.930204f, -0.306192f, -0.202338f, + /*v:*/-0.734375f, 0.211662f, -0.324381f, /*n:*/-0.721030f, -0.689810f, 0.065065f, + /*v:*/-0.773438f, 0.422599f, -0.019693f, /*n:*/-0.930204f, -0.306192f, -0.202338f, + /*v:*/-0.851562f, 0.492912f, -0.340006f, /*n:*/-0.985015f, -0.160466f, 0.063051f, + /*v:*/0.773438f, 0.422599f, -0.019693f, /*n:*/0.930204f, -0.306192f, -0.202338f, + /*v:*/0.601562f, 0.258537f, 0.019369f, /*n:*/0.544328f, -0.837153f, -0.053316f, + /*v:*/0.734375f, 0.211662f, -0.324381f, /*n:*/0.721030f, -0.689810f, 0.065065f, + /*v:*/0.773438f, 0.422599f, -0.019693f, /*n:*/0.930204f, -0.306192f, -0.202338f, + /*v:*/0.734375f, 0.211662f, -0.324381f, /*n:*/0.721030f, -0.689810f, 0.065065f, + /*v:*/0.851562f, 0.492912f, -0.340006f, /*n:*/0.985015f, -0.160466f, 0.063051f, + /*v:*/-0.210938f, -0.132088f, -0.230631f, /*n:*/-0.572680f, -0.819666f, 0.011994f, + /*v:*/-0.179688f, -0.155526f, -0.136881f, /*n:*/-0.689322f, -0.668691f, -0.278603f, + /*v:*/-0.218750f, -0.022713f, 0.034994f, /*n:*/-0.978698f, -0.195837f, 0.061495f, + /*v:*/-0.179688f, -0.155526f, -0.136881f, /*n:*/-0.689322f, -0.668691f, -0.278603f, + /*v:*/-0.234375f, -0.093026f, 0.011557f, /*n:*/-0.895657f, 0.257729f, -0.362407f, + /*v:*/-0.218750f, -0.022713f, 0.034994f, /*n:*/-0.978698f, -0.195837f, 0.061495f, + /*v:*/0.234375f, -0.093026f, 0.011557f, /*n:*/0.895657f, 0.257729f, -0.362407f, + /*v:*/0.179688f, -0.155526f, -0.136881f, /*n:*/0.689322f, -0.668691f, -0.278603f, + /*v:*/0.218750f, -0.022713f, 0.034994f, /*n:*/0.978698f, -0.195837f, 0.061495f, + /*v:*/0.179688f, -0.155526f, -0.136881f, /*n:*/0.689322f, -0.668691f, -0.278603f, + /*v:*/0.210938f, -0.132088f, -0.230631f, /*n:*/0.572680f, -0.819666f, 0.011994f, + /*v:*/0.218750f, -0.022713f, 0.034994f, /*n:*/0.978698f, -0.195837f, 0.061495f, + /*v:*/-0.179688f, -0.155526f, -0.136881f, /*n:*/-0.689322f, -0.668691f, -0.278603f, + /*v:*/-0.210938f, -0.132088f, -0.230631f, /*n:*/-0.572680f, -0.819666f, 0.011994f, + /*v:*/0.000000f, -0.202401f, -0.207193f, /*n:*/0.000000f, -0.983032f, -0.183294f, + /*v:*/-0.179688f, -0.155526f, -0.136881f, /*n:*/-0.689322f, -0.668691f, -0.278603f, + /*v:*/0.000000f, -0.202401f, -0.207193f, /*n:*/0.000000f, -0.983032f, -0.183294f, + /*v:*/0.000000f, -0.225838f, -0.113443f, /*n:*/0.000000f, -0.771081f, -0.636708f, + /*v:*/0.000000f, -0.202401f, -0.207193f, /*n:*/0.000000f, -0.983032f, -0.183294f, + /*v:*/0.210938f, -0.132088f, -0.230631f, /*n:*/0.572680f, -0.819666f, 0.011994f, + /*v:*/0.179688f, -0.155526f, -0.136881f, /*n:*/0.689322f, -0.668691f, -0.278603f, + /*v:*/0.000000f, -0.202401f, -0.207193f, /*n:*/0.000000f, -0.983032f, -0.183294f, + /*v:*/0.179688f, -0.155526f, -0.136881f, /*n:*/0.689322f, -0.668691f, -0.278603f, + /*v:*/0.000000f, -0.225838f, -0.113443f, /*n:*/0.000000f, -0.771081f, -0.636708f, + /*v:*/-0.210938f, -0.132088f, -0.230631f, /*n:*/-0.572680f, -0.819666f, 0.011994f, + /*v:*/-0.296875f, -0.053963f, -0.660318f, /*n:*/-0.507065f, -0.837581f, -0.203314f, + /*v:*/0.000000f, -0.124276f, -0.746255f, /*n:*/0.000000f, -0.941649f, -0.336528f, + /*v:*/-0.210938f, -0.132088f, -0.230631f, /*n:*/-0.572680f, -0.819666f, 0.011994f, + /*v:*/0.000000f, -0.124276f, -0.746255f, /*n:*/0.000000f, -0.941649f, -0.336528f, + /*v:*/0.000000f, -0.202401f, -0.207193f, /*n:*/0.000000f, -0.983032f, -0.183294f, + /*v:*/0.000000f, -0.124276f, -0.746255f, /*n:*/0.000000f, -0.941649f, -0.336528f, + /*v:*/0.296875f, -0.053963f, -0.660318f, /*n:*/0.507065f, -0.837581f, -0.203314f, + /*v:*/0.210938f, -0.132088f, -0.230631f, /*n:*/0.572680f, -0.819666f, 0.011994f, + /*v:*/0.000000f, -0.124276f, -0.746255f, /*n:*/0.000000f, -0.941649f, -0.336528f, + /*v:*/0.210938f, -0.132088f, -0.230631f, /*n:*/0.572680f, -0.819666f, 0.011994f, + /*v:*/0.000000f, -0.202401f, -0.207193f, /*n:*/0.000000f, -0.983032f, -0.183294f, + /*v:*/-0.296875f, -0.053963f, -0.660318f, /*n:*/-0.507065f, -0.837581f, -0.203314f, + /*v:*/-0.343750f, 0.110099f, -0.933756f, /*n:*/-0.522263f, -0.653615f, -0.547685f, + /*v:*/0.000000f, -0.124276f, -0.746255f, /*n:*/0.000000f, -0.941649f, -0.336528f, + /*v:*/-0.343750f, 0.110099f, -0.933756f, /*n:*/-0.522263f, -0.653615f, -0.547685f, + /*v:*/0.000000f, 0.063224f, -1.066568f, /*n:*/0.000000f, -0.691275f, -0.722587f, + /*v:*/0.000000f, -0.124276f, -0.746255f, /*n:*/0.000000f, -0.941649f, -0.336528f, + /*v:*/0.000000f, 0.063224f, -1.066568f, /*n:*/0.000000f, -0.691275f, -0.722587f, + /*v:*/0.343750f, 0.110099f, -0.933756f, /*n:*/0.522263f, -0.653615f, -0.547685f, + /*v:*/0.000000f, -0.124276f, -0.746255f, /*n:*/0.000000f, -0.941649f, -0.336528f, + /*v:*/0.343750f, 0.110099f, -0.933756f, /*n:*/0.522263f, -0.653615f, -0.547685f, + /*v:*/0.296875f, -0.053963f, -0.660318f, /*n:*/0.507065f, -0.837581f, -0.203314f, + /*v:*/0.000000f, -0.124276f, -0.746255f, /*n:*/0.000000f, -0.941649f, -0.336528f, + /*v:*/-0.343750f, 0.110099f, -0.933756f, /*n:*/-0.522263f, -0.653615f, -0.547685f, + /*v:*/-0.335938f, 0.313224f, -1.058756f, /*n:*/-0.445479f, -0.358348f, -0.820399f, + /*v:*/0.000000f, 0.063224f, -1.066568f, /*n:*/0.000000f, -0.691275f, -0.722587f, + /*v:*/-0.335938f, 0.313224f, -1.058756f, /*n:*/-0.445479f, -0.358348f, -0.820399f, + /*v:*/0.000000f, 0.328849f, -1.222818f, /*n:*/0.000000f, -0.304941f, -0.952361f, + /*v:*/0.000000f, 0.063224f, -1.066568f, /*n:*/0.000000f, -0.691275f, -0.722587f, + /*v:*/0.000000f, 0.328849f, -1.222818f, /*n:*/0.000000f, -0.304941f, -0.952361f, + /*v:*/0.335938f, 0.313224f, -1.058756f, /*n:*/0.445479f, -0.358348f, -0.820399f, + /*v:*/0.000000f, 0.063224f, -1.066568f, /*n:*/0.000000f, -0.691275f, -0.722587f, + /*v:*/0.335938f, 0.313224f, -1.058756f, /*n:*/0.445479f, -0.358348f, -0.820399f, + /*v:*/0.343750f, 0.110099f, -0.933756f, /*n:*/0.522263f, -0.653615f, -0.547685f, + /*v:*/0.000000f, 0.063224f, -1.066568f, /*n:*/0.000000f, -0.691275f, -0.722587f, + /*v:*/-0.437500f, 0.164787f, 0.074057f, /*n:*/-0.471969f, -0.863674f, -0.176794f, + /*v:*/-0.203125f, 0.086662f, 0.105307f, /*n:*/-0.785699f, -0.571459f, 0.236732f, + /*v:*/-0.437500f, 0.117912f, 0.136557f, /*n:*/-0.348827f, -0.937132f, -0.008148f, + /*v:*/-0.203125f, 0.086662f, 0.105307f, /*n:*/-0.785699f, -0.571459f, 0.236732f, + /*v:*/-0.203125f, 0.071037f, 0.167807f, /*n:*/-0.891537f, -0.330668f, 0.309458f, + /*v:*/-0.437500f, 0.117912f, 0.136557f, /*n:*/-0.348827f, -0.937132f, -0.008148f, + /*v:*/0.203125f, 0.071037f, 0.167807f, /*n:*/0.891537f, -0.330668f, 0.309458f, + /*v:*/0.203125f, 0.086662f, 0.105307f, /*n:*/0.785699f, -0.571459f, 0.236732f, + /*v:*/0.437500f, 0.117912f, 0.136557f, /*n:*/0.348827f, -0.937132f, -0.008148f, + /*v:*/0.203125f, 0.086662f, 0.105307f, /*n:*/0.785699f, -0.571459f, 0.236732f, + /*v:*/0.437500f, 0.164787f, 0.074057f, /*n:*/0.471969f, -0.863674f, -0.176794f, + /*v:*/0.437500f, 0.117912f, 0.136557f, /*n:*/0.348827f, -0.937132f, -0.008148f, + /*v:*/-0.210938f, 0.031974f, 0.074057f, /*n:*/-0.887173f, -0.157720f, 0.433607f, + /*v:*/-0.234375f, 0.008537f, 0.159994f, /*n:*/-0.930601f, 0.343516f, 0.126347f, + /*v:*/-0.203125f, 0.086662f, 0.105307f, /*n:*/-0.785699f, -0.571459f, 0.236732f, + /*v:*/-0.234375f, 0.008537f, 0.159994f, /*n:*/-0.930601f, 0.343516f, 0.126347f, + /*v:*/-0.203125f, 0.071037f, 0.167807f, /*n:*/-0.891537f, -0.330668f, 0.309458f, + /*v:*/-0.203125f, 0.086662f, 0.105307f, /*n:*/-0.785699f, -0.571459f, 0.236732f, + /*v:*/0.203125f, 0.071037f, 0.167807f, /*n:*/0.891537f, -0.330668f, 0.309458f, + /*v:*/0.234375f, 0.008537f, 0.159994f, /*n:*/0.930601f, 0.343516f, 0.126347f, + /*v:*/0.203125f, 0.086662f, 0.105307f, /*n:*/0.785699f, -0.571459f, 0.236732f, + /*v:*/0.234375f, 0.008537f, 0.159994f, /*n:*/0.930601f, 0.343516f, 0.126347f, + /*v:*/0.210938f, 0.031974f, 0.074057f, /*n:*/0.887173f, -0.157720f, 0.433607f, + /*v:*/0.203125f, 0.086662f, 0.105307f, /*n:*/0.785699f, -0.571459f, 0.236732f, + /*v:*/-0.218750f, -0.022713f, 0.034994f, /*n:*/-0.978698f, -0.195837f, 0.061495f, + /*v:*/-0.234375f, -0.093026f, 0.011557f, /*n:*/-0.895657f, 0.257729f, -0.362407f, + /*v:*/-0.257812f, -0.053963f, 0.159994f, /*n:*/-0.927763f, 0.353008f, 0.120884f, + /*v:*/-0.234375f, -0.093026f, 0.011557f, /*n:*/-0.895657f, 0.257729f, -0.362407f, + /*v:*/-0.312500f, -0.178963f, 0.175619f, /*n:*/-0.955718f, 0.249184f, 0.156468f, + /*v:*/-0.257812f, -0.053963f, 0.159994f, /*n:*/-0.927763f, 0.353008f, 0.120884f, + /*v:*/0.312500f, -0.178963f, 0.175619f, /*n:*/0.955718f, 0.249184f, 0.156468f, + /*v:*/0.234375f, -0.093026f, 0.011557f, /*n:*/0.895657f, 0.257729f, -0.362407f, + /*v:*/0.257812f, -0.053963f, 0.159994f, /*n:*/0.927763f, 0.353008f, 0.120884f, + /*v:*/0.234375f, -0.093026f, 0.011557f, /*n:*/0.895657f, 0.257729f, -0.362407f, + /*v:*/0.218750f, -0.022713f, 0.034994f, /*n:*/0.978698f, -0.195837f, 0.061495f, + /*v:*/0.257812f, -0.053963f, 0.159994f, /*n:*/0.927763f, 0.353008f, 0.120884f, + /*v:*/-0.210938f, 0.031974f, 0.074057f, /*n:*/-0.887173f, -0.157720f, 0.433607f, + /*v:*/-0.218750f, -0.022713f, 0.034994f, /*n:*/-0.978698f, -0.195837f, 0.061495f, + /*v:*/-0.234375f, 0.008537f, 0.159994f, /*n:*/-0.930601f, 0.343516f, 0.126347f, + /*v:*/-0.218750f, -0.022713f, 0.034994f, /*n:*/-0.978698f, -0.195837f, 0.061495f, + /*v:*/-0.257812f, -0.053963f, 0.159994f, /*n:*/-0.927763f, 0.353008f, 0.120884f, + /*v:*/-0.234375f, 0.008537f, 0.159994f, /*n:*/-0.930601f, 0.343516f, 0.126347f, + /*v:*/0.257812f, -0.053963f, 0.159994f, /*n:*/0.927763f, 0.353008f, 0.120884f, + /*v:*/0.218750f, -0.022713f, 0.034994f, /*n:*/0.978698f, -0.195837f, 0.061495f, + /*v:*/0.234375f, 0.008537f, 0.159994f, /*n:*/0.930601f, 0.343516f, 0.126347f, + /*v:*/0.218750f, -0.022713f, 0.034994f, /*n:*/0.978698f, -0.195837f, 0.061495f, + /*v:*/0.210938f, 0.031974f, 0.074057f, /*n:*/0.887173f, -0.157720f, 0.433607f, + /*v:*/0.234375f, 0.008537f, 0.159994f, /*n:*/0.930601f, 0.343516f, 0.126347f, + /*v:*/-0.250000f, -0.241463f, -0.004068f, /*n:*/-0.779839f, -0.010498f, -0.625843f, + /*v:*/-0.351562f, -0.436776f, 0.175619f, /*n:*/-0.972808f, 0.100314f, 0.208716f, + /*v:*/-0.312500f, -0.178963f, 0.175619f, /*n:*/-0.955718f, 0.249184f, 0.156468f, + /*v:*/-0.250000f, -0.241463f, -0.004068f, /*n:*/-0.779839f, -0.010498f, -0.625843f, + /*v:*/-0.312500f, -0.178963f, 0.175619f, /*n:*/-0.955718f, 0.249184f, 0.156468f, + /*v:*/-0.234375f, -0.093026f, 0.011557f, /*n:*/-0.895657f, 0.257729f, -0.362407f, + /*v:*/0.312500f, -0.178963f, 0.175619f, /*n:*/0.955718f, 0.249184f, 0.156468f, + /*v:*/0.351562f, -0.436776f, 0.175619f, /*n:*/0.972808f, 0.100314f, 0.208716f, + /*v:*/0.250000f, -0.241463f, -0.004068f, /*n:*/0.779839f, -0.010498f, -0.625843f, + /*v:*/0.312500f, -0.178963f, 0.175619f, /*n:*/0.955718f, 0.249184f, 0.156468f, + /*v:*/0.250000f, -0.241463f, -0.004068f, /*n:*/0.779839f, -0.010498f, -0.625843f, + /*v:*/0.234375f, -0.093026f, 0.011557f, /*n:*/0.895657f, 0.257729f, -0.362407f, + /*v:*/-0.125000f, -0.280526f, -0.035318f, /*n:*/-0.277078f, -0.314737f, -0.907804f, + /*v:*/-0.250000f, -0.241463f, -0.004068f, /*n:*/-0.779839f, -0.010498f, -0.625843f, + /*v:*/-0.179688f, -0.155526f, -0.136881f, /*n:*/-0.689322f, -0.668691f, -0.278603f, + /*v:*/-0.250000f, -0.241463f, -0.004068f, /*n:*/-0.779839f, -0.010498f, -0.625843f, + /*v:*/-0.234375f, -0.093026f, 0.011557f, /*n:*/-0.895657f, 0.257729f, -0.362407f, + /*v:*/-0.179688f, -0.155526f, -0.136881f, /*n:*/-0.689322f, -0.668691f, -0.278603f, + /*v:*/0.234375f, -0.093026f, 0.011557f, /*n:*/0.895657f, 0.257729f, -0.362407f, + /*v:*/0.250000f, -0.241463f, -0.004068f, /*n:*/0.779839f, -0.010498f, -0.625843f, + /*v:*/0.179688f, -0.155526f, -0.136881f, /*n:*/0.689322f, -0.668691f, -0.278603f, + /*v:*/0.250000f, -0.241463f, -0.004068f, /*n:*/0.779839f, -0.010498f, -0.625843f, + /*v:*/0.125000f, -0.280526f, -0.035318f, /*n:*/0.277078f, -0.314737f, -0.907804f, + /*v:*/0.179688f, -0.155526f, -0.136881f, /*n:*/0.689322f, -0.668691f, -0.278603f, + /*v:*/-0.164062f, -0.686776f, 0.042807f, /*n:*/-0.067476f, -0.783166f, -0.618122f, + /*v:*/-0.328125f, -0.655526f, 0.003745f, /*n:*/-0.555071f, -0.476211f, -0.681967f, + /*v:*/-0.140625f, -0.499276f, -0.027505f, /*n:*/-0.151372f, -0.150975f, -0.976867f, + /*v:*/-0.328125f, -0.655526f, 0.003745f, /*n:*/-0.555071f, -0.476211f, -0.681967f, + /*v:*/-0.289062f, -0.452401f, -0.011880f, /*n:*/-0.620380f, 0.083468f, -0.779809f, + /*v:*/-0.140625f, -0.499276f, -0.027505f, /*n:*/-0.151372f, -0.150975f, -0.976867f, + /*v:*/0.289062f, -0.452401f, -0.011880f, /*n:*/0.620380f, 0.083468f, -0.779809f, + /*v:*/0.328125f, -0.655526f, 0.003745f, /*n:*/0.555071f, -0.476211f, -0.681967f, + /*v:*/0.140625f, -0.499276f, -0.027505f, /*n:*/0.151372f, -0.150975f, -0.976867f, + /*v:*/0.328125f, -0.655526f, 0.003745f, /*n:*/0.555071f, -0.476211f, -0.681967f, + /*v:*/0.164062f, -0.686776f, 0.042807f, /*n:*/0.067476f, -0.783166f, -0.618122f, + /*v:*/0.140625f, -0.499276f, -0.027505f, /*n:*/0.151372f, -0.150975f, -0.976867f, + /*v:*/-0.125000f, -0.280526f, -0.035318f, /*n:*/-0.277078f, -0.314737f, -0.907804f, + /*v:*/-0.140625f, -0.499276f, -0.027505f, /*n:*/-0.151372f, -0.150975f, -0.976867f, + /*v:*/-0.289062f, -0.452401f, -0.011880f, /*n:*/-0.620380f, 0.083468f, -0.779809f, + /*v:*/-0.125000f, -0.280526f, -0.035318f, /*n:*/-0.277078f, -0.314737f, -0.907804f, + /*v:*/-0.289062f, -0.452401f, -0.011880f, /*n:*/-0.620380f, 0.083468f, -0.779809f, + /*v:*/-0.250000f, -0.241463f, -0.004068f, /*n:*/-0.779839f, -0.010498f, -0.625843f, + /*v:*/0.289062f, -0.452401f, -0.011880f, /*n:*/0.620380f, 0.083468f, -0.779809f, + /*v:*/0.140625f, -0.499276f, -0.027505f, /*n:*/0.151372f, -0.150975f, -0.976867f, + /*v:*/0.125000f, -0.280526f, -0.035318f, /*n:*/0.277078f, -0.314737f, -0.907804f, + /*v:*/0.289062f, -0.452401f, -0.011880f, /*n:*/0.620380f, 0.083468f, -0.779809f, + /*v:*/0.125000f, -0.280526f, -0.035318f, /*n:*/0.277078f, -0.314737f, -0.907804f, + /*v:*/0.250000f, -0.241463f, -0.004068f, /*n:*/0.779839f, -0.010498f, -0.625843f, + /*v:*/-0.289062f, -0.452401f, -0.011880f, /*n:*/-0.620380f, 0.083468f, -0.779809f, + /*v:*/-0.367188f, -0.632088f, 0.136557f, /*n:*/-0.945708f, -0.257851f, 0.197699f, + /*v:*/-0.351562f, -0.436776f, 0.175619f, /*n:*/-0.972808f, 0.100314f, 0.208716f, + /*v:*/-0.289062f, -0.452401f, -0.011880f, /*n:*/-0.620380f, 0.083468f, -0.779809f, + /*v:*/-0.351562f, -0.436776f, 0.175619f, /*n:*/-0.972808f, 0.100314f, 0.208716f, + /*v:*/-0.250000f, -0.241463f, -0.004068f, /*n:*/-0.779839f, -0.010498f, -0.625843f, + /*v:*/0.351562f, -0.436776f, 0.175619f, /*n:*/0.972808f, 0.100314f, 0.208716f, + /*v:*/0.367188f, -0.632088f, 0.136557f, /*n:*/0.945708f, -0.257851f, 0.197699f, + /*v:*/0.289062f, -0.452401f, -0.011880f, /*n:*/0.620380f, 0.083468f, -0.779809f, + /*v:*/0.351562f, -0.436776f, 0.175619f, /*n:*/0.972808f, 0.100314f, 0.208716f, + /*v:*/0.289062f, -0.452401f, -0.011880f, /*n:*/0.620380f, 0.083468f, -0.779809f, + /*v:*/0.250000f, -0.241463f, -0.004068f, /*n:*/0.779839f, -0.010498f, -0.625843f, + /*v:*/-0.328125f, -0.655526f, 0.003745f, /*n:*/-0.555071f, -0.476211f, -0.681967f, + /*v:*/-0.328125f, -0.686776f, 0.128745f, /*n:*/-0.526658f, -0.834651f, 0.161107f, + /*v:*/-0.367188f, -0.632088f, 0.136557f, /*n:*/-0.945708f, -0.257851f, 0.197699f, + /*v:*/-0.328125f, -0.655526f, 0.003745f, /*n:*/-0.555071f, -0.476211f, -0.681967f, + /*v:*/-0.367188f, -0.632088f, 0.136557f, /*n:*/-0.945708f, -0.257851f, 0.197699f, + /*v:*/-0.289062f, -0.452401f, -0.011880f, /*n:*/-0.620380f, 0.083468f, -0.779809f, + /*v:*/0.367188f, -0.632088f, 0.136557f, /*n:*/0.945708f, -0.257851f, 0.197699f, + /*v:*/0.328125f, -0.686776f, 0.128745f, /*n:*/0.526658f, -0.834651f, 0.161107f, + /*v:*/0.328125f, -0.655526f, 0.003745f, /*n:*/0.555071f, -0.476211f, -0.681967f, + /*v:*/0.367188f, -0.632088f, 0.136557f, /*n:*/0.945708f, -0.257851f, 0.197699f, + /*v:*/0.328125f, -0.655526f, 0.003745f, /*n:*/0.555071f, -0.476211f, -0.681967f, + /*v:*/0.289062f, -0.452401f, -0.011880f, /*n:*/0.620380f, 0.083468f, -0.779809f, + /*v:*/-0.164062f, -0.686776f, 0.042807f, /*n:*/-0.067476f, -0.783166f, -0.618122f, + /*v:*/-0.179688f, -0.710213f, 0.159995f, /*n:*/-0.159551f, -0.975249f, 0.152898f, + /*v:*/-0.328125f, -0.686776f, 0.128745f, /*n:*/-0.526658f, -0.834651f, 0.161107f, + /*v:*/-0.164062f, -0.686776f, 0.042807f, /*n:*/-0.067476f, -0.783166f, -0.618122f, + /*v:*/-0.328125f, -0.686776f, 0.128745f, /*n:*/-0.526658f, -0.834651f, 0.161107f, + /*v:*/-0.328125f, -0.655526f, 0.003745f, /*n:*/-0.555071f, -0.476211f, -0.681967f, + /*v:*/0.328125f, -0.686776f, 0.128745f, /*n:*/0.526658f, -0.834651f, 0.161107f, + /*v:*/0.179688f, -0.710213f, 0.159995f, /*n:*/0.159551f, -0.975249f, 0.152898f, + /*v:*/0.164062f, -0.686776f, 0.042807f, /*n:*/0.067476f, -0.783166f, -0.618122f, + /*v:*/0.328125f, -0.686776f, 0.128745f, /*n:*/0.526658f, -0.834651f, 0.161107f, + /*v:*/0.164062f, -0.686776f, 0.042807f, /*n:*/0.067476f, -0.783166f, -0.618122f, + /*v:*/0.328125f, -0.655526f, 0.003745f, /*n:*/0.555071f, -0.476211f, -0.681967f, + /*v:*/0.000000f, -0.718026f, 0.066245f, /*n:*/0.000000f, -0.881802f, -0.471603f, + /*v:*/0.000000f, -0.725838f, 0.183432f, /*n:*/0.000000f, -0.967650f, 0.252266f, + /*v:*/-0.179688f, -0.710213f, 0.159995f, /*n:*/-0.159551f, -0.975249f, 0.152898f, + /*v:*/0.000000f, -0.718026f, 0.066245f, /*n:*/0.000000f, -0.881802f, -0.471603f, + /*v:*/-0.179688f, -0.710213f, 0.159995f, /*n:*/-0.159551f, -0.975249f, 0.152898f, + /*v:*/-0.164062f, -0.686776f, 0.042807f, /*n:*/-0.067476f, -0.783166f, -0.618122f, + /*v:*/0.179688f, -0.710213f, 0.159995f, /*n:*/0.159551f, -0.975249f, 0.152898f, + /*v:*/0.000000f, -0.725838f, 0.183432f, /*n:*/0.000000f, -0.967650f, 0.252266f, + /*v:*/0.000000f, -0.718026f, 0.066245f, /*n:*/0.000000f, -0.881802f, -0.471603f, + /*v:*/0.179688f, -0.710213f, 0.159995f, /*n:*/0.159551f, -0.975249f, 0.152898f, + /*v:*/0.000000f, -0.718026f, 0.066245f, /*n:*/0.000000f, -0.881802f, -0.471603f, + /*v:*/0.164062f, -0.686776f, 0.042807f, /*n:*/0.067476f, -0.783166f, -0.618122f, + /*v:*/-0.140625f, -0.499276f, -0.027505f, /*n:*/-0.151372f, -0.150975f, -0.976867f, + /*v:*/0.000000f, -0.546151f, -0.050943f, /*n:*/0.000000f, -0.297342f, -0.954741f, + /*v:*/-0.164062f, -0.686776f, 0.042807f, /*n:*/-0.067476f, -0.783166f, -0.618122f, + /*v:*/0.000000f, -0.546151f, -0.050943f, /*n:*/0.000000f, -0.297342f, -0.954741f, + /*v:*/0.000000f, -0.718026f, 0.066245f, /*n:*/0.000000f, -0.881802f, -0.471603f, + /*v:*/-0.164062f, -0.686776f, 0.042807f, /*n:*/-0.067476f, -0.783166f, -0.618122f, + /*v:*/0.000000f, -0.718026f, 0.066245f, /*n:*/0.000000f, -0.881802f, -0.471603f, + /*v:*/0.000000f, -0.546151f, -0.050943f, /*n:*/0.000000f, -0.297342f, -0.954741f, + /*v:*/0.164062f, -0.686776f, 0.042807f, /*n:*/0.067476f, -0.783166f, -0.618122f, + /*v:*/0.000000f, -0.546151f, -0.050943f, /*n:*/0.000000f, -0.297342f, -0.954741f, + /*v:*/0.140625f, -0.499276f, -0.027505f, /*n:*/0.151372f, -0.150975f, -0.976867f, + /*v:*/0.164062f, -0.686776f, 0.042807f, /*n:*/0.067476f, -0.783166f, -0.618122f, + /*v:*/-0.125000f, -0.280526f, -0.035318f, /*n:*/-0.277078f, -0.314737f, -0.907804f, + /*v:*/0.000000f, -0.311776f, -0.074381f, /*n:*/0.000000f, -0.213294f, -0.976959f, + /*v:*/-0.140625f, -0.499276f, -0.027505f, /*n:*/-0.151372f, -0.150975f, -0.976867f, + /*v:*/0.000000f, -0.311776f, -0.074381f, /*n:*/0.000000f, -0.213294f, -0.976959f, + /*v:*/0.000000f, -0.546151f, -0.050943f, /*n:*/0.000000f, -0.297342f, -0.954741f, + /*v:*/-0.140625f, -0.499276f, -0.027505f, /*n:*/-0.151372f, -0.150975f, -0.976867f, + /*v:*/0.000000f, -0.546151f, -0.050943f, /*n:*/0.000000f, -0.297342f, -0.954741f, + /*v:*/0.000000f, -0.311776f, -0.074381f, /*n:*/0.000000f, -0.213294f, -0.976959f, + /*v:*/0.140625f, -0.499276f, -0.027505f, /*n:*/0.151372f, -0.150975f, -0.976867f, + /*v:*/0.000000f, -0.311776f, -0.074381f, /*n:*/0.000000f, -0.213294f, -0.976959f, + /*v:*/0.125000f, -0.280526f, -0.035318f, /*n:*/0.277078f, -0.314737f, -0.907804f, + /*v:*/0.140625f, -0.499276f, -0.027505f, /*n:*/0.151372f, -0.150975f, -0.976867f, + /*v:*/-0.179688f, -0.155526f, -0.136881f, /*n:*/-0.689322f, -0.668691f, -0.278603f, + /*v:*/0.000000f, -0.225838f, -0.113443f, /*n:*/0.000000f, -0.771081f, -0.636708f, + /*v:*/-0.125000f, -0.280526f, -0.035318f, /*n:*/-0.277078f, -0.314737f, -0.907804f, + /*v:*/0.000000f, -0.225838f, -0.113443f, /*n:*/0.000000f, -0.771081f, -0.636708f, + /*v:*/0.000000f, -0.311776f, -0.074381f, /*n:*/0.000000f, -0.213294f, -0.976959f, + /*v:*/-0.125000f, -0.280526f, -0.035318f, /*n:*/-0.277078f, -0.314737f, -0.907804f, + /*v:*/0.000000f, -0.311776f, -0.074381f, /*n:*/0.000000f, -0.213294f, -0.976959f, + /*v:*/0.000000f, -0.225838f, -0.113443f, /*n:*/0.000000f, -0.771081f, -0.636708f, + /*v:*/0.125000f, -0.280526f, -0.035318f, /*n:*/0.277078f, -0.314737f, -0.907804f, + /*v:*/0.000000f, -0.225838f, -0.113443f, /*n:*/0.000000f, -0.771081f, -0.636708f, + /*v:*/0.179688f, -0.155526f, -0.136881f, /*n:*/0.689322f, -0.668691f, -0.278603f, + /*v:*/0.125000f, -0.280526f, -0.035318f, /*n:*/0.277078f, -0.314737f, -0.907804f, + /*v:*/-0.437500f, 0.164787f, 0.074057f, /*n:*/-0.471969f, -0.863674f, -0.176794f, + /*v:*/-0.437500f, 0.117912f, 0.136557f, /*n:*/-0.348827f, -0.937132f, -0.008148f, + /*v:*/-0.632812f, 0.219474f, 0.144369f, /*n:*/-0.587481f, -0.784875f, 0.196966f, + /*v:*/-0.437500f, 0.164787f, 0.074057f, /*n:*/-0.471969f, -0.863674f, -0.176794f, + /*v:*/-0.632812f, 0.219474f, 0.144369f, /*n:*/-0.587481f, -0.784875f, 0.196966f, + /*v:*/-0.601562f, 0.258537f, 0.019369f, /*n:*/-0.544328f, -0.837153f, -0.053316f, + /*v:*/0.632812f, 0.219474f, 0.144369f, /*n:*/0.587481f, -0.784875f, 0.196966f, + /*v:*/0.437500f, 0.117912f, 0.136557f, /*n:*/0.348827f, -0.937132f, -0.008148f, + /*v:*/0.437500f, 0.164787f, 0.074057f, /*n:*/0.471969f, -0.863674f, -0.176794f, + /*v:*/0.632812f, 0.219474f, 0.144369f, /*n:*/0.587481f, -0.784875f, 0.196966f, + /*v:*/0.437500f, 0.164787f, 0.074057f, /*n:*/0.471969f, -0.863674f, -0.176794f, + /*v:*/0.601562f, 0.258537f, 0.019369f, /*n:*/0.544328f, -0.837153f, -0.053316f, + /*v:*/-0.601562f, 0.258537f, 0.019369f, /*n:*/-0.544328f, -0.837153f, -0.053316f, + /*v:*/-0.632812f, 0.219474f, 0.144369f, /*n:*/-0.587481f, -0.784875f, 0.196966f, + /*v:*/-0.828125f, 0.406974f, 0.050619f, /*n:*/-0.906980f, -0.400922f, -0.128941f, + /*v:*/-0.601562f, 0.258537f, 0.019369f, /*n:*/-0.544328f, -0.837153f, -0.053316f, + /*v:*/-0.828125f, 0.406974f, 0.050619f, /*n:*/-0.906980f, -0.400922f, -0.128941f, + /*v:*/-0.773438f, 0.422599f, -0.019693f, /*n:*/-0.930204f, -0.306192f, -0.202338f, + /*v:*/0.828125f, 0.406974f, 0.050619f, /*n:*/0.906980f, -0.400922f, -0.128941f, + /*v:*/0.632812f, 0.219474f, 0.144369f, /*n:*/0.587481f, -0.784875f, 0.196966f, + /*v:*/0.601562f, 0.258537f, 0.019369f, /*n:*/0.544328f, -0.837153f, -0.053316f, + /*v:*/0.828125f, 0.406974f, 0.050619f, /*n:*/0.906980f, -0.400922f, -0.128941f, + /*v:*/0.601562f, 0.258537f, 0.019369f, /*n:*/0.544328f, -0.837153f, -0.053316f, + /*v:*/0.773438f, 0.422599f, -0.019693f, /*n:*/0.930204f, -0.306192f, -0.202338f, + /*v:*/-0.773438f, 0.422599f, -0.019693f, /*n:*/-0.930204f, -0.306192f, -0.202338f, + /*v:*/-0.828125f, 0.406974f, 0.050619f, /*n:*/-0.906980f, -0.400922f, -0.128941f, + /*v:*/-0.796875f, 0.664787f, 0.066244f, /*n:*/-0.695700f, 0.581378f, -0.421827f, + /*v:*/-0.828125f, 0.406974f, 0.050619f, /*n:*/-0.906980f, -0.400922f, -0.128941f, + /*v:*/-0.859375f, 0.688224f, 0.199057f, /*n:*/-0.845119f, 0.443403f, 0.298502f, + /*v:*/-0.796875f, 0.664787f, 0.066244f, /*n:*/-0.695700f, 0.581378f, -0.421827f, + /*v:*/0.859375f, 0.688224f, 0.199057f, /*n:*/0.845119f, 0.443403f, 0.298502f, + /*v:*/0.828125f, 0.406974f, 0.050619f, /*n:*/0.906980f, -0.400922f, -0.128941f, + /*v:*/0.796875f, 0.664787f, 0.066244f, /*n:*/0.695700f, 0.581378f, -0.421827f, + /*v:*/0.828125f, 0.406974f, 0.050619f, /*n:*/0.906980f, -0.400922f, -0.128941f, + /*v:*/0.773438f, 0.422599f, -0.019693f, /*n:*/0.930204f, -0.306192f, -0.202338f, + /*v:*/0.796875f, 0.664787f, 0.066244f, /*n:*/0.695700f, 0.581378f, -0.421827f, + /*v:*/-0.796875f, 0.664787f, 0.066244f, /*n:*/-0.695700f, 0.581378f, -0.421827f, + /*v:*/-0.859375f, 0.688224f, 0.199057f, /*n:*/-0.845119f, 0.443403f, 0.298502f, + /*v:*/-0.710938f, 0.742912f, 0.230307f, /*n:*/-0.517045f, 0.829127f, 0.212531f, + /*v:*/-0.796875f, 0.664787f, 0.066244f, /*n:*/-0.695700f, 0.581378f, -0.421827f, + /*v:*/-0.710938f, 0.742912f, 0.230307f, /*n:*/-0.517045f, 0.829127f, 0.212531f, + /*v:*/-0.679688f, 0.711662f, 0.097494f, /*n:*/-0.345531f, 0.912442f, -0.219123f, + /*v:*/0.710938f, 0.742912f, 0.230307f, /*n:*/0.517045f, 0.829127f, 0.212531f, + /*v:*/0.859375f, 0.688224f, 0.199057f, /*n:*/0.845119f, 0.443403f, 0.298502f, + /*v:*/0.796875f, 0.664787f, 0.066244f, /*n:*/0.695700f, 0.581378f, -0.421827f, + /*v:*/0.710938f, 0.742912f, 0.230307f, /*n:*/0.517045f, 0.829127f, 0.212531f, + /*v:*/0.796875f, 0.664787f, 0.066244f, /*n:*/0.695700f, 0.581378f, -0.421827f, + /*v:*/0.679688f, 0.711662f, 0.097494f, /*n:*/0.345531f, 0.912442f, -0.219123f, + /*v:*/-0.679688f, 0.711662f, 0.097494f, /*n:*/-0.345531f, 0.912442f, -0.219123f, + /*v:*/-0.710938f, 0.742912f, 0.230307f, /*n:*/-0.517045f, 0.829127f, 0.212531f, + /*v:*/-0.484375f, 0.813224f, 0.159994f, /*n:*/-0.226691f, 0.874813f, -0.428114f, + /*v:*/-0.710938f, 0.742912f, 0.230307f, /*n:*/-0.517045f, 0.829127f, 0.212531f, + /*v:*/-0.492188f, 0.860099f, 0.292807f, /*n:*/-0.597552f, 0.784722f, 0.164586f, + /*v:*/-0.484375f, 0.813224f, 0.159994f, /*n:*/-0.226691f, 0.874813f, -0.428114f, + /*v:*/0.492188f, 0.860099f, 0.292807f, /*n:*/0.597552f, 0.784722f, 0.164586f, + /*v:*/0.710938f, 0.742912f, 0.230307f, /*n:*/0.517045f, 0.829127f, 0.212531f, + /*v:*/0.484375f, 0.813224f, 0.159994f, /*n:*/0.226691f, 0.874813f, -0.428114f, + /*v:*/0.710938f, 0.742912f, 0.230307f, /*n:*/0.517045f, 0.829127f, 0.212531f, + /*v:*/0.679688f, 0.711662f, 0.097494f, /*n:*/0.345531f, 0.912442f, -0.219123f, + /*v:*/0.484375f, 0.813224f, 0.159994f, /*n:*/0.226691f, 0.874813f, -0.428114f, + /*v:*/-0.484375f, 0.813224f, 0.159994f, /*n:*/-0.226691f, 0.874813f, -0.428114f, + /*v:*/-0.492188f, 0.860099f, 0.292807f, /*n:*/-0.597552f, 0.784722f, 0.164586f, + /*v:*/-0.335938f, 0.946037f, 0.199057f, /*n:*/-0.119297f, 0.646138f, -0.753807f, + /*v:*/-0.492188f, 0.860099f, 0.292807f, /*n:*/-0.597552f, 0.784722f, 0.164586f, + /*v:*/-0.320312f, 1.016349f, 0.339682f, /*n:*/-0.231269f, 0.956999f, 0.175054f, + /*v:*/-0.335938f, 0.946037f, 0.199057f, /*n:*/-0.119297f, 0.646138f, -0.753807f, + /*v:*/0.320312f, 1.016349f, 0.339682f, /*n:*/0.231269f, 0.956999f, 0.175054f, + /*v:*/0.492188f, 0.860099f, 0.292807f, /*n:*/0.597552f, 0.784722f, 0.164586f, + /*v:*/0.335938f, 0.946037f, 0.199057f, /*n:*/0.119297f, 0.646138f, -0.753807f, + /*v:*/0.492188f, 0.860099f, 0.292807f, /*n:*/0.597552f, 0.784722f, 0.164586f, + /*v:*/0.484375f, 0.813224f, 0.159994f, /*n:*/0.226691f, 0.874813f, -0.428114f, + /*v:*/0.335938f, 0.946037f, 0.199057f, /*n:*/0.119297f, 0.646138f, -0.753807f, + /*v:*/-0.335938f, 0.946037f, 0.199057f, /*n:*/-0.119297f, 0.646138f, -0.753807f, + /*v:*/-0.320312f, 1.016349f, 0.339682f, /*n:*/-0.231269f, 0.956999f, 0.175054f, + /*v:*/-0.195312f, 0.922599f, 0.222494f, /*n:*/0.476638f, 0.509445f, -0.716392f, + /*v:*/-0.320312f, 1.016349f, 0.339682f, /*n:*/-0.231269f, 0.956999f, 0.175054f, + /*v:*/-0.156250f, 0.977287f, 0.363119f, /*n:*/0.605060f, 0.768029f, 0.209754f, + /*v:*/-0.195312f, 0.922599f, 0.222494f, /*n:*/0.476638f, 0.509445f, -0.716392f, + /*v:*/0.156250f, 0.977287f, 0.363119f, /*n:*/-0.605060f, 0.768029f, 0.209754f, + /*v:*/0.320312f, 1.016349f, 0.339682f, /*n:*/0.231269f, 0.956999f, 0.175054f, + /*v:*/0.195312f, 0.922599f, 0.222494f, /*n:*/-0.476638f, 0.509445f, -0.716392f, + /*v:*/0.320312f, 1.016349f, 0.339682f, /*n:*/0.231269f, 0.956999f, 0.175054f, + /*v:*/0.335938f, 0.946037f, 0.199057f, /*n:*/0.119297f, 0.646138f, -0.753807f, + /*v:*/0.195312f, 0.922599f, 0.222494f, /*n:*/-0.476638f, 0.509445f, -0.716392f, + /*v:*/-0.195312f, 0.922599f, 0.222494f, /*n:*/0.476638f, 0.509445f, -0.716392f, + /*v:*/-0.156250f, 0.977287f, 0.363119f, /*n:*/0.605060f, 0.768029f, 0.209754f, + /*v:*/-0.062500f, 0.750724f, 0.355307f, /*n:*/0.824183f, 0.546770f, 0.147313f, + /*v:*/-0.195312f, 0.922599f, 0.222494f, /*n:*/0.476638f, 0.509445f, -0.716392f, + /*v:*/-0.062500f, 0.750724f, 0.355307f, /*n:*/0.824183f, 0.546770f, 0.147313f, + /*v:*/-0.109375f, 0.719474f, 0.214682f, /*n:*/0.459304f, 0.862453f, 0.212561f, + /*v:*/0.062500f, 0.750724f, 0.355307f, /*n:*/-0.824183f, 0.546770f, 0.147313f, + /*v:*/0.156250f, 0.977287f, 0.363119f, /*n:*/-0.605060f, 0.768029f, 0.209754f, + /*v:*/0.195312f, 0.922599f, 0.222494f, /*n:*/-0.476638f, 0.509445f, -0.716392f, + /*v:*/0.062500f, 0.750724f, 0.355307f, /*n:*/-0.824183f, 0.546770f, 0.147313f, + /*v:*/0.195312f, 0.922599f, 0.222494f, /*n:*/-0.476638f, 0.509445f, -0.716392f, + /*v:*/0.109375f, 0.719474f, 0.214682f, /*n:*/-0.459304f, 0.862453f, 0.212561f, + /*v:*/-0.109375f, 0.719474f, 0.214682f, /*n:*/0.459304f, 0.862453f, 0.212561f, + /*v:*/-0.062500f, 0.750724f, 0.355307f, /*n:*/0.824183f, 0.546770f, 0.147313f, + /*v:*/0.000000f, 0.688224f, 0.347494f, /*n:*/0.000000f, 0.963591f, 0.267281f, + /*v:*/-0.109375f, 0.719474f, 0.214682f, /*n:*/0.459304f, 0.862453f, 0.212561f, + /*v:*/0.000000f, 0.688224f, 0.347494f, /*n:*/0.000000f, 0.963591f, 0.267281f, + /*v:*/0.000000f, 0.664787f, 0.206869f, /*n:*/0.000000f, 0.859188f, 0.511612f, + /*v:*/0.000000f, 0.688224f, 0.347494f, /*n:*/0.000000f, 0.963591f, 0.267281f, + /*v:*/0.062500f, 0.750724f, 0.355307f, /*n:*/-0.824183f, 0.546770f, 0.147313f, + /*v:*/0.109375f, 0.719474f, 0.214682f, /*n:*/-0.459304f, 0.862453f, 0.212561f, + /*v:*/0.000000f, 0.688224f, 0.347494f, /*n:*/0.000000f, 0.963591f, 0.267281f, + /*v:*/0.109375f, 0.719474f, 0.214682f, /*n:*/-0.459304f, 0.862453f, 0.212561f, + /*v:*/0.000000f, 0.664787f, 0.206869f, /*n:*/0.000000f, 0.859188f, 0.511612f, + /*v:*/-0.203125f, 0.430412f, 0.355307f, /*n:*/-0.688040f, 0.298471f, 0.661397f, + /*v:*/-0.187500f, 0.414787f, 0.378744f, /*n:*/0.010102f, -0.069979f, 0.997467f, + /*v:*/-0.171875f, 0.477287f, 0.386557f, /*n:*/-0.158055f, -0.084231f, 0.983825f, + /*v:*/-0.203125f, 0.430412f, 0.355307f, /*n:*/-0.688040f, 0.298471f, 0.661397f, + /*v:*/-0.171875f, 0.477287f, 0.386557f, /*n:*/-0.158055f, -0.084231f, 0.983825f, + /*v:*/-0.195312f, 0.485099f, 0.355307f, /*n:*/-0.801630f, 0.010987f, 0.597674f, + /*v:*/0.171875f, 0.477287f, 0.386557f, /*n:*/0.158055f, -0.084231f, 0.983825f, + /*v:*/0.187500f, 0.414787f, 0.378744f, /*n:*/-0.010102f, -0.069979f, 0.997467f, + /*v:*/0.203125f, 0.430412f, 0.355307f, /*n:*/0.688040f, 0.298471f, 0.661397f, + /*v:*/0.171875f, 0.477287f, 0.386557f, /*n:*/0.158055f, -0.084231f, 0.983825f, + /*v:*/0.203125f, 0.430412f, 0.355307f, /*n:*/0.688040f, 0.298471f, 0.661397f, + /*v:*/0.195312f, 0.485099f, 0.355307f, /*n:*/0.801630f, 0.010987f, 0.597674f, + /*v:*/-0.195312f, 0.485099f, 0.355307f, /*n:*/-0.801630f, 0.010987f, 0.597674f, + /*v:*/-0.171875f, 0.477287f, 0.386557f, /*n:*/-0.158055f, -0.084231f, 0.983825f, + /*v:*/-0.179688f, 0.555412f, 0.386557f, /*n:*/-0.293405f, -0.060152f, 0.954070f, + /*v:*/-0.195312f, 0.485099f, 0.355307f, /*n:*/-0.801630f, 0.010987f, 0.597674f, + /*v:*/-0.179688f, 0.555412f, 0.386557f, /*n:*/-0.293405f, -0.060152f, 0.954070f, + /*v:*/-0.195312f, 0.555412f, 0.363119f, /*n:*/-0.789361f, -0.203192f, 0.579302f, + /*v:*/0.179688f, 0.555412f, 0.386557f, /*n:*/0.293405f, -0.060152f, 0.954070f, + /*v:*/0.171875f, 0.477287f, 0.386557f, /*n:*/0.158055f, -0.084231f, 0.983825f, + /*v:*/0.195312f, 0.485099f, 0.355307f, /*n:*/0.801630f, 0.010987f, 0.597674f, + /*v:*/0.179688f, 0.555412f, 0.386557f, /*n:*/0.293405f, -0.060152f, 0.954070f, + /*v:*/0.195312f, 0.485099f, 0.355307f, /*n:*/0.801630f, 0.010987f, 0.597674f, + /*v:*/0.195312f, 0.555412f, 0.363119f, /*n:*/0.789361f, -0.203192f, 0.579302f, + /*v:*/-0.195312f, 0.555412f, 0.363119f, /*n:*/-0.789361f, -0.203192f, 0.579302f, + /*v:*/-0.179688f, 0.555412f, 0.386557f, /*n:*/-0.293405f, -0.060152f, 0.954070f, + /*v:*/-0.210938f, 0.633537f, 0.386557f, /*n:*/-0.182958f, -0.102878f, 0.977691f, + /*v:*/-0.195312f, 0.555412f, 0.363119f, /*n:*/-0.789361f, -0.203192f, 0.579302f, + /*v:*/-0.210938f, 0.633537f, 0.386557f, /*n:*/-0.182958f, -0.102878f, 0.977691f, + /*v:*/-0.234375f, 0.617912f, 0.363119f, /*n:*/-0.463424f, -0.394910f, 0.793237f, + /*v:*/0.210938f, 0.633537f, 0.386557f, /*n:*/0.182958f, -0.102878f, 0.977691f, + /*v:*/0.179688f, 0.555412f, 0.386557f, /*n:*/0.293405f, -0.060152f, 0.954070f, + /*v:*/0.195312f, 0.555412f, 0.363119f, /*n:*/0.789361f, -0.203192f, 0.579302f, + /*v:*/0.210938f, 0.633537f, 0.386557f, /*n:*/0.182958f, -0.102878f, 0.977691f, + /*v:*/0.195312f, 0.555412f, 0.363119f, /*n:*/0.789361f, -0.203192f, 0.579302f, + /*v:*/0.234375f, 0.617912f, 0.363119f, /*n:*/0.463424f, -0.394910f, 0.793237f, + /*v:*/-0.242188f, 0.383537f, 0.363119f, /*n:*/-0.432264f, 0.583300f, 0.687643f, + /*v:*/-0.226562f, 0.367912f, 0.386557f, /*n:*/0.031709f, -0.219794f, 0.975005f, + /*v:*/-0.187500f, 0.414787f, 0.378744f, /*n:*/0.010102f, -0.069979f, 0.997467f, + /*v:*/-0.242188f, 0.383537f, 0.363119f, /*n:*/-0.432264f, 0.583300f, 0.687643f, + /*v:*/-0.187500f, 0.414787f, 0.378744f, /*n:*/0.010102f, -0.069979f, 0.997467f, + /*v:*/-0.203125f, 0.430412f, 0.355307f, /*n:*/-0.688040f, 0.298471f, 0.661397f, + /*v:*/0.187500f, 0.414787f, 0.378744f, /*n:*/-0.010102f, -0.069979f, 0.997467f, + /*v:*/0.226562f, 0.367912f, 0.386557f, /*n:*/-0.031709f, -0.219794f, 0.975005f, + /*v:*/0.242188f, 0.383537f, 0.363119f, /*n:*/0.432264f, 0.583300f, 0.687643f, + /*v:*/0.187500f, 0.414787f, 0.378744f, /*n:*/-0.010102f, -0.069979f, 0.997467f, + /*v:*/0.242188f, 0.383537f, 0.363119f, /*n:*/0.432264f, 0.583300f, 0.687643f, + /*v:*/0.203125f, 0.430412f, 0.355307f, /*n:*/0.688040f, 0.298471f, 0.661397f, + /*v:*/-0.375000f, 0.344474f, 0.331869f, /*n:*/-0.143071f, 0.558672f, 0.816919f, + /*v:*/-0.375000f, 0.321037f, 0.347494f, /*n:*/-0.184454f, -0.186316f, 0.964995f, + /*v:*/-0.242188f, 0.383537f, 0.363119f, /*n:*/-0.432264f, 0.583300f, 0.687643f, + /*v:*/-0.375000f, 0.321037f, 0.347494f, /*n:*/-0.184454f, -0.186316f, 0.964995f, + /*v:*/-0.226562f, 0.367912f, 0.386557f, /*n:*/0.031709f, -0.219794f, 0.975005f, + /*v:*/-0.242188f, 0.383537f, 0.363119f, /*n:*/-0.432264f, 0.583300f, 0.687643f, + /*v:*/0.226562f, 0.367912f, 0.386557f, /*n:*/-0.031709f, -0.219794f, 0.975005f, + /*v:*/0.375000f, 0.321037f, 0.347494f, /*n:*/0.184454f, -0.186316f, 0.964995f, + /*v:*/0.242188f, 0.383537f, 0.363119f, /*n:*/0.432264f, 0.583300f, 0.687643f, + /*v:*/0.375000f, 0.321037f, 0.347494f, /*n:*/0.184454f, -0.186316f, 0.964995f, + /*v:*/0.375000f, 0.344474f, 0.331869f, /*n:*/0.143071f, 0.558672f, 0.816919f, + /*v:*/0.242188f, 0.383537f, 0.363119f, /*n:*/0.432264f, 0.583300f, 0.687643f, + /*v:*/-0.460938f, 0.375724f, 0.308432f, /*n:*/0.165288f, 0.609790f, 0.775109f, + /*v:*/-0.476562f, 0.360099f, 0.324057f, /*n:*/-0.298990f, -0.035615f, 0.953581f, + /*v:*/-0.375000f, 0.344474f, 0.331869f, /*n:*/-0.143071f, 0.558672f, 0.816919f, + /*v:*/-0.476562f, 0.360099f, 0.324057f, /*n:*/-0.298990f, -0.035615f, 0.953581f, + /*v:*/-0.375000f, 0.321037f, 0.347494f, /*n:*/-0.184454f, -0.186316f, 0.964995f, + /*v:*/-0.375000f, 0.344474f, 0.331869f, /*n:*/-0.143071f, 0.558672f, 0.816919f, + /*v:*/0.375000f, 0.321037f, 0.347494f, /*n:*/0.184454f, -0.186316f, 0.964995f, + /*v:*/0.476562f, 0.360099f, 0.324057f, /*n:*/0.298990f, -0.035615f, 0.953581f, + /*v:*/0.375000f, 0.344474f, 0.331869f, /*n:*/0.143071f, 0.558672f, 0.816919f, + /*v:*/0.476562f, 0.360099f, 0.324057f, /*n:*/0.298990f, -0.035615f, 0.953581f, + /*v:*/0.460938f, 0.375724f, 0.308432f, /*n:*/-0.165288f, 0.609790f, 0.775109f, + /*v:*/0.375000f, 0.344474f, 0.331869f, /*n:*/0.143071f, 0.558672f, 0.816919f, + /*v:*/-0.546875f, 0.469474f, 0.277182f, /*n:*/0.192145f, 0.191351f, 0.962523f, + /*v:*/-0.578125f, 0.453849f, 0.284994f, /*n:*/-0.294290f, -0.102023f, 0.950224f, + /*v:*/-0.476562f, 0.360099f, 0.324057f, /*n:*/-0.298990f, -0.035615f, 0.953581f, + /*v:*/-0.546875f, 0.469474f, 0.277182f, /*n:*/0.192145f, 0.191351f, 0.962523f, + /*v:*/-0.476562f, 0.360099f, 0.324057f, /*n:*/-0.298990f, -0.035615f, 0.953581f, + /*v:*/-0.460938f, 0.375724f, 0.308432f, /*n:*/0.165288f, 0.609790f, 0.775109f, + /*v:*/0.476562f, 0.360099f, 0.324057f, /*n:*/0.298990f, -0.035615f, 0.953581f, + /*v:*/0.578125f, 0.453849f, 0.284994f, /*n:*/0.294290f, -0.102023f, 0.950224f, + /*v:*/0.546875f, 0.469474f, 0.277182f, /*n:*/-0.192145f, 0.191351f, 0.962523f, + /*v:*/0.476562f, 0.360099f, 0.324057f, /*n:*/0.298990f, -0.035615f, 0.953581f, + /*v:*/0.546875f, 0.469474f, 0.277182f, /*n:*/-0.192145f, 0.191351f, 0.962523f, + /*v:*/0.460938f, 0.375724f, 0.308432f, /*n:*/-0.165288f, 0.609790f, 0.775109f, + /*v:*/-0.554688f, 0.539787f, 0.277182f, /*n:*/0.422926f, -0.107761f, 0.899716f, + /*v:*/-0.585938f, 0.547599f, 0.292807f, /*n:*/-0.177587f, -0.060762f, 0.982208f, + /*v:*/-0.546875f, 0.469474f, 0.277182f, /*n:*/0.192145f, 0.191351f, 0.962523f, + /*v:*/-0.585938f, 0.547599f, 0.292807f, /*n:*/-0.177587f, -0.060762f, 0.982208f, + /*v:*/-0.578125f, 0.453849f, 0.284994f, /*n:*/-0.294290f, -0.102023f, 0.950224f, + /*v:*/-0.546875f, 0.469474f, 0.277182f, /*n:*/0.192145f, 0.191351f, 0.962523f, + /*v:*/0.578125f, 0.453849f, 0.284994f, /*n:*/0.294290f, -0.102023f, 0.950224f, + /*v:*/0.585938f, 0.547599f, 0.292807f, /*n:*/0.177587f, -0.060762f, 0.982208f, + /*v:*/0.546875f, 0.469474f, 0.277182f, /*n:*/-0.192145f, 0.191351f, 0.962523f, + /*v:*/0.585938f, 0.547599f, 0.292807f, /*n:*/0.177587f, -0.060762f, 0.982208f, + /*v:*/0.554688f, 0.539787f, 0.277182f, /*n:*/-0.422926f, -0.107761f, 0.899716f, + /*v:*/0.546875f, 0.469474f, 0.277182f, /*n:*/-0.192145f, 0.191351f, 0.962523f, + /*v:*/-0.531250f, 0.594474f, 0.284994f, /*n:*/0.142308f, -0.582629f, 0.800165f, + /*v:*/-0.562500f, 0.610099f, 0.300619f, /*n:*/-0.294351f, 0.004639f, 0.955657f, + /*v:*/-0.585938f, 0.547599f, 0.292807f, /*n:*/-0.177587f, -0.060762f, 0.982208f, + /*v:*/-0.531250f, 0.594474f, 0.284994f, /*n:*/0.142308f, -0.582629f, 0.800165f, + /*v:*/-0.585938f, 0.547599f, 0.292807f, /*n:*/-0.177587f, -0.060762f, 0.982208f, + /*v:*/-0.554688f, 0.539787f, 0.277182f, /*n:*/0.422926f, -0.107761f, 0.899716f, + /*v:*/0.585938f, 0.547599f, 0.292807f, /*n:*/0.177587f, -0.060762f, 0.982208f, + /*v:*/0.562500f, 0.610099f, 0.300619f, /*n:*/0.294351f, 0.004639f, 0.955657f, + /*v:*/0.531250f, 0.594474f, 0.284994f, /*n:*/-0.142308f, -0.582629f, 0.800165f, + /*v:*/0.585938f, 0.547599f, 0.292807f, /*n:*/0.177587f, -0.060762f, 0.982208f, + /*v:*/0.531250f, 0.594474f, 0.284994f, /*n:*/-0.142308f, -0.582629f, 0.800165f, + /*v:*/0.554688f, 0.539787f, 0.277182f, /*n:*/-0.422926f, -0.107761f, 0.899716f, + /*v:*/-0.414062f, 0.649162f, 0.355307f, /*n:*/0.274056f, -0.855617f, 0.439100f, + /*v:*/-0.421875f, 0.656974f, 0.378744f, /*n:*/-0.088687f, -0.127171f, 0.987884f, + /*v:*/-0.531250f, 0.594474f, 0.284994f, /*n:*/0.142308f, -0.582629f, 0.800165f, + /*v:*/-0.421875f, 0.656974f, 0.378744f, /*n:*/-0.088687f, -0.127171f, 0.987884f, + /*v:*/-0.562500f, 0.610099f, 0.300619f, /*n:*/-0.294351f, 0.004639f, 0.955657f, + /*v:*/-0.531250f, 0.594474f, 0.284994f, /*n:*/0.142308f, -0.582629f, 0.800165f, + /*v:*/0.562500f, 0.610099f, 0.300619f, /*n:*/0.294351f, 0.004639f, 0.955657f, + /*v:*/0.421875f, 0.656974f, 0.378744f, /*n:*/0.088687f, -0.127171f, 0.987884f, + /*v:*/0.531250f, 0.594474f, 0.284994f, /*n:*/-0.142308f, -0.582629f, 0.800165f, + /*v:*/0.421875f, 0.656974f, 0.378744f, /*n:*/0.088687f, -0.127171f, 0.987884f, + /*v:*/0.414062f, 0.649162f, 0.355307f, /*n:*/-0.274056f, -0.855617f, 0.439100f, + /*v:*/0.531250f, 0.594474f, 0.284994f, /*n:*/-0.142308f, -0.582629f, 0.800165f, + /*v:*/-0.335938f, 0.664787f, 0.355307f, /*n:*/-0.113315f, -0.314188f, 0.942564f, + /*v:*/-0.335938f, 0.688224f, 0.363119f, /*n:*/-0.203619f, 0.103183f, 0.973571f, + /*v:*/-0.414062f, 0.649162f, 0.355307f, /*n:*/0.274056f, -0.855617f, 0.439100f, + /*v:*/-0.335938f, 0.688224f, 0.363119f, /*n:*/-0.203619f, 0.103183f, 0.973571f, + /*v:*/-0.421875f, 0.656974f, 0.378744f, /*n:*/-0.088687f, -0.127171f, 0.987884f, + /*v:*/-0.414062f, 0.649162f, 0.355307f, /*n:*/0.274056f, -0.855617f, 0.439100f, + /*v:*/0.421875f, 0.656974f, 0.378744f, /*n:*/0.088687f, -0.127171f, 0.987884f, + /*v:*/0.335938f, 0.688224f, 0.363119f, /*n:*/0.203619f, 0.103183f, 0.973571f, + /*v:*/0.414062f, 0.649162f, 0.355307f, /*n:*/-0.274056f, -0.855617f, 0.439100f, + /*v:*/0.335938f, 0.688224f, 0.363119f, /*n:*/0.203619f, 0.103183f, 0.973571f, + /*v:*/0.335938f, 0.664787f, 0.355307f, /*n:*/0.113315f, -0.314188f, 0.942564f, + /*v:*/0.414062f, 0.649162f, 0.355307f, /*n:*/-0.274056f, -0.855617f, 0.439100f, + /*v:*/-0.281250f, 0.656974f, 0.370932f, /*n:*/-0.174383f, -0.268319f, 0.947386f, + /*v:*/-0.273438f, 0.680412f, 0.378744f, /*n:*/-0.131504f, 0.064974f, 0.989166f, + /*v:*/-0.335938f, 0.688224f, 0.363119f, /*n:*/-0.203619f, 0.103183f, 0.973571f, + /*v:*/-0.281250f, 0.656974f, 0.370932f, /*n:*/-0.174383f, -0.268319f, 0.947386f, + /*v:*/-0.335938f, 0.688224f, 0.363119f, /*n:*/-0.203619f, 0.103183f, 0.973571f, + /*v:*/-0.335938f, 0.664787f, 0.355307f, /*n:*/-0.113315f, -0.314188f, 0.942564f, + /*v:*/0.335938f, 0.688224f, 0.363119f, /*n:*/0.203619f, 0.103183f, 0.973571f, + /*v:*/0.273438f, 0.680412f, 0.378744f, /*n:*/0.131504f, 0.064974f, 0.989166f, + /*v:*/0.281250f, 0.656974f, 0.370932f, /*n:*/0.174383f, -0.268319f, 0.947386f, + /*v:*/0.335938f, 0.688224f, 0.363119f, /*n:*/0.203619f, 0.103183f, 0.973571f, + /*v:*/0.281250f, 0.656974f, 0.370932f, /*n:*/0.174383f, -0.268319f, 0.947386f, + /*v:*/0.335938f, 0.664787f, 0.355307f, /*n:*/0.113315f, -0.314188f, 0.942564f, + /*v:*/-0.234375f, 0.617912f, 0.363119f, /*n:*/-0.463424f, -0.394910f, 0.793237f, + /*v:*/-0.210938f, 0.633537f, 0.386557f, /*n:*/-0.182958f, -0.102878f, 0.977691f, + /*v:*/-0.273438f, 0.680412f, 0.378744f, /*n:*/-0.131504f, 0.064974f, 0.989166f, + /*v:*/-0.234375f, 0.617912f, 0.363119f, /*n:*/-0.463424f, -0.394910f, 0.793237f, + /*v:*/-0.273438f, 0.680412f, 0.378744f, /*n:*/-0.131504f, 0.064974f, 0.989166f, + /*v:*/-0.281250f, 0.656974f, 0.370932f, /*n:*/-0.174383f, -0.268319f, 0.947386f, + /*v:*/0.273438f, 0.680412f, 0.378744f, /*n:*/0.131504f, 0.064974f, 0.989166f, + /*v:*/0.210938f, 0.633537f, 0.386557f, /*n:*/0.182958f, -0.102878f, 0.977691f, + /*v:*/0.234375f, 0.617912f, 0.363119f, /*n:*/0.463424f, -0.394910f, 0.793237f, + /*v:*/0.273438f, 0.680412f, 0.378744f, /*n:*/0.131504f, 0.064974f, 0.989166f, + /*v:*/0.234375f, 0.617912f, 0.363119f, /*n:*/0.463424f, -0.394910f, 0.793237f, + /*v:*/0.281250f, 0.656974f, 0.370932f, /*n:*/0.174383f, -0.268319f, 0.947386f, + /*v:*/-0.210938f, 0.633537f, 0.386557f, /*n:*/-0.182958f, -0.102878f, 0.977691f, + /*v:*/-0.164062f, 0.672599f, 0.378744f, /*n:*/-0.367840f, -0.283608f, 0.885556f, + /*v:*/-0.250000f, 0.727287f, 0.363119f, /*n:*/-0.258156f, -0.126499f, 0.957762f, + /*v:*/-0.210938f, 0.633537f, 0.386557f, /*n:*/-0.182958f, -0.102878f, 0.977691f, + /*v:*/-0.250000f, 0.727287f, 0.363119f, /*n:*/-0.258156f, -0.126499f, 0.957762f, + /*v:*/-0.273438f, 0.680412f, 0.378744f, /*n:*/-0.131504f, 0.064974f, 0.989166f, + /*v:*/0.250000f, 0.727287f, 0.363119f, /*n:*/0.258156f, -0.126499f, 0.957762f, + /*v:*/0.164062f, 0.672599f, 0.378744f, /*n:*/0.367840f, -0.283608f, 0.885556f, + /*v:*/0.210938f, 0.633537f, 0.386557f, /*n:*/0.182958f, -0.102878f, 0.977691f, + /*v:*/0.250000f, 0.727287f, 0.363119f, /*n:*/0.258156f, -0.126499f, 0.957762f, + /*v:*/0.210938f, 0.633537f, 0.386557f, /*n:*/0.182958f, -0.102878f, 0.977691f, + /*v:*/0.273438f, 0.680412f, 0.378744f, /*n:*/0.131504f, 0.064974f, 0.989166f, + /*v:*/-0.273438f, 0.680412f, 0.378744f, /*n:*/-0.131504f, 0.064974f, 0.989166f, + /*v:*/-0.250000f, 0.727287f, 0.363119f, /*n:*/-0.258156f, -0.126499f, 0.957762f, + /*v:*/-0.328125f, 0.735099f, 0.347494f, /*n:*/-0.149022f, -0.154149f, 0.976714f, + /*v:*/-0.273438f, 0.680412f, 0.378744f, /*n:*/-0.131504f, 0.064974f, 0.989166f, + /*v:*/-0.328125f, 0.735099f, 0.347494f, /*n:*/-0.149022f, -0.154149f, 0.976714f, + /*v:*/-0.335938f, 0.688224f, 0.363119f, /*n:*/-0.203619f, 0.103183f, 0.973571f, + /*v:*/0.328125f, 0.735099f, 0.347494f, /*n:*/0.149022f, -0.154149f, 0.976714f, + /*v:*/0.250000f, 0.727287f, 0.363119f, /*n:*/0.258156f, -0.126499f, 0.957762f, + /*v:*/0.273438f, 0.680412f, 0.378744f, /*n:*/0.131504f, 0.064974f, 0.989166f, + /*v:*/0.328125f, 0.735099f, 0.347494f, /*n:*/0.149022f, -0.154149f, 0.976714f, + /*v:*/0.273438f, 0.680412f, 0.378744f, /*n:*/0.131504f, 0.064974f, 0.989166f, + /*v:*/0.335938f, 0.688224f, 0.363119f, /*n:*/0.203619f, 0.103183f, 0.973571f, + /*v:*/-0.335938f, 0.688224f, 0.363119f, /*n:*/-0.203619f, 0.103183f, 0.973571f, + /*v:*/-0.328125f, 0.735099f, 0.347494f, /*n:*/-0.149022f, -0.154149f, 0.976714f, + /*v:*/-0.429688f, 0.696037f, 0.324057f, /*n:*/-0.219001f, 0.037141f, 0.975005f, + /*v:*/-0.335938f, 0.688224f, 0.363119f, /*n:*/-0.203619f, 0.103183f, 0.973571f, + /*v:*/-0.429688f, 0.696037f, 0.324057f, /*n:*/-0.219001f, 0.037141f, 0.975005f, + /*v:*/-0.421875f, 0.656974f, 0.378744f, /*n:*/-0.088687f, -0.127171f, 0.987884f, + /*v:*/0.429688f, 0.696037f, 0.324057f, /*n:*/0.219001f, 0.037141f, 0.975005f, + /*v:*/0.328125f, 0.735099f, 0.347494f, /*n:*/0.149022f, -0.154149f, 0.976714f, + /*v:*/0.335938f, 0.688224f, 0.363119f, /*n:*/0.203619f, 0.103183f, 0.973571f, + /*v:*/0.429688f, 0.696037f, 0.324057f, /*n:*/0.219001f, 0.037141f, 0.975005f, + /*v:*/0.335938f, 0.688224f, 0.363119f, /*n:*/0.203619f, 0.103183f, 0.973571f, + /*v:*/0.421875f, 0.656974f, 0.378744f, /*n:*/0.088687f, -0.127171f, 0.987884f, + /*v:*/-0.421875f, 0.656974f, 0.378744f, /*n:*/-0.088687f, -0.127171f, 0.987884f, + /*v:*/-0.429688f, 0.696037f, 0.324057f, /*n:*/-0.219001f, 0.037141f, 0.975005f, + /*v:*/-0.562500f, 0.610099f, 0.300619f, /*n:*/-0.294351f, 0.004639f, 0.955657f, + /*v:*/-0.429688f, 0.696037f, 0.324057f, /*n:*/-0.219001f, 0.037141f, 0.975005f, + /*v:*/-0.601562f, 0.633537f, 0.269369f, /*n:*/-0.225410f, -0.360759f, 0.904996f, + /*v:*/-0.562500f, 0.610099f, 0.300619f, /*n:*/-0.294351f, 0.004639f, 0.955657f, + /*v:*/0.601562f, 0.633537f, 0.269369f, /*n:*/0.225410f, -0.360759f, 0.904996f, + /*v:*/0.429688f, 0.696037f, 0.324057f, /*n:*/0.219001f, 0.037141f, 0.975005f, + /*v:*/0.562500f, 0.610099f, 0.300619f, /*n:*/0.294351f, 0.004639f, 0.955657f, + /*v:*/0.429688f, 0.696037f, 0.324057f, /*n:*/0.219001f, 0.037141f, 0.975005f, + /*v:*/0.421875f, 0.656974f, 0.378744f, /*n:*/0.088687f, -0.127171f, 0.987884f, + /*v:*/0.562500f, 0.610099f, 0.300619f, /*n:*/0.294351f, 0.004639f, 0.955657f, + /*v:*/-0.562500f, 0.610099f, 0.300619f, /*n:*/-0.294351f, 0.004639f, 0.955657f, + /*v:*/-0.601562f, 0.633537f, 0.269369f, /*n:*/-0.225410f, -0.360759f, 0.904996f, + /*v:*/-0.585938f, 0.547599f, 0.292807f, /*n:*/-0.177587f, -0.060762f, 0.982208f, + /*v:*/-0.601562f, 0.633537f, 0.269369f, /*n:*/-0.225410f, -0.360759f, 0.904996f, + /*v:*/-0.640625f, 0.555412f, 0.253744f, /*n:*/-0.358806f, -0.119175f, 0.925748f, + /*v:*/-0.585938f, 0.547599f, 0.292807f, /*n:*/-0.177587f, -0.060762f, 0.982208f, + /*v:*/0.640625f, 0.555412f, 0.253744f, /*n:*/0.358806f, -0.119175f, 0.925748f, + /*v:*/0.601562f, 0.633537f, 0.269369f, /*n:*/0.225410f, -0.360759f, 0.904996f, + /*v:*/0.585938f, 0.547599f, 0.292807f, /*n:*/0.177587f, -0.060762f, 0.982208f, + /*v:*/0.601562f, 0.633537f, 0.269369f, /*n:*/0.225410f, -0.360759f, 0.904996f, + /*v:*/0.562500f, 0.610099f, 0.300619f, /*n:*/0.294351f, 0.004639f, 0.955657f, + /*v:*/0.585938f, 0.547599f, 0.292807f, /*n:*/0.177587f, -0.060762f, 0.982208f, + /*v:*/-0.585938f, 0.547599f, 0.292807f, /*n:*/-0.177587f, -0.060762f, 0.982208f, + /*v:*/-0.640625f, 0.555412f, 0.253744f, /*n:*/-0.358806f, -0.119175f, 0.925748f, + /*v:*/-0.625000f, 0.446037f, 0.253744f, /*n:*/-0.460219f, -0.165105f, 0.872280f, + /*v:*/-0.585938f, 0.547599f, 0.292807f, /*n:*/-0.177587f, -0.060762f, 0.982208f, + /*v:*/-0.625000f, 0.446037f, 0.253744f, /*n:*/-0.460219f, -0.165105f, 0.872280f, + /*v:*/-0.578125f, 0.453849f, 0.284994f, /*n:*/-0.294290f, -0.102023f, 0.950224f, + /*v:*/0.625000f, 0.446037f, 0.253744f, /*n:*/0.460219f, -0.165105f, 0.872280f, + /*v:*/0.640625f, 0.555412f, 0.253744f, /*n:*/0.358806f, -0.119175f, 0.925748f, + /*v:*/0.585938f, 0.547599f, 0.292807f, /*n:*/0.177587f, -0.060762f, 0.982208f, + /*v:*/0.625000f, 0.446037f, 0.253744f, /*n:*/0.460219f, -0.165105f, 0.872280f, + /*v:*/0.585938f, 0.547599f, 0.292807f, /*n:*/0.177587f, -0.060762f, 0.982208f, + /*v:*/0.578125f, 0.453849f, 0.284994f, /*n:*/0.294290f, -0.102023f, 0.950224f, + /*v:*/-0.578125f, 0.453849f, 0.284994f, /*n:*/-0.294290f, -0.102023f, 0.950224f, + /*v:*/-0.625000f, 0.446037f, 0.253744f, /*n:*/-0.460219f, -0.165105f, 0.872280f, + /*v:*/-0.492188f, 0.321037f, 0.277182f, /*n:*/-0.427900f, -0.389508f, 0.815577f, + /*v:*/-0.578125f, 0.453849f, 0.284994f, /*n:*/-0.294290f, -0.102023f, 0.950224f, + /*v:*/-0.492188f, 0.321037f, 0.277182f, /*n:*/-0.427900f, -0.389508f, 0.815577f, + /*v:*/-0.476562f, 0.360099f, 0.324057f, /*n:*/-0.298990f, -0.035615f, 0.953581f, + /*v:*/0.492188f, 0.321037f, 0.277182f, /*n:*/0.427900f, -0.389508f, 0.815577f, + /*v:*/0.625000f, 0.446037f, 0.253744f, /*n:*/0.460219f, -0.165105f, 0.872280f, + /*v:*/0.578125f, 0.453849f, 0.284994f, /*n:*/0.294290f, -0.102023f, 0.950224f, + /*v:*/0.492188f, 0.321037f, 0.277182f, /*n:*/0.427900f, -0.389508f, 0.815577f, + /*v:*/0.578125f, 0.453849f, 0.284994f, /*n:*/0.294290f, -0.102023f, 0.950224f, + /*v:*/0.476562f, 0.360099f, 0.324057f, /*n:*/0.298990f, -0.035615f, 0.953581f, + /*v:*/-0.476562f, 0.360099f, 0.324057f, /*n:*/-0.298990f, -0.035615f, 0.953581f, + /*v:*/-0.492188f, 0.321037f, 0.277182f, /*n:*/-0.427900f, -0.389508f, 0.815577f, + /*v:*/-0.375000f, 0.274162f, 0.308432f, /*n:*/-0.158940f, -0.498917f, 0.851924f, + /*v:*/-0.476562f, 0.360099f, 0.324057f, /*n:*/-0.298990f, -0.035615f, 0.953581f, + /*v:*/-0.375000f, 0.274162f, 0.308432f, /*n:*/-0.158940f, -0.498917f, 0.851924f, + /*v:*/-0.375000f, 0.321037f, 0.347494f, /*n:*/-0.184454f, -0.186316f, 0.964995f, + /*v:*/0.375000f, 0.274162f, 0.308432f, /*n:*/0.158940f, -0.498917f, 0.851924f, + /*v:*/0.492188f, 0.321037f, 0.277182f, /*n:*/0.427900f, -0.389508f, 0.815577f, + /*v:*/0.476562f, 0.360099f, 0.324057f, /*n:*/0.298990f, -0.035615f, 0.953581f, + /*v:*/0.375000f, 0.274162f, 0.308432f, /*n:*/0.158940f, -0.498917f, 0.851924f, + /*v:*/0.476562f, 0.360099f, 0.324057f, /*n:*/0.298990f, -0.035615f, 0.953581f, + /*v:*/0.375000f, 0.321037f, 0.347494f, /*n:*/0.184454f, -0.186316f, 0.964995f, + /*v:*/-0.375000f, 0.321037f, 0.347494f, /*n:*/-0.184454f, -0.186316f, 0.964995f, + /*v:*/-0.375000f, 0.274162f, 0.308432f, /*n:*/-0.158940f, -0.498917f, 0.851924f, + /*v:*/-0.203125f, 0.352287f, 0.347494f, /*n:*/0.128178f, -0.292001f, 0.947752f, + /*v:*/-0.375000f, 0.321037f, 0.347494f, /*n:*/-0.184454f, -0.186316f, 0.964995f, + /*v:*/-0.203125f, 0.352287f, 0.347494f, /*n:*/0.128178f, -0.292001f, 0.947752f, + /*v:*/-0.226562f, 0.367912f, 0.386557f, /*n:*/0.031709f, -0.219794f, 0.975005f, + /*v:*/0.203125f, 0.352287f, 0.347494f, /*n:*/-0.128178f, -0.292001f, 0.947752f, + /*v:*/0.375000f, 0.274162f, 0.308432f, /*n:*/0.158940f, -0.498917f, 0.851924f, + /*v:*/0.375000f, 0.321037f, 0.347494f, /*n:*/0.184454f, -0.186316f, 0.964995f, + /*v:*/0.203125f, 0.352287f, 0.347494f, /*n:*/-0.128178f, -0.292001f, 0.947752f, + /*v:*/0.375000f, 0.321037f, 0.347494f, /*n:*/0.184454f, -0.186316f, 0.964995f, + /*v:*/0.226562f, 0.367912f, 0.386557f, /*n:*/-0.031709f, -0.219794f, 0.975005f, + /*v:*/-0.226562f, 0.367912f, 0.386557f, /*n:*/0.031709f, -0.219794f, 0.975005f, + /*v:*/-0.203125f, 0.352287f, 0.347494f, /*n:*/0.128178f, -0.292001f, 0.947752f, + /*v:*/-0.187500f, 0.414787f, 0.378744f, /*n:*/0.010102f, -0.069979f, 0.997467f, + /*v:*/-0.203125f, 0.352287f, 0.347494f, /*n:*/0.128178f, -0.292001f, 0.947752f, + /*v:*/-0.164062f, 0.399162f, 0.355307f, /*n:*/0.239296f, -0.301187f, 0.923032f, + /*v:*/-0.187500f, 0.414787f, 0.378744f, /*n:*/0.010102f, -0.069979f, 0.997467f, + /*v:*/0.164062f, 0.399162f, 0.355307f, /*n:*/-0.239296f, -0.301187f, 0.923032f, + /*v:*/0.203125f, 0.352287f, 0.347494f, /*n:*/-0.128178f, -0.292001f, 0.947752f, + /*v:*/0.187500f, 0.414787f, 0.378744f, /*n:*/-0.010102f, -0.069979f, 0.997467f, + /*v:*/0.203125f, 0.352287f, 0.347494f, /*n:*/-0.128178f, -0.292001f, 0.947752f, + /*v:*/0.226562f, 0.367912f, 0.386557f, /*n:*/-0.031709f, -0.219794f, 0.975005f, + /*v:*/0.187500f, 0.414787f, 0.378744f, /*n:*/-0.010102f, -0.069979f, 0.997467f, + /*v:*/-0.179688f, 0.555412f, 0.386557f, /*n:*/-0.293405f, -0.060152f, 0.954070f, + /*v:*/-0.125000f, 0.563224f, 0.370932f, /*n:*/-0.031587f, -0.178167f, 0.983459f, + /*v:*/-0.210938f, 0.633537f, 0.386557f, /*n:*/-0.182958f, -0.102878f, 0.977691f, + /*v:*/-0.125000f, 0.563224f, 0.370932f, /*n:*/-0.031587f, -0.178167f, 0.983459f, + /*v:*/-0.164062f, 0.672599f, 0.378744f, /*n:*/-0.367840f, -0.283608f, 0.885556f, + /*v:*/-0.210938f, 0.633537f, 0.386557f, /*n:*/-0.182958f, -0.102878f, 0.977691f, + /*v:*/0.164062f, 0.672599f, 0.378744f, /*n:*/0.367840f, -0.283608f, 0.885556f, + /*v:*/0.125000f, 0.563224f, 0.370932f, /*n:*/0.031587f, -0.178167f, 0.983459f, + /*v:*/0.210938f, 0.633537f, 0.386557f, /*n:*/0.182958f, -0.102878f, 0.977691f, + /*v:*/0.125000f, 0.563224f, 0.370932f, /*n:*/0.031587f, -0.178167f, 0.983459f, + /*v:*/0.179688f, 0.555412f, 0.386557f, /*n:*/0.293405f, -0.060152f, 0.954070f, + /*v:*/0.210938f, 0.633537f, 0.386557f, /*n:*/0.182958f, -0.102878f, 0.977691f, + /*v:*/-0.171875f, 0.477287f, 0.386557f, /*n:*/-0.158055f, -0.084231f, 0.983825f, + /*v:*/-0.132812f, 0.469474f, 0.363119f, /*n:*/0.200568f, -0.134953f, 0.970306f, + /*v:*/-0.125000f, 0.563224f, 0.370932f, /*n:*/-0.031587f, -0.178167f, 0.983459f, + /*v:*/-0.171875f, 0.477287f, 0.386557f, /*n:*/-0.158055f, -0.084231f, 0.983825f, + /*v:*/-0.125000f, 0.563224f, 0.370932f, /*n:*/-0.031587f, -0.178167f, 0.983459f, + /*v:*/-0.179688f, 0.555412f, 0.386557f, /*n:*/-0.293405f, -0.060152f, 0.954070f, + /*v:*/0.125000f, 0.563224f, 0.370932f, /*n:*/0.031587f, -0.178167f, 0.983459f, + /*v:*/0.132812f, 0.469474f, 0.363119f, /*n:*/-0.200568f, -0.134953f, 0.970306f, + /*v:*/0.171875f, 0.477287f, 0.386557f, /*n:*/0.158055f, -0.084231f, 0.983825f, + /*v:*/0.125000f, 0.563224f, 0.370932f, /*n:*/0.031587f, -0.178167f, 0.983459f, + /*v:*/0.171875f, 0.477287f, 0.386557f, /*n:*/0.158055f, -0.084231f, 0.983825f, + /*v:*/0.179688f, 0.555412f, 0.386557f, /*n:*/0.293405f, -0.060152f, 0.954070f, + /*v:*/-0.187500f, 0.414787f, 0.378744f, /*n:*/0.010102f, -0.069979f, 0.997467f, + /*v:*/-0.164062f, 0.399162f, 0.355307f, /*n:*/0.239296f, -0.301187f, 0.923032f, + /*v:*/-0.132812f, 0.469474f, 0.363119f, /*n:*/0.200568f, -0.134953f, 0.970306f, + /*v:*/-0.187500f, 0.414787f, 0.378744f, /*n:*/0.010102f, -0.069979f, 0.997467f, + /*v:*/-0.132812f, 0.469474f, 0.363119f, /*n:*/0.200568f, -0.134953f, 0.970306f, + /*v:*/-0.171875f, 0.477287f, 0.386557f, /*n:*/-0.158055f, -0.084231f, 0.983825f, + /*v:*/0.132812f, 0.469474f, 0.363119f, /*n:*/-0.200568f, -0.134953f, 0.970306f, + /*v:*/0.164062f, 0.399162f, 0.355307f, /*n:*/-0.239296f, -0.301187f, 0.923032f, + /*v:*/0.187500f, 0.414787f, 0.378744f, /*n:*/-0.010102f, -0.069979f, 0.997467f, + /*v:*/0.132812f, 0.469474f, 0.363119f, /*n:*/-0.200568f, -0.134953f, 0.970306f, + /*v:*/0.187500f, 0.414787f, 0.378744f, /*n:*/-0.010102f, -0.069979f, 0.997467f, + /*v:*/0.171875f, 0.477287f, 0.386557f, /*n:*/0.158055f, -0.084231f, 0.983825f, + /*v:*/-0.046875f, -0.593026f, 0.238120f, /*n:*/0.295846f, 0.474960f, 0.828761f, + /*v:*/0.000000f, -0.600838f, 0.238120f, /*n:*/0.000000f, 0.533403f, 0.845851f, + /*v:*/0.000000f, -0.522713f, 0.261557f, /*n:*/0.000000f, -0.698935f, 0.715171f, + /*v:*/-0.046875f, -0.593026f, 0.238120f, /*n:*/0.295846f, 0.474960f, 0.828761f, + /*v:*/0.000000f, -0.522713f, 0.261557f, /*n:*/0.000000f, -0.698935f, 0.715171f, + /*v:*/-0.093750f, -0.491463f, 0.269370f, /*n:*/0.517655f, -0.704123f, 0.486007f, + /*v:*/0.000000f, -0.522713f, 0.261557f, /*n:*/0.000000f, -0.698935f, 0.715171f, + /*v:*/0.000000f, -0.600838f, 0.238120f, /*n:*/0.000000f, 0.533403f, 0.845851f, + /*v:*/0.046875f, -0.593026f, 0.238120f, /*n:*/-0.295846f, 0.474960f, 0.828761f, + /*v:*/0.000000f, -0.522713f, 0.261557f, /*n:*/0.000000f, -0.698935f, 0.715171f, + /*v:*/0.046875f, -0.593026f, 0.238120f, /*n:*/-0.295846f, 0.474960f, 0.828761f, + /*v:*/0.093750f, -0.491463f, 0.269370f, /*n:*/-0.517655f, -0.704123f, 0.486007f, + /*v:*/0.000000f, -0.522713f, 0.261557f, /*n:*/0.000000f, -0.698935f, 0.715171f, + /*v:*/0.000000f, -0.514901f, 0.324057f, /*n:*/0.000000f, -0.961943f, 0.273232f, + /*v:*/-0.093750f, -0.491463f, 0.269370f, /*n:*/0.517655f, -0.704123f, 0.486007f, + /*v:*/0.000000f, -0.514901f, 0.324057f, /*n:*/0.000000f, -0.961943f, 0.273232f, + /*v:*/-0.093750f, -0.483651f, 0.331870f, /*n:*/0.136845f, -0.527268f, 0.838588f, + /*v:*/-0.093750f, -0.491463f, 0.269370f, /*n:*/0.517655f, -0.704123f, 0.486007f, + /*v:*/0.093750f, -0.483651f, 0.331870f, /*n:*/-0.136845f, -0.527268f, 0.838588f, + /*v:*/0.000000f, -0.514901f, 0.324057f, /*n:*/0.000000f, -0.961943f, 0.273232f, + /*v:*/0.093750f, -0.491463f, 0.269370f, /*n:*/-0.517655f, -0.704123f, 0.486007f, + /*v:*/0.000000f, -0.514901f, 0.324057f, /*n:*/0.000000f, -0.961943f, 0.273232f, + /*v:*/0.000000f, -0.522713f, 0.261557f, /*n:*/0.000000f, -0.698935f, 0.715171f, + /*v:*/0.093750f, -0.491463f, 0.269370f, /*n:*/-0.517655f, -0.704123f, 0.486007f, + /*v:*/-0.093750f, -0.491463f, 0.269370f, /*n:*/0.517655f, -0.704123f, 0.486007f, + /*v:*/-0.093750f, -0.483651f, 0.331870f, /*n:*/0.136845f, -0.527268f, 0.838588f, + /*v:*/-0.093750f, -0.561776f, 0.316245f, /*n:*/0.635121f, 0.042756f, 0.771203f, + /*v:*/-0.093750f, -0.491463f, 0.269370f, /*n:*/0.517655f, -0.704123f, 0.486007f, + /*v:*/-0.093750f, -0.561776f, 0.316245f, /*n:*/0.635121f, 0.042756f, 0.771203f, + /*v:*/-0.093750f, -0.553963f, 0.245932f, /*n:*/0.673757f, 0.115452f, 0.729850f, + /*v:*/0.093750f, -0.561776f, 0.316245f, /*n:*/-0.635121f, 0.042756f, 0.771203f, + /*v:*/0.093750f, -0.483651f, 0.331870f, /*n:*/-0.136845f, -0.527268f, 0.838588f, + /*v:*/0.093750f, -0.491463f, 0.269370f, /*n:*/-0.517655f, -0.704123f, 0.486007f, + /*v:*/0.093750f, -0.561776f, 0.316245f, /*n:*/-0.635121f, 0.042756f, 0.771203f, + /*v:*/0.093750f, -0.491463f, 0.269370f, /*n:*/-0.517655f, -0.704123f, 0.486007f, + /*v:*/0.093750f, -0.553963f, 0.245932f, /*n:*/-0.673757f, 0.115452f, 0.729850f, + /*v:*/-0.093750f, -0.553963f, 0.245932f, /*n:*/0.673757f, 0.115452f, 0.729850f, + /*v:*/-0.093750f, -0.561776f, 0.316245f, /*n:*/0.635121f, 0.042756f, 0.771203f, + /*v:*/-0.046875f, -0.608651f, 0.292807f, /*n:*/0.414106f, 0.579821f, 0.701621f, + /*v:*/-0.093750f, -0.553963f, 0.245932f, /*n:*/0.673757f, 0.115452f, 0.729850f, + /*v:*/-0.046875f, -0.608651f, 0.292807f, /*n:*/0.414106f, 0.579821f, 0.701621f, + /*v:*/-0.046875f, -0.593026f, 0.238120f, /*n:*/0.295846f, 0.474960f, 0.828761f, + /*v:*/0.046875f, -0.608651f, 0.292807f, /*n:*/-0.414106f, 0.579821f, 0.701621f, + /*v:*/0.093750f, -0.561776f, 0.316245f, /*n:*/-0.635121f, 0.042756f, 0.771203f, + /*v:*/0.093750f, -0.553963f, 0.245932f, /*n:*/-0.673757f, 0.115452f, 0.729850f, + /*v:*/0.046875f, -0.608651f, 0.292807f, /*n:*/-0.414106f, 0.579821f, 0.701621f, + /*v:*/0.093750f, -0.553963f, 0.245932f, /*n:*/-0.673757f, 0.115452f, 0.729850f, + /*v:*/0.046875f, -0.593026f, 0.238120f, /*n:*/-0.295846f, 0.474960f, 0.828761f, + /*v:*/-0.046875f, -0.593026f, 0.238120f, /*n:*/0.295846f, 0.474960f, 0.828761f, + /*v:*/-0.046875f, -0.608651f, 0.292807f, /*n:*/0.414106f, 0.579821f, 0.701621f, + /*v:*/0.000000f, -0.600838f, 0.238120f, /*n:*/0.000000f, 0.533403f, 0.845851f, + /*v:*/-0.046875f, -0.608651f, 0.292807f, /*n:*/0.414106f, 0.579821f, 0.701621f, + /*v:*/0.000000f, -0.616463f, 0.292807f, /*n:*/0.000000f, 0.558763f, 0.829310f, + /*v:*/0.000000f, -0.600838f, 0.238120f, /*n:*/0.000000f, 0.533403f, 0.845851f, + /*v:*/0.000000f, -0.616463f, 0.292807f, /*n:*/0.000000f, 0.558763f, 0.829310f, + /*v:*/0.046875f, -0.608651f, 0.292807f, /*n:*/-0.414106f, 0.579821f, 0.701621f, + /*v:*/0.000000f, -0.600838f, 0.238120f, /*n:*/0.000000f, 0.533403f, 0.845851f, + /*v:*/0.046875f, -0.608651f, 0.292807f, /*n:*/-0.414106f, 0.579821f, 0.701621f, + /*v:*/0.046875f, -0.593026f, 0.238120f, /*n:*/-0.295846f, 0.474960f, 0.828761f, + /*v:*/0.000000f, -0.600838f, 0.238120f, /*n:*/0.000000f, 0.533403f, 0.845851f, + /*v:*/-0.046875f, -0.608651f, 0.292807f, /*n:*/0.414106f, 0.579821f, 0.701621f, + /*v:*/-0.062500f, -0.624276f, 0.300620f, /*n:*/0.058870f, -0.378430f, 0.923734f, + /*v:*/0.000000f, -0.632088f, 0.292807f, /*n:*/0.000000f, -0.346507f, 0.938017f, + /*v:*/-0.046875f, -0.608651f, 0.292807f, /*n:*/0.414106f, 0.579821f, 0.701621f, + /*v:*/0.000000f, -0.632088f, 0.292807f, /*n:*/0.000000f, -0.346507f, 0.938017f, + /*v:*/0.000000f, -0.616463f, 0.292807f, /*n:*/0.000000f, 0.558763f, 0.829310f, + /*v:*/0.000000f, -0.632088f, 0.292807f, /*n:*/0.000000f, -0.346507f, 0.938017f, + /*v:*/0.062500f, -0.624276f, 0.300620f, /*n:*/-0.058870f, -0.378430f, 0.923734f, + /*v:*/0.046875f, -0.608651f, 0.292807f, /*n:*/-0.414106f, 0.579821f, 0.701621f, + /*v:*/0.000000f, -0.632088f, 0.292807f, /*n:*/0.000000f, -0.346507f, 0.938017f, + /*v:*/0.046875f, -0.608651f, 0.292807f, /*n:*/-0.414106f, 0.579821f, 0.701621f, + /*v:*/0.000000f, -0.616463f, 0.292807f, /*n:*/0.000000f, 0.558763f, 0.829310f, + /*v:*/-0.093750f, -0.561776f, 0.316245f, /*n:*/0.635121f, 0.042756f, 0.771203f, + /*v:*/-0.117188f, -0.577401f, 0.316245f, /*n:*/-0.130711f, -0.318644f, 0.938810f, + /*v:*/-0.062500f, -0.624276f, 0.300620f, /*n:*/0.058870f, -0.378430f, 0.923734f, + /*v:*/-0.093750f, -0.561776f, 0.316245f, /*n:*/0.635121f, 0.042756f, 0.771203f, + /*v:*/-0.062500f, -0.624276f, 0.300620f, /*n:*/0.058870f, -0.378430f, 0.923734f, + /*v:*/-0.046875f, -0.608651f, 0.292807f, /*n:*/0.414106f, 0.579821f, 0.701621f, + /*v:*/0.062500f, -0.624276f, 0.300620f, /*n:*/-0.058870f, -0.378430f, 0.923734f, + /*v:*/0.117188f, -0.577401f, 0.316245f, /*n:*/0.130711f, -0.318644f, 0.938810f, + /*v:*/0.093750f, -0.561776f, 0.316245f, /*n:*/-0.635121f, 0.042756f, 0.771203f, + /*v:*/0.062500f, -0.624276f, 0.300620f, /*n:*/-0.058870f, -0.378430f, 0.923734f, + /*v:*/0.093750f, -0.561776f, 0.316245f, /*n:*/-0.635121f, 0.042756f, 0.771203f, + /*v:*/0.046875f, -0.608651f, 0.292807f, /*n:*/-0.414106f, 0.579821f, 0.701621f, + /*v:*/-0.093750f, -0.483651f, 0.331870f, /*n:*/0.136845f, -0.527268f, 0.838588f, + /*v:*/-0.109375f, -0.460213f, 0.339682f, /*n:*/-0.145940f, -0.120182f, 0.981933f, + /*v:*/-0.117188f, -0.577401f, 0.316245f, /*n:*/-0.130711f, -0.318644f, 0.938810f, + /*v:*/-0.093750f, -0.483651f, 0.331870f, /*n:*/0.136845f, -0.527268f, 0.838588f, + /*v:*/-0.117188f, -0.577401f, 0.316245f, /*n:*/-0.130711f, -0.318644f, 0.938810f, + /*v:*/-0.093750f, -0.561776f, 0.316245f, /*n:*/0.635121f, 0.042756f, 0.771203f, + /*v:*/0.117188f, -0.577401f, 0.316245f, /*n:*/0.130711f, -0.318644f, 0.938810f, + /*v:*/0.109375f, -0.460213f, 0.339682f, /*n:*/0.145940f, -0.120182f, 0.981933f, + /*v:*/0.093750f, -0.483651f, 0.331870f, /*n:*/-0.136845f, -0.527268f, 0.838588f, + /*v:*/0.117188f, -0.577401f, 0.316245f, /*n:*/0.130711f, -0.318644f, 0.938810f, + /*v:*/0.093750f, -0.483651f, 0.331870f, /*n:*/-0.136845f, -0.527268f, 0.838588f, + /*v:*/0.093750f, -0.561776f, 0.316245f, /*n:*/-0.635121f, 0.042756f, 0.771203f, + /*v:*/0.000000f, -0.514901f, 0.324057f, /*n:*/0.000000f, -0.961943f, 0.273232f, + /*v:*/0.000000f, -0.507088f, 0.339682f, /*n:*/0.000000f, -0.586963f, 0.809595f, + /*v:*/-0.093750f, -0.483651f, 0.331870f, /*n:*/0.136845f, -0.527268f, 0.838588f, + /*v:*/0.000000f, -0.507088f, 0.339682f, /*n:*/0.000000f, -0.586963f, 0.809595f, + /*v:*/-0.109375f, -0.460213f, 0.339682f, /*n:*/-0.145940f, -0.120182f, 0.981933f, + /*v:*/-0.093750f, -0.483651f, 0.331870f, /*n:*/0.136845f, -0.527268f, 0.838588f, + /*v:*/0.109375f, -0.460213f, 0.339682f, /*n:*/0.145940f, -0.120182f, 0.981933f, + /*v:*/0.000000f, -0.507088f, 0.339682f, /*n:*/0.000000f, -0.586963f, 0.809595f, + /*v:*/0.093750f, -0.483651f, 0.331870f, /*n:*/-0.136845f, -0.527268f, 0.838588f, + /*v:*/0.000000f, -0.507088f, 0.339682f, /*n:*/0.000000f, -0.586963f, 0.809595f, + /*v:*/0.000000f, -0.514901f, 0.324057f, /*n:*/0.000000f, -0.961943f, 0.273232f, + /*v:*/0.093750f, -0.483651f, 0.331870f, /*n:*/-0.136845f, -0.527268f, 0.838588f, + /*v:*/-0.164062f, 0.016349f, 0.316244f, /*n:*/-0.775140f, 0.038667f, 0.630573f, + /*v:*/-0.125000f, 0.156974f, 0.417807f, /*n:*/-0.056093f, -0.263863f, 0.962920f, + /*v:*/-0.203125f, 0.071037f, 0.167807f, /*n:*/-0.891537f, -0.330668f, 0.309458f, + /*v:*/-0.164062f, 0.016349f, 0.316244f, /*n:*/-0.775140f, 0.038667f, 0.630573f, + /*v:*/-0.203125f, 0.071037f, 0.167807f, /*n:*/-0.891537f, -0.330668f, 0.309458f, + /*v:*/-0.234375f, 0.008537f, 0.159994f, /*n:*/-0.930601f, 0.343516f, 0.126347f, + /*v:*/0.203125f, 0.071037f, 0.167807f, /*n:*/0.891537f, -0.330668f, 0.309458f, + /*v:*/0.125000f, 0.156974f, 0.417807f, /*n:*/0.056093f, -0.263863f, 0.962920f, + /*v:*/0.164062f, 0.016349f, 0.316244f, /*n:*/0.775140f, 0.038667f, 0.630573f, + /*v:*/0.203125f, 0.071037f, 0.167807f, /*n:*/0.891537f, -0.330668f, 0.309458f, + /*v:*/0.164062f, 0.016349f, 0.316244f, /*n:*/0.775140f, 0.038667f, 0.630573f, + /*v:*/0.234375f, 0.008537f, 0.159994f, /*n:*/0.930601f, 0.343516f, 0.126347f, + /*v:*/-0.164062f, 0.016349f, 0.316244f, /*n:*/-0.775140f, 0.038667f, 0.630573f, + /*v:*/-0.234375f, 0.008537f, 0.159994f, /*n:*/-0.930601f, 0.343516f, 0.126347f, + /*v:*/-0.179688f, -0.053963f, 0.316244f, /*n:*/-0.650655f, 0.148747f, 0.744652f, + /*v:*/-0.234375f, 0.008537f, 0.159994f, /*n:*/-0.930601f, 0.343516f, 0.126347f, + /*v:*/-0.257812f, -0.053963f, 0.159994f, /*n:*/-0.927763f, 0.353008f, 0.120884f, + /*v:*/-0.179688f, -0.053963f, 0.316244f, /*n:*/-0.650655f, 0.148747f, 0.744652f, + /*v:*/0.257812f, -0.053963f, 0.159994f, /*n:*/0.927763f, 0.353008f, 0.120884f, + /*v:*/0.234375f, 0.008537f, 0.159994f, /*n:*/0.930601f, 0.343516f, 0.126347f, + /*v:*/0.179688f, -0.053963f, 0.316244f, /*n:*/0.650655f, 0.148747f, 0.744652f, + /*v:*/0.234375f, 0.008537f, 0.159994f, /*n:*/0.930601f, 0.343516f, 0.126347f, + /*v:*/0.164062f, 0.016349f, 0.316244f, /*n:*/0.775140f, 0.038667f, 0.630573f, + /*v:*/0.179688f, -0.053963f, 0.316244f, /*n:*/0.650655f, 0.148747f, 0.744652f, + /*v:*/-0.179688f, -0.053963f, 0.316244f, /*n:*/-0.650655f, 0.148747f, 0.744652f, + /*v:*/-0.257812f, -0.053963f, 0.159994f, /*n:*/-0.927763f, 0.353008f, 0.120884f, + /*v:*/-0.210938f, -0.186776f, 0.316244f, /*n:*/-0.593677f, 0.108158f, 0.797388f, + /*v:*/-0.257812f, -0.053963f, 0.159994f, /*n:*/-0.927763f, 0.353008f, 0.120884f, + /*v:*/-0.312500f, -0.178963f, 0.175619f, /*n:*/-0.955718f, 0.249184f, 0.156468f, + /*v:*/-0.210938f, -0.186776f, 0.316244f, /*n:*/-0.593677f, 0.108158f, 0.797388f, + /*v:*/0.312500f, -0.178963f, 0.175619f, /*n:*/0.955718f, 0.249184f, 0.156468f, + /*v:*/0.257812f, -0.053963f, 0.159994f, /*n:*/0.927763f, 0.353008f, 0.120884f, + /*v:*/0.210938f, -0.186776f, 0.316244f, /*n:*/0.593677f, 0.108158f, 0.797388f, + /*v:*/0.257812f, -0.053963f, 0.159994f, /*n:*/0.927763f, 0.353008f, 0.120884f, + /*v:*/0.179688f, -0.053963f, 0.316244f, /*n:*/0.650655f, 0.148747f, 0.744652f, + /*v:*/0.210938f, -0.186776f, 0.316244f, /*n:*/0.593677f, 0.108158f, 0.797388f, + /*v:*/-0.210938f, -0.186776f, 0.316244f, /*n:*/-0.593677f, 0.108158f, 0.797388f, + /*v:*/-0.078125f, -0.186776f, 0.355307f, /*n:*/-0.134098f, 0.006256f, 0.990936f, + /*v:*/-0.179688f, -0.053963f, 0.316244f, /*n:*/-0.650655f, 0.148747f, 0.744652f, + /*v:*/-0.078125f, -0.186776f, 0.355307f, /*n:*/-0.134098f, 0.006256f, 0.990936f, + /*v:*/-0.085938f, -0.030526f, 0.347494f, /*n:*/-0.500259f, -0.429243f, 0.751946f, + /*v:*/-0.179688f, -0.053963f, 0.316244f, /*n:*/-0.650655f, 0.148747f, 0.744652f, + /*v:*/0.085938f, -0.030526f, 0.347494f, /*n:*/0.500259f, -0.429243f, 0.751946f, + /*v:*/0.078125f, -0.186776f, 0.355307f, /*n:*/0.134098f, 0.006256f, 0.990936f, + /*v:*/0.179688f, -0.053963f, 0.316244f, /*n:*/0.650655f, 0.148747f, 0.744652f, + /*v:*/0.078125f, -0.186776f, 0.355307f, /*n:*/0.134098f, 0.006256f, 0.990936f, + /*v:*/0.210938f, -0.186776f, 0.316244f, /*n:*/0.593677f, 0.108158f, 0.797388f, + /*v:*/0.179688f, -0.053963f, 0.316244f, /*n:*/0.650655f, 0.148747f, 0.744652f, + /*v:*/-0.179688f, -0.053963f, 0.316244f, /*n:*/-0.650655f, 0.148747f, 0.744652f, + /*v:*/-0.085938f, -0.030526f, 0.347494f, /*n:*/-0.500259f, -0.429243f, 0.751946f, + /*v:*/-0.164062f, 0.016349f, 0.316244f, /*n:*/-0.775140f, 0.038667f, 0.630573f, + /*v:*/-0.085938f, -0.030526f, 0.347494f, /*n:*/-0.500259f, -0.429243f, 0.751946f, + /*v:*/-0.125000f, 0.031974f, 0.355307f, /*n:*/-0.932157f, -0.137761f, 0.334758f, + /*v:*/-0.164062f, 0.016349f, 0.316244f, /*n:*/-0.775140f, 0.038667f, 0.630573f, + /*v:*/0.125000f, 0.031974f, 0.355307f, /*n:*/0.932157f, -0.137761f, 0.334758f, + /*v:*/0.085938f, -0.030526f, 0.347494f, /*n:*/0.500259f, -0.429243f, 0.751946f, + /*v:*/0.164062f, 0.016349f, 0.316244f, /*n:*/0.775140f, 0.038667f, 0.630573f, + /*v:*/0.085938f, -0.030526f, 0.347494f, /*n:*/0.500259f, -0.429243f, 0.751946f, + /*v:*/0.179688f, -0.053963f, 0.316244f, /*n:*/0.650655f, 0.148747f, 0.744652f, + /*v:*/0.164062f, 0.016349f, 0.316244f, /*n:*/0.775140f, 0.038667f, 0.630573f, + /*v:*/-0.164062f, 0.016349f, 0.316244f, /*n:*/-0.775140f, 0.038667f, 0.630573f, + /*v:*/-0.125000f, 0.031974f, 0.355307f, /*n:*/-0.932157f, -0.137761f, 0.334758f, + /*v:*/-0.101562f, 0.110099f, 0.347494f, /*n:*/-0.501389f, -0.325327f, 0.801691f, + /*v:*/-0.164062f, 0.016349f, 0.316244f, /*n:*/-0.775140f, 0.038667f, 0.630573f, + /*v:*/-0.101562f, 0.110099f, 0.347494f, /*n:*/-0.501389f, -0.325327f, 0.801691f, + /*v:*/-0.125000f, 0.156974f, 0.417807f, /*n:*/-0.056093f, -0.263863f, 0.962920f, + /*v:*/0.101562f, 0.110099f, 0.347494f, /*n:*/0.501389f, -0.325327f, 0.801691f, + /*v:*/0.125000f, 0.031974f, 0.355307f, /*n:*/0.932157f, -0.137761f, 0.334758f, + /*v:*/0.164062f, 0.016349f, 0.316244f, /*n:*/0.775140f, 0.038667f, 0.630573f, + /*v:*/0.101562f, 0.110099f, 0.347494f, /*n:*/0.501389f, -0.325327f, 0.801691f, + /*v:*/0.164062f, 0.016349f, 0.316244f, /*n:*/0.775140f, 0.038667f, 0.630573f, + /*v:*/0.125000f, 0.156974f, 0.417807f, /*n:*/0.056093f, -0.263863f, 0.962920f, + /*v:*/-0.125000f, 0.156974f, 0.417807f, /*n:*/-0.056093f, -0.263863f, 0.962920f, + /*v:*/-0.101562f, 0.110099f, 0.347494f, /*n:*/-0.501389f, -0.325327f, 0.801691f, + /*v:*/0.000000f, 0.117912f, 0.347494f, /*n:*/0.000000f, 0.516556f, 0.856227f, + /*v:*/-0.125000f, 0.156974f, 0.417807f, /*n:*/-0.056093f, -0.263863f, 0.962920f, + /*v:*/0.000000f, 0.117912f, 0.347494f, /*n:*/0.000000f, 0.516556f, 0.856227f, + /*v:*/0.000000f, 0.305412f, 0.331869f, /*n:*/0.000000f, 0.064272f, 0.997925f, + /*v:*/0.000000f, 0.117912f, 0.347494f, /*n:*/0.000000f, 0.516556f, 0.856227f, + /*v:*/0.101562f, 0.110099f, 0.347494f, /*n:*/0.501389f, -0.325327f, 0.801691f, + /*v:*/0.125000f, 0.156974f, 0.417807f, /*n:*/0.056093f, -0.263863f, 0.962920f, + /*v:*/0.000000f, 0.117912f, 0.347494f, /*n:*/0.000000f, 0.516556f, 0.856227f, + /*v:*/0.125000f, 0.156974f, 0.417807f, /*n:*/0.056093f, -0.263863f, 0.962920f, + /*v:*/0.000000f, 0.305412f, 0.331869f, /*n:*/0.000000f, 0.064272f, 0.997925f, + /*v:*/-0.078125f, 0.008537f, 0.409994f, /*n:*/-0.183294f, -0.586352f, 0.789026f, + /*v:*/0.000000f, -0.030526f, 0.409994f, /*n:*/0.000000f, -0.481521f, 0.876431f, + /*v:*/0.000000f, 0.055412f, 0.433432f, /*n:*/0.000000f, 0.157842f, 0.987457f, + /*v:*/-0.078125f, 0.008537f, 0.409994f, /*n:*/-0.183294f, -0.586352f, 0.789026f, + /*v:*/0.000000f, 0.055412f, 0.433432f, /*n:*/0.000000f, 0.157842f, 0.987457f, + /*v:*/-0.109375f, 0.031974f, 0.433432f, /*n:*/-0.448805f, -0.314707f, 0.836360f, + /*v:*/0.000000f, 0.055412f, 0.433432f, /*n:*/0.000000f, 0.157842f, 0.987457f, + /*v:*/0.000000f, -0.030526f, 0.409994f, /*n:*/0.000000f, -0.481521f, 0.876431f, + /*v:*/0.078125f, 0.008537f, 0.409994f, /*n:*/0.183294f, -0.586352f, 0.789026f, + /*v:*/0.000000f, 0.055412f, 0.433432f, /*n:*/0.000000f, 0.157842f, 0.987457f, + /*v:*/0.078125f, 0.008537f, 0.409994f, /*n:*/0.183294f, -0.586352f, 0.789026f, + /*v:*/0.109375f, 0.031974f, 0.433432f, /*n:*/0.448805f, -0.314707f, 0.836360f, + /*v:*/-0.093750f, 0.102287f, 0.417807f, /*n:*/-0.361095f, 0.471267f, 0.804651f, + /*v:*/-0.109375f, 0.031974f, 0.433432f, /*n:*/-0.448805f, -0.314707f, 0.836360f, + /*v:*/-0.046875f, 0.110099f, 0.417807f, /*n:*/0.185736f, 0.595599f, 0.781487f, + /*v:*/-0.109375f, 0.031974f, 0.433432f, /*n:*/-0.448805f, -0.314707f, 0.836360f, + /*v:*/0.000000f, 0.055412f, 0.433432f, /*n:*/0.000000f, 0.157842f, 0.987457f, + /*v:*/-0.046875f, 0.110099f, 0.417807f, /*n:*/0.185736f, 0.595599f, 0.781487f, + /*v:*/0.000000f, 0.055412f, 0.433432f, /*n:*/0.000000f, 0.157842f, 0.987457f, + /*v:*/0.109375f, 0.031974f, 0.433432f, /*n:*/0.448805f, -0.314707f, 0.836360f, + /*v:*/0.046875f, 0.110099f, 0.417807f, /*n:*/-0.185736f, 0.595599f, 0.781487f, + /*v:*/0.109375f, 0.031974f, 0.433432f, /*n:*/0.448805f, -0.314707f, 0.836360f, + /*v:*/0.093750f, 0.102287f, 0.417807f, /*n:*/0.361095f, 0.471267f, 0.804651f, + /*v:*/0.046875f, 0.110099f, 0.417807f, /*n:*/-0.185736f, 0.595599f, 0.781487f, + /*v:*/-0.078125f, 0.008537f, 0.409994f, /*n:*/-0.183294f, -0.586352f, 0.789026f, + /*v:*/-0.109375f, 0.031974f, 0.433432f, /*n:*/-0.448805f, -0.314707f, 0.836360f, + /*v:*/-0.132812f, 0.031974f, 0.402182f, /*n:*/-0.926237f, -0.243049f, 0.288003f, + /*v:*/-0.078125f, 0.008537f, 0.409994f, /*n:*/-0.183294f, -0.586352f, 0.789026f, + /*v:*/-0.132812f, 0.031974f, 0.402182f, /*n:*/-0.926237f, -0.243049f, 0.288003f, + /*v:*/-0.093750f, -0.014901f, 0.386557f, /*n:*/-0.583575f, -0.692862f, 0.423475f, + /*v:*/0.132812f, 0.031974f, 0.402182f, /*n:*/0.926237f, -0.243049f, 0.288003f, + /*v:*/0.109375f, 0.031974f, 0.433432f, /*n:*/0.448805f, -0.314707f, 0.836360f, + /*v:*/0.078125f, 0.008537f, 0.409994f, /*n:*/0.183294f, -0.586352f, 0.789026f, + /*v:*/0.132812f, 0.031974f, 0.402182f, /*n:*/0.926237f, -0.243049f, 0.288003f, + /*v:*/0.078125f, 0.008537f, 0.409994f, /*n:*/0.183294f, -0.586352f, 0.789026f, + /*v:*/0.093750f, -0.014901f, 0.386557f, /*n:*/0.583575f, -0.692862f, 0.423475f, + /*v:*/-0.109375f, 0.031974f, 0.433432f, /*n:*/-0.448805f, -0.314707f, 0.836360f, + /*v:*/-0.093750f, 0.102287f, 0.417807f, /*n:*/-0.361095f, 0.471267f, 0.804651f, + /*v:*/-0.132812f, 0.031974f, 0.402182f, /*n:*/-0.926237f, -0.243049f, 0.288003f, + /*v:*/-0.093750f, 0.102287f, 0.417807f, /*n:*/-0.361095f, 0.471267f, 0.804651f, + /*v:*/-0.109375f, 0.125724f, 0.386557f, /*n:*/-0.618641f, 0.775658f, 0.124790f, + /*v:*/-0.132812f, 0.031974f, 0.402182f, /*n:*/-0.926237f, -0.243049f, 0.288003f, + /*v:*/0.109375f, 0.125724f, 0.386557f, /*n:*/0.618641f, 0.775658f, 0.124790f, + /*v:*/0.093750f, 0.102287f, 0.417807f, /*n:*/0.361095f, 0.471267f, 0.804651f, + /*v:*/0.132812f, 0.031974f, 0.402182f, /*n:*/0.926237f, -0.243049f, 0.288003f, + /*v:*/0.093750f, 0.102287f, 0.417807f, /*n:*/0.361095f, 0.471267f, 0.804651f, + /*v:*/0.109375f, 0.031974f, 0.433432f, /*n:*/0.448805f, -0.314707f, 0.836360f, + /*v:*/0.132812f, 0.031974f, 0.402182f, /*n:*/0.926237f, -0.243049f, 0.288003f, + /*v:*/-0.093750f, 0.102287f, 0.417807f, /*n:*/-0.361095f, 0.471267f, 0.804651f, + /*v:*/-0.046875f, 0.110099f, 0.417807f, /*n:*/0.185736f, 0.595599f, 0.781487f, + /*v:*/-0.039062f, 0.133537f, 0.386557f, /*n:*/0.240516f, 0.949034f, 0.203558f, + /*v:*/-0.093750f, 0.102287f, 0.417807f, /*n:*/-0.361095f, 0.471267f, 0.804651f, + /*v:*/-0.039062f, 0.133537f, 0.386557f, /*n:*/0.240516f, 0.949034f, 0.203558f, + /*v:*/-0.109375f, 0.125724f, 0.386557f, /*n:*/-0.618641f, 0.775658f, 0.124790f, + /*v:*/0.039062f, 0.133537f, 0.386557f, /*n:*/-0.240516f, 0.949034f, 0.203558f, + /*v:*/0.046875f, 0.110099f, 0.417807f, /*n:*/-0.185736f, 0.595599f, 0.781487f, + /*v:*/0.093750f, 0.102287f, 0.417807f, /*n:*/0.361095f, 0.471267f, 0.804651f, + /*v:*/0.039062f, 0.133537f, 0.386557f, /*n:*/-0.240516f, 0.949034f, 0.203558f, + /*v:*/0.093750f, 0.102287f, 0.417807f, /*n:*/0.361095f, 0.471267f, 0.804651f, + /*v:*/0.109375f, 0.125724f, 0.386557f, /*n:*/0.618641f, 0.775658f, 0.124790f, + /*v:*/-0.046875f, 0.110099f, 0.417807f, /*n:*/0.185736f, 0.595599f, 0.781487f, + /*v:*/0.000000f, 0.055412f, 0.433432f, /*n:*/0.000000f, 0.157842f, 0.987457f, + /*v:*/0.000000f, 0.071037f, 0.402182f, /*n:*/0.000000f, 0.828700f, 0.559648f, + /*v:*/-0.046875f, 0.110099f, 0.417807f, /*n:*/0.185736f, 0.595599f, 0.781487f, + /*v:*/0.000000f, 0.071037f, 0.402182f, /*n:*/0.000000f, 0.828700f, 0.559648f, + /*v:*/-0.039062f, 0.133537f, 0.386557f, /*n:*/0.240516f, 0.949034f, 0.203558f, + /*v:*/0.000000f, 0.071037f, 0.402182f, /*n:*/0.000000f, 0.828700f, 0.559648f, + /*v:*/0.000000f, 0.055412f, 0.433432f, /*n:*/0.000000f, 0.157842f, 0.987457f, + /*v:*/0.046875f, 0.110099f, 0.417807f, /*n:*/-0.185736f, 0.595599f, 0.781487f, + /*v:*/0.000000f, 0.071037f, 0.402182f, /*n:*/0.000000f, 0.828700f, 0.559648f, + /*v:*/0.046875f, 0.110099f, 0.417807f, /*n:*/-0.185736f, 0.595599f, 0.781487f, + /*v:*/0.039062f, 0.133537f, 0.386557f, /*n:*/-0.240516f, 0.949034f, 0.203558f, + /*v:*/-0.078125f, 0.008537f, 0.409994f, /*n:*/-0.183294f, -0.586352f, 0.789026f, + /*v:*/-0.093750f, -0.014901f, 0.386557f, /*n:*/-0.583575f, -0.692862f, 0.423475f, + /*v:*/0.000000f, -0.030526f, 0.409994f, /*n:*/0.000000f, -0.481521f, 0.876431f, + /*v:*/-0.093750f, -0.014901f, 0.386557f, /*n:*/-0.583575f, -0.692862f, 0.423475f, + /*v:*/0.000000f, -0.061776f, 0.386557f, /*n:*/0.000000f, -0.865383f, 0.501053f, + /*v:*/0.000000f, -0.030526f, 0.409994f, /*n:*/0.000000f, -0.481521f, 0.876431f, + /*v:*/0.000000f, -0.061776f, 0.386557f, /*n:*/0.000000f, -0.865383f, 0.501053f, + /*v:*/0.093750f, -0.014901f, 0.386557f, /*n:*/0.583575f, -0.692862f, 0.423475f, + /*v:*/0.000000f, -0.030526f, 0.409994f, /*n:*/0.000000f, -0.481521f, 0.876431f, + /*v:*/0.093750f, -0.014901f, 0.386557f, /*n:*/0.583575f, -0.692862f, 0.423475f, + /*v:*/0.078125f, 0.008537f, 0.409994f, /*n:*/0.183294f, -0.586352f, 0.789026f, + /*v:*/0.000000f, -0.030526f, 0.409994f, /*n:*/0.000000f, -0.481521f, 0.876431f, + /*v:*/-0.093750f, -0.014901f, 0.386557f, /*n:*/-0.583575f, -0.692862f, 0.423475f, + /*v:*/-0.085938f, -0.030526f, 0.347494f, /*n:*/-0.500259f, -0.429243f, 0.751946f, + /*v:*/0.000000f, -0.061776f, 0.386557f, /*n:*/0.000000f, -0.865383f, 0.501053f, + /*v:*/-0.085938f, -0.030526f, 0.347494f, /*n:*/-0.500259f, -0.429243f, 0.751946f, + /*v:*/0.000000f, -0.069588f, 0.347494f, /*n:*/0.000000f, -0.475936f, 0.879452f, + /*v:*/0.000000f, -0.061776f, 0.386557f, /*n:*/0.000000f, -0.865383f, 0.501053f, + /*v:*/0.000000f, -0.069588f, 0.347494f, /*n:*/0.000000f, -0.475936f, 0.879452f, + /*v:*/0.085938f, -0.030526f, 0.347494f, /*n:*/0.500259f, -0.429243f, 0.751946f, + /*v:*/0.000000f, -0.061776f, 0.386557f, /*n:*/0.000000f, -0.865383f, 0.501053f, + /*v:*/0.085938f, -0.030526f, 0.347494f, /*n:*/0.500259f, -0.429243f, 0.751946f, + /*v:*/0.093750f, -0.014901f, 0.386557f, /*n:*/0.583575f, -0.692862f, 0.423475f, + /*v:*/0.000000f, -0.061776f, 0.386557f, /*n:*/0.000000f, -0.865383f, 0.501053f, + /*v:*/-0.039062f, 0.133537f, 0.386557f, /*n:*/0.240516f, 0.949034f, 0.203558f, + /*v:*/0.000000f, 0.071037f, 0.402182f, /*n:*/0.000000f, 0.828700f, 0.559648f, + /*v:*/0.000000f, 0.117912f, 0.347494f, /*n:*/0.000000f, 0.516556f, 0.856227f, + /*v:*/0.000000f, 0.071037f, 0.402182f, /*n:*/0.000000f, 0.828700f, 0.559648f, + /*v:*/0.000000f, 0.063224f, 0.355307f, /*n:*/0.000000f, 0.175176f, 0.984527f, + /*v:*/0.000000f, 0.117912f, 0.347494f, /*n:*/0.000000f, 0.516556f, 0.856227f, + /*v:*/0.000000f, 0.063224f, 0.355307f, /*n:*/0.000000f, 0.175176f, 0.984527f, + /*v:*/0.000000f, 0.071037f, 0.402182f, /*n:*/0.000000f, 0.828700f, 0.559648f, + /*v:*/0.000000f, 0.117912f, 0.347494f, /*n:*/0.000000f, 0.516556f, 0.856227f, + /*v:*/0.000000f, 0.071037f, 0.402182f, /*n:*/0.000000f, 0.828700f, 0.559648f, + /*v:*/0.039062f, 0.133537f, 0.386557f, /*n:*/-0.240516f, 0.949034f, 0.203558f, + /*v:*/0.000000f, 0.117912f, 0.347494f, /*n:*/0.000000f, 0.516556f, 0.856227f, + /*v:*/-0.109375f, 0.125724f, 0.386557f, /*n:*/-0.618641f, 0.775658f, 0.124790f, + /*v:*/-0.039062f, 0.133537f, 0.386557f, /*n:*/0.240516f, 0.949034f, 0.203558f, + /*v:*/-0.101562f, 0.110099f, 0.347494f, /*n:*/-0.501389f, -0.325327f, 0.801691f, + /*v:*/-0.039062f, 0.133537f, 0.386557f, /*n:*/0.240516f, 0.949034f, 0.203558f, + /*v:*/0.000000f, 0.117912f, 0.347494f, /*n:*/0.000000f, 0.516556f, 0.856227f, + /*v:*/-0.101562f, 0.110099f, 0.347494f, /*n:*/-0.501389f, -0.325327f, 0.801691f, + /*v:*/0.000000f, 0.117912f, 0.347494f, /*n:*/0.000000f, 0.516556f, 0.856227f, + /*v:*/0.039062f, 0.133537f, 0.386557f, /*n:*/-0.240516f, 0.949034f, 0.203558f, + /*v:*/0.101562f, 0.110099f, 0.347494f, /*n:*/0.501389f, -0.325327f, 0.801691f, + /*v:*/0.039062f, 0.133537f, 0.386557f, /*n:*/-0.240516f, 0.949034f, 0.203558f, + /*v:*/0.109375f, 0.125724f, 0.386557f, /*n:*/0.618641f, 0.775658f, 0.124790f, + /*v:*/0.101562f, 0.110099f, 0.347494f, /*n:*/0.501389f, -0.325327f, 0.801691f, + /*v:*/-0.132812f, 0.031974f, 0.402182f, /*n:*/-0.926237f, -0.243049f, 0.288003f, + /*v:*/-0.109375f, 0.125724f, 0.386557f, /*n:*/-0.618641f, 0.775658f, 0.124790f, + /*v:*/-0.125000f, 0.031974f, 0.355307f, /*n:*/-0.932157f, -0.137761f, 0.334758f, + /*v:*/-0.109375f, 0.125724f, 0.386557f, /*n:*/-0.618641f, 0.775658f, 0.124790f, + /*v:*/-0.101562f, 0.110099f, 0.347494f, /*n:*/-0.501389f, -0.325327f, 0.801691f, + /*v:*/-0.125000f, 0.031974f, 0.355307f, /*n:*/-0.932157f, -0.137761f, 0.334758f, + /*v:*/0.101562f, 0.110099f, 0.347494f, /*n:*/0.501389f, -0.325327f, 0.801691f, + /*v:*/0.109375f, 0.125724f, 0.386557f, /*n:*/0.618641f, 0.775658f, 0.124790f, + /*v:*/0.125000f, 0.031974f, 0.355307f, /*n:*/0.932157f, -0.137761f, 0.334758f, + /*v:*/0.109375f, 0.125724f, 0.386557f, /*n:*/0.618641f, 0.775658f, 0.124790f, + /*v:*/0.132812f, 0.031974f, 0.402182f, /*n:*/0.926237f, -0.243049f, 0.288003f, + /*v:*/0.125000f, 0.031974f, 0.355307f, /*n:*/0.932157f, -0.137761f, 0.334758f, + /*v:*/-0.093750f, -0.014901f, 0.386557f, /*n:*/-0.583575f, -0.692862f, 0.423475f, + /*v:*/-0.132812f, 0.031974f, 0.402182f, /*n:*/-0.926237f, -0.243049f, 0.288003f, + /*v:*/-0.125000f, 0.031974f, 0.355307f, /*n:*/-0.932157f, -0.137761f, 0.334758f, + /*v:*/-0.093750f, -0.014901f, 0.386557f, /*n:*/-0.583575f, -0.692862f, 0.423475f, + /*v:*/-0.125000f, 0.031974f, 0.355307f, /*n:*/-0.932157f, -0.137761f, 0.334758f, + /*v:*/-0.085938f, -0.030526f, 0.347494f, /*n:*/-0.500259f, -0.429243f, 0.751946f, + /*v:*/0.125000f, 0.031974f, 0.355307f, /*n:*/0.932157f, -0.137761f, 0.334758f, + /*v:*/0.132812f, 0.031974f, 0.402182f, /*n:*/0.926237f, -0.243049f, 0.288003f, + /*v:*/0.093750f, -0.014901f, 0.386557f, /*n:*/0.583575f, -0.692862f, 0.423475f, + /*v:*/0.125000f, 0.031974f, 0.355307f, /*n:*/0.932157f, -0.137761f, 0.334758f, + /*v:*/0.093750f, -0.014901f, 0.386557f, /*n:*/0.583575f, -0.692862f, 0.423475f, + /*v:*/0.085938f, -0.030526f, 0.347494f, /*n:*/0.500259f, -0.429243f, 0.751946f, + /*v:*/-0.117188f, -0.428963f, 0.339682f, /*n:*/-0.181524f, -0.045198f, 0.982330f, + /*v:*/-0.109375f, -0.460213f, 0.339682f, /*n:*/-0.145940f, -0.120182f, 0.981933f, + /*v:*/0.000000f, -0.421151f, 0.339682f, /*n:*/0.000000f, -0.034059f, 0.999390f, + /*v:*/-0.109375f, -0.460213f, 0.339682f, /*n:*/-0.145940f, -0.120182f, 0.981933f, + /*v:*/0.000000f, -0.507088f, 0.339682f, /*n:*/0.000000f, -0.586963f, 0.809595f, + /*v:*/0.000000f, -0.421151f, 0.339682f, /*n:*/0.000000f, -0.034059f, 0.999390f, + /*v:*/0.000000f, -0.507088f, 0.339682f, /*n:*/0.000000f, -0.586963f, 0.809595f, + /*v:*/0.109375f, -0.460213f, 0.339682f, /*n:*/0.145940f, -0.120182f, 0.981933f, + /*v:*/0.000000f, -0.421151f, 0.339682f, /*n:*/0.000000f, -0.034059f, 0.999390f, + /*v:*/0.109375f, -0.460213f, 0.339682f, /*n:*/0.145940f, -0.120182f, 0.981933f, + /*v:*/0.117188f, -0.428963f, 0.339682f, /*n:*/0.181524f, -0.045198f, 0.982330f, + /*v:*/0.000000f, -0.421151f, 0.339682f, /*n:*/0.000000f, -0.034059f, 0.999390f, + /*v:*/0.000000f, -0.186776f, 0.355307f, /*n:*/0.000000f, 0.000000f, 1.000000f, + /*v:*/-0.078125f, -0.186776f, 0.355307f, /*n:*/-0.134098f, 0.006256f, 0.990936f, + /*v:*/0.000000f, -0.421151f, 0.339682f, /*n:*/0.000000f, -0.034059f, 0.999390f, + /*v:*/-0.078125f, -0.186776f, 0.355307f, /*n:*/-0.134098f, 0.006256f, 0.990936f, + /*v:*/-0.117188f, -0.428963f, 0.339682f, /*n:*/-0.181524f, -0.045198f, 0.982330f, + /*v:*/0.000000f, -0.421151f, 0.339682f, /*n:*/0.000000f, -0.034059f, 0.999390f, + /*v:*/0.117188f, -0.428963f, 0.339682f, /*n:*/0.181524f, -0.045198f, 0.982330f, + /*v:*/0.078125f, -0.186776f, 0.355307f, /*n:*/0.134098f, 0.006256f, 0.990936f, + /*v:*/0.000000f, -0.421151f, 0.339682f, /*n:*/0.000000f, -0.034059f, 0.999390f, + /*v:*/0.078125f, -0.186776f, 0.355307f, /*n:*/0.134098f, 0.006256f, 0.990936f, + /*v:*/0.000000f, -0.186776f, 0.355307f, /*n:*/0.000000f, 0.000000f, 1.000000f, + /*v:*/0.000000f, -0.421151f, 0.339682f, /*n:*/0.000000f, -0.034059f, 0.999390f, + /*v:*/0.000000f, -0.186776f, 0.355307f, /*n:*/0.000000f, 0.000000f, 1.000000f, + /*v:*/0.000000f, -0.069588f, 0.347494f, /*n:*/0.000000f, -0.475936f, 0.879452f, + /*v:*/-0.078125f, -0.186776f, 0.355307f, /*n:*/-0.134098f, 0.006256f, 0.990936f, + /*v:*/0.000000f, -0.069588f, 0.347494f, /*n:*/0.000000f, -0.475936f, 0.879452f, + /*v:*/-0.085938f, -0.030526f, 0.347494f, /*n:*/-0.500259f, -0.429243f, 0.751946f, + /*v:*/-0.078125f, -0.186776f, 0.355307f, /*n:*/-0.134098f, 0.006256f, 0.990936f, + /*v:*/0.085938f, -0.030526f, 0.347494f, /*n:*/0.500259f, -0.429243f, 0.751946f, + /*v:*/0.000000f, -0.069588f, 0.347494f, /*n:*/0.000000f, -0.475936f, 0.879452f, + /*v:*/0.078125f, -0.186776f, 0.355307f, /*n:*/0.134098f, 0.006256f, 0.990936f, + /*v:*/0.000000f, -0.069588f, 0.347494f, /*n:*/0.000000f, -0.475936f, 0.879452f, + /*v:*/0.000000f, -0.186776f, 0.355307f, /*n:*/0.000000f, 0.000000f, 1.000000f, + /*v:*/0.078125f, -0.186776f, 0.355307f, /*n:*/0.134098f, 0.006256f, 0.990936f, + /*v:*/-0.250000f, -0.444588f, 0.292807f, /*n:*/-0.565172f, -0.029725f, 0.824396f, + /*v:*/-0.265625f, -0.561776f, 0.269370f, /*n:*/-0.555650f, -0.226356f, 0.799982f, + /*v:*/-0.109375f, -0.460213f, 0.339682f, /*n:*/-0.145940f, -0.120182f, 0.981933f, + /*v:*/-0.250000f, -0.444588f, 0.292807f, /*n:*/-0.565172f, -0.029725f, 0.824396f, + /*v:*/-0.109375f, -0.460213f, 0.339682f, /*n:*/-0.145940f, -0.120182f, 0.981933f, + /*v:*/-0.117188f, -0.428963f, 0.339682f, /*n:*/-0.181524f, -0.045198f, 0.982330f, + /*v:*/0.109375f, -0.460213f, 0.339682f, /*n:*/0.145940f, -0.120182f, 0.981933f, + /*v:*/0.265625f, -0.561776f, 0.269370f, /*n:*/0.555650f, -0.226356f, 0.799982f, + /*v:*/0.250000f, -0.444588f, 0.292807f, /*n:*/0.565172f, -0.029725f, 0.824396f, + /*v:*/0.109375f, -0.460213f, 0.339682f, /*n:*/0.145940f, -0.120182f, 0.981933f, + /*v:*/0.250000f, -0.444588f, 0.292807f, /*n:*/0.565172f, -0.029725f, 0.824396f, + /*v:*/0.117188f, -0.428963f, 0.339682f, /*n:*/0.181524f, -0.045198f, 0.982330f, + /*v:*/-0.117188f, -0.428963f, 0.339682f, /*n:*/-0.181524f, -0.045198f, 0.982330f, + /*v:*/-0.078125f, -0.186776f, 0.355307f, /*n:*/-0.134098f, 0.006256f, 0.990936f, + /*v:*/-0.210938f, -0.186776f, 0.316244f, /*n:*/-0.593677f, 0.108158f, 0.797388f, + /*v:*/-0.117188f, -0.428963f, 0.339682f, /*n:*/-0.181524f, -0.045198f, 0.982330f, + /*v:*/-0.210938f, -0.186776f, 0.316244f, /*n:*/-0.593677f, 0.108158f, 0.797388f, + /*v:*/-0.250000f, -0.444588f, 0.292807f, /*n:*/-0.565172f, -0.029725f, 0.824396f, + /*v:*/0.210938f, -0.186776f, 0.316244f, /*n:*/0.593677f, 0.108158f, 0.797388f, + /*v:*/0.078125f, -0.186776f, 0.355307f, /*n:*/0.134098f, 0.006256f, 0.990936f, + /*v:*/0.117188f, -0.428963f, 0.339682f, /*n:*/0.181524f, -0.045198f, 0.982330f, + /*v:*/0.210938f, -0.186776f, 0.316244f, /*n:*/0.593677f, 0.108158f, 0.797388f, + /*v:*/0.117188f, -0.428963f, 0.339682f, /*n:*/0.181524f, -0.045198f, 0.982330f, + /*v:*/0.250000f, -0.444588f, 0.292807f, /*n:*/0.565172f, -0.029725f, 0.824396f, + /*v:*/-0.234375f, -0.655526f, 0.238120f, /*n:*/-0.350230f, -0.639149f, 0.684683f, + /*v:*/-0.117188f, -0.577401f, 0.316245f, /*n:*/-0.130711f, -0.318644f, 0.938810f, + /*v:*/-0.265625f, -0.561776f, 0.269370f, /*n:*/-0.555650f, -0.226356f, 0.799982f, + /*v:*/-0.117188f, -0.577401f, 0.316245f, /*n:*/-0.130711f, -0.318644f, 0.938810f, + /*v:*/-0.109375f, -0.460213f, 0.339682f, /*n:*/-0.145940f, -0.120182f, 0.981933f, + /*v:*/-0.265625f, -0.561776f, 0.269370f, /*n:*/-0.555650f, -0.226356f, 0.799982f, + /*v:*/0.109375f, -0.460213f, 0.339682f, /*n:*/0.145940f, -0.120182f, 0.981933f, + /*v:*/0.117188f, -0.577401f, 0.316245f, /*n:*/0.130711f, -0.318644f, 0.938810f, + /*v:*/0.265625f, -0.561776f, 0.269370f, /*n:*/0.555650f, -0.226356f, 0.799982f, + /*v:*/0.117188f, -0.577401f, 0.316245f, /*n:*/0.130711f, -0.318644f, 0.938810f, + /*v:*/0.234375f, -0.655526f, 0.238120f, /*n:*/0.350230f, -0.639149f, 0.684683f, + /*v:*/0.265625f, -0.561776f, 0.269370f, /*n:*/0.555650f, -0.226356f, 0.799982f, + /*v:*/-0.164062f, -0.671151f, 0.238120f, /*n:*/-0.155370f, -0.758965f, 0.632282f, + /*v:*/-0.062500f, -0.624276f, 0.300620f, /*n:*/0.058870f, -0.378430f, 0.923734f, + /*v:*/-0.117188f, -0.577401f, 0.316245f, /*n:*/-0.130711f, -0.318644f, 0.938810f, + /*v:*/-0.164062f, -0.671151f, 0.238120f, /*n:*/-0.155370f, -0.758965f, 0.632282f, + /*v:*/-0.117188f, -0.577401f, 0.316245f, /*n:*/-0.130711f, -0.318644f, 0.938810f, + /*v:*/-0.234375f, -0.655526f, 0.238120f, /*n:*/-0.350230f, -0.639149f, 0.684683f, + /*v:*/0.117188f, -0.577401f, 0.316245f, /*n:*/0.130711f, -0.318644f, 0.938810f, + /*v:*/0.062500f, -0.624276f, 0.300620f, /*n:*/-0.058870f, -0.378430f, 0.923734f, + /*v:*/0.164062f, -0.671151f, 0.238120f, /*n:*/0.155370f, -0.758965f, 0.632282f, + /*v:*/0.117188f, -0.577401f, 0.316245f, /*n:*/0.130711f, -0.318644f, 0.938810f, + /*v:*/0.164062f, -0.671151f, 0.238120f, /*n:*/0.155370f, -0.758965f, 0.632282f, + /*v:*/0.234375f, -0.655526f, 0.238120f, /*n:*/0.350230f, -0.639149f, 0.684683f, + /*v:*/0.000000f, -0.686776f, 0.245932f, /*n:*/0.000000f, -0.775323f, 0.631550f, + /*v:*/0.000000f, -0.632088f, 0.292807f, /*n:*/0.000000f, -0.346507f, 0.938017f, + /*v:*/-0.062500f, -0.624276f, 0.300620f, /*n:*/0.058870f, -0.378430f, 0.923734f, + /*v:*/0.000000f, -0.686776f, 0.245932f, /*n:*/0.000000f, -0.775323f, 0.631550f, + /*v:*/-0.062500f, -0.624276f, 0.300620f, /*n:*/0.058870f, -0.378430f, 0.923734f, + /*v:*/-0.164062f, -0.671151f, 0.238120f, /*n:*/-0.155370f, -0.758965f, 0.632282f, + /*v:*/0.062500f, -0.624276f, 0.300620f, /*n:*/-0.058870f, -0.378430f, 0.923734f, + /*v:*/0.000000f, -0.632088f, 0.292807f, /*n:*/0.000000f, -0.346507f, 0.938017f, + /*v:*/0.000000f, -0.686776f, 0.245932f, /*n:*/0.000000f, -0.775323f, 0.631550f, + /*v:*/0.062500f, -0.624276f, 0.300620f, /*n:*/-0.058870f, -0.378430f, 0.923734f, + /*v:*/0.000000f, -0.686776f, 0.245932f, /*n:*/0.000000f, -0.775323f, 0.631550f, + /*v:*/0.164062f, -0.671151f, 0.238120f, /*n:*/0.155370f, -0.758965f, 0.632282f, + /*v:*/-0.132812f, 0.469474f, 0.363119f, /*n:*/0.200568f, -0.134953f, 0.970306f, + /*v:*/-0.164062f, 0.399162f, 0.355307f, /*n:*/0.239296f, -0.301187f, 0.923032f, + /*v:*/0.000000f, 0.469474f, 0.370932f, /*n:*/0.000000f, -0.221992f, 0.975036f, + /*v:*/-0.164062f, 0.399162f, 0.355307f, /*n:*/0.239296f, -0.301187f, 0.923032f, + /*v:*/0.000000f, 0.305412f, 0.331869f, /*n:*/0.000000f, 0.064272f, 0.997925f, + /*v:*/0.000000f, 0.469474f, 0.370932f, /*n:*/0.000000f, -0.221992f, 0.975036f, + /*v:*/0.000000f, 0.305412f, 0.331869f, /*n:*/0.000000f, 0.064272f, 0.997925f, + /*v:*/0.164062f, 0.399162f, 0.355307f, /*n:*/-0.239296f, -0.301187f, 0.923032f, + /*v:*/0.000000f, 0.469474f, 0.370932f, /*n:*/0.000000f, -0.221992f, 0.975036f, + /*v:*/0.164062f, 0.399162f, 0.355307f, /*n:*/-0.239296f, -0.301187f, 0.923032f, + /*v:*/0.132812f, 0.469474f, 0.363119f, /*n:*/-0.200568f, -0.134953f, 0.970306f, + /*v:*/0.000000f, 0.469474f, 0.370932f, /*n:*/0.000000f, -0.221992f, 0.975036f, + /*v:*/0.000000f, 0.469474f, 0.370932f, /*n:*/0.000000f, -0.221992f, 0.975036f, + /*v:*/0.000000f, 0.610099f, 0.425619f, /*n:*/0.000000f, -0.082736f, 0.996551f, + /*v:*/-0.125000f, 0.563224f, 0.370932f, /*n:*/-0.031587f, -0.178167f, 0.983459f, + /*v:*/0.000000f, 0.469474f, 0.370932f, /*n:*/0.000000f, -0.221992f, 0.975036f, + /*v:*/-0.125000f, 0.563224f, 0.370932f, /*n:*/-0.031587f, -0.178167f, 0.983459f, + /*v:*/-0.132812f, 0.469474f, 0.363119f, /*n:*/0.200568f, -0.134953f, 0.970306f, + /*v:*/0.125000f, 0.563224f, 0.370932f, /*n:*/0.031587f, -0.178167f, 0.983459f, + /*v:*/0.000000f, 0.610099f, 0.425619f, /*n:*/0.000000f, -0.082736f, 0.996551f, + /*v:*/0.000000f, 0.469474f, 0.370932f, /*n:*/0.000000f, -0.221992f, 0.975036f, + /*v:*/0.125000f, 0.563224f, 0.370932f, /*n:*/0.031587f, -0.178167f, 0.983459f, + /*v:*/0.000000f, 0.469474f, 0.370932f, /*n:*/0.000000f, -0.221992f, 0.975036f, + /*v:*/0.132812f, 0.469474f, 0.363119f, /*n:*/-0.200568f, -0.134953f, 0.970306f, + /*v:*/0.000000f, 0.610099f, 0.425619f, /*n:*/0.000000f, -0.082736f, 0.996551f, + /*v:*/-0.101562f, 0.688224f, 0.449057f, /*n:*/0.061098f, -0.025239f, 0.997803f, + /*v:*/-0.125000f, 0.563224f, 0.370932f, /*n:*/-0.031587f, -0.178167f, 0.983459f, + /*v:*/-0.101562f, 0.688224f, 0.449057f, /*n:*/0.061098f, -0.025239f, 0.997803f, + /*v:*/-0.164062f, 0.672599f, 0.378744f, /*n:*/-0.367840f, -0.283608f, 0.885556f, + /*v:*/-0.125000f, 0.563224f, 0.370932f, /*n:*/-0.031587f, -0.178167f, 0.983459f, + /*v:*/0.164062f, 0.672599f, 0.378744f, /*n:*/0.367840f, -0.283608f, 0.885556f, + /*v:*/0.101562f, 0.688224f, 0.449057f, /*n:*/-0.061098f, -0.025239f, 0.997803f, + /*v:*/0.125000f, 0.563224f, 0.370932f, /*n:*/0.031587f, -0.178167f, 0.983459f, + /*v:*/0.101562f, 0.688224f, 0.449057f, /*n:*/-0.061098f, -0.025239f, 0.997803f, + /*v:*/0.000000f, 0.610099f, 0.425619f, /*n:*/0.000000f, -0.082736f, 0.996551f, + /*v:*/0.125000f, 0.563224f, 0.370932f, /*n:*/0.031587f, -0.178167f, 0.983459f, + /*v:*/0.000000f, 0.305412f, 0.331869f, /*n:*/0.000000f, 0.064272f, 0.997925f, + /*v:*/-0.164062f, 0.399162f, 0.355307f, /*n:*/0.239296f, -0.301187f, 0.923032f, + /*v:*/-0.203125f, 0.352287f, 0.347494f, /*n:*/0.128178f, -0.292001f, 0.947752f, + /*v:*/0.000000f, 0.305412f, 0.331869f, /*n:*/0.000000f, 0.064272f, 0.997925f, + /*v:*/-0.203125f, 0.352287f, 0.347494f, /*n:*/0.128178f, -0.292001f, 0.947752f, + /*v:*/-0.125000f, 0.156974f, 0.417807f, /*n:*/-0.056093f, -0.263863f, 0.962920f, + /*v:*/0.203125f, 0.352287f, 0.347494f, /*n:*/-0.128178f, -0.292001f, 0.947752f, + /*v:*/0.164062f, 0.399162f, 0.355307f, /*n:*/-0.239296f, -0.301187f, 0.923032f, + /*v:*/0.000000f, 0.305412f, 0.331869f, /*n:*/0.000000f, 0.064272f, 0.997925f, + /*v:*/0.203125f, 0.352287f, 0.347494f, /*n:*/-0.128178f, -0.292001f, 0.947752f, + /*v:*/0.000000f, 0.305412f, 0.331869f, /*n:*/0.000000f, 0.064272f, 0.997925f, + /*v:*/0.125000f, 0.156974f, 0.417807f, /*n:*/0.056093f, -0.263863f, 0.962920f, + /*v:*/-0.398438f, 0.211662f, 0.277182f, /*n:*/-0.344279f, -0.546617f, 0.763298f, + /*v:*/-0.125000f, 0.156974f, 0.417807f, /*n:*/-0.056093f, -0.263863f, 0.962920f, + /*v:*/-0.203125f, 0.352287f, 0.347494f, /*n:*/0.128178f, -0.292001f, 0.947752f, + /*v:*/-0.398438f, 0.211662f, 0.277182f, /*n:*/-0.344279f, -0.546617f, 0.763298f, + /*v:*/-0.203125f, 0.352287f, 0.347494f, /*n:*/0.128178f, -0.292001f, 0.947752f, + /*v:*/-0.375000f, 0.274162f, 0.308432f, /*n:*/-0.158940f, -0.498917f, 0.851924f, + /*v:*/0.203125f, 0.352287f, 0.347494f, /*n:*/-0.128178f, -0.292001f, 0.947752f, + /*v:*/0.125000f, 0.156974f, 0.417807f, /*n:*/0.056093f, -0.263863f, 0.962920f, + /*v:*/0.398438f, 0.211662f, 0.277182f, /*n:*/0.344279f, -0.546617f, 0.763298f, + /*v:*/0.203125f, 0.352287f, 0.347494f, /*n:*/-0.128178f, -0.292001f, 0.947752f, + /*v:*/0.398438f, 0.211662f, 0.277182f, /*n:*/0.344279f, -0.546617f, 0.763298f, + /*v:*/0.375000f, 0.274162f, 0.308432f, /*n:*/0.158940f, -0.498917f, 0.851924f, + /*v:*/-0.617188f, 0.313224f, 0.230307f, /*n:*/-0.499130f, -0.376049f, 0.780663f, + /*v:*/-0.398438f, 0.211662f, 0.277182f, /*n:*/-0.344279f, -0.546617f, 0.763298f, + /*v:*/-0.492188f, 0.321037f, 0.277182f, /*n:*/-0.427900f, -0.389508f, 0.815577f, + /*v:*/-0.398438f, 0.211662f, 0.277182f, /*n:*/-0.344279f, -0.546617f, 0.763298f, + /*v:*/-0.375000f, 0.274162f, 0.308432f, /*n:*/-0.158940f, -0.498917f, 0.851924f, + /*v:*/-0.492188f, 0.321037f, 0.277182f, /*n:*/-0.427900f, -0.389508f, 0.815577f, + /*v:*/0.375000f, 0.274162f, 0.308432f, /*n:*/0.158940f, -0.498917f, 0.851924f, + /*v:*/0.398438f, 0.211662f, 0.277182f, /*n:*/0.344279f, -0.546617f, 0.763298f, + /*v:*/0.492188f, 0.321037f, 0.277182f, /*n:*/0.427900f, -0.389508f, 0.815577f, + /*v:*/0.398438f, 0.211662f, 0.277182f, /*n:*/0.344279f, -0.546617f, 0.763298f, + /*v:*/0.617188f, 0.313224f, 0.230307f, /*n:*/0.499130f, -0.376049f, 0.780663f, + /*v:*/0.492188f, 0.321037f, 0.277182f, /*n:*/0.427900f, -0.389508f, 0.815577f, + /*v:*/-0.726562f, 0.461662f, 0.206869f, /*n:*/-0.566546f, -0.318796f, 0.759819f, + /*v:*/-0.617188f, 0.313224f, 0.230307f, /*n:*/-0.499130f, -0.376049f, 0.780663f, + /*v:*/-0.625000f, 0.446037f, 0.253744f, /*n:*/-0.460219f, -0.165105f, 0.872280f, + /*v:*/-0.617188f, 0.313224f, 0.230307f, /*n:*/-0.499130f, -0.376049f, 0.780663f, + /*v:*/-0.492188f, 0.321037f, 0.277182f, /*n:*/-0.427900f, -0.389508f, 0.815577f, + /*v:*/-0.625000f, 0.446037f, 0.253744f, /*n:*/-0.460219f, -0.165105f, 0.872280f, + /*v:*/0.492188f, 0.321037f, 0.277182f, /*n:*/0.427900f, -0.389508f, 0.815577f, + /*v:*/0.617188f, 0.313224f, 0.230307f, /*n:*/0.499130f, -0.376049f, 0.780663f, + /*v:*/0.625000f, 0.446037f, 0.253744f, /*n:*/0.460219f, -0.165105f, 0.872280f, + /*v:*/0.617188f, 0.313224f, 0.230307f, /*n:*/0.499130f, -0.376049f, 0.780663f, + /*v:*/0.726562f, 0.461662f, 0.206869f, /*n:*/0.566546f, -0.318796f, 0.759819f, + /*v:*/0.625000f, 0.446037f, 0.253744f, /*n:*/0.460219f, -0.165105f, 0.872280f, + /*v:*/-0.742188f, 0.633537f, 0.261557f, /*n:*/-0.460707f, -0.144810f, 0.875637f, + /*v:*/-0.726562f, 0.461662f, 0.206869f, /*n:*/-0.566546f, -0.318796f, 0.759819f, + /*v:*/-0.640625f, 0.555412f, 0.253744f, /*n:*/-0.358806f, -0.119175f, 0.925748f, + /*v:*/-0.726562f, 0.461662f, 0.206869f, /*n:*/-0.566546f, -0.318796f, 0.759819f, + /*v:*/-0.625000f, 0.446037f, 0.253744f, /*n:*/-0.460219f, -0.165105f, 0.872280f, + /*v:*/-0.640625f, 0.555412f, 0.253744f, /*n:*/-0.358806f, -0.119175f, 0.925748f, + /*v:*/0.625000f, 0.446037f, 0.253744f, /*n:*/0.460219f, -0.165105f, 0.872280f, + /*v:*/0.726562f, 0.461662f, 0.206869f, /*n:*/0.566546f, -0.318796f, 0.759819f, + /*v:*/0.640625f, 0.555412f, 0.253744f, /*n:*/0.358806f, -0.119175f, 0.925748f, + /*v:*/0.726562f, 0.461662f, 0.206869f, /*n:*/0.566546f, -0.318796f, 0.759819f, + /*v:*/0.742188f, 0.633537f, 0.261557f, /*n:*/0.460707f, -0.144810f, 0.875637f, + /*v:*/0.640625f, 0.555412f, 0.253744f, /*n:*/0.358806f, -0.119175f, 0.925748f, + /*v:*/-0.687500f, 0.672599f, 0.331869f, /*n:*/-0.480117f, -0.183264f, 0.857814f, + /*v:*/-0.742188f, 0.633537f, 0.261557f, /*n:*/-0.460707f, -0.144810f, 0.875637f, + /*v:*/-0.601562f, 0.633537f, 0.269369f, /*n:*/-0.225410f, -0.360759f, 0.904996f, + /*v:*/-0.742188f, 0.633537f, 0.261557f, /*n:*/-0.460707f, -0.144810f, 0.875637f, + /*v:*/-0.640625f, 0.555412f, 0.253744f, /*n:*/-0.358806f, -0.119175f, 0.925748f, + /*v:*/-0.601562f, 0.633537f, 0.269369f, /*n:*/-0.225410f, -0.360759f, 0.904996f, + /*v:*/0.640625f, 0.555412f, 0.253744f, /*n:*/0.358806f, -0.119175f, 0.925748f, + /*v:*/0.742188f, 0.633537f, 0.261557f, /*n:*/0.460707f, -0.144810f, 0.875637f, + /*v:*/0.601562f, 0.633537f, 0.269369f, /*n:*/0.225410f, -0.360759f, 0.904996f, + /*v:*/0.742188f, 0.633537f, 0.261557f, /*n:*/0.460707f, -0.144810f, 0.875637f, + /*v:*/0.687500f, 0.672599f, 0.331869f, /*n:*/0.480117f, -0.183264f, 0.857814f, + /*v:*/0.601562f, 0.633537f, 0.269369f, /*n:*/0.225410f, -0.360759f, 0.904996f, + /*v:*/-0.437500f, 0.805412f, 0.402182f, /*n:*/-0.308451f, 0.003845f, 0.951201f, + /*v:*/-0.687500f, 0.672599f, 0.331869f, /*n:*/-0.480117f, -0.183264f, 0.857814f, + /*v:*/-0.429688f, 0.696037f, 0.324057f, /*n:*/-0.219001f, 0.037141f, 0.975005f, + /*v:*/-0.687500f, 0.672599f, 0.331869f, /*n:*/-0.480117f, -0.183264f, 0.857814f, + /*v:*/-0.601562f, 0.633537f, 0.269369f, /*n:*/-0.225410f, -0.360759f, 0.904996f, + /*v:*/-0.429688f, 0.696037f, 0.324057f, /*n:*/-0.219001f, 0.037141f, 0.975005f, + /*v:*/0.601562f, 0.633537f, 0.269369f, /*n:*/0.225410f, -0.360759f, 0.904996f, + /*v:*/0.687500f, 0.672599f, 0.331869f, /*n:*/0.480117f, -0.183264f, 0.857814f, + /*v:*/0.429688f, 0.696037f, 0.324057f, /*n:*/0.219001f, 0.037141f, 0.975005f, + /*v:*/0.687500f, 0.672599f, 0.331869f, /*n:*/0.480117f, -0.183264f, 0.857814f, + /*v:*/0.437500f, 0.805412f, 0.402182f, /*n:*/0.308451f, 0.003845f, 0.951201f, + /*v:*/0.429688f, 0.696037f, 0.324057f, /*n:*/0.219001f, 0.037141f, 0.975005f, + /*v:*/-0.312500f, 0.899162f, 0.441244f, /*n:*/-0.266579f, 0.216590f, 0.939146f, + /*v:*/-0.437500f, 0.805412f, 0.402182f, /*n:*/-0.308451f, 0.003845f, 0.951201f, + /*v:*/-0.328125f, 0.735099f, 0.347494f, /*n:*/-0.149022f, -0.154149f, 0.976714f, + /*v:*/-0.437500f, 0.805412f, 0.402182f, /*n:*/-0.308451f, 0.003845f, 0.951201f, + /*v:*/-0.429688f, 0.696037f, 0.324057f, /*n:*/-0.219001f, 0.037141f, 0.975005f, + /*v:*/-0.328125f, 0.735099f, 0.347494f, /*n:*/-0.149022f, -0.154149f, 0.976714f, + /*v:*/0.429688f, 0.696037f, 0.324057f, /*n:*/0.219001f, 0.037141f, 0.975005f, + /*v:*/0.437500f, 0.805412f, 0.402182f, /*n:*/0.308451f, 0.003845f, 0.951201f, + /*v:*/0.328125f, 0.735099f, 0.347494f, /*n:*/0.149022f, -0.154149f, 0.976714f, + /*v:*/0.437500f, 0.805412f, 0.402182f, /*n:*/0.308451f, 0.003845f, 0.951201f, + /*v:*/0.312500f, 0.899162f, 0.441244f, /*n:*/0.266579f, 0.216590f, 0.939146f, + /*v:*/0.328125f, 0.735099f, 0.347494f, /*n:*/0.149022f, -0.154149f, 0.976714f, + /*v:*/-0.312500f, 0.899162f, 0.441244f, /*n:*/-0.266579f, 0.216590f, 0.939146f, + /*v:*/-0.328125f, 0.735099f, 0.347494f, /*n:*/-0.149022f, -0.154149f, 0.976714f, + /*v:*/-0.250000f, 0.727287f, 0.363119f, /*n:*/-0.258156f, -0.126499f, 0.957762f, + /*v:*/-0.312500f, 0.899162f, 0.441244f, /*n:*/-0.266579f, 0.216590f, 0.939146f, + /*v:*/-0.250000f, 0.727287f, 0.363119f, /*n:*/-0.258156f, -0.126499f, 0.957762f, + /*v:*/-0.203125f, 0.875724f, 0.456869f, /*n:*/0.157384f, 0.166021f, 0.973449f, + /*v:*/0.250000f, 0.727287f, 0.363119f, /*n:*/0.258156f, -0.126499f, 0.957762f, + /*v:*/0.328125f, 0.735099f, 0.347494f, /*n:*/0.149022f, -0.154149f, 0.976714f, + /*v:*/0.312500f, 0.899162f, 0.441244f, /*n:*/0.266579f, 0.216590f, 0.939146f, + /*v:*/0.250000f, 0.727287f, 0.363119f, /*n:*/0.258156f, -0.126499f, 0.957762f, + /*v:*/0.312500f, 0.899162f, 0.441244f, /*n:*/0.266579f, 0.216590f, 0.939146f, + /*v:*/0.203125f, 0.875724f, 0.456869f, /*n:*/-0.157384f, 0.166021f, 0.973449f, + /*v:*/-0.203125f, 0.875724f, 0.456869f, /*n:*/0.157384f, 0.166021f, 0.973449f, + /*v:*/-0.250000f, 0.727287f, 0.363119f, /*n:*/-0.258156f, -0.126499f, 0.957762f, + /*v:*/-0.101562f, 0.688224f, 0.449057f, /*n:*/0.061098f, -0.025239f, 0.997803f, + /*v:*/-0.250000f, 0.727287f, 0.363119f, /*n:*/-0.258156f, -0.126499f, 0.957762f, + /*v:*/-0.164062f, 0.672599f, 0.378744f, /*n:*/-0.367840f, -0.283608f, 0.885556f, + /*v:*/-0.101562f, 0.688224f, 0.449057f, /*n:*/0.061098f, -0.025239f, 0.997803f, + /*v:*/0.164062f, 0.672599f, 0.378744f, /*n:*/0.367840f, -0.283608f, 0.885556f, + /*v:*/0.250000f, 0.727287f, 0.363119f, /*n:*/0.258156f, -0.126499f, 0.957762f, + /*v:*/0.101562f, 0.688224f, 0.449057f, /*n:*/-0.061098f, -0.025239f, 0.997803f, + /*v:*/0.250000f, 0.727287f, 0.363119f, /*n:*/0.258156f, -0.126499f, 0.957762f, + /*v:*/0.203125f, 0.875724f, 0.456869f, /*n:*/-0.157384f, 0.166021f, 0.973449f, + /*v:*/0.101562f, 0.688224f, 0.449057f, /*n:*/-0.061098f, -0.025239f, 0.997803f, + /*v:*/0.000000f, 0.610099f, 0.425619f, /*n:*/0.000000f, -0.082736f, 0.996551f, + /*v:*/0.000000f, 0.688224f, 0.347494f, /*n:*/0.000000f, 0.963591f, 0.267281f, + /*v:*/-0.101562f, 0.688224f, 0.449057f, /*n:*/0.061098f, -0.025239f, 0.997803f, + /*v:*/0.000000f, 0.688224f, 0.347494f, /*n:*/0.000000f, 0.963591f, 0.267281f, + /*v:*/-0.062500f, 0.750724f, 0.355307f, /*n:*/0.824183f, 0.546770f, 0.147313f, + /*v:*/-0.101562f, 0.688224f, 0.449057f, /*n:*/0.061098f, -0.025239f, 0.997803f, + /*v:*/0.062500f, 0.750724f, 0.355307f, /*n:*/-0.824183f, 0.546770f, 0.147313f, + /*v:*/0.000000f, 0.688224f, 0.347494f, /*n:*/0.000000f, 0.963591f, 0.267281f, + /*v:*/0.101562f, 0.688224f, 0.449057f, /*n:*/-0.061098f, -0.025239f, 0.997803f, + /*v:*/0.000000f, 0.688224f, 0.347494f, /*n:*/0.000000f, 0.963591f, 0.267281f, + /*v:*/0.000000f, 0.610099f, 0.425619f, /*n:*/0.000000f, -0.082736f, 0.996551f, + /*v:*/0.101562f, 0.688224f, 0.449057f, /*n:*/-0.061098f, -0.025239f, 0.997803f, + /*v:*/-0.101562f, 0.688224f, 0.449057f, /*n:*/0.061098f, -0.025239f, 0.997803f, + /*v:*/-0.062500f, 0.750724f, 0.355307f, /*n:*/0.824183f, 0.546770f, 0.147313f, + /*v:*/-0.203125f, 0.875724f, 0.456869f, /*n:*/0.157384f, 0.166021f, 0.973449f, + /*v:*/-0.062500f, 0.750724f, 0.355307f, /*n:*/0.824183f, 0.546770f, 0.147313f, + /*v:*/-0.156250f, 0.977287f, 0.363119f, /*n:*/0.605060f, 0.768029f, 0.209754f, + /*v:*/-0.203125f, 0.875724f, 0.456869f, /*n:*/0.157384f, 0.166021f, 0.973449f, + /*v:*/0.156250f, 0.977287f, 0.363119f, /*n:*/-0.605060f, 0.768029f, 0.209754f, + /*v:*/0.062500f, 0.750724f, 0.355307f, /*n:*/-0.824183f, 0.546770f, 0.147313f, + /*v:*/0.203125f, 0.875724f, 0.456869f, /*n:*/-0.157384f, 0.166021f, 0.973449f, + /*v:*/0.062500f, 0.750724f, 0.355307f, /*n:*/-0.824183f, 0.546770f, 0.147313f, + /*v:*/0.101562f, 0.688224f, 0.449057f, /*n:*/-0.061098f, -0.025239f, 0.997803f, + /*v:*/0.203125f, 0.875724f, 0.456869f, /*n:*/-0.157384f, 0.166021f, 0.973449f, + /*v:*/-0.203125f, 0.875724f, 0.456869f, /*n:*/0.157384f, 0.166021f, 0.973449f, + /*v:*/-0.156250f, 0.977287f, 0.363119f, /*n:*/0.605060f, 0.768029f, 0.209754f, + /*v:*/-0.312500f, 0.899162f, 0.441244f, /*n:*/-0.266579f, 0.216590f, 0.939146f, + /*v:*/-0.156250f, 0.977287f, 0.363119f, /*n:*/0.605060f, 0.768029f, 0.209754f, + /*v:*/-0.320312f, 1.016349f, 0.339682f, /*n:*/-0.231269f, 0.956999f, 0.175054f, + /*v:*/-0.312500f, 0.899162f, 0.441244f, /*n:*/-0.266579f, 0.216590f, 0.939146f, + /*v:*/0.320312f, 1.016349f, 0.339682f, /*n:*/0.231269f, 0.956999f, 0.175054f, + /*v:*/0.156250f, 0.977287f, 0.363119f, /*n:*/-0.605060f, 0.768029f, 0.209754f, + /*v:*/0.312500f, 0.899162f, 0.441244f, /*n:*/0.266579f, 0.216590f, 0.939146f, + /*v:*/0.156250f, 0.977287f, 0.363119f, /*n:*/-0.605060f, 0.768029f, 0.209754f, + /*v:*/0.203125f, 0.875724f, 0.456869f, /*n:*/-0.157384f, 0.166021f, 0.973449f, + /*v:*/0.312500f, 0.899162f, 0.441244f, /*n:*/0.266579f, 0.216590f, 0.939146f, + /*v:*/-0.312500f, 0.899162f, 0.441244f, /*n:*/-0.266579f, 0.216590f, 0.939146f, + /*v:*/-0.320312f, 1.016349f, 0.339682f, /*n:*/-0.231269f, 0.956999f, 0.175054f, + /*v:*/-0.492188f, 0.860099f, 0.292807f, /*n:*/-0.597552f, 0.784722f, 0.164586f, + /*v:*/-0.312500f, 0.899162f, 0.441244f, /*n:*/-0.266579f, 0.216590f, 0.939146f, + /*v:*/-0.492188f, 0.860099f, 0.292807f, /*n:*/-0.597552f, 0.784722f, 0.164586f, + /*v:*/-0.437500f, 0.805412f, 0.402182f, /*n:*/-0.308451f, 0.003845f, 0.951201f, + /*v:*/0.492188f, 0.860099f, 0.292807f, /*n:*/0.597552f, 0.784722f, 0.164586f, + /*v:*/0.320312f, 1.016349f, 0.339682f, /*n:*/0.231269f, 0.956999f, 0.175054f, + /*v:*/0.312500f, 0.899162f, 0.441244f, /*n:*/0.266579f, 0.216590f, 0.939146f, + /*v:*/0.492188f, 0.860099f, 0.292807f, /*n:*/0.597552f, 0.784722f, 0.164586f, + /*v:*/0.312500f, 0.899162f, 0.441244f, /*n:*/0.266579f, 0.216590f, 0.939146f, + /*v:*/0.437500f, 0.805412f, 0.402182f, /*n:*/0.308451f, 0.003845f, 0.951201f, + /*v:*/-0.437500f, 0.805412f, 0.402182f, /*n:*/-0.308451f, 0.003845f, 0.951201f, + /*v:*/-0.492188f, 0.860099f, 0.292807f, /*n:*/-0.597552f, 0.784722f, 0.164586f, + /*v:*/-0.687500f, 0.672599f, 0.331869f, /*n:*/-0.480117f, -0.183264f, 0.857814f, + /*v:*/-0.492188f, 0.860099f, 0.292807f, /*n:*/-0.597552f, 0.784722f, 0.164586f, + /*v:*/-0.710938f, 0.742912f, 0.230307f, /*n:*/-0.517045f, 0.829127f, 0.212531f, + /*v:*/-0.687500f, 0.672599f, 0.331869f, /*n:*/-0.480117f, -0.183264f, 0.857814f, + /*v:*/0.710938f, 0.742912f, 0.230307f, /*n:*/0.517045f, 0.829127f, 0.212531f, + /*v:*/0.492188f, 0.860099f, 0.292807f, /*n:*/0.597552f, 0.784722f, 0.164586f, + /*v:*/0.687500f, 0.672599f, 0.331869f, /*n:*/0.480117f, -0.183264f, 0.857814f, + /*v:*/0.492188f, 0.860099f, 0.292807f, /*n:*/0.597552f, 0.784722f, 0.164586f, + /*v:*/0.437500f, 0.805412f, 0.402182f, /*n:*/0.308451f, 0.003845f, 0.951201f, + /*v:*/0.687500f, 0.672599f, 0.331869f, /*n:*/0.480117f, -0.183264f, 0.857814f, + /*v:*/-0.687500f, 0.672599f, 0.331869f, /*n:*/-0.480117f, -0.183264f, 0.857814f, + /*v:*/-0.710938f, 0.742912f, 0.230307f, /*n:*/-0.517045f, 0.829127f, 0.212531f, + /*v:*/-0.742188f, 0.633537f, 0.261557f, /*n:*/-0.460707f, -0.144810f, 0.875637f, + /*v:*/-0.710938f, 0.742912f, 0.230307f, /*n:*/-0.517045f, 0.829127f, 0.212531f, + /*v:*/-0.859375f, 0.688224f, 0.199057f, /*n:*/-0.845119f, 0.443403f, 0.298502f, + /*v:*/-0.742188f, 0.633537f, 0.261557f, /*n:*/-0.460707f, -0.144810f, 0.875637f, + /*v:*/0.859375f, 0.688224f, 0.199057f, /*n:*/0.845119f, 0.443403f, 0.298502f, + /*v:*/0.710938f, 0.742912f, 0.230307f, /*n:*/0.517045f, 0.829127f, 0.212531f, + /*v:*/0.742188f, 0.633537f, 0.261557f, /*n:*/0.460707f, -0.144810f, 0.875637f, + /*v:*/0.710938f, 0.742912f, 0.230307f, /*n:*/0.517045f, 0.829127f, 0.212531f, + /*v:*/0.687500f, 0.672599f, 0.331869f, /*n:*/0.480117f, -0.183264f, 0.857814f, + /*v:*/0.742188f, 0.633537f, 0.261557f, /*n:*/0.460707f, -0.144810f, 0.875637f, + /*v:*/-0.742188f, 0.633537f, 0.261557f, /*n:*/-0.460707f, -0.144810f, 0.875637f, + /*v:*/-0.859375f, 0.688224f, 0.199057f, /*n:*/-0.845119f, 0.443403f, 0.298502f, + /*v:*/-0.726562f, 0.461662f, 0.206869f, /*n:*/-0.566546f, -0.318796f, 0.759819f, + /*v:*/-0.859375f, 0.688224f, 0.199057f, /*n:*/-0.845119f, 0.443403f, 0.298502f, + /*v:*/-0.828125f, 0.406974f, 0.050619f, /*n:*/-0.906980f, -0.400922f, -0.128941f, + /*v:*/-0.726562f, 0.461662f, 0.206869f, /*n:*/-0.566546f, -0.318796f, 0.759819f, + /*v:*/0.828125f, 0.406974f, 0.050619f, /*n:*/0.906980f, -0.400922f, -0.128941f, + /*v:*/0.859375f, 0.688224f, 0.199057f, /*n:*/0.845119f, 0.443403f, 0.298502f, + /*v:*/0.726562f, 0.461662f, 0.206869f, /*n:*/0.566546f, -0.318796f, 0.759819f, + /*v:*/0.859375f, 0.688224f, 0.199057f, /*n:*/0.845119f, 0.443403f, 0.298502f, + /*v:*/0.742188f, 0.633537f, 0.261557f, /*n:*/0.460707f, -0.144810f, 0.875637f, + /*v:*/0.726562f, 0.461662f, 0.206869f, /*n:*/0.566546f, -0.318796f, 0.759819f, + /*v:*/-0.726562f, 0.461662f, 0.206869f, /*n:*/-0.566546f, -0.318796f, 0.759819f, + /*v:*/-0.828125f, 0.406974f, 0.050619f, /*n:*/-0.906980f, -0.400922f, -0.128941f, + /*v:*/-0.632812f, 0.219474f, 0.144369f, /*n:*/-0.587481f, -0.784875f, 0.196966f, + /*v:*/-0.726562f, 0.461662f, 0.206869f, /*n:*/-0.566546f, -0.318796f, 0.759819f, + /*v:*/-0.632812f, 0.219474f, 0.144369f, /*n:*/-0.587481f, -0.784875f, 0.196966f, + /*v:*/-0.617188f, 0.313224f, 0.230307f, /*n:*/-0.499130f, -0.376049f, 0.780663f, + /*v:*/0.632812f, 0.219474f, 0.144369f, /*n:*/0.587481f, -0.784875f, 0.196966f, + /*v:*/0.828125f, 0.406974f, 0.050619f, /*n:*/0.906980f, -0.400922f, -0.128941f, + /*v:*/0.726562f, 0.461662f, 0.206869f, /*n:*/0.566546f, -0.318796f, 0.759819f, + /*v:*/0.632812f, 0.219474f, 0.144369f, /*n:*/0.587481f, -0.784875f, 0.196966f, + /*v:*/0.726562f, 0.461662f, 0.206869f, /*n:*/0.566546f, -0.318796f, 0.759819f, + /*v:*/0.617188f, 0.313224f, 0.230307f, /*n:*/0.499130f, -0.376049f, 0.780663f, + /*v:*/-0.617188f, 0.313224f, 0.230307f, /*n:*/-0.499130f, -0.376049f, 0.780663f, + /*v:*/-0.632812f, 0.219474f, 0.144369f, /*n:*/-0.587481f, -0.784875f, 0.196966f, + /*v:*/-0.398438f, 0.211662f, 0.277182f, /*n:*/-0.344279f, -0.546617f, 0.763298f, + /*v:*/-0.632812f, 0.219474f, 0.144369f, /*n:*/-0.587481f, -0.784875f, 0.196966f, + /*v:*/-0.437500f, 0.117912f, 0.136557f, /*n:*/-0.348827f, -0.937132f, -0.008148f, + /*v:*/-0.398438f, 0.211662f, 0.277182f, /*n:*/-0.344279f, -0.546617f, 0.763298f, + /*v:*/0.437500f, 0.117912f, 0.136557f, /*n:*/0.348827f, -0.937132f, -0.008148f, + /*v:*/0.632812f, 0.219474f, 0.144369f, /*n:*/0.587481f, -0.784875f, 0.196966f, + /*v:*/0.398438f, 0.211662f, 0.277182f, /*n:*/0.344279f, -0.546617f, 0.763298f, + /*v:*/0.632812f, 0.219474f, 0.144369f, /*n:*/0.587481f, -0.784875f, 0.196966f, + /*v:*/0.617188f, 0.313224f, 0.230307f, /*n:*/0.499130f, -0.376049f, 0.780663f, + /*v:*/0.398438f, 0.211662f, 0.277182f, /*n:*/0.344279f, -0.546617f, 0.763298f, + /*v:*/-0.398438f, 0.211662f, 0.277182f, /*n:*/-0.344279f, -0.546617f, 0.763298f, + /*v:*/-0.437500f, 0.117912f, 0.136557f, /*n:*/-0.348827f, -0.937132f, -0.008148f, + /*v:*/-0.203125f, 0.071037f, 0.167807f, /*n:*/-0.891537f, -0.330668f, 0.309458f, + /*v:*/-0.398438f, 0.211662f, 0.277182f, /*n:*/-0.344279f, -0.546617f, 0.763298f, + /*v:*/-0.203125f, 0.071037f, 0.167807f, /*n:*/-0.891537f, -0.330668f, 0.309458f, + /*v:*/-0.125000f, 0.156974f, 0.417807f, /*n:*/-0.056093f, -0.263863f, 0.962920f, + /*v:*/0.203125f, 0.071037f, 0.167807f, /*n:*/0.891537f, -0.330668f, 0.309458f, + /*v:*/0.437500f, 0.117912f, 0.136557f, /*n:*/0.348827f, -0.937132f, -0.008148f, + /*v:*/0.398438f, 0.211662f, 0.277182f, /*n:*/0.344279f, -0.546617f, 0.763298f, + /*v:*/0.203125f, 0.071037f, 0.167807f, /*n:*/0.891537f, -0.330668f, 0.309458f, + /*v:*/0.398438f, 0.211662f, 0.277182f, /*n:*/0.344279f, -0.546617f, 0.763298f, + /*v:*/0.125000f, 0.156974f, 0.417807f, /*n:*/0.056093f, -0.263863f, 0.962920f, + /*v:*/-0.250000f, -0.444588f, 0.292807f, /*n:*/-0.565172f, -0.029725f, 0.824396f, + /*v:*/-0.210938f, -0.186776f, 0.316244f, /*n:*/-0.593677f, 0.108158f, 0.797388f, + /*v:*/-0.312500f, -0.178963f, 0.175619f, /*n:*/-0.955718f, 0.249184f, 0.156468f, + /*v:*/-0.250000f, -0.444588f, 0.292807f, /*n:*/-0.565172f, -0.029725f, 0.824396f, + /*v:*/-0.312500f, -0.178963f, 0.175619f, /*n:*/-0.955718f, 0.249184f, 0.156468f, + /*v:*/-0.351562f, -0.436776f, 0.175619f, /*n:*/-0.972808f, 0.100314f, 0.208716f, + /*v:*/0.312500f, -0.178963f, 0.175619f, /*n:*/0.955718f, 0.249184f, 0.156468f, + /*v:*/0.210938f, -0.186776f, 0.316244f, /*n:*/0.593677f, 0.108158f, 0.797388f, + /*v:*/0.250000f, -0.444588f, 0.292807f, /*n:*/0.565172f, -0.029725f, 0.824396f, + /*v:*/0.312500f, -0.178963f, 0.175619f, /*n:*/0.955718f, 0.249184f, 0.156468f, + /*v:*/0.250000f, -0.444588f, 0.292807f, /*n:*/0.565172f, -0.029725f, 0.824396f, + /*v:*/0.351562f, -0.436776f, 0.175619f, /*n:*/0.972808f, 0.100314f, 0.208716f, + /*v:*/-0.265625f, -0.561776f, 0.269370f, /*n:*/-0.555650f, -0.226356f, 0.799982f, + /*v:*/-0.250000f, -0.444588f, 0.292807f, /*n:*/-0.565172f, -0.029725f, 0.824396f, + /*v:*/-0.351562f, -0.436776f, 0.175619f, /*n:*/-0.972808f, 0.100314f, 0.208716f, + /*v:*/-0.265625f, -0.561776f, 0.269370f, /*n:*/-0.555650f, -0.226356f, 0.799982f, + /*v:*/-0.351562f, -0.436776f, 0.175619f, /*n:*/-0.972808f, 0.100314f, 0.208716f, + /*v:*/-0.367188f, -0.632088f, 0.136557f, /*n:*/-0.945708f, -0.257851f, 0.197699f, + /*v:*/0.351562f, -0.436776f, 0.175619f, /*n:*/0.972808f, 0.100314f, 0.208716f, + /*v:*/0.250000f, -0.444588f, 0.292807f, /*n:*/0.565172f, -0.029725f, 0.824396f, + /*v:*/0.265625f, -0.561776f, 0.269370f, /*n:*/0.555650f, -0.226356f, 0.799982f, + /*v:*/0.351562f, -0.436776f, 0.175619f, /*n:*/0.972808f, 0.100314f, 0.208716f, + /*v:*/0.265625f, -0.561776f, 0.269370f, /*n:*/0.555650f, -0.226356f, 0.799982f, + /*v:*/0.367188f, -0.632088f, 0.136557f, /*n:*/0.945708f, -0.257851f, 0.197699f, + /*v:*/-0.234375f, -0.655526f, 0.238120f, /*n:*/-0.350230f, -0.639149f, 0.684683f, + /*v:*/-0.265625f, -0.561776f, 0.269370f, /*n:*/-0.555650f, -0.226356f, 0.799982f, + /*v:*/-0.367188f, -0.632088f, 0.136557f, /*n:*/-0.945708f, -0.257851f, 0.197699f, + /*v:*/-0.234375f, -0.655526f, 0.238120f, /*n:*/-0.350230f, -0.639149f, 0.684683f, + /*v:*/-0.367188f, -0.632088f, 0.136557f, /*n:*/-0.945708f, -0.257851f, 0.197699f, + /*v:*/-0.328125f, -0.686776f, 0.128745f, /*n:*/-0.526658f, -0.834651f, 0.161107f, + /*v:*/0.367188f, -0.632088f, 0.136557f, /*n:*/0.945708f, -0.257851f, 0.197699f, + /*v:*/0.265625f, -0.561776f, 0.269370f, /*n:*/0.555650f, -0.226356f, 0.799982f, + /*v:*/0.234375f, -0.655526f, 0.238120f, /*n:*/0.350230f, -0.639149f, 0.684683f, + /*v:*/0.367188f, -0.632088f, 0.136557f, /*n:*/0.945708f, -0.257851f, 0.197699f, + /*v:*/0.234375f, -0.655526f, 0.238120f, /*n:*/0.350230f, -0.639149f, 0.684683f, + /*v:*/0.328125f, -0.686776f, 0.128745f, /*n:*/0.526658f, -0.834651f, 0.161107f, + /*v:*/-0.164062f, -0.671151f, 0.238120f, /*n:*/-0.155370f, -0.758965f, 0.632282f, + /*v:*/-0.234375f, -0.655526f, 0.238120f, /*n:*/-0.350230f, -0.639149f, 0.684683f, + /*v:*/-0.179688f, -0.710213f, 0.159995f, /*n:*/-0.159551f, -0.975249f, 0.152898f, + /*v:*/-0.234375f, -0.655526f, 0.238120f, /*n:*/-0.350230f, -0.639149f, 0.684683f, + /*v:*/-0.328125f, -0.686776f, 0.128745f, /*n:*/-0.526658f, -0.834651f, 0.161107f, + /*v:*/-0.179688f, -0.710213f, 0.159995f, /*n:*/-0.159551f, -0.975249f, 0.152898f, + /*v:*/0.328125f, -0.686776f, 0.128745f, /*n:*/0.526658f, -0.834651f, 0.161107f, + /*v:*/0.234375f, -0.655526f, 0.238120f, /*n:*/0.350230f, -0.639149f, 0.684683f, + /*v:*/0.179688f, -0.710213f, 0.159995f, /*n:*/0.159551f, -0.975249f, 0.152898f, + /*v:*/0.234375f, -0.655526f, 0.238120f, /*n:*/0.350230f, -0.639149f, 0.684683f, + /*v:*/0.164062f, -0.671151f, 0.238120f, /*n:*/0.155370f, -0.758965f, 0.632282f, + /*v:*/0.179688f, -0.710213f, 0.159995f, /*n:*/0.159551f, -0.975249f, 0.152898f, + /*v:*/0.000000f, -0.686776f, 0.245932f, /*n:*/0.000000f, -0.775323f, 0.631550f, + /*v:*/-0.164062f, -0.671151f, 0.238120f, /*n:*/-0.155370f, -0.758965f, 0.632282f, + /*v:*/0.000000f, -0.725838f, 0.183432f, /*n:*/0.000000f, -0.967650f, 0.252266f, + /*v:*/-0.164062f, -0.671151f, 0.238120f, /*n:*/-0.155370f, -0.758965f, 0.632282f, + /*v:*/-0.179688f, -0.710213f, 0.159995f, /*n:*/-0.159551f, -0.975249f, 0.152898f, + /*v:*/0.000000f, -0.725838f, 0.183432f, /*n:*/0.000000f, -0.967650f, 0.252266f, + /*v:*/0.179688f, -0.710213f, 0.159995f, /*n:*/0.159551f, -0.975249f, 0.152898f, + /*v:*/0.164062f, -0.671151f, 0.238120f, /*n:*/0.155370f, -0.758965f, 0.632282f, + /*v:*/0.000000f, -0.725838f, 0.183432f, /*n:*/0.000000f, -0.967650f, 0.252266f, + /*v:*/0.164062f, -0.671151f, 0.238120f, /*n:*/0.155370f, -0.758965f, 0.632282f, + /*v:*/0.000000f, -0.686776f, 0.245932f, /*n:*/0.000000f, -0.775323f, 0.631550f, + /*v:*/0.000000f, -0.725838f, 0.183432f, /*n:*/0.000000f, -0.967650f, 0.252266f, + /*v:*/-0.476562f, 0.500724f, 0.378744f, /*n:*/-0.964446f, -0.012665f, 0.263863f, + /*v:*/-0.468750f, 0.500724f, 0.363119f, /*n:*/-0.969298f, -0.011811f, 0.245552f, + /*v:*/-0.437500f, 0.422599f, 0.370932f, /*n:*/-0.728996f, -0.656575f, 0.193426f, + /*v:*/-0.476562f, 0.500724f, 0.378744f, /*n:*/-0.964446f, -0.012665f, 0.263863f, + /*v:*/-0.437500f, 0.422599f, 0.370932f, /*n:*/-0.728996f, -0.656575f, 0.193426f, + /*v:*/-0.445312f, 0.414787f, 0.386557f, /*n:*/-0.715171f, -0.662465f, 0.222724f, + /*v:*/0.437500f, 0.422599f, 0.370932f, /*n:*/0.728996f, -0.656575f, 0.193426f, + /*v:*/0.468750f, 0.500724f, 0.363119f, /*n:*/0.969298f, -0.011811f, 0.245552f, + /*v:*/0.476562f, 0.500724f, 0.378744f, /*n:*/0.964446f, -0.012665f, 0.263863f, + /*v:*/0.437500f, 0.422599f, 0.370932f, /*n:*/0.728996f, -0.656575f, 0.193426f, + /*v:*/0.476562f, 0.500724f, 0.378744f, /*n:*/0.964446f, -0.012665f, 0.263863f, + /*v:*/0.445312f, 0.414787f, 0.386557f, /*n:*/0.715171f, -0.662465f, 0.222724f, + /*v:*/-0.445312f, 0.414787f, 0.386557f, /*n:*/-0.715171f, -0.662465f, 0.222724f, + /*v:*/-0.437500f, 0.422599f, 0.370932f, /*n:*/-0.728996f, -0.656575f, 0.193426f, + /*v:*/-0.351562f, 0.391349f, 0.386557f, /*n:*/-0.031404f, -0.966948f, 0.252907f, + /*v:*/-0.445312f, 0.414787f, 0.386557f, /*n:*/-0.715171f, -0.662465f, 0.222724f, + /*v:*/-0.351562f, 0.391349f, 0.386557f, /*n:*/-0.031404f, -0.966948f, 0.252907f, + /*v:*/-0.351562f, 0.375724f, 0.409994f, /*n:*/-0.042543f, -0.940336f, 0.337474f, + /*v:*/0.351562f, 0.391349f, 0.386557f, /*n:*/0.031404f, -0.966948f, 0.252907f, + /*v:*/0.437500f, 0.422599f, 0.370932f, /*n:*/0.728996f, -0.656575f, 0.193426f, + /*v:*/0.445312f, 0.414787f, 0.386557f, /*n:*/0.715171f, -0.662465f, 0.222724f, + /*v:*/0.351562f, 0.391349f, 0.386557f, /*n:*/0.031404f, -0.966948f, 0.252907f, + /*v:*/0.445312f, 0.414787f, 0.386557f, /*n:*/0.715171f, -0.662465f, 0.222724f, + /*v:*/0.351562f, 0.375724f, 0.409994f, /*n:*/0.042543f, -0.940336f, 0.337474f, + /*v:*/-0.351562f, 0.375724f, 0.409994f, /*n:*/-0.042543f, -0.940336f, 0.337474f, + /*v:*/-0.351562f, 0.391349f, 0.386557f, /*n:*/-0.031404f, -0.966948f, 0.252907f, + /*v:*/-0.273438f, 0.422599f, 0.402182f, /*n:*/0.653066f, -0.686636f, 0.319315f, + /*v:*/-0.351562f, 0.375724f, 0.409994f, /*n:*/-0.042543f, -0.940336f, 0.337474f, + /*v:*/-0.273438f, 0.422599f, 0.402182f, /*n:*/0.653066f, -0.686636f, 0.319315f, + /*v:*/-0.265625f, 0.414787f, 0.425619f, /*n:*/0.615864f, -0.636616f, 0.464095f, + /*v:*/0.273438f, 0.422599f, 0.402182f, /*n:*/-0.653066f, -0.686636f, 0.319315f, + /*v:*/0.351562f, 0.391349f, 0.386557f, /*n:*/0.031404f, -0.966948f, 0.252907f, + /*v:*/0.351562f, 0.375724f, 0.409994f, /*n:*/0.042543f, -0.940336f, 0.337474f, + /*v:*/0.273438f, 0.422599f, 0.402182f, /*n:*/-0.653066f, -0.686636f, 0.319315f, + /*v:*/0.351562f, 0.375724f, 0.409994f, /*n:*/0.042543f, -0.940336f, 0.337474f, + /*v:*/0.265625f, 0.414787f, 0.425619f, /*n:*/-0.615864f, -0.636616f, 0.464095f, + /*v:*/-0.265625f, 0.414787f, 0.425619f, /*n:*/0.615864f, -0.636616f, 0.464095f, + /*v:*/-0.273438f, 0.422599f, 0.402182f, /*n:*/0.653066f, -0.686636f, 0.319315f, + /*v:*/-0.242188f, 0.500724f, 0.402182f, /*n:*/0.952574f, -0.013123f, 0.303995f, + /*v:*/-0.265625f, 0.414787f, 0.425619f, /*n:*/0.615864f, -0.636616f, 0.464095f, + /*v:*/-0.242188f, 0.500724f, 0.402182f, /*n:*/0.952574f, -0.013123f, 0.303995f, + /*v:*/-0.226562f, 0.500724f, 0.425619f, /*n:*/0.926969f, -0.012940f, 0.374889f, + /*v:*/0.242188f, 0.500724f, 0.402182f, /*n:*/-0.952574f, -0.013123f, 0.303995f, + /*v:*/0.273438f, 0.422599f, 0.402182f, /*n:*/-0.653066f, -0.686636f, 0.319315f, + /*v:*/0.265625f, 0.414787f, 0.425619f, /*n:*/-0.615864f, -0.636616f, 0.464095f, + /*v:*/0.242188f, 0.500724f, 0.402182f, /*n:*/-0.952574f, -0.013123f, 0.303995f, + /*v:*/0.265625f, 0.414787f, 0.425619f, /*n:*/-0.615864f, -0.636616f, 0.464095f, + /*v:*/0.226562f, 0.500724f, 0.425619f, /*n:*/-0.926969f, -0.012940f, 0.374889f, + /*v:*/-0.226562f, 0.500724f, 0.425619f, /*n:*/0.926969f, -0.012940f, 0.374889f, + /*v:*/-0.242188f, 0.500724f, 0.402182f, /*n:*/0.952574f, -0.013123f, 0.303995f, + /*v:*/-0.265625f, 0.594474f, 0.425619f, /*n:*/0.623676f, 0.628529f, 0.464675f, + /*v:*/-0.242188f, 0.500724f, 0.402182f, /*n:*/0.952574f, -0.013123f, 0.303995f, + /*v:*/-0.273438f, 0.586662f, 0.402182f, /*n:*/0.664357f, 0.682058f, 0.305582f, + /*v:*/-0.265625f, 0.594474f, 0.425619f, /*n:*/0.623676f, 0.628529f, 0.464675f, + /*v:*/0.273438f, 0.586662f, 0.402182f, /*n:*/-0.664357f, 0.682058f, 0.305582f, + /*v:*/0.242188f, 0.500724f, 0.402182f, /*n:*/-0.952574f, -0.013123f, 0.303995f, + /*v:*/0.265625f, 0.594474f, 0.425619f, /*n:*/-0.623676f, 0.628529f, 0.464675f, + /*v:*/0.242188f, 0.500724f, 0.402182f, /*n:*/-0.952574f, -0.013123f, 0.303995f, + /*v:*/0.226562f, 0.500724f, 0.425619f, /*n:*/-0.926969f, -0.012940f, 0.374889f, + /*v:*/0.265625f, 0.594474f, 0.425619f, /*n:*/-0.623676f, 0.628529f, 0.464675f, + /*v:*/-0.265625f, 0.594474f, 0.425619f, /*n:*/0.623676f, 0.628529f, 0.464675f, + /*v:*/-0.273438f, 0.586662f, 0.402182f, /*n:*/0.664357f, 0.682058f, 0.305582f, + /*v:*/-0.351562f, 0.633537f, 0.409994f, /*n:*/-0.043153f, 0.938902f, 0.341441f, + /*v:*/-0.273438f, 0.586662f, 0.402182f, /*n:*/0.664357f, 0.682058f, 0.305582f, + /*v:*/-0.351562f, 0.617912f, 0.386557f, /*n:*/-0.025727f, 0.972564f, 0.231147f, + /*v:*/-0.351562f, 0.633537f, 0.409994f, /*n:*/-0.043153f, 0.938902f, 0.341441f, + /*v:*/0.351562f, 0.617912f, 0.386557f, /*n:*/0.025727f, 0.972564f, 0.231147f, + /*v:*/0.273438f, 0.586662f, 0.402182f, /*n:*/-0.664357f, 0.682058f, 0.305582f, + /*v:*/0.351562f, 0.633537f, 0.409994f, /*n:*/0.043153f, 0.938902f, 0.341441f, + /*v:*/0.273438f, 0.586662f, 0.402182f, /*n:*/-0.664357f, 0.682058f, 0.305582f, + /*v:*/0.265625f, 0.594474f, 0.425619f, /*n:*/-0.623676f, 0.628529f, 0.464675f, + /*v:*/0.351562f, 0.633537f, 0.409994f, /*n:*/0.043153f, 0.938902f, 0.341441f, + /*v:*/-0.351562f, 0.633537f, 0.409994f, /*n:*/-0.043153f, 0.938902f, 0.341441f, + /*v:*/-0.351562f, 0.617912f, 0.386557f, /*n:*/-0.025727f, 0.972564f, 0.231147f, + /*v:*/-0.445312f, 0.594474f, 0.386557f, /*n:*/-0.721610f, 0.655568f, 0.222388f, + /*v:*/-0.351562f, 0.617912f, 0.386557f, /*n:*/-0.025727f, 0.972564f, 0.231147f, + /*v:*/-0.437500f, 0.586662f, 0.370932f, /*n:*/-0.736381f, 0.652089f, 0.180273f, + /*v:*/-0.445312f, 0.594474f, 0.386557f, /*n:*/-0.721610f, 0.655568f, 0.222388f, + /*v:*/0.437500f, 0.586662f, 0.370932f, /*n:*/0.736381f, 0.652089f, 0.180273f, + /*v:*/0.351562f, 0.617912f, 0.386557f, /*n:*/0.025727f, 0.972564f, 0.231147f, + /*v:*/0.445312f, 0.594474f, 0.386557f, /*n:*/0.721610f, 0.655568f, 0.222388f, + /*v:*/0.351562f, 0.617912f, 0.386557f, /*n:*/0.025727f, 0.972564f, 0.231147f, + /*v:*/0.351562f, 0.633537f, 0.409994f, /*n:*/0.043153f, 0.938902f, 0.341441f, + /*v:*/0.445312f, 0.594474f, 0.386557f, /*n:*/0.721610f, 0.655568f, 0.222388f, + /*v:*/-0.445312f, 0.594474f, 0.386557f, /*n:*/-0.721610f, 0.655568f, 0.222388f, + /*v:*/-0.437500f, 0.586662f, 0.370932f, /*n:*/-0.736381f, 0.652089f, 0.180273f, + /*v:*/-0.476562f, 0.500724f, 0.378744f, /*n:*/-0.964446f, -0.012665f, 0.263863f, + /*v:*/-0.437500f, 0.586662f, 0.370932f, /*n:*/-0.736381f, 0.652089f, 0.180273f, + /*v:*/-0.468750f, 0.500724f, 0.363119f, /*n:*/-0.969298f, -0.011811f, 0.245552f, + /*v:*/-0.476562f, 0.500724f, 0.378744f, /*n:*/-0.964446f, -0.012665f, 0.263863f, + /*v:*/0.468750f, 0.500724f, 0.363119f, /*n:*/0.969298f, -0.011811f, 0.245552f, + /*v:*/0.437500f, 0.586662f, 0.370932f, /*n:*/0.736381f, 0.652089f, 0.180273f, + /*v:*/0.476562f, 0.500724f, 0.378744f, /*n:*/0.964446f, -0.012665f, 0.263863f, + /*v:*/0.437500f, 0.586662f, 0.370932f, /*n:*/0.736381f, 0.652089f, 0.180273f, + /*v:*/0.445312f, 0.594474f, 0.386557f, /*n:*/0.721610f, 0.655568f, 0.222388f, + /*v:*/0.476562f, 0.500724f, 0.378744f, /*n:*/0.964446f, -0.012665f, 0.263863f, + /*v:*/-0.562500f, 0.500724f, 0.277182f, /*n:*/-0.800104f, -0.002838f, 0.599841f, + /*v:*/-0.468750f, 0.500724f, 0.363119f, /*n:*/-0.969298f, -0.011811f, 0.245552f, + /*v:*/-0.500000f, 0.649162f, 0.292807f, /*n:*/-0.610218f, 0.495590f, 0.618061f, + /*v:*/-0.468750f, 0.500724f, 0.363119f, /*n:*/-0.969298f, -0.011811f, 0.245552f, + /*v:*/-0.437500f, 0.586662f, 0.370932f, /*n:*/-0.736381f, 0.652089f, 0.180273f, + /*v:*/-0.500000f, 0.649162f, 0.292807f, /*n:*/-0.610218f, 0.495590f, 0.618061f, + /*v:*/0.437500f, 0.586662f, 0.370932f, /*n:*/0.736381f, 0.652089f, 0.180273f, + /*v:*/0.468750f, 0.500724f, 0.363119f, /*n:*/0.969298f, -0.011811f, 0.245552f, + /*v:*/0.500000f, 0.649162f, 0.292807f, /*n:*/0.610218f, 0.495590f, 0.618061f, + /*v:*/0.468750f, 0.500724f, 0.363119f, /*n:*/0.969298f, -0.011811f, 0.245552f, + /*v:*/0.562500f, 0.500724f, 0.277182f, /*n:*/0.800104f, -0.002838f, 0.599841f, + /*v:*/0.500000f, 0.649162f, 0.292807f, /*n:*/0.610218f, 0.495590f, 0.618061f, + /*v:*/-0.625000f, 0.500724f, 0.167807f, /*n:*/-0.868221f, -0.004730f, 0.496109f, + /*v:*/-0.562500f, 0.500724f, 0.277182f, /*n:*/-0.800104f, -0.002838f, 0.599841f, + /*v:*/-0.546875f, 0.696037f, 0.183432f, /*n:*/-0.668203f, 0.537095f, 0.514786f, + /*v:*/-0.562500f, 0.500724f, 0.277182f, /*n:*/-0.800104f, -0.002838f, 0.599841f, + /*v:*/-0.500000f, 0.649162f, 0.292807f, /*n:*/-0.610218f, 0.495590f, 0.618061f, + /*v:*/-0.546875f, 0.696037f, 0.183432f, /*n:*/-0.668203f, 0.537095f, 0.514786f, + /*v:*/0.500000f, 0.649162f, 0.292807f, /*n:*/0.610218f, 0.495590f, 0.618061f, + /*v:*/0.562500f, 0.500724f, 0.277182f, /*n:*/0.800104f, -0.002838f, 0.599841f, + /*v:*/0.546875f, 0.696037f, 0.183432f, /*n:*/0.668203f, 0.537095f, 0.514786f, + /*v:*/0.562500f, 0.500724f, 0.277182f, /*n:*/0.800104f, -0.002838f, 0.599841f, + /*v:*/0.625000f, 0.500724f, 0.167807f, /*n:*/0.868221f, -0.004730f, 0.496109f, + /*v:*/0.546875f, 0.696037f, 0.183432f, /*n:*/0.668203f, 0.537095f, 0.514786f, + /*v:*/-0.546875f, 0.696037f, 0.183432f, /*n:*/-0.668203f, 0.537095f, 0.514786f, + /*v:*/-0.500000f, 0.649162f, 0.292807f, /*n:*/-0.610218f, 0.495590f, 0.618061f, + /*v:*/-0.351562f, 0.774162f, 0.222494f, /*n:*/-0.125736f, 0.841578f, 0.525254f, + /*v:*/-0.500000f, 0.649162f, 0.292807f, /*n:*/-0.610218f, 0.495590f, 0.618061f, + /*v:*/-0.351562f, 0.711662f, 0.324057f, /*n:*/-0.103061f, 0.740196f, 0.664388f, + /*v:*/-0.351562f, 0.774162f, 0.222494f, /*n:*/-0.125736f, 0.841578f, 0.525254f, + /*v:*/0.351562f, 0.711662f, 0.324057f, /*n:*/0.103061f, 0.740196f, 0.664388f, + /*v:*/0.500000f, 0.649162f, 0.292807f, /*n:*/0.610218f, 0.495590f, 0.618061f, + /*v:*/0.351562f, 0.774162f, 0.222494f, /*n:*/0.125736f, 0.841578f, 0.525254f, + /*v:*/0.500000f, 0.649162f, 0.292807f, /*n:*/0.610218f, 0.495590f, 0.618061f, + /*v:*/0.546875f, 0.696037f, 0.183432f, /*n:*/0.668203f, 0.537095f, 0.514786f, + /*v:*/0.351562f, 0.774162f, 0.222494f, /*n:*/0.125736f, 0.841578f, 0.525254f, + /*v:*/-0.500000f, 0.649162f, 0.292807f, /*n:*/-0.610218f, 0.495590f, 0.618061f, + /*v:*/-0.437500f, 0.586662f, 0.370932f, /*n:*/-0.736381f, 0.652089f, 0.180273f, + /*v:*/-0.351562f, 0.711662f, 0.324057f, /*n:*/-0.103061f, 0.740196f, 0.664388f, + /*v:*/-0.437500f, 0.586662f, 0.370932f, /*n:*/-0.736381f, 0.652089f, 0.180273f, + /*v:*/-0.351562f, 0.617912f, 0.386557f, /*n:*/-0.025727f, 0.972564f, 0.231147f, + /*v:*/-0.351562f, 0.711662f, 0.324057f, /*n:*/-0.103061f, 0.740196f, 0.664388f, + /*v:*/0.351562f, 0.617912f, 0.386557f, /*n:*/0.025727f, 0.972564f, 0.231147f, + /*v:*/0.437500f, 0.586662f, 0.370932f, /*n:*/0.736381f, 0.652089f, 0.180273f, + /*v:*/0.351562f, 0.711662f, 0.324057f, /*n:*/0.103061f, 0.740196f, 0.664388f, + /*v:*/0.437500f, 0.586662f, 0.370932f, /*n:*/0.736381f, 0.652089f, 0.180273f, + /*v:*/0.500000f, 0.649162f, 0.292807f, /*n:*/0.610218f, 0.495590f, 0.618061f, + /*v:*/0.351562f, 0.711662f, 0.324057f, /*n:*/0.103061f, 0.740196f, 0.664388f, + /*v:*/-0.351562f, 0.711662f, 0.324057f, /*n:*/-0.103061f, 0.740196f, 0.664388f, + /*v:*/-0.351562f, 0.617912f, 0.386557f, /*n:*/-0.025727f, 0.972564f, 0.231147f, + /*v:*/-0.203125f, 0.649162f, 0.347494f, /*n:*/0.455947f, 0.522202f, 0.720664f, + /*v:*/-0.351562f, 0.617912f, 0.386557f, /*n:*/-0.025727f, 0.972564f, 0.231147f, + /*v:*/-0.273438f, 0.586662f, 0.402182f, /*n:*/0.664357f, 0.682058f, 0.305582f, + /*v:*/-0.203125f, 0.649162f, 0.347494f, /*n:*/0.455947f, 0.522202f, 0.720664f, + /*v:*/0.273438f, 0.586662f, 0.402182f, /*n:*/-0.664357f, 0.682058f, 0.305582f, + /*v:*/0.351562f, 0.617912f, 0.386557f, /*n:*/0.025727f, 0.972564f, 0.231147f, + /*v:*/0.203125f, 0.649162f, 0.347494f, /*n:*/-0.455947f, 0.522202f, 0.720664f, + /*v:*/0.351562f, 0.617912f, 0.386557f, /*n:*/0.025727f, 0.972564f, 0.231147f, + /*v:*/0.351562f, 0.711662f, 0.324057f, /*n:*/0.103061f, 0.740196f, 0.664388f, + /*v:*/0.203125f, 0.649162f, 0.347494f, /*n:*/-0.455947f, 0.522202f, 0.720664f, + /*v:*/-0.351562f, 0.774162f, 0.222494f, /*n:*/-0.125736f, 0.841578f, 0.525254f, + /*v:*/-0.351562f, 0.711662f, 0.324057f, /*n:*/-0.103061f, 0.740196f, 0.664388f, + /*v:*/-0.156250f, 0.696037f, 0.253744f, /*n:*/0.530595f, 0.625751f, 0.571703f, + /*v:*/-0.351562f, 0.711662f, 0.324057f, /*n:*/-0.103061f, 0.740196f, 0.664388f, + /*v:*/-0.203125f, 0.649162f, 0.347494f, /*n:*/0.455947f, 0.522202f, 0.720664f, + /*v:*/-0.156250f, 0.696037f, 0.253744f, /*n:*/0.530595f, 0.625751f, 0.571703f, + /*v:*/0.203125f, 0.649162f, 0.347494f, /*n:*/-0.455947f, 0.522202f, 0.720664f, + /*v:*/0.351562f, 0.711662f, 0.324057f, /*n:*/0.103061f, 0.740196f, 0.664388f, + /*v:*/0.156250f, 0.696037f, 0.253744f, /*n:*/-0.530595f, 0.625751f, 0.571703f, + /*v:*/0.351562f, 0.711662f, 0.324057f, /*n:*/0.103061f, 0.740196f, 0.664388f, + /*v:*/0.351562f, 0.774162f, 0.222494f, /*n:*/0.125736f, 0.841578f, 0.525254f, + /*v:*/0.156250f, 0.696037f, 0.253744f, /*n:*/-0.530595f, 0.625751f, 0.571703f, + /*v:*/-0.156250f, 0.696037f, 0.253744f, /*n:*/0.530595f, 0.625751f, 0.571703f, + /*v:*/-0.203125f, 0.649162f, 0.347494f, /*n:*/0.455947f, 0.522202f, 0.720664f, + /*v:*/-0.078125f, 0.500724f, 0.261557f, /*n:*/0.809717f, -0.006989f, 0.586749f, + /*v:*/-0.203125f, 0.649162f, 0.347494f, /*n:*/0.455947f, 0.522202f, 0.720664f, + /*v:*/-0.140625f, 0.500724f, 0.347494f, /*n:*/0.689291f, -0.004578f, 0.724418f, + /*v:*/-0.078125f, 0.500724f, 0.261557f, /*n:*/0.809717f, -0.006989f, 0.586749f, + /*v:*/0.140625f, 0.500724f, 0.347494f, /*n:*/-0.689291f, -0.004578f, 0.724418f, + /*v:*/0.203125f, 0.649162f, 0.347494f, /*n:*/-0.455947f, 0.522202f, 0.720664f, + /*v:*/0.078125f, 0.500724f, 0.261557f, /*n:*/-0.809717f, -0.006989f, 0.586749f, + /*v:*/0.203125f, 0.649162f, 0.347494f, /*n:*/-0.455947f, 0.522202f, 0.720664f, + /*v:*/0.156250f, 0.696037f, 0.253744f, /*n:*/-0.530595f, 0.625751f, 0.571703f, + /*v:*/0.078125f, 0.500724f, 0.261557f, /*n:*/-0.809717f, -0.006989f, 0.586749f, + /*v:*/-0.203125f, 0.649162f, 0.347494f, /*n:*/0.455947f, 0.522202f, 0.720664f, + /*v:*/-0.273438f, 0.586662f, 0.402182f, /*n:*/0.664357f, 0.682058f, 0.305582f, + /*v:*/-0.242188f, 0.500724f, 0.402182f, /*n:*/0.952574f, -0.013123f, 0.303995f, + /*v:*/-0.203125f, 0.649162f, 0.347494f, /*n:*/0.455947f, 0.522202f, 0.720664f, + /*v:*/-0.242188f, 0.500724f, 0.402182f, /*n:*/0.952574f, -0.013123f, 0.303995f, + /*v:*/-0.140625f, 0.500724f, 0.347494f, /*n:*/0.689291f, -0.004578f, 0.724418f, + /*v:*/0.242188f, 0.500724f, 0.402182f, /*n:*/-0.952574f, -0.013123f, 0.303995f, + /*v:*/0.273438f, 0.586662f, 0.402182f, /*n:*/-0.664357f, 0.682058f, 0.305582f, + /*v:*/0.203125f, 0.649162f, 0.347494f, /*n:*/-0.455947f, 0.522202f, 0.720664f, + /*v:*/0.242188f, 0.500724f, 0.402182f, /*n:*/-0.952574f, -0.013123f, 0.303995f, + /*v:*/0.203125f, 0.649162f, 0.347494f, /*n:*/-0.455947f, 0.522202f, 0.720664f, + /*v:*/0.140625f, 0.500724f, 0.347494f, /*n:*/-0.689291f, -0.004578f, 0.724418f, + /*v:*/-0.140625f, 0.500724f, 0.347494f, /*n:*/0.689291f, -0.004578f, 0.724418f, + /*v:*/-0.242188f, 0.500724f, 0.402182f, /*n:*/0.952574f, -0.013123f, 0.303995f, + /*v:*/-0.203125f, 0.352287f, 0.347494f, /*n:*/0.456282f, -0.535356f, 0.710746f, + /*v:*/-0.242188f, 0.500724f, 0.402182f, /*n:*/0.952574f, -0.013123f, 0.303995f, + /*v:*/-0.273438f, 0.422599f, 0.402182f, /*n:*/0.653066f, -0.686636f, 0.319315f, + /*v:*/-0.203125f, 0.352287f, 0.347494f, /*n:*/0.456282f, -0.535356f, 0.710746f, + /*v:*/0.273438f, 0.422599f, 0.402182f, /*n:*/-0.653066f, -0.686636f, 0.319315f, + /*v:*/0.242188f, 0.500724f, 0.402182f, /*n:*/-0.952574f, -0.013123f, 0.303995f, + /*v:*/0.203125f, 0.352287f, 0.347494f, /*n:*/-0.456282f, -0.535356f, 0.710746f, + /*v:*/0.242188f, 0.500724f, 0.402182f, /*n:*/-0.952574f, -0.013123f, 0.303995f, + /*v:*/0.140625f, 0.500724f, 0.347494f, /*n:*/-0.689291f, -0.004578f, 0.724418f, + /*v:*/0.203125f, 0.352287f, 0.347494f, /*n:*/-0.456282f, -0.535356f, 0.710746f, + /*v:*/-0.078125f, 0.500724f, 0.261557f, /*n:*/0.809717f, -0.006989f, 0.586749f, + /*v:*/-0.140625f, 0.500724f, 0.347494f, /*n:*/0.689291f, -0.004578f, 0.724418f, + /*v:*/-0.156250f, 0.313224f, 0.253744f, /*n:*/0.553850f, -0.633198f, 0.540635f, + /*v:*/-0.140625f, 0.500724f, 0.347494f, /*n:*/0.689291f, -0.004578f, 0.724418f, + /*v:*/-0.203125f, 0.352287f, 0.347494f, /*n:*/0.456282f, -0.535356f, 0.710746f, + /*v:*/-0.156250f, 0.313224f, 0.253744f, /*n:*/0.553850f, -0.633198f, 0.540635f, + /*v:*/0.203125f, 0.352287f, 0.347494f, /*n:*/-0.456282f, -0.535356f, 0.710746f, + /*v:*/0.140625f, 0.500724f, 0.347494f, /*n:*/-0.689291f, -0.004578f, 0.724418f, + /*v:*/0.156250f, 0.313224f, 0.253744f, /*n:*/-0.553850f, -0.633198f, 0.540635f, + /*v:*/0.140625f, 0.500724f, 0.347494f, /*n:*/-0.689291f, -0.004578f, 0.724418f, + /*v:*/0.078125f, 0.500724f, 0.261557f, /*n:*/-0.809717f, -0.006989f, 0.586749f, + /*v:*/0.156250f, 0.313224f, 0.253744f, /*n:*/-0.553850f, -0.633198f, 0.540635f, + /*v:*/-0.156250f, 0.313224f, 0.253744f, /*n:*/0.553850f, -0.633198f, 0.540635f, + /*v:*/-0.203125f, 0.352287f, 0.347494f, /*n:*/0.456282f, -0.535356f, 0.710746f, + /*v:*/-0.351562f, 0.289787f, 0.324057f, /*n:*/-0.099490f, -0.751457f, 0.652211f, + /*v:*/-0.156250f, 0.313224f, 0.253744f, /*n:*/0.553850f, -0.633198f, 0.540635f, + /*v:*/-0.351562f, 0.289787f, 0.324057f, /*n:*/-0.099490f, -0.751457f, 0.652211f, + /*v:*/-0.351562f, 0.235099f, 0.222494f, /*n:*/-0.119327f, -0.871151f, 0.476272f, + /*v:*/0.351562f, 0.289787f, 0.324057f, /*n:*/0.099490f, -0.751457f, 0.652211f, + /*v:*/0.203125f, 0.352287f, 0.347494f, /*n:*/-0.456282f, -0.535356f, 0.710746f, + /*v:*/0.156250f, 0.313224f, 0.253744f, /*n:*/-0.553850f, -0.633198f, 0.540635f, + /*v:*/0.351562f, 0.289787f, 0.324057f, /*n:*/0.099490f, -0.751457f, 0.652211f, + /*v:*/0.156250f, 0.313224f, 0.253744f, /*n:*/-0.553850f, -0.633198f, 0.540635f, + /*v:*/0.351562f, 0.235099f, 0.222494f, /*n:*/0.119327f, -0.871151f, 0.476272f, + /*v:*/-0.203125f, 0.352287f, 0.347494f, /*n:*/0.456282f, -0.535356f, 0.710746f, + /*v:*/-0.273438f, 0.422599f, 0.402182f, /*n:*/0.653066f, -0.686636f, 0.319315f, + /*v:*/-0.351562f, 0.391349f, 0.386557f, /*n:*/-0.031404f, -0.966948f, 0.252907f, + /*v:*/-0.203125f, 0.352287f, 0.347494f, /*n:*/0.456282f, -0.535356f, 0.710746f, + /*v:*/-0.351562f, 0.391349f, 0.386557f, /*n:*/-0.031404f, -0.966948f, 0.252907f, + /*v:*/-0.351562f, 0.289787f, 0.324057f, /*n:*/-0.099490f, -0.751457f, 0.652211f, + /*v:*/0.351562f, 0.391349f, 0.386557f, /*n:*/0.031404f, -0.966948f, 0.252907f, + /*v:*/0.273438f, 0.422599f, 0.402182f, /*n:*/-0.653066f, -0.686636f, 0.319315f, + /*v:*/0.203125f, 0.352287f, 0.347494f, /*n:*/-0.456282f, -0.535356f, 0.710746f, + /*v:*/0.351562f, 0.391349f, 0.386557f, /*n:*/0.031404f, -0.966948f, 0.252907f, + /*v:*/0.203125f, 0.352287f, 0.347494f, /*n:*/-0.456282f, -0.535356f, 0.710746f, + /*v:*/0.351562f, 0.289787f, 0.324057f, /*n:*/0.099490f, -0.751457f, 0.652211f, + /*v:*/-0.351562f, 0.289787f, 0.324057f, /*n:*/-0.099490f, -0.751457f, 0.652211f, + /*v:*/-0.351562f, 0.391349f, 0.386557f, /*n:*/-0.031404f, -0.966948f, 0.252907f, + /*v:*/-0.437500f, 0.422599f, 0.370932f, /*n:*/-0.728996f, -0.656575f, 0.193426f, + /*v:*/-0.351562f, 0.289787f, 0.324057f, /*n:*/-0.099490f, -0.751457f, 0.652211f, + /*v:*/-0.437500f, 0.422599f, 0.370932f, /*n:*/-0.728996f, -0.656575f, 0.193426f, + /*v:*/-0.500000f, 0.352287f, 0.292807f, /*n:*/-0.607624f, -0.510392f, 0.608478f, + /*v:*/0.437500f, 0.422599f, 0.370932f, /*n:*/0.728996f, -0.656575f, 0.193426f, + /*v:*/0.351562f, 0.391349f, 0.386557f, /*n:*/0.031404f, -0.966948f, 0.252907f, + /*v:*/0.351562f, 0.289787f, 0.324057f, /*n:*/0.099490f, -0.751457f, 0.652211f, + /*v:*/0.437500f, 0.422599f, 0.370932f, /*n:*/0.728996f, -0.656575f, 0.193426f, + /*v:*/0.351562f, 0.289787f, 0.324057f, /*n:*/0.099490f, -0.751457f, 0.652211f, + /*v:*/0.500000f, 0.352287f, 0.292807f, /*n:*/0.607624f, -0.510392f, 0.608478f, + /*v:*/-0.351562f, 0.235099f, 0.222494f, /*n:*/-0.119327f, -0.871151f, 0.476272f, + /*v:*/-0.351562f, 0.289787f, 0.324057f, /*n:*/-0.099490f, -0.751457f, 0.652211f, + /*v:*/-0.500000f, 0.352287f, 0.292807f, /*n:*/-0.607624f, -0.510392f, 0.608478f, + /*v:*/-0.351562f, 0.235099f, 0.222494f, /*n:*/-0.119327f, -0.871151f, 0.476272f, + /*v:*/-0.500000f, 0.352287f, 0.292807f, /*n:*/-0.607624f, -0.510392f, 0.608478f, + /*v:*/-0.546875f, 0.313224f, 0.183432f, /*n:*/-0.680166f, -0.546251f, 0.488815f, + /*v:*/0.500000f, 0.352287f, 0.292807f, /*n:*/0.607624f, -0.510392f, 0.608478f, + /*v:*/0.351562f, 0.289787f, 0.324057f, /*n:*/0.099490f, -0.751457f, 0.652211f, + /*v:*/0.351562f, 0.235099f, 0.222494f, /*n:*/0.119327f, -0.871151f, 0.476272f, + /*v:*/0.500000f, 0.352287f, 0.292807f, /*n:*/0.607624f, -0.510392f, 0.608478f, + /*v:*/0.351562f, 0.235099f, 0.222494f, /*n:*/0.119327f, -0.871151f, 0.476272f, + /*v:*/0.546875f, 0.313224f, 0.183432f, /*n:*/0.680166f, -0.546251f, 0.488815f, + /*v:*/-0.546875f, 0.313224f, 0.183432f, /*n:*/-0.680166f, -0.546251f, 0.488815f, + /*v:*/-0.500000f, 0.352287f, 0.292807f, /*n:*/-0.607624f, -0.510392f, 0.608478f, + /*v:*/-0.562500f, 0.500724f, 0.277182f, /*n:*/-0.800104f, -0.002838f, 0.599841f, + /*v:*/-0.546875f, 0.313224f, 0.183432f, /*n:*/-0.680166f, -0.546251f, 0.488815f, + /*v:*/-0.562500f, 0.500724f, 0.277182f, /*n:*/-0.800104f, -0.002838f, 0.599841f, + /*v:*/-0.625000f, 0.500724f, 0.167807f, /*n:*/-0.868221f, -0.004730f, 0.496109f, + /*v:*/0.562500f, 0.500724f, 0.277182f, /*n:*/0.800104f, -0.002838f, 0.599841f, + /*v:*/0.500000f, 0.352287f, 0.292807f, /*n:*/0.607624f, -0.510392f, 0.608478f, + /*v:*/0.546875f, 0.313224f, 0.183432f, /*n:*/0.680166f, -0.546251f, 0.488815f, + /*v:*/0.562500f, 0.500724f, 0.277182f, /*n:*/0.800104f, -0.002838f, 0.599841f, + /*v:*/0.546875f, 0.313224f, 0.183432f, /*n:*/0.680166f, -0.546251f, 0.488815f, + /*v:*/0.625000f, 0.500724f, 0.167807f, /*n:*/0.868221f, -0.004730f, 0.496109f, + /*v:*/-0.500000f, 0.352287f, 0.292807f, /*n:*/-0.607624f, -0.510392f, 0.608478f, + /*v:*/-0.437500f, 0.422599f, 0.370932f, /*n:*/-0.728996f, -0.656575f, 0.193426f, + /*v:*/-0.468750f, 0.500724f, 0.363119f, /*n:*/-0.969298f, -0.011811f, 0.245552f, + /*v:*/-0.500000f, 0.352287f, 0.292807f, /*n:*/-0.607624f, -0.510392f, 0.608478f, + /*v:*/-0.468750f, 0.500724f, 0.363119f, /*n:*/-0.969298f, -0.011811f, 0.245552f, + /*v:*/-0.562500f, 0.500724f, 0.277182f, /*n:*/-0.800104f, -0.002838f, 0.599841f, + /*v:*/0.468750f, 0.500724f, 0.363119f, /*n:*/0.969298f, -0.011811f, 0.245552f, + /*v:*/0.437500f, 0.422599f, 0.370932f, /*n:*/0.728996f, -0.656575f, 0.193426f, + /*v:*/0.500000f, 0.352287f, 0.292807f, /*n:*/0.607624f, -0.510392f, 0.608478f, + /*v:*/0.468750f, 0.500724f, 0.363119f, /*n:*/0.969298f, -0.011811f, 0.245552f, + /*v:*/0.500000f, 0.352287f, 0.292807f, /*n:*/0.607624f, -0.510392f, 0.608478f, + /*v:*/0.562500f, 0.500724f, 0.277182f, /*n:*/0.800104f, -0.002838f, 0.599841f + }; + } +} + diff --git a/OpenGL/GLKBaseEffectDrawingTexture/AppDelegate.cs b/OpenGL/GLKBaseEffectDrawingTexture/AppDelegate.cs new file mode 100644 index 000000000..adc59ad23 --- /dev/null +++ b/OpenGL/GLKBaseEffectDrawingTexture/AppDelegate.cs @@ -0,0 +1,41 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using MonoTouch.Foundation; +using MonoTouch.UIKit; + +namespace GLKBaseEffectDrawingTexture +{ + // The UIApplicationDelegate for the application. This class is responsible for launching the + // User Interface of the application, as well as listening (and optionally responding) to + // application events from iOS. + [Register ("AppDelegate")] + public partial class AppDelegate : UIApplicationDelegate + { + // class-level declarations + UIWindow window; + MCViewController controller; + + // + // This method is invoked when the application has loaded and is ready to run. In this + // method you should instantiate the window, load the UI into it and then make the window + // visible. + // + // You have 17 seconds to return from this method, or iOS will terminate your application. + // + public override bool FinishedLaunching (UIApplication app, NSDictionary options) + { + // create a new window instance based on the screen size + window = new UIWindow (UIScreen.MainScreen.Bounds); + + controller = new MCViewController (); + window.RootViewController = controller; + + // make the window visible + window.MakeKeyAndVisible (); + + return true; + } + } +} + diff --git a/OpenGL/GLKBaseEffectDrawingTexture/GLKBaseEffectDrawingTexture.csproj b/OpenGL/GLKBaseEffectDrawingTexture/GLKBaseEffectDrawingTexture.csproj new file mode 100644 index 000000000..fe1c7cd75 --- /dev/null +++ b/OpenGL/GLKBaseEffectDrawingTexture/GLKBaseEffectDrawingTexture.csproj @@ -0,0 +1,95 @@ + + + + Debug + iPhoneSimulator + 10.0.0 + 2.0 + {7268D497-8ADF-4ECD-ACE9-37AE15A84624} + {6BC8ED88-2882-458C-8E55-DFD12B67127B};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + Exe + GLKBaseEffectDrawingTexture + Resources + GLKBaseEffectDrawingTexture + + + true + false + bin\iPhoneSimulator\Debug + DEBUG; + prompt + 4 + false + None + true + + + true + bin\iPhoneSimulator\Release + prompt + 4 + false + None + + + true + false + bin\iPhone\Debug + DEBUG; + prompt + 4 + false + true + iPhone Developer + + + true + bin\iPhone\Release + prompt + 4 + false + iPhone Developer + + + true + bin\iPhone\Ad-Hoc + prompt + 4 + true + iPhone Distribution + false + Automatic:AdHoc + + + true + bin\iPhone\AppStore + prompt + 4 + false + iPhone Distribution + Automatic:AppStore + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/OpenGL/GLKBaseEffectDrawingTexture/Info.plist b/OpenGL/GLKBaseEffectDrawingTexture/Info.plist new file mode 100644 index 000000000..cce0988b0 --- /dev/null +++ b/OpenGL/GLKBaseEffectDrawingTexture/Info.plist @@ -0,0 +1,19 @@ + + + + + UIDeviceFamily + + 2 + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + MinimumOSVersion + 3.2 + + diff --git a/OpenGL/GLKBaseEffectDrawingTexture/MCViewController.cs b/OpenGL/GLKBaseEffectDrawingTexture/MCViewController.cs new file mode 100644 index 000000000..ee23b35ea --- /dev/null +++ b/OpenGL/GLKBaseEffectDrawingTexture/MCViewController.cs @@ -0,0 +1,132 @@ +using System; +using MonoTouch.UIKit; +using OpenTK; +using MonoTouch.OpenGLES; +using MonoTouch.GLKit; +using MonoTouch; +using OpenTK.Graphics.ES20; +using MonoTouch.CoreGraphics; +using System.Drawing; +using MonoTouch.Foundation; + +namespace GLKBaseEffectDrawingTexture +{ + public class MCViewController : GLKViewController + { + float rotation; + + uint vertexArray; + uint vertexBuffer; + + EAGLContext context; + GLKBaseEffect effect; + GLKTextureInfo texture; + + public MCViewController () + { + + } + + public override void ViewDidLoad () + { + base.ViewDidLoad (); + + context = new EAGLContext (EAGLRenderingAPI.OpenGLES2); + + if (context == null) + Console.WriteLine ("Failed to create ES context"); + + GLKView view = View as GLKView; + view.Context = context; + view.DrawableDepthFormat = GLKViewDrawableDepthFormat.Format24; + view.DrawInRect += Draw; + + setupGL (); + } + + void setupGL () + { + EAGLContext.SetCurrentContext (context); + + effect = new GLKBaseEffect (); + effect.LightingType = GLKLightingType.PerPixel; + + effect.Light0.Enabled = true; + effect.Light0.DiffuseColor = new Vector4 (1.0f, 0.4f, 0.4f, 1.0f); + + GL.Enable (EnableCap.DepthTest); + + GL.Oes.GenVertexArrays (1, out vertexArray); + GL.Oes.BindVertexArray (vertexArray); + + GL.GenBuffers (1, out vertexBuffer); + GL.BindBuffer (BufferTarget.ArrayBuffer, vertexBuffer); + GL.BufferData (BufferTarget.ArrayBuffer, (IntPtr) (Monkey.MeshVertexData.Length * sizeof (float)), + Monkey.MeshVertexData, BufferUsage.StaticDraw); + + GL.EnableVertexAttribArray ((int) GLKVertexAttrib.Position); + GL.VertexAttribPointer ((int) GLKVertexAttrib.Position, 3, VertexAttribPointerType.Float, + false, 8 * sizeof (float), 0); + + GL.EnableVertexAttribArray ((int) GLKVertexAttrib.Normal); + GL.VertexAttribPointer ((int) GLKVertexAttrib.Normal, 3, VertexAttribPointerType.Float, + false, 8 * sizeof(float), 12); + + GL.EnableVertexAttribArray ((int) GLKVertexAttrib.TexCoord0); + GL.VertexAttribPointer ((int) GLKVertexAttrib.TexCoord0, 2, VertexAttribPointerType.Float, + false, 8 * sizeof(float), 24); + + GL.ActiveTexture (TextureUnit.Texture0); + string path = NSBundle.MainBundle.PathForResource ("monkey", "png"); + + NSError error; + NSDictionary options = NSDictionary.FromObjectAndKey (NSNumber.FromBoolean (true), + GLKTextureLoader.OriginBottomLeft); + + texture = GLKTextureLoader.FromFile (path, options, out error); + + if (texture == null) + Console.WriteLine (String.Format("Error loading texture: {0}", error.LocalizedDescription)); + + GLKEffectPropertyTexture tex = new GLKEffectPropertyTexture (); + tex.Enabled = true; + tex.EnvMode = GLKTextureEnvMode.Decal; + tex.GLName = texture.Name; + + effect.Texture2d0.GLName = tex.GLName; + + GL.Oes.BindVertexArray (0); + } + + public override void Update () + { + float aspect = (float)Math.Abs (View.Bounds.Size.Width / View.Bounds.Size.Height); + + Matrix4 projectionMatrix = + Matrix4.CreatePerspectiveFieldOfView ((float) (Math.PI * 65f / 180.0f), + aspect, 0.1f, 100.0f); + + effect.Transform.ProjectionMatrix = projectionMatrix; + + Matrix4 modelViewMatrix = Matrix4.CreateTranslation (new Vector3 (0f, 0f, -3.5f)); + modelViewMatrix = Matrix4.Mult (Matrix4.CreateFromAxisAngle (new Vector3 (1f, 1f, 1f), rotation), modelViewMatrix); + + effect.Transform.ModelViewMatrix = modelViewMatrix; + + rotation += (float) TimeSinceLastUpdate * 0.5f; + } + + public void Draw (object sender, GLKViewDrawEventArgs args) + { + GL.ClearColor (0.65f, 0.65f, 0.65f, 1f); + GL.Clear (ClearBufferMask.ColorBufferBit | ClearBufferMask.DepthBufferBit); + + GL.Oes.BindVertexArray (vertexArray); + + effect.PrepareToDraw (); + + GL.DrawArrays (BeginMode.Triangles, 0, Monkey.MeshVertexData.Length / 8); + } + } +} + diff --git a/OpenGL/GLKBaseEffectDrawingTexture/Main.cs b/OpenGL/GLKBaseEffectDrawingTexture/Main.cs new file mode 100644 index 000000000..3f147f0be --- /dev/null +++ b/OpenGL/GLKBaseEffectDrawingTexture/Main.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using MonoTouch.Foundation; +using MonoTouch.UIKit; + +namespace GLKBaseEffectDrawingTexture +{ + public class Application + { + // This is the main entry point of the application. + static void Main (string[] args) + { + // if you want to use a different Application Delegate class from "AppDelegate" + // you can specify it here. + UIApplication.Main (args, null, "AppDelegate"); + } + } +} diff --git a/OpenGL/GLKBaseEffectDrawingTexture/Monkey.cs b/OpenGL/GLKBaseEffectDrawingTexture/Monkey.cs new file mode 100644 index 000000000..e9c9f3ab8 --- /dev/null +++ b/OpenGL/GLKBaseEffectDrawingTexture/Monkey.cs @@ -0,0 +1,2916 @@ +using System; +using OpenTK; + +namespace GLKBaseEffectDrawingTexture +{ + public static class Monkey + { + public static float[] MeshVertexData = { + /*v:*/0.351562f, 0.828125f, -0.242188f, /*n:*/0.183599f, 0.982971f, 0.005310f, /*t:*/0.043703f, 0.945538f, + /*v:*/0.445312f, 0.781250f, -0.156250f, /*n:*/0.715171f, 0.222724f, 0.662465f, /*t:*/0.074022f, 0.935954f, + /*v:*/0.476562f, 0.773438f, -0.242188f, /*n:*/0.964446f, 0.263863f, 0.012665f, /*t:*/0.073753f, 0.956927f, + /*v:*/-0.476562f, 0.773438f, -0.242188f, /*n:*/-0.964446f, 0.263863f, 0.012665f, /*t:*/0.801686f, 0.266161f, + /*v:*/-0.445312f, 0.781250f, -0.156250f, /*n:*/-0.715171f, 0.222724f, 0.662465f, /*t:*/0.810373f, 0.282044f, + /*v:*/-0.351562f, 0.828125f, -0.242188f, /*n:*/-0.183599f, 0.982971f, 0.005310f, /*t:*/0.786787f, 0.294047f, + /*v:*/0.351562f, 0.804688f, -0.117188f, /*n:*/0.042543f, 0.337474f, 0.940336f, /*t:*/0.056308f, 0.920290f, + /*v:*/0.445312f, 0.781250f, -0.156250f, /*n:*/0.715171f, 0.222724f, 0.662465f, /*t:*/0.074022f, 0.935954f, + /*v:*/0.351562f, 0.828125f, -0.242188f, /*n:*/0.183599f, 0.982971f, 0.005310f, /*t:*/0.043703f, 0.945538f, + /*v:*/-0.351562f, 0.828125f, -0.242188f, /*n:*/-0.183599f, 0.982971f, 0.005310f, /*t:*/0.786787f, 0.294047f, + /*v:*/-0.445312f, 0.781250f, -0.156250f, /*n:*/-0.715171f, 0.222724f, 0.662465f, /*t:*/0.810373f, 0.282044f, + /*v:*/-0.351562f, 0.804688f, -0.117188f, /*n:*/-0.042543f, 0.337474f, 0.940336f, /*t:*/0.807720f, 0.306492f, + /*v:*/0.351562f, 0.828125f, -0.242188f, /*n:*/0.183599f, 0.982971f, 0.005310f, /*t:*/0.043703f, 0.945538f, + /*v:*/0.265625f, 0.820312f, -0.156250f, /*n:*/-0.615864f, 0.464095f, 0.636616f, /*t:*/0.034237f, 0.922544f, + /*v:*/0.351562f, 0.804688f, -0.117188f, /*n:*/0.042543f, 0.337474f, 0.940336f, /*t:*/0.056308f, 0.920290f, + /*v:*/-0.351562f, 0.804688f, -0.117188f, /*n:*/-0.042543f, 0.337474f, 0.940336f, /*t:*/0.947091f, 0.931395f, + /*v:*/-0.265625f, 0.820312f, -0.156250f, /*n:*/0.615864f, 0.464095f, 0.636616f, /*t:*/0.964781f, 0.932252f, + /*v:*/-0.351562f, 0.828125f, -0.242188f, /*n:*/-0.183599f, 0.982971f, 0.005310f, /*t:*/0.954205f, 0.958702f, + /*v:*/0.351562f, 0.828125f, -0.242188f, /*n:*/0.183599f, 0.982971f, 0.005310f, /*t:*/0.043703f, 0.945538f, + /*v:*/0.226562f, 0.820312f, -0.242188f, /*n:*/-0.926969f, 0.374859f, 0.012940f, /*t:*/0.019046f, 0.938830f, + /*v:*/0.265625f, 0.820312f, -0.156250f, /*n:*/-0.615864f, 0.464095f, 0.636616f, /*t:*/0.034237f, 0.922544f, + /*v:*/-0.265625f, 0.820312f, -0.156250f, /*n:*/0.615864f, 0.464095f, 0.636616f, /*t:*/0.964781f, 0.932252f, + /*v:*/-0.226562f, 0.820312f, -0.242188f, /*n:*/0.926969f, 0.374859f, 0.012940f, /*t:*/0.978974f, 0.947530f, + /*v:*/-0.351562f, 0.828125f, -0.242188f, /*n:*/-0.183599f, 0.982971f, 0.005310f, /*t:*/0.954205f, 0.958702f, + /*v:*/0.351562f, 0.828125f, -0.242188f, /*n:*/0.183599f, 0.982971f, 0.005310f, /*t:*/0.043703f, 0.945538f, + /*v:*/0.265625f, 0.820312f, -0.335938f, /*n:*/-0.623676f, 0.464675f, -0.628529f, /*t:*/0.019025f, 0.961361f, + /*v:*/0.226562f, 0.820312f, -0.242188f, /*n:*/-0.926969f, 0.374859f, 0.012940f, /*t:*/0.019046f, 0.938830f, + /*v:*/-0.226562f, 0.820312f, -0.242188f, /*n:*/0.926969f, 0.374859f, 0.012940f, /*t:*/0.978974f, 0.947530f, + /*v:*/-0.265625f, 0.820312f, -0.335938f, /*n:*/0.623676f, 0.464675f, -0.628529f, /*t:*/0.978857f, 0.971495f, + /*v:*/-0.351562f, 0.828125f, -0.242188f, /*n:*/-0.183599f, 0.982971f, 0.005310f, /*t:*/0.954205f, 0.958702f, + /*v:*/0.351562f, 0.828125f, -0.242188f, /*n:*/0.183599f, 0.982971f, 0.005310f, /*t:*/0.043703f, 0.945538f, + /*v:*/0.351562f, 0.804688f, -0.375000f, /*n:*/0.043153f, 0.341441f, -0.938902f, /*t:*/0.034482f, 0.975984f, + /*v:*/0.265625f, 0.820312f, -0.335938f, /*n:*/-0.623676f, 0.464675f, -0.628529f, /*t:*/0.019025f, 0.961361f, + /*v:*/-0.265625f, 0.820312f, -0.335938f, /*n:*/0.623676f, 0.464675f, -0.628529f, /*t:*/0.978857f, 0.971495f, + /*v:*/-0.351562f, 0.804688f, -0.375000f, /*n:*/-0.043153f, 0.341441f, -0.938902f, /*t:*/0.967288f, 0.987699f, + /*v:*/-0.351562f, 0.828125f, -0.242188f, /*n:*/-0.183599f, 0.982971f, 0.005310f, /*t:*/0.954205f, 0.958702f, + /*v:*/0.351562f, 0.828125f, -0.242188f, /*n:*/0.183599f, 0.982971f, 0.005310f, /*t:*/0.043703f, 0.945538f, + /*v:*/0.445312f, 0.781250f, -0.335938f, /*n:*/0.721610f, 0.222388f, -0.655568f, /*t:*/0.058810f, 0.974771f, + /*v:*/0.351562f, 0.804688f, -0.375000f, /*n:*/0.043153f, 0.341441f, -0.938902f, /*t:*/0.034482f, 0.975984f, + /*v:*/-0.351562f, 0.804688f, -0.375000f, /*n:*/-0.043153f, 0.341441f, -0.938902f, /*t:*/0.967288f, 0.987699f, + /*v:*/-0.445312f, 0.781250f, -0.335938f, /*n:*/-0.721610f, 0.222388f, -0.655568f, /*t:*/0.948998f, 0.987538f, + /*v:*/-0.351562f, 0.828125f, -0.242188f, /*n:*/-0.183599f, 0.982971f, 0.005310f, /*t:*/0.954205f, 0.958702f, + /*v:*/0.351562f, 0.828125f, -0.242188f, /*n:*/0.183599f, 0.982971f, 0.005310f, /*t:*/0.043703f, 0.945538f, + /*v:*/0.476562f, 0.773438f, -0.242188f, /*n:*/0.964446f, 0.263863f, 0.012665f, /*t:*/0.073753f, 0.956927f, + /*v:*/0.445312f, 0.781250f, -0.335938f, /*n:*/0.721610f, 0.222388f, -0.655568f, /*t:*/0.058810f, 0.974771f, + /*v:*/-0.445312f, 0.781250f, -0.335938f, /*n:*/-0.721610f, 0.222388f, -0.655568f, /*t:*/0.786785f, 0.262985f, + /*v:*/-0.476562f, 0.773438f, -0.242188f, /*n:*/-0.964446f, 0.263863f, 0.012665f, /*t:*/0.801686f, 0.266161f, + /*v:*/-0.351562f, 0.828125f, -0.242188f, /*n:*/-0.183599f, 0.982971f, 0.005310f, /*t:*/0.786787f, 0.294047f, + /*v:*/0.093750f, 0.664063f, 0.750000f, /*n:*/-0.517655f, 0.486007f, 0.704123f, /*t:*/0.786785f, 0.266952f, + /*v:*/0.046875f, 0.632813f, 0.851562f, /*n:*/-0.295846f, 0.828761f, -0.474960f, /*t:*/0.764821f, 0.271381f, + /*v:*/0.093750f, 0.640625f, 0.812500f, /*n:*/-0.673757f, 0.729850f, -0.115452f, /*t:*/0.773478f, 0.263159f, + /*v:*/-0.093750f, 0.640625f, 0.812500f, /*n:*/0.673757f, 0.729850f, -0.115452f, /*t:*/0.007275f, 0.793600f, + /*v:*/-0.046875f, 0.632813f, 0.851562f, /*n:*/0.295846f, 0.828761f, -0.474960f, /*t:*/0.001798f, 0.807035f, + /*v:*/-0.093750f, 0.664063f, 0.750000f, /*n:*/0.517655f, 0.486007f, 0.704123f, /*t:*/0.001790f, 0.780726f, + /*v:*/0.000000f, 0.601562f, -0.406250f, /*n:*/0.000000f, 0.511612f, -0.859188f, /*t:*/0.707203f, 0.280194f, + /*v:*/0.109375f, 0.609375f, -0.460938f, /*n:*/-0.459304f, 0.212561f, -0.862453f, /*t:*/0.714489f, 0.303460f, + /*v:*/0.000000f, 0.570312f, -0.570312f, /*n:*/0.000000f, 0.848445f, -0.529252f, /*t:*/0.680396f, 0.309075f, + /*v:*/0.000000f, 0.570312f, -0.570312f, /*n:*/0.000000f, 0.848445f, -0.529252f, /*t:*/0.680396f, 0.309075f, + /*v:*/-0.109375f, 0.609375f, -0.460938f, /*n:*/0.459304f, 0.212561f, -0.862453f, /*t:*/0.680440f, 0.272337f, + /*v:*/0.000000f, 0.601562f, -0.406250f, /*n:*/0.000000f, 0.511612f, -0.859188f, /*t:*/0.707203f, 0.280194f, + /*v:*/0.218750f, 0.429688f, 0.281250f, /*n:*/0.978698f, 0.061495f, 0.195837f, /*t:*/0.131116f, 0.319222f, + /*v:*/0.210938f, 0.164063f, 0.390625f, /*n:*/0.572680f, 0.011994f, 0.819666f, /*t:*/0.088913f, 0.274500f, + /*v:*/0.406250f, 0.148438f, 0.171875f, /*n:*/0.579028f, 0.142705f, 0.802698f, /*t:*/0.149814f, 0.241582f, + /*v:*/-0.406250f, 0.148438f, 0.171875f, /*n:*/-0.579028f, 0.142705f, 0.802698f, /*t:*/0.664646f, 0.138682f, + /*v:*/-0.210938f, 0.164063f, 0.390625f, /*n:*/-0.572680f, 0.011994f, 0.819666f, /*t:*/0.664064f, 0.205752f, + /*v:*/-0.218750f, 0.429688f, 0.281250f, /*n:*/-0.978698f, 0.061495f, 0.195837f, /*t:*/0.602695f, 0.182949f, + /*v:*/0.437500f, 0.468750f, 0.093750f, /*n:*/0.471969f, -0.176794f, 0.863674f, /*t:*/0.284389f, 0.946932f, + /*v:*/0.203125f, 0.500000f, 0.171875f, /*n:*/0.785699f, 0.236732f, 0.571459f, /*t:*/0.271894f, 0.893782f, + /*v:*/0.210938f, 0.468750f, 0.226562f, /*n:*/0.887173f, 0.433607f, 0.157720f, /*t:*/0.284510f, 0.892542f, + /*v:*/-0.210938f, 0.468750f, 0.226562f, /*n:*/-0.887173f, 0.433607f, 0.157720f, /*t:*/0.589170f, 0.175899f, + /*v:*/-0.203125f, 0.500000f, 0.171875f, /*n:*/-0.785699f, 0.236732f, 0.571459f, /*t:*/0.577167f, 0.169027f, + /*v:*/-0.437500f, 0.468750f, 0.093750f, /*n:*/-0.471969f, -0.176794f, 0.863674f, /*t:*/0.597785f, 0.114568f, + /*v:*/0.335938f, -0.664062f, -0.054687f, /*n:*/0.445479f, -0.820399f, 0.358348f, /*t:*/0.090662f, 0.051193f, + /*v:*/0.484375f, -0.546875f, -0.023437f, /*n:*/0.529221f, -0.681722f, 0.505112f, /*t:*/0.122172f, 0.072848f, + /*v:*/0.343750f, -0.539062f, 0.148438f, /*n:*/0.522263f, -0.547685f, 0.653615f, /*t:*/0.076002f, 0.097248f, + /*v:*/-0.343750f, -0.539062f, 0.148438f, /*n:*/-0.522263f, -0.547685f, 0.653615f, /*t:*/0.487251f, 0.527149f, + /*v:*/-0.484375f, -0.546875f, -0.023437f, /*n:*/-0.529221f, -0.681722f, 0.505112f, /*t:*/0.436870f, 0.515928f, + /*v:*/-0.335938f, -0.664062f, -0.054687f, /*n:*/-0.445479f, -0.820399f, 0.358348f, /*t:*/0.462276f, 0.478943f, + /*v:*/0.726562f, -0.070312f, 0.000000f, /*n:*/0.857204f, -0.148289f, 0.493118f, /*t:*/0.205101f, 0.165466f, + /*v:*/0.718750f, -0.171875f, 0.023438f, /*n:*/0.731193f, 0.672475f, -0.114414f, /*t:*/0.190712f, 0.146746f, + /*v:*/0.718750f, -0.187500f, -0.039062f, /*n:*/0.960936f, 0.249855f, 0.118839f, /*t:*/0.197836f, 0.137279f, + /*v:*/-0.718750f, -0.187500f, -0.039062f, /*n:*/-0.960936f, 0.249855f, 0.118839f, /*t:*/0.562328f, 0.848145f, + /*v:*/-0.718750f, -0.171875f, 0.023438f, /*n:*/-0.731193f, 0.672475f, -0.114414f, /*t:*/0.571772f, 0.856389f, + /*v:*/-0.726562f, -0.070312f, 0.000000f, /*n:*/-0.857204f, -0.148289f, 0.493118f, /*t:*/0.562315f, 0.877350f, + /*v:*/1.039062f, -0.414062f, -0.328125f, /*n:*/0.461776f, 0.823664f, 0.329142f, /*t:*/0.358367f, 0.918739f, + /*v:*/1.085938f, -0.390625f, -0.273437f, /*n:*/0.289651f, 0.903500f, -0.315806f, /*t:*/0.374545f, 0.920235f, + /*v:*/1.187500f, -0.484375f, -0.343750f, /*n:*/-0.262398f, 0.804346f, 0.533067f, /*t:*/0.369393f, 0.956031f, + /*v:*/-1.187500f, -0.484375f, -0.343750f, /*n:*/0.262398f, 0.804346f, 0.533067f, /*t:*/0.655852f, 0.280946f, + /*v:*/-1.085938f, -0.390625f, -0.273437f, /*n:*/-0.289651f, 0.903500f, -0.315806f, /*t:*/0.667021f, 0.305335f, + /*v:*/-1.039062f, -0.414062f, -0.328125f, /*n:*/-0.461776f, 0.823664f, 0.329142f, /*t:*/0.649591f, 0.309075f, + /*v:*/1.250000f, -0.546875f, -0.468750f, /*n:*/0.286996f, -0.748497f, -0.597766f, /*t:*/0.198621f, 0.878397f, + /*v:*/1.367188f, -0.500000f, -0.296875f, /*n:*/0.925260f, -0.367992f, -0.091830f, /*t:*/0.186665f, 0.836278f, + /*v:*/1.312500f, -0.531250f, -0.054687f, /*n:*/0.636586f, -0.583392f, 0.504318f, /*t:*/0.213853f, 0.810963f, + /*v:*/-1.312500f, -0.531250f, -0.054687f, /*n:*/-0.636586f, -0.583392f, 0.504318f, /*t:*/0.305509f, 0.896182f, + /*v:*/-1.367188f, -0.500000f, -0.296875f, /*n:*/-0.925260f, -0.367992f, -0.091830f, /*t:*/0.289557f, 0.840516f, + /*v:*/-1.250000f, -0.546875f, -0.468750f, /*n:*/-0.286996f, -0.748497f, -0.597766f, /*t:*/0.318346f, 0.800920f, + /*v:*/-0.789062f, -0.328125f, 0.125000f, /*n:*/0.098849f, -0.532151f, 0.840846f, /*t:*/0.722201f, 0.950057f, + /*v:*/-0.640625f, -0.429688f, 0.007813f, /*n:*/-0.325510f, -0.728355f, 0.602924f, /*t:*/0.761923f, 0.920168f, + /*v:*/-0.593750f, -0.164062f, 0.125000f, /*n:*/-0.312296f, 0.001160f, 0.949950f, /*t:*/0.761961f, 0.987944f, + /*v:*/-0.789062f, -0.328125f, 0.125000f, /*n:*/0.098849f, -0.532151f, 0.840846f, /*t:*/0.722201f, 0.950057f, + /*v:*/-0.593750f, -0.164062f, 0.125000f, /*n:*/-0.312296f, 0.001160f, 0.949950f, /*t:*/0.761961f, 0.987944f, + /*v:*/-0.773438f, -0.125000f, 0.140625f, /*n:*/-0.029542f, 0.771905f, 0.634999f, /*t:*/0.730556f, 0.997370f, + /*v:*/0.593750f, -0.164062f, 0.125000f, /*n:*/0.312296f, 0.001160f, 0.949950f, /*t:*/0.575663f, 0.949236f, + /*v:*/0.640625f, -0.429688f, 0.007813f, /*n:*/0.325510f, -0.728355f, 0.602924f, /*t:*/0.606872f, 0.930785f, + /*v:*/0.789062f, -0.328125f, 0.125000f, /*n:*/-0.098849f, -0.532151f, 0.840846f, /*t:*/0.606958f, 0.978530f, + /*v:*/0.593750f, -0.164062f, 0.125000f, /*n:*/0.312296f, 0.001160f, 0.949950f, /*t:*/0.575663f, 0.949236f, + /*v:*/0.789062f, -0.328125f, 0.125000f, /*n:*/-0.098849f, -0.532151f, 0.840846f, /*t:*/0.606958f, 0.978530f, + /*v:*/0.773438f, -0.125000f, 0.140625f, /*n:*/0.029542f, 0.771905f, 0.634999f, /*t:*/0.572161f, 0.991132f, + /*v:*/-0.789062f, -0.328125f, 0.125000f, /*n:*/0.098849f, -0.532151f, 0.840846f, /*t:*/0.399503f, 0.603408f, + /*v:*/-0.859375f, -0.382813f, -0.382812f, /*n:*/0.650044f, -0.485336f, -0.584643f, /*t:*/0.308771f, 0.522510f, + /*v:*/-0.773438f, -0.437500f, -0.265625f, /*n:*/-0.670766f, -0.740257f, 0.045289f, /*t:*/0.344661f, 0.524899f, + /*v:*/-0.789062f, -0.328125f, 0.125000f, /*n:*/0.098849f, -0.532151f, 0.840846f, /*t:*/0.399503f, 0.603408f, + /*v:*/-0.773438f, -0.437500f, -0.265625f, /*n:*/-0.670766f, -0.740257f, 0.045289f, /*t:*/0.344661f, 0.524899f, + /*v:*/-0.640625f, -0.429688f, 0.007813f, /*n:*/-0.325510f, -0.728355f, 0.602924f, /*t:*/0.410188f, 0.553916f, + /*v:*/0.773438f, -0.437500f, -0.265625f, /*n:*/0.670766f, -0.740257f, 0.045289f, /*t:*/0.213895f, 0.060060f, + /*v:*/0.859375f, -0.382813f, -0.382812f, /*n:*/-0.650044f, -0.485336f, -0.584643f, /*t:*/0.249564f, 0.056451f, + /*v:*/0.789062f, -0.328125f, 0.125000f, /*n:*/-0.098849f, -0.532151f, 0.840846f, /*t:*/0.173079f, 0.121052f, + /*v:*/0.773438f, -0.437500f, -0.265625f, /*n:*/0.670766f, -0.740257f, 0.045289f, /*t:*/0.213895f, 0.060060f, + /*v:*/0.789062f, -0.328125f, 0.125000f, /*n:*/-0.098849f, -0.532151f, 0.840846f, /*t:*/0.173079f, 0.121052f, + /*v:*/0.640625f, -0.429688f, 0.007813f, /*n:*/0.325510f, -0.728355f, 0.602924f, /*t:*/0.154969f, 0.094184f, + /*v:*/-0.890625f, -0.234375f, -0.406250f, /*n:*/0.279244f, 0.575884f, -0.768303f, /*t:*/0.184897f, 0.698721f, + /*v:*/-0.820312f, -0.203125f, -0.328125f, /*n:*/-0.908536f, 0.352489f, -0.224219f, /*t:*/0.197281f, 0.678676f, + /*v:*/-0.859375f, -0.382813f, -0.382812f, /*n:*/0.650044f, -0.485336f, -0.584643f, /*t:*/0.215245f, 0.710828f, + /*v:*/-0.820312f, -0.203125f, -0.328125f, /*n:*/-0.908536f, 0.352489f, -0.224219f, /*t:*/0.197281f, 0.678676f, + /*v:*/-0.773438f, -0.437500f, -0.265625f, /*n:*/-0.670766f, -0.740257f, 0.045289f, /*t:*/0.248763f, 0.697544f, + /*v:*/-0.859375f, -0.382813f, -0.382812f, /*n:*/0.650044f, -0.485336f, -0.584643f, /*t:*/0.215245f, 0.710828f, + /*v:*/0.773438f, -0.437500f, -0.265625f, /*n:*/0.670766f, -0.740257f, 0.045289f, /*t:*/0.271894f, 0.968724f, + /*v:*/0.820312f, -0.203125f, -0.328125f, /*n:*/0.908536f, 0.352489f, -0.224219f, /*t:*/0.214563f, 0.965827f, + /*v:*/0.859375f, -0.382813f, -0.382812f, /*n:*/-0.650044f, -0.485336f, -0.584643f, /*t:*/0.250629f, 0.939162f, + /*v:*/0.820312f, -0.203125f, -0.328125f, /*n:*/0.908536f, 0.352489f, -0.224219f, /*t:*/0.214563f, 0.965827f, + /*v:*/0.890625f, -0.234375f, -0.406250f, /*n:*/-0.279244f, 0.575884f, -0.768303f, /*t:*/0.214617f, 0.940060f, + /*v:*/0.859375f, -0.382813f, -0.382812f, /*n:*/-0.650044f, -0.485336f, -0.584643f, /*t:*/0.250629f, 0.939162f, + /*v:*/-1.312500f, -0.531250f, -0.054687f, /*n:*/-0.636586f, -0.583392f, 0.504318f, /*t:*/0.305509f, 0.896182f, + /*v:*/-1.250000f, -0.546875f, -0.468750f, /*n:*/-0.286996f, -0.748497f, -0.597766f, /*t:*/0.318346f, 0.800920f, + /*v:*/-1.023438f, -0.484375f, -0.437500f, /*n:*/0.414228f, -0.724479f, -0.550890f, /*t:*/0.358336f, 0.815048f, + /*v:*/-1.312500f, -0.531250f, -0.054687f, /*n:*/-0.636586f, -0.583392f, 0.504318f, /*t:*/0.305509f, 0.896182f, + /*v:*/-1.023438f, -0.484375f, -0.437500f, /*n:*/0.414228f, -0.724479f, -0.550890f, /*t:*/0.358336f, 0.815048f, + /*v:*/-1.039062f, -0.492188f, 0.085938f, /*n:*/0.025269f, -0.733116f, 0.679586f, /*t:*/0.358350f, 0.935458f, + /*v:*/1.023438f, -0.484375f, -0.437500f, /*n:*/-0.414228f, -0.724479f, -0.550890f, /*t:*/0.893235f, 0.877425f, + /*v:*/1.250000f, -0.546875f, -0.468750f, /*n:*/0.286996f, -0.748497f, -0.597766f, /*t:*/0.891829f, 0.931550f, + /*v:*/1.312500f, -0.531250f, -0.054687f, /*n:*/0.636586f, -0.583392f, 0.504318f, /*t:*/0.793381f, 0.931648f, + /*v:*/1.023438f, -0.484375f, -0.437500f, /*n:*/-0.414228f, -0.724479f, -0.550890f, /*t:*/0.893235f, 0.877425f, + /*v:*/1.312500f, -0.531250f, -0.054687f, /*n:*/0.636586f, -0.583392f, 0.504318f, /*t:*/0.793381f, 0.931648f, + /*v:*/1.039062f, -0.492188f, 0.085938f, /*n:*/-0.025269f, -0.733116f, 0.679586f, /*t:*/0.772444f, 0.867939f, + /*v:*/-0.789062f, -0.328125f, 0.125000f, /*n:*/0.098849f, -0.532151f, 0.840846f, /*t:*/0.287379f, 0.675439f, + /*v:*/-1.039062f, -0.492188f, 0.085938f, /*n:*/0.025269f, -0.733116f, 0.679586f, /*t:*/0.287320f, 0.746596f, + /*v:*/-0.859375f, -0.382813f, -0.382812f, /*n:*/0.650044f, -0.485336f, -0.584643f, /*t:*/0.215245f, 0.710828f, + /*v:*/-1.039062f, -0.492188f, 0.085938f, /*n:*/0.025269f, -0.733116f, 0.679586f, /*t:*/0.287320f, 0.746596f, + /*v:*/-1.023438f, -0.484375f, -0.437500f, /*n:*/0.414228f, -0.724479f, -0.550890f, /*t:*/0.209910f, 0.757582f, + /*v:*/-0.859375f, -0.382813f, -0.382812f, /*n:*/0.650044f, -0.485336f, -0.584643f, /*t:*/0.215245f, 0.710828f, + /*v:*/1.023438f, -0.484375f, -0.437500f, /*n:*/-0.414228f, -0.724479f, -0.550890f, /*t:*/0.893235f, 0.877425f, + /*v:*/1.039062f, -0.492188f, 0.085938f, /*n:*/-0.025269f, -0.733116f, 0.679586f, /*t:*/0.772444f, 0.867939f, + /*v:*/0.859375f, -0.382813f, -0.382812f, /*n:*/-0.650044f, -0.485336f, -0.584643f, /*t:*/0.885311f, 0.830770f, + /*v:*/1.039062f, -0.492188f, 0.085938f, /*n:*/-0.025269f, -0.733116f, 0.679586f, /*t:*/0.772444f, 0.867939f, + /*v:*/0.789062f, -0.328125f, 0.125000f, /*n:*/-0.098849f, -0.532151f, 0.840846f, /*t:*/0.770284f, 0.796898f, + /*v:*/0.859375f, -0.382813f, -0.382812f, /*n:*/-0.650044f, -0.485336f, -0.584643f, /*t:*/0.885311f, 0.830770f, + /*v:*/-1.023438f, -0.484375f, -0.437500f, /*n:*/0.414228f, -0.724479f, -0.550890f, /*t:*/0.209910f, 0.757582f, + /*v:*/-1.023438f, -0.312500f, -0.476562f, /*n:*/-0.018799f, 0.488632f, -0.872250f, /*t:*/0.176057f, 0.736797f, + /*v:*/-0.859375f, -0.382813f, -0.382812f, /*n:*/0.650044f, -0.485336f, -0.584643f, /*t:*/0.215245f, 0.710828f, + /*v:*/-1.023438f, -0.312500f, -0.476562f, /*n:*/-0.018799f, 0.488632f, -0.872250f, /*t:*/0.176057f, 0.736797f, + /*v:*/-0.890625f, -0.234375f, -0.406250f, /*n:*/0.279244f, 0.575884f, -0.768303f, /*t:*/0.184897f, 0.698721f, + /*v:*/-0.859375f, -0.382813f, -0.382812f, /*n:*/0.650044f, -0.485336f, -0.584643f, /*t:*/0.215245f, 0.710828f, + /*v:*/0.890625f, -0.234375f, -0.406250f, /*n:*/-0.279244f, 0.575884f, -0.768303f, /*t:*/0.214617f, 0.940060f, + /*v:*/1.023438f, -0.312500f, -0.476562f, /*n:*/0.018799f, 0.488632f, -0.872250f, /*t:*/0.220952f, 0.904267f, + /*v:*/0.859375f, -0.382813f, -0.382812f, /*n:*/-0.650044f, -0.485336f, -0.584643f, /*t:*/0.250629f, 0.939162f, + /*v:*/1.023438f, -0.312500f, -0.476562f, /*n:*/0.018799f, 0.488632f, -0.872250f, /*t:*/0.220952f, 0.904267f, + /*v:*/1.023438f, -0.484375f, -0.437500f, /*n:*/-0.414228f, -0.724479f, -0.550890f, /*t:*/0.260399f, 0.900494f, + /*v:*/0.859375f, -0.382813f, -0.382812f, /*n:*/-0.650044f, -0.485336f, -0.584643f, /*t:*/0.250629f, 0.939162f, + /*v:*/-1.250000f, -0.546875f, -0.468750f, /*n:*/-0.286996f, -0.748497f, -0.597766f, /*t:*/0.196394f, 0.810963f, + /*v:*/-1.234375f, -0.421875f, -0.507812f, /*n:*/-0.383557f, 0.328776f, -0.862972f, /*t:*/0.171514f, 0.793083f, + /*v:*/-1.023438f, -0.484375f, -0.437500f, /*n:*/0.414228f, -0.724479f, -0.550890f, /*t:*/0.209910f, 0.757582f, + /*v:*/-1.234375f, -0.421875f, -0.507812f, /*n:*/-0.383557f, 0.328776f, -0.862972f, /*t:*/0.171514f, 0.793083f, + /*v:*/-1.023438f, -0.312500f, -0.476562f, /*n:*/-0.018799f, 0.488632f, -0.872250f, /*t:*/0.176057f, 0.736797f, + /*v:*/-1.023438f, -0.484375f, -0.437500f, /*n:*/0.414228f, -0.724479f, -0.550890f, /*t:*/0.209910f, 0.757582f, + /*v:*/1.023438f, -0.312500f, -0.476562f, /*n:*/0.018799f, 0.488632f, -0.872250f, /*t:*/0.177240f, 0.934883f, + /*v:*/1.234375f, -0.421875f, -0.507812f, /*n:*/0.383557f, 0.328776f, -0.862972f, /*t:*/0.173228f, 0.894210f, + /*v:*/1.023438f, -0.484375f, -0.437500f, /*n:*/-0.414228f, -0.724479f, -0.550890f, /*t:*/0.213679f, 0.919061f, + /*v:*/1.234375f, -0.421875f, -0.507812f, /*n:*/0.383557f, 0.328776f, -0.862972f, /*t:*/0.173228f, 0.894210f, + /*v:*/1.250000f, -0.546875f, -0.468750f, /*n:*/0.286996f, -0.748497f, -0.597766f, /*t:*/0.198621f, 0.878397f, + /*v:*/1.023438f, -0.484375f, -0.437500f, /*n:*/-0.414228f, -0.724479f, -0.550890f, /*t:*/0.213679f, 0.919061f, + /*v:*/-1.367188f, -0.500000f, -0.296875f, /*n:*/-0.925260f, -0.367992f, -0.091830f, /*t:*/0.893207f, 0.984515f, + /*v:*/-1.351562f, -0.421875f, -0.320312f, /*n:*/-0.778802f, 0.604389f, -0.167791f, /*t:*/0.874110f, 0.982252f, + /*v:*/-1.250000f, -0.546875f, -0.468750f, /*n:*/-0.286996f, -0.748497f, -0.597766f, /*t:*/0.893235f, 0.934256f, + /*v:*/-1.351562f, -0.421875f, -0.320312f, /*n:*/-0.778802f, 0.604389f, -0.167791f, /*t:*/0.874110f, 0.982252f, + /*v:*/-1.234375f, -0.421875f, -0.507812f, /*n:*/-0.383557f, 0.328776f, -0.862972f, /*t:*/0.863259f, 0.931648f, + /*v:*/-1.250000f, -0.546875f, -0.468750f, /*n:*/-0.286996f, -0.748497f, -0.597766f, /*t:*/0.893235f, 0.934256f, + /*v:*/1.234375f, -0.421875f, -0.507812f, /*n:*/0.383557f, 0.328776f, -0.862972f, /*t:*/0.173228f, 0.894210f, + /*v:*/1.351562f, -0.421875f, -0.320312f, /*n:*/0.778802f, 0.604389f, -0.167791f, /*t:*/0.171514f, 0.847092f, + /*v:*/1.250000f, -0.546875f, -0.468750f, /*n:*/0.286996f, -0.748497f, -0.597766f, /*t:*/0.198621f, 0.878397f, + /*v:*/1.351562f, -0.421875f, -0.320312f, /*n:*/0.778802f, 0.604389f, -0.167791f, /*t:*/0.171514f, 0.847092f, + /*v:*/1.367188f, -0.500000f, -0.296875f, /*n:*/0.925260f, -0.367992f, -0.091830f, /*t:*/0.186665f, 0.836278f, + /*v:*/1.250000f, -0.546875f, -0.468750f, /*n:*/0.286996f, -0.748497f, -0.597766f, /*t:*/0.198621f, 0.878397f, + /*v:*/-1.312500f, -0.531250f, -0.054687f, /*n:*/-0.636586f, -0.583392f, 0.504318f, /*t:*/0.944225f, 0.485615f, + /*v:*/-1.281250f, -0.429688f, -0.054687f, /*n:*/-0.652608f, 0.588794f, 0.476821f, /*t:*/0.925155f, 0.498447f, + /*v:*/-1.367188f, -0.500000f, -0.296875f, /*n:*/-0.925260f, -0.367992f, -0.091830f, /*t:*/0.903600f, 0.455053f, + /*v:*/-1.281250f, -0.429688f, -0.054687f, /*n:*/-0.652608f, 0.588794f, 0.476821f, /*t:*/0.925155f, 0.498447f, + /*v:*/-1.351562f, -0.421875f, -0.320312f, /*n:*/-0.778802f, 0.604389f, -0.167791f, /*t:*/0.885578f, 0.461122f, + /*v:*/-1.367188f, -0.500000f, -0.296875f, /*n:*/-0.925260f, -0.367992f, -0.091830f, /*t:*/0.903600f, 0.455053f, + /*v:*/1.351562f, -0.421875f, -0.320312f, /*n:*/0.778802f, 0.604389f, -0.167791f, /*t:*/0.968118f, 0.645797f, + /*v:*/1.281250f, -0.429688f, -0.054687f, /*n:*/0.652608f, 0.588794f, 0.476821f, /*t:*/0.952540f, 0.699848f, + /*v:*/1.367188f, -0.500000f, -0.296875f, /*n:*/0.925260f, -0.367992f, -0.091830f, /*t:*/0.951880f, 0.641102f, + /*v:*/1.281250f, -0.429688f, -0.054687f, /*n:*/0.652608f, 0.588794f, 0.476821f, /*t:*/0.952540f, 0.699848f, + /*v:*/1.312500f, -0.531250f, -0.054687f, /*n:*/0.636586f, -0.583392f, 0.504318f, /*t:*/0.933277f, 0.687056f, + /*v:*/1.367188f, -0.500000f, -0.296875f, /*n:*/0.925260f, -0.367992f, -0.091830f, /*t:*/0.951880f, 0.641102f, + /*v:*/-1.039062f, -0.492188f, 0.085938f, /*n:*/0.025269f, -0.733116f, 0.679586f, /*t:*/0.955915f, 0.557810f, + /*v:*/-1.039062f, -0.328125f, 0.101563f, /*n:*/-0.502884f, 0.370312f, 0.780999f, /*t:*/0.927634f, 0.569253f, + /*v:*/-1.281250f, -0.429688f, -0.054687f, /*n:*/-0.652608f, 0.588794f, 0.476821f, /*t:*/0.925155f, 0.498447f, + /*v:*/-1.039062f, -0.492188f, 0.085938f, /*n:*/0.025269f, -0.733116f, 0.679586f, /*t:*/0.955915f, 0.557810f, + /*v:*/-1.281250f, -0.429688f, -0.054687f, /*n:*/-0.652608f, 0.588794f, 0.476821f, /*t:*/0.925155f, 0.498447f, + /*v:*/-1.312500f, -0.531250f, -0.054687f, /*n:*/-0.636586f, -0.583392f, 0.504318f, /*t:*/0.944225f, 0.485615f, + /*v:*/1.281250f, -0.429688f, -0.054687f, /*n:*/0.652608f, 0.588794f, 0.476821f, /*t:*/0.952540f, 0.699848f, + /*v:*/1.039062f, -0.328125f, 0.101563f, /*n:*/0.502884f, 0.370312f, 0.780999f, /*t:*/0.948643f, 0.769380f, + /*v:*/1.039062f, -0.492188f, 0.085938f, /*n:*/-0.025269f, -0.733116f, 0.679586f, /*t:*/0.913514f, 0.753413f, + /*v:*/1.281250f, -0.429688f, -0.054687f, /*n:*/0.652608f, 0.588794f, 0.476821f, /*t:*/0.952540f, 0.699848f, + /*v:*/1.039062f, -0.492188f, 0.085938f, /*n:*/-0.025269f, -0.733116f, 0.679586f, /*t:*/0.913514f, 0.753413f, + /*v:*/1.312500f, -0.531250f, -0.054687f, /*n:*/0.636586f, -0.583392f, 0.504318f, /*t:*/0.933277f, 0.687056f, + /*v:*/-0.789062f, -0.328125f, 0.125000f, /*n:*/0.098849f, -0.532151f, 0.840846f, /*t:*/0.929738f, 0.623964f, + /*v:*/-0.773438f, -0.125000f, 0.140625f, /*n:*/-0.029542f, 0.771905f, 0.634999f, /*t:*/0.894104f, 0.641102f, + /*v:*/-1.039062f, -0.328125f, 0.101563f, /*n:*/-0.502884f, 0.370312f, 0.780999f, /*t:*/0.927634f, 0.569253f, + /*v:*/-0.789062f, -0.328125f, 0.125000f, /*n:*/0.098849f, -0.532151f, 0.840846f, /*t:*/0.929738f, 0.623964f, + /*v:*/-1.039062f, -0.328125f, 0.101563f, /*n:*/-0.502884f, 0.370312f, 0.780999f, /*t:*/0.927634f, 0.569253f, + /*v:*/-1.039062f, -0.492188f, 0.085938f, /*n:*/0.025269f, -0.733116f, 0.679586f, /*t:*/0.955915f, 0.557810f, + /*v:*/1.039062f, -0.328125f, 0.101563f, /*n:*/0.502884f, 0.370312f, 0.780999f, /*t:*/0.948643f, 0.769380f, + /*v:*/0.773438f, -0.125000f, 0.140625f, /*n:*/0.029542f, 0.771905f, 0.634999f, /*t:*/0.968082f, 0.830940f, + /*v:*/0.789062f, -0.328125f, 0.125000f, /*n:*/-0.098849f, -0.532151f, 0.840846f, /*t:*/0.925863f, 0.809530f, + /*v:*/1.039062f, -0.328125f, 0.101563f, /*n:*/0.502884f, 0.370312f, 0.780999f, /*t:*/0.948643f, 0.769380f, + /*v:*/0.789062f, -0.328125f, 0.125000f, /*n:*/-0.098849f, -0.532151f, 0.840846f, /*t:*/0.925863f, 0.809530f, + /*v:*/1.039062f, -0.492188f, 0.085938f, /*n:*/-0.025269f, -0.733116f, 0.679586f, /*t:*/0.913514f, 0.753413f, + /*v:*/-1.109375f, -0.390625f, -0.210937f, /*n:*/-0.383129f, 0.921140f, 0.068514f, /*t:*/0.680396f, 0.298695f, + /*v:*/-1.085938f, -0.390625f, -0.273437f, /*n:*/-0.289651f, 0.903500f, -0.315806f, /*t:*/0.667021f, 0.305335f, + /*v:*/-1.187500f, -0.484375f, -0.343750f, /*n:*/0.262398f, 0.804346f, 0.533067f, /*t:*/0.655852f, 0.280946f, + /*v:*/-1.109375f, -0.390625f, -0.210937f, /*n:*/-0.383129f, 0.921140f, 0.068514f, /*t:*/0.680396f, 0.298695f, + /*v:*/-1.187500f, -0.484375f, -0.343750f, /*n:*/0.262398f, 0.804346f, 0.533067f, /*t:*/0.655852f, 0.280946f, + /*v:*/-1.257812f, -0.492188f, -0.242187f, /*n:*/0.752861f, 0.657277f, 0.033784f, /*t:*/0.680384f, 0.265322f, + /*v:*/1.187500f, -0.484375f, -0.343750f, /*n:*/-0.262398f, 0.804346f, 0.533067f, /*t:*/0.369393f, 0.956031f, + /*v:*/1.085938f, -0.390625f, -0.273437f, /*n:*/0.289651f, 0.903500f, -0.315806f, /*t:*/0.374545f, 0.920235f, + /*v:*/1.109375f, -0.390625f, -0.210937f, /*n:*/0.383129f, 0.921140f, 0.068514f, /*t:*/0.390268f, 0.919333f, + /*v:*/1.187500f, -0.484375f, -0.343750f, /*n:*/-0.262398f, 0.804346f, 0.533067f, /*t:*/0.369393f, 0.956031f, + /*v:*/1.109375f, -0.390625f, -0.210937f, /*n:*/0.383129f, 0.921140f, 0.068514f, /*t:*/0.390268f, 0.919333f, + /*v:*/1.257812f, -0.492188f, -0.242187f, /*n:*/-0.752861f, 0.657277f, 0.033784f, /*t:*/0.398041f, 0.961522f, + /*v:*/-1.054688f, -0.382812f, -0.187500f, /*n:*/-0.314371f, 0.943602f, 0.103732f, /*t:*/0.945326f, 0.058650f, + /*v:*/-1.109375f, -0.390625f, -0.210937f, /*n:*/-0.383129f, 0.921140f, 0.068514f, /*t:*/0.943667f, 0.044617f, + /*v:*/-1.210938f, -0.484375f, -0.085937f, /*n:*/0.583117f, 0.640339f, -0.499893f, /*t:*/0.979758f, 0.028267f, + /*v:*/-1.109375f, -0.390625f, -0.210937f, /*n:*/-0.383129f, 0.921140f, 0.068514f, /*t:*/0.943667f, 0.044617f, + /*v:*/-1.257812f, -0.492188f, -0.242187f, /*n:*/0.752861f, 0.657277f, 0.033784f, /*t:*/0.958815f, 0.004385f, + /*v:*/-1.210938f, -0.484375f, -0.085937f, /*n:*/0.583117f, 0.640339f, -0.499893f, /*t:*/0.979758f, 0.028267f, + /*v:*/1.257812f, -0.492188f, -0.242187f, /*n:*/-0.752861f, 0.657277f, 0.033784f, /*t:*/0.398041f, 0.961522f, + /*v:*/1.109375f, -0.390625f, -0.210937f, /*n:*/0.383129f, 0.921140f, 0.068514f, /*t:*/0.390268f, 0.919333f, + /*v:*/1.210938f, -0.484375f, -0.085937f, /*n:*/-0.583117f, 0.640339f, -0.499893f, /*t:*/0.427282f, 0.938527f, + /*v:*/1.109375f, -0.390625f, -0.210937f, /*n:*/0.383129f, 0.921140f, 0.068514f, /*t:*/0.390268f, 0.919333f, + /*v:*/1.054688f, -0.382812f, -0.187500f, /*n:*/0.314371f, 0.943602f, 0.103732f, /*t:*/0.390093f, 0.906158f, + /*v:*/1.210938f, -0.484375f, -0.085937f, /*n:*/-0.583117f, 0.640339f, -0.499893f, /*t:*/0.427282f, 0.938527f, + /*v:*/-1.000000f, -0.367188f, -0.125000f, /*n:*/-0.444807f, 0.890683f, 0.093692f, /*t:*/0.951190f, 0.076545f, + /*v:*/-1.054688f, -0.382812f, -0.187500f, /*n:*/-0.314371f, 0.943602f, 0.103732f, /*t:*/0.945326f, 0.058650f, + /*v:*/-1.046875f, -0.421875f, 0.000000f, /*n:*/-0.065004f, 0.707358f, -0.703848f, /*t:*/0.979725f, 0.074121f, + /*v:*/-1.054688f, -0.382812f, -0.187500f, /*n:*/-0.314371f, 0.943602f, 0.103732f, /*t:*/0.945326f, 0.058650f, + /*v:*/-1.210938f, -0.484375f, -0.085937f, /*n:*/0.583117f, 0.640339f, -0.499893f, /*t:*/0.979758f, 0.028267f, + /*v:*/-1.046875f, -0.421875f, 0.000000f, /*n:*/-0.065004f, 0.707358f, -0.703848f, /*t:*/0.979725f, 0.074121f, + /*v:*/1.210938f, -0.484375f, -0.085937f, /*n:*/-0.583117f, 0.640339f, -0.499893f, /*t:*/0.427282f, 0.938527f, + /*v:*/1.054688f, -0.382812f, -0.187500f, /*n:*/0.314371f, 0.943602f, 0.103732f, /*t:*/0.390093f, 0.906158f, + /*v:*/1.046875f, -0.421875f, 0.000000f, /*n:*/0.065004f, 0.707358f, -0.703848f, /*t:*/0.429979f, 0.893211f, + /*v:*/1.054688f, -0.382812f, -0.187500f, /*n:*/0.314371f, 0.943602f, 0.103732f, /*t:*/0.390093f, 0.906158f, + /*v:*/1.000000f, -0.367188f, -0.125000f, /*n:*/0.444807f, 0.890683f, 0.093692f, /*t:*/0.398321f, 0.888769f, + /*v:*/1.046875f, -0.421875f, 0.000000f, /*n:*/0.065004f, 0.707358f, -0.703848f, /*t:*/0.429979f, 0.893211f, + /*v:*/-0.937500f, -0.335938f, -0.062500f, /*n:*/-0.408429f, 0.903836f, -0.127262f, /*t:*/0.954105f, 0.097046f, + /*v:*/-1.000000f, -0.367188f, -0.125000f, /*n:*/-0.444807f, 0.890683f, 0.093692f, /*t:*/0.951190f, 0.076545f, + /*v:*/-1.046875f, -0.421875f, 0.000000f, /*n:*/-0.065004f, 0.707358f, -0.703848f, /*t:*/0.979725f, 0.074121f, + /*v:*/-0.937500f, -0.335938f, -0.062500f, /*n:*/-0.408429f, 0.903836f, -0.127262f, /*t:*/0.954105f, 0.097046f, + /*v:*/-1.046875f, -0.421875f, 0.000000f, /*n:*/-0.065004f, 0.707358f, -0.703848f, /*t:*/0.979725f, 0.074121f, + /*v:*/-0.882812f, -0.265625f, 0.015625f, /*n:*/0.033113f, 0.325602f, -0.944914f, /*t:*/0.952051f, 0.119657f, + /*v:*/1.046875f, -0.421875f, 0.000000f, /*n:*/0.065004f, 0.707358f, -0.703848f, /*t:*/0.429979f, 0.893211f, + /*v:*/1.000000f, -0.367188f, -0.125000f, /*n:*/0.444807f, 0.890683f, 0.093692f, /*t:*/0.398321f, 0.888769f, + /*v:*/0.937500f, -0.335938f, -0.062500f, /*n:*/0.408429f, 0.903836f, -0.127262f, /*t:*/0.405745f, 0.868127f, + /*v:*/1.046875f, -0.421875f, 0.000000f, /*n:*/0.065004f, 0.707358f, -0.703848f, /*t:*/0.429979f, 0.893211f, + /*v:*/0.937500f, -0.335938f, -0.062500f, /*n:*/0.408429f, 0.903836f, -0.127262f, /*t:*/0.405745f, 0.868127f, + /*v:*/0.882812f, -0.265625f, 0.015625f, /*n:*/-0.033113f, 0.325602f, -0.944914f, /*t:*/0.417135f, 0.843165f, + /*v:*/-0.937500f, -0.335938f, -0.062500f, /*n:*/-0.408429f, 0.903836f, -0.127262f, /*t:*/0.965767f, 0.579842f, + /*v:*/-0.882812f, -0.265625f, 0.015625f, /*n:*/0.033113f, 0.325602f, -0.944914f, /*t:*/0.955915f, 0.559908f, + /*v:*/-0.851562f, -0.320312f, -0.015625f, /*n:*/-0.292917f, 0.881222f, -0.370922f, /*t:*/0.971116f, 0.559538f, + /*v:*/-0.882812f, -0.265625f, 0.015625f, /*n:*/0.033113f, 0.325602f, -0.944914f, /*t:*/0.955915f, 0.559908f, + /*v:*/-0.812500f, -0.320312f, 0.015625f, /*n:*/-0.644978f, 0.698386f, -0.310129f, /*t:*/0.972954f, 0.548217f, + /*v:*/-0.851562f, -0.320312f, -0.015625f, /*n:*/-0.292917f, 0.881222f, -0.370922f, /*t:*/0.971116f, 0.559538f, + /*v:*/0.812500f, -0.320312f, 0.015625f, /*n:*/0.644978f, 0.698386f, -0.310129f, /*t:*/0.961898f, 0.147180f, + /*v:*/0.882812f, -0.265625f, 0.015625f, /*n:*/-0.033113f, 0.325602f, -0.944914f, /*t:*/0.943667f, 0.147593f, + /*v:*/0.851562f, -0.320312f, -0.015625f, /*n:*/0.292917f, 0.881222f, -0.370922f, /*t:*/0.954686f, 0.138151f, + /*v:*/0.882812f, -0.265625f, 0.015625f, /*n:*/-0.033113f, 0.325602f, -0.944914f, /*t:*/0.943667f, 0.147593f, + /*v:*/0.937500f, -0.335938f, -0.062500f, /*n:*/0.408429f, 0.903836f, -0.127262f, /*t:*/0.943671f, 0.119657f, + /*v:*/0.851562f, -0.320312f, -0.015625f, /*n:*/0.292917f, 0.881222f, -0.370922f, /*t:*/0.954686f, 0.138151f, + /*v:*/-0.843750f, -0.320312f, -0.171875f, /*n:*/-0.572527f, 0.704733f, 0.418928f, /*t:*/0.993874f, 0.587608f, + /*v:*/-0.890625f, -0.328125f, -0.109375f, /*n:*/-0.195105f, 0.979980f, -0.038942f, /*t:*/0.978744f, 0.582266f, + /*v:*/-0.828125f, -0.320312f, -0.078125f, /*n:*/-0.449232f, 0.808618f, -0.379864f, /*t:*/0.983414f, 0.567912f, + /*v:*/-0.843750f, -0.320312f, -0.171875f, /*n:*/-0.572527f, 0.704733f, 0.418928f, /*t:*/0.993874f, 0.587608f, + /*v:*/-0.828125f, -0.320312f, -0.078125f, /*n:*/-0.449232f, 0.808618f, -0.379864f, /*t:*/0.983414f, 0.567912f, + /*v:*/-0.765625f, -0.320312f, -0.093750f, /*n:*/-0.758354f, 0.594806f, -0.266518f, /*t:*/0.995397f, 0.562049f, + /*v:*/0.828125f, -0.320312f, -0.078125f, /*n:*/0.449232f, 0.808618f, -0.379864f, /*t:*/0.391902f, 0.847088f, + /*v:*/0.890625f, -0.328125f, -0.109375f, /*n:*/0.195105f, 0.979980f, -0.038942f, /*t:*/0.391134f, 0.862398f, + /*v:*/0.843750f, -0.320312f, -0.171875f, /*n:*/0.572527f, 0.704733f, 0.418928f, /*t:*/0.373149f, 0.857997f, + /*v:*/0.828125f, -0.320312f, -0.078125f, /*n:*/0.449232f, 0.808618f, -0.379864f, /*t:*/0.391902f, 0.847088f, + /*v:*/0.843750f, -0.320312f, -0.171875f, /*n:*/0.572527f, 0.704733f, 0.418928f, /*t:*/0.373149f, 0.857997f, + /*v:*/0.765625f, -0.320312f, -0.093750f, /*n:*/0.758354f, 0.594806f, -0.266518f, /*t:*/0.382580f, 0.836655f, + /*v:*/-0.890625f, -0.328125f, -0.109375f, /*n:*/-0.195105f, 0.979980f, -0.038942f, /*t:*/0.978744f, 0.582266f, + /*v:*/-0.843750f, -0.320312f, -0.171875f, /*n:*/-0.572527f, 0.704733f, 0.418928f, /*t:*/0.993874f, 0.587608f, + /*v:*/-0.960938f, -0.351562f, -0.171875f, /*n:*/-0.334666f, 0.942289f, 0.004578f, /*t:*/0.978860f, 0.603033f, + /*v:*/-0.843750f, -0.320312f, -0.171875f, /*n:*/-0.572527f, 0.704733f, 0.418928f, /*t:*/0.993874f, 0.587608f, + /*v:*/-0.890625f, -0.320312f, -0.234375f, /*n:*/-0.659291f, 0.588061f, 0.468490f, /*t:*/0.995113f, 0.605860f, + /*v:*/-0.960938f, -0.351562f, -0.171875f, /*n:*/-0.334666f, 0.942289f, 0.004578f, /*t:*/0.978860f, 0.603033f, + /*v:*/0.890625f, -0.320312f, -0.234375f, /*n:*/0.659291f, 0.588061f, 0.468490f, /*t:*/0.364118f, 0.872131f, + /*v:*/0.843750f, -0.320312f, -0.171875f, /*n:*/0.572527f, 0.704733f, 0.418928f, /*t:*/0.373149f, 0.857997f, + /*v:*/0.960938f, -0.351562f, -0.171875f, /*n:*/0.334666f, 0.942289f, 0.004578f, /*t:*/0.384423f, 0.883619f, + /*v:*/0.843750f, -0.320312f, -0.171875f, /*n:*/0.572527f, 0.704733f, 0.418928f, /*t:*/0.373149f, 0.857997f, + /*v:*/0.890625f, -0.328125f, -0.109375f, /*n:*/0.195105f, 0.979980f, -0.038942f, /*t:*/0.391134f, 0.862398f, + /*v:*/0.960938f, -0.351562f, -0.171875f, /*n:*/0.334666f, 0.942289f, 0.004578f, /*t:*/0.384423f, 0.883619f, + /*v:*/-1.015625f, -0.375000f, -0.234375f, /*n:*/-0.334300f, 0.936369f, -0.106784f, /*t:*/0.893233f, 0.200730f, + /*v:*/-0.960938f, -0.351562f, -0.171875f, /*n:*/-0.334666f, 0.942289f, 0.004578f, /*t:*/0.905211f, 0.215346f, + /*v:*/-0.953125f, -0.343750f, -0.289062f, /*n:*/-0.648213f, 0.634724f, 0.420576f, /*t:*/0.885090f, 0.216184f, + /*v:*/-0.960938f, -0.351562f, -0.171875f, /*n:*/-0.334666f, 0.942289f, 0.004578f, /*t:*/0.905211f, 0.215346f, + /*v:*/-0.890625f, -0.320312f, -0.234375f, /*n:*/-0.659291f, 0.588061f, 0.468490f, /*t:*/0.896436f, 0.232184f, + /*v:*/-0.953125f, -0.343750f, -0.289062f, /*n:*/-0.648213f, 0.634724f, 0.420576f, /*t:*/0.885090f, 0.216184f, + /*v:*/0.890625f, -0.320312f, -0.234375f, /*n:*/0.659291f, 0.588061f, 0.468490f, /*t:*/0.364118f, 0.872131f, + /*v:*/0.960938f, -0.351562f, -0.171875f, /*n:*/0.334666f, 0.942289f, 0.004578f, /*t:*/0.384423f, 0.883619f, + /*v:*/0.953125f, -0.343750f, -0.289062f, /*n:*/0.648213f, 0.634724f, 0.420576f, /*t:*/0.358350f, 0.891217f, + /*v:*/0.960938f, -0.351562f, -0.171875f, /*n:*/0.334666f, 0.942289f, 0.004578f, /*t:*/0.384423f, 0.883619f, + /*v:*/1.015625f, -0.375000f, -0.234375f, /*n:*/0.334300f, 0.936369f, -0.106784f, /*t:*/0.376226f, 0.901899f, + /*v:*/0.953125f, -0.343750f, -0.289062f, /*n:*/0.648213f, 0.634724f, 0.420576f, /*t:*/0.358350f, 0.891217f, + /*v:*/-1.015625f, -0.375000f, -0.234375f, /*n:*/-0.334300f, 0.936369f, -0.106784f, /*t:*/0.981434f, 0.621605f, + /*v:*/-0.953125f, -0.343750f, -0.289062f, /*n:*/-0.648213f, 0.634724f, 0.420576f, /*t:*/0.995382f, 0.624071f, + /*v:*/-1.039062f, -0.414062f, -0.328125f, /*n:*/-0.461776f, 0.823664f, 0.329142f, /*t:*/0.994937f, 0.641102f, + /*v:*/-1.015625f, -0.375000f, -0.234375f, /*n:*/-0.334300f, 0.936369f, -0.106784f, /*t:*/0.981434f, 0.621605f, + /*v:*/-1.039062f, -0.414062f, -0.328125f, /*n:*/-0.461776f, 0.823664f, 0.329142f, /*t:*/0.994937f, 0.641102f, + /*v:*/-1.085938f, -0.390625f, -0.273437f, /*n:*/-0.289651f, 0.903500f, -0.315806f, /*t:*/0.977466f, 0.638256f, + /*v:*/1.039062f, -0.414062f, -0.328125f, /*n:*/0.461776f, 0.823664f, 0.329142f, /*t:*/0.358367f, 0.918739f, + /*v:*/0.953125f, -0.343750f, -0.289062f, /*n:*/0.648213f, 0.634724f, 0.420576f, /*t:*/0.358350f, 0.891217f, + /*v:*/1.015625f, -0.375000f, -0.234375f, /*n:*/0.334300f, 0.936369f, -0.106784f, /*t:*/0.376226f, 0.901899f, + /*v:*/1.039062f, -0.414062f, -0.328125f, /*n:*/0.461776f, 0.823664f, 0.329142f, /*t:*/0.358367f, 0.918739f, + /*v:*/1.015625f, -0.375000f, -0.234375f, /*n:*/0.334300f, 0.936369f, -0.106784f, /*t:*/0.376226f, 0.901899f, + /*v:*/1.085938f, -0.390625f, -0.273437f, /*n:*/0.289651f, 0.903500f, -0.315806f, /*t:*/0.374545f, 0.920235f, + /*v:*/-1.109375f, -0.390625f, -0.210937f, /*n:*/-0.383129f, 0.921140f, 0.068514f, /*t:*/0.965168f, 0.629881f, + /*v:*/-1.054688f, -0.382812f, -0.187500f, /*n:*/-0.314371f, 0.943602f, 0.103732f, /*t:*/0.969685f, 0.618083f, + /*v:*/-1.085938f, -0.390625f, -0.273437f, /*n:*/-0.289651f, 0.903500f, -0.315806f, /*t:*/0.977466f, 0.638256f, + /*v:*/-1.054688f, -0.382812f, -0.187500f, /*n:*/-0.314371f, 0.943602f, 0.103732f, /*t:*/0.969685f, 0.618083f, + /*v:*/-1.015625f, -0.375000f, -0.234375f, /*n:*/-0.334300f, 0.936369f, -0.106784f, /*t:*/0.981434f, 0.621605f, + /*v:*/-1.085938f, -0.390625f, -0.273437f, /*n:*/-0.289651f, 0.903500f, -0.315806f, /*t:*/0.977466f, 0.638256f, + /*v:*/1.015625f, -0.375000f, -0.234375f, /*n:*/0.334300f, 0.936369f, -0.106784f, /*t:*/0.376226f, 0.901899f, + /*v:*/1.054688f, -0.382812f, -0.187500f, /*n:*/0.314371f, 0.943602f, 0.103732f, /*t:*/0.390093f, 0.906158f, + /*v:*/1.085938f, -0.390625f, -0.273437f, /*n:*/0.289651f, 0.903500f, -0.315806f, /*t:*/0.374545f, 0.920235f, + /*v:*/1.054688f, -0.382812f, -0.187500f, /*n:*/0.314371f, 0.943602f, 0.103732f, /*t:*/0.390093f, 0.906158f, + /*v:*/1.109375f, -0.390625f, -0.210937f, /*n:*/0.383129f, 0.921140f, 0.068514f, /*t:*/0.390268f, 0.919333f, + /*v:*/1.085938f, -0.390625f, -0.273437f, /*n:*/0.289651f, 0.903500f, -0.315806f, /*t:*/0.374545f, 0.920235f, + /*v:*/-1.054688f, -0.382812f, -0.187500f, /*n:*/-0.314371f, 0.943602f, 0.103732f, /*t:*/0.969685f, 0.618083f, + /*v:*/-1.000000f, -0.367188f, -0.125000f, /*n:*/-0.444807f, 0.890683f, 0.093692f, /*t:*/0.967966f, 0.599252f, + /*v:*/-0.960938f, -0.351562f, -0.171875f, /*n:*/-0.334666f, 0.942289f, 0.004578f, /*t:*/0.978860f, 0.603033f, + /*v:*/-1.054688f, -0.382812f, -0.187500f, /*n:*/-0.314371f, 0.943602f, 0.103732f, /*t:*/0.969685f, 0.618083f, + /*v:*/-0.960938f, -0.351562f, -0.171875f, /*n:*/-0.334666f, 0.942289f, 0.004578f, /*t:*/0.978860f, 0.603033f, + /*v:*/-1.015625f, -0.375000f, -0.234375f, /*n:*/-0.334300f, 0.936369f, -0.106784f, /*t:*/0.981434f, 0.621605f, + /*v:*/0.960938f, -0.351562f, -0.171875f, /*n:*/0.334666f, 0.942289f, 0.004578f, /*t:*/0.384423f, 0.883619f, + /*v:*/1.000000f, -0.367188f, -0.125000f, /*n:*/0.444807f, 0.890683f, 0.093692f, /*t:*/0.398321f, 0.888769f, + /*v:*/1.054688f, -0.382812f, -0.187500f, /*n:*/0.314371f, 0.943602f, 0.103732f, /*t:*/0.390093f, 0.906158f, + /*v:*/0.960938f, -0.351562f, -0.171875f, /*n:*/0.334666f, 0.942289f, 0.004578f, /*t:*/0.384423f, 0.883619f, + /*v:*/1.054688f, -0.382812f, -0.187500f, /*n:*/0.314371f, 0.943602f, 0.103732f, /*t:*/0.390093f, 0.906158f, + /*v:*/1.015625f, -0.375000f, -0.234375f, /*n:*/0.334300f, 0.936369f, -0.106784f, /*t:*/0.376226f, 0.901899f, + /*v:*/-1.000000f, -0.367188f, -0.125000f, /*n:*/-0.444807f, 0.890683f, 0.093692f, /*t:*/0.967966f, 0.599252f, + /*v:*/-0.937500f, -0.335938f, -0.062500f, /*n:*/-0.408429f, 0.903836f, -0.127262f, /*t:*/0.965767f, 0.579842f, + /*v:*/-0.960938f, -0.351562f, -0.171875f, /*n:*/-0.334666f, 0.942289f, 0.004578f, /*t:*/0.978860f, 0.603033f, + /*v:*/-0.937500f, -0.335938f, -0.062500f, /*n:*/-0.408429f, 0.903836f, -0.127262f, /*t:*/0.965767f, 0.579842f, + /*v:*/-0.890625f, -0.328125f, -0.109375f, /*n:*/-0.195105f, 0.979980f, -0.038942f, /*t:*/0.978744f, 0.582266f, + /*v:*/-0.960938f, -0.351562f, -0.171875f, /*n:*/-0.334666f, 0.942289f, 0.004578f, /*t:*/0.978860f, 0.603033f, + /*v:*/0.890625f, -0.328125f, -0.109375f, /*n:*/0.195105f, 0.979980f, -0.038942f, /*t:*/0.391134f, 0.862398f, + /*v:*/0.937500f, -0.335938f, -0.062500f, /*n:*/0.408429f, 0.903836f, -0.127262f, /*t:*/0.405745f, 0.868127f, + /*v:*/0.960938f, -0.351562f, -0.171875f, /*n:*/0.334666f, 0.942289f, 0.004578f, /*t:*/0.384423f, 0.883619f, + /*v:*/0.937500f, -0.335938f, -0.062500f, /*n:*/0.408429f, 0.903836f, -0.127262f, /*t:*/0.405745f, 0.868127f, + /*v:*/1.000000f, -0.367188f, -0.125000f, /*n:*/0.444807f, 0.890683f, 0.093692f, /*t:*/0.398321f, 0.888769f, + /*v:*/0.960938f, -0.351562f, -0.171875f, /*n:*/0.334666f, 0.942289f, 0.004578f, /*t:*/0.384423f, 0.883619f, + /*v:*/-0.937500f, -0.335938f, -0.062500f, /*n:*/-0.408429f, 0.903836f, -0.127262f, /*t:*/0.965767f, 0.579842f, + /*v:*/-0.851562f, -0.320312f, -0.015625f, /*n:*/-0.292917f, 0.881222f, -0.370922f, /*t:*/0.971116f, 0.559538f, + /*v:*/-0.890625f, -0.328125f, -0.109375f, /*n:*/-0.195105f, 0.979980f, -0.038942f, /*t:*/0.978744f, 0.582266f, + /*v:*/-0.851562f, -0.320312f, -0.015625f, /*n:*/-0.292917f, 0.881222f, -0.370922f, /*t:*/0.971116f, 0.559538f, + /*v:*/-0.828125f, -0.320312f, -0.078125f, /*n:*/-0.449232f, 0.808618f, -0.379864f, /*t:*/0.983414f, 0.567912f, + /*v:*/-0.890625f, -0.328125f, -0.109375f, /*n:*/-0.195105f, 0.979980f, -0.038942f, /*t:*/0.978744f, 0.582266f, + /*v:*/0.828125f, -0.320312f, -0.078125f, /*n:*/0.449232f, 0.808618f, -0.379864f, /*t:*/0.391902f, 0.847088f, + /*v:*/0.851562f, -0.320312f, -0.015625f, /*n:*/0.292917f, 0.881222f, -0.370922f, /*t:*/0.407625f, 0.846186f, + /*v:*/0.890625f, -0.328125f, -0.109375f, /*n:*/0.195105f, 0.979980f, -0.038942f, /*t:*/0.391134f, 0.862398f, + /*v:*/0.851562f, -0.320312f, -0.015625f, /*n:*/0.292917f, 0.881222f, -0.370922f, /*t:*/0.407625f, 0.846186f, + /*v:*/0.937500f, -0.335938f, -0.062500f, /*n:*/0.408429f, 0.903836f, -0.127262f, /*t:*/0.405745f, 0.868127f, + /*v:*/0.890625f, -0.328125f, -0.109375f, /*n:*/0.195105f, 0.979980f, -0.038942f, /*t:*/0.391134f, 0.862398f, + /*v:*/-1.046875f, -0.421875f, 0.000000f, /*n:*/-0.065004f, 0.707358f, -0.703848f, /*t:*/0.947091f, 0.893041f, + /*v:*/-1.039062f, -0.367188f, 0.000000f, /*n:*/0.186804f, 0.235084f, -0.953825f, /*t:*/0.936740f, 0.887240f, + /*v:*/-0.882812f, -0.265625f, 0.015625f, /*n:*/0.033113f, 0.325602f, -0.944914f, /*t:*/0.923140f, 0.845279f, + /*v:*/-1.039062f, -0.367188f, 0.000000f, /*n:*/0.186804f, 0.235084f, -0.953825f, /*t:*/0.936740f, 0.887240f, + /*v:*/-0.882812f, -0.210938f, 0.023438f, /*n:*/-0.162877f, 0.487014f, -0.858028f, /*t:*/0.913639f, 0.840592f, + /*v:*/-0.882812f, -0.265625f, 0.015625f, /*n:*/0.033113f, 0.325602f, -0.944914f, /*t:*/0.923140f, 0.845279f, + /*v:*/0.882812f, -0.210938f, 0.023438f, /*n:*/0.162877f, 0.487014f, -0.858028f, /*t:*/0.437884f, 0.968357f, + /*v:*/1.039062f, -0.367188f, 0.000000f, /*n:*/-0.186804f, 0.235084f, -0.953825f, /*t:*/0.435178f, 0.931809f, + /*v:*/0.882812f, -0.265625f, 0.015625f, /*n:*/-0.033113f, 0.325602f, -0.944914f, /*t:*/0.446516f, 0.962213f, + /*v:*/1.039062f, -0.367188f, 0.000000f, /*n:*/-0.186804f, 0.235084f, -0.953825f, /*t:*/0.435178f, 0.931809f, + /*v:*/1.046875f, -0.421875f, 0.000000f, /*n:*/0.065004f, 0.707358f, -0.703848f, /*t:*/0.442457f, 0.923529f, + /*v:*/0.882812f, -0.265625f, 0.015625f, /*n:*/-0.033113f, 0.325602f, -0.944914f, /*t:*/0.446516f, 0.962213f, + /*v:*/-1.210938f, -0.484375f, -0.085937f, /*n:*/0.583117f, 0.640339f, -0.499893f, /*t:*/0.943563f, 0.938600f, + /*v:*/-1.187500f, -0.445312f, -0.093750f, /*n:*/0.762139f, -0.019318f, -0.647084f, /*t:*/0.935570f, 0.931208f, + /*v:*/-1.046875f, -0.421875f, 0.000000f, /*n:*/-0.065004f, 0.707358f, -0.703848f, /*t:*/0.947091f, 0.893041f, + /*v:*/-1.187500f, -0.445312f, -0.093750f, /*n:*/0.762139f, -0.019318f, -0.647084f, /*t:*/0.935570f, 0.931208f, + /*v:*/-1.039062f, -0.367188f, 0.000000f, /*n:*/0.186804f, 0.235084f, -0.953825f, /*t:*/0.936740f, 0.887240f, + /*v:*/-1.046875f, -0.421875f, 0.000000f, /*n:*/-0.065004f, 0.707358f, -0.703848f, /*t:*/0.947091f, 0.893041f, + /*v:*/1.039062f, -0.367188f, 0.000000f, /*n:*/-0.186804f, 0.235084f, -0.953825f, /*t:*/0.646527f, 0.989072f, + /*v:*/1.187500f, -0.445312f, -0.093750f, /*n:*/-0.762139f, -0.019318f, -0.647084f, /*t:*/0.652070f, 0.946995f, + /*v:*/1.046875f, -0.421875f, 0.000000f, /*n:*/0.065004f, 0.707358f, -0.703848f, /*t:*/0.658307f, 0.984797f, + /*v:*/1.187500f, -0.445312f, -0.093750f, /*n:*/-0.762139f, -0.019318f, -0.647084f, /*t:*/0.652070f, 0.946995f, + /*v:*/1.210938f, -0.484375f, -0.085937f, /*n:*/-0.583117f, 0.640339f, -0.499893f, /*t:*/0.659445f, 0.942921f, + /*v:*/1.046875f, -0.421875f, 0.000000f, /*n:*/0.065004f, 0.707358f, -0.703848f, /*t:*/0.658307f, 0.984797f, + /*v:*/-1.257812f, -0.492188f, -0.242187f, /*n:*/0.752861f, 0.657277f, 0.033784f, /*t:*/0.923014f, 0.960028f, + /*v:*/-1.234375f, -0.445312f, -0.250000f, /*n:*/0.984741f, 0.142613f, 0.099582f, /*t:*/0.913514f, 0.952045f, + /*v:*/-1.210938f, -0.484375f, -0.085937f, /*n:*/0.583117f, 0.640339f, -0.499893f, /*t:*/0.943563f, 0.938600f, + /*v:*/-1.234375f, -0.445312f, -0.250000f, /*n:*/0.984741f, 0.142613f, 0.099582f, /*t:*/0.913514f, 0.952045f, + /*v:*/-1.187500f, -0.445312f, -0.093750f, /*n:*/0.762139f, -0.019318f, -0.647084f, /*t:*/0.935570f, 0.931208f, + /*v:*/-1.210938f, -0.484375f, -0.085937f, /*n:*/0.583117f, 0.640339f, -0.499893f, /*t:*/0.943563f, 0.938600f, + /*v:*/1.187500f, -0.445312f, -0.093750f, /*n:*/-0.762139f, -0.019318f, -0.647084f, /*t:*/0.001665f, 0.737043f, + /*v:*/1.234375f, -0.445312f, -0.250000f, /*n:*/-0.984741f, 0.142613f, 0.099582f, /*t:*/0.013658f, 0.702684f, + /*v:*/1.210938f, -0.484375f, -0.085937f, /*n:*/-0.583117f, 0.640339f, -0.499893f, /*t:*/0.010888f, 0.738392f, + /*v:*/1.234375f, -0.445312f, -0.250000f, /*n:*/-0.984741f, 0.142613f, 0.099582f, /*t:*/0.013658f, 0.702684f, + /*v:*/1.257812f, -0.492188f, -0.242187f, /*n:*/-0.752861f, 0.657277f, 0.033784f, /*t:*/0.023789f, 0.703773f, + /*v:*/1.210938f, -0.484375f, -0.085937f, /*n:*/-0.583117f, 0.640339f, -0.499893f, /*t:*/0.010888f, 0.738392f, + /*v:*/-1.187500f, -0.484375f, -0.343750f, /*n:*/0.262398f, 0.804346f, 0.533067f, /*t:*/0.347476f, 0.940638f, + /*v:*/-1.171875f, -0.437500f, -0.359375f, /*n:*/0.149571f, 0.649464f, 0.745506f, /*t:*/0.358350f, 0.935458f, + /*v:*/-1.234375f, -0.445312f, -0.250000f, /*n:*/0.984741f, 0.142613f, 0.099582f, /*t:*/0.357941f, 0.964141f, + /*v:*/-1.187500f, -0.484375f, -0.343750f, /*n:*/0.262398f, 0.804346f, 0.533067f, /*t:*/0.347476f, 0.940638f, + /*v:*/-1.234375f, -0.445312f, -0.250000f, /*n:*/0.984741f, 0.142613f, 0.099582f, /*t:*/0.357941f, 0.964141f, + /*v:*/-1.257812f, -0.492188f, -0.242187f, /*n:*/0.752861f, 0.657277f, 0.033784f, /*t:*/0.346569f, 0.969318f, + /*v:*/1.234375f, -0.445312f, -0.250000f, /*n:*/-0.984741f, 0.142613f, 0.099582f, /*t:*/0.013658f, 0.702684f, + /*v:*/1.171875f, -0.437500f, -0.359375f, /*n:*/-0.149571f, 0.649464f, 0.745506f, /*t:*/0.001631f, 0.675439f, + /*v:*/1.187500f, -0.484375f, -0.343750f, /*n:*/-0.262398f, 0.804346f, 0.533067f, /*t:*/0.010044f, 0.678047f, + /*v:*/1.234375f, -0.445312f, -0.250000f, /*n:*/-0.984741f, 0.142613f, 0.099582f, /*t:*/0.013658f, 0.702684f, + /*v:*/1.187500f, -0.484375f, -0.343750f, /*n:*/-0.262398f, 0.804346f, 0.533067f, /*t:*/0.010044f, 0.678047f, + /*v:*/1.257812f, -0.492188f, -0.242187f, /*n:*/-0.752861f, 0.657277f, 0.033784f, /*t:*/0.023789f, 0.703773f, + /*v:*/-1.039062f, -0.414062f, -0.328125f, /*n:*/-0.461776f, 0.823664f, 0.329142f, /*t:*/0.880926f, 0.189518f, + /*v:*/-1.023438f, -0.359375f, -0.343750f, /*n:*/-0.560442f, 0.499100f, 0.660878f, /*t:*/0.871964f, 0.199751f, + /*v:*/-1.171875f, -0.437500f, -0.359375f, /*n:*/0.149571f, 0.649464f, 0.745506f, /*t:*/0.867390f, 0.160370f, + /*v:*/-1.039062f, -0.414062f, -0.328125f, /*n:*/-0.461776f, 0.823664f, 0.329142f, /*t:*/0.880926f, 0.189518f, + /*v:*/-1.171875f, -0.437500f, -0.359375f, /*n:*/0.149571f, 0.649464f, 0.745506f, /*t:*/0.867390f, 0.160370f, + /*v:*/-1.187500f, -0.484375f, -0.343750f, /*n:*/0.262398f, 0.804346f, 0.533067f, /*t:*/0.875253f, 0.151203f, + /*v:*/1.171875f, -0.437500f, -0.359375f, /*n:*/-0.149571f, 0.649464f, 0.745506f, /*t:*/0.292490f, 0.034471f, + /*v:*/1.023438f, -0.359375f, -0.343750f, /*n:*/0.560442f, 0.499100f, 0.660878f, /*t:*/0.273464f, 0.058524f, + /*v:*/1.039062f, -0.414062f, -0.328125f, /*n:*/0.461776f, 0.823664f, 0.329142f, /*t:*/0.268567f, 0.047929f, + /*v:*/1.171875f, -0.437500f, -0.359375f, /*n:*/-0.149571f, 0.649464f, 0.745506f, /*t:*/0.292490f, 0.034471f, + /*v:*/1.039062f, -0.414062f, -0.328125f, /*n:*/0.461776f, 0.823664f, 0.329142f, /*t:*/0.268567f, 0.047929f, + /*v:*/1.187500f, -0.484375f, -0.343750f, /*n:*/-0.262398f, 0.804346f, 0.533067f, /*t:*/0.288351f, 0.025519f, + /*v:*/-0.953125f, -0.343750f, -0.289062f, /*n:*/-0.648213f, 0.634724f, 0.420576f, /*t:*/0.885090f, 0.216184f, + /*v:*/-0.945312f, -0.289062f, -0.304688f, /*n:*/-0.684194f, 0.472182f, 0.555773f, /*t:*/0.875447f, 0.224918f, + /*v:*/-1.023438f, -0.359375f, -0.343750f, /*n:*/-0.560442f, 0.499100f, 0.660878f, /*t:*/0.871964f, 0.199751f, + /*v:*/-0.953125f, -0.343750f, -0.289062f, /*n:*/-0.648213f, 0.634724f, 0.420576f, /*t:*/0.885090f, 0.216184f, + /*v:*/-1.023438f, -0.359375f, -0.343750f, /*n:*/-0.560442f, 0.499100f, 0.660878f, /*t:*/0.871964f, 0.199751f, + /*v:*/-1.039062f, -0.414062f, -0.328125f, /*n:*/-0.461776f, 0.823664f, 0.329142f, /*t:*/0.880926f, 0.189518f, + /*v:*/1.023438f, -0.359375f, -0.343750f, /*n:*/0.560442f, 0.499100f, 0.660878f, /*t:*/0.273464f, 0.058524f, + /*v:*/0.945312f, -0.289062f, -0.304688f, /*n:*/0.684194f, 0.472182f, 0.555773f, /*t:*/0.262021f, 0.080373f, + /*v:*/0.953125f, -0.343750f, -0.289062f, /*n:*/0.648213f, 0.634724f, 0.420576f, /*t:*/0.255838f, 0.070098f, + /*v:*/1.023438f, -0.359375f, -0.343750f, /*n:*/0.560442f, 0.499100f, 0.660878f, /*t:*/0.273464f, 0.058524f, + /*v:*/0.953125f, -0.343750f, -0.289062f, /*n:*/0.648213f, 0.634724f, 0.420576f, /*t:*/0.255838f, 0.070098f, + /*v:*/1.039062f, -0.414062f, -0.328125f, /*n:*/0.461776f, 0.823664f, 0.329142f, /*t:*/0.268567f, 0.047929f, + /*v:*/-0.882812f, -0.265625f, 0.015625f, /*n:*/0.033113f, 0.325602f, -0.944914f, /*t:*/0.923140f, 0.845279f, + /*v:*/-0.882812f, -0.210938f, 0.023438f, /*n:*/-0.162877f, 0.487014f, -0.858028f, /*t:*/0.913639f, 0.840592f, + /*v:*/-0.812500f, -0.273438f, 0.015625f, /*n:*/-0.599841f, 0.613880f, -0.513138f, /*t:*/0.926401f, 0.830940f, + /*v:*/-0.882812f, -0.265625f, 0.015625f, /*n:*/0.033113f, 0.325602f, -0.944914f, /*t:*/0.923140f, 0.845279f, + /*v:*/-0.812500f, -0.273438f, 0.015625f, /*n:*/-0.599841f, 0.613880f, -0.513138f, /*t:*/0.926401f, 0.830940f, + /*v:*/-0.812500f, -0.320312f, 0.015625f, /*n:*/-0.644978f, 0.698386f, -0.310129f, /*t:*/0.935441f, 0.834491f, + /*v:*/0.812500f, -0.273438f, 0.015625f, /*n:*/0.599841f, 0.613880f, -0.513138f, /*t:*/0.460065f, 0.969790f, + /*v:*/0.882812f, -0.210938f, 0.023438f, /*n:*/0.162877f, 0.487014f, -0.858028f, /*t:*/0.437884f, 0.968357f, + /*v:*/0.882812f, -0.265625f, 0.015625f, /*n:*/-0.033113f, 0.325602f, -0.944914f, /*t:*/0.446516f, 0.962213f, + /*v:*/0.812500f, -0.273438f, 0.015625f, /*n:*/0.599841f, 0.613880f, -0.513138f, /*t:*/0.460065f, 0.969790f, + /*v:*/0.882812f, -0.265625f, 0.015625f, /*n:*/-0.033113f, 0.325602f, -0.944914f, /*t:*/0.446516f, 0.962213f, + /*v:*/0.812500f, -0.320312f, 0.015625f, /*n:*/0.644978f, 0.698386f, -0.310129f, /*t:*/0.467477f, 0.963515f, + /*v:*/-0.812500f, -0.320312f, 0.015625f, /*n:*/-0.644978f, 0.698386f, -0.310129f, /*t:*/0.481469f, 0.928695f, + /*v:*/-0.812500f, -0.273438f, 0.015625f, /*n:*/-0.599841f, 0.613880f, -0.513138f, /*t:*/0.476963f, 0.936705f, + /*v:*/-0.843750f, -0.273438f, -0.015625f, /*n:*/-0.842036f, 0.509781f, 0.176244f, /*t:*/0.467477f, 0.932783f, + /*v:*/-0.812500f, -0.320312f, 0.015625f, /*n:*/-0.644978f, 0.698386f, -0.310129f, /*t:*/0.481469f, 0.928695f, + /*v:*/-0.843750f, -0.273438f, -0.015625f, /*n:*/-0.842036f, 0.509781f, 0.176244f, /*t:*/0.467477f, 0.932783f, + /*v:*/-0.851562f, -0.320312f, -0.015625f, /*n:*/-0.292917f, 0.881222f, -0.370922f, /*t:*/0.470903f, 0.923529f, + /*v:*/0.843750f, -0.273438f, -0.015625f, /*n:*/0.842036f, 0.509781f, 0.176244f, /*t:*/0.577358f, 0.267107f, + /*v:*/0.812500f, -0.273438f, 0.015625f, /*n:*/0.599841f, 0.613880f, -0.513138f, /*t:*/0.577167f, 0.256681f, + /*v:*/0.812500f, -0.320312f, 0.015625f, /*n:*/0.644978f, 0.698386f, -0.310129f, /*t:*/0.588023f, 0.256481f, + /*v:*/0.843750f, -0.273438f, -0.015625f, /*n:*/0.842036f, 0.509781f, 0.176244f, /*t:*/0.577358f, 0.267107f, + /*v:*/0.812500f, -0.320312f, 0.015625f, /*n:*/0.644978f, 0.698386f, -0.310129f, /*t:*/0.588023f, 0.256481f, + /*v:*/0.851562f, -0.320312f, -0.015625f, /*n:*/0.292917f, 0.881222f, -0.370922f, /*t:*/0.587988f, 0.268214f, + /*v:*/-0.851562f, -0.320312f, -0.015625f, /*n:*/-0.292917f, 0.881222f, -0.370922f, /*t:*/0.733308f, 0.267627f, + /*v:*/-0.843750f, -0.273438f, -0.015625f, /*n:*/-0.842036f, 0.509781f, 0.176244f, /*t:*/0.740306f, 0.276377f, + /*v:*/-0.828125f, -0.320312f, -0.078125f, /*n:*/-0.449232f, 0.808618f, -0.379864f, /*t:*/0.722097f, 0.277492f, + /*v:*/-0.843750f, -0.273438f, -0.015625f, /*n:*/-0.842036f, 0.509781f, 0.176244f, /*t:*/0.740306f, 0.276377f, + /*v:*/-0.820312f, -0.273438f, -0.085937f, /*n:*/-0.481368f, 0.604816f, -0.634388f, /*t:*/0.727943f, 0.287101f, + /*v:*/-0.828125f, -0.320312f, -0.078125f, /*n:*/-0.449232f, 0.808618f, -0.379864f, /*t:*/0.722097f, 0.277492f, + /*v:*/0.820312f, -0.273438f, -0.085937f, /*n:*/0.481368f, 0.604816f, -0.634388f, /*t:*/0.389291f, 0.840928f, + /*v:*/0.843750f, -0.273438f, -0.015625f, /*n:*/0.842036f, 0.509781f, 0.176244f, /*t:*/0.406701f, 0.839362f, + /*v:*/0.828125f, -0.320312f, -0.078125f, /*n:*/0.449232f, 0.808618f, -0.379864f, /*t:*/0.391902f, 0.847088f, + /*v:*/0.843750f, -0.273438f, -0.015625f, /*n:*/0.842036f, 0.509781f, 0.176244f, /*t:*/0.406701f, 0.839362f, + /*v:*/0.851562f, -0.320312f, -0.015625f, /*n:*/0.292917f, 0.881222f, -0.370922f, /*t:*/0.407625f, 0.846186f, + /*v:*/0.828125f, -0.320312f, -0.078125f, /*n:*/0.449232f, 0.808618f, -0.379864f, /*t:*/0.391902f, 0.847088f, + /*v:*/-0.828125f, -0.320312f, -0.078125f, /*n:*/-0.449232f, 0.808618f, -0.379864f, /*t:*/0.722097f, 0.277492f, + /*v:*/-0.820312f, -0.273438f, -0.085937f, /*n:*/-0.481368f, 0.604816f, -0.634388f, /*t:*/0.727943f, 0.287101f, + /*v:*/-0.765625f, -0.320312f, -0.093750f, /*n:*/-0.758354f, 0.594806f, -0.266518f, /*t:*/0.714489f, 0.287162f, + /*v:*/-0.820312f, -0.273438f, -0.085937f, /*n:*/-0.481368f, 0.604816f, -0.634388f, /*t:*/0.727943f, 0.287101f, + /*v:*/-0.757812f, -0.273438f, -0.093750f, /*n:*/-0.851466f, 0.522752f, -0.041353f, /*t:*/0.721487f, 0.295911f, + /*v:*/-0.765625f, -0.320312f, -0.093750f, /*n:*/-0.758354f, 0.594806f, -0.266518f, /*t:*/0.714489f, 0.287162f, + /*v:*/0.757812f, -0.273438f, -0.093750f, /*n:*/0.851466f, 0.522752f, -0.041353f, /*t:*/0.680581f, 0.272312f, + /*v:*/0.820312f, -0.273438f, -0.085937f, /*n:*/0.481368f, 0.604816f, -0.634388f, /*t:*/0.680396f, 0.258255f, + /*v:*/0.765625f, -0.320312f, -0.093750f, /*n:*/0.758354f, 0.594806f, -0.266518f, /*t:*/0.690007f, 0.272337f, + /*v:*/0.820312f, -0.273438f, -0.085937f, /*n:*/0.481368f, 0.604816f, -0.634388f, /*t:*/0.680396f, 0.258255f, + /*v:*/0.828125f, -0.320312f, -0.078125f, /*n:*/0.449232f, 0.808618f, -0.379864f, /*t:*/0.690738f, 0.257539f, + /*v:*/0.765625f, -0.320312f, -0.093750f, /*n:*/0.758354f, 0.594806f, -0.266518f, /*t:*/0.690007f, 0.272337f, + /*v:*/-0.765625f, -0.320312f, -0.093750f, /*n:*/-0.758354f, 0.594806f, -0.266518f, /*t:*/0.930978f, 0.258247f, + /*v:*/-0.757812f, -0.273438f, -0.093750f, /*n:*/-0.851466f, 0.522752f, -0.041353f, /*t:*/0.925061f, 0.266144f, + /*v:*/-0.835938f, -0.273438f, -0.171875f, /*n:*/-0.686361f, 0.374554f, 0.623371f, /*t:*/0.905114f, 0.249999f, + /*v:*/-0.765625f, -0.320312f, -0.093750f, /*n:*/-0.758354f, 0.594806f, -0.266518f, /*t:*/0.930978f, 0.258247f, + /*v:*/-0.835938f, -0.273438f, -0.171875f, /*n:*/-0.686361f, 0.374554f, 0.623371f, /*t:*/0.905114f, 0.249999f, + /*v:*/-0.843750f, -0.320312f, -0.171875f, /*n:*/-0.572527f, 0.704733f, 0.418928f, /*t:*/0.911031f, 0.242102f, + /*v:*/0.835938f, -0.273438f, -0.171875f, /*n:*/0.686361f, 0.374554f, 0.623371f, /*t:*/0.227158f, 0.101273f, + /*v:*/0.757812f, -0.273438f, -0.093750f, /*n:*/0.851466f, 0.522752f, -0.041353f, /*t:*/0.203487f, 0.112199f, + /*v:*/0.765625f, -0.320312f, -0.093750f, /*n:*/0.758354f, 0.594806f, -0.266518f, /*t:*/0.200222f, 0.102021f, + /*v:*/0.835938f, -0.273438f, -0.171875f, /*n:*/0.686361f, 0.374554f, 0.623371f, /*t:*/0.227158f, 0.101273f, + /*v:*/0.765625f, -0.320312f, -0.093750f, /*n:*/0.758354f, 0.594806f, -0.266518f, /*t:*/0.200222f, 0.102021f, + /*v:*/0.843750f, -0.320312f, -0.171875f, /*n:*/0.572527f, 0.704733f, 0.418928f, /*t:*/0.223894f, 0.091095f, + /*v:*/-0.843750f, -0.320312f, -0.171875f, /*n:*/-0.572527f, 0.704733f, 0.418928f, /*t:*/0.911031f, 0.242102f, + /*v:*/-0.835938f, -0.273438f, -0.171875f, /*n:*/-0.686361f, 0.374554f, 0.623371f, /*t:*/0.905114f, 0.249999f, + /*v:*/-0.890625f, -0.320312f, -0.234375f, /*n:*/-0.659291f, 0.588061f, 0.468490f, /*t:*/0.896436f, 0.232184f, + /*v:*/-0.835938f, -0.273438f, -0.171875f, /*n:*/-0.686361f, 0.374554f, 0.623371f, /*t:*/0.905114f, 0.249999f, + /*v:*/-0.890625f, -0.265625f, -0.242187f, /*n:*/-0.726066f, 0.473128f, 0.498917f, /*t:*/0.887425f, 0.239534f, + /*v:*/-0.890625f, -0.320312f, -0.234375f, /*n:*/-0.659291f, 0.588061f, 0.468490f, /*t:*/0.896436f, 0.232184f, + /*v:*/0.890625f, -0.265625f, -0.242187f, /*n:*/0.726066f, 0.473128f, 0.498917f, /*t:*/0.246647f, 0.093722f, + /*v:*/0.835938f, -0.273438f, -0.171875f, /*n:*/0.686361f, 0.374554f, 0.623371f, /*t:*/0.227158f, 0.101273f, + /*v:*/0.890625f, -0.320312f, -0.234375f, /*n:*/0.659291f, 0.588061f, 0.468490f, /*t:*/0.240257f, 0.082995f, + /*v:*/0.835938f, -0.273438f, -0.171875f, /*n:*/0.686361f, 0.374554f, 0.623371f, /*t:*/0.227158f, 0.101273f, + /*v:*/0.843750f, -0.320312f, -0.171875f, /*n:*/0.572527f, 0.704733f, 0.418928f, /*t:*/0.223894f, 0.091095f, + /*v:*/0.890625f, -0.320312f, -0.234375f, /*n:*/0.659291f, 0.588061f, 0.468490f, /*t:*/0.240257f, 0.082995f, + /*v:*/-0.890625f, -0.320312f, -0.234375f, /*n:*/-0.659291f, 0.588061f, 0.468490f, /*t:*/0.896436f, 0.232184f, + /*v:*/-0.890625f, -0.265625f, -0.242187f, /*n:*/-0.726066f, 0.473128f, 0.498917f, /*t:*/0.887425f, 0.239534f, + /*v:*/-0.945312f, -0.289062f, -0.304688f, /*n:*/-0.684194f, 0.472182f, 0.555773f, /*t:*/0.875447f, 0.224918f, + /*v:*/-0.890625f, -0.320312f, -0.234375f, /*n:*/-0.659291f, 0.588061f, 0.468490f, /*t:*/0.896436f, 0.232184f, + /*v:*/-0.945312f, -0.289062f, -0.304688f, /*n:*/-0.684194f, 0.472182f, 0.555773f, /*t:*/0.875447f, 0.224918f, + /*v:*/-0.953125f, -0.343750f, -0.289062f, /*n:*/-0.648213f, 0.634724f, 0.420576f, /*t:*/0.885090f, 0.216184f, + /*v:*/0.945312f, -0.289062f, -0.304688f, /*n:*/0.684194f, 0.472182f, 0.555773f, /*t:*/0.262021f, 0.080373f, + /*v:*/0.890625f, -0.265625f, -0.242187f, /*n:*/0.726066f, 0.473128f, 0.498917f, /*t:*/0.246647f, 0.093722f, + /*v:*/0.890625f, -0.320312f, -0.234375f, /*n:*/0.659291f, 0.588061f, 0.468490f, /*t:*/0.240257f, 0.082995f, + /*v:*/0.945312f, -0.289062f, -0.304688f, /*n:*/0.684194f, 0.472182f, 0.555773f, /*t:*/0.262021f, 0.080373f, + /*v:*/0.890625f, -0.320312f, -0.234375f, /*n:*/0.659291f, 0.588061f, 0.468490f, /*t:*/0.240257f, 0.082995f, + /*v:*/0.953125f, -0.343750f, -0.289062f, /*n:*/0.648213f, 0.634724f, 0.420576f, /*t:*/0.255838f, 0.070098f, + /*v:*/-0.718750f, -0.187500f, -0.039062f, /*n:*/-0.960936f, 0.249855f, 0.118839f, /*t:*/0.925566f, 0.286178f, + /*v:*/-0.726562f, -0.070312f, 0.000000f, /*n:*/-0.857204f, -0.148289f, 0.493118f, /*t:*/0.914957f, 0.301250f, + /*v:*/-0.796875f, -0.210938f, -0.203125f, /*n:*/-0.848354f, 0.301157f, 0.435377f, /*t:*/0.894469f, 0.265567f, + /*v:*/-0.726562f, -0.070312f, 0.000000f, /*n:*/-0.857204f, -0.148289f, 0.493118f, /*t:*/0.914957f, 0.301250f, + /*v:*/-0.859375f, -0.046875f, -0.320312f, /*n:*/-0.997009f, -0.069521f, 0.033296f, /*t:*/0.846225f, 0.274239f, + /*v:*/-0.796875f, -0.210938f, -0.203125f, /*n:*/-0.848354f, 0.301157f, 0.435377f, /*t:*/0.894469f, 0.265567f, + /*v:*/0.859375f, -0.046875f, -0.320312f, /*n:*/0.997009f, -0.069521f, 0.033296f, /*t:*/0.273543f, 0.133277f, + /*v:*/0.726562f, -0.070312f, 0.000000f, /*n:*/0.857204f, -0.148289f, 0.493118f, /*t:*/0.205101f, 0.165466f, + /*v:*/0.796875f, -0.210938f, -0.203125f, /*n:*/0.848354f, 0.301157f, 0.435377f, /*t:*/0.231114f, 0.112925f, + /*v:*/0.726562f, -0.070312f, 0.000000f, /*n:*/0.857204f, -0.148289f, 0.493118f, /*t:*/0.205101f, 0.165466f, + /*v:*/0.718750f, -0.187500f, -0.039062f, /*n:*/0.960936f, 0.249855f, 0.118839f, /*t:*/0.197836f, 0.137279f, + /*v:*/0.796875f, -0.210938f, -0.203125f, /*n:*/0.848354f, 0.301157f, 0.435377f, /*t:*/0.231114f, 0.112925f, + /*v:*/-0.843750f, -0.210938f, -0.289062f, /*n:*/-0.372723f, 0.900449f, 0.224158f, /*t:*/0.284976f, 0.466914f, + /*v:*/-0.796875f, -0.210938f, -0.203125f, /*n:*/-0.848354f, 0.301157f, 0.435377f, /*t:*/0.292490f, 0.472532f, + /*v:*/-0.820312f, -0.203125f, -0.328125f, /*n:*/-0.908536f, 0.352489f, -0.224219f, /*t:*/0.274285f, 0.465835f, + /*v:*/-0.796875f, -0.210938f, -0.203125f, /*n:*/-0.848354f, 0.301157f, 0.435377f, /*t:*/0.292490f, 0.472532f, + /*v:*/-0.859375f, -0.046875f, -0.320312f, /*n:*/-0.997009f, -0.069521f, 0.033296f, /*t:*/0.272756f, 0.501874f, + /*v:*/-0.820312f, -0.203125f, -0.328125f, /*n:*/-0.908536f, 0.352489f, -0.224219f, /*t:*/0.274285f, 0.465835f, + /*v:*/0.859375f, -0.046875f, -0.320312f, /*n:*/0.997009f, -0.069521f, 0.033296f, /*t:*/0.273543f, 0.133277f, + /*v:*/0.796875f, -0.210938f, -0.203125f, /*n:*/0.848354f, 0.301157f, 0.435377f, /*t:*/0.231114f, 0.112925f, + /*v:*/0.820312f, -0.203125f, -0.328125f, /*n:*/0.908536f, 0.352489f, -0.224219f, /*t:*/0.253016f, 0.101246f, + /*v:*/0.796875f, -0.210938f, -0.203125f, /*n:*/0.848354f, 0.301157f, 0.435377f, /*t:*/0.231114f, 0.112925f, + /*v:*/0.843750f, -0.210938f, -0.289062f, /*n:*/0.372723f, 0.900449f, 0.224128f, /*t:*/0.250717f, 0.102507f, + /*v:*/0.820312f, -0.203125f, -0.328125f, /*n:*/0.908536f, 0.352489f, -0.224219f, /*t:*/0.253016f, 0.101246f, + /*v:*/-0.890625f, -0.265625f, -0.242187f, /*n:*/-0.726066f, 0.473128f, 0.498917f, /*t:*/0.887425f, 0.239534f, + /*v:*/-0.843750f, -0.210938f, -0.289062f, /*n:*/-0.372723f, 0.900449f, 0.224158f, /*t:*/0.875934f, 0.255304f, + /*v:*/-0.945312f, -0.289062f, -0.304688f, /*n:*/-0.684194f, 0.472182f, 0.555773f, /*t:*/0.875447f, 0.224918f, + /*v:*/-0.843750f, -0.210938f, -0.289062f, /*n:*/-0.372723f, 0.900449f, 0.224158f, /*t:*/0.875934f, 0.255304f, + /*v:*/-0.921875f, -0.218750f, -0.359375f, /*n:*/-0.449232f, 0.892575f, 0.038331f, /*t:*/0.858400f, 0.238208f, + /*v:*/-0.945312f, -0.289062f, -0.304688f, /*n:*/-0.684194f, 0.472182f, 0.555773f, /*t:*/0.875447f, 0.224918f, + /*v:*/0.921875f, -0.218750f, -0.359375f, /*n:*/0.449232f, 0.892575f, 0.038331f, /*t:*/0.453105f, 0.733576f, + /*v:*/0.843750f, -0.210938f, -0.289062f, /*n:*/0.372723f, 0.900449f, 0.224128f, /*t:*/0.444530f, 0.712333f, + /*v:*/0.945312f, -0.289062f, -0.304688f, /*n:*/0.684194f, 0.472182f, 0.555773f, /*t:*/0.468975f, 0.729887f, + /*v:*/0.843750f, -0.210938f, -0.289062f, /*n:*/0.372723f, 0.900449f, 0.224128f, /*t:*/0.444530f, 0.712333f, + /*v:*/0.890625f, -0.265625f, -0.242187f, /*n:*/0.726066f, 0.473128f, 0.498917f, /*t:*/0.462948f, 0.710780f, + /*v:*/0.945312f, -0.289062f, -0.304688f, /*n:*/0.684194f, 0.472182f, 0.555773f, /*t:*/0.468975f, 0.729887f, + /*v:*/-0.835938f, -0.273438f, -0.171875f, /*n:*/-0.686361f, 0.374554f, 0.623371f, /*t:*/0.905114f, 0.249999f, + /*v:*/-0.796875f, -0.210938f, -0.203125f, /*n:*/-0.848354f, 0.301157f, 0.435377f, /*t:*/0.894469f, 0.265567f, + /*v:*/-0.890625f, -0.265625f, -0.242187f, /*n:*/-0.726066f, 0.473128f, 0.498917f, /*t:*/0.887425f, 0.239534f, + /*v:*/-0.796875f, -0.210938f, -0.203125f, /*n:*/-0.848354f, 0.301157f, 0.435377f, /*t:*/0.894469f, 0.265567f, + /*v:*/-0.843750f, -0.210938f, -0.289062f, /*n:*/-0.372723f, 0.900449f, 0.224158f, /*t:*/0.875934f, 0.255304f, + /*v:*/-0.890625f, -0.265625f, -0.242187f, /*n:*/-0.726066f, 0.473128f, 0.498917f, /*t:*/0.887425f, 0.239534f, + /*v:*/0.843750f, -0.210938f, -0.289062f, /*n:*/0.372723f, 0.900449f, 0.224128f, /*t:*/0.444530f, 0.712333f, + /*v:*/0.796875f, -0.210938f, -0.203125f, /*n:*/0.848354f, 0.301157f, 0.435377f, /*t:*/0.444339f, 0.690919f, + /*v:*/0.890625f, -0.265625f, -0.242187f, /*n:*/0.726066f, 0.473128f, 0.498917f, /*t:*/0.462948f, 0.710780f, + /*v:*/0.796875f, -0.210938f, -0.203125f, /*n:*/0.848354f, 0.301157f, 0.435377f, /*t:*/0.444339f, 0.690919f, + /*v:*/0.835938f, -0.273438f, -0.171875f, /*n:*/0.686361f, 0.374554f, 0.623371f, /*t:*/0.460202f, 0.692643f, + /*v:*/0.890625f, -0.265625f, -0.242187f, /*n:*/0.726066f, 0.473128f, 0.498917f, /*t:*/0.462948f, 0.710780f, + /*v:*/-0.718750f, -0.187500f, -0.039062f, /*n:*/-0.960936f, 0.249855f, 0.118839f, /*t:*/0.925566f, 0.286178f, + /*v:*/-0.796875f, -0.210938f, -0.203125f, /*n:*/-0.848354f, 0.301157f, 0.435377f, /*t:*/0.894469f, 0.265567f, + /*v:*/-0.757812f, -0.273438f, -0.093750f, /*n:*/-0.851466f, 0.522752f, -0.041353f, /*t:*/0.925061f, 0.266144f, + /*v:*/-0.796875f, -0.210938f, -0.203125f, /*n:*/-0.848354f, 0.301157f, 0.435377f, /*t:*/0.894469f, 0.265567f, + /*v:*/-0.835938f, -0.273438f, -0.171875f, /*n:*/-0.686361f, 0.374554f, 0.623371f, /*t:*/0.905114f, 0.249999f, + /*v:*/-0.757812f, -0.273438f, -0.093750f, /*n:*/-0.851466f, 0.522752f, -0.041353f, /*t:*/0.925061f, 0.266144f, + /*v:*/0.835938f, -0.273438f, -0.171875f, /*n:*/0.686361f, 0.374554f, 0.623371f, /*t:*/0.227158f, 0.101273f, + /*v:*/0.796875f, -0.210938f, -0.203125f, /*n:*/0.848354f, 0.301157f, 0.435377f, /*t:*/0.231114f, 0.112925f, + /*v:*/0.757812f, -0.273438f, -0.093750f, /*n:*/0.851466f, 0.522752f, -0.041353f, /*t:*/0.203487f, 0.112199f, + /*v:*/0.796875f, -0.210938f, -0.203125f, /*n:*/0.848354f, 0.301157f, 0.435377f, /*t:*/0.231114f, 0.112925f, + /*v:*/0.718750f, -0.187500f, -0.039062f, /*n:*/0.960936f, 0.249855f, 0.118839f, /*t:*/0.197836f, 0.137279f, + /*v:*/0.757812f, -0.273438f, -0.093750f, /*n:*/0.851466f, 0.522752f, -0.041353f, /*t:*/0.203487f, 0.112199f, + /*v:*/-0.843750f, -0.273438f, -0.015625f, /*n:*/-0.842036f, 0.509781f, 0.176244f, /*t:*/0.740306f, 0.276377f, + /*v:*/-0.718750f, -0.187500f, -0.039062f, /*n:*/-0.960936f, 0.249855f, 0.118839f, /*t:*/0.740288f, 0.309075f, + /*v:*/-0.757812f, -0.273438f, -0.093750f, /*n:*/-0.851466f, 0.522752f, -0.041353f, /*t:*/0.721487f, 0.295911f, + /*v:*/-0.843750f, -0.273438f, -0.015625f, /*n:*/-0.842036f, 0.509781f, 0.176244f, /*t:*/0.740306f, 0.276377f, + /*v:*/-0.757812f, -0.273438f, -0.093750f, /*n:*/-0.851466f, 0.522752f, -0.041353f, /*t:*/0.721487f, 0.295911f, + /*v:*/-0.820312f, -0.273438f, -0.085937f, /*n:*/-0.481368f, 0.604816f, -0.634388f, /*t:*/0.727943f, 0.287101f, + /*v:*/0.757812f, -0.273438f, -0.093750f, /*n:*/0.851466f, 0.522752f, -0.041353f, /*t:*/0.381656f, 0.829831f, + /*v:*/0.718750f, -0.187500f, -0.039062f, /*n:*/0.960936f, 0.249855f, 0.118839f, /*t:*/0.389413f, 0.808017f, + /*v:*/0.843750f, -0.273438f, -0.015625f, /*n:*/0.842036f, 0.509781f, 0.176244f, /*t:*/0.406701f, 0.839362f, + /*v:*/0.757812f, -0.273438f, -0.093750f, /*n:*/0.851466f, 0.522752f, -0.041353f, /*t:*/0.381656f, 0.829831f, + /*v:*/0.843750f, -0.273438f, -0.015625f, /*n:*/0.842036f, 0.509781f, 0.176244f, /*t:*/0.406701f, 0.839362f, + /*v:*/0.820312f, -0.273438f, -0.085937f, /*n:*/0.481368f, 0.604816f, -0.634388f, /*t:*/0.389291f, 0.840928f, + /*v:*/-0.718750f, -0.171875f, 0.023438f, /*n:*/-0.731193f, 0.672475f, -0.114414f, /*t:*/0.481447f, 0.968723f, + /*v:*/-0.718750f, -0.187500f, -0.039062f, /*n:*/-0.960936f, 0.249855f, 0.118839f, /*t:*/0.472613f, 0.968158f, + /*v:*/-0.812500f, -0.273438f, 0.015625f, /*n:*/-0.599841f, 0.613880f, -0.513138f, /*t:*/0.476963f, 0.936705f, + /*v:*/-0.718750f, -0.187500f, -0.039062f, /*n:*/-0.960936f, 0.249855f, 0.118839f, /*t:*/0.472613f, 0.968158f, + /*v:*/-0.843750f, -0.273438f, -0.015625f, /*n:*/-0.842036f, 0.509781f, 0.176244f, /*t:*/0.467477f, 0.932783f, + /*v:*/-0.812500f, -0.273438f, 0.015625f, /*n:*/-0.599841f, 0.613880f, -0.513138f, /*t:*/0.476963f, 0.936705f, + /*v:*/0.843750f, -0.273438f, -0.015625f, /*n:*/0.842036f, 0.509781f, 0.176244f, /*t:*/0.406701f, 0.839362f, + /*v:*/0.718750f, -0.187500f, -0.039062f, /*n:*/0.960936f, 0.249855f, 0.118839f, /*t:*/0.389413f, 0.808017f, + /*v:*/0.812500f, -0.273438f, 0.015625f, /*n:*/0.599841f, 0.613880f, -0.513138f, /*t:*/0.410473f, 0.830825f, + /*v:*/0.718750f, -0.187500f, -0.039062f, /*n:*/0.960936f, 0.249855f, 0.118839f, /*t:*/0.389413f, 0.808017f, + /*v:*/0.718750f, -0.171875f, 0.023438f, /*n:*/0.731193f, 0.672475f, -0.114414f, /*t:*/0.402846f, 0.800920f, + /*v:*/0.812500f, -0.273438f, 0.015625f, /*n:*/0.599841f, 0.613880f, -0.513138f, /*t:*/0.410473f, 0.830825f, + /*v:*/-0.812500f, -0.273438f, 0.015625f, /*n:*/-0.599841f, 0.613880f, -0.513138f, /*t:*/0.606958f, 0.971094f, + /*v:*/-0.882812f, -0.210938f, 0.023438f, /*n:*/-0.162877f, 0.487014f, -0.858028f, /*t:*/0.623388f, 0.976640f, + /*v:*/-0.828125f, -0.132812f, 0.070313f, /*n:*/-0.329936f, 0.889645f, -0.315653f, /*t:*/0.633513f, 0.995092f, + /*v:*/-0.812500f, -0.273438f, 0.015625f, /*n:*/-0.599841f, 0.613880f, -0.513138f, /*t:*/0.606958f, 0.971094f, + /*v:*/-0.828125f, -0.132812f, 0.070313f, /*n:*/-0.329936f, 0.889645f, -0.315653f, /*t:*/0.633513f, 0.995092f, + /*v:*/-0.718750f, -0.171875f, 0.023438f, /*n:*/-0.731193f, 0.672475f, -0.114414f, /*t:*/0.608244f, 1.000605f, + /*v:*/0.828125f, -0.132812f, 0.070313f, /*n:*/0.329936f, 0.889645f, -0.315653f, /*t:*/0.435205f, 0.978459f, + /*v:*/0.882812f, -0.210938f, 0.023438f, /*n:*/0.162877f, 0.487014f, -0.858028f, /*t:*/0.437884f, 0.968357f, + /*v:*/0.812500f, -0.273438f, 0.015625f, /*n:*/0.599841f, 0.613880f, -0.513138f, /*t:*/0.460065f, 0.969790f, + /*v:*/0.828125f, -0.132812f, 0.070313f, /*n:*/0.329936f, 0.889645f, -0.315653f, /*t:*/0.435205f, 0.978459f, + /*v:*/0.812500f, -0.273438f, 0.015625f, /*n:*/0.599841f, 0.613880f, -0.513138f, /*t:*/0.460065f, 0.969790f, + /*v:*/0.718750f, -0.171875f, 0.023438f, /*n:*/0.731193f, 0.672475f, -0.114414f, /*t:*/0.460441f, 0.993707f, + /*v:*/-0.921875f, -0.218750f, -0.359375f, /*n:*/-0.449232f, 0.892575f, 0.038331f, /*t:*/0.002203f, 0.910905f, + /*v:*/-0.843750f, -0.210938f, -0.289062f, /*n:*/-0.372723f, 0.900449f, 0.224158f, /*t:*/0.004459f, 0.887107f, + /*v:*/-0.820312f, -0.203125f, -0.328125f, /*n:*/-0.908536f, 0.352489f, -0.224219f, /*t:*/0.012580f, 0.891541f, + /*v:*/-0.921875f, -0.218750f, -0.359375f, /*n:*/-0.449232f, 0.892575f, 0.038331f, /*t:*/0.002203f, 0.910905f, + /*v:*/-0.820312f, -0.203125f, -0.328125f, /*n:*/-0.908536f, 0.352489f, -0.224219f, /*t:*/0.012580f, 0.891541f, + /*v:*/-0.890625f, -0.234375f, -0.406250f, /*n:*/0.279244f, 0.575884f, -0.768303f, /*t:*/0.015200f, 0.915027f, + /*v:*/0.820312f, -0.203125f, -0.328125f, /*n:*/0.908536f, 0.352489f, -0.224219f, /*t:*/0.435223f, 0.717960f, + /*v:*/0.843750f, -0.210938f, -0.289062f, /*n:*/0.372723f, 0.900449f, 0.224128f, /*t:*/0.444530f, 0.712333f, + /*v:*/0.921875f, -0.218750f, -0.359375f, /*n:*/0.449232f, 0.892575f, 0.038331f, /*t:*/0.453105f, 0.733576f, + /*v:*/0.820312f, -0.203125f, -0.328125f, /*n:*/0.908536f, 0.352489f, -0.224219f, /*t:*/0.435223f, 0.717960f, + /*v:*/0.921875f, -0.218750f, -0.359375f, /*n:*/0.449232f, 0.892575f, 0.038331f, /*t:*/0.453105f, 0.733576f, + /*v:*/0.890625f, -0.234375f, -0.406250f, /*n:*/-0.279244f, 0.575884f, -0.768303f, /*t:*/0.443294f, 0.742156f, + /*v:*/-0.726562f, -0.070312f, 0.000000f, /*n:*/-0.857204f, -0.148289f, 0.493118f, /*t:*/0.023789f, 0.467514f, + /*v:*/-0.734375f, 0.070312f, 0.046875f, /*n:*/-0.721030f, 0.065065f, 0.689810f, /*t:*/0.001909f, 0.477610f, + /*v:*/-0.851562f, 0.054687f, -0.234375f, /*n:*/-0.985015f, 0.063051f, 0.160466f, /*t:*/0.001955f, 0.405685f, + /*v:*/-0.726562f, -0.070312f, 0.000000f, /*n:*/-0.857204f, -0.148289f, 0.493118f, /*t:*/0.023789f, 0.467514f, + /*v:*/-0.851562f, 0.054687f, -0.234375f, /*n:*/-0.985015f, 0.063051f, 0.160466f, /*t:*/0.001955f, 0.405685f, + /*v:*/-0.859375f, -0.046875f, -0.320312f, /*n:*/-0.997009f, -0.069521f, 0.033296f, /*t:*/0.018977f, 0.385794f, + /*v:*/0.851562f, 0.054687f, -0.234375f, /*n:*/0.985015f, 0.063051f, 0.160466f, /*t:*/0.270236f, 0.163454f, + /*v:*/0.734375f, 0.070312f, 0.046875f, /*n:*/0.721030f, 0.065065f, 0.689810f, /*t:*/0.213562f, 0.199354f, + /*v:*/0.726562f, -0.070312f, 0.000000f, /*n:*/0.857204f, -0.148289f, 0.493118f, /*t:*/0.205101f, 0.165466f, + /*v:*/0.851562f, 0.054687f, -0.234375f, /*n:*/0.985015f, 0.063051f, 0.160466f, /*t:*/0.270236f, 0.163454f, + /*v:*/0.726562f, -0.070312f, 0.000000f, /*n:*/0.857204f, -0.148289f, 0.493118f, /*t:*/0.205101f, 0.165466f, + /*v:*/0.859375f, -0.046875f, -0.320312f, /*n:*/0.997009f, -0.069521f, 0.033296f, /*t:*/0.273543f, 0.133277f, + /*v:*/-0.828125f, -0.132812f, 0.070313f, /*n:*/-0.329936f, 0.889645f, -0.315653f, /*t:*/0.577167f, 0.309075f, + /*v:*/-0.773438f, -0.125000f, 0.140625f, /*n:*/-0.029542f, 0.771905f, 0.634999f, /*t:*/0.577186f, 0.288435f, + /*v:*/-0.718750f, -0.171875f, 0.023438f, /*n:*/-0.731193f, 0.672475f, -0.114414f, /*t:*/0.605725f, 0.303853f, + /*v:*/-0.773438f, -0.125000f, 0.140625f, /*n:*/-0.029542f, 0.771905f, 0.634999f, /*t:*/0.577186f, 0.288435f, + /*v:*/-0.593750f, -0.164062f, 0.125000f, /*n:*/-0.312296f, 0.001160f, 0.949950f, /*t:*/0.613958f, 0.268214f, + /*v:*/-0.718750f, -0.171875f, 0.023438f, /*n:*/-0.731193f, 0.672475f, -0.114414f, /*t:*/0.605725f, 0.303853f, + /*v:*/0.593750f, -0.164062f, 0.125000f, /*n:*/0.312296f, 0.001160f, 0.949950f, /*t:*/0.435178f, 0.603408f, + /*v:*/0.773438f, -0.125000f, 0.140625f, /*n:*/0.029542f, 0.771905f, 0.634999f, /*t:*/0.468990f, 0.610835f, + /*v:*/0.718750f, -0.171875f, 0.023438f, /*n:*/0.731193f, 0.672475f, -0.114414f, /*t:*/0.449675f, 0.634745f, + /*v:*/0.773438f, -0.125000f, 0.140625f, /*n:*/0.029542f, 0.771905f, 0.634999f, /*t:*/0.468990f, 0.610835f, + /*v:*/0.828125f, -0.132812f, 0.070313f, /*n:*/0.329936f, 0.889645f, -0.315653f, /*t:*/0.472967f, 0.630266f, + /*v:*/0.718750f, -0.171875f, 0.023438f, /*n:*/0.731193f, 0.672475f, -0.114414f, /*t:*/0.449675f, 0.634745f, + /*v:*/-0.718750f, -0.171875f, 0.023438f, /*n:*/-0.731193f, 0.672475f, -0.114414f, /*t:*/0.742201f, 0.066243f, + /*v:*/-0.593750f, -0.164062f, 0.125000f, /*n:*/-0.312296f, 0.001160f, 0.949950f, /*t:*/0.738609f, 0.103852f, + /*v:*/-0.726562f, -0.070312f, 0.000000f, /*n:*/-0.857204f, -0.148289f, 0.493118f, /*t:*/0.720931f, 0.059179f, + /*v:*/-0.593750f, -0.164062f, 0.125000f, /*n:*/-0.312296f, 0.001160f, 0.949950f, /*t:*/0.738609f, 0.103852f, + /*v:*/-0.734375f, 0.070312f, 0.046875f, /*n:*/-0.721030f, 0.065065f, 0.689810f, /*t:*/0.698723f, 0.061041f, + /*v:*/-0.726562f, -0.070312f, 0.000000f, /*n:*/-0.857204f, -0.148289f, 0.493118f, /*t:*/0.720931f, 0.059179f, + /*v:*/0.734375f, 0.070312f, 0.046875f, /*n:*/0.721030f, 0.065065f, 0.689810f, /*t:*/0.213562f, 0.199354f, + /*v:*/0.593750f, -0.164062f, 0.125000f, /*n:*/0.312296f, 0.001160f, 0.949950f, /*t:*/0.156837f, 0.163552f, + /*v:*/0.726562f, -0.070312f, 0.000000f, /*n:*/0.857204f, -0.148289f, 0.493118f, /*t:*/0.205101f, 0.165466f, + /*v:*/0.593750f, -0.164062f, 0.125000f, /*n:*/0.312296f, 0.001160f, 0.949950f, /*t:*/0.156837f, 0.163552f, + /*v:*/0.718750f, -0.171875f, 0.023438f, /*n:*/0.731193f, 0.672475f, -0.114414f, /*t:*/0.190712f, 0.146746f, + /*v:*/0.726562f, -0.070312f, 0.000000f, /*n:*/0.857204f, -0.148289f, 0.493118f, /*t:*/0.205101f, 0.165466f, + /*v:*/-0.945312f, -0.289062f, -0.304688f, /*n:*/-0.684194f, 0.472182f, 0.555773f, /*t:*/0.875447f, 0.224918f, + /*v:*/-0.921875f, -0.218750f, -0.359375f, /*n:*/-0.449232f, 0.892575f, 0.038331f, /*t:*/0.858400f, 0.238208f, + /*v:*/-1.015625f, -0.289063f, -0.414062f, /*n:*/-0.551164f, 0.830622f, 0.078768f, /*t:*/0.850928f, 0.209812f, + /*v:*/-0.945312f, -0.289062f, -0.304688f, /*n:*/-0.684194f, 0.472182f, 0.555773f, /*t:*/0.875447f, 0.224918f, + /*v:*/-1.015625f, -0.289063f, -0.414062f, /*n:*/-0.551164f, 0.830622f, 0.078768f, /*t:*/0.850928f, 0.209812f, + /*v:*/-1.023438f, -0.359375f, -0.343750f, /*n:*/-0.560442f, 0.499100f, 0.660878f, /*t:*/0.871964f, 0.199751f, + /*v:*/1.015625f, -0.289063f, -0.414062f, /*n:*/0.551164f, 0.830622f, 0.078768f, /*t:*/0.471308f, 0.757965f, + /*v:*/0.921875f, -0.218750f, -0.359375f, /*n:*/0.449232f, 0.892575f, 0.038331f, /*t:*/0.453105f, 0.733576f, + /*v:*/0.945312f, -0.289062f, -0.304688f, /*n:*/0.684194f, 0.472182f, 0.555773f, /*t:*/0.468975f, 0.729887f, + /*v:*/1.015625f, -0.289063f, -0.414062f, /*n:*/0.551164f, 0.830622f, 0.078768f, /*t:*/0.471308f, 0.757965f, + /*v:*/0.945312f, -0.289062f, -0.304688f, /*n:*/0.684194f, 0.472182f, 0.555773f, /*t:*/0.468975f, 0.729887f, + /*v:*/1.023438f, -0.359375f, -0.343750f, /*n:*/0.560442f, 0.499100f, 0.660878f, /*t:*/0.485749f, 0.749833f, + /*v:*/-1.171875f, -0.437500f, -0.359375f, /*n:*/0.149571f, 0.649464f, 0.745506f, /*t:*/0.867390f, 0.160370f, + /*v:*/-1.023438f, -0.359375f, -0.343750f, /*n:*/-0.560442f, 0.499100f, 0.660878f, /*t:*/0.871964f, 0.199751f, + /*v:*/-1.187500f, -0.390625f, -0.437500f, /*n:*/-0.321451f, 0.942381f, 0.092318f, /*t:*/0.846295f, 0.162618f, + /*v:*/-1.023438f, -0.359375f, -0.343750f, /*n:*/-0.560442f, 0.499100f, 0.660878f, /*t:*/0.871964f, 0.199751f, + /*v:*/-1.015625f, -0.289063f, -0.414062f, /*n:*/-0.551164f, 0.830622f, 0.078768f, /*t:*/0.850928f, 0.209812f, + /*v:*/-1.187500f, -0.390625f, -0.437500f, /*n:*/-0.321451f, 0.942381f, 0.092318f, /*t:*/0.846295f, 0.162618f, + /*v:*/1.015625f, -0.289063f, -0.414062f, /*n:*/0.551164f, 0.830622f, 0.078768f, /*t:*/0.471308f, 0.757965f, + /*v:*/1.023438f, -0.359375f, -0.343750f, /*n:*/0.560442f, 0.499100f, 0.660878f, /*t:*/0.485749f, 0.749833f, + /*v:*/1.187500f, -0.390625f, -0.437500f, /*n:*/0.321451f, 0.942381f, 0.092318f, /*t:*/0.510575f, 0.784513f, + /*v:*/1.023438f, -0.359375f, -0.343750f, /*n:*/0.560442f, 0.499100f, 0.660878f, /*t:*/0.485749f, 0.749833f, + /*v:*/1.171875f, -0.437500f, -0.359375f, /*n:*/-0.149571f, 0.649464f, 0.745506f, /*t:*/0.519390f, 0.771012f, + /*v:*/1.187500f, -0.390625f, -0.437500f, /*n:*/0.321451f, 0.942381f, 0.092318f, /*t:*/0.510575f, 0.784513f, + /*v:*/-1.234375f, -0.445312f, -0.250000f, /*n:*/0.984741f, 0.142613f, 0.099582f, /*t:*/0.544652f, 0.886085f, + /*v:*/-1.171875f, -0.437500f, -0.359375f, /*n:*/0.149571f, 0.649464f, 0.745506f, /*t:*/0.562315f, 0.906278f, + /*v:*/-1.265625f, -0.406250f, -0.289062f, /*n:*/0.154454f, 0.980193f, 0.123875f, /*t:*/0.536171f, 0.896619f, + /*v:*/-1.171875f, -0.437500f, -0.359375f, /*n:*/0.149571f, 0.649464f, 0.745506f, /*t:*/0.562315f, 0.906278f, + /*v:*/-1.187500f, -0.390625f, -0.437500f, /*n:*/-0.321451f, 0.942381f, 0.092318f, /*t:*/0.558239f, 0.924434f, + /*v:*/-1.265625f, -0.406250f, -0.289062f, /*n:*/0.154454f, 0.980193f, 0.123875f, /*t:*/0.536171f, 0.896619f, + /*v:*/1.187500f, -0.390625f, -0.437500f, /*n:*/0.321451f, 0.942381f, 0.092318f, /*t:*/0.834256f, 0.931648f, + /*v:*/1.171875f, -0.437500f, -0.359375f, /*n:*/-0.149571f, 0.649464f, 0.745506f, /*t:*/0.849239f, 0.945101f, + /*v:*/1.265625f, -0.406250f, -0.289062f, /*n:*/-0.154454f, 0.980193f, 0.123875f, /*t:*/0.834264f, 0.968800f, + /*v:*/1.171875f, -0.437500f, -0.359375f, /*n:*/-0.149571f, 0.649464f, 0.745506f, /*t:*/0.849239f, 0.945101f, + /*v:*/1.234375f, -0.445312f, -0.250000f, /*n:*/-0.984741f, 0.142613f, 0.099582f, /*t:*/0.847880f, 0.972982f, + /*v:*/1.265625f, -0.406250f, -0.289062f, /*n:*/-0.154454f, 0.980193f, 0.123875f, /*t:*/0.834264f, 0.968800f, + /*v:*/-1.187500f, -0.445312f, -0.093750f, /*n:*/0.762139f, -0.019318f, -0.647084f, /*t:*/0.545254f, 0.847637f, + /*v:*/-1.234375f, -0.445312f, -0.250000f, /*n:*/0.984741f, 0.142613f, 0.099582f, /*t:*/0.544652f, 0.886085f, + /*v:*/-1.210938f, -0.406250f, -0.078125f, /*n:*/0.041108f, 0.949553f, -0.310831f, /*t:*/0.535274f, 0.845312f, + /*v:*/-1.234375f, -0.445312f, -0.250000f, /*n:*/0.984741f, 0.142613f, 0.099582f, /*t:*/0.544652f, 0.886085f, + /*v:*/-1.265625f, -0.406250f, -0.289062f, /*n:*/0.154454f, 0.980193f, 0.123875f, /*t:*/0.536171f, 0.896619f, + /*v:*/-1.210938f, -0.406250f, -0.078125f, /*n:*/0.041108f, 0.949553f, -0.310831f, /*t:*/0.535274f, 0.845312f, + /*v:*/1.265625f, -0.406250f, -0.289062f, /*n:*/-0.154454f, 0.980193f, 0.123875f, /*t:*/0.633816f, 0.902852f, + /*v:*/1.234375f, -0.445312f, -0.250000f, /*n:*/-0.984741f, 0.142613f, 0.099582f, /*t:*/0.645556f, 0.911993f, + /*v:*/1.210938f, -0.406250f, -0.078125f, /*n:*/-0.041108f, 0.949553f, -0.310831f, /*t:*/0.642029f, 0.948926f, + /*v:*/1.234375f, -0.445312f, -0.250000f, /*n:*/-0.984741f, 0.142613f, 0.099582f, /*t:*/0.645556f, 0.911993f, + /*v:*/1.187500f, -0.445312f, -0.093750f, /*n:*/-0.762139f, -0.019318f, -0.647084f, /*t:*/0.652070f, 0.946995f, + /*v:*/1.210938f, -0.406250f, -0.078125f, /*n:*/-0.041108f, 0.949553f, -0.310831f, /*t:*/0.642029f, 0.948926f, + /*v:*/-1.039062f, -0.367188f, 0.000000f, /*n:*/0.186804f, 0.235084f, -0.953825f, /*t:*/0.560681f, 0.815319f, + /*v:*/-1.187500f, -0.445312f, -0.093750f, /*n:*/0.762139f, -0.019318f, -0.647084f, /*t:*/0.545254f, 0.847637f, + /*v:*/-1.210938f, -0.406250f, -0.078125f, /*n:*/0.041108f, 0.949553f, -0.310831f, /*t:*/0.535274f, 0.845312f, + /*v:*/-1.039062f, -0.367188f, 0.000000f, /*n:*/0.186804f, 0.235084f, -0.953825f, /*t:*/0.560681f, 0.815319f, + /*v:*/-1.210938f, -0.406250f, -0.078125f, /*n:*/0.041108f, 0.949553f, -0.310831f, /*t:*/0.535274f, 0.845312f, + /*v:*/-1.031250f, -0.304688f, 0.039063f, /*n:*/-0.538377f, 0.789239f, -0.295267f, /*t:*/0.552947f, 0.805279f, + /*v:*/1.210938f, -0.406250f, -0.078125f, /*n:*/-0.041108f, 0.949553f, -0.310831f, /*t:*/0.642029f, 0.948926f, + /*v:*/1.187500f, -0.445312f, -0.093750f, /*n:*/-0.762139f, -0.019318f, -0.647084f, /*t:*/0.652070f, 0.946995f, + /*v:*/1.039062f, -0.367188f, 0.000000f, /*n:*/-0.186804f, 0.235084f, -0.953825f, /*t:*/0.646527f, 0.989072f, + /*v:*/1.210938f, -0.406250f, -0.078125f, /*n:*/-0.041108f, 0.949553f, -0.310831f, /*t:*/0.642029f, 0.948926f, + /*v:*/1.039062f, -0.367188f, 0.000000f, /*n:*/-0.186804f, 0.235084f, -0.953825f, /*t:*/0.646527f, 0.989072f, + /*v:*/1.031250f, -0.304688f, 0.039063f, /*n:*/0.538377f, 0.789239f, -0.295267f, /*t:*/0.633825f, 1.000948f, + /*v:*/-0.882812f, -0.210938f, 0.023438f, /*n:*/-0.162877f, 0.487014f, -0.858028f, /*t:*/0.623388f, 0.976640f, + /*v:*/-1.039062f, -0.367188f, 0.000000f, /*n:*/0.186804f, 0.235084f, -0.953825f, /*t:*/0.620851f, 0.930785f, + /*v:*/-1.031250f, -0.304688f, 0.039063f, /*n:*/-0.538377f, 0.789239f, -0.295267f, /*t:*/0.633466f, 0.941961f, + /*v:*/-0.882812f, -0.210938f, 0.023438f, /*n:*/-0.162877f, 0.487014f, -0.858028f, /*t:*/0.623388f, 0.976640f, + /*v:*/-1.031250f, -0.304688f, 0.039063f, /*n:*/-0.538377f, 0.789239f, -0.295267f, /*t:*/0.633466f, 0.941961f, + /*v:*/-0.828125f, -0.132812f, 0.070313f, /*n:*/-0.329936f, 0.889645f, -0.315653f, /*t:*/0.633513f, 0.995092f, + /*v:*/1.031250f, -0.304688f, 0.039063f, /*n:*/0.538377f, 0.789239f, -0.295267f, /*t:*/0.523087f, 0.666666f, + /*v:*/1.039062f, -0.367188f, 0.000000f, /*n:*/-0.186804f, 0.235084f, -0.953825f, /*t:*/0.525451f, 0.680529f, + /*v:*/0.882812f, -0.210938f, 0.023438f, /*n:*/0.162877f, 0.487014f, -0.858028f, /*t:*/0.484940f, 0.650664f, + /*v:*/1.031250f, -0.304688f, 0.039063f, /*n:*/0.538377f, 0.789239f, -0.295267f, /*t:*/0.523087f, 0.666666f, + /*v:*/0.882812f, -0.210938f, 0.023438f, /*n:*/0.162877f, 0.487014f, -0.858028f, /*t:*/0.484940f, 0.650664f, + /*v:*/0.828125f, -0.132812f, 0.070313f, /*n:*/0.329936f, 0.889645f, -0.315653f, /*t:*/0.472967f, 0.630266f, + /*v:*/-0.828125f, -0.132812f, 0.070313f, /*n:*/-0.329936f, 0.889645f, -0.315653f, /*t:*/0.885654f, 0.623012f, + /*v:*/-1.031250f, -0.304688f, 0.039063f, /*n:*/-0.538377f, 0.789239f, -0.295267f, /*t:*/0.914175f, 0.566932f, + /*v:*/-1.039062f, -0.328125f, 0.101563f, /*n:*/-0.502884f, 0.370312f, 0.780999f, /*t:*/0.927634f, 0.569253f, + /*v:*/-0.828125f, -0.132812f, 0.070313f, /*n:*/-0.329936f, 0.889645f, -0.315653f, /*t:*/0.885654f, 0.623012f, + /*v:*/-1.039062f, -0.328125f, 0.101563f, /*n:*/-0.502884f, 0.370312f, 0.780999f, /*t:*/0.927634f, 0.569253f, + /*v:*/-0.773438f, -0.125000f, 0.140625f, /*n:*/-0.029542f, 0.771905f, 0.634999f, /*t:*/0.894104f, 0.641102f, + /*v:*/1.039062f, -0.328125f, 0.101563f, /*n:*/0.502884f, 0.370312f, 0.780999f, /*t:*/0.533016f, 0.656272f, + /*v:*/1.031250f, -0.304688f, 0.039063f, /*n:*/0.538377f, 0.789239f, -0.295267f, /*t:*/0.523087f, 0.666666f, + /*v:*/0.828125f, -0.132812f, 0.070313f, /*n:*/0.329936f, 0.889645f, -0.315653f, /*t:*/0.472967f, 0.630266f, + /*v:*/1.039062f, -0.328125f, 0.101563f, /*n:*/0.502884f, 0.370312f, 0.780999f, /*t:*/0.533016f, 0.656272f, + /*v:*/0.828125f, -0.132812f, 0.070313f, /*n:*/0.329936f, 0.889645f, -0.315653f, /*t:*/0.472967f, 0.630266f, + /*v:*/0.773438f, -0.125000f, 0.140625f, /*n:*/0.029542f, 0.771905f, 0.634999f, /*t:*/0.468990f, 0.610835f, + /*v:*/-1.031250f, -0.304688f, 0.039063f, /*n:*/-0.538377f, 0.789239f, -0.295267f, /*t:*/0.914175f, 0.566932f, + /*v:*/-1.210938f, -0.406250f, -0.078125f, /*n:*/0.041108f, 0.949553f, -0.310831f, /*t:*/0.917033f, 0.512677f, + /*v:*/-1.039062f, -0.328125f, 0.101563f, /*n:*/-0.502884f, 0.370312f, 0.780999f, /*t:*/0.927634f, 0.569253f, + /*v:*/-1.210938f, -0.406250f, -0.078125f, /*n:*/0.041108f, 0.949553f, -0.310831f, /*t:*/0.917033f, 0.512677f, + /*v:*/-1.281250f, -0.429688f, -0.054687f, /*n:*/-0.652608f, 0.588794f, 0.476821f, /*t:*/0.925155f, 0.498447f, + /*v:*/-1.039062f, -0.328125f, 0.101563f, /*n:*/-0.502884f, 0.370312f, 0.780999f, /*t:*/0.927634f, 0.569253f, + /*v:*/1.281250f, -0.429688f, -0.054687f, /*n:*/0.652608f, 0.588794f, 0.476821f, /*t:*/0.572161f, 0.715750f, + /*v:*/1.210938f, -0.406250f, -0.078125f, /*n:*/-0.041108f, 0.949553f, -0.310831f, /*t:*/0.554063f, 0.713225f, + /*v:*/1.039062f, -0.328125f, 0.101563f, /*n:*/0.502884f, 0.370312f, 0.780999f, /*t:*/0.533016f, 0.656272f, + /*v:*/1.210938f, -0.406250f, -0.078125f, /*n:*/-0.041108f, 0.949553f, -0.310831f, /*t:*/0.554063f, 0.713225f, + /*v:*/1.031250f, -0.304688f, 0.039063f, /*n:*/0.538377f, 0.789239f, -0.295267f, /*t:*/0.523087f, 0.666666f, + /*v:*/1.039062f, -0.328125f, 0.101563f, /*n:*/0.502884f, 0.370312f, 0.780999f, /*t:*/0.533016f, 0.656272f, + /*v:*/-1.210938f, -0.406250f, -0.078125f, /*n:*/0.041108f, 0.949553f, -0.310831f, /*t:*/0.535274f, 0.845312f, + /*v:*/-1.265625f, -0.406250f, -0.289062f, /*n:*/0.154454f, 0.980193f, 0.123875f, /*t:*/0.536171f, 0.896619f, + /*v:*/-1.281250f, -0.429688f, -0.054687f, /*n:*/-0.652608f, 0.588794f, 0.476821f, /*t:*/0.522633f, 0.845190f, + /*v:*/-1.265625f, -0.406250f, -0.289062f, /*n:*/0.154454f, 0.980193f, 0.123875f, /*t:*/0.536171f, 0.896619f, + /*v:*/-1.351562f, -0.421875f, -0.320312f, /*n:*/-0.778802f, 0.604389f, -0.167791f, /*t:*/0.522587f, 0.909812f, + /*v:*/-1.281250f, -0.429688f, -0.054687f, /*n:*/-0.652608f, 0.588794f, 0.476821f, /*t:*/0.522633f, 0.845190f, + /*v:*/1.351562f, -0.421875f, -0.320312f, /*n:*/0.778802f, 0.604389f, -0.167791f, /*t:*/0.557505f, 0.775527f, + /*v:*/1.265625f, -0.406250f, -0.289062f, /*n:*/-0.154454f, 0.980193f, 0.123875f, /*t:*/0.542688f, 0.761119f, + /*v:*/1.281250f, -0.429688f, -0.054687f, /*n:*/0.652608f, 0.588794f, 0.476821f, /*t:*/0.572161f, 0.715750f, + /*v:*/1.265625f, -0.406250f, -0.289062f, /*n:*/-0.154454f, 0.980193f, 0.123875f, /*t:*/0.542688f, 0.761119f, + /*v:*/1.210938f, -0.406250f, -0.078125f, /*n:*/-0.041108f, 0.949553f, -0.310831f, /*t:*/0.554063f, 0.713225f, + /*v:*/1.281250f, -0.429688f, -0.054687f, /*n:*/0.652608f, 0.588794f, 0.476821f, /*t:*/0.572161f, 0.715750f, + /*v:*/-1.265625f, -0.406250f, -0.289062f, /*n:*/0.154454f, 0.980193f, 0.123875f, /*t:*/0.536171f, 0.896619f, + /*v:*/-1.187500f, -0.390625f, -0.437500f, /*n:*/-0.321451f, 0.942381f, 0.092318f, /*t:*/0.558239f, 0.924434f, + /*v:*/-1.351562f, -0.421875f, -0.320312f, /*n:*/-0.778802f, 0.604389f, -0.167791f, /*t:*/0.522587f, 0.909812f, + /*v:*/-1.187500f, -0.390625f, -0.437500f, /*n:*/-0.321451f, 0.942381f, 0.092318f, /*t:*/0.558239f, 0.924434f, + /*v:*/-1.234375f, -0.421875f, -0.507812f, /*n:*/-0.383557f, 0.328776f, -0.862972f, /*t:*/0.556389f, 0.943880f, + /*v:*/-1.351562f, -0.421875f, -0.320312f, /*n:*/-0.778802f, 0.604389f, -0.167791f, /*t:*/0.522587f, 0.909812f, + /*v:*/1.234375f, -0.421875f, -0.507812f, /*n:*/0.383557f, 0.328776f, -0.862972f, /*t:*/0.514866f, 0.805279f, + /*v:*/1.187500f, -0.390625f, -0.437500f, /*n:*/0.321451f, 0.942381f, 0.092318f, /*t:*/0.510575f, 0.784513f, + /*v:*/1.351562f, -0.421875f, -0.320312f, /*n:*/0.778802f, 0.604389f, -0.167791f, /*t:*/0.557505f, 0.775527f, + /*v:*/1.187500f, -0.390625f, -0.437500f, /*n:*/0.321451f, 0.942381f, 0.092318f, /*t:*/0.510575f, 0.784513f, + /*v:*/1.265625f, -0.406250f, -0.289062f, /*n:*/-0.154454f, 0.980193f, 0.123875f, /*t:*/0.542688f, 0.761119f, + /*v:*/1.351562f, -0.421875f, -0.320312f, /*n:*/0.778802f, 0.604389f, -0.167791f, /*t:*/0.557505f, 0.775527f, + /*v:*/-1.187500f, -0.390625f, -0.437500f, /*n:*/-0.321451f, 0.942381f, 0.092318f, /*t:*/0.182585f, 0.939519f, + /*v:*/-1.015625f, -0.289063f, -0.414062f, /*n:*/-0.551164f, 0.830622f, 0.078768f, /*t:*/0.184050f, 0.975985f, + /*v:*/-1.023438f, -0.312500f, -0.476562f, /*n:*/-0.018799f, 0.488632f, -0.872250f, /*t:*/0.171514f, 0.976619f, + /*v:*/-1.187500f, -0.390625f, -0.437500f, /*n:*/-0.321451f, 0.942381f, 0.092318f, /*t:*/0.182585f, 0.939519f, + /*v:*/-1.023438f, -0.312500f, -0.476562f, /*n:*/-0.018799f, 0.488632f, -0.872250f, /*t:*/0.171514f, 0.976619f, + /*v:*/-1.234375f, -0.421875f, -0.507812f, /*n:*/-0.383557f, 0.328776f, -0.862972f, /*t:*/0.171524f, 0.934883f, + /*v:*/1.023438f, -0.312500f, -0.476562f, /*n:*/0.018799f, 0.488632f, -0.872250f, /*t:*/0.468138f, 0.773447f, + /*v:*/1.015625f, -0.289063f, -0.414062f, /*n:*/0.551164f, 0.830622f, 0.078768f, /*t:*/0.471308f, 0.757965f, + /*v:*/1.187500f, -0.390625f, -0.437500f, /*n:*/0.321451f, 0.942381f, 0.092318f, /*t:*/0.510575f, 0.784513f, + /*v:*/1.023438f, -0.312500f, -0.476562f, /*n:*/0.018799f, 0.488632f, -0.872250f, /*t:*/0.468138f, 0.773447f, + /*v:*/1.187500f, -0.390625f, -0.437500f, /*n:*/0.321451f, 0.942381f, 0.092318f, /*t:*/0.510575f, 0.784513f, + /*v:*/1.234375f, -0.421875f, -0.507812f, /*n:*/0.383557f, 0.328776f, -0.862972f, /*t:*/0.514866f, 0.805279f, + /*v:*/-0.921875f, -0.218750f, -0.359375f, /*n:*/-0.449232f, 0.892575f, 0.038331f, /*t:*/0.002203f, 0.910905f, + /*v:*/-0.890625f, -0.234375f, -0.406250f, /*n:*/0.279244f, 0.575884f, -0.768303f, /*t:*/0.015200f, 0.915027f, + /*v:*/-1.015625f, -0.289063f, -0.414062f, /*n:*/-0.551164f, 0.830622f, 0.078768f, /*t:*/0.002230f, 0.931956f, + /*v:*/-0.890625f, -0.234375f, -0.406250f, /*n:*/0.279244f, 0.575884f, -0.768303f, /*t:*/0.015200f, 0.915027f, + /*v:*/-1.023438f, -0.312500f, -0.476562f, /*n:*/-0.018799f, 0.488632f, -0.872250f, /*t:*/0.011917f, 0.944154f, + /*v:*/-1.015625f, -0.289063f, -0.414062f, /*n:*/-0.551164f, 0.830622f, 0.078768f, /*t:*/0.002230f, 0.931956f, + /*v:*/1.023438f, -0.312500f, -0.476562f, /*n:*/0.018799f, 0.488632f, -0.872250f, /*t:*/0.468138f, 0.773447f, + /*v:*/0.890625f, -0.234375f, -0.406250f, /*n:*/-0.279244f, 0.575884f, -0.768303f, /*t:*/0.443294f, 0.742156f, + /*v:*/1.015625f, -0.289063f, -0.414062f, /*n:*/0.551164f, 0.830622f, 0.078768f, /*t:*/0.471308f, 0.757965f, + /*v:*/0.890625f, -0.234375f, -0.406250f, /*n:*/-0.279244f, 0.575884f, -0.768303f, /*t:*/0.443294f, 0.742156f, + /*v:*/0.921875f, -0.218750f, -0.359375f, /*n:*/0.449232f, 0.892575f, 0.038331f, /*t:*/0.453105f, 0.733576f, + /*v:*/1.015625f, -0.289063f, -0.414062f, /*n:*/0.551164f, 0.830622f, 0.078768f, /*t:*/0.471308f, 0.757965f, + /*v:*/-0.484375f, -0.546875f, -0.023437f, /*n:*/-0.529221f, -0.681722f, 0.505112f, /*t:*/0.436870f, 0.515928f, + /*v:*/-0.343750f, -0.539062f, 0.148438f, /*n:*/-0.522263f, -0.547685f, 0.653615f, /*t:*/0.487251f, 0.527149f, + /*v:*/-0.429688f, -0.210937f, 0.195313f, /*n:*/-0.563280f, -0.121311f, 0.817286f, /*t:*/0.463467f, 0.581671f, + /*v:*/-0.343750f, -0.539062f, 0.148438f, /*n:*/-0.522263f, -0.547685f, 0.653615f, /*t:*/0.487251f, 0.527149f, + /*v:*/-0.296875f, -0.265625f, 0.312500f, /*n:*/-0.507065f, -0.203314f, 0.837581f, /*t:*/0.507024f, 0.578044f, + /*v:*/-0.429688f, -0.210937f, 0.195313f, /*n:*/-0.563280f, -0.121311f, 0.817286f, /*t:*/0.463467f, 0.581671f, + /*v:*/0.296875f, -0.265625f, 0.312500f, /*n:*/0.507065f, -0.203314f, 0.837581f, /*t:*/0.072147f, 0.172895f, + /*v:*/0.343750f, -0.539062f, 0.148438f, /*n:*/0.522263f, -0.547685f, 0.653615f, /*t:*/0.076002f, 0.097248f, + /*v:*/0.429688f, -0.210937f, 0.195313f, /*n:*/0.563280f, -0.121311f, 0.817286f, /*t:*/0.115538f, 0.167367f, + /*v:*/0.343750f, -0.539062f, 0.148438f, /*n:*/0.522263f, -0.547685f, 0.653615f, /*t:*/0.076002f, 0.097248f, + /*v:*/0.484375f, -0.546875f, -0.023437f, /*n:*/0.529221f, -0.681722f, 0.505112f, /*t:*/0.122172f, 0.072848f, + /*v:*/0.429688f, -0.210937f, 0.195313f, /*n:*/0.563280f, -0.121311f, 0.817286f, /*t:*/0.115538f, 0.167367f, + /*v:*/-0.484375f, -0.546875f, -0.023437f, /*n:*/-0.529221f, -0.681722f, 0.505112f, /*t:*/0.436870f, 0.515928f, + /*v:*/-0.429688f, -0.210937f, 0.195313f, /*n:*/-0.563280f, -0.121311f, 0.817286f, /*t:*/0.463467f, 0.581671f, + /*v:*/-0.640625f, -0.429688f, 0.007813f, /*n:*/-0.325510f, -0.728355f, 0.602924f, /*t:*/0.410188f, 0.553916f, + /*v:*/-0.429688f, -0.210937f, 0.195313f, /*n:*/-0.563280f, -0.121311f, 0.817286f, /*t:*/0.463467f, 0.581671f, + /*v:*/-0.593750f, -0.164062f, 0.125000f, /*n:*/-0.312296f, 0.001160f, 0.949950f, /*t:*/0.422792f, 0.596210f, + /*v:*/-0.640625f, -0.429688f, 0.007813f, /*n:*/-0.325510f, -0.728355f, 0.602924f, /*t:*/0.410188f, 0.553916f, + /*v:*/0.593750f, -0.164062f, 0.125000f, /*n:*/0.312296f, 0.001160f, 0.949950f, /*t:*/0.156837f, 0.163552f, + /*v:*/0.429688f, -0.210937f, 0.195313f, /*n:*/0.563280f, -0.121311f, 0.817286f, /*t:*/0.115538f, 0.167367f, + /*v:*/0.640625f, -0.429688f, 0.007813f, /*n:*/0.325510f, -0.728355f, 0.602924f, /*t:*/0.154969f, 0.094184f, + /*v:*/0.429688f, -0.210937f, 0.195313f, /*n:*/0.563280f, -0.121311f, 0.817286f, /*t:*/0.115538f, 0.167367f, + /*v:*/0.484375f, -0.546875f, -0.023437f, /*n:*/0.529221f, -0.681722f, 0.505112f, /*t:*/0.122172f, 0.072848f, + /*v:*/0.640625f, -0.429688f, 0.007813f, /*n:*/0.325510f, -0.728355f, 0.602924f, /*t:*/0.154969f, 0.094184f, + /*v:*/-0.484375f, -0.546875f, -0.023437f, /*n:*/-0.529221f, -0.681722f, 0.505112f, /*t:*/0.436870f, 0.515928f, + /*v:*/-0.617188f, -0.585938f, -0.328125f, /*n:*/-0.619648f, -0.782525f, 0.060457f, /*t:*/0.367939f, 0.478341f, + /*v:*/-0.335938f, -0.664062f, -0.054687f, /*n:*/-0.445479f, -0.820399f, 0.358348f, /*t:*/0.462276f, 0.478943f, + /*v:*/-0.617188f, -0.585938f, -0.328125f, /*n:*/-0.619648f, -0.782525f, 0.060457f, /*t:*/0.367939f, 0.478341f, + /*v:*/-0.460938f, -0.703125f, -0.437500f, /*n:*/-0.473006f, -0.863216f, -0.176305f, /*t:*/0.381989f, 0.427435f, + /*v:*/-0.335938f, -0.664062f, -0.054687f, /*n:*/-0.445479f, -0.820399f, 0.358348f, /*t:*/0.462276f, 0.478943f, + /*v:*/0.460938f, -0.703125f, -0.437500f, /*n:*/0.473006f, -0.863216f, -0.176305f, /*t:*/0.160390f, 0.000000f, + /*v:*/0.617188f, -0.585938f, -0.328125f, /*n:*/0.619648f, -0.782525f, 0.060457f, /*t:*/0.182384f, 0.029062f, + /*v:*/0.335938f, -0.664062f, -0.054687f, /*n:*/0.445479f, -0.820399f, 0.358348f, /*t:*/0.090662f, 0.051193f, + /*v:*/0.617188f, -0.585938f, -0.328125f, /*n:*/0.619648f, -0.782525f, 0.060457f, /*t:*/0.182384f, 0.029062f, + /*v:*/0.484375f, -0.546875f, -0.023437f, /*n:*/0.529221f, -0.681722f, 0.505112f, /*t:*/0.122172f, 0.072848f, + /*v:*/0.335938f, -0.664062f, -0.054687f, /*n:*/0.445479f, -0.820399f, 0.358348f, /*t:*/0.090662f, 0.051193f, + /*v:*/-0.484375f, -0.546875f, -0.023437f, /*n:*/-0.529221f, -0.681722f, 0.505112f, /*t:*/0.436870f, 0.515928f, + /*v:*/-0.640625f, -0.429688f, 0.007813f, /*n:*/-0.325510f, -0.728355f, 0.602924f, /*t:*/0.410188f, 0.553916f, + /*v:*/-0.617188f, -0.585938f, -0.328125f, /*n:*/-0.619648f, -0.782525f, 0.060457f, /*t:*/0.367939f, 0.478341f, + /*v:*/-0.640625f, -0.429688f, 0.007813f, /*n:*/-0.325510f, -0.728355f, 0.602924f, /*t:*/0.410188f, 0.553916f, + /*v:*/-0.773438f, -0.437500f, -0.265625f, /*n:*/-0.670766f, -0.740257f, 0.045289f, /*t:*/0.344661f, 0.524899f, + /*v:*/-0.617188f, -0.585938f, -0.328125f, /*n:*/-0.619648f, -0.782525f, 0.060457f, /*t:*/0.367939f, 0.478341f, + /*v:*/0.773438f, -0.437500f, -0.265625f, /*n:*/0.670766f, -0.740257f, 0.045289f, /*t:*/0.213895f, 0.060060f, + /*v:*/0.640625f, -0.429688f, 0.007813f, /*n:*/0.325510f, -0.728355f, 0.602924f, /*t:*/0.154969f, 0.094184f, + /*v:*/0.617188f, -0.585938f, -0.328125f, /*n:*/0.619648f, -0.782525f, 0.060457f, /*t:*/0.182384f, 0.029062f, + /*v:*/0.640625f, -0.429688f, 0.007813f, /*n:*/0.325510f, -0.728355f, 0.602924f, /*t:*/0.154969f, 0.094184f, + /*v:*/0.484375f, -0.546875f, -0.023437f, /*n:*/0.529221f, -0.681722f, 0.505112f, /*t:*/0.122172f, 0.072848f, + /*v:*/0.617188f, -0.585938f, -0.328125f, /*n:*/0.619648f, -0.782525f, 0.060457f, /*t:*/0.182384f, 0.029062f, + /*v:*/-0.218750f, 0.429688f, 0.281250f, /*n:*/-0.978698f, 0.061495f, 0.195837f, /*t:*/0.602695f, 0.182949f, + /*v:*/-0.210938f, 0.468750f, 0.226562f, /*n:*/-0.887173f, 0.433607f, 0.157720f, /*t:*/0.589170f, 0.175899f, + /*v:*/-0.437500f, 0.468750f, 0.093750f, /*n:*/-0.471969f, -0.176794f, 0.863674f, /*t:*/0.597785f, 0.114568f, + /*v:*/-0.218750f, 0.429688f, 0.281250f, /*n:*/-0.978698f, 0.061495f, 0.195837f, /*t:*/0.602695f, 0.182949f, + /*v:*/-0.437500f, 0.468750f, 0.093750f, /*n:*/-0.471969f, -0.176794f, 0.863674f, /*t:*/0.597785f, 0.114568f, + /*v:*/-0.406250f, 0.148438f, 0.171875f, /*n:*/-0.579028f, 0.142705f, 0.802698f, /*t:*/0.664646f, 0.138682f, + /*v:*/0.437500f, 0.468750f, 0.093750f, /*n:*/0.471969f, -0.176794f, 0.863674f, /*t:*/0.196867f, 0.299936f, + /*v:*/0.210938f, 0.468750f, 0.226562f, /*n:*/0.887173f, 0.433607f, 0.157720f, /*t:*/0.141183f, 0.322349f, + /*v:*/0.218750f, 0.429688f, 0.281250f, /*n:*/0.978698f, 0.061495f, 0.195837f, /*t:*/0.131116f, 0.319222f, + /*v:*/0.437500f, 0.468750f, 0.093750f, /*n:*/0.471969f, -0.176794f, 0.863674f, /*t:*/0.196867f, 0.299936f, + /*v:*/0.218750f, 0.429688f, 0.281250f, /*n:*/0.978698f, 0.061495f, 0.195837f, /*t:*/0.131116f, 0.319222f, + /*v:*/0.406250f, 0.148438f, 0.171875f, /*n:*/0.579028f, 0.142705f, 0.802698f, /*t:*/0.149814f, 0.241582f, + /*v:*/-0.406250f, 0.148438f, 0.171875f, /*n:*/-0.579028f, 0.142705f, 0.802698f, /*t:*/0.664646f, 0.138682f, + /*v:*/-0.437500f, 0.468750f, 0.093750f, /*n:*/-0.471969f, -0.176794f, 0.863674f, /*t:*/0.597785f, 0.114568f, + /*v:*/-0.601562f, 0.414062f, -0.000000f, /*n:*/-0.544328f, -0.053316f, 0.837153f, /*t:*/0.614903f, 0.071741f, + /*v:*/-0.406250f, 0.148438f, 0.171875f, /*n:*/-0.579028f, 0.142705f, 0.802698f, /*t:*/0.664646f, 0.138682f, + /*v:*/-0.601562f, 0.414062f, -0.000000f, /*n:*/-0.544328f, -0.053316f, 0.837153f, /*t:*/0.614903f, 0.071741f, + /*v:*/-0.734375f, 0.070312f, 0.046875f, /*n:*/-0.721030f, 0.065065f, 0.689810f, /*t:*/0.698723f, 0.061041f, + /*v:*/0.601562f, 0.414062f, -0.000000f, /*n:*/0.544328f, -0.053316f, 0.837153f, /*t:*/0.231545f, 0.272445f, + /*v:*/0.437500f, 0.468750f, 0.093750f, /*n:*/0.471969f, -0.176794f, 0.863674f, /*t:*/0.196867f, 0.299936f, + /*v:*/0.406250f, 0.148438f, 0.171875f, /*n:*/0.579028f, 0.142705f, 0.802698f, /*t:*/0.149814f, 0.241582f, + /*v:*/0.601562f, 0.414062f, -0.000000f, /*n:*/0.544328f, -0.053316f, 0.837153f, /*t:*/0.231545f, 0.272445f, + /*v:*/0.406250f, 0.148438f, 0.171875f, /*n:*/0.579028f, 0.142705f, 0.802698f, /*t:*/0.149814f, 0.241582f, + /*v:*/0.734375f, 0.070312f, 0.046875f, /*n:*/0.721030f, 0.065065f, 0.689810f, /*t:*/0.213562f, 0.199354f, + /*v:*/-0.429688f, -0.210937f, 0.195313f, /*n:*/-0.563280f, -0.121311f, 0.817286f, /*t:*/0.739047f, 0.145723f, + /*v:*/-0.406250f, 0.148438f, 0.171875f, /*n:*/-0.579028f, 0.142705f, 0.802698f, /*t:*/0.664646f, 0.138682f, + /*v:*/-0.593750f, -0.164062f, 0.125000f, /*n:*/-0.312296f, 0.001160f, 0.949950f, /*t:*/0.738609f, 0.103852f, + /*v:*/-0.406250f, 0.148438f, 0.171875f, /*n:*/-0.579028f, 0.142705f, 0.802698f, /*t:*/0.664646f, 0.138682f, + /*v:*/-0.734375f, 0.070312f, 0.046875f, /*n:*/-0.721030f, 0.065065f, 0.689810f, /*t:*/0.698723f, 0.061041f, + /*v:*/-0.593750f, -0.164062f, 0.125000f, /*n:*/-0.312296f, 0.001160f, 0.949950f, /*t:*/0.738609f, 0.103852f, + /*v:*/0.734375f, 0.070312f, 0.046875f, /*n:*/0.721030f, 0.065065f, 0.689810f, /*t:*/0.213562f, 0.199354f, + /*v:*/0.406250f, 0.148438f, 0.171875f, /*n:*/0.579028f, 0.142705f, 0.802698f, /*t:*/0.149814f, 0.241582f, + /*v:*/0.593750f, -0.164062f, 0.125000f, /*n:*/0.312296f, 0.001160f, 0.949950f, /*t:*/0.156837f, 0.163552f, + /*v:*/0.406250f, 0.148438f, 0.171875f, /*n:*/0.579028f, 0.142705f, 0.802698f, /*t:*/0.149814f, 0.241582f, + /*v:*/0.429688f, -0.210937f, 0.195313f, /*n:*/0.563280f, -0.121311f, 0.817286f, /*t:*/0.115538f, 0.167367f, + /*v:*/0.593750f, -0.164062f, 0.125000f, /*n:*/0.312296f, 0.001160f, 0.949950f, /*t:*/0.156837f, 0.163552f, + /*v:*/-0.429688f, -0.210937f, 0.195313f, /*n:*/-0.563280f, -0.121311f, 0.817286f, /*t:*/0.739047f, 0.145723f, + /*v:*/-0.296875f, -0.265625f, 0.312500f, /*n:*/-0.507065f, -0.203314f, 0.837581f, /*t:*/0.748377f, 0.188414f, + /*v:*/-0.406250f, 0.148438f, 0.171875f, /*n:*/-0.579028f, 0.142705f, 0.802698f, /*t:*/0.664646f, 0.138682f, + /*v:*/-0.296875f, -0.265625f, 0.312500f, /*n:*/-0.507065f, -0.203314f, 0.837581f, /*t:*/0.748377f, 0.188414f, + /*v:*/-0.210938f, 0.164063f, 0.390625f, /*n:*/-0.572680f, 0.011994f, 0.819666f, /*t:*/0.664064f, 0.205752f, + /*v:*/-0.406250f, 0.148438f, 0.171875f, /*n:*/-0.579028f, 0.142705f, 0.802698f, /*t:*/0.664646f, 0.138682f, + /*v:*/0.210938f, 0.164063f, 0.390625f, /*n:*/0.572680f, 0.011994f, 0.819666f, /*t:*/0.088913f, 0.274500f, + /*v:*/0.296875f, -0.265625f, 0.312500f, /*n:*/0.507065f, -0.203314f, 0.837581f, /*t:*/0.072147f, 0.172895f, + /*v:*/0.406250f, 0.148438f, 0.171875f, /*n:*/0.579028f, 0.142705f, 0.802698f, /*t:*/0.149814f, 0.241582f, + /*v:*/0.296875f, -0.265625f, 0.312500f, /*n:*/0.507065f, -0.203314f, 0.837581f, /*t:*/0.072147f, 0.172895f, + /*v:*/0.429688f, -0.210937f, 0.195313f, /*n:*/0.563280f, -0.121311f, 0.817286f, /*t:*/0.115538f, 0.167367f, + /*v:*/0.406250f, 0.148438f, 0.171875f, /*n:*/0.579028f, 0.142705f, 0.802698f, /*t:*/0.149814f, 0.241582f, + /*v:*/-0.796875f, -0.117188f, -0.617188f, /*n:*/-0.848628f, -0.014008f, -0.528764f, /*t:*/0.216492f, 0.465157f, + /*v:*/-0.796875f, -0.359375f, -0.539062f, /*n:*/-0.872158f, -0.374645f, -0.314554f, /*t:*/0.243517f, 0.415903f, + /*v:*/-0.820312f, -0.203125f, -0.328125f, /*n:*/-0.908536f, 0.352489f, -0.224219f, /*t:*/0.274285f, 0.465835f, + /*v:*/-0.796875f, -0.359375f, -0.539062f, /*n:*/-0.872158f, -0.374645f, -0.314554f, /*t:*/0.243517f, 0.415903f, + /*v:*/-0.773438f, -0.437500f, -0.265625f, /*n:*/-0.670766f, -0.740257f, 0.045289f, /*t:*/0.291040f, 0.416964f, + /*v:*/-0.820312f, -0.203125f, -0.328125f, /*n:*/-0.908536f, 0.352489f, -0.224219f, /*t:*/0.274285f, 0.465835f, + /*v:*/0.773438f, -0.437500f, -0.265625f, /*n:*/0.670766f, -0.740257f, 0.045289f, /*t:*/0.666367f, 0.902852f, + /*v:*/0.796875f, -0.359375f, -0.539062f, /*n:*/0.872158f, -0.374645f, -0.314554f, /*t:*/0.712120f, 0.924453f, + /*v:*/0.820312f, -0.203125f, -0.328125f, /*n:*/0.908536f, 0.352489f, -0.224219f, /*t:*/0.671349f, 0.959439f, + /*v:*/0.796875f, -0.359375f, -0.539062f, /*n:*/0.872158f, -0.374645f, -0.314554f, /*t:*/0.712120f, 0.924453f, + /*v:*/0.796875f, -0.117188f, -0.617188f, /*n:*/0.848628f, -0.014008f, -0.528764f, /*t:*/0.712087f, 0.979629f, + /*v:*/0.820312f, -0.203125f, -0.328125f, /*n:*/0.908536f, 0.352489f, -0.224219f, /*t:*/0.671349f, 0.959439f, + /*v:*/-0.796875f, -0.117188f, -0.617188f, /*n:*/-0.848628f, -0.014008f, -0.528764f, /*t:*/0.216492f, 0.465157f, + /*v:*/-0.820312f, -0.203125f, -0.328125f, /*n:*/-0.908536f, 0.352489f, -0.224219f, /*t:*/0.274285f, 0.465835f, + /*v:*/-0.859375f, -0.046875f, -0.320312f, /*n:*/-0.997009f, -0.069521f, 0.033296f, /*t:*/0.272756f, 0.501874f, + /*v:*/-0.796875f, -0.117188f, -0.617188f, /*n:*/-0.848628f, -0.014008f, -0.528764f, /*t:*/0.216492f, 0.465157f, + /*v:*/-0.859375f, -0.046875f, -0.320312f, /*n:*/-0.997009f, -0.069521f, 0.033296f, /*t:*/0.272756f, 0.501874f, + /*v:*/-0.796875f, 0.125000f, -0.562500f, /*n:*/-0.741752f, 0.427839f, -0.516434f, /*t:*/0.212144f, 0.523560f, + /*v:*/0.859375f, -0.046875f, -0.320312f, /*n:*/0.997009f, -0.069521f, 0.033296f, /*t:*/0.520529f, 0.010693f, + /*v:*/0.820312f, -0.203125f, -0.328125f, /*n:*/0.908536f, 0.352489f, -0.224219f, /*t:*/0.538223f, 0.040772f, + /*v:*/0.796875f, -0.117188f, -0.617188f, /*n:*/0.848628f, -0.014008f, -0.528764f, /*t:*/0.479609f, 0.035884f, + /*v:*/0.859375f, -0.046875f, -0.320312f, /*n:*/0.997009f, -0.069521f, 0.033296f, /*t:*/0.520529f, 0.010693f, + /*v:*/0.796875f, -0.117188f, -0.617188f, /*n:*/0.848628f, -0.014008f, -0.528764f, /*t:*/0.479609f, 0.035884f, + /*v:*/0.796875f, 0.125000f, -0.562500f, /*n:*/0.741752f, 0.427839f, -0.516434f, /*t:*/0.452130f, 0.000000f, + /*v:*/-0.796875f, 0.125000f, -0.562500f, /*n:*/-0.741752f, 0.427839f, -0.516434f, /*t:*/0.212144f, 0.523560f, + /*v:*/-0.859375f, -0.046875f, -0.320312f, /*n:*/-0.997009f, -0.069521f, 0.033296f, /*t:*/0.272756f, 0.501874f, + /*v:*/-0.851562f, 0.054687f, -0.234375f, /*n:*/-0.985015f, 0.063051f, 0.160466f, /*t:*/0.280497f, 0.530656f, + /*v:*/-0.796875f, 0.125000f, -0.562500f, /*n:*/-0.741752f, 0.427839f, -0.516434f, /*t:*/0.212144f, 0.523560f, + /*v:*/-0.851562f, 0.054687f, -0.234375f, /*n:*/-0.985015f, 0.063051f, 0.160466f, /*t:*/0.280497f, 0.530656f, + /*v:*/-0.726562f, 0.335937f, -0.406250f, /*n:*/-0.771722f, 0.078494f, -0.631062f, /*t:*/0.216163f, 0.581458f, + /*v:*/0.851562f, 0.054687f, -0.234375f, /*n:*/0.985015f, 0.063051f, 0.160466f, /*t:*/0.770677f, 0.315544f, + /*v:*/0.859375f, -0.046875f, -0.320312f, /*n:*/0.997009f, -0.069521f, 0.033296f, /*t:*/0.796690f, 0.309075f, + /*v:*/0.796875f, 0.125000f, -0.562500f, /*n:*/0.741752f, 0.427839f, -0.516434f, /*t:*/0.838358f, 0.352078f, + /*v:*/0.851562f, 0.054687f, -0.234375f, /*n:*/0.985015f, 0.063051f, 0.160466f, /*t:*/0.770677f, 0.315544f, + /*v:*/0.796875f, 0.125000f, -0.562500f, /*n:*/0.741752f, 0.427839f, -0.516434f, /*t:*/0.838358f, 0.352078f, + /*v:*/0.726562f, 0.335937f, -0.406250f, /*n:*/0.771722f, 0.078494f, -0.631062f, /*t:*/0.787617f, 0.378038f, + /*v:*/-0.851562f, 0.054687f, -0.234375f, /*n:*/-0.985015f, 0.063051f, 0.160466f, /*t:*/0.280497f, 0.530656f, + /*v:*/-0.773438f, 0.375000f, -0.164063f, /*n:*/-0.930204f, -0.202338f, 0.306192f, /*t:*/0.262469f, 0.607257f, + /*v:*/-0.726562f, 0.335937f, -0.406250f, /*n:*/-0.771722f, 0.078494f, -0.631062f, /*t:*/0.216163f, 0.581458f, + /*v:*/-0.773438f, 0.375000f, -0.164063f, /*n:*/-0.930204f, -0.202338f, 0.306192f, /*t:*/0.262469f, 0.607257f, + /*v:*/-0.796875f, 0.460937f, -0.406250f, /*n:*/-0.695700f, -0.421827f, -0.581378f, /*t:*/0.219840f, 0.610110f, + /*v:*/-0.726562f, 0.335937f, -0.406250f, /*n:*/-0.771722f, 0.078494f, -0.631062f, /*t:*/0.216163f, 0.581458f, + /*v:*/0.796875f, 0.460937f, -0.406250f, /*n:*/0.695700f, -0.421827f, -0.581378f, /*t:*/0.781712f, 0.084595f, + /*v:*/0.773438f, 0.375000f, -0.164063f, /*n:*/0.930204f, -0.202338f, 0.306192f, /*t:*/0.804897f, 0.041812f, + /*v:*/0.726562f, 0.335937f, -0.406250f, /*n:*/0.771722f, 0.078494f, -0.631062f, /*t:*/0.814504f, 0.080169f, + /*v:*/0.773438f, 0.375000f, -0.164063f, /*n:*/0.930204f, -0.202338f, 0.306192f, /*t:*/0.804897f, 0.041812f, + /*v:*/0.851562f, 0.054687f, -0.234375f, /*n:*/0.985015f, 0.063051f, 0.160466f, /*t:*/0.846225f, 0.004385f, + /*v:*/0.726562f, 0.335937f, -0.406250f, /*n:*/0.771722f, 0.078494f, -0.631062f, /*t:*/0.814504f, 0.080169f, + /*v:*/-0.460938f, 0.429687f, -0.523438f, /*n:*/-0.340648f, 0.322306f, -0.883206f, /*t:*/0.150282f, 0.592821f, + /*v:*/-0.484375f, 0.554688f, -0.554688f, /*n:*/-0.226691f, -0.428114f, -0.874813f, /*t:*/0.141462f, 0.619019f, + /*v:*/-0.109375f, 0.609375f, -0.460938f, /*n:*/0.459304f, 0.212561f, -0.862453f, /*t:*/0.097098f, 0.635396f, + /*v:*/-0.460938f, 0.429687f, -0.523438f, /*n:*/-0.340648f, 0.322306f, -0.883206f, /*t:*/0.150282f, 0.592821f, + /*v:*/-0.109375f, 0.609375f, -0.460938f, /*n:*/0.459304f, 0.212561f, -0.862453f, /*t:*/0.097098f, 0.635396f, + /*v:*/0.000000f, 0.570312f, -0.570312f, /*n:*/0.000000f, 0.848445f, -0.529252f, /*t:*/0.063923f, 0.618344f, + /*v:*/0.109375f, 0.609375f, -0.460938f, /*n:*/-0.459304f, 0.212561f, -0.862453f, /*t:*/0.739908f, 0.790723f, + /*v:*/0.484375f, 0.554688f, -0.554688f, /*n:*/0.226691f, -0.428114f, -0.874813f, /*t:*/0.739831f, 0.717389f, + /*v:*/0.460938f, 0.429687f, -0.523438f, /*n:*/0.340648f, 0.322306f, -0.883206f, /*t:*/0.769250f, 0.725164f, + /*v:*/0.109375f, 0.609375f, -0.460938f, /*n:*/-0.459304f, 0.212561f, -0.862453f, /*t:*/0.739908f, 0.790723f, + /*v:*/0.460938f, 0.429687f, -0.523438f, /*n:*/0.340648f, 0.322306f, -0.883206f, /*t:*/0.769250f, 0.725164f, + /*v:*/0.000000f, 0.570312f, -0.570312f, /*n:*/0.000000f, 0.848445f, -0.529252f, /*t:*/0.754946f, 0.786411f, + /*v:*/-0.335938f, 0.593750f, -0.687500f, /*n:*/-0.119297f, -0.753807f, -0.646138f, /*t:*/0.108342f, 0.935135f, + /*v:*/-0.195312f, 0.617188f, -0.664062f, /*n:*/0.476638f, -0.716392f, -0.509445f, /*t:*/0.110590f, 0.963117f, + /*v:*/-0.484375f, 0.554688f, -0.554688f, /*n:*/-0.226691f, -0.428114f, -0.874813f, /*t:*/0.074022f, 0.921950f, + /*v:*/-0.195312f, 0.617188f, -0.664062f, /*n:*/0.476638f, -0.716392f, -0.509445f, /*t:*/0.110590f, 0.963117f, + /*v:*/-0.109375f, 0.609375f, -0.460938f, /*n:*/0.459304f, 0.212561f, -0.862453f, /*t:*/0.074100f, 1.000241f, + /*v:*/-0.484375f, 0.554688f, -0.554688f, /*n:*/-0.226691f, -0.428114f, -0.874813f, /*t:*/0.074022f, 0.921950f, + /*v:*/0.109375f, 0.609375f, -0.460938f, /*n:*/-0.459304f, 0.212561f, -0.862453f, /*t:*/0.955950f, 0.463073f, + /*v:*/0.195312f, 0.617188f, -0.664062f, /*n:*/-0.476638f, -0.716392f, -0.509445f, /*t:*/0.996852f, 0.487798f, + /*v:*/0.484375f, 0.554688f, -0.554688f, /*n:*/0.226691f, -0.428114f, -0.874813f, /*t:*/0.955915f, 0.548217f, + /*v:*/0.195312f, 0.617188f, -0.664062f, /*n:*/-0.476638f, -0.716392f, -0.509445f, /*t:*/0.996852f, 0.487798f, + /*v:*/0.335938f, 0.593750f, -0.687500f, /*n:*/0.119297f, -0.753807f, -0.646138f, /*t:*/0.994231f, 0.519583f, + /*v:*/0.484375f, 0.554688f, -0.554688f, /*n:*/0.226691f, -0.428114f, -0.874813f, /*t:*/0.955915f, 0.548217f, + /*v:*/-0.453125f, 0.234375f, -0.851562f, /*n:*/-0.444227f, 0.527085f, -0.724418f, /*t:*/0.856740f, 0.639318f, + /*v:*/-0.460938f, 0.429687f, -0.523438f, /*n:*/-0.340648f, 0.322306f, -0.883206f, /*t:*/0.770284f, 0.641102f, + /*v:*/0.000000f, 0.289062f, -0.898438f, /*n:*/0.000000f, 0.556810f, -0.830622f, /*t:*/0.878255f, 0.552698f, + /*v:*/-0.460938f, 0.429687f, -0.523438f, /*n:*/-0.340648f, 0.322306f, -0.883206f, /*t:*/0.770284f, 0.641102f, + /*v:*/0.000000f, 0.570312f, -0.570312f, /*n:*/0.000000f, 0.848445f, -0.529252f, /*t:*/0.786617f, 0.561036f, + /*v:*/0.000000f, 0.289062f, -0.898438f, /*n:*/0.000000f, 0.556810f, -0.830622f, /*t:*/0.878255f, 0.552698f, + /*v:*/0.000000f, 0.570312f, -0.570312f, /*n:*/0.000000f, 0.848445f, -0.529252f, /*t:*/0.786617f, 0.561036f, + /*v:*/0.460938f, 0.429687f, -0.523438f, /*n:*/0.340648f, 0.322306f, -0.883206f, /*t:*/0.799620f, 0.448923f, + /*v:*/0.000000f, 0.289062f, -0.898438f, /*n:*/0.000000f, 0.556810f, -0.830622f, /*t:*/0.878255f, 0.552698f, + /*v:*/0.460938f, 0.429687f, -0.523438f, /*n:*/0.340648f, 0.322306f, -0.883206f, /*t:*/0.799620f, 0.448923f, + /*v:*/0.453125f, 0.234375f, -0.851562f, /*n:*/0.444227f, 0.527085f, -0.724418f, /*t:*/0.885578f, 0.450396f, + /*v:*/0.000000f, 0.289062f, -0.898438f, /*n:*/0.000000f, 0.556810f, -0.830622f, /*t:*/0.878255f, 0.552698f, + /*v:*/-0.632812f, 0.281250f, -0.453125f, /*n:*/-0.444411f, 0.425031f, -0.788537f, /*t:*/0.196929f, 0.565287f, + /*v:*/-0.679688f, 0.492187f, -0.453125f, /*n:*/-0.345531f, -0.219123f, -0.912442f, /*t:*/0.192170f, 0.613175f, + /*v:*/-0.460938f, 0.429687f, -0.523438f, /*n:*/-0.340648f, 0.322306f, -0.883206f, /*t:*/0.150282f, 0.592821f, + /*v:*/-0.679688f, 0.492187f, -0.453125f, /*n:*/-0.345531f, -0.219123f, -0.912442f, /*t:*/0.192170f, 0.613175f, + /*v:*/-0.484375f, 0.554688f, -0.554688f, /*n:*/-0.226691f, -0.428114f, -0.874813f, /*t:*/0.141462f, 0.619019f, + /*v:*/-0.460938f, 0.429687f, -0.523438f, /*n:*/-0.340648f, 0.322306f, -0.883206f, /*t:*/0.150282f, 0.592821f, + /*v:*/0.484375f, 0.554688f, -0.554688f, /*n:*/0.226691f, -0.428114f, -0.874813f, /*t:*/0.812762f, 0.161857f, + /*v:*/0.679688f, 0.492187f, -0.453125f, /*n:*/0.345531f, -0.219123f, -0.912442f, /*t:*/0.794197f, 0.111805f, + /*v:*/0.460938f, 0.429687f, -0.523438f, /*n:*/0.340648f, 0.322306f, -0.883206f, /*t:*/0.838646f, 0.146117f, + /*v:*/0.679688f, 0.492187f, -0.453125f, /*n:*/0.345531f, -0.219123f, -0.912442f, /*t:*/0.794197f, 0.111805f, + /*v:*/0.632812f, 0.281250f, -0.453125f, /*n:*/0.444411f, 0.425031f, -0.788537f, /*t:*/0.838041f, 0.094166f, + /*v:*/0.460938f, 0.429687f, -0.523438f, /*n:*/0.340648f, 0.322306f, -0.883206f, /*t:*/0.838646f, 0.146117f, + /*v:*/-0.632812f, 0.281250f, -0.453125f, /*n:*/-0.444411f, 0.425031f, -0.788537f, /*t:*/0.196929f, 0.565287f, + /*v:*/-0.460938f, 0.429687f, -0.523438f, /*n:*/-0.340648f, 0.322306f, -0.883206f, /*t:*/0.150282f, 0.592821f, + /*v:*/-0.453125f, 0.234375f, -0.851562f, /*n:*/-0.444227f, 0.527085f, -0.724418f, /*t:*/0.104098f, 0.526104f, + /*v:*/-0.632812f, 0.281250f, -0.453125f, /*n:*/-0.444411f, 0.425031f, -0.788537f, /*t:*/0.196929f, 0.565287f, + /*v:*/-0.453125f, 0.234375f, -0.851562f, /*n:*/-0.444227f, 0.527085f, -0.724418f, /*t:*/0.104098f, 0.526104f, + /*v:*/-0.640625f, 0.054687f, -0.703125f, /*n:*/-0.668172f, 0.319498f, -0.671865f, /*t:*/0.168238f, 0.497003f, + /*v:*/0.453125f, 0.234375f, -0.851562f, /*n:*/0.444227f, 0.527085f, -0.724418f, /*t:*/0.885578f, 0.450396f, + /*v:*/0.460938f, 0.429687f, -0.523438f, /*n:*/0.340648f, 0.322306f, -0.883206f, /*t:*/0.799620f, 0.448923f, + /*v:*/0.632812f, 0.281250f, -0.453125f, /*n:*/0.444411f, 0.425031f, -0.788537f, /*t:*/0.798642f, 0.395009f, + /*v:*/0.453125f, 0.234375f, -0.851562f, /*n:*/0.444227f, 0.527085f, -0.724418f, /*t:*/0.885578f, 0.450396f, + /*v:*/0.632812f, 0.281250f, -0.453125f, /*n:*/0.444411f, 0.425031f, -0.788537f, /*t:*/0.798642f, 0.395009f, + /*v:*/0.640625f, 0.054687f, -0.703125f, /*n:*/0.668172f, 0.319498f, -0.671865f, /*t:*/0.869485f, 0.385859f, + /*v:*/-0.640625f, 0.054687f, -0.703125f, /*n:*/-0.668172f, 0.319498f, -0.671865f, /*t:*/0.168238f, 0.497003f, + /*v:*/-0.453125f, 0.234375f, -0.851562f, /*n:*/-0.444227f, 0.527085f, -0.724418f, /*t:*/0.104098f, 0.526104f, + /*v:*/-0.453125f, -0.070313f, -0.929688f, /*n:*/-0.413495f, 0.039460f, -0.909635f, /*t:*/0.107976f, 0.451986f, + /*v:*/-0.640625f, 0.054687f, -0.703125f, /*n:*/-0.668172f, 0.319498f, -0.671865f, /*t:*/0.168238f, 0.497003f, + /*v:*/-0.453125f, -0.070313f, -0.929688f, /*n:*/-0.413495f, 0.039460f, -0.909635f, /*t:*/0.107976f, 0.451986f, + /*v:*/-0.640625f, -0.195313f, -0.750000f, /*n:*/-0.678396f, -0.069521f, -0.731376f, /*t:*/0.174362f, 0.437375f, + /*v:*/0.453125f, -0.070313f, -0.929688f, /*n:*/0.413495f, 0.039460f, -0.909635f, /*t:*/0.389088f, 0.096317f, + /*v:*/0.453125f, 0.234375f, -0.851562f, /*n:*/0.444227f, 0.527085f, -0.724418f, /*t:*/0.355920f, 0.051067f, + /*v:*/0.640625f, 0.054687f, -0.703125f, /*n:*/0.668172f, 0.319498f, -0.671865f, /*t:*/0.424703f, 0.040794f, + /*v:*/0.453125f, -0.070313f, -0.929688f, /*n:*/0.413495f, 0.039460f, -0.909635f, /*t:*/0.389088f, 0.096317f, + /*v:*/0.640625f, 0.054687f, -0.703125f, /*n:*/0.668172f, 0.319498f, -0.671865f, /*t:*/0.424703f, 0.040794f, + /*v:*/0.640625f, -0.195313f, -0.750000f, /*n:*/0.678396f, -0.069521f, -0.731376f, /*t:*/0.454508f, 0.077726f, + /*v:*/-0.640625f, -0.195313f, -0.750000f, /*n:*/-0.678396f, -0.069521f, -0.731376f, /*t:*/0.174362f, 0.437375f, + /*v:*/-0.453125f, -0.070313f, -0.929688f, /*n:*/-0.413495f, 0.039460f, -0.909635f, /*t:*/0.107976f, 0.451986f, + /*v:*/-0.453125f, -0.382813f, -0.867188f, /*n:*/-0.391247f, -0.426832f, -0.815271f, /*t:*/0.136307f, 0.385794f, + /*v:*/-0.640625f, -0.195313f, -0.750000f, /*n:*/-0.678396f, -0.069521f, -0.731376f, /*t:*/0.174362f, 0.437375f, + /*v:*/-0.453125f, -0.382813f, -0.867188f, /*n:*/-0.391247f, -0.426832f, -0.815271f, /*t:*/0.136307f, 0.385794f, + /*v:*/-0.640625f, -0.445313f, -0.679688f, /*n:*/-0.607532f, -0.553575f, -0.569567f, /*t:*/0.200494f, 0.385820f, + /*v:*/0.453125f, -0.382813f, -0.867188f, /*n:*/0.391247f, -0.426832f, -0.815271f, /*t:*/0.444545f, 0.141109f, + /*v:*/0.453125f, -0.070313f, -0.929688f, /*n:*/0.413495f, 0.039460f, -0.909635f, /*t:*/0.389088f, 0.096317f, + /*v:*/0.640625f, -0.195313f, -0.750000f, /*n:*/0.678396f, -0.069521f, -0.731376f, /*t:*/0.454508f, 0.077726f, + /*v:*/0.453125f, -0.382813f, -0.867188f, /*n:*/0.391247f, -0.426832f, -0.815271f, /*t:*/0.444545f, 0.141109f, + /*v:*/0.640625f, -0.195313f, -0.750000f, /*n:*/0.678396f, -0.069521f, -0.731376f, /*t:*/0.454508f, 0.077726f, + /*v:*/0.640625f, -0.445313f, -0.679688f, /*n:*/0.607532f, -0.553575f, -0.569567f, /*t:*/0.501926f, 0.113329f, + /*v:*/-0.640625f, -0.445313f, -0.679688f, /*n:*/-0.607532f, -0.553575f, -0.569567f, /*t:*/0.299837f, 0.438536f, + /*v:*/-0.453125f, -0.382813f, -0.867188f, /*n:*/-0.391247f, -0.426832f, -0.815271f, /*t:*/0.296886f, 0.390274f, + /*v:*/-0.460938f, -0.703125f, -0.437500f, /*n:*/-0.473006f, -0.863216f, -0.176305f, /*t:*/0.381989f, 0.427435f, + /*v:*/-0.640625f, -0.445313f, -0.679688f, /*n:*/-0.607532f, -0.553575f, -0.569567f, /*t:*/0.299837f, 0.438536f, + /*v:*/-0.460938f, -0.703125f, -0.437500f, /*n:*/-0.473006f, -0.863216f, -0.176305f, /*t:*/0.381989f, 0.427435f, + /*v:*/-0.617188f, -0.585938f, -0.328125f, /*n:*/-0.619648f, -0.782525f, 0.060457f, /*t:*/0.367939f, 0.478341f, + /*v:*/0.460938f, -0.703125f, -0.437500f, /*n:*/0.473006f, -0.863216f, -0.176305f, /*t:*/0.557177f, 0.181422f, + /*v:*/0.453125f, -0.382813f, -0.867188f, /*n:*/0.391247f, -0.426832f, -0.815271f, /*t:*/0.444545f, 0.141109f, + /*v:*/0.640625f, -0.445313f, -0.679688f, /*n:*/0.607532f, -0.553575f, -0.569567f, /*t:*/0.501926f, 0.113329f, + /*v:*/0.460938f, -0.703125f, -0.437500f, /*n:*/0.473006f, -0.863216f, -0.176305f, /*t:*/0.557177f, 0.181422f, + /*v:*/0.640625f, -0.445313f, -0.679688f, /*n:*/0.607532f, -0.553575f, -0.569567f, /*t:*/0.501926f, 0.113329f, + /*v:*/0.617188f, -0.585938f, -0.328125f, /*n:*/0.619648f, -0.782525f, 0.060457f, /*t:*/0.572998f, 0.134158f, + /*v:*/-0.640625f, -0.445313f, -0.679688f, /*n:*/-0.607532f, -0.553575f, -0.569567f, /*t:*/0.299837f, 0.438536f, + /*v:*/-0.617188f, -0.585938f, -0.328125f, /*n:*/-0.619648f, -0.782525f, 0.060457f, /*t:*/0.367939f, 0.478341f, + /*v:*/-0.796875f, -0.359375f, -0.539062f, /*n:*/-0.872158f, -0.374645f, -0.314554f, /*t:*/0.292490f, 0.491205f, + /*v:*/-0.617188f, -0.585938f, -0.328125f, /*n:*/-0.619648f, -0.782525f, 0.060457f, /*t:*/0.367939f, 0.478341f, + /*v:*/-0.773438f, -0.437500f, -0.265625f, /*n:*/-0.670766f, -0.740257f, 0.045289f, /*t:*/0.344661f, 0.524899f, + /*v:*/-0.796875f, -0.359375f, -0.539062f, /*n:*/-0.872158f, -0.374645f, -0.314554f, /*t:*/0.292490f, 0.491205f, + /*v:*/0.773438f, -0.437500f, -0.265625f, /*n:*/0.670766f, -0.740257f, 0.045289f, /*t:*/0.577167f, 0.082876f, + /*v:*/0.617188f, -0.585938f, -0.328125f, /*n:*/0.619648f, -0.782525f, 0.060457f, /*t:*/0.572998f, 0.134158f, + /*v:*/0.796875f, -0.359375f, -0.539062f, /*n:*/0.872158f, -0.374645f, -0.314554f, /*t:*/0.527051f, 0.070260f, + /*v:*/0.617188f, -0.585938f, -0.328125f, /*n:*/0.619648f, -0.782525f, 0.060457f, /*t:*/0.572998f, 0.134158f, + /*v:*/0.640625f, -0.445313f, -0.679688f, /*n:*/0.607532f, -0.553575f, -0.569567f, /*t:*/0.501926f, 0.113329f, + /*v:*/0.796875f, -0.359375f, -0.539062f, /*n:*/0.872158f, -0.374645f, -0.314554f, /*t:*/0.527051f, 0.070260f, + /*v:*/-0.796875f, -0.359375f, -0.539062f, /*n:*/-0.872158f, -0.374645f, -0.314554f, /*t:*/0.243517f, 0.415903f, + /*v:*/-0.796875f, -0.117188f, -0.617188f, /*n:*/-0.848628f, -0.014008f, -0.528764f, /*t:*/0.216492f, 0.465157f, + /*v:*/-0.640625f, -0.195313f, -0.750000f, /*n:*/-0.678396f, -0.069521f, -0.731376f, /*t:*/0.174362f, 0.437375f, + /*v:*/-0.796875f, -0.359375f, -0.539062f, /*n:*/-0.872158f, -0.374645f, -0.314554f, /*t:*/0.243517f, 0.415903f, + /*v:*/-0.640625f, -0.195313f, -0.750000f, /*n:*/-0.678396f, -0.069521f, -0.731376f, /*t:*/0.174362f, 0.437375f, + /*v:*/-0.640625f, -0.445313f, -0.679688f, /*n:*/-0.607532f, -0.553575f, -0.569567f, /*t:*/0.200494f, 0.385820f, + /*v:*/0.640625f, -0.195313f, -0.750000f, /*n:*/0.678396f, -0.069521f, -0.731376f, /*t:*/0.454508f, 0.077726f, + /*v:*/0.796875f, -0.117188f, -0.617188f, /*n:*/0.848628f, -0.014008f, -0.528764f, /*t:*/0.479609f, 0.035884f, + /*v:*/0.796875f, -0.359375f, -0.539062f, /*n:*/0.872158f, -0.374645f, -0.314554f, /*t:*/0.527051f, 0.070260f, + /*v:*/0.640625f, -0.195313f, -0.750000f, /*n:*/0.678396f, -0.069521f, -0.731376f, /*t:*/0.454508f, 0.077726f, + /*v:*/0.796875f, -0.359375f, -0.539062f, /*n:*/0.872158f, -0.374645f, -0.314554f, /*t:*/0.527051f, 0.070260f, + /*v:*/0.640625f, -0.445313f, -0.679688f, /*n:*/0.607532f, -0.553575f, -0.569567f, /*t:*/0.501926f, 0.113329f, + /*v:*/-0.796875f, -0.117188f, -0.617188f, /*n:*/-0.848628f, -0.014008f, -0.528764f, /*t:*/0.216492f, 0.465157f, + /*v:*/-0.796875f, 0.125000f, -0.562500f, /*n:*/-0.741752f, 0.427839f, -0.516434f, /*t:*/0.212144f, 0.523560f, + /*v:*/-0.640625f, 0.054687f, -0.703125f, /*n:*/-0.668172f, 0.319498f, -0.671865f, /*t:*/0.168238f, 0.497003f, + /*v:*/-0.796875f, -0.117188f, -0.617188f, /*n:*/-0.848628f, -0.014008f, -0.528764f, /*t:*/0.216492f, 0.465157f, + /*v:*/-0.640625f, 0.054687f, -0.703125f, /*n:*/-0.668172f, 0.319498f, -0.671865f, /*t:*/0.168238f, 0.497003f, + /*v:*/-0.640625f, -0.195313f, -0.750000f, /*n:*/-0.678396f, -0.069521f, -0.731376f, /*t:*/0.174362f, 0.437375f, + /*v:*/0.640625f, 0.054687f, -0.703125f, /*n:*/0.668172f, 0.319498f, -0.671865f, /*t:*/0.424703f, 0.040794f, + /*v:*/0.796875f, 0.125000f, -0.562500f, /*n:*/0.741752f, 0.427839f, -0.516434f, /*t:*/0.452130f, 0.000000f, + /*v:*/0.796875f, -0.117188f, -0.617188f, /*n:*/0.848628f, -0.014008f, -0.528764f, /*t:*/0.479609f, 0.035884f, + /*v:*/0.640625f, 0.054687f, -0.703125f, /*n:*/0.668172f, 0.319498f, -0.671865f, /*t:*/0.424703f, 0.040794f, + /*v:*/0.796875f, -0.117188f, -0.617188f, /*n:*/0.848628f, -0.014008f, -0.528764f, /*t:*/0.479609f, 0.035884f, + /*v:*/0.640625f, -0.195313f, -0.750000f, /*n:*/0.678396f, -0.069521f, -0.731376f, /*t:*/0.454508f, 0.077726f, + /*v:*/-0.796875f, 0.125000f, -0.562500f, /*n:*/-0.741752f, 0.427839f, -0.516434f, /*t:*/0.212144f, 0.523560f, + /*v:*/-0.726562f, 0.335937f, -0.406250f, /*n:*/-0.771722f, 0.078494f, -0.631062f, /*t:*/0.216163f, 0.581458f, + /*v:*/-0.632812f, 0.281250f, -0.453125f, /*n:*/-0.444411f, 0.425031f, -0.788537f, /*t:*/0.196929f, 0.565287f, + /*v:*/-0.796875f, 0.125000f, -0.562500f, /*n:*/-0.741752f, 0.427839f, -0.516434f, /*t:*/0.212144f, 0.523560f, + /*v:*/-0.632812f, 0.281250f, -0.453125f, /*n:*/-0.444411f, 0.425031f, -0.788537f, /*t:*/0.196929f, 0.565287f, + /*v:*/-0.640625f, 0.054687f, -0.703125f, /*n:*/-0.668172f, 0.319498f, -0.671865f, /*t:*/0.168238f, 0.497003f, + /*v:*/0.632812f, 0.281250f, -0.453125f, /*n:*/0.444411f, 0.425031f, -0.788537f, /*t:*/0.798642f, 0.395009f, + /*v:*/0.726562f, 0.335937f, -0.406250f, /*n:*/0.771722f, 0.078494f, -0.631062f, /*t:*/0.787617f, 0.378038f, + /*v:*/0.796875f, 0.125000f, -0.562500f, /*n:*/0.741752f, 0.427839f, -0.516434f, /*t:*/0.838358f, 0.352078f, + /*v:*/0.632812f, 0.281250f, -0.453125f, /*n:*/0.444411f, 0.425031f, -0.788537f, /*t:*/0.798642f, 0.395009f, + /*v:*/0.796875f, 0.125000f, -0.562500f, /*n:*/0.741752f, 0.427839f, -0.516434f, /*t:*/0.838358f, 0.352078f, + /*v:*/0.640625f, 0.054687f, -0.703125f, /*n:*/0.668172f, 0.319498f, -0.671865f, /*t:*/0.869485f, 0.385859f, + /*v:*/-0.726562f, 0.335937f, -0.406250f, /*n:*/-0.771722f, 0.078494f, -0.631062f, /*t:*/0.216163f, 0.581458f, + /*v:*/-0.796875f, 0.460937f, -0.406250f, /*n:*/-0.695700f, -0.421827f, -0.581378f, /*t:*/0.219840f, 0.610110f, + /*v:*/-0.679688f, 0.492187f, -0.453125f, /*n:*/-0.345531f, -0.219123f, -0.912442f, /*t:*/0.192170f, 0.613175f, + /*v:*/-0.726562f, 0.335937f, -0.406250f, /*n:*/-0.771722f, 0.078494f, -0.631062f, /*t:*/0.216163f, 0.581458f, + /*v:*/-0.679688f, 0.492187f, -0.453125f, /*n:*/-0.345531f, -0.219123f, -0.912442f, /*t:*/0.192170f, 0.613175f, + /*v:*/-0.632812f, 0.281250f, -0.453125f, /*n:*/-0.444411f, 0.425031f, -0.788537f, /*t:*/0.196929f, 0.565287f, + /*v:*/0.679688f, 0.492187f, -0.453125f, /*n:*/0.345531f, -0.219123f, -0.912442f, /*t:*/0.794197f, 0.111805f, + /*v:*/0.796875f, 0.460937f, -0.406250f, /*n:*/0.695700f, -0.421827f, -0.581378f, /*t:*/0.781712f, 0.084595f, + /*v:*/0.726562f, 0.335937f, -0.406250f, /*n:*/0.771722f, 0.078494f, -0.631062f, /*t:*/0.814504f, 0.080169f, + /*v:*/0.679688f, 0.492187f, -0.453125f, /*n:*/0.345531f, -0.219123f, -0.912442f, /*t:*/0.794197f, 0.111805f, + /*v:*/0.726562f, 0.335937f, -0.406250f, /*n:*/0.771722f, 0.078494f, -0.631062f, /*t:*/0.814504f, 0.080169f, + /*v:*/0.632812f, 0.281250f, -0.453125f, /*n:*/0.444411f, 0.425031f, -0.788537f, /*t:*/0.838041f, 0.094166f, + /*v:*/-0.460938f, -0.703125f, -0.437500f, /*n:*/-0.473006f, -0.863216f, -0.176305f, /*t:*/0.381989f, 0.427435f, + /*v:*/-0.453125f, -0.382813f, -0.867188f, /*n:*/-0.391247f, -0.426832f, -0.815271f, /*t:*/0.296886f, 0.390274f, + /*v:*/0.000000f, -0.546875f, -0.898438f, /*n:*/0.000000f, -0.551378f, -0.834223f, /*t:*/0.374595f, 0.309075f, + /*v:*/-0.460938f, -0.703125f, -0.437500f, /*n:*/-0.473006f, -0.863216f, -0.176305f, /*t:*/0.381989f, 0.427435f, + /*v:*/0.000000f, -0.546875f, -0.898438f, /*n:*/0.000000f, -0.551378f, -0.834223f, /*t:*/0.374595f, 0.309075f, + /*v:*/0.000000f, -0.851562f, -0.562500f, /*n:*/0.000000f, -0.930967f, -0.365032f, /*t:*/0.444991f, 0.331434f, + /*v:*/0.000000f, -0.546875f, -0.898438f, /*n:*/0.000000f, -0.551378f, -0.834223f, /*t:*/0.415732f, 0.249335f, + /*v:*/0.453125f, -0.382813f, -0.867188f, /*n:*/0.391247f, -0.426832f, -0.815271f, /*t:*/0.444545f, 0.141109f, + /*v:*/0.460938f, -0.703125f, -0.437500f, /*n:*/0.473006f, -0.863216f, -0.176305f, /*t:*/0.557177f, 0.181422f, + /*v:*/0.000000f, -0.546875f, -0.898438f, /*n:*/0.000000f, -0.551378f, -0.834223f, /*t:*/0.415732f, 0.249335f, + /*v:*/0.460938f, -0.703125f, -0.437500f, /*n:*/0.473006f, -0.863216f, -0.176305f, /*t:*/0.557177f, 0.181422f, + /*v:*/0.000000f, -0.851562f, -0.562500f, /*n:*/0.000000f, -0.930967f, -0.365032f, /*t:*/0.511136f, 0.289885f, + /*v:*/-0.453125f, -0.382813f, -0.867188f, /*n:*/-0.391247f, -0.426832f, -0.815271f, /*t:*/0.347946f, 0.309075f, + /*v:*/-0.453125f, -0.070313f, -0.929688f, /*n:*/-0.413495f, 0.039460f, -0.909635f, /*t:*/0.292490f, 0.264283f, + /*v:*/0.000000f, -0.078125f, -0.984375f, /*n:*/0.000000f, 0.022584f, -0.999725f, /*t:*/0.333721f, 0.182059f, + /*v:*/-0.453125f, -0.382813f, -0.867188f, /*n:*/-0.391247f, -0.426832f, -0.815271f, /*t:*/0.347946f, 0.309075f, + /*v:*/0.000000f, -0.078125f, -0.984375f, /*n:*/0.000000f, 0.022584f, -0.999725f, /*t:*/0.333721f, 0.182059f, + /*v:*/0.000000f, -0.546875f, -0.898438f, /*n:*/0.000000f, -0.551378f, -0.834223f, /*t:*/0.415732f, 0.249335f, + /*v:*/0.000000f, -0.078125f, -0.984375f, /*n:*/0.000000f, 0.022584f, -0.999725f, /*t:*/0.333721f, 0.182059f, + /*v:*/0.453125f, -0.070313f, -0.929688f, /*n:*/0.413495f, 0.039460f, -0.909635f, /*t:*/0.389088f, 0.096317f, + /*v:*/0.453125f, -0.382813f, -0.867188f, /*n:*/0.391247f, -0.426832f, -0.815271f, /*t:*/0.444545f, 0.141109f, + /*v:*/0.000000f, -0.078125f, -0.984375f, /*n:*/0.000000f, 0.022584f, -0.999725f, /*t:*/0.333721f, 0.182059f, + /*v:*/0.453125f, -0.382813f, -0.867188f, /*n:*/0.391247f, -0.426832f, -0.815271f, /*t:*/0.444545f, 0.141109f, + /*v:*/0.000000f, -0.546875f, -0.898438f, /*n:*/0.000000f, -0.551378f, -0.834223f, /*t:*/0.415732f, 0.249335f, + /*v:*/-0.453125f, -0.070313f, -0.929688f, /*n:*/-0.413495f, 0.039460f, -0.909635f, /*t:*/0.107976f, 0.451986f, + /*v:*/-0.453125f, 0.234375f, -0.851562f, /*n:*/-0.444227f, 0.527085f, -0.724418f, /*t:*/0.104098f, 0.526104f, + /*v:*/0.000000f, -0.078125f, -0.984375f, /*n:*/0.000000f, 0.022584f, -0.999725f, /*t:*/0.029865f, 0.443534f, + /*v:*/-0.453125f, 0.234375f, -0.851562f, /*n:*/-0.444227f, 0.527085f, -0.724418f, /*t:*/0.104098f, 0.526104f, + /*v:*/0.000000f, 0.289062f, -0.898438f, /*n:*/0.000000f, 0.556810f, -0.830622f, /*t:*/0.023789f, 0.532290f, + /*v:*/0.000000f, -0.078125f, -0.984375f, /*n:*/0.000000f, 0.022584f, -0.999725f, /*t:*/0.029865f, 0.443534f, + /*v:*/0.000000f, 0.289062f, -0.898438f, /*n:*/0.000000f, 0.556810f, -0.830622f, /*t:*/0.292514f, 0.127619f, + /*v:*/0.453125f, 0.234375f, -0.851562f, /*n:*/0.444227f, 0.527085f, -0.724418f, /*t:*/0.355920f, 0.051067f, + /*v:*/0.000000f, -0.078125f, -0.984375f, /*n:*/0.000000f, 0.022584f, -0.999725f, /*t:*/0.333721f, 0.182059f, + /*v:*/0.453125f, 0.234375f, -0.851562f, /*n:*/0.444227f, 0.527085f, -0.724418f, /*t:*/0.355920f, 0.051067f, + /*v:*/0.453125f, -0.070313f, -0.929688f, /*n:*/0.413495f, 0.039460f, -0.909635f, /*t:*/0.389088f, 0.096317f, + /*v:*/0.000000f, -0.078125f, -0.984375f, /*n:*/0.000000f, 0.022584f, -0.999725f, /*t:*/0.333721f, 0.182059f, + /*v:*/-0.335938f, -0.664062f, -0.054687f, /*n:*/-0.445479f, -0.820399f, 0.358348f, /*t:*/0.462276f, 0.478943f, + /*v:*/-0.460938f, -0.703125f, -0.437500f, /*n:*/-0.473006f, -0.863216f, -0.176305f, /*t:*/0.381989f, 0.427435f, + /*v:*/0.000000f, -0.828125f, -0.070312f, /*n:*/0.000000f, -0.952361f, 0.304941f, /*t:*/0.523346f, 0.415370f, + /*v:*/-0.460938f, -0.703125f, -0.437500f, /*n:*/-0.473006f, -0.863216f, -0.176305f, /*t:*/0.381989f, 0.427435f, + /*v:*/0.000000f, -0.851562f, -0.562500f, /*n:*/0.000000f, -0.930967f, -0.365032f, /*t:*/0.444991f, 0.331434f, + /*v:*/0.000000f, -0.828125f, -0.070312f, /*n:*/0.000000f, -0.952361f, 0.304941f, /*t:*/0.523346f, 0.415370f, + /*v:*/0.000000f, -0.851562f, -0.562500f, /*n:*/0.000000f, -0.930967f, -0.365032f, /*t:*/0.444991f, 0.331434f, + /*v:*/0.460938f, -0.703125f, -0.437500f, /*n:*/0.473006f, -0.863216f, -0.176305f, /*t:*/0.532761f, 0.309107f, + /*v:*/0.000000f, -0.828125f, -0.070312f, /*n:*/0.000000f, -0.952361f, 0.304941f, /*t:*/0.523346f, 0.415370f, + /*v:*/0.460938f, -0.703125f, -0.437500f, /*n:*/0.473006f, -0.863216f, -0.176305f, /*t:*/0.532761f, 0.309107f, + /*v:*/0.335938f, -0.664062f, -0.054687f, /*n:*/0.445479f, -0.820399f, 0.358348f, /*t:*/0.572161f, 0.392704f, + /*v:*/0.000000f, -0.828125f, -0.070312f, /*n:*/0.000000f, -0.952361f, 0.304941f, /*t:*/0.523346f, 0.415370f, + /*v:*/-0.734375f, 0.070312f, 0.046875f, /*n:*/-0.721030f, 0.065065f, 0.689810f, /*t:*/0.698723f, 0.061041f, + /*v:*/-0.601562f, 0.414062f, -0.000000f, /*n:*/-0.544328f, -0.053316f, 0.837153f, /*t:*/0.614903f, 0.071741f, + /*v:*/-0.773438f, 0.375000f, -0.164063f, /*n:*/-0.930204f, -0.202338f, 0.306192f, /*t:*/0.623041f, 0.017266f, + /*v:*/-0.734375f, 0.070312f, 0.046875f, /*n:*/-0.721030f, 0.065065f, 0.689810f, /*t:*/0.698723f, 0.061041f, + /*v:*/-0.773438f, 0.375000f, -0.164063f, /*n:*/-0.930204f, -0.202338f, 0.306192f, /*t:*/0.623041f, 0.017266f, + /*v:*/-0.851562f, 0.054687f, -0.234375f, /*n:*/-0.985015f, 0.063051f, 0.160466f, /*t:*/0.686064f, 0.000000f, + /*v:*/0.773438f, 0.375000f, -0.164063f, /*n:*/0.930204f, -0.202338f, 0.306192f, /*t:*/0.278748f, 0.240966f, + /*v:*/0.601562f, 0.414062f, -0.000000f, /*n:*/0.544328f, -0.053316f, 0.837153f, /*t:*/0.231545f, 0.272445f, + /*v:*/0.734375f, 0.070312f, 0.046875f, /*n:*/0.721030f, 0.065065f, 0.689810f, /*t:*/0.213562f, 0.199354f, + /*v:*/0.773438f, 0.375000f, -0.164063f, /*n:*/0.930204f, -0.202338f, 0.306192f, /*t:*/0.278748f, 0.240966f, + /*v:*/0.734375f, 0.070312f, 0.046875f, /*n:*/0.721030f, 0.065065f, 0.689810f, /*t:*/0.213562f, 0.199354f, + /*v:*/0.851562f, 0.054687f, -0.234375f, /*n:*/0.985015f, 0.063051f, 0.160466f, /*t:*/0.270236f, 0.163454f, + /*v:*/-0.210938f, 0.164063f, 0.390625f, /*n:*/-0.572680f, 0.011994f, 0.819666f, /*t:*/0.023789f, 0.675439f, + /*v:*/-0.179688f, 0.257813f, 0.414062f, /*n:*/-0.689322f, -0.278603f, 0.668691f, /*t:*/0.038127f, 0.693887f, + /*v:*/-0.218750f, 0.429688f, 0.281250f, /*n:*/-0.978698f, 0.061495f, 0.195837f, /*t:*/0.046025f, 0.732982f, + /*v:*/-0.179688f, 0.257813f, 0.414062f, /*n:*/-0.689322f, -0.278603f, 0.668691f, /*t:*/0.038127f, 0.693887f, + /*v:*/-0.234375f, 0.406250f, 0.351562f, /*n:*/-0.895657f, -0.362407f, -0.257729f, /*t:*/0.055230f, 0.720238f, + /*v:*/-0.218750f, 0.429688f, 0.281250f, /*n:*/-0.978698f, 0.061495f, 0.195837f, /*t:*/0.046025f, 0.732982f, + /*v:*/0.234375f, 0.406250f, 0.351562f, /*n:*/0.895657f, -0.362407f, -0.257729f, /*t:*/0.121692f, 0.320608f, + /*v:*/0.179688f, 0.257813f, 0.414062f, /*n:*/0.689322f, -0.278603f, 0.668691f, /*t:*/0.089628f, 0.297813f, + /*v:*/0.218750f, 0.429688f, 0.281250f, /*n:*/0.978698f, 0.061495f, 0.195837f, /*t:*/0.131116f, 0.319222f, + /*v:*/0.179688f, 0.257813f, 0.414062f, /*n:*/0.689322f, -0.278603f, 0.668691f, /*t:*/0.089628f, 0.297813f, + /*v:*/0.210938f, 0.164063f, 0.390625f, /*n:*/0.572680f, 0.011994f, 0.819666f, /*t:*/0.088913f, 0.274500f, + /*v:*/0.218750f, 0.429688f, 0.281250f, /*n:*/0.978698f, 0.061495f, 0.195837f, /*t:*/0.131116f, 0.319222f, + /*v:*/-0.179688f, 0.257813f, 0.414062f, /*n:*/-0.689322f, -0.278603f, 0.668691f, /*t:*/0.645104f, 0.212788f, + /*v:*/-0.210938f, 0.164063f, 0.390625f, /*n:*/-0.572680f, 0.011994f, 0.819666f, /*t:*/0.664064f, 0.205752f, + /*v:*/0.000000f, 0.187500f, 0.460938f, /*n:*/0.000000f, -0.183294f, 0.983032f, /*t:*/0.646421f, 0.254873f, + /*v:*/-0.179688f, 0.257813f, 0.414062f, /*n:*/-0.689322f, -0.278603f, 0.668691f, /*t:*/0.645104f, 0.212788f, + /*v:*/0.000000f, 0.187500f, 0.460938f, /*n:*/0.000000f, -0.183294f, 0.983032f, /*t:*/0.646421f, 0.254873f, + /*v:*/0.000000f, 0.281250f, 0.484375f, /*n:*/0.000000f, -0.636708f, 0.771081f, /*t:*/0.630387f, 0.256007f, + /*v:*/0.000000f, 0.187500f, 0.460938f, /*n:*/0.000000f, -0.183294f, 0.983032f, /*t:*/0.046721f, 0.295021f, + /*v:*/0.210938f, 0.164063f, 0.390625f, /*n:*/0.572680f, 0.011994f, 0.819666f, /*t:*/0.088913f, 0.274500f, + /*v:*/0.179688f, 0.257813f, 0.414062f, /*n:*/0.689322f, -0.278603f, 0.668691f, /*t:*/0.089628f, 0.297813f, + /*v:*/0.000000f, 0.187500f, 0.460938f, /*n:*/0.000000f, -0.183294f, 0.983032f, /*t:*/0.046721f, 0.295021f, + /*v:*/0.179688f, 0.257813f, 0.414062f, /*n:*/0.689322f, -0.278603f, 0.668691f, /*t:*/0.089628f, 0.297813f, + /*v:*/0.000000f, 0.281250f, 0.484375f, /*n:*/0.000000f, -0.636708f, 0.771081f, /*t:*/0.052583f, 0.317054f, + /*v:*/-0.210938f, 0.164063f, 0.390625f, /*n:*/-0.572680f, 0.011994f, 0.819666f, /*t:*/0.664064f, 0.205752f, + /*v:*/-0.296875f, -0.265625f, 0.312500f, /*n:*/-0.507065f, -0.203314f, 0.837581f, /*t:*/0.748377f, 0.188414f, + /*v:*/0.000000f, -0.351562f, 0.382813f, /*n:*/0.000000f, -0.336528f, 0.941649f, /*t:*/0.743989f, 0.256260f, + /*v:*/-0.210938f, 0.164063f, 0.390625f, /*n:*/-0.572680f, 0.011994f, 0.819666f, /*t:*/0.664064f, 0.205752f, + /*v:*/0.000000f, -0.351562f, 0.382813f, /*n:*/0.000000f, -0.336528f, 0.941649f, /*t:*/0.743989f, 0.256260f, + /*v:*/0.000000f, 0.187500f, 0.460938f, /*n:*/0.000000f, -0.183294f, 0.983032f, /*t:*/0.646421f, 0.254873f, + /*v:*/0.000000f, -0.351562f, 0.382813f, /*n:*/0.000000f, -0.336528f, 0.941649f, /*t:*/0.005178f, 0.173934f, + /*v:*/0.296875f, -0.265625f, 0.312500f, /*n:*/0.507065f, -0.203314f, 0.837581f, /*t:*/0.072147f, 0.172895f, + /*v:*/0.210938f, 0.164063f, 0.390625f, /*n:*/0.572680f, 0.011994f, 0.819666f, /*t:*/0.088913f, 0.274500f, + /*v:*/0.000000f, -0.351562f, 0.382813f, /*n:*/0.000000f, -0.336528f, 0.941649f, /*t:*/0.005178f, 0.173934f, + /*v:*/0.210938f, 0.164063f, 0.390625f, /*n:*/0.572680f, 0.011994f, 0.819666f, /*t:*/0.088913f, 0.274500f, + /*v:*/0.000000f, 0.187500f, 0.460938f, /*n:*/0.000000f, -0.183294f, 0.983032f, /*t:*/0.046721f, 0.295021f, + /*v:*/-0.296875f, -0.265625f, 0.312500f, /*n:*/-0.507065f, -0.203314f, 0.837581f, /*t:*/0.507024f, 0.578044f, + /*v:*/-0.343750f, -0.539062f, 0.148438f, /*n:*/-0.522263f, -0.547685f, 0.653615f, /*t:*/0.487251f, 0.527149f, + /*v:*/0.000000f, -0.351562f, 0.382813f, /*n:*/0.000000f, -0.336528f, 0.941649f, /*t:*/0.571481f, 0.542204f, + /*v:*/-0.343750f, -0.539062f, 0.148438f, /*n:*/-0.522263f, -0.547685f, 0.653615f, /*t:*/0.487251f, 0.527149f, + /*v:*/0.000000f, -0.671875f, 0.195313f, /*n:*/0.000000f, -0.722587f, 0.691275f, /*t:*/0.558057f, 0.476310f, + /*v:*/0.000000f, -0.351562f, 0.382813f, /*n:*/0.000000f, -0.336528f, 0.941649f, /*t:*/0.571481f, 0.542204f, + /*v:*/0.000000f, -0.671875f, 0.195313f, /*n:*/0.000000f, -0.722587f, 0.691275f, /*t:*/0.000000f, 0.088031f, + /*v:*/0.343750f, -0.539062f, 0.148438f, /*n:*/0.522263f, -0.547685f, 0.653615f, /*t:*/0.076002f, 0.097248f, + /*v:*/0.000000f, -0.351562f, 0.382813f, /*n:*/0.000000f, -0.336528f, 0.941649f, /*t:*/0.005178f, 0.173934f, + /*v:*/0.343750f, -0.539062f, 0.148438f, /*n:*/0.522263f, -0.547685f, 0.653615f, /*t:*/0.076002f, 0.097248f, + /*v:*/0.296875f, -0.265625f, 0.312500f, /*n:*/0.507065f, -0.203314f, 0.837581f, /*t:*/0.072147f, 0.172895f, + /*v:*/0.000000f, -0.351562f, 0.382813f, /*n:*/0.000000f, -0.336528f, 0.941649f, /*t:*/0.005178f, 0.173934f, + /*v:*/-0.343750f, -0.539062f, 0.148438f, /*n:*/-0.522263f, -0.547685f, 0.653615f, /*t:*/0.487251f, 0.527149f, + /*v:*/-0.335938f, -0.664062f, -0.054687f, /*n:*/-0.445479f, -0.820399f, 0.358348f, /*t:*/0.462276f, 0.478943f, + /*v:*/0.000000f, -0.671875f, 0.195313f, /*n:*/0.000000f, -0.722587f, 0.691275f, /*t:*/0.558057f, 0.476310f, + /*v:*/-0.335938f, -0.664062f, -0.054687f, /*n:*/-0.445479f, -0.820399f, 0.358348f, /*t:*/0.462276f, 0.478943f, + /*v:*/0.000000f, -0.828125f, -0.070312f, /*n:*/0.000000f, -0.952361f, 0.304941f, /*t:*/0.523346f, 0.415370f, + /*v:*/0.000000f, -0.671875f, 0.195313f, /*n:*/0.000000f, -0.722587f, 0.691275f, /*t:*/0.558057f, 0.476310f, + /*v:*/0.000000f, -0.828125f, -0.070312f, /*n:*/0.000000f, -0.952361f, 0.304941f, /*t:*/0.021555f, 0.028903f, + /*v:*/0.335938f, -0.664062f, -0.054687f, /*n:*/0.445479f, -0.820399f, 0.358348f, /*t:*/0.090662f, 0.051193f, + /*v:*/0.000000f, -0.671875f, 0.195313f, /*n:*/0.000000f, -0.722587f, 0.691275f, /*t:*/0.000000f, 0.088031f, + /*v:*/0.335938f, -0.664062f, -0.054687f, /*n:*/0.445479f, -0.820399f, 0.358348f, /*t:*/0.090662f, 0.051193f, + /*v:*/0.343750f, -0.539062f, 0.148438f, /*n:*/0.522263f, -0.547685f, 0.653615f, /*t:*/0.076002f, 0.097248f, + /*v:*/0.000000f, -0.671875f, 0.195313f, /*n:*/0.000000f, -0.722587f, 0.691275f, /*t:*/0.000000f, 0.088031f, + /*v:*/-0.437500f, 0.468750f, 0.093750f, /*n:*/-0.471969f, -0.176794f, 0.863674f, /*t:*/0.960059f, 0.312529f, + /*v:*/-0.203125f, 0.500000f, 0.171875f, /*n:*/-0.785699f, 0.236732f, 0.571459f, /*t:*/0.979898f, 0.359730f, + /*v:*/-0.437500f, 0.531250f, 0.140625f, /*n:*/-0.348827f, -0.008148f, 0.937132f, /*t:*/0.946152f, 0.318605f, + /*v:*/-0.203125f, 0.500000f, 0.171875f, /*n:*/-0.785699f, 0.236732f, 0.571459f, /*t:*/0.979898f, 0.359730f, + /*v:*/-0.203125f, 0.562500f, 0.187500f, /*n:*/-0.891537f, 0.309458f, 0.330668f, /*t:*/0.970484f, 0.360144f, + /*v:*/-0.437500f, 0.531250f, 0.140625f, /*n:*/-0.348827f, -0.008148f, 0.937132f, /*t:*/0.946152f, 0.318605f, + /*v:*/0.203125f, 0.562500f, 0.187500f, /*n:*/0.891537f, 0.309458f, 0.330668f, /*t:*/0.154401f, 0.338520f, + /*v:*/0.203125f, 0.500000f, 0.171875f, /*n:*/0.785699f, 0.236732f, 0.571459f, /*t:*/0.150492f, 0.323832f, + /*v:*/0.437500f, 0.531250f, 0.140625f, /*n:*/0.348827f, -0.008148f, 0.937132f, /*t:*/0.196455f, 0.317715f, + /*v:*/0.203125f, 0.500000f, 0.171875f, /*n:*/0.785699f, 0.236732f, 0.571459f, /*t:*/0.150492f, 0.323832f, + /*v:*/0.437500f, 0.468750f, 0.093750f, /*n:*/0.471969f, -0.176794f, 0.863674f, /*t:*/0.196867f, 0.299936f, + /*v:*/0.437500f, 0.531250f, 0.140625f, /*n:*/0.348827f, -0.008148f, 0.937132f, /*t:*/0.196455f, 0.317715f, + /*v:*/-0.210938f, 0.468750f, 0.226562f, /*n:*/-0.887173f, 0.433607f, 0.157720f, /*t:*/0.042326f, 0.746155f, + /*v:*/-0.234375f, 0.554688f, 0.250000f, /*n:*/-0.930601f, 0.126347f, -0.343516f, /*t:*/0.060844f, 0.756737f, + /*v:*/-0.203125f, 0.500000f, 0.171875f, /*n:*/-0.785699f, 0.236732f, 0.571459f, /*t:*/0.037489f, 0.757913f, + /*v:*/-0.234375f, 0.554688f, 0.250000f, /*n:*/-0.930601f, 0.126347f, -0.343516f, /*t:*/0.060844f, 0.756737f, + /*v:*/-0.203125f, 0.562500f, 0.187500f, /*n:*/-0.891537f, 0.309458f, 0.330668f, /*t:*/0.049073f, 0.767755f, + /*v:*/-0.203125f, 0.500000f, 0.171875f, /*n:*/-0.785699f, 0.236732f, 0.571459f, /*t:*/0.037489f, 0.757913f, + /*v:*/0.203125f, 0.562500f, 0.187500f, /*n:*/0.891537f, 0.309458f, 0.330668f, /*t:*/0.898626f, 0.441190f, + /*v:*/0.234375f, 0.554688f, 0.250000f, /*n:*/0.930601f, 0.126347f, -0.343516f, /*t:*/0.896523f, 0.426462f, + /*v:*/0.203125f, 0.500000f, 0.171875f, /*n:*/0.785699f, 0.236732f, 0.571459f, /*t:*/0.909211f, 0.436591f, + /*v:*/0.234375f, 0.554688f, 0.250000f, /*n:*/0.930601f, 0.126347f, -0.343516f, /*t:*/0.896523f, 0.426462f, + /*v:*/0.210938f, 0.468750f, 0.226562f, /*n:*/0.887173f, 0.433607f, 0.157720f, /*t:*/0.914703f, 0.423841f, + /*v:*/0.203125f, 0.500000f, 0.171875f, /*n:*/0.785699f, 0.236732f, 0.571459f, /*t:*/0.909211f, 0.436591f, + /*v:*/-0.218750f, 0.429688f, 0.281250f, /*n:*/-0.978698f, 0.061495f, 0.195837f, /*t:*/0.046025f, 0.732982f, + /*v:*/-0.234375f, 0.406250f, 0.351562f, /*n:*/-0.895657f, -0.362407f, -0.257729f, /*t:*/0.055230f, 0.720238f, + /*v:*/-0.257812f, 0.554688f, 0.312500f, /*n:*/-0.927763f, 0.120884f, -0.353008f, /*t:*/0.072994f, 0.748057f, + /*v:*/-0.234375f, 0.406250f, 0.351562f, /*n:*/-0.895657f, -0.362407f, -0.257729f, /*t:*/0.055230f, 0.720238f, + /*v:*/-0.312500f, 0.570312f, 0.437500f, /*n:*/-0.955718f, 0.156468f, -0.249184f, /*t:*/0.100333f, 0.732604f, + /*v:*/-0.257812f, 0.554688f, 0.312500f, /*n:*/-0.927763f, 0.120884f, -0.353008f, /*t:*/0.072994f, 0.748057f, + /*v:*/0.312500f, 0.570312f, 0.437500f, /*n:*/0.955718f, 0.156468f, -0.249184f, /*t:*/0.885824f, 0.388883f, + /*v:*/0.234375f, 0.406250f, 0.351562f, /*n:*/0.895657f, -0.362407f, -0.257729f, /*t:*/0.924819f, 0.394875f, + /*v:*/0.257812f, 0.554688f, 0.312500f, /*n:*/0.927763f, 0.120884f, -0.353008f, /*t:*/0.894276f, 0.413738f, + /*v:*/0.234375f, 0.406250f, 0.351562f, /*n:*/0.895657f, -0.362407f, -0.257729f, /*t:*/0.924819f, 0.394875f, + /*v:*/0.218750f, 0.429688f, 0.281250f, /*n:*/0.978698f, 0.061495f, 0.195837f, /*t:*/0.921562f, 0.410225f, + /*v:*/0.257812f, 0.554688f, 0.312500f, /*n:*/0.927763f, 0.120884f, -0.353008f, /*t:*/0.894276f, 0.413738f, + /*v:*/-0.210938f, 0.468750f, 0.226562f, /*n:*/-0.887173f, 0.433607f, 0.157720f, /*t:*/0.042326f, 0.746155f, + /*v:*/-0.218750f, 0.429688f, 0.281250f, /*n:*/-0.978698f, 0.061495f, 0.195837f, /*t:*/0.046025f, 0.732982f, + /*v:*/-0.234375f, 0.554688f, 0.250000f, /*n:*/-0.930601f, 0.126347f, -0.343516f, /*t:*/0.060844f, 0.756737f, + /*v:*/-0.218750f, 0.429688f, 0.281250f, /*n:*/-0.978698f, 0.061495f, 0.195837f, /*t:*/0.046025f, 0.732982f, + /*v:*/-0.257812f, 0.554688f, 0.312500f, /*n:*/-0.927763f, 0.120884f, -0.353008f, /*t:*/0.072994f, 0.748057f, + /*v:*/-0.234375f, 0.554688f, 0.250000f, /*n:*/-0.930601f, 0.126347f, -0.343516f, /*t:*/0.060844f, 0.756737f, + /*v:*/0.257812f, 0.554688f, 0.312500f, /*n:*/0.927763f, 0.120884f, -0.353008f, /*t:*/0.894276f, 0.413738f, + /*v:*/0.218750f, 0.429688f, 0.281250f, /*n:*/0.978698f, 0.061495f, 0.195837f, /*t:*/0.921562f, 0.410225f, + /*v:*/0.234375f, 0.554688f, 0.250000f, /*n:*/0.930601f, 0.126347f, -0.343516f, /*t:*/0.896523f, 0.426462f, + /*v:*/0.218750f, 0.429688f, 0.281250f, /*n:*/0.978698f, 0.061495f, 0.195837f, /*t:*/0.921562f, 0.410225f, + /*v:*/0.210938f, 0.468750f, 0.226562f, /*n:*/0.887173f, 0.433607f, 0.157720f, /*t:*/0.914703f, 0.423841f, + /*v:*/0.234375f, 0.554688f, 0.250000f, /*n:*/0.930601f, 0.126347f, -0.343516f, /*t:*/0.896523f, 0.426462f, + /*v:*/-0.250000f, 0.390625f, 0.500000f, /*n:*/-0.779839f, -0.625843f, 0.010498f, /*t:*/0.077912f, 0.701514f, + /*v:*/-0.351562f, 0.570313f, 0.695312f, /*n:*/-0.972808f, 0.208716f, -0.100314f, /*t:*/0.144848f, 0.703592f, + /*v:*/-0.312500f, 0.570312f, 0.437500f, /*n:*/-0.955718f, 0.156468f, -0.249184f, /*t:*/0.100333f, 0.732604f, + /*v:*/-0.250000f, 0.390625f, 0.500000f, /*n:*/-0.779839f, -0.625843f, 0.010498f, /*t:*/0.077912f, 0.701514f, + /*v:*/-0.312500f, 0.570312f, 0.437500f, /*n:*/-0.955718f, 0.156468f, -0.249184f, /*t:*/0.100333f, 0.732604f, + /*v:*/-0.234375f, 0.406250f, 0.351562f, /*n:*/-0.895657f, -0.362407f, -0.257729f, /*t:*/0.055230f, 0.720238f, + /*v:*/0.312500f, 0.570312f, 0.437500f, /*n:*/0.955718f, 0.156468f, -0.249184f, /*t:*/0.885824f, 0.388883f, + /*v:*/0.351562f, 0.570313f, 0.695312f, /*n:*/0.972808f, 0.208716f, -0.100314f, /*t:*/0.885578f, 0.344782f, + /*v:*/0.250000f, 0.390625f, 0.500000f, /*n:*/0.779839f, -0.625843f, 0.010498f, /*t:*/0.928488f, 0.368751f, + /*v:*/0.312500f, 0.570312f, 0.437500f, /*n:*/0.955718f, 0.156468f, -0.249184f, /*t:*/0.885824f, 0.388883f, + /*v:*/0.250000f, 0.390625f, 0.500000f, /*n:*/0.779839f, -0.625843f, 0.010498f, /*t:*/0.928488f, 0.368751f, + /*v:*/0.234375f, 0.406250f, 0.351562f, /*n:*/0.895657f, -0.362407f, -0.257729f, /*t:*/0.924819f, 0.394875f, + /*v:*/-0.125000f, 0.359375f, 0.539062f, /*n:*/-0.277078f, -0.907804f, 0.314737f, /*t:*/0.880504f, 0.681408f, + /*v:*/-0.250000f, 0.390625f, 0.500000f, /*n:*/-0.779839f, -0.625843f, 0.010498f, /*t:*/0.881387f, 0.650183f, + /*v:*/-0.179688f, 0.257813f, 0.414062f, /*n:*/-0.689322f, -0.278603f, 0.668691f, /*t:*/0.913184f, 0.670959f, + /*v:*/-0.250000f, 0.390625f, 0.500000f, /*n:*/-0.779839f, -0.625843f, 0.010498f, /*t:*/0.881387f, 0.650183f, + /*v:*/-0.234375f, 0.406250f, 0.351562f, /*n:*/-0.895657f, -0.362407f, -0.257729f, /*t:*/0.913514f, 0.641164f, + /*v:*/-0.179688f, 0.257813f, 0.414062f, /*n:*/-0.689322f, -0.278603f, 0.668691f, /*t:*/0.913184f, 0.670959f, + /*v:*/0.234375f, 0.406250f, 0.351562f, /*n:*/0.895657f, -0.362407f, -0.257729f, /*t:*/0.121692f, 0.320608f, + /*v:*/0.250000f, 0.390625f, 0.500000f, /*n:*/0.779839f, -0.625843f, 0.010498f, /*t:*/0.102225f, 0.331362f, + /*v:*/0.179688f, 0.257813f, 0.414062f, /*n:*/0.689322f, -0.278603f, 0.668691f, /*t:*/0.089628f, 0.297813f, + /*v:*/0.250000f, 0.390625f, 0.500000f, /*n:*/0.779839f, -0.625843f, 0.010498f, /*t:*/0.102225f, 0.331362f, + /*v:*/0.125000f, 0.359375f, 0.539062f, /*n:*/0.277078f, -0.907804f, 0.314737f, /*t:*/0.073199f, 0.333773f, + /*v:*/0.179688f, 0.257813f, 0.414062f, /*n:*/0.689322f, -0.278603f, 0.668691f, /*t:*/0.089628f, 0.297813f, + /*v:*/-0.164062f, 0.437500f, 0.945312f, /*n:*/-0.067476f, -0.618122f, 0.783166f, /*t:*/0.783736f, 0.695309f, + /*v:*/-0.328125f, 0.398438f, 0.914062f, /*n:*/-0.555071f, -0.681967f, 0.476211f, /*t:*/0.786459f, 0.663410f, + /*v:*/-0.140625f, 0.367188f, 0.757812f, /*n:*/-0.151372f, -0.976867f, 0.150975f, /*t:*/0.831181f, 0.693262f, + /*v:*/-0.328125f, 0.398438f, 0.914062f, /*n:*/-0.555071f, -0.681967f, 0.476211f, /*t:*/0.786459f, 0.663410f, + /*v:*/-0.289062f, 0.382813f, 0.710938f, /*n:*/-0.620380f, -0.779809f, -0.083468f, /*t:*/0.833937f, 0.658196f, + /*v:*/-0.140625f, 0.367188f, 0.757812f, /*n:*/-0.151372f, -0.976867f, 0.150975f, /*t:*/0.831181f, 0.693262f, + /*v:*/0.289062f, 0.382813f, 0.710938f, /*n:*/0.620380f, -0.779809f, -0.083468f, /*t:*/0.858791f, 0.775793f, + /*v:*/0.328125f, 0.398438f, 0.914062f, /*n:*/0.555071f, -0.681967f, 0.476211f, /*t:*/0.814671f, 0.796898f, + /*v:*/0.140625f, 0.367188f, 0.757812f, /*n:*/0.151372f, -0.976867f, 0.150975f, /*t:*/0.843273f, 0.750471f, + /*v:*/0.328125f, 0.398438f, 0.914062f, /*n:*/0.555071f, -0.681967f, 0.476211f, /*t:*/0.814671f, 0.796898f, + /*v:*/0.164062f, 0.437500f, 0.945312f, /*n:*/0.067476f, -0.618122f, 0.783166f, /*t:*/0.797842f, 0.762053f, + /*v:*/0.140625f, 0.367188f, 0.757812f, /*n:*/0.151372f, -0.976867f, 0.150975f, /*t:*/0.843273f, 0.750471f, + /*v:*/-0.125000f, 0.359375f, 0.539062f, /*n:*/-0.277078f, -0.907804f, 0.314737f, /*t:*/0.880504f, 0.681408f, + /*v:*/-0.140625f, 0.367188f, 0.757812f, /*n:*/-0.151372f, -0.976867f, 0.150975f, /*t:*/0.831181f, 0.693262f, + /*v:*/-0.289062f, 0.382813f, 0.710938f, /*n:*/-0.620380f, -0.779809f, -0.083468f, /*t:*/0.833937f, 0.658196f, + /*v:*/-0.125000f, 0.359375f, 0.539062f, /*n:*/-0.277078f, -0.907804f, 0.314737f, /*t:*/0.880504f, 0.681408f, + /*v:*/-0.289062f, 0.382813f, 0.710938f, /*n:*/-0.620380f, -0.779809f, -0.083468f, /*t:*/0.833937f, 0.658196f, + /*v:*/-0.250000f, 0.390625f, 0.500000f, /*n:*/-0.779839f, -0.625843f, 0.010498f, /*t:*/0.881387f, 0.650183f, + /*v:*/0.289062f, 0.382813f, 0.710938f, /*n:*/0.620380f, -0.779809f, -0.083468f, /*t:*/0.858791f, 0.775793f, + /*v:*/0.140625f, 0.367188f, 0.757812f, /*n:*/0.151372f, -0.976867f, 0.150975f, /*t:*/0.843273f, 0.750471f, + /*v:*/0.125000f, 0.359375f, 0.539062f, /*n:*/0.277078f, -0.907804f, 0.314737f, /*t:*/0.891252f, 0.732261f, + /*v:*/0.289062f, 0.382813f, 0.710938f, /*n:*/0.620380f, -0.779809f, -0.083468f, /*t:*/0.858791f, 0.775793f, + /*v:*/0.125000f, 0.359375f, 0.539062f, /*n:*/0.277078f, -0.907804f, 0.314737f, /*t:*/0.891252f, 0.732261f, + /*v:*/0.250000f, 0.390625f, 0.500000f, /*n:*/0.779839f, -0.625843f, 0.010498f, /*t:*/0.902883f, 0.751888f, + /*v:*/-0.289062f, 0.382813f, 0.710938f, /*n:*/-0.620380f, -0.779809f, -0.083468f, /*t:*/0.113884f, 0.675524f, + /*v:*/-0.367188f, 0.531250f, 0.890625f, /*n:*/-0.945708f, 0.197699f, 0.257851f, /*t:*/0.171514f, 0.676186f, + /*v:*/-0.351562f, 0.570313f, 0.695312f, /*n:*/-0.972808f, 0.208716f, -0.100314f, /*t:*/0.144848f, 0.703592f, + /*v:*/-0.289062f, 0.382813f, 0.710938f, /*n:*/-0.620380f, -0.779809f, -0.083468f, /*t:*/0.113884f, 0.675524f, + /*v:*/-0.351562f, 0.570313f, 0.695312f, /*n:*/-0.972808f, 0.208716f, -0.100314f, /*t:*/0.144848f, 0.703592f, + /*v:*/-0.250000f, 0.390625f, 0.500000f, /*n:*/-0.779839f, -0.625843f, 0.010498f, /*t:*/0.077912f, 0.701514f, + /*v:*/0.351562f, 0.570313f, 0.695312f, /*n:*/0.972808f, 0.208716f, -0.100314f, /*t:*/0.885578f, 0.344782f, + /*v:*/0.367188f, 0.531250f, 0.890625f, /*n:*/0.945708f, 0.197699f, 0.257851f, /*t:*/0.894417f, 0.309075f, + /*v:*/0.289062f, 0.382813f, 0.710938f, /*n:*/0.620380f, -0.779809f, -0.083468f, /*t:*/0.928542f, 0.330768f, + /*v:*/0.351562f, 0.570313f, 0.695312f, /*n:*/0.972808f, 0.208716f, -0.100314f, /*t:*/0.885578f, 0.344782f, + /*v:*/0.289062f, 0.382813f, 0.710938f, /*n:*/0.620380f, -0.779809f, -0.083468f, /*t:*/0.928542f, 0.330768f, + /*v:*/0.250000f, 0.390625f, 0.500000f, /*n:*/0.779839f, -0.625843f, 0.010498f, /*t:*/0.928488f, 0.368751f, + /*v:*/-0.328125f, 0.398438f, 0.914062f, /*n:*/-0.555071f, -0.681967f, 0.476211f, /*t:*/0.786459f, 0.663410f, + /*v:*/-0.328125f, 0.523438f, 0.945312f, /*n:*/-0.526658f, 0.161107f, 0.834651f, /*t:*/0.770284f, 0.653738f, + /*v:*/-0.367188f, 0.531250f, 0.890625f, /*n:*/-0.945708f, 0.197699f, 0.257851f, /*t:*/0.780040f, 0.641102f, + /*v:*/-0.328125f, 0.398438f, 0.914062f, /*n:*/-0.555071f, -0.681967f, 0.476211f, /*t:*/0.786459f, 0.663410f, + /*v:*/-0.367188f, 0.531250f, 0.890625f, /*n:*/-0.945708f, 0.197699f, 0.257851f, /*t:*/0.780040f, 0.641102f, + /*v:*/-0.289062f, 0.382813f, 0.710938f, /*n:*/-0.620380f, -0.779809f, -0.083468f, /*t:*/0.833937f, 0.658196f, + /*v:*/0.367188f, 0.531250f, 0.890625f, /*n:*/0.945708f, 0.197699f, 0.257851f, /*t:*/0.985854f, 0.855430f, + /*v:*/0.328125f, 0.523438f, 0.945312f, /*n:*/0.526658f, 0.161107f, 0.834651f, /*t:*/0.981699f, 0.870570f, + /*v:*/0.328125f, 0.398438f, 0.914062f, /*n:*/0.555071f, -0.681967f, 0.476211f, /*t:*/0.953212f, 0.859958f, + /*v:*/0.367188f, 0.531250f, 0.890625f, /*n:*/0.945708f, 0.197699f, 0.257851f, /*t:*/0.985854f, 0.855430f, + /*v:*/0.328125f, 0.398438f, 0.914062f, /*n:*/0.555071f, -0.681967f, 0.476211f, /*t:*/0.953212f, 0.859958f, + /*v:*/0.289062f, 0.382813f, 0.710938f, /*n:*/0.620380f, -0.779809f, -0.083468f, /*t:*/0.947091f, 0.830940f, + /*v:*/-0.164062f, 0.437500f, 0.945312f, /*n:*/-0.067476f, -0.618122f, 0.783166f, /*t:*/0.835437f, 0.272730f, + /*v:*/-0.179688f, 0.554688f, 0.968750f, /*n:*/-0.159551f, 0.152898f, 0.975249f, /*t:*/0.835424f, 0.300887f, + /*v:*/-0.328125f, 0.523438f, 0.945312f, /*n:*/-0.526658f, 0.161107f, 0.834651f, /*t:*/0.812216f, 0.293329f, + /*v:*/-0.164062f, 0.437500f, 0.945312f, /*n:*/-0.067476f, -0.618122f, 0.783166f, /*t:*/0.835437f, 0.272730f, + /*v:*/-0.328125f, 0.523438f, 0.945312f, /*n:*/-0.526658f, 0.161107f, 0.834651f, /*t:*/0.812216f, 0.293329f, + /*v:*/-0.328125f, 0.398438f, 0.914062f, /*n:*/-0.555071f, -0.681967f, 0.476211f, /*t:*/0.810373f, 0.262985f, + /*v:*/0.328125f, 0.523438f, 0.945312f, /*n:*/0.526658f, 0.161107f, 0.834651f, /*t:*/0.981699f, 0.870570f, + /*v:*/0.179688f, 0.554688f, 0.968750f, /*n:*/0.159551f, 0.152898f, 0.975249f, /*t:*/0.979650f, 0.899342f, + /*v:*/0.164062f, 0.437500f, 0.945312f, /*n:*/0.067476f, -0.618122f, 0.783166f, /*t:*/0.951981f, 0.892859f, + /*v:*/0.328125f, 0.523438f, 0.945312f, /*n:*/0.526658f, 0.161107f, 0.834651f, /*t:*/0.981699f, 0.870570f, + /*v:*/0.164062f, 0.437500f, 0.945312f, /*n:*/0.067476f, -0.618122f, 0.783166f, /*t:*/0.951981f, 0.892859f, + /*v:*/0.328125f, 0.398438f, 0.914062f, /*n:*/0.555071f, -0.681967f, 0.476211f, /*t:*/0.953212f, 0.859958f, + /*v:*/0.000000f, 0.460938f, 0.976562f, /*n:*/0.000000f, -0.471603f, 0.881802f, /*t:*/0.943667f, 0.078684f, + /*v:*/0.000000f, 0.578125f, 0.984375f, /*n:*/0.000000f, 0.252266f, 0.967650f, /*t:*/0.925557f, 0.091413f, + /*v:*/-0.179688f, 0.554688f, 0.968750f, /*n:*/-0.159551f, 0.152898f, 0.975249f, /*t:*/0.918491f, 0.051257f, + /*v:*/0.000000f, 0.460938f, 0.976562f, /*n:*/0.000000f, -0.471603f, 0.881802f, /*t:*/0.943667f, 0.078684f, + /*v:*/-0.179688f, 0.554688f, 0.968750f, /*n:*/-0.159551f, 0.152898f, 0.975249f, /*t:*/0.918491f, 0.051257f, + /*v:*/-0.164062f, 0.437500f, 0.945312f, /*n:*/-0.067476f, -0.618122f, 0.783166f, /*t:*/0.934807f, 0.040986f, + /*v:*/0.179688f, 0.554688f, 0.968750f, /*n:*/0.159551f, 0.152898f, 0.975249f, /*t:*/0.979650f, 0.899342f, + /*v:*/0.000000f, 0.578125f, 0.984375f, /*n:*/0.000000f, 0.252266f, 0.967650f, /*t:*/0.973884f, 0.931395f, + /*v:*/0.000000f, 0.460938f, 0.976562f, /*n:*/0.000000f, -0.471603f, 0.881802f, /*t:*/0.947193f, 0.925098f, + /*v:*/0.179688f, 0.554688f, 0.968750f, /*n:*/0.159551f, 0.152898f, 0.975249f, /*t:*/0.979650f, 0.899342f, + /*v:*/0.000000f, 0.460938f, 0.976562f, /*n:*/0.000000f, -0.471603f, 0.881802f, /*t:*/0.947193f, 0.925098f, + /*v:*/0.164062f, 0.437500f, 0.945312f, /*n:*/0.067476f, -0.618122f, 0.783166f, /*t:*/0.951981f, 0.892859f, + /*v:*/-0.140625f, 0.367188f, 0.757812f, /*n:*/-0.151372f, -0.976867f, 0.150975f, /*t:*/0.831181f, 0.693262f, + /*v:*/0.000000f, 0.343750f, 0.804688f, /*n:*/0.000000f, -0.954741f, 0.297342f, /*t:*/0.828672f, 0.727483f, + /*v:*/-0.164062f, 0.437500f, 0.945312f, /*n:*/-0.067476f, -0.618122f, 0.783166f, /*t:*/0.783736f, 0.695309f, + /*v:*/0.000000f, 0.343750f, 0.804688f, /*n:*/0.000000f, -0.954741f, 0.297342f, /*t:*/0.828672f, 0.727483f, + /*v:*/0.000000f, 0.460938f, 0.976562f, /*n:*/0.000000f, -0.471603f, 0.881802f, /*t:*/0.782177f, 0.728698f, + /*v:*/-0.164062f, 0.437500f, 0.945312f, /*n:*/-0.067476f, -0.618122f, 0.783166f, /*t:*/0.783736f, 0.695309f, + /*v:*/0.000000f, 0.460938f, 0.976562f, /*n:*/0.000000f, -0.471603f, 0.881802f, /*t:*/0.782177f, 0.728698f, + /*v:*/0.000000f, 0.343750f, 0.804688f, /*n:*/0.000000f, -0.954741f, 0.297342f, /*t:*/0.828672f, 0.727483f, + /*v:*/0.164062f, 0.437500f, 0.945312f, /*n:*/0.067476f, -0.618122f, 0.783166f, /*t:*/0.797842f, 0.762053f, + /*v:*/0.000000f, 0.343750f, 0.804688f, /*n:*/0.000000f, -0.954741f, 0.297342f, /*t:*/0.828672f, 0.727483f, + /*v:*/0.140625f, 0.367188f, 0.757812f, /*n:*/0.151372f, -0.976867f, 0.150975f, /*t:*/0.843273f, 0.750471f, + /*v:*/0.164062f, 0.437500f, 0.945312f, /*n:*/0.067476f, -0.618122f, 0.783166f, /*t:*/0.797842f, 0.762053f, + /*v:*/-0.125000f, 0.359375f, 0.539062f, /*n:*/-0.277078f, -0.907804f, 0.314737f, /*t:*/0.880504f, 0.681408f, + /*v:*/0.000000f, 0.320313f, 0.570312f, /*n:*/0.000000f, -0.976959f, 0.213294f, /*t:*/0.881920f, 0.712815f, + /*v:*/-0.140625f, 0.367188f, 0.757812f, /*n:*/-0.151372f, -0.976867f, 0.150975f, /*t:*/0.831181f, 0.693262f, + /*v:*/0.000000f, 0.320313f, 0.570312f, /*n:*/0.000000f, -0.976959f, 0.213294f, /*t:*/0.881920f, 0.712815f, + /*v:*/0.000000f, 0.343750f, 0.804688f, /*n:*/0.000000f, -0.954741f, 0.297342f, /*t:*/0.828672f, 0.727483f, + /*v:*/-0.140625f, 0.367188f, 0.757812f, /*n:*/-0.151372f, -0.976867f, 0.150975f, /*t:*/0.831181f, 0.693262f, + /*v:*/0.000000f, 0.343750f, 0.804688f, /*n:*/0.000000f, -0.954741f, 0.297342f, /*t:*/0.828672f, 0.727483f, + /*v:*/0.000000f, 0.320313f, 0.570312f, /*n:*/0.000000f, -0.976959f, 0.213294f, /*t:*/0.881920f, 0.712815f, + /*v:*/0.140625f, 0.367188f, 0.757812f, /*n:*/0.151372f, -0.976867f, 0.150975f, /*t:*/0.843273f, 0.750471f, + /*v:*/0.000000f, 0.320313f, 0.570312f, /*n:*/0.000000f, -0.976959f, 0.213294f, /*t:*/0.881920f, 0.712815f, + /*v:*/0.125000f, 0.359375f, 0.539062f, /*n:*/0.277078f, -0.907804f, 0.314737f, /*t:*/0.891252f, 0.732261f, + /*v:*/0.140625f, 0.367188f, 0.757812f, /*n:*/0.151372f, -0.976867f, 0.150975f, /*t:*/0.843273f, 0.750471f, + /*v:*/-0.179688f, 0.257813f, 0.414062f, /*n:*/-0.689322f, -0.278603f, 0.668691f, /*t:*/0.913184f, 0.670959f, + /*v:*/0.000000f, 0.281250f, 0.484375f, /*n:*/0.000000f, -0.636708f, 0.771081f, /*t:*/0.903713f, 0.710344f, + /*v:*/-0.125000f, 0.359375f, 0.539062f, /*n:*/-0.277078f, -0.907804f, 0.314737f, /*t:*/0.880504f, 0.681408f, + /*v:*/0.000000f, 0.281250f, 0.484375f, /*n:*/0.000000f, -0.636708f, 0.771081f, /*t:*/0.903713f, 0.710344f, + /*v:*/0.000000f, 0.320313f, 0.570312f, /*n:*/0.000000f, -0.976959f, 0.213294f, /*t:*/0.881920f, 0.712815f, + /*v:*/-0.125000f, 0.359375f, 0.539062f, /*n:*/-0.277078f, -0.907804f, 0.314737f, /*t:*/0.880504f, 0.681408f, + /*v:*/0.000000f, 0.320313f, 0.570312f, /*n:*/0.000000f, -0.976959f, 0.213294f, /*t:*/0.044494f, 0.333768f, + /*v:*/0.000000f, 0.281250f, 0.484375f, /*n:*/0.000000f, -0.636708f, 0.771081f, /*t:*/0.052583f, 0.317054f, + /*v:*/0.125000f, 0.359375f, 0.539062f, /*n:*/0.277078f, -0.907804f, 0.314737f, /*t:*/0.073199f, 0.333773f, + /*v:*/0.000000f, 0.281250f, 0.484375f, /*n:*/0.000000f, -0.636708f, 0.771081f, /*t:*/0.052583f, 0.317054f, + /*v:*/0.179688f, 0.257813f, 0.414062f, /*n:*/0.689322f, -0.278603f, 0.668691f, /*t:*/0.089628f, 0.297813f, + /*v:*/0.125000f, 0.359375f, 0.539062f, /*n:*/0.277078f, -0.907804f, 0.314737f, /*t:*/0.073199f, 0.333773f, + /*v:*/-0.437500f, 0.468750f, 0.093750f, /*n:*/-0.471969f, -0.176794f, 0.863674f, /*t:*/0.960059f, 0.312529f, + /*v:*/-0.437500f, 0.531250f, 0.140625f, /*n:*/-0.348827f, -0.008148f, 0.937132f, /*t:*/0.946152f, 0.318605f, + /*v:*/-0.632812f, 0.539062f, 0.039062f, /*n:*/-0.587481f, 0.196966f, 0.784875f, /*t:*/0.930978f, 0.271356f, + /*v:*/-0.437500f, 0.468750f, 0.093750f, /*n:*/-0.471969f, -0.176794f, 0.863674f, /*t:*/0.960059f, 0.312529f, + /*v:*/-0.632812f, 0.539062f, 0.039062f, /*n:*/-0.587481f, 0.196966f, 0.784875f, /*t:*/0.930978f, 0.271356f, + /*v:*/-0.601562f, 0.414062f, -0.000000f, /*n:*/-0.544328f, -0.053316f, 0.837153f, /*t:*/0.955549f, 0.273680f, + /*v:*/0.632812f, 0.539062f, 0.039062f, /*n:*/0.587481f, 0.196966f, 0.784875f, /*t:*/0.243429f, 0.301315f, + /*v:*/0.437500f, 0.531250f, 0.140625f, /*n:*/0.348827f, -0.008148f, 0.937132f, /*t:*/0.196455f, 0.317715f, + /*v:*/0.437500f, 0.468750f, 0.093750f, /*n:*/0.471969f, -0.176794f, 0.863674f, /*t:*/0.196867f, 0.299936f, + /*v:*/0.632812f, 0.539062f, 0.039062f, /*n:*/0.587481f, 0.196966f, 0.784875f, /*t:*/0.243429f, 0.301315f, + /*v:*/0.437500f, 0.468750f, 0.093750f, /*n:*/0.471969f, -0.176794f, 0.863674f, /*t:*/0.196867f, 0.299936f, + /*v:*/0.601562f, 0.414062f, -0.000000f, /*n:*/0.544328f, -0.053316f, 0.837153f, /*t:*/0.231545f, 0.272445f, + /*v:*/-0.601562f, 0.414062f, -0.000000f, /*n:*/-0.544328f, -0.053316f, 0.837153f, /*t:*/0.955549f, 0.273680f, + /*v:*/-0.632812f, 0.539062f, 0.039062f, /*n:*/-0.587481f, 0.196966f, 0.784875f, /*t:*/0.930978f, 0.271356f, + /*v:*/-0.828125f, 0.445312f, -0.148438f, /*n:*/-0.906980f, -0.128941f, 0.400922f, /*t:*/0.939805f, 0.212466f, + /*v:*/-0.601562f, 0.414062f, -0.000000f, /*n:*/-0.544328f, -0.053316f, 0.837153f, /*t:*/0.955549f, 0.273680f, + /*v:*/-0.828125f, 0.445312f, -0.148438f, /*n:*/-0.906980f, -0.128941f, 0.400922f, /*t:*/0.939805f, 0.212466f, + /*v:*/-0.773438f, 0.375000f, -0.164063f, /*n:*/-0.930204f, -0.202338f, 0.306192f, /*t:*/0.958201f, 0.220346f, + /*v:*/0.828125f, 0.445312f, -0.148438f, /*n:*/0.906980f, -0.128941f, 0.400922f, /*t:*/0.292423f, 0.255058f, + /*v:*/0.632812f, 0.539062f, 0.039062f, /*n:*/0.587481f, 0.196966f, 0.784875f, /*t:*/0.243429f, 0.301315f, + /*v:*/0.601562f, 0.414062f, -0.000000f, /*n:*/0.544328f, -0.053316f, 0.837153f, /*t:*/0.231545f, 0.272445f, + /*v:*/0.828125f, 0.445312f, -0.148438f, /*n:*/0.906980f, -0.128941f, 0.400922f, /*t:*/0.292423f, 0.255058f, + /*v:*/0.601562f, 0.414062f, -0.000000f, /*n:*/0.544328f, -0.053316f, 0.837153f, /*t:*/0.231545f, 0.272445f, + /*v:*/0.773438f, 0.375000f, -0.164063f, /*n:*/0.930204f, -0.202338f, 0.306192f, /*t:*/0.278748f, 0.240966f, + /*v:*/-0.773438f, 0.375000f, -0.164063f, /*n:*/-0.930204f, -0.202338f, 0.306192f, /*t:*/0.958201f, 0.220346f, + /*v:*/-0.828125f, 0.445312f, -0.148438f, /*n:*/-0.906980f, -0.128941f, 0.400922f, /*t:*/0.939805f, 0.212466f, + /*v:*/-0.796875f, 0.460937f, -0.406250f, /*n:*/-0.695700f, -0.421827f, -0.581378f, /*t:*/0.979696f, 0.169720f, + /*v:*/-0.828125f, 0.445312f, -0.148438f, /*n:*/-0.906980f, -0.128941f, 0.400922f, /*t:*/0.939805f, 0.212466f, + /*v:*/-0.859375f, 0.593750f, -0.429688f, /*n:*/-0.845119f, 0.298502f, -0.443403f, /*t:*/0.958592f, 0.151203f, + /*v:*/-0.796875f, 0.460937f, -0.406250f, /*n:*/-0.695700f, -0.421827f, -0.581378f, /*t:*/0.979696f, 0.169720f, + /*v:*/0.859375f, 0.593750f, -0.429688f, /*n:*/0.845119f, 0.298502f, -0.443403f, /*t:*/0.748377f, 0.094531f, + /*v:*/0.828125f, 0.445312f, -0.148438f, /*n:*/0.906980f, -0.128941f, 0.400922f, /*t:*/0.784326f, 0.039821f, + /*v:*/0.796875f, 0.460937f, -0.406250f, /*n:*/0.695700f, -0.421827f, -0.581378f, /*t:*/0.781712f, 0.084595f, + /*v:*/0.828125f, 0.445312f, -0.148438f, /*n:*/0.906980f, -0.128941f, 0.400922f, /*t:*/0.784326f, 0.039821f, + /*v:*/0.773438f, 0.375000f, -0.164063f, /*n:*/0.930204f, -0.202338f, 0.306192f, /*t:*/0.804897f, 0.041812f, + /*v:*/0.796875f, 0.460937f, -0.406250f, /*n:*/0.695700f, -0.421827f, -0.581378f, /*t:*/0.781712f, 0.084595f, + /*v:*/-0.796875f, 0.460937f, -0.406250f, /*n:*/-0.695700f, -0.421827f, -0.581378f, /*t:*/0.219840f, 0.610110f, + /*v:*/-0.859375f, 0.593750f, -0.429688f, /*n:*/-0.845119f, 0.298502f, -0.443403f, /*t:*/0.217880f, 0.638861f, + /*v:*/-0.710938f, 0.625000f, -0.484375f, /*n:*/-0.517045f, 0.212531f, -0.829127f, /*t:*/0.184102f, 0.641186f, + /*v:*/-0.796875f, 0.460937f, -0.406250f, /*n:*/-0.695700f, -0.421827f, -0.581378f, /*t:*/0.219840f, 0.610110f, + /*v:*/-0.710938f, 0.625000f, -0.484375f, /*n:*/-0.517045f, 0.212531f, -0.829127f, /*t:*/0.184102f, 0.641186f, + /*v:*/-0.679688f, 0.492187f, -0.453125f, /*n:*/-0.345531f, -0.219123f, -0.912442f, /*t:*/0.192170f, 0.613175f, + /*v:*/0.710938f, 0.625000f, -0.484375f, /*n:*/0.517045f, 0.212531f, -0.829127f, /*t:*/0.765716f, 0.127337f, + /*v:*/0.859375f, 0.593750f, -0.429688f, /*n:*/0.845119f, 0.298502f, -0.443403f, /*t:*/0.748377f, 0.094531f, + /*v:*/0.796875f, 0.460937f, -0.406250f, /*n:*/0.695700f, -0.421827f, -0.581378f, /*t:*/0.781712f, 0.084595f, + /*v:*/0.710938f, 0.625000f, -0.484375f, /*n:*/0.517045f, 0.212531f, -0.829127f, /*t:*/0.765716f, 0.127337f, + /*v:*/0.796875f, 0.460937f, -0.406250f, /*n:*/0.695700f, -0.421827f, -0.581378f, /*t:*/0.781712f, 0.084595f, + /*v:*/0.679688f, 0.492187f, -0.453125f, /*n:*/0.345531f, -0.219123f, -0.912442f, /*t:*/0.794197f, 0.111805f, + /*v:*/-0.679688f, 0.492187f, -0.453125f, /*n:*/-0.345531f, -0.219123f, -0.912442f, /*t:*/0.192170f, 0.613175f, + /*v:*/-0.710938f, 0.625000f, -0.484375f, /*n:*/-0.517045f, 0.212531f, -0.829127f, /*t:*/0.184102f, 0.641186f, + /*v:*/-0.484375f, 0.554688f, -0.554688f, /*n:*/-0.226691f, -0.428114f, -0.874813f, /*t:*/0.141462f, 0.619019f, + /*v:*/-0.710938f, 0.625000f, -0.484375f, /*n:*/-0.517045f, 0.212531f, -0.829127f, /*t:*/0.184102f, 0.641186f, + /*v:*/-0.492188f, 0.687500f, -0.601563f, /*n:*/-0.597552f, 0.164586f, -0.784722f, /*t:*/0.127147f, 0.645802f, + /*v:*/-0.484375f, 0.554688f, -0.554688f, /*n:*/-0.226691f, -0.428114f, -0.874813f, /*t:*/0.141462f, 0.619019f, + /*v:*/0.492188f, 0.687500f, -0.601563f, /*n:*/0.597552f, 0.164586f, -0.784722f, /*t:*/0.787736f, 0.183047f, + /*v:*/0.710938f, 0.625000f, -0.484375f, /*n:*/0.517045f, 0.212531f, -0.829127f, /*t:*/0.765716f, 0.127337f, + /*v:*/0.484375f, 0.554688f, -0.554688f, /*n:*/0.226691f, -0.428114f, -0.874813f, /*t:*/0.812762f, 0.161857f, + /*v:*/0.710938f, 0.625000f, -0.484375f, /*n:*/0.517045f, 0.212531f, -0.829127f, /*t:*/0.765716f, 0.127337f, + /*v:*/0.679688f, 0.492187f, -0.453125f, /*n:*/0.345531f, -0.219123f, -0.912442f, /*t:*/0.794197f, 0.111805f, + /*v:*/0.484375f, 0.554688f, -0.554688f, /*n:*/0.226691f, -0.428114f, -0.874813f, /*t:*/0.812762f, 0.161857f, + /*v:*/-0.484375f, 0.554688f, -0.554688f, /*n:*/-0.226691f, -0.428114f, -0.874813f, /*t:*/0.141462f, 0.619019f, + /*v:*/-0.492188f, 0.687500f, -0.601563f, /*n:*/-0.597552f, 0.164586f, -0.784722f, /*t:*/0.127147f, 0.645802f, + /*v:*/-0.335938f, 0.593750f, -0.687500f, /*n:*/-0.119297f, -0.753807f, -0.646138f, /*t:*/0.093904f, 0.617724f, + /*v:*/-0.492188f, 0.687500f, -0.601563f, /*n:*/-0.597552f, 0.164586f, -0.784722f, /*t:*/0.127147f, 0.645802f, + /*v:*/-0.320312f, 0.734375f, -0.757813f, /*n:*/-0.231269f, 0.175054f, -0.956999f, /*t:*/0.071565f, 0.644504f, + /*v:*/-0.335938f, 0.593750f, -0.687500f, /*n:*/-0.119297f, -0.753807f, -0.646138f, /*t:*/0.093904f, 0.617724f, + /*v:*/0.320312f, 0.734375f, -0.757813f, /*n:*/0.231269f, 0.175054f, -0.956999f, /*t:*/0.804196f, 0.236157f, + /*v:*/0.492188f, 0.687500f, -0.601563f, /*n:*/0.597552f, 0.164586f, -0.784722f, /*t:*/0.787736f, 0.183047f, + /*v:*/0.335938f, 0.593750f, -0.687500f, /*n:*/0.119297f, -0.753807f, -0.646138f, /*t:*/0.827263f, 0.207243f, + /*v:*/0.492188f, 0.687500f, -0.601563f, /*n:*/0.597552f, 0.164586f, -0.784722f, /*t:*/0.787736f, 0.183047f, + /*v:*/0.484375f, 0.554688f, -0.554688f, /*n:*/0.226691f, -0.428114f, -0.874813f, /*t:*/0.812762f, 0.161857f, + /*v:*/0.335938f, 0.593750f, -0.687500f, /*n:*/0.119297f, -0.753807f, -0.646138f, /*t:*/0.827263f, 0.207243f, + /*v:*/-0.335938f, 0.593750f, -0.687500f, /*n:*/-0.119297f, -0.753807f, -0.646138f, /*t:*/0.761961f, 0.911917f, + /*v:*/-0.320312f, 0.734375f, -0.757813f, /*n:*/-0.231269f, 0.175054f, -0.956999f, /*t:*/0.725637f, 0.920168f, + /*v:*/-0.195312f, 0.617188f, -0.664062f, /*n:*/0.476638f, -0.716392f, -0.509445f, /*t:*/0.748804f, 0.881286f, + /*v:*/-0.320312f, 0.734375f, -0.757813f, /*n:*/-0.231269f, 0.175054f, -0.956999f, /*t:*/0.725637f, 0.920168f, + /*v:*/-0.156250f, 0.757812f, -0.718750f, /*n:*/0.605060f, 0.209754f, -0.768029f, /*t:*/0.712120f, 0.882919f, + /*v:*/-0.195312f, 0.617188f, -0.664062f, /*n:*/0.476638f, -0.716392f, -0.509445f, /*t:*/0.748804f, 0.881286f, + /*v:*/0.156250f, 0.757812f, -0.718750f, /*n:*/-0.605060f, 0.209754f, -0.768029f, /*t:*/0.827174f, 0.256260f, + /*v:*/0.320312f, 0.734375f, -0.757813f, /*n:*/0.231269f, 0.175054f, -0.956999f, /*t:*/0.804196f, 0.236157f, + /*v:*/0.195312f, 0.617188f, -0.664062f, /*n:*/-0.476638f, -0.716392f, -0.509445f, /*t:*/0.846190f, 0.226362f, + /*v:*/0.320312f, 0.734375f, -0.757813f, /*n:*/0.231269f, 0.175054f, -0.956999f, /*t:*/0.804196f, 0.236157f, + /*v:*/0.335938f, 0.593750f, -0.687500f, /*n:*/0.119297f, -0.753807f, -0.646138f, /*t:*/0.827263f, 0.207243f, + /*v:*/0.195312f, 0.617188f, -0.664062f, /*n:*/-0.476638f, -0.716392f, -0.509445f, /*t:*/0.846190f, 0.226362f, + /*v:*/-0.195312f, 0.617188f, -0.664062f, /*n:*/0.476638f, -0.716392f, -0.509445f, /*t:*/0.748804f, 0.881286f, + /*v:*/-0.156250f, 0.757812f, -0.718750f, /*n:*/0.605060f, 0.209754f, -0.768029f, /*t:*/0.712120f, 0.882919f, + /*v:*/-0.062500f, 0.750000f, -0.492188f, /*n:*/0.824183f, 0.147313f, -0.546770f, /*t:*/0.726684f, 0.836179f, + /*v:*/-0.195312f, 0.617188f, -0.664062f, /*n:*/0.476638f, -0.716392f, -0.509445f, /*t:*/0.748804f, 0.881286f, + /*v:*/-0.062500f, 0.750000f, -0.492188f, /*n:*/0.824183f, 0.147313f, -0.546770f, /*t:*/0.726684f, 0.836179f, + /*v:*/-0.109375f, 0.609375f, -0.460938f, /*n:*/0.459304f, 0.212561f, -0.862453f, /*t:*/0.761889f, 0.838988f, + /*v:*/0.062500f, 0.750000f, -0.492188f, /*n:*/-0.824183f, 0.147313f, -0.546770f, /*t:*/0.247101f, 0.845223f, + /*v:*/0.156250f, 0.757812f, -0.718750f, /*n:*/-0.605060f, 0.209754f, -0.768029f, /*t:*/0.243864f, 0.900494f, + /*v:*/0.195312f, 0.617188f, -0.664062f, /*n:*/-0.476638f, -0.716392f, -0.509445f, /*t:*/0.213939f, 0.895172f, + /*v:*/0.062500f, 0.750000f, -0.492188f, /*n:*/-0.824183f, 0.147313f, -0.546770f, /*t:*/0.247101f, 0.845223f, + /*v:*/0.195312f, 0.617188f, -0.664062f, /*n:*/-0.476638f, -0.716392f, -0.509445f, /*t:*/0.213939f, 0.895172f, + /*v:*/0.109375f, 0.609375f, -0.460938f, /*n:*/-0.459304f, 0.212561f, -0.862453f, /*t:*/0.216606f, 0.845327f, + /*v:*/-0.109375f, 0.609375f, -0.460938f, /*n:*/0.459304f, 0.212561f, -0.862453f, /*t:*/0.761889f, 0.838988f, + /*v:*/-0.062500f, 0.750000f, -0.492188f, /*n:*/0.824183f, 0.147313f, -0.546770f, /*t:*/0.726684f, 0.836179f, + /*v:*/0.000000f, 0.742188f, -0.429688f, /*n:*/0.000000f, 0.267281f, -0.963591f, /*t:*/0.729164f, 0.815822f, + /*v:*/-0.109375f, 0.609375f, -0.460938f, /*n:*/0.459304f, 0.212561f, -0.862453f, /*t:*/0.761889f, 0.838988f, + /*v:*/0.000000f, 0.742188f, -0.429688f, /*n:*/0.000000f, 0.267281f, -0.963591f, /*t:*/0.729164f, 0.815822f, + /*v:*/0.000000f, 0.601562f, -0.406250f, /*n:*/0.000000f, 0.511612f, -0.859188f, /*t:*/0.760224f, 0.810182f, + /*v:*/0.000000f, 0.742188f, -0.429688f, /*n:*/0.000000f, 0.267281f, -0.963591f, /*t:*/0.245768f, 0.824396f, + /*v:*/0.062500f, 0.750000f, -0.492188f, /*n:*/-0.824183f, 0.147313f, -0.546770f, /*t:*/0.247101f, 0.845223f, + /*v:*/0.109375f, 0.609375f, -0.460938f, /*n:*/-0.459304f, 0.212561f, -0.862453f, /*t:*/0.216606f, 0.845327f, + /*v:*/0.000000f, 0.742188f, -0.429688f, /*n:*/0.000000f, 0.267281f, -0.963591f, /*t:*/0.245768f, 0.824396f, + /*v:*/0.109375f, 0.609375f, -0.460938f, /*n:*/-0.459304f, 0.212561f, -0.862453f, /*t:*/0.216606f, 0.845327f, + /*v:*/0.000000f, 0.601562f, -0.406250f, /*n:*/0.000000f, 0.511612f, -0.859188f, /*t:*/0.213853f, 0.818845f, + /*v:*/-0.203125f, 0.750000f, -0.171875f, /*n:*/-0.688040f, 0.661397f, -0.298471f, /*t:*/0.895936f, 0.899638f, + /*v:*/-0.187500f, 0.773438f, -0.156250f, /*n:*/0.010102f, 0.997467f, 0.069979f, /*t:*/0.902274f, 0.900024f, + /*v:*/-0.171875f, 0.781250f, -0.218750f, /*n:*/-0.158055f, 0.983825f, 0.084231f, /*t:*/0.901050f, 0.913725f, + /*v:*/-0.203125f, 0.750000f, -0.171875f, /*n:*/-0.688040f, 0.661397f, -0.298471f, /*t:*/0.895936f, 0.899638f, + /*v:*/-0.171875f, 0.781250f, -0.218750f, /*n:*/-0.158055f, 0.983825f, 0.084231f, /*t:*/0.901050f, 0.913725f, + /*v:*/-0.195312f, 0.750000f, -0.226563f, /*n:*/-0.801630f, 0.597674f, -0.010987f, /*t:*/0.893235f, 0.910510f, + /*v:*/0.171875f, 0.781250f, -0.218750f, /*n:*/0.158055f, 0.983825f, 0.084231f, /*t:*/0.655332f, 0.478834f, + /*v:*/0.187500f, 0.773438f, -0.156250f, /*n:*/-0.010102f, 0.997467f, 0.069979f, /*t:*/0.640290f, 0.477726f, + /*v:*/0.203125f, 0.750000f, -0.171875f, /*n:*/0.688040f, 0.661397f, -0.298471f, /*t:*/0.643247f, 0.471190f, + /*v:*/0.171875f, 0.781250f, -0.218750f, /*n:*/0.158055f, 0.983825f, 0.084231f, /*t:*/0.655332f, 0.478834f, + /*v:*/0.203125f, 0.750000f, -0.171875f, /*n:*/0.688040f, 0.661397f, -0.298471f, /*t:*/0.643247f, 0.471190f, + /*v:*/0.195312f, 0.750000f, -0.226563f, /*n:*/0.801630f, 0.597674f, -0.010987f, /*t:*/0.656155f, 0.470204f, + /*v:*/-0.195312f, 0.750000f, -0.226563f, /*n:*/-0.801630f, 0.597674f, -0.010987f, /*t:*/0.999982f, 0.823463f, + /*v:*/-0.171875f, 0.781250f, -0.218750f, /*n:*/-0.158055f, 0.983825f, 0.084231f, /*t:*/0.995083f, 0.830940f, + /*v:*/-0.179688f, 0.781250f, -0.296875f, /*n:*/-0.293405f, 0.954070f, 0.060152f, /*t:*/0.983908f, 0.822395f, + /*v:*/-0.195312f, 0.750000f, -0.226563f, /*n:*/-0.801630f, 0.597674f, -0.010987f, /*t:*/0.999982f, 0.823463f, + /*v:*/-0.179688f, 0.781250f, -0.296875f, /*n:*/-0.293405f, 0.954070f, 0.060152f, /*t:*/0.983908f, 0.822395f, + /*v:*/-0.195312f, 0.757812f, -0.296875f, /*n:*/-0.789361f, 0.579302f, 0.203192f, /*t:*/0.988410f, 0.817715f, + /*v:*/0.179688f, 0.781250f, -0.296875f, /*n:*/0.293405f, 0.954070f, 0.060152f, /*t:*/0.672604f, 0.473599f, + /*v:*/0.171875f, 0.781250f, -0.218750f, /*n:*/0.158055f, 0.983825f, 0.084231f, /*t:*/0.655332f, 0.478834f, + /*v:*/0.195312f, 0.750000f, -0.226563f, /*n:*/0.801630f, 0.597674f, -0.010987f, /*t:*/0.656155f, 0.470204f, + /*v:*/0.179688f, 0.781250f, -0.296875f, /*n:*/0.293405f, 0.954070f, 0.060152f, /*t:*/0.672604f, 0.473599f, + /*v:*/0.195312f, 0.750000f, -0.226563f, /*n:*/0.801630f, 0.597674f, -0.010987f, /*t:*/0.656155f, 0.470204f, + /*v:*/0.195312f, 0.757812f, -0.296875f, /*n:*/0.789361f, 0.579302f, 0.203192f, /*t:*/0.672010f, 0.467795f, + /*v:*/-0.195312f, 0.757812f, -0.296875f, /*n:*/-0.789361f, 0.579302f, 0.203192f, /*t:*/0.988410f, 0.817715f, + /*v:*/-0.179688f, 0.781250f, -0.296875f, /*n:*/-0.293405f, 0.954070f, 0.060152f, /*t:*/0.983908f, 0.822395f, + /*v:*/-0.210938f, 0.781250f, -0.375000f, /*n:*/-0.182958f, 0.977691f, 0.102878f, /*t:*/0.972915f, 0.808912f, + /*v:*/-0.195312f, 0.757812f, -0.296875f, /*n:*/-0.789361f, 0.579302f, 0.203192f, /*t:*/0.988410f, 0.817715f, + /*v:*/-0.210938f, 0.781250f, -0.375000f, /*n:*/-0.182958f, 0.977691f, 0.102878f, /*t:*/0.972915f, 0.808912f, + /*v:*/-0.234375f, 0.757812f, -0.359375f, /*n:*/-0.463424f, 0.793237f, 0.394910f, /*t:*/0.979724f, 0.803967f, + /*v:*/0.210938f, 0.781250f, -0.375000f, /*n:*/0.182958f, 0.977691f, 0.102878f, /*t:*/0.688432f, 0.463637f, + /*v:*/0.179688f, 0.781250f, -0.296875f, /*n:*/0.293405f, 0.954070f, 0.060152f, /*t:*/0.672604f, 0.473599f, + /*v:*/0.195312f, 0.757812f, -0.296875f, /*n:*/0.789361f, 0.579302f, 0.203192f, /*t:*/0.672010f, 0.467795f, + /*v:*/0.210938f, 0.781250f, -0.375000f, /*n:*/0.182958f, 0.977691f, 0.102878f, /*t:*/0.688432f, 0.463637f, + /*v:*/0.195312f, 0.757812f, -0.296875f, /*n:*/0.789361f, 0.579302f, 0.203192f, /*t:*/0.672010f, 0.467795f, + /*v:*/0.234375f, 0.757812f, -0.359375f, /*n:*/0.463424f, 0.793237f, 0.394910f, /*t:*/0.683807f, 0.456989f, + /*v:*/-0.242188f, 0.757812f, -0.125000f, /*n:*/-0.432264f, 0.687643f, -0.583300f, /*t:*/0.899742f, 0.885637f, + /*v:*/-0.226562f, 0.781250f, -0.109375f, /*n:*/0.031709f, 0.975005f, 0.219794f, /*t:*/0.906080f, 0.886022f, + /*v:*/-0.187500f, 0.773438f, -0.156250f, /*n:*/0.010102f, 0.997467f, 0.069979f, /*t:*/0.902274f, 0.900024f, + /*v:*/-0.242188f, 0.757812f, -0.125000f, /*n:*/-0.432264f, 0.687643f, -0.583300f, /*t:*/0.899742f, 0.885637f, + /*v:*/-0.187500f, 0.773438f, -0.156250f, /*n:*/0.010102f, 0.997467f, 0.069979f, /*t:*/0.902274f, 0.900024f, + /*v:*/-0.203125f, 0.750000f, -0.171875f, /*n:*/-0.688040f, 0.661397f, -0.298471f, /*t:*/0.895936f, 0.899638f, + /*v:*/0.187500f, 0.773438f, -0.156250f, /*n:*/-0.010102f, 0.997467f, 0.069979f, /*t:*/0.640290f, 0.477726f, + /*v:*/0.226562f, 0.781250f, -0.109375f, /*n:*/-0.031709f, 0.975005f, 0.219794f, /*t:*/0.627109f, 0.472928f, + /*v:*/0.242188f, 0.757812f, -0.125000f, /*n:*/0.432264f, 0.687643f, -0.583300f, /*t:*/0.630066f, 0.466392f, + /*v:*/0.187500f, 0.773438f, -0.156250f, /*n:*/-0.010102f, 0.997467f, 0.069979f, /*t:*/0.640290f, 0.477726f, + /*v:*/0.242188f, 0.757812f, -0.125000f, /*n:*/0.432264f, 0.687643f, -0.583300f, /*t:*/0.630066f, 0.466392f, + /*v:*/0.203125f, 0.750000f, -0.171875f, /*n:*/0.688040f, 0.661397f, -0.298471f, /*t:*/0.643247f, 0.471190f, + /*v:*/-0.375000f, 0.726562f, -0.085938f, /*n:*/-0.143071f, 0.816919f, -0.558672f, /*t:*/0.893268f, 0.857435f, + /*v:*/-0.375000f, 0.742188f, -0.062500f, /*n:*/-0.184454f, 0.964995f, 0.186316f, /*t:*/0.898055f, 0.853797f, + /*v:*/-0.242188f, 0.757812f, -0.125000f, /*n:*/-0.432264f, 0.687643f, -0.583300f, /*t:*/0.899742f, 0.885637f, + /*v:*/-0.375000f, 0.742188f, -0.062500f, /*n:*/-0.184454f, 0.964995f, 0.186316f, /*t:*/0.898055f, 0.853797f, + /*v:*/-0.226562f, 0.781250f, -0.109375f, /*n:*/0.031709f, 0.975005f, 0.219794f, /*t:*/0.906080f, 0.886022f, + /*v:*/-0.242188f, 0.757812f, -0.125000f, /*n:*/-0.432264f, 0.687643f, -0.583300f, /*t:*/0.899742f, 0.885637f, + /*v:*/0.226562f, 0.781250f, -0.109375f, /*n:*/-0.031709f, 0.975005f, 0.219794f, /*t:*/0.627109f, 0.472928f, + /*v:*/0.375000f, 0.742188f, -0.062500f, /*n:*/0.184454f, 0.964995f, 0.186316f, /*t:*/0.607927f, 0.440765f, + /*v:*/0.242188f, 0.757812f, -0.125000f, /*n:*/0.432264f, 0.687643f, -0.583300f, /*t:*/0.630066f, 0.466392f, + /*v:*/0.375000f, 0.742188f, -0.062500f, /*n:*/0.184454f, 0.964995f, 0.186316f, /*t:*/0.607927f, 0.440765f, + /*v:*/0.375000f, 0.726562f, -0.085938f, /*n:*/0.143071f, 0.816919f, -0.558672f, /*t:*/0.613499f, 0.437898f, + /*v:*/0.242188f, 0.757812f, -0.125000f, /*n:*/0.432264f, 0.687643f, -0.583300f, /*t:*/0.630066f, 0.466392f, + /*v:*/-0.460938f, 0.703125f, -0.117188f, /*n:*/0.165288f, 0.775109f, -0.609790f, /*t:*/0.013520f, 0.497710f, + /*v:*/-0.476562f, 0.718750f, -0.101563f, /*n:*/-0.298990f, 0.953581f, 0.035615f, /*t:*/0.007399f, 0.496127f, + /*v:*/-0.375000f, 0.726562f, -0.085938f, /*n:*/-0.143071f, 0.816919f, -0.558672f, /*t:*/0.023759f, 0.482455f, + /*v:*/-0.476562f, 0.718750f, -0.101563f, /*n:*/-0.298990f, 0.953581f, 0.035615f, /*t:*/0.007399f, 0.496127f, + /*v:*/-0.375000f, 0.742188f, -0.062500f, /*n:*/-0.184454f, 0.964995f, 0.186316f, /*t:*/0.019786f, 0.477610f, + /*v:*/-0.375000f, 0.726562f, -0.085938f, /*n:*/-0.143071f, 0.816919f, -0.558672f, /*t:*/0.023759f, 0.482455f, + /*v:*/0.375000f, 0.742188f, -0.062500f, /*n:*/0.184454f, 0.964995f, 0.186316f, /*t:*/0.607927f, 0.440765f, + /*v:*/0.476562f, 0.718750f, -0.101563f, /*n:*/0.298990f, 0.953581f, 0.035615f, /*t:*/0.610916f, 0.415799f, + /*v:*/0.375000f, 0.726562f, -0.085938f, /*n:*/0.143071f, 0.816919f, -0.558672f, /*t:*/0.613499f, 0.437898f, + /*v:*/0.476562f, 0.718750f, -0.101563f, /*n:*/0.298990f, 0.953581f, 0.035615f, /*t:*/0.610916f, 0.415799f, + /*v:*/0.460938f, 0.703125f, -0.117188f, /*n:*/-0.165288f, 0.775109f, -0.609790f, /*t:*/0.615675f, 0.416450f, + /*v:*/0.375000f, 0.726562f, -0.085938f, /*n:*/0.143071f, 0.816919f, -0.558672f, /*t:*/0.613499f, 0.437898f, + /*v:*/-0.546875f, 0.671875f, -0.210938f, /*n:*/0.192145f, 0.962523f, -0.191351f, /*t:*/0.010018f, 0.526171f, + /*v:*/-0.578125f, 0.679688f, -0.195313f, /*n:*/-0.294290f, 0.950224f, 0.102023f, /*t:*/0.001909f, 0.526125f, + /*v:*/-0.476562f, 0.718750f, -0.101563f, /*n:*/-0.298990f, 0.953581f, 0.035615f, /*t:*/0.007399f, 0.496127f, + /*v:*/-0.546875f, 0.671875f, -0.210938f, /*n:*/0.192145f, 0.962523f, -0.191351f, /*t:*/0.010018f, 0.526171f, + /*v:*/-0.476562f, 0.718750f, -0.101563f, /*n:*/-0.298990f, 0.953581f, 0.035615f, /*t:*/0.007399f, 0.496127f, + /*v:*/-0.460938f, 0.703125f, -0.117188f, /*n:*/0.165288f, 0.775109f, -0.609790f, /*t:*/0.013520f, 0.497710f, + /*v:*/0.476562f, 0.718750f, -0.101563f, /*n:*/0.298990f, 0.953581f, 0.035615f, /*t:*/0.610916f, 0.415799f, + /*v:*/0.578125f, 0.679688f, -0.195313f, /*n:*/0.294290f, 0.950224f, 0.102023f, /*t:*/0.626578f, 0.386503f, + /*v:*/0.546875f, 0.671875f, -0.210938f, /*n:*/-0.192145f, 0.962523f, -0.191351f, /*t:*/0.632176f, 0.391189f, + /*v:*/0.476562f, 0.718750f, -0.101563f, /*n:*/0.298990f, 0.953581f, 0.035615f, /*t:*/0.610916f, 0.415799f, + /*v:*/0.546875f, 0.671875f, -0.210938f, /*n:*/-0.192145f, 0.962523f, -0.191351f, /*t:*/0.632176f, 0.391189f, + /*v:*/0.460938f, 0.703125f, -0.117188f, /*n:*/-0.165288f, 0.775109f, -0.609790f, /*t:*/0.615675f, 0.416450f, + /*v:*/-0.554688f, 0.671875f, -0.281250f, /*n:*/0.422926f, 0.899716f, 0.107761f, /*t:*/0.015156f, 0.541902f, + /*v:*/-0.585938f, 0.687500f, -0.289063f, /*n:*/-0.177587f, 0.982208f, 0.060762f, /*t:*/0.008349f, 0.546898f, + /*v:*/-0.546875f, 0.671875f, -0.210938f, /*n:*/0.192145f, 0.962523f, -0.191351f, /*t:*/0.010018f, 0.526171f, + /*v:*/-0.585938f, 0.687500f, -0.289063f, /*n:*/-0.177587f, 0.982208f, 0.060762f, /*t:*/0.008349f, 0.546898f, + /*v:*/-0.578125f, 0.679688f, -0.195313f, /*n:*/-0.294290f, 0.950224f, 0.102023f, /*t:*/0.001909f, 0.526125f, + /*v:*/-0.546875f, 0.671875f, -0.210938f, /*n:*/0.192145f, 0.962523f, -0.191351f, /*t:*/0.010018f, 0.526171f, + /*v:*/0.578125f, 0.679688f, -0.195313f, /*n:*/0.294290f, 0.950224f, 0.102023f, /*t:*/0.282991f, 0.892542f, + /*v:*/0.585938f, 0.687500f, -0.289063f, /*n:*/0.177587f, 0.982208f, 0.060762f, /*t:*/0.274404f, 0.878777f, + /*v:*/0.546875f, 0.671875f, -0.210938f, /*n:*/-0.192145f, 0.962523f, -0.191351f, /*t:*/0.287463f, 0.885381f, + /*v:*/0.585938f, 0.687500f, -0.289063f, /*n:*/0.177587f, 0.982208f, 0.060762f, /*t:*/0.274404f, 0.878777f, + /*v:*/0.554688f, 0.671875f, -0.281250f, /*n:*/-0.422926f, 0.899716f, 0.107761f, /*t:*/0.281863f, 0.875739f, + /*v:*/0.546875f, 0.671875f, -0.210938f, /*n:*/-0.192145f, 0.962523f, -0.191351f, /*t:*/0.287463f, 0.885381f, + /*v:*/-0.531250f, 0.679688f, -0.335938f, /*n:*/0.142308f, 0.800165f, 0.582629f, /*t:*/0.023699f, 0.551174f, + /*v:*/-0.562500f, 0.695312f, -0.351563f, /*n:*/-0.294351f, 0.955657f, -0.004639f, /*t:*/0.017623f, 0.557829f, + /*v:*/-0.585938f, 0.687500f, -0.289063f, /*n:*/-0.177587f, 0.982208f, 0.060762f, /*t:*/0.008349f, 0.546898f, + /*v:*/-0.531250f, 0.679688f, -0.335938f, /*n:*/0.142308f, 0.800165f, 0.582629f, /*t:*/0.023699f, 0.551174f, + /*v:*/-0.585938f, 0.687500f, -0.289063f, /*n:*/-0.177587f, 0.982208f, 0.060762f, /*t:*/0.008349f, 0.546898f, + /*v:*/-0.554688f, 0.671875f, -0.281250f, /*n:*/0.422926f, 0.899716f, 0.107761f, /*t:*/0.015156f, 0.541902f, + /*v:*/0.585938f, 0.687500f, -0.289063f, /*n:*/0.177587f, 0.982208f, 0.060762f, /*t:*/0.274404f, 0.878777f, + /*v:*/0.562500f, 0.695312f, -0.351563f, /*n:*/0.294351f, 0.955657f, -0.004639f, /*t:*/0.271894f, 0.864670f, + /*v:*/0.531250f, 0.679688f, -0.335938f, /*n:*/-0.142308f, 0.800165f, 0.582629f, /*t:*/0.279863f, 0.862849f, + /*v:*/0.585938f, 0.687500f, -0.289063f, /*n:*/0.177587f, 0.982208f, 0.060762f, /*t:*/0.274404f, 0.878777f, + /*v:*/0.531250f, 0.679688f, -0.335938f, /*n:*/-0.142308f, 0.800165f, 0.582629f, /*t:*/0.279863f, 0.862849f, + /*v:*/0.554688f, 0.671875f, -0.281250f, /*n:*/-0.422926f, 0.899716f, 0.107761f, /*t:*/0.281863f, 0.875739f, + /*v:*/-0.414062f, 0.750000f, -0.390625f, /*n:*/0.274056f, 0.439100f, 0.855617f, /*t:*/0.978084f, 0.762893f, + /*v:*/-0.421875f, 0.773438f, -0.398438f, /*n:*/-0.088687f, 0.987884f, 0.127171f, /*t:*/0.972640f, 0.761945f, + /*v:*/-0.531250f, 0.679688f, -0.335938f, /*n:*/0.142308f, 0.800165f, 0.582629f, /*t:*/1.000000f, 0.738873f, + /*v:*/-0.421875f, 0.773438f, -0.398438f, /*n:*/-0.088687f, 0.987884f, 0.127171f, /*t:*/0.972640f, 0.761945f, + /*v:*/-0.562500f, 0.695312f, -0.351563f, /*n:*/-0.294351f, 0.955657f, -0.004639f, /*t:*/0.995075f, 0.731836f, + /*v:*/-0.531250f, 0.679688f, -0.335938f, /*n:*/0.142308f, 0.800165f, 0.582629f, /*t:*/1.000000f, 0.738873f, + /*v:*/0.562500f, 0.695312f, -0.351563f, /*n:*/0.294351f, 0.955657f, -0.004639f, /*t:*/0.271894f, 0.864670f, + /*v:*/0.421875f, 0.773438f, -0.398438f, /*n:*/0.088687f, 0.987884f, 0.127171f, /*t:*/0.272439f, 0.829190f, + /*v:*/0.531250f, 0.679688f, -0.335938f, /*n:*/-0.142308f, 0.800165f, 0.582629f, /*t:*/0.279863f, 0.862849f, + /*v:*/0.421875f, 0.773438f, -0.398438f, /*n:*/0.088687f, 0.987884f, 0.127171f, /*t:*/0.272439f, 0.829190f, + /*v:*/0.414062f, 0.750000f, -0.390625f, /*n:*/-0.274056f, 0.439100f, 0.855617f, /*t:*/0.278326f, 0.830532f, + /*v:*/0.531250f, 0.679688f, -0.335938f, /*n:*/-0.142308f, 0.800165f, 0.582629f, /*t:*/0.279863f, 0.862849f, + /*v:*/-0.335938f, 0.750000f, -0.406250f, /*n:*/-0.113315f, 0.942564f, 0.314188f, /*t:*/0.975231f, 0.777970f, + /*v:*/-0.335938f, 0.757812f, -0.429688f, /*n:*/-0.203619f, 0.973571f, -0.103183f, /*t:*/0.970400f, 0.776363f, + /*v:*/-0.414062f, 0.750000f, -0.390625f, /*n:*/0.274056f, 0.439100f, 0.855617f, /*t:*/0.978084f, 0.762893f, + /*v:*/-0.335938f, 0.757812f, -0.429688f, /*n:*/-0.203619f, 0.973571f, -0.103183f, /*t:*/0.970400f, 0.776363f, + /*v:*/-0.421875f, 0.773438f, -0.398438f, /*n:*/-0.088687f, 0.987884f, 0.127171f, /*t:*/0.972640f, 0.761945f, + /*v:*/-0.414062f, 0.750000f, -0.390625f, /*n:*/0.274056f, 0.439100f, 0.855617f, /*t:*/0.978084f, 0.762893f, + /*v:*/0.421875f, 0.773438f, -0.398438f, /*n:*/0.088687f, 0.987884f, 0.127171f, /*t:*/0.272439f, 0.829190f, + /*v:*/0.335938f, 0.757812f, -0.429688f, /*n:*/0.203619f, 0.973571f, -0.103183f, /*t:*/0.284411f, 0.810963f, + /*v:*/0.414062f, 0.750000f, -0.390625f, /*n:*/-0.274056f, 0.439100f, 0.855617f, /*t:*/0.278326f, 0.830532f, + /*v:*/0.335938f, 0.757812f, -0.429688f, /*n:*/0.203619f, 0.973571f, -0.103183f, /*t:*/0.284411f, 0.810963f, + /*v:*/0.335938f, 0.750000f, -0.406250f, /*n:*/0.113315f, 0.942564f, 0.314188f, /*t:*/0.287398f, 0.815087f, + /*v:*/0.414062f, 0.750000f, -0.390625f, /*n:*/-0.274056f, 0.439100f, 0.855617f, /*t:*/0.278326f, 0.830532f, + /*v:*/-0.281250f, 0.765625f, -0.398438f, /*n:*/-0.174383f, 0.947386f, 0.268319f, /*t:*/0.973010f, 0.791105f, + /*v:*/-0.273438f, 0.773438f, -0.421875f, /*n:*/-0.131504f, 0.989166f, -0.064974f, /*t:*/0.968118f, 0.791144f, + /*v:*/-0.335938f, 0.757812f, -0.429688f, /*n:*/-0.203619f, 0.973571f, -0.103183f, /*t:*/0.970400f, 0.776363f, + /*v:*/-0.281250f, 0.765625f, -0.398438f, /*n:*/-0.174383f, 0.947386f, 0.268319f, /*t:*/0.973010f, 0.791105f, + /*v:*/-0.335938f, 0.757812f, -0.429688f, /*n:*/-0.203619f, 0.973571f, -0.103183f, /*t:*/0.970400f, 0.776363f, + /*v:*/-0.335938f, 0.750000f, -0.406250f, /*n:*/-0.113315f, 0.942564f, 0.314188f, /*t:*/0.975231f, 0.777970f, + /*v:*/0.335938f, 0.757812f, -0.429688f, /*n:*/0.203619f, 0.973571f, -0.103183f, /*t:*/0.693528f, 0.433212f, + /*v:*/0.273438f, 0.773438f, -0.421875f, /*n:*/0.131504f, 0.989166f, -0.064974f, /*t:*/0.695357f, 0.447952f, + /*v:*/0.281250f, 0.765625f, -0.398438f, /*n:*/0.174383f, 0.947386f, 0.268319f, /*t:*/0.689673f, 0.446590f, + /*v:*/0.335938f, 0.757812f, -0.429688f, /*n:*/0.203619f, 0.973571f, -0.103183f, /*t:*/0.693528f, 0.433212f, + /*v:*/0.281250f, 0.765625f, -0.398438f, /*n:*/0.174383f, 0.947386f, 0.268319f, /*t:*/0.689673f, 0.446590f, + /*v:*/0.335938f, 0.750000f, -0.406250f, /*n:*/0.113315f, 0.942564f, 0.314188f, /*t:*/0.688325f, 0.433426f, + /*v:*/-0.234375f, 0.757812f, -0.359375f, /*n:*/-0.463424f, 0.793237f, 0.394910f, /*t:*/0.979724f, 0.803967f, + /*v:*/-0.210938f, 0.781250f, -0.375000f, /*n:*/-0.182958f, 0.977691f, 0.102878f, /*t:*/0.972915f, 0.808912f, + /*v:*/-0.273438f, 0.773438f, -0.421875f, /*n:*/-0.131504f, 0.989166f, -0.064974f, /*t:*/0.968118f, 0.791144f, + /*v:*/-0.234375f, 0.757812f, -0.359375f, /*n:*/-0.463424f, 0.793237f, 0.394910f, /*t:*/0.979724f, 0.803967f, + /*v:*/-0.273438f, 0.773438f, -0.421875f, /*n:*/-0.131504f, 0.989166f, -0.064974f, /*t:*/0.968118f, 0.791144f, + /*v:*/-0.281250f, 0.765625f, -0.398438f, /*n:*/-0.174383f, 0.947386f, 0.268319f, /*t:*/0.973010f, 0.791105f, + /*v:*/0.273438f, 0.773438f, -0.421875f, /*n:*/0.131504f, 0.989166f, -0.064974f, /*t:*/0.695357f, 0.447952f, + /*v:*/0.210938f, 0.781250f, -0.375000f, /*n:*/0.182958f, 0.977691f, 0.102878f, /*t:*/0.688432f, 0.463637f, + /*v:*/0.234375f, 0.757812f, -0.359375f, /*n:*/0.463424f, 0.793237f, 0.394910f, /*t:*/0.683807f, 0.456989f, + /*v:*/0.273438f, 0.773438f, -0.421875f, /*n:*/0.131504f, 0.989166f, -0.064974f, /*t:*/0.695357f, 0.447952f, + /*v:*/0.234375f, 0.757812f, -0.359375f, /*n:*/0.463424f, 0.793237f, 0.394910f, /*t:*/0.683807f, 0.456989f, + /*v:*/0.281250f, 0.765625f, -0.398438f, /*n:*/0.174383f, 0.947386f, 0.268319f, /*t:*/0.689673f, 0.446590f, + /*v:*/-0.210938f, 0.781250f, -0.375000f, /*n:*/-0.182958f, 0.977691f, 0.102878f, /*t:*/0.714421f, 0.548721f, + /*v:*/-0.164062f, 0.773438f, -0.414063f, /*n:*/-0.367840f, 0.885556f, 0.283608f, /*t:*/0.720533f, 0.536554f, + /*v:*/-0.250000f, 0.757812f, -0.468750f, /*n:*/-0.258156f, 0.957762f, 0.126499f, /*t:*/0.738500f, 0.549555f, + /*v:*/-0.210938f, 0.781250f, -0.375000f, /*n:*/-0.182958f, 0.977691f, 0.102878f, /*t:*/0.714421f, 0.548721f, + /*v:*/-0.250000f, 0.757812f, -0.468750f, /*n:*/-0.258156f, 0.957762f, 0.126499f, /*t:*/0.738500f, 0.549555f, + /*v:*/-0.273438f, 0.773438f, -0.421875f, /*n:*/-0.131504f, 0.989166f, -0.064974f, /*t:*/0.729046f, 0.558247f, + /*v:*/0.250000f, 0.757812f, -0.468750f, /*n:*/0.258156f, 0.957762f, 0.126499f, /*t:*/0.707699f, 0.448715f, + /*v:*/0.164062f, 0.773438f, -0.414063f, /*n:*/0.367840f, 0.885556f, 0.283608f, /*t:*/0.700320f, 0.470377f, + /*v:*/0.210938f, 0.781250f, -0.375000f, /*n:*/0.182958f, 0.977691f, 0.102878f, /*t:*/0.688432f, 0.463637f, + /*v:*/0.250000f, 0.757812f, -0.468750f, /*n:*/0.258156f, 0.957762f, 0.126499f, /*t:*/0.707699f, 0.448715f, + /*v:*/0.210938f, 0.781250f, -0.375000f, /*n:*/0.182958f, 0.977691f, 0.102878f, /*t:*/0.688432f, 0.463637f, + /*v:*/0.273438f, 0.773438f, -0.421875f, /*n:*/0.131504f, 0.989166f, -0.064974f, /*t:*/0.695357f, 0.447952f, + /*v:*/-0.273438f, 0.773438f, -0.421875f, /*n:*/-0.131504f, 0.989166f, -0.064974f, /*t:*/0.729046f, 0.558247f, + /*v:*/-0.250000f, 0.757812f, -0.468750f, /*n:*/-0.258156f, 0.957762f, 0.126499f, /*t:*/0.738500f, 0.549555f, + /*v:*/-0.328125f, 0.742188f, -0.476563f, /*n:*/-0.149022f, 0.976714f, 0.154149f, /*t:*/0.745334f, 0.563177f, + /*v:*/-0.273438f, 0.773438f, -0.421875f, /*n:*/-0.131504f, 0.989166f, -0.064974f, /*t:*/0.729046f, 0.558247f, + /*v:*/-0.328125f, 0.742188f, -0.476563f, /*n:*/-0.149022f, 0.976714f, 0.154149f, /*t:*/0.745334f, 0.563177f, + /*v:*/-0.335938f, 0.757812f, -0.429688f, /*n:*/-0.203619f, 0.973571f, -0.103183f, /*t:*/0.734917f, 0.568717f, + /*v:*/0.328125f, 0.742188f, -0.476563f, /*n:*/0.149022f, 0.976714f, 0.154149f, /*t:*/0.704907f, 0.430824f, + /*v:*/0.250000f, 0.757812f, -0.468750f, /*n:*/0.258156f, 0.957762f, 0.126499f, /*t:*/0.707699f, 0.448715f, + /*v:*/0.273438f, 0.773438f, -0.421875f, /*n:*/0.131504f, 0.989166f, -0.064974f, /*t:*/0.695357f, 0.447952f, + /*v:*/0.328125f, 0.742188f, -0.476563f, /*n:*/0.149022f, 0.976714f, 0.154149f, /*t:*/0.704907f, 0.430824f, + /*v:*/0.273438f, 0.773438f, -0.421875f, /*n:*/0.131504f, 0.989166f, -0.064974f, /*t:*/0.695357f, 0.447952f, + /*v:*/0.335938f, 0.757812f, -0.429688f, /*n:*/0.203619f, 0.973571f, -0.103183f, /*t:*/0.693528f, 0.433212f, + /*v:*/-0.335938f, 0.757812f, -0.429688f, /*n:*/-0.203619f, 0.973571f, -0.103183f, /*t:*/0.015198f, 0.814940f, + /*v:*/-0.328125f, 0.742188f, -0.476563f, /*n:*/-0.149022f, 0.976714f, 0.154149f, /*t:*/0.007313f, 0.822239f, + /*v:*/-0.429688f, 0.718750f, -0.437500f, /*n:*/-0.219001f, 0.975005f, -0.037141f, /*t:*/0.008626f, 0.798687f, + /*v:*/-0.335938f, 0.757812f, -0.429688f, /*n:*/-0.203619f, 0.973571f, -0.103183f, /*t:*/0.015198f, 0.814940f, + /*v:*/-0.429688f, 0.718750f, -0.437500f, /*n:*/-0.219001f, 0.975005f, -0.037141f, /*t:*/0.008626f, 0.798687f, + /*v:*/-0.421875f, 0.773438f, -0.398438f, /*n:*/-0.088687f, 0.987884f, 0.127171f, /*t:*/0.023789f, 0.798385f, + /*v:*/0.429688f, 0.718750f, -0.437500f, /*n:*/0.219001f, 0.975005f, -0.037141f, /*t:*/0.690142f, 0.409517f, + /*v:*/0.328125f, 0.742188f, -0.476563f, /*n:*/0.149022f, 0.976714f, 0.154149f, /*t:*/0.704907f, 0.430824f, + /*v:*/0.335938f, 0.757812f, -0.429688f, /*n:*/0.203619f, 0.973571f, -0.103183f, /*t:*/0.693528f, 0.433212f, + /*v:*/0.429688f, 0.718750f, -0.437500f, /*n:*/0.219001f, 0.975005f, -0.037141f, /*t:*/0.690142f, 0.409517f, + /*v:*/0.335938f, 0.757812f, -0.429688f, /*n:*/0.203619f, 0.973571f, -0.103183f, /*t:*/0.693528f, 0.433212f, + /*v:*/0.421875f, 0.773438f, -0.398438f, /*n:*/0.088687f, 0.987884f, 0.127171f, /*t:*/0.680887f, 0.419112f, + /*v:*/-0.421875f, 0.773438f, -0.398438f, /*n:*/-0.088687f, 0.987884f, 0.127171f, /*t:*/0.023789f, 0.798385f, + /*v:*/-0.429688f, 0.718750f, -0.437500f, /*n:*/-0.219001f, 0.975005f, -0.037141f, /*t:*/0.008626f, 0.798687f, + /*v:*/-0.562500f, 0.695312f, -0.351563f, /*n:*/-0.294351f, 0.955657f, -0.004639f, /*t:*/0.015095f, 0.762952f, + /*v:*/-0.429688f, 0.718750f, -0.437500f, /*n:*/-0.219001f, 0.975005f, -0.037141f, /*t:*/0.008626f, 0.798687f, + /*v:*/-0.601562f, 0.664062f, -0.375000f, /*n:*/-0.225410f, 0.904996f, 0.360759f, /*t:*/0.007275f, 0.758099f, + /*v:*/-0.562500f, 0.695312f, -0.351563f, /*n:*/-0.294351f, 0.955657f, -0.004639f, /*t:*/0.015095f, 0.762952f, + /*v:*/0.601562f, 0.664062f, -0.375000f, /*n:*/0.225410f, 0.904996f, 0.360759f, /*t:*/0.666212f, 0.371591f, + /*v:*/0.429688f, 0.718750f, -0.437500f, /*n:*/0.219001f, 0.975005f, -0.037141f, /*t:*/0.690142f, 0.409517f, + /*v:*/0.562500f, 0.695312f, -0.351563f, /*n:*/0.294351f, 0.955657f, -0.004639f, /*t:*/0.662801f, 0.384104f, + /*v:*/0.429688f, 0.718750f, -0.437500f, /*n:*/0.219001f, 0.975005f, -0.037141f, /*t:*/0.690142f, 0.409517f, + /*v:*/0.421875f, 0.773438f, -0.398438f, /*n:*/0.088687f, 0.987884f, 0.127171f, /*t:*/0.680887f, 0.419112f, + /*v:*/0.562500f, 0.695312f, -0.351563f, /*n:*/0.294351f, 0.955657f, -0.004639f, /*t:*/0.662801f, 0.384104f, + /*v:*/-0.562500f, 0.695312f, -0.351563f, /*n:*/-0.294351f, 0.955657f, -0.004639f, /*t:*/0.015095f, 0.762952f, + /*v:*/-0.601562f, 0.664062f, -0.375000f, /*n:*/-0.225410f, 0.904996f, 0.360759f, /*t:*/0.007275f, 0.758099f, + /*v:*/-0.585938f, 0.687500f, -0.289063f, /*n:*/-0.177587f, 0.982208f, 0.060762f, /*t:*/0.019785f, 0.748770f, + /*v:*/-0.601562f, 0.664062f, -0.375000f, /*n:*/-0.225410f, 0.904996f, 0.360759f, /*t:*/0.007275f, 0.758099f, + /*v:*/-0.640625f, 0.648438f, -0.296875f, /*n:*/-0.358806f, 0.925748f, 0.119175f, /*t:*/0.012143f, 0.738392f, + /*v:*/-0.585938f, 0.687500f, -0.289063f, /*n:*/-0.177587f, 0.982208f, 0.060762f, /*t:*/0.019785f, 0.748770f, + /*v:*/0.640625f, 0.648438f, -0.296875f, /*n:*/0.358806f, 0.925748f, 0.119175f, /*t:*/0.646298f, 0.365604f, + /*v:*/0.601562f, 0.664062f, -0.375000f, /*n:*/0.225410f, 0.904996f, 0.360759f, /*t:*/0.666212f, 0.371591f, + /*v:*/0.585938f, 0.687500f, -0.289063f, /*n:*/0.177587f, 0.982208f, 0.060762f, /*t:*/0.647277f, 0.381420f, + /*v:*/0.601562f, 0.664062f, -0.375000f, /*n:*/0.225410f, 0.904996f, 0.360759f, /*t:*/0.666212f, 0.371591f, + /*v:*/0.562500f, 0.695312f, -0.351563f, /*n:*/0.294351f, 0.955657f, -0.004639f, /*t:*/0.662801f, 0.384104f, + /*v:*/0.585938f, 0.687500f, -0.289063f, /*n:*/0.177587f, 0.982208f, 0.060762f, /*t:*/0.647277f, 0.381420f, + /*v:*/-0.585938f, 0.687500f, -0.289063f, /*n:*/-0.177587f, 0.982208f, 0.060762f, /*t:*/0.663406f, 0.668150f, + /*v:*/-0.640625f, 0.648438f, -0.296875f, /*n:*/-0.358806f, 0.925748f, 0.119175f, /*t:*/0.672714f, 0.655194f, + /*v:*/-0.625000f, 0.648438f, -0.187500f, /*n:*/-0.460219f, 0.872280f, 0.165105f, /*t:*/0.685496f, 0.670942f, + /*v:*/-0.585938f, 0.687500f, -0.289063f, /*n:*/-0.177587f, 0.982208f, 0.060762f, /*t:*/0.663406f, 0.668150f, + /*v:*/-0.625000f, 0.648438f, -0.187500f, /*n:*/-0.460219f, 0.872280f, 0.165105f, /*t:*/0.685496f, 0.670942f, + /*v:*/-0.578125f, 0.679688f, -0.195313f, /*n:*/-0.294290f, 0.950224f, 0.102023f, /*t:*/0.676156f, 0.680335f, + /*v:*/0.625000f, 0.648438f, -0.187500f, /*n:*/0.460219f, 0.872280f, 0.165105f, /*t:*/0.622406f, 0.373878f, + /*v:*/0.640625f, 0.648438f, -0.296875f, /*n:*/0.358806f, 0.925748f, 0.119175f, /*t:*/0.646298f, 0.365604f, + /*v:*/0.585938f, 0.687500f, -0.289063f, /*n:*/0.177587f, 0.982208f, 0.060762f, /*t:*/0.647277f, 0.381420f, + /*v:*/0.625000f, 0.648438f, -0.187500f, /*n:*/0.460219f, 0.872280f, 0.165105f, /*t:*/0.622406f, 0.373878f, + /*v:*/0.585938f, 0.687500f, -0.289063f, /*n:*/0.177587f, 0.982208f, 0.060762f, /*t:*/0.647277f, 0.381420f, + /*v:*/0.578125f, 0.679688f, -0.195313f, /*n:*/0.294290f, 0.950224f, 0.102023f, /*t:*/0.626578f, 0.386503f, + /*v:*/-0.578125f, 0.679688f, -0.195313f, /*n:*/-0.294290f, 0.950224f, 0.102023f, /*t:*/0.676156f, 0.680335f, + /*v:*/-0.625000f, 0.648438f, -0.187500f, /*n:*/-0.460219f, 0.872280f, 0.165105f, /*t:*/0.685496f, 0.670942f, + /*v:*/-0.492188f, 0.671875f, -0.062500f, /*n:*/-0.427900f, 0.815577f, 0.389508f, /*t:*/0.689939f, 0.713022f, + /*v:*/-0.578125f, 0.679688f, -0.195313f, /*n:*/-0.294290f, 0.950224f, 0.102023f, /*t:*/0.676156f, 0.680335f, + /*v:*/-0.492188f, 0.671875f, -0.062500f, /*n:*/-0.427900f, 0.815577f, 0.389508f, /*t:*/0.689939f, 0.713022f, + /*v:*/-0.476562f, 0.718750f, -0.101563f, /*n:*/-0.298990f, 0.953581f, 0.035615f, /*t:*/0.675206f, 0.712760f, + /*v:*/0.492188f, 0.671875f, -0.062500f, /*n:*/0.427900f, 0.815577f, 0.389508f, /*t:*/0.601814f, 0.409172f, + /*v:*/0.625000f, 0.648438f, -0.187500f, /*n:*/0.460219f, 0.872280f, 0.165105f, /*t:*/0.622406f, 0.373878f, + /*v:*/0.578125f, 0.679688f, -0.195313f, /*n:*/0.294290f, 0.950224f, 0.102023f, /*t:*/0.626578f, 0.386503f, + /*v:*/0.492188f, 0.671875f, -0.062500f, /*n:*/0.427900f, 0.815577f, 0.389508f, /*t:*/0.601814f, 0.409172f, + /*v:*/0.578125f, 0.679688f, -0.195313f, /*n:*/0.294290f, 0.950224f, 0.102023f, /*t:*/0.626578f, 0.386503f, + /*v:*/0.476562f, 0.718750f, -0.101563f, /*n:*/0.298990f, 0.953581f, 0.035615f, /*t:*/0.610916f, 0.415799f, + /*v:*/-0.476562f, 0.718750f, -0.101563f, /*n:*/-0.298990f, 0.953581f, 0.035615f, /*t:*/0.675206f, 0.712760f, + /*v:*/-0.492188f, 0.671875f, -0.062500f, /*n:*/-0.427900f, 0.815577f, 0.389508f, /*t:*/0.689939f, 0.713022f, + /*v:*/-0.375000f, 0.703125f, -0.015625f, /*n:*/-0.158940f, 0.851924f, 0.498917f, /*t:*/0.683946f, 0.743107f, + /*v:*/-0.476562f, 0.718750f, -0.101563f, /*n:*/-0.298990f, 0.953581f, 0.035615f, /*t:*/0.675206f, 0.712760f, + /*v:*/-0.375000f, 0.703125f, -0.015625f, /*n:*/-0.158940f, 0.851924f, 0.498917f, /*t:*/0.683946f, 0.743107f, + /*v:*/-0.375000f, 0.742188f, -0.062500f, /*n:*/-0.184454f, 0.964995f, 0.186316f, /*t:*/0.670529f, 0.738576f, + /*v:*/0.375000f, 0.703125f, -0.015625f, /*n:*/0.158940f, 0.851924f, 0.498917f, /*t:*/0.597890f, 0.438539f, + /*v:*/0.492188f, 0.671875f, -0.062500f, /*n:*/0.427900f, 0.815577f, 0.389508f, /*t:*/0.601814f, 0.409172f, + /*v:*/0.476562f, 0.718750f, -0.101563f, /*n:*/0.298990f, 0.953581f, 0.035615f, /*t:*/0.610916f, 0.415799f, + /*v:*/0.375000f, 0.703125f, -0.015625f, /*n:*/0.158940f, 0.851924f, 0.498917f, /*t:*/0.597890f, 0.438539f, + /*v:*/0.476562f, 0.718750f, -0.101563f, /*n:*/0.298990f, 0.953581f, 0.035615f, /*t:*/0.610916f, 0.415799f, + /*v:*/0.375000f, 0.742188f, -0.062500f, /*n:*/0.184454f, 0.964995f, 0.186316f, /*t:*/0.607927f, 0.440765f, + /*v:*/-0.375000f, 0.742188f, -0.062500f, /*n:*/-0.184454f, 0.964995f, 0.186316f, /*t:*/0.670529f, 0.738576f, + /*v:*/-0.375000f, 0.703125f, -0.015625f, /*n:*/-0.158940f, 0.851924f, 0.498917f, /*t:*/0.683946f, 0.743107f, + /*v:*/-0.203125f, 0.742188f, -0.093750f, /*n:*/0.128178f, 0.947752f, 0.292001f, /*t:*/0.658289f, 0.770242f, + /*v:*/-0.375000f, 0.742188f, -0.062500f, /*n:*/-0.184454f, 0.964995f, 0.186316f, /*t:*/0.670529f, 0.738576f, + /*v:*/-0.203125f, 0.742188f, -0.093750f, /*n:*/0.128178f, 0.947752f, 0.292001f, /*t:*/0.658289f, 0.770242f, + /*v:*/-0.226562f, 0.781250f, -0.109375f, /*n:*/0.031709f, 0.975005f, 0.219794f, /*t:*/0.649883f, 0.764487f, + /*v:*/0.203125f, 0.742188f, -0.093750f, /*n:*/-0.128178f, 0.947752f, 0.292001f, /*t:*/0.020824f, 0.604770f, + /*v:*/0.375000f, 0.703125f, -0.015625f, /*n:*/0.158940f, 0.851924f, 0.498917f, /*t:*/0.012599f, 0.648272f, + /*v:*/0.375000f, 0.742188f, -0.062500f, /*n:*/0.184454f, 0.964995f, 0.186316f, /*t:*/0.001909f, 0.638984f, + /*v:*/0.203125f, 0.742188f, -0.093750f, /*n:*/-0.128178f, 0.947752f, 0.292001f, /*t:*/0.020824f, 0.604770f, + /*v:*/0.375000f, 0.742188f, -0.062500f, /*n:*/0.184454f, 0.964995f, 0.186316f, /*t:*/0.001909f, 0.638984f, + /*v:*/0.226562f, 0.781250f, -0.109375f, /*n:*/-0.031709f, 0.975005f, 0.219794f, /*t:*/0.009470f, 0.604280f, + /*v:*/-0.226562f, 0.781250f, -0.109375f, /*n:*/0.031709f, 0.975005f, 0.219794f, /*t:*/0.655023f, 0.564315f, + /*v:*/-0.203125f, 0.742188f, -0.093750f, /*n:*/0.128178f, 0.947752f, 0.292001f, /*t:*/0.650643f, 0.555898f, + /*v:*/-0.187500f, 0.773438f, -0.156250f, /*n:*/0.010102f, 0.997467f, 0.069979f, /*t:*/0.663391f, 0.553357f, + /*v:*/-0.203125f, 0.742188f, -0.093750f, /*n:*/0.128178f, 0.947752f, 0.292001f, /*t:*/0.650643f, 0.555898f, + /*v:*/-0.164062f, 0.750000f, -0.140625f, /*n:*/0.239296f, 0.923032f, 0.301187f, /*t:*/0.658765f, 0.546709f, + /*v:*/-0.187500f, 0.773438f, -0.156250f, /*n:*/0.010102f, 0.997467f, 0.069979f, /*t:*/0.663391f, 0.553357f, + /*v:*/0.164062f, 0.750000f, -0.140625f, /*n:*/-0.239296f, 0.923032f, 0.301187f, /*t:*/0.020827f, 0.590483f, + /*v:*/0.203125f, 0.742188f, -0.093750f, /*n:*/-0.128178f, 0.947752f, 0.292001f, /*t:*/0.020824f, 0.604770f, + /*v:*/0.187500f, 0.773438f, -0.156250f, /*n:*/-0.010102f, 0.997467f, 0.069979f, /*t:*/0.012418f, 0.590837f, + /*v:*/0.203125f, 0.742188f, -0.093750f, /*n:*/-0.128178f, 0.947752f, 0.292001f, /*t:*/0.020824f, 0.604770f, + /*v:*/0.226562f, 0.781250f, -0.109375f, /*n:*/-0.031709f, 0.975005f, 0.219794f, /*t:*/0.009470f, 0.604280f, + /*v:*/0.187500f, 0.773438f, -0.156250f, /*n:*/-0.010102f, 0.997467f, 0.069979f, /*t:*/0.012418f, 0.590837f, + /*v:*/-0.179688f, 0.781250f, -0.296875f, /*n:*/-0.293405f, 0.954070f, 0.060152f, /*t:*/0.694743f, 0.546078f, + /*v:*/-0.125000f, 0.765625f, -0.304688f, /*n:*/-0.031587f, 0.983459f, 0.178167f, /*t:*/0.693395f, 0.532914f, + /*v:*/-0.210938f, 0.781250f, -0.375000f, /*n:*/-0.182958f, 0.977691f, 0.102878f, /*t:*/0.714421f, 0.548721f, + /*v:*/-0.125000f, 0.765625f, -0.304688f, /*n:*/-0.031587f, 0.983459f, 0.178167f, /*t:*/0.693395f, 0.532914f, + /*v:*/-0.164062f, 0.773438f, -0.414063f, /*n:*/-0.367840f, 0.885556f, 0.283608f, /*t:*/0.720533f, 0.536554f, + /*v:*/-0.210938f, 0.781250f, -0.375000f, /*n:*/-0.182958f, 0.977691f, 0.102878f, /*t:*/0.714421f, 0.548721f, + /*v:*/0.164062f, 0.773438f, -0.414063f, /*n:*/0.367840f, 0.885556f, 0.283608f, /*t:*/0.700320f, 0.470377f, + /*v:*/0.125000f, 0.765625f, -0.304688f, /*n:*/0.031587f, 0.983459f, 0.178167f, /*t:*/0.677994f, 0.482494f, + /*v:*/0.210938f, 0.781250f, -0.375000f, /*n:*/0.182958f, 0.977691f, 0.102878f, /*t:*/0.688432f, 0.463637f, + /*v:*/0.125000f, 0.765625f, -0.304688f, /*n:*/0.031587f, 0.983459f, 0.178167f, /*t:*/0.677994f, 0.482494f, + /*v:*/0.179688f, 0.781250f, -0.296875f, /*n:*/0.293405f, 0.954070f, 0.060152f, /*t:*/0.672604f, 0.473599f, + /*v:*/0.210938f, 0.781250f, -0.375000f, /*n:*/0.182958f, 0.977691f, 0.102878f, /*t:*/0.688432f, 0.463637f, + /*v:*/-0.171875f, 0.781250f, -0.218750f, /*n:*/-0.158055f, 0.983825f, 0.084231f, /*t:*/0.676508f, 0.548162f, + /*v:*/-0.132812f, 0.757812f, -0.210938f, /*n:*/0.200568f, 0.970306f, 0.134953f, /*t:*/0.672695f, 0.537997f, + /*v:*/-0.125000f, 0.765625f, -0.304688f, /*n:*/-0.031587f, 0.983459f, 0.178167f, /*t:*/0.693395f, 0.532914f, + /*v:*/-0.171875f, 0.781250f, -0.218750f, /*n:*/-0.158055f, 0.983825f, 0.084231f, /*t:*/0.676508f, 0.548162f, + /*v:*/-0.125000f, 0.765625f, -0.304688f, /*n:*/-0.031587f, 0.983459f, 0.178167f, /*t:*/0.693395f, 0.532914f, + /*v:*/-0.179688f, 0.781250f, -0.296875f, /*n:*/-0.293405f, 0.954070f, 0.060152f, /*t:*/0.694743f, 0.546078f, + /*v:*/0.125000f, 0.765625f, -0.304688f, /*n:*/0.031587f, 0.983459f, 0.178167f, /*t:*/0.011039f, 0.557829f, + /*v:*/0.132812f, 0.757812f, -0.210938f, /*n:*/-0.200568f, 0.970306f, 0.134953f, /*t:*/0.018206f, 0.573944f, + /*v:*/0.171875f, 0.781250f, -0.218750f, /*n:*/0.158055f, 0.983825f, 0.084231f, /*t:*/0.008431f, 0.578170f, + /*v:*/0.125000f, 0.765625f, -0.304688f, /*n:*/0.031587f, 0.983459f, 0.178167f, /*t:*/0.011039f, 0.557829f, + /*v:*/0.171875f, 0.781250f, -0.218750f, /*n:*/0.158055f, 0.983825f, 0.084231f, /*t:*/0.008431f, 0.578170f, + /*v:*/0.179688f, 0.781250f, -0.296875f, /*n:*/0.293405f, 0.954070f, 0.060152f, /*t:*/0.001925f, 0.567545f, + /*v:*/-0.187500f, 0.773438f, -0.156250f, /*n:*/0.010102f, 0.997467f, 0.069979f, /*t:*/0.663391f, 0.553357f, + /*v:*/-0.164062f, 0.750000f, -0.140625f, /*n:*/0.239296f, 0.923032f, 0.301187f, /*t:*/0.658765f, 0.546709f, + /*v:*/-0.132812f, 0.757812f, -0.210938f, /*n:*/0.200568f, 0.970306f, 0.134953f, /*t:*/0.672695f, 0.537997f, + /*v:*/-0.187500f, 0.773438f, -0.156250f, /*n:*/0.010102f, 0.997467f, 0.069979f, /*t:*/0.663391f, 0.553357f, + /*v:*/-0.132812f, 0.757812f, -0.210938f, /*n:*/0.200568f, 0.970306f, 0.134953f, /*t:*/0.672695f, 0.537997f, + /*v:*/-0.171875f, 0.781250f, -0.218750f, /*n:*/-0.158055f, 0.983825f, 0.084231f, /*t:*/0.676508f, 0.548162f, + /*v:*/0.132812f, 0.757812f, -0.210938f, /*n:*/-0.200568f, 0.970306f, 0.134953f, /*t:*/0.018206f, 0.573944f, + /*v:*/0.164062f, 0.750000f, -0.140625f, /*n:*/-0.239296f, 0.923032f, 0.301187f, /*t:*/0.020827f, 0.590483f, + /*v:*/0.187500f, 0.773438f, -0.156250f, /*n:*/-0.010102f, 0.997467f, 0.069979f, /*t:*/0.012418f, 0.590837f, + /*v:*/0.132812f, 0.757812f, -0.210938f, /*n:*/-0.200568f, 0.970306f, 0.134953f, /*t:*/0.018206f, 0.573944f, + /*v:*/0.187500f, 0.773438f, -0.156250f, /*n:*/-0.010102f, 0.997467f, 0.069979f, /*t:*/0.012418f, 0.590837f, + /*v:*/0.171875f, 0.781250f, -0.218750f, /*n:*/0.158055f, 0.983825f, 0.084231f, /*t:*/0.008431f, 0.578170f, + /*v:*/-0.046875f, 0.632813f, 0.851562f, /*n:*/0.295846f, 0.828761f, -0.474960f, /*t:*/0.764798f, 0.291151f, + /*v:*/0.000000f, 0.632813f, 0.859375f, /*n:*/0.000000f, 0.845851f, -0.533403f, /*t:*/0.763005f, 0.281095f, + /*v:*/0.000000f, 0.656250f, 0.781250f, /*n:*/0.000000f, 0.715171f, 0.698935f, /*t:*/0.779920f, 0.285230f, + /*v:*/-0.046875f, 0.632813f, 0.851562f, /*n:*/0.295846f, 0.828761f, -0.474960f, /*t:*/0.764798f, 0.291151f, + /*v:*/0.000000f, 0.656250f, 0.781250f, /*n:*/0.000000f, 0.715171f, 0.698935f, /*t:*/0.779920f, 0.285230f, + /*v:*/-0.093750f, 0.664063f, 0.750000f, /*n:*/0.517655f, 0.486007f, 0.704123f, /*t:*/0.786739f, 0.306492f, + /*v:*/0.000000f, 0.656250f, 0.781250f, /*n:*/0.000000f, 0.715171f, 0.698935f, /*t:*/0.779920f, 0.285230f, + /*v:*/0.000000f, 0.632813f, 0.859375f, /*n:*/0.000000f, 0.845851f, -0.533403f, /*t:*/0.763005f, 0.281095f, + /*v:*/0.046875f, 0.632813f, 0.851562f, /*n:*/-0.295846f, 0.828761f, -0.474960f, /*t:*/0.764821f, 0.271381f, + /*v:*/0.000000f, 0.656250f, 0.781250f, /*n:*/0.000000f, 0.715171f, 0.698935f, /*t:*/0.779920f, 0.285230f, + /*v:*/0.046875f, 0.632813f, 0.851562f, /*n:*/-0.295846f, 0.828761f, -0.474960f, /*t:*/0.764821f, 0.271381f, + /*v:*/0.093750f, 0.664063f, 0.750000f, /*n:*/-0.517655f, 0.486007f, 0.704123f, /*t:*/0.786785f, 0.266952f, + /*v:*/0.000000f, 0.656250f, 0.781250f, /*n:*/0.000000f, 0.715171f, 0.698935f, /*t:*/0.879790f, 0.089847f, + /*v:*/0.000000f, 0.718750f, 0.773437f, /*n:*/0.000000f, 0.273232f, 0.961943f, /*t:*/0.868193f, 0.096057f, + /*v:*/-0.093750f, 0.664063f, 0.750000f, /*n:*/0.517655f, 0.486007f, 0.704123f, /*t:*/0.869055f, 0.069894f, + /*v:*/0.000000f, 0.718750f, 0.773437f, /*n:*/0.000000f, 0.273232f, 0.961943f, /*t:*/0.868193f, 0.096057f, + /*v:*/-0.093750f, 0.726563f, 0.742187f, /*n:*/0.136845f, 0.838588f, 0.527268f, /*t:*/0.857458f, 0.076105f, + /*v:*/-0.093750f, 0.664063f, 0.750000f, /*n:*/0.517655f, 0.486007f, 0.704123f, /*t:*/0.869055f, 0.069894f, + /*v:*/0.093750f, 0.726563f, 0.742187f, /*n:*/-0.136845f, 0.838588f, 0.527268f, /*t:*/0.332808f, 0.960495f, + /*v:*/0.000000f, 0.718750f, 0.773437f, /*n:*/0.000000f, 0.273232f, 0.961943f, /*t:*/0.332797f, 0.939302f, + /*v:*/0.093750f, 0.664063f, 0.750000f, /*n:*/-0.517655f, 0.486007f, 0.704123f, /*t:*/0.346569f, 0.956650f, + /*v:*/0.000000f, 0.718750f, 0.773437f, /*n:*/0.000000f, 0.273232f, 0.961943f, /*t:*/0.332797f, 0.939302f, + /*v:*/0.000000f, 0.656250f, 0.781250f, /*n:*/0.000000f, 0.715171f, 0.698935f, /*t:*/0.346557f, 0.935458f, + /*v:*/0.093750f, 0.664063f, 0.750000f, /*n:*/-0.517655f, 0.486007f, 0.704123f, /*t:*/0.346569f, 0.956650f, + /*v:*/-0.093750f, 0.664063f, 0.750000f, /*n:*/0.517655f, 0.486007f, 0.704123f, /*t:*/0.766816f, 0.793320f, + /*v:*/-0.093750f, 0.726563f, 0.742187f, /*n:*/0.136845f, 0.838588f, 0.527268f, /*t:*/0.769250f, 0.807399f, + /*v:*/-0.093750f, 0.710938f, 0.820312f, /*n:*/0.635121f, 0.771203f, -0.042756f, /*t:*/0.756155f, 0.807310f, + /*v:*/-0.093750f, 0.664063f, 0.750000f, /*n:*/0.517655f, 0.486007f, 0.704123f, /*t:*/0.766816f, 0.793320f, + /*v:*/-0.093750f, 0.710938f, 0.820312f, /*n:*/0.635121f, 0.771203f, -0.042756f, /*t:*/0.756155f, 0.807310f, + /*v:*/-0.093750f, 0.640625f, 0.812500f, /*n:*/0.673757f, 0.729850f, -0.115452f, /*t:*/0.756138f, 0.790723f, + /*v:*/0.093750f, 0.710938f, 0.820312f, /*n:*/-0.635121f, 0.771203f, -0.042756f, /*t:*/0.128136f, 0.946904f, + /*v:*/0.093750f, 0.726563f, 0.742187f, /*n:*/-0.136845f, 0.838588f, 0.527268f, /*t:*/0.126716f, 0.961176f, + /*v:*/0.093750f, 0.664063f, 0.750000f, /*n:*/-0.517655f, 0.486007f, 0.704123f, /*t:*/0.113011f, 0.956729f, + /*v:*/0.093750f, 0.710938f, 0.820312f, /*n:*/-0.635121f, 0.771203f, -0.042756f, /*t:*/0.128136f, 0.946904f, + /*v:*/0.093750f, 0.664063f, 0.750000f, /*n:*/-0.517655f, 0.486007f, 0.704123f, /*t:*/0.113011f, 0.956729f, + /*v:*/0.093750f, 0.640625f, 0.812500f, /*n:*/-0.673757f, 0.729850f, -0.115452f, /*t:*/0.111662f, 0.944769f, + /*v:*/-0.093750f, 0.640625f, 0.812500f, /*n:*/0.673757f, 0.729850f, -0.115452f, /*t:*/0.303262f, 0.959911f, + /*v:*/-0.093750f, 0.710938f, 0.820312f, /*n:*/0.635121f, 0.771203f, -0.042756f, /*t:*/0.289565f, 0.961773f, + /*v:*/-0.046875f, 0.687500f, 0.867187f, /*n:*/0.414106f, 0.701621f, -0.579821f, /*t:*/0.293395f, 0.945673f, + /*v:*/-0.093750f, 0.640625f, 0.812500f, /*n:*/0.673757f, 0.729850f, -0.115452f, /*t:*/0.303262f, 0.959911f, + /*v:*/-0.046875f, 0.687500f, 0.867187f, /*n:*/0.414106f, 0.701621f, -0.579821f, /*t:*/0.293395f, 0.945673f, + /*v:*/-0.046875f, 0.632813f, 0.851562f, /*n:*/0.295846f, 0.828761f, -0.474960f, /*t:*/0.303338f, 0.945476f, + /*v:*/0.046875f, 0.687500f, 0.867187f, /*n:*/-0.414106f, 0.701621f, -0.579821f, /*t:*/0.125875f, 0.930477f, + /*v:*/0.093750f, 0.710938f, 0.820312f, /*n:*/-0.635121f, 0.771203f, -0.042756f, /*t:*/0.128136f, 0.946904f, + /*v:*/0.093750f, 0.640625f, 0.812500f, /*n:*/-0.673757f, 0.729850f, -0.115452f, /*t:*/0.111662f, 0.944769f, + /*v:*/0.046875f, 0.687500f, 0.867187f, /*n:*/-0.414106f, 0.701621f, -0.579821f, /*t:*/0.125875f, 0.930477f, + /*v:*/0.093750f, 0.640625f, 0.812500f, /*n:*/-0.673757f, 0.729850f, -0.115452f, /*t:*/0.111662f, 0.944769f, + /*v:*/0.046875f, 0.632813f, 0.851562f, /*n:*/-0.295846f, 0.828761f, -0.474960f, /*t:*/0.112455f, 0.930466f, + /*v:*/-0.046875f, 0.632813f, 0.851562f, /*n:*/0.295846f, 0.828761f, -0.474960f, /*t:*/0.303338f, 0.945476f, + /*v:*/-0.046875f, 0.687500f, 0.867187f, /*n:*/0.414106f, 0.701621f, -0.579821f, /*t:*/0.293395f, 0.945673f, + /*v:*/0.000000f, 0.632813f, 0.859375f, /*n:*/0.000000f, 0.845851f, -0.533403f, /*t:*/0.299499f, 0.935458f, + /*v:*/-0.046875f, 0.687500f, 0.867187f, /*n:*/0.414106f, 0.701621f, -0.579821f, /*t:*/0.293395f, 0.945673f, + /*v:*/0.000000f, 0.687500f, 0.875000f, /*n:*/0.000000f, 0.829310f, -0.558763f, /*t:*/0.289557f, 0.935655f, + /*v:*/0.000000f, 0.632813f, 0.859375f, /*n:*/0.000000f, 0.845851f, -0.533403f, /*t:*/0.299499f, 0.935458f, + /*v:*/0.000000f, 0.687500f, 0.875000f, /*n:*/0.000000f, 0.829310f, -0.558763f, /*t:*/0.126454f, 0.921961f, + /*v:*/0.046875f, 0.687500f, 0.867187f, /*n:*/-0.414106f, 0.701621f, -0.579821f, /*t:*/0.125875f, 0.930477f, + /*v:*/0.000000f, 0.632813f, 0.859375f, /*n:*/0.000000f, 0.845851f, -0.533403f, /*t:*/0.113034f, 0.921950f, + /*v:*/0.046875f, 0.687500f, 0.867187f, /*n:*/-0.414106f, 0.701621f, -0.579821f, /*t:*/0.125875f, 0.930477f, + /*v:*/0.046875f, 0.632813f, 0.851562f, /*n:*/-0.295846f, 0.828761f, -0.474960f, /*t:*/0.112455f, 0.930466f, + /*v:*/0.000000f, 0.632813f, 0.859375f, /*n:*/0.000000f, 0.845851f, -0.533403f, /*t:*/0.113034f, 0.921950f, + /*v:*/-0.046875f, 0.687500f, 0.867187f, /*n:*/0.414106f, 0.701621f, -0.579821f, /*t:*/0.008453f, 0.850636f, + /*v:*/-0.062500f, 0.695313f, 0.882812f, /*n:*/0.058870f, 0.923734f, 0.378430f, /*t:*/0.002993f, 0.851148f, + /*v:*/0.000000f, 0.687500f, 0.890625f, /*n:*/0.000000f, 0.938017f, 0.346507f, /*t:*/0.010591f, 0.839116f, + /*v:*/-0.046875f, 0.687500f, 0.867187f, /*n:*/0.414106f, 0.701621f, -0.579821f, /*t:*/0.008453f, 0.850636f, + /*v:*/0.000000f, 0.687500f, 0.890625f, /*n:*/0.000000f, 0.938017f, 0.346507f, /*t:*/0.010591f, 0.839116f, + /*v:*/0.000000f, 0.687500f, 0.875000f, /*n:*/0.000000f, 0.829310f, -0.558763f, /*t:*/0.013226f, 0.841606f, + /*v:*/0.000000f, 0.687500f, 0.890625f, /*n:*/0.000000f, 0.938017f, 0.346507f, /*t:*/0.010591f, 0.839116f, + /*v:*/0.062500f, 0.695313f, 0.882812f, /*n:*/-0.058870f, 0.923734f, 0.378430f, /*t:*/0.019234f, 0.830386f, + /*v:*/0.046875f, 0.687500f, 0.867187f, /*n:*/-0.414106f, 0.701621f, -0.579821f, /*t:*/0.020634f, 0.835065f, + /*v:*/0.000000f, 0.687500f, 0.890625f, /*n:*/0.000000f, 0.938017f, 0.346507f, /*t:*/0.010591f, 0.839116f, + /*v:*/0.046875f, 0.687500f, 0.867187f, /*n:*/-0.414106f, 0.701621f, -0.579821f, /*t:*/0.020634f, 0.835065f, + /*v:*/0.000000f, 0.687500f, 0.875000f, /*n:*/0.000000f, 0.829310f, -0.558763f, /*t:*/0.013226f, 0.841606f, + /*v:*/-0.093750f, 0.710938f, 0.820312f, /*n:*/0.635121f, 0.771203f, -0.042756f, /*t:*/0.007883f, 0.867110f, + /*v:*/-0.117188f, 0.710938f, 0.835937f, /*n:*/-0.130711f, 0.938810f, 0.318644f, /*t:*/0.002203f, 0.868513f, + /*v:*/-0.062500f, 0.695313f, 0.882812f, /*n:*/0.058870f, 0.923734f, 0.378430f, /*t:*/0.002993f, 0.851148f, + /*v:*/-0.093750f, 0.710938f, 0.820312f, /*n:*/0.635121f, 0.771203f, -0.042756f, /*t:*/0.007883f, 0.867110f, + /*v:*/-0.062500f, 0.695313f, 0.882812f, /*n:*/0.058870f, 0.923734f, 0.378430f, /*t:*/0.002993f, 0.851148f, + /*v:*/-0.046875f, 0.687500f, 0.867187f, /*n:*/0.414106f, 0.701621f, -0.579821f, /*t:*/0.008453f, 0.850636f, + /*v:*/0.062500f, 0.695313f, 0.882812f, /*n:*/-0.058870f, 0.923734f, 0.378430f, /*t:*/0.892683f, 0.111710f, + /*v:*/0.117188f, 0.710938f, 0.835937f, /*n:*/0.130711f, 0.938810f, 0.318644f, /*t:*/0.885080f, 0.122335f, + /*v:*/0.093750f, 0.710938f, 0.820312f, /*n:*/-0.635121f, 0.771203f, -0.042756f, /*t:*/0.881455f, 0.116764f, + /*v:*/0.062500f, 0.695313f, 0.882812f, /*n:*/-0.058870f, 0.923734f, 0.378430f, /*t:*/0.892683f, 0.111710f, + /*v:*/0.093750f, 0.710938f, 0.820312f, /*n:*/-0.635121f, 0.771203f, -0.042756f, /*t:*/0.881455f, 0.116764f, + /*v:*/0.046875f, 0.687500f, 0.867187f, /*n:*/-0.414106f, 0.701621f, -0.579821f, /*t:*/0.890716f, 0.106921f, + /*v:*/-0.093750f, 0.726563f, 0.742187f, /*n:*/0.136845f, 0.838588f, 0.527268f, /*t:*/0.019470f, 0.880371f, + /*v:*/-0.109375f, 0.734375f, 0.718750f, /*n:*/-0.145940f, 0.981933f, 0.120182f, /*t:*/0.020597f, 0.887107f, + /*v:*/-0.117188f, 0.710938f, 0.835937f, /*n:*/-0.130711f, 0.938810f, 0.318644f, /*t:*/0.002203f, 0.868513f, + /*v:*/-0.093750f, 0.726563f, 0.742187f, /*n:*/0.136845f, 0.838588f, 0.527268f, /*t:*/0.019470f, 0.880371f, + /*v:*/-0.117188f, 0.710938f, 0.835937f, /*n:*/-0.130711f, 0.938810f, 0.318644f, /*t:*/0.002203f, 0.868513f, + /*v:*/-0.093750f, 0.710938f, 0.820312f, /*n:*/0.635121f, 0.771203f, -0.042756f, /*t:*/0.007883f, 0.867110f, + /*v:*/0.117188f, 0.710938f, 0.835937f, /*n:*/0.130711f, 0.938810f, 0.318644f, /*t:*/0.885080f, 0.122335f, + /*v:*/0.109375f, 0.734375f, 0.718750f, /*n:*/0.145940f, 0.981933f, 0.120182f, /*t:*/0.861887f, 0.117545f, + /*v:*/0.093750f, 0.726563f, 0.742187f, /*n:*/-0.136845f, 0.838588f, 0.527268f, /*t:*/0.866237f, 0.114641f, + /*v:*/0.117188f, 0.710938f, 0.835937f, /*n:*/0.130711f, 0.938810f, 0.318644f, /*t:*/0.885080f, 0.122335f, + /*v:*/0.093750f, 0.726563f, 0.742187f, /*n:*/-0.136845f, 0.838588f, 0.527268f, /*t:*/0.866237f, 0.114641f, + /*v:*/0.093750f, 0.710938f, 0.820312f, /*n:*/-0.635121f, 0.771203f, -0.042756f, /*t:*/0.881455f, 0.116764f, + /*v:*/0.000000f, 0.718750f, 0.773437f, /*n:*/0.000000f, 0.273232f, 0.961943f, /*t:*/0.868193f, 0.096057f, + /*v:*/0.000000f, 0.734375f, 0.765625f, /*n:*/0.000000f, 0.809595f, 0.586963f, /*t:*/0.864347f, 0.097327f, + /*v:*/-0.093750f, 0.726563f, 0.742187f, /*n:*/0.136845f, 0.838588f, 0.527268f, /*t:*/0.857458f, 0.076105f, + /*v:*/0.000000f, 0.734375f, 0.765625f, /*n:*/0.000000f, 0.809595f, 0.586963f, /*t:*/0.864347f, 0.097327f, + /*v:*/-0.109375f, 0.734375f, 0.718750f, /*n:*/-0.145940f, 0.981933f, 0.120182f, /*t:*/0.851645f, 0.072586f, + /*v:*/-0.093750f, 0.726563f, 0.742187f, /*n:*/0.136845f, 0.838588f, 0.527268f, /*t:*/0.857458f, 0.076105f, + /*v:*/0.109375f, 0.734375f, 0.718750f, /*n:*/0.145940f, 0.981933f, 0.120182f, /*t:*/0.861887f, 0.117545f, + /*v:*/0.000000f, 0.734375f, 0.765625f, /*n:*/0.000000f, 0.809595f, 0.586963f, /*t:*/0.864347f, 0.097327f, + /*v:*/0.093750f, 0.726563f, 0.742187f, /*n:*/-0.136845f, 0.838588f, 0.527268f, /*t:*/0.866237f, 0.114641f, + /*v:*/0.000000f, 0.734375f, 0.765625f, /*n:*/0.000000f, 0.809595f, 0.586963f, /*t:*/0.864347f, 0.097327f, + /*v:*/0.000000f, 0.718750f, 0.773437f, /*n:*/0.000000f, 0.273232f, 0.961943f, /*t:*/0.868193f, 0.096057f, + /*v:*/0.093750f, 0.726563f, 0.742187f, /*n:*/-0.136845f, 0.838588f, 0.527268f, /*t:*/0.866237f, 0.114641f, + /*v:*/-0.164062f, 0.710938f, 0.242187f, /*n:*/-0.775140f, 0.630573f, -0.038667f, /*t:*/0.075564f, 0.794072f, + /*v:*/-0.125000f, 0.812500f, 0.101562f, /*n:*/-0.056093f, 0.962920f, 0.263863f, /*t:*/0.064372f, 0.830386f, + /*v:*/-0.203125f, 0.562500f, 0.187500f, /*n:*/-0.891537f, 0.309458f, 0.330668f, /*t:*/0.049073f, 0.767755f, + /*v:*/-0.164062f, 0.710938f, 0.242187f, /*n:*/-0.775140f, 0.630573f, -0.038667f, /*t:*/0.075564f, 0.794072f, + /*v:*/-0.203125f, 0.562500f, 0.187500f, /*n:*/-0.891537f, 0.309458f, 0.330668f, /*t:*/0.049073f, 0.767755f, + /*v:*/-0.234375f, 0.554688f, 0.250000f, /*n:*/-0.930601f, 0.126347f, -0.343516f, /*t:*/0.060844f, 0.756737f, + /*v:*/0.203125f, 0.562500f, 0.187500f, /*n:*/0.891537f, 0.309458f, 0.330668f, /*t:*/0.416944f, 0.782751f, + /*v:*/0.125000f, 0.812500f, 0.101562f, /*n:*/0.056093f, 0.962920f, 0.263863f, /*t:*/0.375851f, 0.800920f, + /*v:*/0.164062f, 0.710938f, 0.242187f, /*n:*/0.775140f, 0.630573f, -0.038667f, /*t:*/0.390427f, 0.768911f, + /*v:*/0.203125f, 0.562500f, 0.187500f, /*n:*/0.891537f, 0.309458f, 0.330668f, /*t:*/0.416944f, 0.782751f, + /*v:*/0.164062f, 0.710938f, 0.242187f, /*n:*/0.775140f, 0.630573f, -0.038667f, /*t:*/0.390427f, 0.768911f, + /*v:*/0.234375f, 0.554688f, 0.250000f, /*n:*/0.930601f, 0.126347f, -0.343516f, /*t:*/0.422081f, 0.767006f, + /*v:*/-0.164062f, 0.710938f, 0.242187f, /*n:*/-0.775140f, 0.630573f, -0.038667f, /*t:*/0.075564f, 0.794072f, + /*v:*/-0.234375f, 0.554688f, 0.250000f, /*n:*/-0.930601f, 0.126347f, -0.343516f, /*t:*/0.060844f, 0.756737f, + /*v:*/-0.179688f, 0.710938f, 0.312500f, /*n:*/-0.650655f, 0.744652f, -0.148747f, /*t:*/0.088188f, 0.785573f, + /*v:*/-0.234375f, 0.554688f, 0.250000f, /*n:*/-0.930601f, 0.126347f, -0.343516f, /*t:*/0.060844f, 0.756737f, + /*v:*/-0.257812f, 0.554688f, 0.312500f, /*n:*/-0.927763f, 0.120884f, -0.353008f, /*t:*/0.072994f, 0.748057f, + /*v:*/-0.179688f, 0.710938f, 0.312500f, /*n:*/-0.650655f, 0.744652f, -0.148747f, /*t:*/0.088188f, 0.785573f, + /*v:*/0.257812f, 0.554688f, 0.312500f, /*n:*/0.927763f, 0.120884f, -0.353008f, /*t:*/0.424741f, 0.751482f, + /*v:*/0.234375f, 0.554688f, 0.250000f, /*n:*/0.930601f, 0.126347f, -0.343516f, /*t:*/0.422081f, 0.767006f, + /*v:*/0.179688f, 0.710938f, 0.312500f, /*n:*/0.650655f, 0.744652f, -0.148747f, /*t:*/0.391220f, 0.751988f, + /*v:*/0.234375f, 0.554688f, 0.250000f, /*n:*/0.930601f, 0.126347f, -0.343516f, /*t:*/0.422081f, 0.767006f, + /*v:*/0.164062f, 0.710938f, 0.242187f, /*n:*/0.775140f, 0.630573f, -0.038667f, /*t:*/0.390427f, 0.768911f, + /*v:*/0.179688f, 0.710938f, 0.312500f, /*n:*/0.650655f, 0.744652f, -0.148747f, /*t:*/0.391220f, 0.751988f, + /*v:*/-0.179688f, 0.710938f, 0.312500f, /*n:*/-0.650655f, 0.744652f, -0.148747f, /*t:*/0.088188f, 0.785573f, + /*v:*/-0.257812f, 0.554688f, 0.312500f, /*n:*/-0.927763f, 0.120884f, -0.353008f, /*t:*/0.072994f, 0.748057f, + /*v:*/-0.210938f, 0.710938f, 0.445312f, /*n:*/-0.593677f, 0.797388f, -0.108158f, /*t:*/0.112202f, 0.769315f, + /*v:*/-0.257812f, 0.554688f, 0.312500f, /*n:*/-0.927763f, 0.120884f, -0.353008f, /*t:*/0.072994f, 0.748057f, + /*v:*/-0.312500f, 0.570312f, 0.437500f, /*n:*/-0.955718f, 0.156468f, -0.249184f, /*t:*/0.100333f, 0.732604f, + /*v:*/-0.210938f, 0.710938f, 0.445312f, /*n:*/-0.593677f, 0.797388f, -0.108158f, /*t:*/0.112202f, 0.769315f, + /*v:*/0.312500f, 0.570312f, 0.437500f, /*n:*/0.955718f, 0.156468f, -0.249184f, /*t:*/0.429909f, 0.719699f, + /*v:*/0.257812f, 0.554688f, 0.312500f, /*n:*/0.927763f, 0.120884f, -0.353008f, /*t:*/0.424741f, 0.751482f, + /*v:*/0.210938f, 0.710938f, 0.445312f, /*n:*/0.593677f, 0.797388f, -0.108158f, /*t:*/0.393074f, 0.719936f, + /*v:*/0.257812f, 0.554688f, 0.312500f, /*n:*/0.927763f, 0.120884f, -0.353008f, /*t:*/0.424741f, 0.751482f, + /*v:*/0.179688f, 0.710938f, 0.312500f, /*n:*/0.650655f, 0.744652f, -0.148747f, /*t:*/0.391220f, 0.751988f, + /*v:*/0.210938f, 0.710938f, 0.445312f, /*n:*/0.593677f, 0.797388f, -0.108158f, /*t:*/0.393074f, 0.719936f, + /*v:*/-0.210938f, 0.710938f, 0.445312f, /*n:*/-0.593677f, 0.797388f, -0.108158f, /*t:*/0.306684f, 0.741189f, + /*v:*/-0.078125f, 0.750000f, 0.445312f, /*n:*/-0.134098f, 0.990936f, -0.006256f, /*t:*/0.329500f, 0.733641f, + /*v:*/-0.179688f, 0.710938f, 0.312500f, /*n:*/-0.650655f, 0.744652f, -0.148747f, /*t:*/0.317629f, 0.770093f, + /*v:*/-0.078125f, 0.750000f, 0.445312f, /*n:*/-0.134098f, 0.990936f, -0.006256f, /*t:*/0.329500f, 0.733641f, + /*v:*/-0.085938f, 0.742188f, 0.289062f, /*n:*/-0.500259f, 0.751946f, 0.429243f, /*t:*/0.334125f, 0.770062f, + /*v:*/-0.179688f, 0.710938f, 0.312500f, /*n:*/-0.650655f, 0.744652f, -0.148747f, /*t:*/0.317629f, 0.770093f, + /*v:*/0.085938f, 0.742188f, 0.289062f, /*n:*/0.500259f, 0.751946f, 0.429243f, /*t:*/0.369320f, 0.761404f, + /*v:*/0.078125f, 0.750000f, 0.445312f, /*n:*/0.134098f, 0.990936f, -0.006256f, /*t:*/0.361496f, 0.725770f, + /*v:*/0.179688f, 0.710938f, 0.312500f, /*n:*/0.650655f, 0.744652f, -0.148747f, /*t:*/0.391220f, 0.751988f, + /*v:*/0.078125f, 0.750000f, 0.445312f, /*n:*/0.134098f, 0.990936f, -0.006256f, /*t:*/0.361496f, 0.725770f, + /*v:*/0.210938f, 0.710938f, 0.445312f, /*n:*/0.593677f, 0.797388f, -0.108158f, /*t:*/0.393074f, 0.719936f, + /*v:*/0.179688f, 0.710938f, 0.312500f, /*n:*/0.650655f, 0.744652f, -0.148747f, /*t:*/0.391220f, 0.751988f, + /*v:*/-0.179688f, 0.710938f, 0.312500f, /*n:*/-0.650655f, 0.744652f, -0.148747f, /*t:*/0.522508f, 0.925173f, + /*v:*/-0.085938f, 0.742188f, 0.289062f, /*n:*/-0.500259f, 0.751946f, 0.429243f, /*t:*/0.515034f, 0.945772f, + /*v:*/-0.164062f, 0.710938f, 0.242187f, /*n:*/-0.775140f, 0.630573f, -0.038667f, /*t:*/0.511994f, 0.923529f, + /*v:*/-0.085938f, 0.742188f, 0.289062f, /*n:*/-0.500259f, 0.751946f, 0.429243f, /*t:*/0.515034f, 0.945772f, + /*v:*/-0.125000f, 0.750000f, 0.226562f, /*n:*/-0.932157f, 0.334758f, 0.137761f, /*t:*/0.503338f, 0.933828f, + /*v:*/-0.164062f, 0.710938f, 0.242187f, /*n:*/-0.775140f, 0.630573f, -0.038667f, /*t:*/0.511994f, 0.923529f, + /*v:*/0.125000f, 0.750000f, 0.226562f, /*n:*/0.932157f, 0.334758f, 0.137761f, /*t:*/0.378582f, 0.773607f, + /*v:*/0.085938f, 0.742188f, 0.289062f, /*n:*/0.500259f, 0.751946f, 0.429243f, /*t:*/0.369320f, 0.761404f, + /*v:*/0.164062f, 0.710938f, 0.242187f, /*n:*/0.775140f, 0.630573f, -0.038667f, /*t:*/0.390427f, 0.768911f, + /*v:*/0.085938f, 0.742188f, 0.289062f, /*n:*/0.500259f, 0.751946f, 0.429243f, /*t:*/0.369320f, 0.761404f, + /*v:*/0.179688f, 0.710938f, 0.312500f, /*n:*/0.650655f, 0.744652f, -0.148747f, /*t:*/0.391220f, 0.751988f, + /*v:*/0.164062f, 0.710938f, 0.242187f, /*n:*/0.775140f, 0.630573f, -0.038667f, /*t:*/0.390427f, 0.768911f, + /*v:*/-0.164062f, 0.710938f, 0.242187f, /*n:*/-0.775140f, 0.630573f, -0.038667f, /*t:*/0.572389f, 0.560219f, + /*v:*/-0.125000f, 0.750000f, 0.226562f, /*n:*/-0.932157f, 0.334758f, 0.137761f, /*t:*/0.572919f, 0.556030f, + /*v:*/-0.101562f, 0.742188f, 0.148437f, /*n:*/-0.501389f, 0.801691f, 0.325327f, /*t:*/0.589351f, 0.546759f, + /*v:*/-0.164062f, 0.710938f, 0.242187f, /*n:*/-0.775140f, 0.630573f, -0.038667f, /*t:*/0.572389f, 0.560219f, + /*v:*/-0.101562f, 0.742188f, 0.148437f, /*n:*/-0.501389f, 0.801691f, 0.325327f, /*t:*/0.589351f, 0.546759f, + /*v:*/-0.125000f, 0.812500f, 0.101562f, /*n:*/-0.056093f, 0.962920f, 0.263863f, /*t:*/0.600341f, 0.557249f, + /*v:*/0.101562f, 0.742188f, 0.148437f, /*n:*/0.501389f, 0.801691f, 0.325327f, /*t:*/0.988415f, 0.706148f, + /*v:*/0.125000f, 0.750000f, 0.226562f, /*n:*/0.932157f, 0.334758f, 0.137761f, /*t:*/0.991969f, 0.721336f, + /*v:*/0.164062f, 0.710938f, 0.242187f, /*n:*/0.775140f, 0.630573f, -0.038667f, /*t:*/0.997304f, 0.731836f, + /*v:*/0.101562f, 0.742188f, 0.148437f, /*n:*/0.501389f, 0.801691f, 0.325327f, /*t:*/0.988415f, 0.706148f, + /*v:*/0.164062f, 0.710938f, 0.242187f, /*n:*/0.775140f, 0.630573f, -0.038667f, /*t:*/0.997304f, 0.731836f, + /*v:*/0.125000f, 0.812500f, 0.101562f, /*n:*/0.056093f, 0.962920f, 0.263863f, /*t:*/0.968118f, 0.702240f, + /*v:*/-0.125000f, 0.812500f, 0.101562f, /*n:*/-0.056093f, 0.962920f, 0.263863f, /*t:*/0.600341f, 0.557249f, + /*v:*/-0.101562f, 0.742188f, 0.148437f, /*n:*/-0.501389f, 0.801691f, 0.325327f, /*t:*/0.589351f, 0.546759f, + /*v:*/0.000000f, 0.742188f, 0.140625f, /*n:*/0.000000f, 0.856227f, -0.516556f, /*t:*/0.584870f, 0.525910f, + /*v:*/-0.125000f, 0.812500f, 0.101562f, /*n:*/-0.056093f, 0.962920f, 0.263863f, /*t:*/0.600341f, 0.557249f, + /*v:*/0.000000f, 0.742188f, 0.140625f, /*n:*/0.000000f, 0.856227f, -0.516556f, /*t:*/0.584870f, 0.525910f, + /*v:*/0.000000f, 0.726562f, -0.046875f, /*n:*/0.000000f, 0.997925f, -0.064272f, /*t:*/0.627723f, 0.515359f, + /*v:*/0.000000f, 0.742188f, 0.140625f, /*n:*/0.000000f, 0.856227f, -0.516556f, /*t:*/0.997368f, 0.685957f, + /*v:*/0.101562f, 0.742188f, 0.148437f, /*n:*/0.501389f, 0.801691f, 0.325327f, /*t:*/0.988415f, 0.706148f, + /*v:*/0.125000f, 0.812500f, 0.101562f, /*n:*/0.056093f, 0.962920f, 0.263863f, /*t:*/0.968118f, 0.702240f, + /*v:*/0.000000f, 0.742188f, 0.140625f, /*n:*/0.000000f, 0.856227f, -0.516556f, /*t:*/0.997368f, 0.685957f, + /*v:*/0.125000f, 0.812500f, 0.101562f, /*n:*/0.056093f, 0.962920f, 0.263863f, /*t:*/0.968118f, 0.702240f, + /*v:*/0.000000f, 0.726562f, -0.046875f, /*n:*/0.000000f, 0.997925f, -0.064272f, /*t:*/0.982868f, 0.660003f, + /*v:*/-0.078125f, 0.804688f, 0.250000f, /*n:*/-0.183294f, 0.789026f, 0.586352f, /*t:*/0.498036f, 0.949779f, + /*v:*/0.000000f, 0.804688f, 0.289062f, /*n:*/0.000000f, 0.876431f, 0.481521f, /*t:*/0.505447f, 0.968923f, + /*v:*/0.000000f, 0.828125f, 0.203125f, /*n:*/0.000000f, 0.987457f, -0.157842f, /*t:*/0.488074f, 0.964817f, + /*v:*/-0.078125f, 0.804688f, 0.250000f, /*n:*/-0.183294f, 0.789026f, 0.586352f, /*t:*/0.498036f, 0.949779f, + /*v:*/0.000000f, 0.828125f, 0.203125f, /*n:*/0.000000f, 0.987457f, -0.157842f, /*t:*/0.488074f, 0.964817f, + /*v:*/-0.109375f, 0.828125f, 0.226562f, /*n:*/-0.448805f, 0.836360f, 0.314707f, /*t:*/0.489694f, 0.943488f, + /*v:*/0.000000f, 0.828125f, 0.203125f, /*n:*/0.000000f, 0.987457f, -0.157842f, /*t:*/0.488074f, 0.964817f, + /*v:*/0.000000f, 0.804688f, 0.289062f, /*n:*/0.000000f, 0.876431f, 0.481521f, /*t:*/0.505447f, 0.968923f, + /*v:*/0.078125f, 0.804688f, 0.250000f, /*n:*/0.183294f, 0.789026f, 0.586352f, /*t:*/0.500863f, 0.982594f, + /*v:*/0.000000f, 0.828125f, 0.203125f, /*n:*/0.000000f, 0.987457f, -0.157842f, /*t:*/0.488074f, 0.964817f, + /*v:*/0.078125f, 0.804688f, 0.250000f, /*n:*/0.183294f, 0.789026f, 0.586352f, /*t:*/0.500863f, 0.982594f, + /*v:*/0.109375f, 0.828125f, 0.226562f, /*n:*/0.448805f, 0.836360f, 0.314707f, /*t:*/0.493651f, 0.989429f, + /*v:*/-0.093750f, 0.812500f, 0.156250f, /*n:*/-0.361095f, 0.804651f, -0.471267f, /*t:*/0.809962f, 0.959263f, + /*v:*/-0.109375f, 0.828125f, 0.226562f, /*n:*/-0.448805f, 0.836360f, 0.314707f, /*t:*/0.794226f, 0.966525f, + /*v:*/-0.046875f, 0.812500f, 0.148437f, /*n:*/0.185736f, 0.781487f, -0.595599f, /*t:*/0.809454f, 0.949394f, + /*v:*/-0.109375f, 0.828125f, 0.226562f, /*n:*/-0.448805f, 0.836360f, 0.314707f, /*t:*/0.794226f, 0.966525f, + /*v:*/0.000000f, 0.828125f, 0.203125f, /*n:*/0.000000f, 0.987457f, -0.157842f, /*t:*/0.794237f, 0.943325f, + /*v:*/-0.046875f, 0.812500f, 0.148437f, /*n:*/0.185736f, 0.781487f, -0.595599f, /*t:*/0.809454f, 0.949394f, + /*v:*/0.000000f, 0.828125f, 0.203125f, /*n:*/0.000000f, 0.987457f, -0.157842f, /*t:*/0.770300f, 0.963473f, + /*v:*/0.109375f, 0.828125f, 0.226562f, /*n:*/0.448805f, 0.836360f, 0.314707f, /*t:*/0.770284f, 0.939288f, + /*v:*/0.046875f, 0.812500f, 0.148437f, /*n:*/-0.185736f, 0.781487f, -0.595599f, /*t:*/0.785652f, 0.956397f, + /*v:*/0.109375f, 0.828125f, 0.226562f, /*n:*/0.448805f, 0.836360f, 0.314707f, /*t:*/0.770284f, 0.939288f, + /*v:*/0.093750f, 0.812500f, 0.156250f, /*n:*/0.361095f, 0.804651f, -0.471267f, /*t:*/0.786137f, 0.946194f, + /*v:*/0.046875f, 0.812500f, 0.148437f, /*n:*/-0.185736f, 0.781487f, -0.595599f, /*t:*/0.785652f, 0.956397f, + /*v:*/-0.078125f, 0.804688f, 0.250000f, /*n:*/-0.183294f, 0.789026f, 0.586352f, /*t:*/0.498036f, 0.949779f, + /*v:*/-0.109375f, 0.828125f, 0.226562f, /*n:*/-0.448805f, 0.836360f, 0.314707f, /*t:*/0.489694f, 0.943488f, + /*v:*/-0.132812f, 0.796875f, 0.226562f, /*n:*/-0.926237f, 0.288003f, 0.243049f, /*t:*/0.494841f, 0.936014f, + /*v:*/-0.078125f, 0.804688f, 0.250000f, /*n:*/-0.183294f, 0.789026f, 0.586352f, /*t:*/0.498036f, 0.949779f, + /*v:*/-0.132812f, 0.796875f, 0.226562f, /*n:*/-0.926237f, 0.288003f, 0.243049f, /*t:*/0.494841f, 0.936014f, + /*v:*/-0.093750f, 0.781250f, 0.273437f, /*n:*/-0.583575f, 0.423475f, 0.692862f, /*t:*/0.505530f, 0.946226f, + /*v:*/0.132812f, 0.796875f, 0.226562f, /*n:*/0.926237f, 0.288003f, 0.243049f, /*t:*/0.899975f, 0.953660f, + /*v:*/0.109375f, 0.828125f, 0.226562f, /*n:*/0.448805f, 0.836360f, 0.314707f, /*t:*/0.893235f, 0.950200f, + /*v:*/0.078125f, 0.804688f, 0.250000f, /*n:*/0.183294f, 0.789026f, 0.586352f, /*t:*/0.898286f, 0.940714f, + /*v:*/0.132812f, 0.796875f, 0.226562f, /*n:*/0.926237f, 0.288003f, 0.243049f, /*t:*/0.899975f, 0.953660f, + /*v:*/0.078125f, 0.804688f, 0.250000f, /*n:*/0.183294f, 0.789026f, 0.586352f, /*t:*/0.898286f, 0.940714f, + /*v:*/0.093750f, 0.781250f, 0.273437f, /*n:*/0.583575f, 0.423475f, 0.692862f, /*t:*/0.902373f, 0.939126f, + /*v:*/-0.109375f, 0.828125f, 0.226562f, /*n:*/-0.448805f, 0.836360f, 0.314707f, /*t:*/0.815200f, 0.962106f, + /*v:*/-0.093750f, 0.812500f, 0.156250f, /*n:*/-0.361095f, 0.804651f, -0.471267f, /*t:*/0.817710f, 0.946360f, + /*v:*/-0.132812f, 0.796875f, 0.226562f, /*n:*/-0.926237f, 0.288003f, 0.243049f, /*t:*/0.823640f, 0.964327f, + /*v:*/-0.093750f, 0.812500f, 0.156250f, /*n:*/-0.361095f, 0.804651f, -0.471267f, /*t:*/0.817710f, 0.946360f, + /*v:*/-0.109375f, 0.781250f, 0.132812f, /*n:*/-0.618641f, 0.124790f, -0.775658f, /*t:*/0.825650f, 0.943148f, + /*v:*/-0.132812f, 0.796875f, 0.226562f, /*n:*/-0.926237f, 0.288003f, 0.243049f, /*t:*/0.823640f, 0.964327f, + /*v:*/0.109375f, 0.781250f, 0.132812f, /*n:*/0.618641f, 0.124790f, -0.775658f, /*t:*/0.794226f, 0.941862f, + /*v:*/0.093750f, 0.812500f, 0.156250f, /*n:*/0.361095f, 0.804651f, -0.471267f, /*t:*/0.786137f, 0.946194f, + /*v:*/0.132812f, 0.796875f, 0.226562f, /*n:*/0.926237f, 0.288003f, 0.243049f, /*t:*/0.773576f, 0.931648f, + /*v:*/0.093750f, 0.812500f, 0.156250f, /*n:*/0.361095f, 0.804651f, -0.471267f, /*t:*/0.786137f, 0.946194f, + /*v:*/0.109375f, 0.828125f, 0.226562f, /*n:*/0.448805f, 0.836360f, 0.314707f, /*t:*/0.770284f, 0.939288f, + /*v:*/0.132812f, 0.796875f, 0.226562f, /*n:*/0.926237f, 0.288003f, 0.243049f, /*t:*/0.773576f, 0.931648f, + /*v:*/-0.093750f, 0.812500f, 0.156250f, /*n:*/-0.361095f, 0.804651f, -0.471267f, /*t:*/0.817710f, 0.946360f, + /*v:*/-0.046875f, 0.812500f, 0.148437f, /*n:*/0.185736f, 0.781487f, -0.595599f, /*t:*/0.815161f, 0.938214f, + /*v:*/-0.039062f, 0.781250f, 0.125000f, /*n:*/0.240516f, 0.203558f, -0.949034f, /*t:*/0.821840f, 0.931648f, + /*v:*/-0.093750f, 0.812500f, 0.156250f, /*n:*/-0.361095f, 0.804651f, -0.471267f, /*t:*/0.817710f, 0.946360f, + /*v:*/-0.039062f, 0.781250f, 0.125000f, /*n:*/0.240516f, 0.203558f, -0.949034f, /*t:*/0.821840f, 0.931648f, + /*v:*/-0.109375f, 0.781250f, 0.132812f, /*n:*/-0.618641f, 0.124790f, -0.775658f, /*t:*/0.825650f, 0.943148f, + /*v:*/0.039062f, 0.781250f, 0.125000f, /*n:*/-0.240516f, 0.203558f, -0.949034f, /*t:*/0.792638f, 0.956883f, + /*v:*/0.046875f, 0.812500f, 0.148437f, /*n:*/-0.185736f, 0.781487f, -0.595599f, /*t:*/0.785652f, 0.956397f, + /*v:*/0.093750f, 0.812500f, 0.156250f, /*n:*/0.361095f, 0.804651f, -0.471267f, /*t:*/0.786137f, 0.946194f, + /*v:*/0.039062f, 0.781250f, 0.125000f, /*n:*/-0.240516f, 0.203558f, -0.949034f, /*t:*/0.792638f, 0.956883f, + /*v:*/0.093750f, 0.812500f, 0.156250f, /*n:*/0.361095f, 0.804651f, -0.471267f, /*t:*/0.786137f, 0.946194f, + /*v:*/0.109375f, 0.781250f, 0.132812f, /*n:*/0.618641f, 0.124790f, -0.775658f, /*t:*/0.794226f, 0.941862f, + /*v:*/-0.046875f, 0.812500f, 0.148437f, /*n:*/0.185736f, 0.781487f, -0.595599f, /*t:*/0.809454f, 0.949394f, + /*v:*/0.000000f, 0.828125f, 0.203125f, /*n:*/0.000000f, 0.987457f, -0.157842f, /*t:*/0.794237f, 0.943325f, + /*v:*/0.000000f, 0.796875f, 0.187500f, /*n:*/0.000000f, 0.559648f, -0.828700f, /*t:*/0.798533f, 0.939312f, + /*v:*/-0.046875f, 0.812500f, 0.148437f, /*n:*/0.185736f, 0.781487f, -0.595599f, /*t:*/0.809454f, 0.949394f, + /*v:*/0.000000f, 0.796875f, 0.187500f, /*n:*/0.000000f, 0.559648f, -0.828700f, /*t:*/0.798533f, 0.939312f, + /*v:*/-0.039062f, 0.781250f, 0.125000f, /*n:*/0.240516f, 0.203558f, -0.949034f, /*t:*/0.815161f, 0.943522f, + /*v:*/0.000000f, 0.796875f, 0.187500f, /*n:*/0.000000f, 0.559648f, -0.828700f, /*t:*/0.008993f, 0.665976f, + /*v:*/0.000000f, 0.828125f, 0.203125f, /*n:*/0.000000f, 0.987457f, -0.157842f, /*t:*/0.002085f, 0.670351f, + /*v:*/0.046875f, 0.812500f, 0.148437f, /*n:*/-0.185736f, 0.781487f, -0.595599f, /*t:*/0.002062f, 0.652987f, + /*v:*/0.000000f, 0.796875f, 0.187500f, /*n:*/0.000000f, 0.559648f, -0.828700f, /*t:*/0.008993f, 0.665976f, + /*v:*/0.046875f, 0.812500f, 0.148437f, /*n:*/-0.185736f, 0.781487f, -0.595599f, /*t:*/0.002062f, 0.652987f, + /*v:*/0.039062f, 0.781250f, 0.125000f, /*n:*/-0.240516f, 0.203558f, -0.949034f, /*t:*/0.009346f, 0.648272f, + /*v:*/-0.078125f, 0.804688f, 0.250000f, /*n:*/-0.183294f, 0.789026f, 0.586352f, /*t:*/0.498036f, 0.949779f, + /*v:*/-0.093750f, 0.781250f, 0.273437f, /*n:*/-0.583575f, 0.423475f, 0.692862f, /*t:*/0.505530f, 0.946226f, + /*v:*/0.000000f, 0.804688f, 0.289062f, /*n:*/0.000000f, 0.876431f, 0.481521f, /*t:*/0.505447f, 0.968923f, + /*v:*/-0.093750f, 0.781250f, 0.273437f, /*n:*/-0.583575f, 0.423475f, 0.692862f, /*t:*/0.505530f, 0.946226f, + /*v:*/0.000000f, 0.781250f, 0.320312f, /*n:*/0.000000f, 0.501053f, 0.865383f, /*t:*/0.514424f, 0.969198f, + /*v:*/0.000000f, 0.804688f, 0.289062f, /*n:*/0.000000f, 0.876431f, 0.481521f, /*t:*/0.505447f, 0.968923f, + /*v:*/0.000000f, 0.781250f, 0.320312f, /*n:*/0.000000f, 0.501053f, 0.865383f, /*t:*/0.514424f, 0.969198f, + /*v:*/0.093750f, 0.781250f, 0.273437f, /*n:*/0.583575f, 0.423475f, 0.692862f, /*t:*/0.508922f, 0.985604f, + /*v:*/0.000000f, 0.804688f, 0.289062f, /*n:*/0.000000f, 0.876431f, 0.481521f, /*t:*/0.505447f, 0.968923f, + /*v:*/0.093750f, 0.781250f, 0.273437f, /*n:*/0.583575f, 0.423475f, 0.692862f, /*t:*/0.508922f, 0.985604f, + /*v:*/0.078125f, 0.804688f, 0.250000f, /*n:*/0.183294f, 0.789026f, 0.586352f, /*t:*/0.500863f, 0.982594f, + /*v:*/0.000000f, 0.804688f, 0.289062f, /*n:*/0.000000f, 0.876431f, 0.481521f, /*t:*/0.505447f, 0.968923f, + /*v:*/-0.093750f, 0.781250f, 0.273437f, /*n:*/-0.583575f, 0.423475f, 0.692862f, /*t:*/0.505530f, 0.946226f, + /*v:*/-0.085938f, 0.742188f, 0.289062f, /*n:*/-0.500259f, 0.751946f, 0.429243f, /*t:*/0.515034f, 0.945772f, + /*v:*/0.000000f, 0.781250f, 0.320312f, /*n:*/0.000000f, 0.501053f, 0.865383f, /*t:*/0.514424f, 0.969198f, + /*v:*/-0.085938f, 0.742188f, 0.289062f, /*n:*/-0.500259f, 0.751946f, 0.429243f, /*t:*/0.515034f, 0.945772f, + /*v:*/0.000000f, 0.742188f, 0.328125f, /*n:*/0.000000f, 0.879452f, 0.475936f, /*t:*/0.522587f, 0.966556f, + /*v:*/0.000000f, 0.781250f, 0.320312f, /*n:*/0.000000f, 0.501053f, 0.865383f, /*t:*/0.514424f, 0.969198f, + /*v:*/0.000000f, 0.742188f, 0.328125f, /*n:*/0.000000f, 0.879452f, 0.475936f, /*t:*/0.910976f, 0.913725f, + /*v:*/0.085938f, 0.742188f, 0.289062f, /*n:*/0.500259f, 0.751946f, 0.429243f, /*t:*/0.910889f, 0.934629f, + /*v:*/0.000000f, 0.781250f, 0.320312f, /*n:*/0.000000f, 0.501053f, 0.865383f, /*t:*/0.902284f, 0.915620f, + /*v:*/0.085938f, 0.742188f, 0.289062f, /*n:*/0.500259f, 0.751946f, 0.429243f, /*t:*/0.910889f, 0.934629f, + /*v:*/0.093750f, 0.781250f, 0.273437f, /*n:*/0.583575f, 0.423475f, 0.692862f, /*t:*/0.902373f, 0.939126f, + /*v:*/0.000000f, 0.781250f, 0.320312f, /*n:*/0.000000f, 0.501053f, 0.865383f, /*t:*/0.902284f, 0.915620f, + /*v:*/-0.039062f, 0.781250f, 0.125000f, /*n:*/0.240516f, 0.203558f, -0.949034f, /*t:*/0.815161f, 0.943522f, + /*v:*/0.000000f, 0.796875f, 0.187500f, /*n:*/0.000000f, 0.559648f, -0.828700f, /*t:*/0.798533f, 0.939312f, + /*v:*/0.000000f, 0.742188f, 0.140625f, /*n:*/0.000000f, 0.856227f, -0.516556f, /*t:*/0.810537f, 0.931648f, + /*v:*/0.000000f, 0.796875f, 0.187500f, /*n:*/0.000000f, 0.559648f, -0.828700f, /*t:*/0.798533f, 0.939312f, + /*v:*/0.000000f, 0.750000f, 0.195312f, /*n:*/0.000000f, 0.967711f, 0.251991f, /*t:*/0.797800f, 0.934318f, + /*v:*/0.000000f, 0.742188f, 0.140625f, /*n:*/0.000000f, 0.856227f, -0.516556f, /*t:*/0.810537f, 0.931648f, + /*v:*/0.000000f, 0.750000f, 0.195312f, /*n:*/0.000000f, 0.967711f, 0.251991f, /*t:*/0.019759f, 0.665153f, + /*v:*/0.000000f, 0.796875f, 0.187500f, /*n:*/0.000000f, 0.559648f, -0.828700f, /*t:*/0.008993f, 0.665976f, + /*v:*/0.000000f, 0.742188f, 0.140625f, /*n:*/0.000000f, 0.856227f, -0.516556f, /*t:*/0.020827f, 0.654733f, + /*v:*/0.000000f, 0.796875f, 0.187500f, /*n:*/0.000000f, 0.559648f, -0.828700f, /*t:*/0.008993f, 0.665976f, + /*v:*/0.039062f, 0.781250f, 0.125000f, /*n:*/-0.240516f, 0.203558f, -0.949034f, /*t:*/0.009346f, 0.648272f, + /*v:*/0.000000f, 0.742188f, 0.140625f, /*n:*/0.000000f, 0.856227f, -0.516556f, /*t:*/0.020827f, 0.654733f, + /*v:*/-0.109375f, 0.781250f, 0.132812f, /*n:*/-0.618641f, 0.124790f, -0.775658f, /*t:*/0.303644f, 0.957013f, + /*v:*/-0.039062f, 0.781250f, 0.125000f, /*n:*/0.240516f, 0.203558f, -0.949034f, /*t:*/0.303338f, 0.942613f, + /*v:*/-0.101562f, 0.742188f, 0.148437f, /*n:*/-0.501389f, 0.801691f, 0.325327f, /*t:*/0.313451f, 0.956533f, + /*v:*/-0.039062f, 0.781250f, 0.125000f, /*n:*/0.240516f, 0.203558f, -0.949034f, /*t:*/0.303338f, 0.942613f, + /*v:*/0.000000f, 0.742188f, 0.140625f, /*n:*/0.000000f, 0.856227f, -0.516556f, /*t:*/0.313455f, 0.935458f, + /*v:*/-0.101562f, 0.742188f, 0.148437f, /*n:*/-0.501389f, 0.801691f, 0.325327f, /*t:*/0.313451f, 0.956533f, + /*v:*/0.000000f, 0.742188f, 0.140625f, /*n:*/0.000000f, 0.856227f, -0.516556f, /*t:*/0.213853f, 0.972084f, + /*v:*/0.039062f, 0.781250f, 0.125000f, /*n:*/-0.240516f, 0.203558f, -0.949034f, /*t:*/0.202069f, 0.965820f, + /*v:*/0.101562f, 0.742188f, 0.148437f, /*n:*/0.501389f, 0.801691f, 0.325327f, /*t:*/0.209033f, 0.950211f, + /*v:*/0.039062f, 0.781250f, 0.125000f, /*n:*/-0.240516f, 0.203558f, -0.949034f, /*t:*/0.202069f, 0.965820f, + /*v:*/0.109375f, 0.781250f, 0.132812f, /*n:*/0.618641f, 0.124790f, -0.775658f, /*t:*/0.198969f, 0.950403f, + /*v:*/0.101562f, 0.742188f, 0.148437f, /*n:*/0.501389f, 0.801691f, 0.325327f, /*t:*/0.209033f, 0.950211f, + /*v:*/-0.132812f, 0.796875f, 0.226562f, /*n:*/-0.926237f, 0.288003f, 0.243049f, /*t:*/0.823640f, 0.964327f, + /*v:*/-0.109375f, 0.781250f, 0.132812f, /*n:*/-0.618641f, 0.124790f, -0.775658f, /*t:*/0.825650f, 0.943148f, + /*v:*/-0.125000f, 0.750000f, 0.226562f, /*n:*/-0.932157f, 0.334758f, 0.137761f, /*t:*/0.833988f, 0.961510f, + /*v:*/-0.109375f, 0.781250f, 0.132812f, /*n:*/-0.618641f, 0.124790f, -0.775658f, /*t:*/0.825650f, 0.943148f, + /*v:*/-0.101562f, 0.742188f, 0.148437f, /*n:*/-0.501389f, 0.801691f, 0.325327f, /*t:*/0.834256f, 0.943491f, + /*v:*/-0.125000f, 0.750000f, 0.226562f, /*n:*/-0.932157f, 0.334758f, 0.137761f, /*t:*/0.833988f, 0.961510f, + /*v:*/0.101562f, 0.742188f, 0.148437f, /*n:*/0.501389f, 0.801691f, 0.325327f, /*t:*/0.209033f, 0.950211f, + /*v:*/0.109375f, 0.781250f, 0.132812f, /*n:*/0.618641f, 0.124790f, -0.775658f, /*t:*/0.198969f, 0.950403f, + /*v:*/0.125000f, 0.750000f, 0.226562f, /*n:*/0.932157f, 0.334758f, 0.137761f, /*t:*/0.213827f, 0.936467f, + /*v:*/0.109375f, 0.781250f, 0.132812f, /*n:*/0.618641f, 0.124790f, -0.775658f, /*t:*/0.198969f, 0.950403f, + /*v:*/0.132812f, 0.796875f, 0.226562f, /*n:*/0.926237f, 0.288003f, 0.243049f, /*t:*/0.203685f, 0.934883f, + /*v:*/0.125000f, 0.750000f, 0.226562f, /*n:*/0.932157f, 0.334758f, 0.137761f, /*t:*/0.213827f, 0.936467f, + /*v:*/-0.093750f, 0.781250f, 0.273437f, /*n:*/-0.583575f, 0.423475f, 0.692862f, /*t:*/0.505530f, 0.946226f, + /*v:*/-0.132812f, 0.796875f, 0.226562f, /*n:*/-0.926237f, 0.288003f, 0.243049f, /*t:*/0.494841f, 0.936014f, + /*v:*/-0.125000f, 0.750000f, 0.226562f, /*n:*/-0.932157f, 0.334758f, 0.137761f, /*t:*/0.503338f, 0.933828f, + /*v:*/-0.093750f, 0.781250f, 0.273437f, /*n:*/-0.583575f, 0.423475f, 0.692862f, /*t:*/0.505530f, 0.946226f, + /*v:*/-0.125000f, 0.750000f, 0.226562f, /*n:*/-0.932157f, 0.334758f, 0.137761f, /*t:*/0.503338f, 0.933828f, + /*v:*/-0.085938f, 0.742188f, 0.289062f, /*n:*/-0.500259f, 0.751946f, 0.429243f, /*t:*/0.515034f, 0.945772f, + /*v:*/0.125000f, 0.750000f, 0.226562f, /*n:*/0.932157f, 0.334758f, 0.137761f, /*t:*/0.910969f, 0.951612f, + /*v:*/0.132812f, 0.796875f, 0.226562f, /*n:*/0.926237f, 0.288003f, 0.243049f, /*t:*/0.899975f, 0.953660f, + /*v:*/0.093750f, 0.781250f, 0.273437f, /*n:*/0.583575f, 0.423475f, 0.692862f, /*t:*/0.902373f, 0.939126f, + /*v:*/0.125000f, 0.750000f, 0.226562f, /*n:*/0.932157f, 0.334758f, 0.137761f, /*t:*/0.910969f, 0.951612f, + /*v:*/0.093750f, 0.781250f, 0.273437f, /*n:*/0.583575f, 0.423475f, 0.692862f, /*t:*/0.902373f, 0.939126f, + /*v:*/0.085938f, 0.742188f, 0.289062f, /*n:*/0.500259f, 0.751946f, 0.429243f, /*t:*/0.910889f, 0.934629f, + /*v:*/-0.117188f, 0.734375f, 0.687500f, /*n:*/-0.181524f, 0.982330f, 0.045198f, /*t:*/0.314964f, 0.680375f, + /*v:*/-0.109375f, 0.734375f, 0.718750f, /*n:*/-0.145940f, 0.981933f, 0.120182f, /*t:*/0.315494f, 0.672810f, + /*v:*/0.000000f, 0.734375f, 0.679687f, /*n:*/0.000000f, 0.999390f, 0.034059f, /*t:*/0.339229f, 0.676264f, + /*v:*/-0.109375f, 0.734375f, 0.718750f, /*n:*/-0.145940f, 0.981933f, 0.120182f, /*t:*/0.315494f, 0.672810f, + /*v:*/0.000000f, 0.734375f, 0.765625f, /*n:*/0.000000f, 0.809595f, 0.586963f, /*t:*/0.336287f, 0.656543f, + /*v:*/0.000000f, 0.734375f, 0.679687f, /*n:*/0.000000f, 0.999390f, 0.034059f, /*t:*/0.339229f, 0.676264f, + /*v:*/0.000000f, 0.734375f, 0.765625f, /*n:*/0.000000f, 0.809595f, 0.586963f, /*t:*/0.336287f, 0.656543f, + /*v:*/0.109375f, 0.734375f, 0.718750f, /*n:*/0.145940f, 0.981933f, 0.120182f, /*t:*/0.360289f, 0.661790f, + /*v:*/0.000000f, 0.734375f, 0.679687f, /*n:*/0.000000f, 0.999390f, 0.034059f, /*t:*/0.339229f, 0.676264f, + /*v:*/0.109375f, 0.734375f, 0.718750f, /*n:*/0.145940f, 0.981933f, 0.120182f, /*t:*/0.360289f, 0.661790f, + /*v:*/0.117188f, 0.734375f, 0.687500f, /*n:*/0.181524f, 0.982330f, 0.045198f, /*t:*/0.362958f, 0.668567f, + /*v:*/0.000000f, 0.734375f, 0.679687f, /*n:*/0.000000f, 0.999390f, 0.034059f, /*t:*/0.339229f, 0.676264f, + /*v:*/0.000000f, 0.750000f, 0.445312f, /*n:*/0.000000f, 1.000000f, 0.000000f, /*t:*/0.345498f, 0.729705f, + /*v:*/-0.078125f, 0.750000f, 0.445312f, /*n:*/-0.134098f, 0.990936f, -0.006256f, /*t:*/0.329500f, 0.733641f, + /*v:*/0.000000f, 0.734375f, 0.679687f, /*n:*/0.000000f, 0.999390f, 0.034059f, /*t:*/0.339229f, 0.676264f, + /*v:*/-0.078125f, 0.750000f, 0.445312f, /*n:*/-0.134098f, 0.990936f, -0.006256f, /*t:*/0.329500f, 0.733641f, + /*v:*/-0.117188f, 0.734375f, 0.687500f, /*n:*/-0.181524f, 0.982330f, 0.045198f, /*t:*/0.314964f, 0.680375f, + /*v:*/0.000000f, 0.734375f, 0.679687f, /*n:*/0.000000f, 0.999390f, 0.034059f, /*t:*/0.339229f, 0.676264f, + /*v:*/0.117188f, 0.734375f, 0.687500f, /*n:*/0.181524f, 0.982330f, 0.045198f, /*t:*/0.362958f, 0.668567f, + /*v:*/0.078125f, 0.750000f, 0.445312f, /*n:*/0.134098f, 0.990936f, -0.006256f, /*t:*/0.361496f, 0.725770f, + /*v:*/0.000000f, 0.734375f, 0.679687f, /*n:*/0.000000f, 0.999390f, 0.034059f, /*t:*/0.339229f, 0.676264f, + /*v:*/0.078125f, 0.750000f, 0.445312f, /*n:*/0.134098f, 0.990936f, -0.006256f, /*t:*/0.361496f, 0.725770f, + /*v:*/0.000000f, 0.750000f, 0.445312f, /*n:*/0.000000f, 1.000000f, 0.000000f, /*t:*/0.345498f, 0.729705f, + /*v:*/0.000000f, 0.734375f, 0.679687f, /*n:*/0.000000f, 0.999390f, 0.034059f, /*t:*/0.339229f, 0.676264f, + /*v:*/0.000000f, 0.750000f, 0.445312f, /*n:*/0.000000f, 1.000000f, 0.000000f, /*t:*/0.345498f, 0.729705f, + /*v:*/0.000000f, 0.742188f, 0.328125f, /*n:*/0.000000f, 0.879452f, 0.475936f, /*t:*/0.350385f, 0.756769f, + /*v:*/-0.078125f, 0.750000f, 0.445312f, /*n:*/-0.134098f, 0.990936f, -0.006256f, /*t:*/0.329500f, 0.733641f, + /*v:*/0.000000f, 0.742188f, 0.328125f, /*n:*/0.000000f, 0.879452f, 0.475936f, /*t:*/0.350385f, 0.756769f, + /*v:*/-0.085938f, 0.742188f, 0.289062f, /*n:*/-0.500259f, 0.751946f, 0.429243f, /*t:*/0.334125f, 0.770062f, + /*v:*/-0.078125f, 0.750000f, 0.445312f, /*n:*/-0.134098f, 0.990936f, -0.006256f, /*t:*/0.329500f, 0.733641f, + /*v:*/0.085938f, 0.742188f, 0.289062f, /*n:*/0.500259f, 0.751946f, 0.429243f, /*t:*/0.369320f, 0.761404f, + /*v:*/0.000000f, 0.742188f, 0.328125f, /*n:*/0.000000f, 0.879452f, 0.475936f, /*t:*/0.350385f, 0.756769f, + /*v:*/0.078125f, 0.750000f, 0.445312f, /*n:*/0.134098f, 0.990936f, -0.006256f, /*t:*/0.361496f, 0.725770f, + /*v:*/0.000000f, 0.742188f, 0.328125f, /*n:*/0.000000f, 0.879452f, 0.475936f, /*t:*/0.350385f, 0.756769f, + /*v:*/0.000000f, 0.750000f, 0.445312f, /*n:*/0.000000f, 1.000000f, 0.000000f, /*t:*/0.345498f, 0.729705f, + /*v:*/0.078125f, 0.750000f, 0.445312f, /*n:*/0.134098f, 0.990936f, -0.006256f, /*t:*/0.361496f, 0.725770f, + /*v:*/-0.250000f, 0.687500f, 0.703125f, /*n:*/-0.565172f, 0.824396f, 0.029725f, /*t:*/0.850283f, 0.037988f, + /*v:*/-0.265625f, 0.664063f, 0.820312f, /*n:*/-0.555650f, 0.799982f, 0.226356f, /*t:*/0.872379f, 0.037961f, + /*v:*/-0.109375f, 0.734375f, 0.718750f, /*n:*/-0.145940f, 0.981933f, 0.120182f, /*t:*/0.851645f, 0.072586f, + /*v:*/-0.250000f, 0.687500f, 0.703125f, /*n:*/-0.565172f, 0.824396f, 0.029725f, /*t:*/0.850283f, 0.037988f, + /*v:*/-0.109375f, 0.734375f, 0.718750f, /*n:*/-0.145940f, 0.981933f, 0.120182f, /*t:*/0.851645f, 0.072586f, + /*v:*/-0.117188f, 0.734375f, 0.687500f, /*n:*/-0.181524f, 0.982330f, 0.045198f, /*t:*/0.846225f, 0.069472f, + /*v:*/0.109375f, 0.734375f, 0.718750f, /*n:*/0.145940f, 0.981933f, 0.120182f, /*t:*/0.360289f, 0.661790f, + /*v:*/0.265625f, 0.664063f, 0.820312f, /*n:*/0.555650f, 0.799982f, 0.226356f, /*t:*/0.396694f, 0.632155f, + /*v:*/0.250000f, 0.687500f, 0.703125f, /*n:*/0.565172f, 0.824396f, 0.029725f, /*t:*/0.394877f, 0.659320f, + /*v:*/0.109375f, 0.734375f, 0.718750f, /*n:*/0.145940f, 0.981933f, 0.120182f, /*t:*/0.360289f, 0.661790f, + /*v:*/0.250000f, 0.687500f, 0.703125f, /*n:*/0.565172f, 0.824396f, 0.029725f, /*t:*/0.394877f, 0.659320f, + /*v:*/0.117188f, 0.734375f, 0.687500f, /*n:*/0.181524f, 0.982330f, 0.045198f, /*t:*/0.362958f, 0.668567f, + /*v:*/-0.117188f, 0.734375f, 0.687500f, /*n:*/-0.181524f, 0.982330f, 0.045198f, /*t:*/0.314964f, 0.680375f, + /*v:*/-0.078125f, 0.750000f, 0.445312f, /*n:*/-0.134098f, 0.990936f, -0.006256f, /*t:*/0.329500f, 0.733641f, + /*v:*/-0.210938f, 0.710938f, 0.445312f, /*n:*/-0.593677f, 0.797388f, -0.108158f, /*t:*/0.306684f, 0.741189f, + /*v:*/-0.117188f, 0.734375f, 0.687500f, /*n:*/-0.181524f, 0.982330f, 0.045198f, /*t:*/0.314964f, 0.680375f, + /*v:*/-0.210938f, 0.710938f, 0.445312f, /*n:*/-0.593677f, 0.797388f, -0.108158f, /*t:*/0.306684f, 0.741189f, + /*v:*/-0.250000f, 0.687500f, 0.703125f, /*n:*/-0.565172f, 0.824396f, 0.029725f, /*t:*/0.292490f, 0.684509f, + /*v:*/0.210938f, 0.710938f, 0.445312f, /*n:*/0.593677f, 0.797388f, -0.108158f, /*t:*/0.393074f, 0.719936f, + /*v:*/0.078125f, 0.750000f, 0.445312f, /*n:*/0.134098f, 0.990936f, -0.006256f, /*t:*/0.361496f, 0.725770f, + /*v:*/0.117188f, 0.734375f, 0.687500f, /*n:*/0.181524f, 0.982330f, 0.045198f, /*t:*/0.362958f, 0.668567f, + /*v:*/0.210938f, 0.710938f, 0.445312f, /*n:*/0.593677f, 0.797388f, -0.108158f, /*t:*/0.393074f, 0.719936f, + /*v:*/0.117188f, 0.734375f, 0.687500f, /*n:*/0.181524f, 0.982330f, 0.045198f, /*t:*/0.362958f, 0.668567f, + /*v:*/0.250000f, 0.687500f, 0.703125f, /*n:*/0.565172f, 0.824396f, 0.029725f, /*t:*/0.394877f, 0.659320f, + /*v:*/-0.234375f, 0.632813f, 0.914062f, /*n:*/-0.350230f, 0.684683f, 0.639149f, /*t:*/0.894170f, 0.045614f, + /*v:*/-0.117188f, 0.710938f, 0.835937f, /*n:*/-0.130711f, 0.938810f, 0.318644f, /*t:*/0.874106f, 0.074164f, + /*v:*/-0.265625f, 0.664063f, 0.820312f, /*n:*/-0.555650f, 0.799982f, 0.226356f, /*t:*/0.872379f, 0.037961f, + /*v:*/-0.117188f, 0.710938f, 0.835937f, /*n:*/-0.130711f, 0.938810f, 0.318644f, /*t:*/0.874106f, 0.074164f, + /*v:*/-0.109375f, 0.734375f, 0.718750f, /*n:*/-0.145940f, 0.981933f, 0.120182f, /*t:*/0.851645f, 0.072586f, + /*v:*/-0.265625f, 0.664063f, 0.820312f, /*n:*/-0.555650f, 0.799982f, 0.226356f, /*t:*/0.872379f, 0.037961f, + /*v:*/0.109375f, 0.734375f, 0.718750f, /*n:*/0.145940f, 0.981933f, 0.120182f, /*t:*/0.360289f, 0.661790f, + /*v:*/0.117188f, 0.710938f, 0.835937f, /*n:*/0.130711f, 0.938810f, 0.318644f, /*t:*/0.360506f, 0.635019f, + /*v:*/0.265625f, 0.664063f, 0.820312f, /*n:*/0.555650f, 0.799982f, 0.226356f, /*t:*/0.396694f, 0.632155f, + /*v:*/0.117188f, 0.710938f, 0.835937f, /*n:*/0.130711f, 0.938810f, 0.318644f, /*t:*/0.360506f, 0.635019f, + /*v:*/0.234375f, 0.632813f, 0.914062f, /*n:*/0.350230f, 0.684683f, 0.639149f, /*t:*/0.390591f, 0.612902f, + /*v:*/0.265625f, 0.664063f, 0.820312f, /*n:*/0.555650f, 0.799982f, 0.226356f, /*t:*/0.396694f, 0.632155f, + /*v:*/-0.164062f, 0.632813f, 0.929688f, /*n:*/-0.155370f, 0.632282f, 0.758965f, /*t:*/0.899989f, 0.060819f, + /*v:*/-0.062500f, 0.695313f, 0.882812f, /*n:*/0.058870f, 0.923734f, 0.378430f, /*t:*/0.886831f, 0.086019f, + /*v:*/-0.117188f, 0.710938f, 0.835937f, /*n:*/-0.130711f, 0.938810f, 0.318644f, /*t:*/0.874106f, 0.074164f, + /*v:*/-0.164062f, 0.632813f, 0.929688f, /*n:*/-0.155370f, 0.632282f, 0.758965f, /*t:*/0.899989f, 0.060819f, + /*v:*/-0.117188f, 0.710938f, 0.835937f, /*n:*/-0.130711f, 0.938810f, 0.318644f, /*t:*/0.874106f, 0.074164f, + /*v:*/-0.234375f, 0.632813f, 0.914062f, /*n:*/-0.350230f, 0.684683f, 0.639149f, /*t:*/0.894170f, 0.045614f, + /*v:*/0.117188f, 0.710938f, 0.835937f, /*n:*/0.130711f, 0.938810f, 0.318644f, /*t:*/0.885080f, 0.122335f, + /*v:*/0.062500f, 0.695313f, 0.882812f, /*n:*/-0.058870f, 0.923734f, 0.378430f, /*t:*/0.892683f, 0.111710f, + /*v:*/0.164062f, 0.632813f, 0.929688f, /*n:*/0.155370f, 0.632282f, 0.758965f, /*t:*/0.915352f, 0.128258f, + /*v:*/0.117188f, 0.710938f, 0.835937f, /*n:*/0.130711f, 0.938810f, 0.318644f, /*t:*/0.885080f, 0.122335f, + /*v:*/0.164062f, 0.632813f, 0.929688f, /*n:*/0.155370f, 0.632282f, 0.758965f, /*t:*/0.915352f, 0.128258f, + /*v:*/0.234375f, 0.632813f, 0.914062f, /*n:*/0.350230f, 0.684683f, 0.639149f, /*t:*/0.916117f, 0.141955f, + /*v:*/0.000000f, 0.640625f, 0.945312f, /*n:*/0.000000f, 0.631550f, 0.775323f, /*t:*/0.908906f, 0.096116f, + /*v:*/0.000000f, 0.687500f, 0.890625f, /*n:*/0.000000f, 0.938017f, 0.346507f, /*t:*/0.892312f, 0.098418f, + /*v:*/-0.062500f, 0.695313f, 0.882812f, /*n:*/0.058870f, 0.923734f, 0.378430f, /*t:*/0.886831f, 0.086019f, + /*v:*/0.000000f, 0.640625f, 0.945312f, /*n:*/0.000000f, 0.631550f, 0.775323f, /*t:*/0.908906f, 0.096116f, + /*v:*/-0.062500f, 0.695313f, 0.882812f, /*n:*/0.058870f, 0.923734f, 0.378430f, /*t:*/0.886831f, 0.086019f, + /*v:*/-0.164062f, 0.632813f, 0.929688f, /*n:*/-0.155370f, 0.632282f, 0.758965f, /*t:*/0.899989f, 0.060819f, + /*v:*/0.062500f, 0.695313f, 0.882812f, /*n:*/-0.058870f, 0.923734f, 0.378430f, /*t:*/0.892683f, 0.111710f, + /*v:*/0.000000f, 0.687500f, 0.890625f, /*n:*/0.000000f, 0.938017f, 0.346507f, /*t:*/0.892312f, 0.098418f, + /*v:*/0.000000f, 0.640625f, 0.945312f, /*n:*/0.000000f, 0.631550f, 0.775323f, /*t:*/0.908906f, 0.096116f, + /*v:*/0.062500f, 0.695313f, 0.882812f, /*n:*/-0.058870f, 0.923734f, 0.378430f, /*t:*/0.892683f, 0.111710f, + /*v:*/0.000000f, 0.640625f, 0.945312f, /*n:*/0.000000f, 0.631550f, 0.775323f, /*t:*/0.908906f, 0.096116f, + /*v:*/0.164062f, 0.632813f, 0.929688f, /*n:*/0.155370f, 0.632282f, 0.758965f, /*t:*/0.915352f, 0.128258f, + /*v:*/-0.132812f, 0.757812f, -0.210938f, /*n:*/0.200568f, 0.970306f, 0.134953f, /*t:*/0.672695f, 0.537997f, + /*v:*/-0.164062f, 0.750000f, -0.140625f, /*n:*/0.239296f, 0.923032f, 0.301187f, /*t:*/0.658765f, 0.546709f, + /*v:*/0.000000f, 0.765625f, -0.210938f, /*n:*/0.000000f, 0.975036f, 0.221992f, /*t:*/0.664391f, 0.512095f, + /*v:*/-0.164062f, 0.750000f, -0.140625f, /*n:*/0.239296f, 0.923032f, 0.301187f, /*t:*/0.658765f, 0.546709f, + /*v:*/0.000000f, 0.726562f, -0.046875f, /*n:*/0.000000f, 0.997925f, -0.064272f, /*t:*/0.627723f, 0.515359f, + /*v:*/0.000000f, 0.765625f, -0.210938f, /*n:*/0.000000f, 0.975036f, 0.221992f, /*t:*/0.664391f, 0.512095f, + /*v:*/0.000000f, 0.726562f, -0.046875f, /*n:*/0.000000f, 0.997925f, -0.064272f, /*t:*/0.627723f, 0.515359f, + /*v:*/0.164062f, 0.750000f, -0.140625f, /*n:*/-0.239296f, 0.923032f, 0.301187f, /*t:*/0.638552f, 0.480532f, + /*v:*/0.000000f, 0.765625f, -0.210938f, /*n:*/0.000000f, 0.975036f, 0.221992f, /*t:*/0.664391f, 0.512095f, + /*v:*/0.164062f, 0.750000f, -0.140625f, /*n:*/-0.239296f, 0.923032f, 0.301187f, /*t:*/0.638552f, 0.480532f, + /*v:*/0.132812f, 0.757812f, -0.210938f, /*n:*/-0.200568f, 0.970306f, 0.134953f, /*t:*/0.656332f, 0.484425f, + /*v:*/0.000000f, 0.765625f, -0.210938f, /*n:*/0.000000f, 0.975036f, 0.221992f, /*t:*/0.664391f, 0.512095f, + /*v:*/0.000000f, 0.765625f, -0.210938f, /*n:*/0.000000f, 0.975036f, 0.221992f, /*t:*/0.629319f, 0.798969f, + /*v:*/0.000000f, 0.820312f, -0.351563f, /*n:*/0.000000f, 0.996551f, 0.082736f, /*t:*/0.601249f, 0.784024f, + /*v:*/-0.125000f, 0.765625f, -0.304688f, /*n:*/-0.031587f, 0.983459f, 0.178167f, /*t:*/0.623798f, 0.762581f, + /*v:*/0.000000f, 0.765625f, -0.210938f, /*n:*/0.000000f, 0.975036f, 0.221992f, /*t:*/0.629319f, 0.798969f, + /*v:*/-0.125000f, 0.765625f, -0.304688f, /*n:*/-0.031587f, 0.983459f, 0.178167f, /*t:*/0.623798f, 0.762581f, + /*v:*/-0.132812f, 0.757812f, -0.210938f, /*n:*/0.200568f, 0.970306f, 0.134953f, /*t:*/0.637309f, 0.771561f, + /*v:*/0.125000f, 0.765625f, -0.304688f, /*n:*/0.031587f, 0.983459f, 0.178167f, /*t:*/0.677994f, 0.482494f, + /*v:*/0.000000f, 0.820312f, -0.351563f, /*n:*/0.000000f, 0.996551f, 0.082736f, /*t:*/0.695486f, 0.511698f, + /*v:*/0.000000f, 0.765625f, -0.210938f, /*n:*/0.000000f, 0.975036f, 0.221992f, /*t:*/0.664391f, 0.512095f, + /*v:*/0.125000f, 0.765625f, -0.304688f, /*n:*/0.031587f, 0.983459f, 0.178167f, /*t:*/0.677994f, 0.482494f, + /*v:*/0.000000f, 0.765625f, -0.210938f, /*n:*/0.000000f, 0.975036f, 0.221992f, /*t:*/0.664391f, 0.512095f, + /*v:*/0.132812f, 0.757812f, -0.210938f, /*n:*/-0.200568f, 0.970306f, 0.134953f, /*t:*/0.656332f, 0.484425f, + /*v:*/0.000000f, 0.820312f, -0.351563f, /*n:*/0.000000f, 0.996551f, 0.082736f, /*t:*/0.601249f, 0.784024f, + /*v:*/-0.101562f, 0.843750f, -0.429688f, /*n:*/0.061098f, 0.997803f, 0.025239f, /*t:*/0.591954f, 0.754742f, + /*v:*/-0.125000f, 0.765625f, -0.304688f, /*n:*/-0.031587f, 0.983459f, 0.178167f, /*t:*/0.623798f, 0.762581f, + /*v:*/-0.101562f, 0.843750f, -0.429688f, /*n:*/0.061098f, 0.997803f, 0.025239f, /*t:*/0.591954f, 0.754742f, + /*v:*/-0.164062f, 0.773438f, -0.414063f, /*n:*/-0.367840f, 0.885556f, 0.283608f, /*t:*/0.610635f, 0.742196f, + /*v:*/-0.125000f, 0.765625f, -0.304688f, /*n:*/-0.031587f, 0.983459f, 0.178167f, /*t:*/0.623798f, 0.762581f, + /*v:*/0.164062f, 0.773438f, -0.414063f, /*n:*/0.367840f, 0.885556f, 0.283608f, /*t:*/0.700320f, 0.470377f, + /*v:*/0.101562f, 0.843750f, -0.429688f, /*n:*/-0.061098f, 0.997803f, 0.025239f, /*t:*/0.706615f, 0.490208f, + /*v:*/0.125000f, 0.765625f, -0.304688f, /*n:*/0.031587f, 0.983459f, 0.178167f, /*t:*/0.677994f, 0.482494f, + /*v:*/0.101562f, 0.843750f, -0.429688f, /*n:*/-0.061098f, 0.997803f, 0.025239f, /*t:*/0.706615f, 0.490208f, + /*v:*/0.000000f, 0.820312f, -0.351563f, /*n:*/0.000000f, 0.996551f, 0.082736f, /*t:*/0.695486f, 0.511698f, + /*v:*/0.125000f, 0.765625f, -0.304688f, /*n:*/0.031587f, 0.983459f, 0.178167f, /*t:*/0.677994f, 0.482494f, + /*v:*/0.000000f, 0.726562f, -0.046875f, /*n:*/0.000000f, 0.997925f, -0.064272f, /*t:*/0.627723f, 0.515359f, + /*v:*/-0.164062f, 0.750000f, -0.140625f, /*n:*/0.239296f, 0.923032f, 0.301187f, /*t:*/0.658765f, 0.546709f, + /*v:*/-0.203125f, 0.742188f, -0.093750f, /*n:*/0.128178f, 0.947752f, 0.292001f, /*t:*/0.650643f, 0.555898f, + /*v:*/0.000000f, 0.726562f, -0.046875f, /*n:*/0.000000f, 0.997925f, -0.064272f, /*t:*/0.627723f, 0.515359f, + /*v:*/-0.203125f, 0.742188f, -0.093750f, /*n:*/0.128178f, 0.947752f, 0.292001f, /*t:*/0.650643f, 0.555898f, + /*v:*/-0.125000f, 0.812500f, 0.101562f, /*n:*/-0.056093f, 0.962920f, 0.263863f, /*t:*/0.600341f, 0.557249f, + /*v:*/0.203125f, 0.742188f, -0.093750f, /*n:*/-0.128178f, 0.947752f, 0.292001f, /*t:*/0.625616f, 0.473965f, + /*v:*/0.164062f, 0.750000f, -0.140625f, /*n:*/-0.239296f, 0.923032f, 0.301187f, /*t:*/0.638552f, 0.480532f, + /*v:*/0.000000f, 0.726562f, -0.046875f, /*n:*/0.000000f, 0.997925f, -0.064272f, /*t:*/0.627723f, 0.515359f, + /*v:*/0.203125f, 0.742188f, -0.093750f, /*n:*/-0.128178f, 0.947752f, 0.292001f, /*t:*/0.625616f, 0.473965f, + /*v:*/0.000000f, 0.726562f, -0.046875f, /*n:*/0.000000f, 0.997925f, -0.064272f, /*t:*/0.627723f, 0.515359f, + /*v:*/0.125000f, 0.812500f, 0.101562f, /*n:*/0.056093f, 0.962920f, 0.263863f, /*t:*/0.584940f, 0.506828f, + /*v:*/-0.398438f, 0.671875f, 0.046875f, /*n:*/-0.344279f, 0.763298f, 0.546617f, /*t:*/0.631824f, 0.593918f, + /*v:*/-0.125000f, 0.812500f, 0.101562f, /*n:*/-0.056093f, 0.962920f, 0.263863f, /*t:*/0.600341f, 0.557249f, + /*v:*/-0.203125f, 0.742188f, -0.093750f, /*n:*/0.128178f, 0.947752f, 0.292001f, /*t:*/0.650643f, 0.555898f, + /*v:*/-0.398438f, 0.671875f, 0.046875f, /*n:*/-0.344279f, 0.763298f, 0.546617f, /*t:*/0.631824f, 0.593918f, + /*v:*/-0.203125f, 0.742188f, -0.093750f, /*n:*/0.128178f, 0.947752f, 0.292001f, /*t:*/0.650643f, 0.555898f, + /*v:*/-0.375000f, 0.703125f, -0.015625f, /*n:*/-0.158940f, 0.851924f, 0.498917f, /*t:*/0.644092f, 0.589801f, + /*v:*/0.203125f, 0.742188f, -0.093750f, /*n:*/-0.128178f, 0.947752f, 0.292001f, /*t:*/0.625616f, 0.473965f, + /*v:*/0.125000f, 0.812500f, 0.101562f, /*n:*/0.056093f, 0.962920f, 0.263863f, /*t:*/0.584940f, 0.506828f, + /*v:*/0.398438f, 0.671875f, 0.046875f, /*n:*/0.344279f, 0.763298f, 0.546617f, /*t:*/0.582735f, 0.433203f, + /*v:*/0.203125f, 0.742188f, -0.093750f, /*n:*/-0.128178f, 0.947752f, 0.292001f, /*t:*/0.625616f, 0.473965f, + /*v:*/0.398438f, 0.671875f, 0.046875f, /*n:*/0.344279f, 0.763298f, 0.546617f, /*t:*/0.582735f, 0.433203f, + /*v:*/0.375000f, 0.703125f, -0.015625f, /*n:*/0.158940f, 0.851924f, 0.498917f, /*t:*/0.597890f, 0.438539f, + /*v:*/-0.617188f, 0.625000f, -0.054688f, /*n:*/-0.499130f, 0.780663f, 0.376049f, /*t:*/0.706128f, 0.687268f, + /*v:*/-0.398438f, 0.671875f, 0.046875f, /*n:*/-0.344279f, 0.763298f, 0.546617f, /*t:*/0.698916f, 0.744792f, + /*v:*/-0.492188f, 0.671875f, -0.062500f, /*n:*/-0.427900f, 0.815577f, 0.389508f, /*t:*/0.689939f, 0.713022f, + /*v:*/-0.398438f, 0.671875f, 0.046875f, /*n:*/-0.344279f, 0.763298f, 0.546617f, /*t:*/0.698916f, 0.744792f, + /*v:*/-0.375000f, 0.703125f, -0.015625f, /*n:*/-0.158940f, 0.851924f, 0.498917f, /*t:*/0.683946f, 0.743107f, + /*v:*/-0.492188f, 0.671875f, -0.062500f, /*n:*/-0.427900f, 0.815577f, 0.389508f, /*t:*/0.689939f, 0.713022f, + /*v:*/0.375000f, 0.703125f, -0.015625f, /*n:*/0.158940f, 0.851924f, 0.498917f, /*t:*/0.597890f, 0.438539f, + /*v:*/0.398438f, 0.671875f, 0.046875f, /*n:*/0.344279f, 0.763298f, 0.546617f, /*t:*/0.582735f, 0.433203f, + /*v:*/0.492188f, 0.671875f, -0.062500f, /*n:*/0.427900f, 0.815577f, 0.389508f, /*t:*/0.601814f, 0.409172f, + /*v:*/0.398438f, 0.671875f, 0.046875f, /*n:*/0.344279f, 0.763298f, 0.546617f, /*t:*/0.582735f, 0.433203f, + /*v:*/0.617188f, 0.625000f, -0.054688f, /*n:*/0.499130f, 0.780663f, 0.376049f, /*t:*/0.593076f, 0.379022f, + /*v:*/0.492188f, 0.671875f, -0.062500f, /*n:*/0.427900f, 0.815577f, 0.389508f, /*t:*/0.601814f, 0.409172f, + /*v:*/-0.726562f, 0.601562f, -0.203125f, /*n:*/-0.566546f, 0.759819f, 0.318796f, /*t:*/0.697643f, 0.647307f, + /*v:*/-0.617188f, 0.625000f, -0.054688f, /*n:*/-0.499130f, 0.780663f, 0.376049f, /*t:*/0.706128f, 0.687268f, + /*v:*/-0.625000f, 0.648438f, -0.187500f, /*n:*/-0.460219f, 0.872280f, 0.165105f, /*t:*/0.685496f, 0.670942f, + /*v:*/-0.617188f, 0.625000f, -0.054688f, /*n:*/-0.499130f, 0.780663f, 0.376049f, /*t:*/0.706128f, 0.687268f, + /*v:*/-0.492188f, 0.671875f, -0.062500f, /*n:*/-0.427900f, 0.815577f, 0.389508f, /*t:*/0.689939f, 0.713022f, + /*v:*/-0.625000f, 0.648438f, -0.187500f, /*n:*/-0.460219f, 0.872280f, 0.165105f, /*t:*/0.685496f, 0.670942f, + /*v:*/0.492188f, 0.671875f, -0.062500f, /*n:*/0.427900f, 0.815577f, 0.389508f, /*t:*/0.601814f, 0.409172f, + /*v:*/0.617188f, 0.625000f, -0.054688f, /*n:*/0.499130f, 0.780663f, 0.376049f, /*t:*/0.593076f, 0.379022f, + /*v:*/0.625000f, 0.648438f, -0.187500f, /*n:*/0.460219f, 0.872280f, 0.165105f, /*t:*/0.622406f, 0.373878f, + /*v:*/0.617188f, 0.625000f, -0.054688f, /*n:*/0.499130f, 0.780663f, 0.376049f, /*t:*/0.593076f, 0.379022f, + /*v:*/0.726562f, 0.601562f, -0.203125f, /*n:*/0.566546f, 0.759819f, 0.318796f, /*t:*/0.620437f, 0.347357f, + /*v:*/0.625000f, 0.648438f, -0.187500f, /*n:*/0.460219f, 0.872280f, 0.165105f, /*t:*/0.622406f, 0.373878f, + /*v:*/-0.742188f, 0.656250f, -0.375000f, /*n:*/-0.460707f, 0.875637f, 0.144810f, /*t:*/0.666464f, 0.625574f, + /*v:*/-0.726562f, 0.601562f, -0.203125f, /*n:*/-0.566546f, 0.759819f, 0.318796f, /*t:*/0.697643f, 0.647307f, + /*v:*/-0.640625f, 0.648438f, -0.296875f, /*n:*/-0.358806f, 0.925748f, 0.119175f, /*t:*/0.672714f, 0.655194f, + /*v:*/-0.726562f, 0.601562f, -0.203125f, /*n:*/-0.566546f, 0.759819f, 0.318796f, /*t:*/0.697643f, 0.647307f, + /*v:*/-0.625000f, 0.648438f, -0.187500f, /*n:*/-0.460219f, 0.872280f, 0.165105f, /*t:*/0.685496f, 0.670942f, + /*v:*/-0.640625f, 0.648438f, -0.296875f, /*n:*/-0.358806f, 0.925748f, 0.119175f, /*t:*/0.672714f, 0.655194f, + /*v:*/0.625000f, 0.648438f, -0.187500f, /*n:*/0.460219f, 0.872280f, 0.165105f, /*t:*/0.622406f, 0.373878f, + /*v:*/0.726562f, 0.601562f, -0.203125f, /*n:*/0.566546f, 0.759819f, 0.318796f, /*t:*/0.620437f, 0.347357f, + /*v:*/0.640625f, 0.648438f, -0.296875f, /*n:*/0.358806f, 0.925748f, 0.119175f, /*t:*/0.646298f, 0.365604f, + /*v:*/0.726562f, 0.601562f, -0.203125f, /*n:*/0.566546f, 0.759819f, 0.318796f, /*t:*/0.620437f, 0.347357f, + /*v:*/0.742188f, 0.656250f, -0.375000f, /*n:*/0.460707f, 0.875637f, 0.144810f, /*t:*/0.657672f, 0.342345f, + /*v:*/0.640625f, 0.648438f, -0.296875f, /*n:*/0.358806f, 0.925748f, 0.119175f, /*t:*/0.646298f, 0.365604f, + /*v:*/-0.687500f, 0.726562f, -0.414063f, /*n:*/-0.480117f, 0.857814f, 0.183264f, /*t:*/0.645262f, 0.633830f, + /*v:*/-0.742188f, 0.656250f, -0.375000f, /*n:*/-0.460707f, 0.875637f, 0.144810f, /*t:*/0.666464f, 0.625574f, + /*v:*/-0.601562f, 0.664062f, -0.375000f, /*n:*/-0.225410f, 0.904996f, 0.360759f, /*t:*/0.658093f, 0.654584f, + /*v:*/-0.742188f, 0.656250f, -0.375000f, /*n:*/-0.460707f, 0.875637f, 0.144810f, /*t:*/0.666464f, 0.625574f, + /*v:*/-0.640625f, 0.648438f, -0.296875f, /*n:*/-0.358806f, 0.925748f, 0.119175f, /*t:*/0.672714f, 0.655194f, + /*v:*/-0.601562f, 0.664062f, -0.375000f, /*n:*/-0.225410f, 0.904996f, 0.360759f, /*t:*/0.658093f, 0.654584f, + /*v:*/0.640625f, 0.648438f, -0.296875f, /*n:*/0.358806f, 0.925748f, 0.119175f, /*t:*/0.769780f, 0.710671f, + /*v:*/0.742188f, 0.656250f, -0.375000f, /*n:*/0.460707f, 0.875637f, 0.144810f, /*t:*/0.750796f, 0.717389f, + /*v:*/0.601562f, 0.664062f, -0.375000f, /*n:*/0.225410f, 0.904996f, 0.360759f, /*t:*/0.764375f, 0.691581f, + /*v:*/0.742188f, 0.656250f, -0.375000f, /*n:*/0.460707f, 0.875637f, 0.144810f, /*t:*/0.750796f, 0.717389f, + /*v:*/0.687500f, 0.726562f, -0.414063f, /*n:*/0.480117f, 0.857814f, 0.183264f, /*t:*/0.739831f, 0.699148f, + /*v:*/0.601562f, 0.664062f, -0.375000f, /*n:*/0.225410f, 0.904996f, 0.360759f, /*t:*/0.764375f, 0.691581f, + /*v:*/-0.437500f, 0.796875f, -0.546875f, /*n:*/-0.308451f, 0.951201f, -0.003845f, /*t:*/0.602939f, 0.671392f, + /*v:*/-0.687500f, 0.726562f, -0.414063f, /*n:*/-0.480117f, 0.857814f, 0.183264f, /*t:*/0.645262f, 0.633830f, + /*v:*/-0.429688f, 0.718750f, -0.437500f, /*n:*/-0.219001f, 0.975005f, -0.037141f, /*t:*/0.631326f, 0.683849f, + /*v:*/-0.687500f, 0.726562f, -0.414063f, /*n:*/-0.480117f, 0.857814f, 0.183264f, /*t:*/0.645262f, 0.633830f, + /*v:*/-0.601562f, 0.664062f, -0.375000f, /*n:*/-0.225410f, 0.904996f, 0.360759f, /*t:*/0.658093f, 0.654584f, + /*v:*/-0.429688f, 0.718750f, -0.437500f, /*n:*/-0.219001f, 0.975005f, -0.037141f, /*t:*/0.631326f, 0.683849f, + /*v:*/0.601562f, 0.664062f, -0.375000f, /*n:*/0.225410f, 0.904996f, 0.360759f, /*t:*/0.764375f, 0.691581f, + /*v:*/0.687500f, 0.726562f, -0.414063f, /*n:*/0.480117f, 0.857814f, 0.183264f, /*t:*/0.739831f, 0.699148f, + /*v:*/0.429688f, 0.718750f, -0.437500f, /*n:*/0.219001f, 0.975005f, -0.037141f, /*t:*/0.767011f, 0.649226f, + /*v:*/0.687500f, 0.726562f, -0.414063f, /*n:*/0.480117f, 0.857814f, 0.183264f, /*t:*/0.739831f, 0.699148f, + /*v:*/0.437500f, 0.796875f, -0.546875f, /*n:*/0.308451f, 0.951201f, -0.003845f, /*t:*/0.741910f, 0.631756f, + /*v:*/0.429688f, 0.718750f, -0.437500f, /*n:*/0.219001f, 0.975005f, -0.037141f, /*t:*/0.767011f, 0.649226f, + /*v:*/-0.312500f, 0.835938f, -0.640625f, /*n:*/-0.266579f, 0.939146f, -0.216590f, /*t:*/0.577630f, 0.687122f, + /*v:*/-0.437500f, 0.796875f, -0.546875f, /*n:*/-0.308451f, 0.951201f, -0.003845f, /*t:*/0.602939f, 0.671392f, + /*v:*/-0.328125f, 0.742188f, -0.476563f, /*n:*/-0.149022f, 0.976714f, 0.154149f, /*t:*/0.616975f, 0.700705f, + /*v:*/-0.437500f, 0.796875f, -0.546875f, /*n:*/-0.308451f, 0.951201f, -0.003845f, /*t:*/0.602939f, 0.671392f, + /*v:*/-0.429688f, 0.718750f, -0.437500f, /*n:*/-0.219001f, 0.975005f, -0.037141f, /*t:*/0.631326f, 0.683849f, + /*v:*/-0.328125f, 0.742188f, -0.476563f, /*n:*/-0.149022f, 0.976714f, 0.154149f, /*t:*/0.616975f, 0.700705f, + /*v:*/0.429688f, 0.718750f, -0.437500f, /*n:*/0.219001f, 0.975005f, -0.037141f, /*t:*/0.767011f, 0.649226f, + /*v:*/0.437500f, 0.796875f, -0.546875f, /*n:*/0.308451f, 0.951201f, -0.003845f, /*t:*/0.741910f, 0.631756f, + /*v:*/0.328125f, 0.742188f, -0.476563f, /*n:*/0.149022f, 0.976714f, 0.154149f, /*t:*/0.770099f, 0.624215f, + /*v:*/0.437500f, 0.796875f, -0.546875f, /*n:*/0.308451f, 0.951201f, -0.003845f, /*t:*/0.741910f, 0.631756f, + /*v:*/0.312500f, 0.835938f, -0.640625f, /*n:*/0.266579f, 0.939146f, -0.216590f, /*t:*/0.739893f, 0.593918f, + /*v:*/0.328125f, 0.742188f, -0.476563f, /*n:*/0.149022f, 0.976714f, 0.154149f, /*t:*/0.770099f, 0.624215f, + /*v:*/-0.312500f, 0.835938f, -0.640625f, /*n:*/-0.266579f, 0.939146f, -0.216590f, /*t:*/0.577630f, 0.687122f, + /*v:*/-0.328125f, 0.742188f, -0.476563f, /*n:*/-0.149022f, 0.976714f, 0.154149f, /*t:*/0.616975f, 0.700705f, + /*v:*/-0.250000f, 0.757812f, -0.468750f, /*n:*/-0.258156f, 0.957762f, 0.126499f, /*t:*/0.611093f, 0.717962f, + /*v:*/-0.312500f, 0.835938f, -0.640625f, /*n:*/-0.266579f, 0.939146f, -0.216590f, /*t:*/0.577630f, 0.687122f, + /*v:*/-0.250000f, 0.757812f, -0.468750f, /*n:*/-0.258156f, 0.957762f, 0.126499f, /*t:*/0.611093f, 0.717962f, + /*v:*/-0.203125f, 0.851562f, -0.617188f, /*n:*/0.157384f, 0.973449f, -0.166021f, /*t:*/0.572161f, 0.712579f, + /*v:*/0.250000f, 0.757812f, -0.468750f, /*n:*/0.258156f, 0.957762f, 0.126499f, /*t:*/0.707699f, 0.448715f, + /*v:*/0.328125f, 0.742188f, -0.476563f, /*n:*/0.149022f, 0.976714f, 0.154149f, /*t:*/0.704907f, 0.430824f, + /*v:*/0.312500f, 0.835938f, -0.640625f, /*n:*/0.266579f, 0.939146f, -0.216590f, /*t:*/0.741677f, 0.436901f, + /*v:*/0.250000f, 0.757812f, -0.468750f, /*n:*/0.258156f, 0.957762f, 0.126499f, /*t:*/0.707699f, 0.448715f, + /*v:*/0.312500f, 0.835938f, -0.640625f, /*n:*/0.266579f, 0.939146f, -0.216590f, /*t:*/0.741677f, 0.436901f, + /*v:*/0.203125f, 0.851562f, -0.617188f, /*n:*/-0.157384f, 0.973449f, -0.166021f, /*t:*/0.742843f, 0.461827f, + /*v:*/-0.203125f, 0.851562f, -0.617188f, /*n:*/0.157384f, 0.973449f, -0.166021f, /*t:*/0.572161f, 0.712579f, + /*v:*/-0.250000f, 0.757812f, -0.468750f, /*n:*/-0.258156f, 0.957762f, 0.126499f, /*t:*/0.611093f, 0.717962f, + /*v:*/-0.101562f, 0.843750f, -0.429688f, /*n:*/0.061098f, 0.997803f, 0.025239f, /*t:*/0.591954f, 0.754742f, + /*v:*/-0.250000f, 0.757812f, -0.468750f, /*n:*/-0.258156f, 0.957762f, 0.126499f, /*t:*/0.611093f, 0.717962f, + /*v:*/-0.164062f, 0.773438f, -0.414063f, /*n:*/-0.367840f, 0.885556f, 0.283608f, /*t:*/0.610635f, 0.742196f, + /*v:*/-0.101562f, 0.843750f, -0.429688f, /*n:*/0.061098f, 0.997803f, 0.025239f, /*t:*/0.591954f, 0.754742f, + /*v:*/0.164062f, 0.773438f, -0.414063f, /*n:*/0.367840f, 0.885556f, 0.283608f, /*t:*/0.700320f, 0.470377f, + /*v:*/0.250000f, 0.757812f, -0.468750f, /*n:*/0.258156f, 0.957762f, 0.126499f, /*t:*/0.707699f, 0.448715f, + /*v:*/0.101562f, 0.843750f, -0.429688f, /*n:*/-0.061098f, 0.997803f, 0.025239f, /*t:*/0.706615f, 0.490208f, + /*v:*/0.250000f, 0.757812f, -0.468750f, /*n:*/0.258156f, 0.957762f, 0.126499f, /*t:*/0.707699f, 0.448715f, + /*v:*/0.203125f, 0.851562f, -0.617188f, /*n:*/-0.157384f, 0.973449f, -0.166021f, /*t:*/0.742843f, 0.461827f, + /*v:*/0.101562f, 0.843750f, -0.429688f, /*n:*/-0.061098f, 0.997803f, 0.025239f, /*t:*/0.706615f, 0.490208f, + /*v:*/0.000000f, 0.820312f, -0.351563f, /*n:*/0.000000f, 0.996551f, 0.082736f, /*t:*/0.134627f, 0.830386f, + /*v:*/0.000000f, 0.742188f, -0.429688f, /*n:*/0.000000f, 0.267281f, -0.963591f, /*t:*/0.154466f, 0.841478f, + /*v:*/-0.101562f, 0.843750f, -0.429688f, /*n:*/0.061098f, 0.997803f, 0.025239f, /*t:*/0.128226f, 0.860341f, + /*v:*/0.000000f, 0.742188f, -0.429688f, /*n:*/0.000000f, 0.267281f, -0.963591f, /*t:*/0.154466f, 0.841478f, + /*v:*/-0.062500f, 0.750000f, -0.492188f, /*n:*/0.824183f, 0.147313f, -0.546770f, /*t:*/0.153348f, 0.862257f, + /*v:*/-0.101562f, 0.843750f, -0.429688f, /*n:*/0.061098f, 0.997803f, 0.025239f, /*t:*/0.128226f, 0.860341f, + /*v:*/0.062500f, 0.750000f, -0.492188f, /*n:*/-0.824183f, 0.147313f, -0.546770f, /*t:*/0.247101f, 0.845223f, + /*v:*/0.000000f, 0.742188f, -0.429688f, /*n:*/0.000000f, 0.267281f, -0.963591f, /*t:*/0.245768f, 0.824396f, + /*v:*/0.101562f, 0.843750f, -0.429688f, /*n:*/-0.061098f, 0.997803f, 0.025239f, /*t:*/0.271894f, 0.840659f, + /*v:*/0.000000f, 0.742188f, -0.429688f, /*n:*/0.000000f, 0.267281f, -0.963591f, /*t:*/0.245768f, 0.824396f, + /*v:*/0.000000f, 0.820312f, -0.351563f, /*n:*/0.000000f, 0.996551f, 0.082736f, /*t:*/0.266469f, 0.810963f, + /*v:*/0.101562f, 0.843750f, -0.429688f, /*n:*/-0.061098f, 0.997803f, 0.025239f, /*t:*/0.271894f, 0.840659f, + /*v:*/-0.101562f, 0.843750f, -0.429688f, /*n:*/0.061098f, 0.997803f, 0.025239f, /*t:*/0.128226f, 0.860341f, + /*v:*/-0.062500f, 0.750000f, -0.492188f, /*n:*/0.824183f, 0.147313f, -0.546770f, /*t:*/0.153348f, 0.862257f, + /*v:*/-0.203125f, 0.851562f, -0.617188f, /*n:*/0.157384f, 0.973449f, -0.166021f, /*t:*/0.139503f, 0.909401f, + /*v:*/-0.062500f, 0.750000f, -0.492188f, /*n:*/0.824183f, 0.147313f, -0.546770f, /*t:*/0.153348f, 0.862257f, + /*v:*/-0.156250f, 0.757812f, -0.718750f, /*n:*/0.605060f, 0.209754f, -0.768029f, /*t:*/0.171514f, 0.917201f, + /*v:*/-0.203125f, 0.851562f, -0.617188f, /*n:*/0.157384f, 0.973449f, -0.166021f, /*t:*/0.139503f, 0.909401f, + /*v:*/0.156250f, 0.757812f, -0.718750f, /*n:*/-0.605060f, 0.209754f, -0.768029f, /*t:*/0.243864f, 0.900494f, + /*v:*/0.062500f, 0.750000f, -0.492188f, /*n:*/-0.824183f, 0.147313f, -0.546770f, /*t:*/0.247101f, 0.845223f, + /*v:*/0.203125f, 0.851562f, -0.617188f, /*n:*/-0.157384f, 0.973449f, -0.166021f, /*t:*/0.270125f, 0.890030f, + /*v:*/0.062500f, 0.750000f, -0.492188f, /*n:*/-0.824183f, 0.147313f, -0.546770f, /*t:*/0.247101f, 0.845223f, + /*v:*/0.101562f, 0.843750f, -0.429688f, /*n:*/-0.061098f, 0.997803f, 0.025239f, /*t:*/0.271894f, 0.840659f, + /*v:*/0.203125f, 0.851562f, -0.617188f, /*n:*/-0.157384f, 0.973449f, -0.166021f, /*t:*/0.270125f, 0.890030f, + /*v:*/-0.203125f, 0.851562f, -0.617188f, /*n:*/0.157384f, 0.973449f, -0.166021f, /*t:*/0.139503f, 0.909401f, + /*v:*/-0.156250f, 0.757812f, -0.718750f, /*n:*/0.605060f, 0.209754f, -0.768029f, /*t:*/0.171514f, 0.917201f, + /*v:*/-0.312500f, 0.835938f, -0.640625f, /*n:*/-0.266579f, 0.939146f, -0.216590f, /*t:*/0.128136f, 0.929167f, + /*v:*/-0.156250f, 0.757812f, -0.718750f, /*n:*/0.605060f, 0.209754f, -0.768029f, /*t:*/0.171514f, 0.917201f, + /*v:*/-0.320312f, 0.734375f, -0.757813f, /*n:*/-0.231269f, 0.175054f, -0.956999f, /*t:*/0.155035f, 0.947553f, + /*v:*/-0.312500f, 0.835938f, -0.640625f, /*n:*/-0.266579f, 0.939146f, -0.216590f, /*t:*/0.128136f, 0.929167f, + /*v:*/0.320312f, 0.734375f, -0.757813f, /*n:*/0.231269f, 0.175054f, -0.956999f, /*t:*/0.769423f, 0.418341f, + /*v:*/0.156250f, 0.757812f, -0.718750f, /*n:*/-0.605060f, 0.209754f, -0.768029f, /*t:*/0.770284f, 0.455912f, + /*v:*/0.312500f, 0.835938f, -0.640625f, /*n:*/0.266579f, 0.939146f, -0.216590f, /*t:*/0.741677f, 0.436901f, + /*v:*/0.156250f, 0.757812f, -0.718750f, /*n:*/-0.605060f, 0.209754f, -0.768029f, /*t:*/0.770284f, 0.455912f, + /*v:*/0.203125f, 0.851562f, -0.617188f, /*n:*/-0.157384f, 0.973449f, -0.166021f, /*t:*/0.742843f, 0.461827f, + /*v:*/0.312500f, 0.835938f, -0.640625f, /*n:*/0.266579f, 0.939146f, -0.216590f, /*t:*/0.741677f, 0.436901f, + /*v:*/-0.312500f, 0.835938f, -0.640625f, /*n:*/-0.266579f, 0.939146f, -0.216590f, /*t:*/0.084642f, 0.675439f, + /*v:*/-0.320312f, 0.734375f, -0.757813f, /*n:*/-0.231269f, 0.175054f, -0.956999f, /*t:*/0.071565f, 0.644504f, + /*v:*/-0.492188f, 0.687500f, -0.601563f, /*n:*/-0.597552f, 0.164586f, -0.784722f, /*t:*/0.127147f, 0.645802f, + /*v:*/-0.312500f, 0.835938f, -0.640625f, /*n:*/-0.266579f, 0.939146f, -0.216590f, /*t:*/0.084642f, 0.675439f, + /*v:*/-0.492188f, 0.687500f, -0.601563f, /*n:*/-0.597552f, 0.164586f, -0.784722f, /*t:*/0.127147f, 0.645802f, + /*v:*/-0.437500f, 0.796875f, -0.546875f, /*n:*/-0.308451f, 0.951201f, -0.003845f, /*t:*/0.121950f, 0.673891f, + /*v:*/0.492188f, 0.687500f, -0.601563f, /*n:*/0.597552f, 0.164586f, -0.784722f, /*t:*/0.724065f, 0.385690f, + /*v:*/0.320312f, 0.734375f, -0.757813f, /*n:*/0.231269f, 0.175054f, -0.956999f, /*t:*/0.769423f, 0.418341f, + /*v:*/0.312500f, 0.835938f, -0.640625f, /*n:*/0.266579f, 0.939146f, -0.216590f, /*t:*/0.741677f, 0.436901f, + /*v:*/0.492188f, 0.687500f, -0.601563f, /*n:*/0.597552f, 0.164586f, -0.784722f, /*t:*/0.724065f, 0.385690f, + /*v:*/0.312500f, 0.835938f, -0.640625f, /*n:*/0.266579f, 0.939146f, -0.216590f, /*t:*/0.741677f, 0.436901f, + /*v:*/0.437500f, 0.796875f, -0.546875f, /*n:*/0.308451f, 0.951201f, -0.003845f, /*t:*/0.713287f, 0.411661f, + /*v:*/-0.437500f, 0.796875f, -0.546875f, /*n:*/-0.308451f, 0.951201f, -0.003845f, /*t:*/0.121950f, 0.673891f, + /*v:*/-0.492188f, 0.687500f, -0.601563f, /*n:*/-0.597552f, 0.164586f, -0.784722f, /*t:*/0.127147f, 0.645802f, + /*v:*/-0.687500f, 0.726562f, -0.414063f, /*n:*/-0.480117f, 0.857814f, 0.183264f, /*t:*/0.186789f, 0.668791f, + /*v:*/-0.492188f, 0.687500f, -0.601563f, /*n:*/-0.597552f, 0.164586f, -0.784722f, /*t:*/0.127147f, 0.645802f, + /*v:*/-0.710938f, 0.625000f, -0.484375f, /*n:*/-0.517045f, 0.212531f, -0.829127f, /*t:*/0.184102f, 0.641186f, + /*v:*/-0.687500f, 0.726562f, -0.414063f, /*n:*/-0.480117f, 0.857814f, 0.183264f, /*t:*/0.186789f, 0.668791f, + /*v:*/0.710938f, 0.625000f, -0.484375f, /*n:*/0.517045f, 0.212531f, -0.829127f, /*t:*/0.684943f, 0.339987f, + /*v:*/0.492188f, 0.687500f, -0.601563f, /*n:*/0.597552f, 0.164586f, -0.784722f, /*t:*/0.724065f, 0.385690f, + /*v:*/0.687500f, 0.726562f, -0.414063f, /*n:*/0.480117f, 0.857814f, 0.183264f, /*t:*/0.668812f, 0.359503f, + /*v:*/0.492188f, 0.687500f, -0.601563f, /*n:*/0.597552f, 0.164586f, -0.784722f, /*t:*/0.724065f, 0.385690f, + /*v:*/0.437500f, 0.796875f, -0.546875f, /*n:*/0.308451f, 0.951201f, -0.003845f, /*t:*/0.713287f, 0.411661f, + /*v:*/0.687500f, 0.726562f, -0.414063f, /*n:*/0.480117f, 0.857814f, 0.183264f, /*t:*/0.668812f, 0.359503f, + /*v:*/-0.687500f, 0.726562f, -0.414063f, /*n:*/-0.480117f, 0.857814f, 0.183264f, /*t:*/0.186789f, 0.668791f, + /*v:*/-0.710938f, 0.625000f, -0.484375f, /*n:*/-0.517045f, 0.212531f, -0.829127f, /*t:*/0.184102f, 0.641186f, + /*v:*/-0.742188f, 0.656250f, -0.375000f, /*n:*/-0.460707f, 0.875637f, 0.144810f, /*t:*/0.205785f, 0.655972f, + /*v:*/-0.710938f, 0.625000f, -0.484375f, /*n:*/-0.517045f, 0.212531f, -0.829127f, /*t:*/0.184102f, 0.641186f, + /*v:*/-0.859375f, 0.593750f, -0.429688f, /*n:*/-0.845119f, 0.298502f, -0.443403f, /*t:*/0.217880f, 0.638861f, + /*v:*/-0.742188f, 0.656250f, -0.375000f, /*n:*/-0.460707f, 0.875637f, 0.144810f, /*t:*/0.205785f, 0.655972f, + /*v:*/0.859375f, 0.593750f, -0.429688f, /*n:*/0.845119f, 0.298502f, -0.443403f, /*t:*/0.663863f, 0.309075f, + /*v:*/0.710938f, 0.625000f, -0.484375f, /*n:*/0.517045f, 0.212531f, -0.829127f, /*t:*/0.684943f, 0.339987f, + /*v:*/0.742188f, 0.656250f, -0.375000f, /*n:*/0.460707f, 0.875637f, 0.144810f, /*t:*/0.657672f, 0.342345f, + /*v:*/0.710938f, 0.625000f, -0.484375f, /*n:*/0.517045f, 0.212531f, -0.829127f, /*t:*/0.684943f, 0.339987f, + /*v:*/0.687500f, 0.726562f, -0.414063f, /*n:*/0.480117f, 0.857814f, 0.183264f, /*t:*/0.668812f, 0.359503f, + /*v:*/0.742188f, 0.656250f, -0.375000f, /*n:*/0.460707f, 0.875637f, 0.144810f, /*t:*/0.657672f, 0.342345f, + /*v:*/-0.742188f, 0.656250f, -0.375000f, /*n:*/-0.460707f, 0.875637f, 0.144810f, /*t:*/0.666464f, 0.625574f, + /*v:*/-0.859375f, 0.593750f, -0.429688f, /*n:*/-0.845119f, 0.298502f, -0.443403f, /*t:*/0.677579f, 0.593918f, + /*v:*/-0.726562f, 0.601562f, -0.203125f, /*n:*/-0.566546f, 0.759819f, 0.318796f, /*t:*/0.697643f, 0.647307f, + /*v:*/-0.859375f, 0.593750f, -0.429688f, /*n:*/-0.845119f, 0.298502f, -0.443403f, /*t:*/0.677579f, 0.593918f, + /*v:*/-0.828125f, 0.445312f, -0.148438f, /*n:*/-0.906980f, -0.128941f, 0.400922f, /*t:*/0.739810f, 0.629372f, + /*v:*/-0.726562f, 0.601562f, -0.203125f, /*n:*/-0.566546f, 0.759819f, 0.318796f, /*t:*/0.697643f, 0.647307f, + /*v:*/0.828125f, 0.445312f, -0.148438f, /*n:*/0.906980f, -0.128941f, 0.400922f, /*t:*/0.604211f, 0.311750f, + /*v:*/0.859375f, 0.593750f, -0.429688f, /*n:*/0.845119f, 0.298502f, -0.443403f, /*t:*/0.663863f, 0.309075f, + /*v:*/0.726562f, 0.601562f, -0.203125f, /*n:*/0.566546f, 0.759819f, 0.318796f, /*t:*/0.620437f, 0.347357f, + /*v:*/0.859375f, 0.593750f, -0.429688f, /*n:*/0.845119f, 0.298502f, -0.443403f, /*t:*/0.663863f, 0.309075f, + /*v:*/0.742188f, 0.656250f, -0.375000f, /*n:*/0.460707f, 0.875637f, 0.144810f, /*t:*/0.657672f, 0.342345f, + /*v:*/0.726562f, 0.601562f, -0.203125f, /*n:*/0.566546f, 0.759819f, 0.318796f, /*t:*/0.620437f, 0.347357f, + /*v:*/-0.726562f, 0.601562f, -0.203125f, /*n:*/-0.566546f, 0.759819f, 0.318796f, /*t:*/0.697643f, 0.647307f, + /*v:*/-0.828125f, 0.445312f, -0.148438f, /*n:*/-0.906980f, -0.128941f, 0.400922f, /*t:*/0.739810f, 0.629372f, + /*v:*/-0.632812f, 0.539062f, 0.039062f, /*n:*/-0.587481f, 0.196966f, 0.784875f, /*t:*/0.735245f, 0.692958f, + /*v:*/-0.726562f, 0.601562f, -0.203125f, /*n:*/-0.566546f, 0.759819f, 0.318796f, /*t:*/0.697643f, 0.647307f, + /*v:*/-0.632812f, 0.539062f, 0.039062f, /*n:*/-0.587481f, 0.196966f, 0.784875f, /*t:*/0.735245f, 0.692958f, + /*v:*/-0.617188f, 0.625000f, -0.054688f, /*n:*/-0.499130f, 0.780663f, 0.376049f, /*t:*/0.706128f, 0.687268f, + /*v:*/0.632812f, 0.539062f, 0.039062f, /*n:*/0.587481f, 0.196966f, 0.784875f, /*t:*/0.572161f, 0.370535f, + /*v:*/0.828125f, 0.445312f, -0.148438f, /*n:*/0.906980f, -0.128941f, 0.400922f, /*t:*/0.604211f, 0.311750f, + /*v:*/0.726562f, 0.601562f, -0.203125f, /*n:*/0.566546f, 0.759819f, 0.318796f, /*t:*/0.620437f, 0.347357f, + /*v:*/0.632812f, 0.539062f, 0.039062f, /*n:*/0.587481f, 0.196966f, 0.784875f, /*t:*/0.572161f, 0.370535f, + /*v:*/0.726562f, 0.601562f, -0.203125f, /*n:*/0.566546f, 0.759819f, 0.318796f, /*t:*/0.620437f, 0.347357f, + /*v:*/0.617188f, 0.625000f, -0.054688f, /*n:*/0.499130f, 0.780663f, 0.376049f, /*t:*/0.593076f, 0.379022f, + /*v:*/-0.617188f, 0.625000f, -0.054688f, /*n:*/-0.499130f, 0.780663f, 0.376049f, /*t:*/0.706128f, 0.687268f, + /*v:*/-0.632812f, 0.539062f, 0.039062f, /*n:*/-0.587481f, 0.196966f, 0.784875f, /*t:*/0.735245f, 0.692958f, + /*v:*/-0.398438f, 0.671875f, 0.046875f, /*n:*/-0.344279f, 0.763298f, 0.546617f, /*t:*/0.698916f, 0.744792f, + /*v:*/-0.632812f, 0.539062f, 0.039062f, /*n:*/-0.587481f, 0.196966f, 0.784875f, /*t:*/0.735245f, 0.692958f, + /*v:*/-0.437500f, 0.531250f, 0.140625f, /*n:*/-0.348827f, -0.008148f, 0.937132f, /*t:*/0.739831f, 0.744493f, + /*v:*/-0.398438f, 0.671875f, 0.046875f, /*n:*/-0.344279f, 0.763298f, 0.546617f, /*t:*/0.698916f, 0.744792f, + /*v:*/0.437500f, 0.531250f, 0.140625f, /*n:*/0.348827f, -0.008148f, 0.937132f, /*t:*/0.649591f, 0.309075f, + /*v:*/0.632812f, 0.539062f, 0.039062f, /*n:*/0.587481f, 0.196966f, 0.784875f, /*t:*/0.613958f, 0.298852f, + /*v:*/0.398438f, 0.671875f, 0.046875f, /*n:*/0.344279f, 0.763298f, 0.546617f, /*t:*/0.649174f, 0.268773f, + /*v:*/0.632812f, 0.539062f, 0.039062f, /*n:*/0.587481f, 0.196966f, 0.784875f, /*t:*/0.613958f, 0.298852f, + /*v:*/0.617188f, 0.625000f, -0.054688f, /*n:*/0.499130f, 0.780663f, 0.376049f, /*t:*/0.614021f, 0.268722f, + /*v:*/0.398438f, 0.671875f, 0.046875f, /*n:*/0.344279f, 0.763298f, 0.546617f, /*t:*/0.649174f, 0.268773f, + /*v:*/-0.398438f, 0.671875f, 0.046875f, /*n:*/-0.344279f, 0.763298f, 0.546617f, /*t:*/0.698916f, 0.744792f, + /*v:*/-0.437500f, 0.531250f, 0.140625f, /*n:*/-0.348827f, -0.008148f, 0.937132f, /*t:*/0.739831f, 0.744493f, + /*v:*/-0.203125f, 0.562500f, 0.187500f, /*n:*/-0.891537f, 0.309458f, 0.330668f, /*t:*/0.728131f, 0.798612f, + /*v:*/-0.398438f, 0.671875f, 0.046875f, /*n:*/-0.344279f, 0.763298f, 0.546617f, /*t:*/0.698916f, 0.744792f, + /*v:*/-0.203125f, 0.562500f, 0.187500f, /*n:*/-0.891537f, 0.309458f, 0.330668f, /*t:*/0.728131f, 0.798612f, + /*v:*/-0.125000f, 0.812500f, 0.101562f, /*n:*/-0.056093f, 0.962920f, 0.263863f, /*t:*/0.664966f, 0.810182f, + /*v:*/0.203125f, 0.562500f, 0.187500f, /*n:*/0.891537f, 0.309458f, 0.330668f, /*t:*/0.154401f, 0.338520f, + /*v:*/0.437500f, 0.531250f, 0.140625f, /*n:*/0.348827f, -0.008148f, 0.937132f, /*t:*/0.196455f, 0.317715f, + /*v:*/0.398438f, 0.671875f, 0.046875f, /*n:*/0.344279f, 0.763298f, 0.546617f, /*t:*/0.216638f, 0.339615f, + /*v:*/0.203125f, 0.562500f, 0.187500f, /*n:*/0.891537f, 0.309458f, 0.330668f, /*t:*/0.154401f, 0.338520f, + /*v:*/0.398438f, 0.671875f, 0.046875f, /*n:*/0.344279f, 0.763298f, 0.546617f, /*t:*/0.216638f, 0.339615f, + /*v:*/0.125000f, 0.812500f, 0.101562f, /*n:*/0.056093f, 0.962920f, 0.263863f, /*t:*/0.177690f, 0.385794f, + /*v:*/-0.250000f, 0.687500f, 0.703125f, /*n:*/-0.565172f, 0.824396f, 0.029725f, /*t:*/0.153298f, 0.736058f, + /*v:*/-0.210938f, 0.710938f, 0.445312f, /*n:*/-0.593677f, 0.797388f, -0.108158f, /*t:*/0.112202f, 0.769315f, + /*v:*/-0.312500f, 0.570312f, 0.437500f, /*n:*/-0.955718f, 0.156468f, -0.249184f, /*t:*/0.100333f, 0.732604f, + /*v:*/-0.250000f, 0.687500f, 0.703125f, /*n:*/-0.565172f, 0.824396f, 0.029725f, /*t:*/0.153298f, 0.736058f, + /*v:*/-0.312500f, 0.570312f, 0.437500f, /*n:*/-0.955718f, 0.156468f, -0.249184f, /*t:*/0.100333f, 0.732604f, + /*v:*/-0.351562f, 0.570313f, 0.695312f, /*n:*/-0.972808f, 0.208716f, -0.100314f, /*t:*/0.144848f, 0.703592f, + /*v:*/0.312500f, 0.570312f, 0.437500f, /*n:*/0.955718f, 0.156468f, -0.249184f, /*t:*/0.429909f, 0.719699f, + /*v:*/0.210938f, 0.710938f, 0.445312f, /*n:*/0.593677f, 0.797388f, -0.108158f, /*t:*/0.393074f, 0.719936f, + /*v:*/0.250000f, 0.687500f, 0.703125f, /*n:*/0.565172f, 0.824396f, 0.029725f, /*t:*/0.394877f, 0.659320f, + /*v:*/0.312500f, 0.570312f, 0.437500f, /*n:*/0.955718f, 0.156468f, -0.249184f, /*t:*/0.429909f, 0.719699f, + /*v:*/0.250000f, 0.687500f, 0.703125f, /*n:*/0.565172f, 0.824396f, 0.029725f, /*t:*/0.394877f, 0.659320f, + /*v:*/0.351562f, 0.570313f, 0.695312f, /*n:*/0.972808f, 0.208716f, -0.100314f, /*t:*/0.429084f, 0.658569f, + /*v:*/-0.265625f, 0.664063f, 0.820312f, /*n:*/-0.555650f, 0.799982f, 0.226356f, /*t:*/0.872379f, 0.037961f, + /*v:*/-0.250000f, 0.687500f, 0.703125f, /*n:*/-0.565172f, 0.824396f, 0.029725f, /*t:*/0.850283f, 0.037988f, + /*v:*/-0.351562f, 0.570313f, 0.695312f, /*n:*/-0.972808f, 0.208716f, -0.100314f, /*t:*/0.863639f, 0.004385f, + /*v:*/-0.265625f, 0.664063f, 0.820312f, /*n:*/-0.555650f, 0.799982f, 0.226356f, /*t:*/0.872379f, 0.037961f, + /*v:*/-0.351562f, 0.570313f, 0.695312f, /*n:*/-0.972808f, 0.208716f, -0.100314f, /*t:*/0.863639f, 0.004385f, + /*v:*/-0.367188f, 0.531250f, 0.890625f, /*n:*/-0.945708f, 0.197699f, 0.257851f, /*t:*/0.900953f, 0.006481f, + /*v:*/0.351562f, 0.570313f, 0.695312f, /*n:*/0.972808f, 0.208716f, -0.100314f, /*t:*/0.429084f, 0.658569f, + /*v:*/0.250000f, 0.687500f, 0.703125f, /*n:*/0.565172f, 0.824396f, 0.029725f, /*t:*/0.394877f, 0.659320f, + /*v:*/0.265625f, 0.664063f, 0.820312f, /*n:*/0.555650f, 0.799982f, 0.226356f, /*t:*/0.396694f, 0.632155f, + /*v:*/0.351562f, 0.570313f, 0.695312f, /*n:*/0.972808f, 0.208716f, -0.100314f, /*t:*/0.429084f, 0.658569f, + /*v:*/0.265625f, 0.664063f, 0.820312f, /*n:*/0.555650f, 0.799982f, 0.226356f, /*t:*/0.396694f, 0.632155f, + /*v:*/0.367188f, 0.531250f, 0.890625f, /*n:*/0.945708f, 0.197699f, 0.257851f, /*t:*/0.429979f, 0.613819f, + /*v:*/-0.234375f, 0.632813f, 0.914062f, /*n:*/-0.350230f, 0.684683f, 0.639149f, /*t:*/0.894170f, 0.045614f, + /*v:*/-0.265625f, 0.664063f, 0.820312f, /*n:*/-0.555650f, 0.799982f, 0.226356f, /*t:*/0.872379f, 0.037961f, + /*v:*/-0.367188f, 0.531250f, 0.890625f, /*n:*/-0.945708f, 0.197699f, 0.257851f, /*t:*/0.900953f, 0.006481f, + /*v:*/-0.234375f, 0.632813f, 0.914062f, /*n:*/-0.350230f, 0.684683f, 0.639149f, /*t:*/0.894170f, 0.045614f, + /*v:*/-0.367188f, 0.531250f, 0.890625f, /*n:*/-0.945708f, 0.197699f, 0.257851f, /*t:*/0.900953f, 0.006481f, + /*v:*/-0.328125f, 0.523438f, 0.945312f, /*n:*/-0.526658f, 0.161107f, 0.834651f, /*t:*/0.912918f, 0.016324f, + /*v:*/0.367188f, 0.531250f, 0.890625f, /*n:*/0.945708f, 0.197699f, 0.257851f, /*t:*/0.429979f, 0.613819f, + /*v:*/0.265625f, 0.664063f, 0.820312f, /*n:*/0.555650f, 0.799982f, 0.226356f, /*t:*/0.396694f, 0.632155f, + /*v:*/0.234375f, 0.632813f, 0.914062f, /*n:*/0.350230f, 0.684683f, 0.639149f, /*t:*/0.390591f, 0.612902f, + /*v:*/0.367188f, 0.531250f, 0.890625f, /*n:*/0.945708f, 0.197699f, 0.257851f, /*t:*/0.429979f, 0.613819f, + /*v:*/0.234375f, 0.632813f, 0.914062f, /*n:*/0.350230f, 0.684683f, 0.639149f, /*t:*/0.390591f, 0.612902f, + /*v:*/0.328125f, 0.523438f, 0.945312f, /*n:*/0.526658f, 0.161107f, 0.834651f, /*t:*/0.420984f, 0.603408f, + /*v:*/-0.164062f, 0.632813f, 0.929688f, /*n:*/-0.155370f, 0.632282f, 0.758965f, /*t:*/0.899989f, 0.060819f, + /*v:*/-0.234375f, 0.632813f, 0.914062f, /*n:*/-0.350230f, 0.684683f, 0.639149f, /*t:*/0.894170f, 0.045614f, + /*v:*/-0.179688f, 0.554688f, 0.968750f, /*n:*/-0.159551f, 0.152898f, 0.975249f, /*t:*/0.918491f, 0.051257f, + /*v:*/-0.234375f, 0.632813f, 0.914062f, /*n:*/-0.350230f, 0.684683f, 0.639149f, /*t:*/0.894170f, 0.045614f, + /*v:*/-0.328125f, 0.523438f, 0.945312f, /*n:*/-0.526658f, 0.161107f, 0.834651f, /*t:*/0.912918f, 0.016324f, + /*v:*/-0.179688f, 0.554688f, 0.968750f, /*n:*/-0.159551f, 0.152898f, 0.975249f, /*t:*/0.918491f, 0.051257f, + /*v:*/0.328125f, 0.523438f, 0.945312f, /*n:*/0.526658f, 0.161107f, 0.834651f, /*t:*/0.943643f, 0.151203f, + /*v:*/0.234375f, 0.632813f, 0.914062f, /*n:*/0.350230f, 0.684683f, 0.639149f, /*t:*/0.916117f, 0.141955f, + /*v:*/0.179688f, 0.554688f, 0.968750f, /*n:*/0.159551f, 0.152898f, 0.975249f, /*t:*/0.935318f, 0.125119f, + /*v:*/0.234375f, 0.632813f, 0.914062f, /*n:*/0.350230f, 0.684683f, 0.639149f, /*t:*/0.916117f, 0.141955f, + /*v:*/0.164062f, 0.632813f, 0.929688f, /*n:*/0.155370f, 0.632282f, 0.758965f, /*t:*/0.915352f, 0.128258f, + /*v:*/0.179688f, 0.554688f, 0.968750f, /*n:*/0.159551f, 0.152898f, 0.975249f, /*t:*/0.935318f, 0.125119f, + /*v:*/0.000000f, 0.640625f, 0.945312f, /*n:*/0.000000f, 0.631550f, 0.775323f, /*t:*/0.908906f, 0.096116f, + /*v:*/-0.164062f, 0.632813f, 0.929688f, /*n:*/-0.155370f, 0.632282f, 0.758965f, /*t:*/0.899989f, 0.060819f, + /*v:*/0.000000f, 0.578125f, 0.984375f, /*n:*/0.000000f, 0.252266f, 0.967650f, /*t:*/0.925557f, 0.091413f, + /*v:*/-0.164062f, 0.632813f, 0.929688f, /*n:*/-0.155370f, 0.632282f, 0.758965f, /*t:*/0.899989f, 0.060819f, + /*v:*/-0.179688f, 0.554688f, 0.968750f, /*n:*/-0.159551f, 0.152898f, 0.975249f, /*t:*/0.918491f, 0.051257f, + /*v:*/0.000000f, 0.578125f, 0.984375f, /*n:*/0.000000f, 0.252266f, 0.967650f, /*t:*/0.925557f, 0.091413f, + /*v:*/0.179688f, 0.554688f, 0.968750f, /*n:*/0.159551f, 0.152898f, 0.975249f, /*t:*/0.935318f, 0.125119f, + /*v:*/0.164062f, 0.632813f, 0.929688f, /*n:*/0.155370f, 0.632282f, 0.758965f, /*t:*/0.915352f, 0.128258f, + /*v:*/0.000000f, 0.578125f, 0.984375f, /*n:*/0.000000f, 0.252266f, 0.967650f, /*t:*/0.925557f, 0.091413f, + /*v:*/0.164062f, 0.632813f, 0.929688f, /*n:*/0.155370f, 0.632282f, 0.758965f, /*t:*/0.915352f, 0.128258f, + /*v:*/0.000000f, 0.640625f, 0.945312f, /*n:*/0.000000f, 0.631550f, 0.775323f, /*t:*/0.908906f, 0.096116f, + /*v:*/0.000000f, 0.578125f, 0.984375f, /*n:*/0.000000f, 0.252266f, 0.967650f, /*t:*/0.925557f, 0.091413f, + /*v:*/-0.476562f, 0.773438f, -0.242188f, /*n:*/-0.964446f, 0.263863f, 0.012665f, /*t:*/0.192067f, 0.934883f, + /*v:*/-0.468750f, 0.757812f, -0.242188f, /*n:*/-0.969298f, 0.245552f, 0.011811f, /*t:*/0.195066f, 0.936538f, + /*v:*/-0.437500f, 0.765625f, -0.164063f, /*n:*/-0.728996f, 0.193426f, 0.656575f, /*t:*/0.188128f, 0.955179f, + /*v:*/-0.476562f, 0.773438f, -0.242188f, /*n:*/-0.964446f, 0.263863f, 0.012665f, /*t:*/0.192067f, 0.934883f, + /*v:*/-0.437500f, 0.765625f, -0.164063f, /*n:*/-0.728996f, 0.193426f, 0.656575f, /*t:*/0.188128f, 0.955179f, + /*v:*/-0.445312f, 0.781250f, -0.156250f, /*n:*/-0.715171f, 0.222724f, 0.662465f, /*t:*/0.184050f, 0.954973f, + /*v:*/0.437500f, 0.765625f, -0.164063f, /*n:*/0.728996f, 0.193426f, 0.656575f, /*t:*/0.003164f, 0.757601f, + /*v:*/0.468750f, 0.757812f, -0.242188f, /*n:*/0.969298f, 0.245552f, 0.011811f, /*t:*/0.002864f, 0.739051f, + /*v:*/0.476562f, 0.773438f, -0.242188f, /*n:*/0.964446f, 0.263863f, 0.012665f, /*t:*/0.006892f, 0.738392f, + /*v:*/0.437500f, 0.765625f, -0.164063f, /*n:*/0.728996f, 0.193426f, 0.656575f, /*t:*/0.003164f, 0.757601f, + /*v:*/0.476562f, 0.773438f, -0.242188f, /*n:*/0.964446f, 0.263863f, 0.012665f, /*t:*/0.006892f, 0.738392f, + /*v:*/0.445312f, 0.781250f, -0.156250f, /*n:*/0.715171f, 0.222724f, 0.662465f, /*t:*/0.007227f, 0.758269f, + /*v:*/-0.445312f, 0.781250f, -0.156250f, /*n:*/-0.715171f, 0.222724f, 0.662465f, /*t:*/0.184050f, 0.954973f, + /*v:*/-0.437500f, 0.765625f, -0.164063f, /*n:*/-0.728996f, 0.193426f, 0.656575f, /*t:*/0.188128f, 0.955179f, + /*v:*/-0.351562f, 0.781250f, -0.132813f, /*n:*/-0.031404f, 0.252907f, 0.966948f, /*t:*/0.195088f, 0.972591f, + /*v:*/-0.445312f, 0.781250f, -0.156250f, /*n:*/-0.715171f, 0.222724f, 0.662465f, /*t:*/0.184050f, 0.954973f, + /*v:*/-0.351562f, 0.781250f, -0.132813f, /*n:*/-0.031404f, 0.252907f, 0.966948f, /*t:*/0.195088f, 0.972591f, + /*v:*/-0.351562f, 0.804688f, -0.117188f, /*n:*/-0.042543f, 0.337474f, 0.940336f, /*t:*/0.190215f, 0.974666f, + /*v:*/0.351562f, 0.781250f, -0.132813f, /*n:*/0.031404f, 0.252907f, 0.966948f, /*t:*/0.001850f, 0.777192f, + /*v:*/0.437500f, 0.765625f, -0.164063f, /*n:*/0.728996f, 0.193426f, 0.656575f, /*t:*/0.003164f, 0.757601f, + /*v:*/0.445312f, 0.781250f, -0.156250f, /*n:*/0.715171f, 0.222724f, 0.662465f, /*t:*/0.007227f, 0.758269f, + /*v:*/0.351562f, 0.781250f, -0.132813f, /*n:*/0.031404f, 0.252907f, 0.966948f, /*t:*/0.001850f, 0.777192f, + /*v:*/0.445312f, 0.781250f, -0.156250f, /*n:*/0.715171f, 0.222724f, 0.662465f, /*t:*/0.007227f, 0.758269f, + /*v:*/0.351562f, 0.804688f, -0.117188f, /*n:*/0.042543f, 0.337474f, 0.940336f, /*t:*/0.007275f, 0.780726f, + /*v:*/-0.351562f, 0.804688f, -0.117188f, /*n:*/-0.042543f, 0.337474f, 0.940336f, /*t:*/0.838484f, 0.262985f, + /*v:*/-0.351562f, 0.781250f, -0.132813f, /*n:*/-0.031404f, 0.252907f, 0.966948f, /*t:*/0.844637f, 0.265001f, + /*v:*/-0.273438f, 0.796875f, -0.164063f, /*n:*/0.653066f, 0.319315f, 0.686636f, /*t:*/0.841335f, 0.283658f, + /*v:*/-0.351562f, 0.804688f, -0.117188f, /*n:*/-0.042543f, 0.337474f, 0.940336f, /*t:*/0.838484f, 0.262985f, + /*v:*/-0.273438f, 0.796875f, -0.164063f, /*n:*/0.653066f, 0.319315f, 0.686636f, /*t:*/0.841335f, 0.283658f, + /*v:*/-0.265625f, 0.820312f, -0.156250f, /*n:*/0.615864f, 0.464095f, 0.636616f, /*t:*/0.835437f, 0.284237f, + /*v:*/0.273438f, 0.796875f, -0.164063f, /*n:*/-0.653066f, 0.319315f, 0.686636f, /*t:*/0.855509f, 0.953420f, + /*v:*/0.351562f, 0.781250f, -0.132813f, /*n:*/0.031404f, 0.252907f, 0.966948f, /*t:*/0.863259f, 0.971614f, + /*v:*/0.351562f, 0.804688f, -0.117188f, /*n:*/0.042543f, 0.337474f, 0.940336f, /*t:*/0.858216f, 0.973232f, + /*v:*/0.273438f, 0.796875f, -0.164063f, /*n:*/-0.653066f, 0.319315f, 0.686636f, /*t:*/0.855509f, 0.953420f, + /*v:*/0.351562f, 0.804688f, -0.117188f, /*n:*/0.042543f, 0.337474f, 0.940336f, /*t:*/0.858216f, 0.973232f, + /*v:*/0.265625f, 0.820312f, -0.156250f, /*n:*/-0.615864f, 0.464095f, 0.636616f, /*t:*/0.850591f, 0.952484f, + /*v:*/-0.265625f, 0.820312f, -0.156250f, /*n:*/0.615864f, 0.464095f, 0.636616f, /*t:*/0.835437f, 0.284237f, + /*v:*/-0.273438f, 0.796875f, -0.164063f, /*n:*/0.653066f, 0.319315f, 0.686636f, /*t:*/0.841335f, 0.283658f, + /*v:*/-0.242188f, 0.796875f, -0.242188f, /*n:*/0.952574f, 0.303995f, 0.013123f, /*t:*/0.844607f, 0.301680f, + /*v:*/-0.265625f, 0.820312f, -0.156250f, /*n:*/0.615864f, 0.464095f, 0.636616f, /*t:*/0.835437f, 0.284237f, + /*v:*/-0.242188f, 0.796875f, -0.242188f, /*n:*/0.952574f, 0.303995f, 0.013123f, /*t:*/0.844607f, 0.301680f, + /*v:*/-0.226562f, 0.820312f, -0.242188f, /*n:*/0.926969f, 0.374859f, 0.012940f, /*t:*/0.838964f, 0.304854f, + /*v:*/0.242188f, 0.796875f, -0.242188f, /*n:*/-0.952574f, 0.303995f, 0.013123f, /*t:*/0.863255f, 0.935139f, + /*v:*/0.273438f, 0.796875f, -0.164063f, /*n:*/-0.653066f, 0.319315f, 0.686636f, /*t:*/0.855509f, 0.953420f, + /*v:*/0.265625f, 0.820312f, -0.156250f, /*n:*/-0.615864f, 0.464095f, 0.636616f, /*t:*/0.850591f, 0.952484f, + /*v:*/0.242188f, 0.796875f, -0.242188f, /*n:*/-0.952574f, 0.303995f, 0.013123f, /*t:*/0.863255f, 0.935139f, + /*v:*/0.265625f, 0.820312f, -0.156250f, /*n:*/-0.615864f, 0.464095f, 0.636616f, /*t:*/0.850591f, 0.952484f, + /*v:*/0.226562f, 0.820312f, -0.242188f, /*n:*/-0.926969f, 0.374859f, 0.012940f, /*t:*/0.858461f, 0.931648f, + /*v:*/-0.226562f, 0.820312f, -0.242188f, /*n:*/0.926969f, 0.374859f, 0.012940f, /*t:*/0.903485f, 0.796898f, + /*v:*/-0.242188f, 0.796875f, -0.242188f, /*n:*/0.952574f, 0.303995f, 0.013123f, /*t:*/0.908555f, 0.801056f, + /*v:*/-0.265625f, 0.820312f, -0.335938f, /*n:*/0.623676f, 0.464675f, -0.628529f, /*t:*/0.893235f, 0.814136f, + /*v:*/-0.242188f, 0.796875f, -0.242188f, /*n:*/0.952574f, 0.303995f, 0.013123f, /*t:*/0.908555f, 0.801056f, + /*v:*/-0.273438f, 0.796875f, -0.328125f, /*n:*/0.664357f, 0.305582f, -0.682058f, /*t:*/0.899076f, 0.815887f, + /*v:*/-0.265625f, 0.820312f, -0.335938f, /*n:*/0.623676f, 0.464675f, -0.628529f, /*t:*/0.893235f, 0.814136f, + /*v:*/0.273438f, 0.796875f, -0.328125f, /*n:*/-0.664357f, 0.305582f, -0.682058f, /*t:*/0.935992f, 0.409898f, + /*v:*/0.242188f, 0.796875f, -0.242188f, /*n:*/-0.952574f, 0.303995f, 0.013123f, /*t:*/0.936654f, 0.430276f, + /*v:*/0.265625f, 0.820312f, -0.335938f, /*n:*/-0.623676f, 0.464675f, -0.628529f, /*t:*/0.930978f, 0.410105f, + /*v:*/0.242188f, 0.796875f, -0.242188f, /*n:*/-0.952574f, 0.303995f, 0.013123f, /*t:*/0.936654f, 0.430276f, + /*v:*/0.226562f, 0.820312f, -0.242188f, /*n:*/-0.926969f, 0.374859f, 0.012940f, /*t:*/0.931922f, 0.433062f, + /*v:*/0.265625f, 0.820312f, -0.335938f, /*n:*/-0.623676f, 0.464675f, -0.628529f, /*t:*/0.930978f, 0.410105f, + /*v:*/-0.265625f, 0.820312f, -0.335938f, /*n:*/0.623676f, 0.464675f, -0.628529f, /*t:*/0.893235f, 0.814136f, + /*v:*/-0.273438f, 0.796875f, -0.328125f, /*n:*/0.664357f, 0.305582f, -0.682058f, /*t:*/0.899076f, 0.815887f, + /*v:*/-0.351562f, 0.804688f, -0.375000f, /*n:*/-0.043153f, 0.341441f, -0.938902f, /*t:*/0.893427f, 0.836711f, + /*v:*/-0.273438f, 0.796875f, -0.328125f, /*n:*/0.664357f, 0.305582f, -0.682058f, /*t:*/0.899076f, 0.815887f, + /*v:*/-0.351562f, 0.781250f, -0.359375f, /*n:*/-0.025727f, 0.231147f, -0.972564f, /*t:*/0.900039f, 0.836055f, + /*v:*/-0.351562f, 0.804688f, -0.375000f, /*n:*/-0.043153f, 0.341441f, -0.938902f, /*t:*/0.893427f, 0.836711f, + /*v:*/0.351562f, 0.781250f, -0.359375f, /*n:*/0.025727f, 0.231147f, -0.972564f, /*t:*/0.936399f, 0.392390f, + /*v:*/0.273438f, 0.796875f, -0.328125f, /*n:*/-0.664357f, 0.305582f, -0.682058f, /*t:*/0.935992f, 0.409898f, + /*v:*/0.351562f, 0.804688f, -0.375000f, /*n:*/0.043153f, 0.341441f, -0.938902f, /*t:*/0.931104f, 0.390017f, + /*v:*/0.273438f, 0.796875f, -0.328125f, /*n:*/-0.664357f, 0.305582f, -0.682058f, /*t:*/0.935992f, 0.409898f, + /*v:*/0.265625f, 0.820312f, -0.335938f, /*n:*/-0.623676f, 0.464675f, -0.628529f, /*t:*/0.930978f, 0.410105f, + /*v:*/0.351562f, 0.804688f, -0.375000f, /*n:*/0.043153f, 0.341441f, -0.938902f, /*t:*/0.931104f, 0.390017f, + /*v:*/-0.351562f, 0.804688f, -0.375000f, /*n:*/-0.043153f, 0.341441f, -0.938902f, /*t:*/0.893427f, 0.836711f, + /*v:*/-0.351562f, 0.781250f, -0.359375f, /*n:*/-0.025727f, 0.231147f, -0.972564f, /*t:*/0.900039f, 0.836055f, + /*v:*/-0.445312f, 0.781250f, -0.335938f, /*n:*/-0.721610f, 0.222388f, -0.655568f, /*t:*/0.904492f, 0.853797f, + /*v:*/-0.351562f, 0.781250f, -0.359375f, /*n:*/-0.025727f, 0.231147f, -0.972564f, /*t:*/0.900039f, 0.836055f, + /*v:*/-0.437500f, 0.765625f, -0.328125f, /*n:*/-0.736381f, 0.180273f, -0.652089f, /*t:*/0.908452f, 0.851943f, + /*v:*/-0.445312f, 0.781250f, -0.335938f, /*n:*/-0.721610f, 0.222388f, -0.655568f, /*t:*/0.904492f, 0.853797f, + /*v:*/0.437500f, 0.765625f, -0.328125f, /*n:*/0.736381f, 0.180273f, -0.652089f, /*t:*/0.566788f, 0.823751f, + /*v:*/0.351562f, 0.781250f, -0.359375f, /*n:*/0.025727f, 0.231147f, -0.972564f, /*t:*/0.570689f, 0.844778f, + /*v:*/0.445312f, 0.781250f, -0.335938f, /*n:*/0.721610f, 0.222388f, -0.655568f, /*t:*/0.562315f, 0.824192f, + /*v:*/0.351562f, 0.781250f, -0.359375f, /*n:*/0.025727f, 0.231147f, -0.972564f, /*t:*/0.570689f, 0.844778f, + /*v:*/0.351562f, 0.804688f, -0.375000f, /*n:*/0.043153f, 0.341441f, -0.938902f, /*t:*/0.564961f, 0.848145f, + /*v:*/0.445312f, 0.781250f, -0.335938f, /*n:*/0.721610f, 0.222388f, -0.655568f, /*t:*/0.562315f, 0.824192f, + /*v:*/-0.445312f, 0.781250f, -0.335938f, /*n:*/-0.721610f, 0.222388f, -0.655568f, /*t:*/0.127072f, 0.877934f, + /*v:*/-0.437500f, 0.765625f, -0.328125f, /*n:*/-0.736381f, 0.180273f, -0.652089f, /*t:*/0.123902f, 0.877465f, + /*v:*/-0.476562f, 0.773438f, -0.242188f, /*n:*/-0.964446f, 0.263863f, 0.012665f, /*t:*/0.128136f, 0.856180f, + /*v:*/-0.437500f, 0.765625f, -0.328125f, /*n:*/-0.736381f, 0.180273f, -0.652089f, /*t:*/0.123902f, 0.877465f, + /*v:*/-0.468750f, 0.757812f, -0.242188f, /*n:*/-0.969298f, 0.245552f, 0.011811f, /*t:*/0.124672f, 0.857118f, + /*v:*/-0.476562f, 0.773438f, -0.242188f, /*n:*/-0.964446f, 0.263863f, 0.012665f, /*t:*/0.128136f, 0.856180f, + /*v:*/0.468750f, 0.757812f, -0.242188f, /*n:*/0.969298f, 0.245552f, 0.011811f, /*t:*/0.570740f, 0.805895f, + /*v:*/0.437500f, 0.765625f, -0.328125f, /*n:*/0.736381f, 0.180273f, -0.652089f, /*t:*/0.566788f, 0.823751f, + /*v:*/0.476562f, 0.773438f, -0.242188f, /*n:*/0.964446f, 0.263863f, 0.012665f, /*t:*/0.566785f, 0.805279f, + /*v:*/0.437500f, 0.765625f, -0.328125f, /*n:*/0.736381f, 0.180273f, -0.652089f, /*t:*/0.566788f, 0.823751f, + /*v:*/0.445312f, 0.781250f, -0.335938f, /*n:*/0.721610f, 0.222388f, -0.655568f, /*t:*/0.562315f, 0.824192f, + /*v:*/0.476562f, 0.773438f, -0.242188f, /*n:*/0.964446f, 0.263863f, 0.012665f, /*t:*/0.566785f, 0.805279f, + /*v:*/-0.562500f, 0.671875f, -0.242188f, /*n:*/-0.800104f, 0.599841f, 0.002838f, /*t:*/0.102792f, 0.841569f, + /*v:*/-0.468750f, 0.757812f, -0.242188f, /*n:*/-0.969298f, 0.245552f, 0.011811f, /*t:*/0.124672f, 0.857118f, + /*v:*/-0.500000f, 0.687500f, -0.390625f, /*n:*/-0.610218f, 0.618061f, -0.495590f, /*t:*/0.102132f, 0.878037f, + /*v:*/-0.468750f, 0.757812f, -0.242188f, /*n:*/-0.969298f, 0.245552f, 0.011811f, /*t:*/0.124672f, 0.857118f, + /*v:*/-0.437500f, 0.765625f, -0.328125f, /*n:*/-0.736381f, 0.180273f, -0.652089f, /*t:*/0.123902f, 0.877465f, + /*v:*/-0.500000f, 0.687500f, -0.390625f, /*n:*/-0.610218f, 0.618061f, -0.495590f, /*t:*/0.102132f, 0.878037f, + /*v:*/0.437500f, 0.765625f, -0.328125f, /*n:*/0.736381f, 0.180273f, -0.652089f, /*t:*/0.471293f, 0.875443f, + /*v:*/0.468750f, 0.757812f, -0.242188f, /*n:*/0.969298f, 0.245552f, 0.011811f, /*t:*/0.470762f, 0.853886f, + /*v:*/0.500000f, 0.687500f, -0.390625f, /*n:*/0.610218f, 0.618061f, -0.495590f, /*t:*/0.497290f, 0.882687f, + /*v:*/0.468750f, 0.757812f, -0.242188f, /*n:*/0.969298f, 0.245552f, 0.011811f, /*t:*/0.470762f, 0.853886f, + /*v:*/0.562500f, 0.671875f, -0.242188f, /*n:*/0.800104f, 0.599841f, 0.002838f, /*t:*/0.498218f, 0.844632f, + /*v:*/0.500000f, 0.687500f, -0.390625f, /*n:*/0.610218f, 0.618061f, -0.495590f, /*t:*/0.497290f, 0.882687f, + /*v:*/-0.625000f, 0.562500f, -0.242188f, /*n:*/-0.868221f, 0.496109f, 0.004730f, /*t:*/0.076120f, 0.830386f, + /*v:*/-0.562500f, 0.671875f, -0.242188f, /*n:*/-0.800104f, 0.599841f, 0.002838f, /*t:*/0.102792f, 0.841569f, + /*v:*/-0.546875f, 0.578125f, -0.437500f, /*n:*/-0.668203f, 0.514786f, -0.537095f, /*t:*/0.074022f, 0.877670f, + /*v:*/-0.562500f, 0.671875f, -0.242188f, /*n:*/-0.800104f, 0.599841f, 0.002838f, /*t:*/0.102792f, 0.841569f, + /*v:*/-0.500000f, 0.687500f, -0.390625f, /*n:*/-0.610218f, 0.618061f, -0.495590f, /*t:*/0.102132f, 0.878037f, + /*v:*/-0.546875f, 0.578125f, -0.437500f, /*n:*/-0.668203f, 0.514786f, -0.537095f, /*t:*/0.074022f, 0.877670f, + /*v:*/0.500000f, 0.687500f, -0.390625f, /*n:*/0.610218f, 0.618061f, -0.495590f, /*t:*/0.497290f, 0.882687f, + /*v:*/0.562500f, 0.671875f, -0.242188f, /*n:*/0.800104f, 0.599841f, 0.002838f, /*t:*/0.498218f, 0.844632f, + /*v:*/0.546875f, 0.578125f, -0.437500f, /*n:*/0.668203f, 0.514786f, -0.537095f, /*t:*/0.522587f, 0.887923f, + /*v:*/0.562500f, 0.671875f, -0.242188f, /*n:*/0.800104f, 0.599841f, 0.002838f, /*t:*/0.498218f, 0.844632f, + /*v:*/0.625000f, 0.562500f, -0.242188f, /*n:*/0.868221f, 0.496109f, 0.004730f, /*t:*/0.522471f, 0.838262f, + /*v:*/0.546875f, 0.578125f, -0.437500f, /*n:*/0.668203f, 0.514786f, -0.537095f, /*t:*/0.522587f, 0.887923f, + /*v:*/-0.546875f, 0.578125f, -0.437500f, /*n:*/-0.668203f, 0.514786f, -0.537095f, /*t:*/0.074022f, 0.877670f, + /*v:*/-0.500000f, 0.687500f, -0.390625f, /*n:*/-0.610218f, 0.618061f, -0.495590f, /*t:*/0.102132f, 0.878037f, + /*v:*/-0.351562f, 0.617188f, -0.515625f, /*n:*/-0.125736f, 0.525254f, -0.841578f, /*t:*/0.084191f, 0.921950f, + /*v:*/-0.500000f, 0.687500f, -0.390625f, /*n:*/-0.610218f, 0.618061f, -0.495590f, /*t:*/0.102132f, 0.878037f, + /*v:*/-0.351562f, 0.718750f, -0.453125f, /*n:*/-0.103061f, 0.664388f, -0.740196f, /*t:*/0.110105f, 0.912278f, + /*v:*/-0.351562f, 0.617188f, -0.515625f, /*n:*/-0.125736f, 0.525254f, -0.841578f, /*t:*/0.084191f, 0.921950f, + /*v:*/0.351562f, 0.718750f, -0.453125f, /*n:*/0.103061f, 0.664388f, -0.740196f, /*t:*/0.471100f, 0.910428f, + /*v:*/0.500000f, 0.687500f, -0.390625f, /*n:*/0.610218f, 0.618061f, -0.495590f, /*t:*/0.497290f, 0.882687f, + /*v:*/0.351562f, 0.617188f, -0.515625f, /*n:*/0.125736f, 0.525254f, -0.841578f, /*t:*/0.488012f, 0.923529f, + /*v:*/0.500000f, 0.687500f, -0.390625f, /*n:*/0.610218f, 0.618061f, -0.495590f, /*t:*/0.497290f, 0.882687f, + /*v:*/0.546875f, 0.578125f, -0.437500f, /*n:*/0.668203f, 0.514786f, -0.537095f, /*t:*/0.522587f, 0.887923f, + /*v:*/0.351562f, 0.617188f, -0.515625f, /*n:*/0.125736f, 0.525254f, -0.841578f, /*t:*/0.488012f, 0.923529f, + /*v:*/-0.500000f, 0.687500f, -0.390625f, /*n:*/-0.610218f, 0.618061f, -0.495590f, /*t:*/0.102132f, 0.878037f, + /*v:*/-0.437500f, 0.765625f, -0.328125f, /*n:*/-0.736381f, 0.180273f, -0.652089f, /*t:*/0.123902f, 0.877465f, + /*v:*/-0.351562f, 0.718750f, -0.453125f, /*n:*/-0.103061f, 0.664388f, -0.740196f, /*t:*/0.110105f, 0.912278f, + /*v:*/-0.437500f, 0.765625f, -0.328125f, /*n:*/-0.736381f, 0.180273f, -0.652089f, /*t:*/0.123902f, 0.877465f, + /*v:*/-0.351562f, 0.781250f, -0.359375f, /*n:*/-0.025727f, 0.231147f, -0.972564f, /*t:*/0.128131f, 0.896360f, + /*v:*/-0.351562f, 0.718750f, -0.453125f, /*n:*/-0.103061f, 0.664388f, -0.740196f, /*t:*/0.110105f, 0.912278f, + /*v:*/0.351562f, 0.781250f, -0.359375f, /*n:*/0.025727f, 0.231147f, -0.972564f, /*t:*/0.455993f, 0.890429f, + /*v:*/0.437500f, 0.765625f, -0.328125f, /*n:*/0.736381f, 0.180273f, -0.652089f, /*t:*/0.471293f, 0.875443f, + /*v:*/0.351562f, 0.718750f, -0.453125f, /*n:*/0.103061f, 0.664388f, -0.740196f, /*t:*/0.471100f, 0.910428f, + /*v:*/0.437500f, 0.765625f, -0.328125f, /*n:*/0.736381f, 0.180273f, -0.652089f, /*t:*/0.471293f, 0.875443f, + /*v:*/0.500000f, 0.687500f, -0.390625f, /*n:*/0.610218f, 0.618061f, -0.495590f, /*t:*/0.497290f, 0.882687f, + /*v:*/0.351562f, 0.718750f, -0.453125f, /*n:*/0.103061f, 0.664388f, -0.740196f, /*t:*/0.471100f, 0.910428f, + /*v:*/-0.351562f, 0.718750f, -0.453125f, /*n:*/-0.103061f, 0.664388f, -0.740196f, /*t:*/0.633816f, 0.881799f, + /*v:*/-0.351562f, 0.781250f, -0.359375f, /*n:*/-0.025727f, 0.231147f, -0.972564f, /*t:*/0.635976f, 0.856829f, + /*v:*/-0.203125f, 0.742188f, -0.390625f, /*n:*/0.455947f, 0.720664f, -0.522202f, /*t:*/0.667060f, 0.874692f, + /*v:*/-0.351562f, 0.781250f, -0.359375f, /*n:*/-0.025727f, 0.231147f, -0.972564f, /*t:*/0.635976f, 0.856829f, + /*v:*/-0.273438f, 0.796875f, -0.328125f, /*n:*/0.664357f, 0.305582f, -0.682058f, /*t:*/0.653051f, 0.853204f, + /*v:*/-0.203125f, 0.742188f, -0.390625f, /*n:*/0.455947f, 0.720664f, -0.522202f, /*t:*/0.667060f, 0.874692f, + /*v:*/0.273438f, 0.796875f, -0.328125f, /*n:*/-0.664357f, 0.305582f, -0.682058f, /*t:*/0.436851f, 0.891178f, + /*v:*/0.351562f, 0.781250f, -0.359375f, /*n:*/0.025727f, 0.231147f, -0.972564f, /*t:*/0.455993f, 0.890429f, + /*v:*/0.203125f, 0.742188f, -0.390625f, /*n:*/-0.455947f, 0.720664f, -0.522202f, /*t:*/0.435178f, 0.911153f, + /*v:*/0.351562f, 0.781250f, -0.359375f, /*n:*/0.025727f, 0.231147f, -0.972564f, /*t:*/0.455993f, 0.890429f, + /*v:*/0.351562f, 0.718750f, -0.453125f, /*n:*/0.103061f, 0.664388f, -0.740196f, /*t:*/0.471100f, 0.910428f, + /*v:*/0.203125f, 0.742188f, -0.390625f, /*n:*/-0.455947f, 0.720664f, -0.522202f, /*t:*/0.435178f, 0.911153f, + /*v:*/-0.351562f, 0.617188f, -0.515625f, /*n:*/-0.125736f, 0.525254f, -0.841578f, /*t:*/0.637613f, 0.902852f, + /*v:*/-0.351562f, 0.718750f, -0.453125f, /*n:*/-0.103061f, 0.664388f, -0.740196f, /*t:*/0.633816f, 0.881799f, + /*v:*/-0.156250f, 0.648438f, -0.437500f, /*n:*/0.530595f, 0.571703f, -0.625751f, /*t:*/0.680984f, 0.894364f, + /*v:*/-0.351562f, 0.718750f, -0.453125f, /*n:*/-0.103061f, 0.664388f, -0.740196f, /*t:*/0.633816f, 0.881799f, + /*v:*/-0.203125f, 0.742188f, -0.390625f, /*n:*/0.455947f, 0.720664f, -0.522202f, /*t:*/0.667060f, 0.874692f, + /*v:*/-0.156250f, 0.648438f, -0.437500f, /*n:*/0.530595f, 0.571703f, -0.625751f, /*t:*/0.680984f, 0.894364f, + /*v:*/0.203125f, 0.742188f, -0.390625f, /*n:*/-0.455947f, 0.720664f, -0.522202f, /*t:*/0.952314f, 0.407519f, + /*v:*/0.351562f, 0.718750f, -0.453125f, /*n:*/0.103061f, 0.664388f, -0.740196f, /*t:*/0.951667f, 0.373810f, + /*v:*/0.156250f, 0.648438f, -0.437500f, /*n:*/-0.530595f, 0.571703f, -0.625751f, /*t:*/0.976507f, 0.403750f, + /*v:*/0.351562f, 0.718750f, -0.453125f, /*n:*/0.103061f, 0.664388f, -0.740196f, /*t:*/0.951667f, 0.373810f, + /*v:*/0.351562f, 0.617188f, -0.515625f, /*n:*/0.125736f, 0.525254f, -0.841578f, /*t:*/0.975716f, 0.360144f, + /*v:*/0.156250f, 0.648438f, -0.437500f, /*n:*/-0.530595f, 0.571703f, -0.625751f, /*t:*/0.976507f, 0.403750f, + /*v:*/-0.156250f, 0.648438f, -0.437500f, /*n:*/0.530595f, 0.571703f, -0.625751f, /*t:*/0.680984f, 0.894364f, + /*v:*/-0.203125f, 0.742188f, -0.390625f, /*n:*/0.455947f, 0.720664f, -0.522202f, /*t:*/0.667060f, 0.874692f, + /*v:*/-0.078125f, 0.656250f, -0.242188f, /*n:*/0.809717f, 0.586749f, 0.006989f, /*t:*/0.712087f, 0.855664f, + /*v:*/-0.203125f, 0.742188f, -0.390625f, /*n:*/0.455947f, 0.720664f, -0.522202f, /*t:*/0.667060f, 0.874692f, + /*v:*/-0.140625f, 0.742188f, -0.242188f, /*n:*/0.689291f, 0.724418f, 0.004578f, /*t:*/0.691853f, 0.845889f, + /*v:*/-0.078125f, 0.656250f, -0.242188f, /*n:*/0.809717f, 0.586749f, 0.006989f, /*t:*/0.712087f, 0.855664f, + /*v:*/0.140625f, 0.742188f, -0.242188f, /*n:*/-0.689291f, 0.724418f, 0.004578f, /*t:*/0.953837f, 0.443962f, + /*v:*/0.203125f, 0.742188f, -0.390625f, /*n:*/-0.455947f, 0.720664f, -0.522202f, /*t:*/0.952314f, 0.407519f, + /*v:*/0.078125f, 0.656250f, -0.242188f, /*n:*/-0.809717f, 0.586749f, 0.006989f, /*t:*/0.976520f, 0.451267f, + /*v:*/0.203125f, 0.742188f, -0.390625f, /*n:*/-0.455947f, 0.720664f, -0.522202f, /*t:*/0.952314f, 0.407519f, + /*v:*/0.156250f, 0.648438f, -0.437500f, /*n:*/-0.530595f, 0.571703f, -0.625751f, /*t:*/0.976507f, 0.403750f, + /*v:*/0.078125f, 0.656250f, -0.242188f, /*n:*/-0.809717f, 0.586749f, 0.006989f, /*t:*/0.976520f, 0.451267f, + /*v:*/-0.203125f, 0.742188f, -0.390625f, /*n:*/0.455947f, 0.720664f, -0.522202f, /*t:*/0.667060f, 0.874692f, + /*v:*/-0.273438f, 0.796875f, -0.328125f, /*n:*/0.664357f, 0.305582f, -0.682058f, /*t:*/0.653051f, 0.853204f, + /*v:*/-0.242188f, 0.796875f, -0.242188f, /*n:*/0.952574f, 0.303995f, 0.013123f, /*t:*/0.666401f, 0.836256f, + /*v:*/-0.203125f, 0.742188f, -0.390625f, /*n:*/0.455947f, 0.720664f, -0.522202f, /*t:*/0.667060f, 0.874692f, + /*v:*/-0.242188f, 0.796875f, -0.242188f, /*n:*/0.952574f, 0.303995f, 0.013123f, /*t:*/0.666401f, 0.836256f, + /*v:*/-0.140625f, 0.742188f, -0.242188f, /*n:*/0.689291f, 0.724418f, 0.004578f, /*t:*/0.691853f, 0.845889f, + /*v:*/0.242188f, 0.796875f, -0.242188f, /*n:*/-0.952574f, 0.303995f, 0.013123f, /*t:*/0.936654f, 0.430276f, + /*v:*/0.273438f, 0.796875f, -0.328125f, /*n:*/-0.664357f, 0.305582f, -0.682058f, /*t:*/0.935992f, 0.409898f, + /*v:*/0.203125f, 0.742188f, -0.390625f, /*n:*/-0.455947f, 0.720664f, -0.522202f, /*t:*/0.952314f, 0.407519f, + /*v:*/0.242188f, 0.796875f, -0.242188f, /*n:*/-0.952574f, 0.303995f, 0.013123f, /*t:*/0.936654f, 0.430276f, + /*v:*/0.203125f, 0.742188f, -0.390625f, /*n:*/-0.455947f, 0.720664f, -0.522202f, /*t:*/0.952314f, 0.407519f, + /*v:*/0.140625f, 0.742188f, -0.242188f, /*n:*/-0.689291f, 0.724418f, 0.004578f, /*t:*/0.953837f, 0.443962f, + /*v:*/-0.140625f, 0.742188f, -0.242188f, /*n:*/0.689291f, 0.724418f, 0.004578f, /*t:*/0.691853f, 0.845889f, + /*v:*/-0.242188f, 0.796875f, -0.242188f, /*n:*/0.952574f, 0.303995f, 0.013123f, /*t:*/0.666401f, 0.836256f, + /*v:*/-0.203125f, 0.742188f, -0.093750f, /*n:*/0.456282f, 0.710746f, 0.535356f, /*t:*/0.691206f, 0.810182f, + /*v:*/-0.242188f, 0.796875f, -0.242188f, /*n:*/0.952574f, 0.303995f, 0.013123f, /*t:*/0.666401f, 0.836256f, + /*v:*/-0.273438f, 0.796875f, -0.164063f, /*n:*/0.653066f, 0.319315f, 0.686636f, /*t:*/0.666395f, 0.817554f, + /*v:*/-0.203125f, 0.742188f, -0.093750f, /*n:*/0.456282f, 0.710746f, 0.535356f, /*t:*/0.691206f, 0.810182f, + /*v:*/0.273438f, 0.796875f, -0.164063f, /*n:*/-0.653066f, 0.319315f, 0.686636f, /*t:*/0.023659f, 0.871527f, + /*v:*/0.242188f, 0.796875f, -0.242188f, /*n:*/-0.952574f, 0.303995f, 0.013123f, /*t:*/0.020634f, 0.854395f, + /*v:*/0.203125f, 0.742188f, -0.093750f, /*n:*/-0.456282f, 0.710746f, 0.535356f, /*t:*/0.047661f, 0.871369f, + /*v:*/0.242188f, 0.796875f, -0.242188f, /*n:*/-0.952574f, 0.303995f, 0.013123f, /*t:*/0.020634f, 0.854395f, + /*v:*/0.140625f, 0.742188f, -0.242188f, /*n:*/-0.689291f, 0.724418f, 0.004578f, /*t:*/0.042256f, 0.838256f, + /*v:*/0.203125f, 0.742188f, -0.093750f, /*n:*/-0.456282f, 0.710746f, 0.535356f, /*t:*/0.047661f, 0.871369f, + /*v:*/-0.078125f, 0.656250f, -0.242188f, /*n:*/0.809717f, 0.586749f, 0.006989f, /*t:*/0.712087f, 0.855664f, + /*v:*/-0.140625f, 0.742188f, -0.242188f, /*n:*/0.689291f, 0.724418f, 0.004578f, /*t:*/0.691853f, 0.845889f, + /*v:*/-0.156250f, 0.648438f, -0.054688f, /*n:*/0.553850f, 0.540635f, 0.633198f, /*t:*/0.712120f, 0.811181f, + /*v:*/-0.140625f, 0.742188f, -0.242188f, /*n:*/0.689291f, 0.724418f, 0.004578f, /*t:*/0.691853f, 0.845889f, + /*v:*/-0.203125f, 0.742188f, -0.093750f, /*n:*/0.456282f, 0.710746f, 0.535356f, /*t:*/0.691206f, 0.810182f, + /*v:*/-0.156250f, 0.648438f, -0.054688f, /*n:*/0.553850f, 0.540635f, 0.633198f, /*t:*/0.712120f, 0.811181f, + /*v:*/0.203125f, 0.742188f, -0.093750f, /*n:*/-0.456282f, 0.710746f, 0.535356f, /*t:*/0.047661f, 0.871369f, + /*v:*/0.140625f, 0.742188f, -0.242188f, /*n:*/-0.689291f, 0.724418f, 0.004578f, /*t:*/0.042256f, 0.838256f, + /*v:*/0.156250f, 0.648438f, -0.054688f, /*n:*/-0.553850f, 0.540635f, 0.633198f, /*t:*/0.074022f, 0.872373f, + /*v:*/0.140625f, 0.742188f, -0.242188f, /*n:*/-0.689291f, 0.724418f, 0.004578f, /*t:*/0.042256f, 0.838256f, + /*v:*/0.078125f, 0.656250f, -0.242188f, /*n:*/-0.809717f, 0.586749f, 0.006989f, /*t:*/0.065604f, 0.830386f, + /*v:*/0.156250f, 0.648438f, -0.054688f, /*n:*/-0.553850f, 0.540635f, 0.633198f, /*t:*/0.074022f, 0.872373f, + /*v:*/-0.156250f, 0.648438f, -0.054688f, /*n:*/0.553850f, 0.540635f, 0.633198f, /*t:*/0.613422f, 0.930785f, + /*v:*/-0.203125f, 0.742188f, -0.093750f, /*n:*/0.456282f, 0.710746f, 0.535356f, /*t:*/0.591053f, 0.921904f, + /*v:*/-0.351562f, 0.718750f, -0.031250f, /*n:*/-0.099490f, 0.652211f, 0.751457f, /*t:*/0.606887f, 0.895513f, + /*v:*/-0.156250f, 0.648438f, -0.054688f, /*n:*/0.553850f, 0.540635f, 0.633198f, /*t:*/0.613422f, 0.930785f, + /*v:*/-0.351562f, 0.718750f, -0.031250f, /*n:*/-0.099490f, 0.652211f, 0.751457f, /*t:*/0.606887f, 0.895513f, + /*v:*/-0.351562f, 0.617188f, 0.023437f, /*n:*/-0.119327f, 0.476272f, 0.871151f, /*t:*/0.633762f, 0.895647f, + /*v:*/0.351562f, 0.718750f, -0.031250f, /*n:*/0.099490f, 0.652211f, 0.751457f, /*t:*/0.041069f, 0.908234f, + /*v:*/0.203125f, 0.742188f, -0.093750f, /*n:*/-0.456282f, 0.710746f, 0.535356f, /*t:*/0.047661f, 0.871369f, + /*v:*/0.156250f, 0.648438f, -0.054688f, /*n:*/-0.553850f, 0.540635f, 0.633198f, /*t:*/0.074022f, 0.872373f, + /*v:*/0.351562f, 0.718750f, -0.031250f, /*n:*/0.099490f, 0.652211f, 0.751457f, /*t:*/0.041069f, 0.908234f, + /*v:*/0.156250f, 0.648438f, -0.054688f, /*n:*/-0.553850f, 0.540635f, 0.633198f, /*t:*/0.074022f, 0.872373f, + /*v:*/0.351562f, 0.617188f, 0.023437f, /*n:*/0.119327f, 0.476272f, 0.871151f, /*t:*/0.065088f, 0.920290f, + /*v:*/-0.203125f, 0.742188f, -0.093750f, /*n:*/0.456282f, 0.710746f, 0.535356f, /*t:*/0.591053f, 0.921904f, + /*v:*/-0.273438f, 0.796875f, -0.164063f, /*n:*/0.653066f, 0.319315f, 0.686636f, /*t:*/0.572161f, 0.903172f, + /*v:*/-0.351562f, 0.781250f, -0.132813f, /*n:*/-0.031404f, 0.252907f, 0.966948f, /*t:*/0.580889f, 0.888960f, + /*v:*/-0.203125f, 0.742188f, -0.093750f, /*n:*/0.456282f, 0.710746f, 0.535356f, /*t:*/0.591053f, 0.921904f, + /*v:*/-0.351562f, 0.781250f, -0.132813f, /*n:*/-0.031404f, 0.252907f, 0.966948f, /*t:*/0.580889f, 0.888960f, + /*v:*/-0.351562f, 0.718750f, -0.031250f, /*n:*/-0.099490f, 0.652211f, 0.751457f, /*t:*/0.606887f, 0.895513f, + /*v:*/0.351562f, 0.781250f, -0.132813f, /*n:*/0.031404f, 0.252907f, 0.966948f, /*t:*/0.020686f, 0.890817f, + /*v:*/0.273438f, 0.796875f, -0.164063f, /*n:*/-0.653066f, 0.319315f, 0.686636f, /*t:*/0.023659f, 0.871527f, + /*v:*/0.203125f, 0.742188f, -0.093750f, /*n:*/-0.456282f, 0.710746f, 0.535356f, /*t:*/0.047661f, 0.871369f, + /*v:*/0.351562f, 0.781250f, -0.132813f, /*n:*/0.031404f, 0.252907f, 0.966948f, /*t:*/0.020686f, 0.890817f, + /*v:*/0.203125f, 0.742188f, -0.093750f, /*n:*/-0.456282f, 0.710746f, 0.535356f, /*t:*/0.047661f, 0.871369f, + /*v:*/0.351562f, 0.718750f, -0.031250f, /*n:*/0.099490f, 0.652211f, 0.751457f, /*t:*/0.041069f, 0.908234f, + /*v:*/-0.351562f, 0.718750f, -0.031250f, /*n:*/-0.099490f, 0.652211f, 0.751457f, /*t:*/0.606887f, 0.895513f, + /*v:*/-0.351562f, 0.781250f, -0.132813f, /*n:*/-0.031404f, 0.252907f, 0.966948f, /*t:*/0.580889f, 0.888960f, + /*v:*/-0.437500f, 0.765625f, -0.164063f, /*n:*/-0.728996f, 0.193426f, 0.656575f, /*t:*/0.581052f, 0.867154f, + /*v:*/-0.351562f, 0.718750f, -0.031250f, /*n:*/-0.099490f, 0.652211f, 0.751457f, /*t:*/0.606887f, 0.895513f, + /*v:*/-0.437500f, 0.765625f, -0.164063f, /*n:*/-0.728996f, 0.193426f, 0.656575f, /*t:*/0.581052f, 0.867154f, + /*v:*/-0.500000f, 0.687500f, -0.093750f, /*n:*/-0.607624f, 0.608478f, 0.510392f, /*t:*/0.606789f, 0.856822f, + /*v:*/0.437500f, 0.765625f, -0.164063f, /*n:*/0.728996f, 0.193426f, 0.656575f, /*t:*/0.457348f, 0.840024f, + /*v:*/0.351562f, 0.781250f, -0.132813f, /*n:*/0.031404f, 0.252907f, 0.966948f, /*t:*/0.436735f, 0.841517f, + /*v:*/0.351562f, 0.718750f, -0.031250f, /*n:*/0.099490f, 0.652211f, 0.751457f, /*t:*/0.435241f, 0.819350f, + /*v:*/0.437500f, 0.765625f, -0.164063f, /*n:*/0.728996f, 0.193426f, 0.656575f, /*t:*/0.457348f, 0.840024f, + /*v:*/0.351562f, 0.718750f, -0.031250f, /*n:*/0.099490f, 0.652211f, 0.751457f, /*t:*/0.435241f, 0.819350f, + /*v:*/0.500000f, 0.687500f, -0.093750f, /*n:*/0.607624f, 0.608478f, 0.510392f, /*t:*/0.472055f, 0.818595f, + /*v:*/-0.351562f, 0.617188f, 0.023437f, /*n:*/-0.119327f, 0.476272f, 0.871151f, /*t:*/0.633762f, 0.895647f, + /*v:*/-0.351562f, 0.718750f, -0.031250f, /*n:*/-0.099490f, 0.652211f, 0.751457f, /*t:*/0.606887f, 0.895513f, + /*v:*/-0.500000f, 0.687500f, -0.093750f, /*n:*/-0.607624f, 0.608478f, 0.510392f, /*t:*/0.606789f, 0.856822f, + /*v:*/-0.351562f, 0.617188f, 0.023437f, /*n:*/-0.119327f, 0.476272f, 0.871151f, /*t:*/0.633762f, 0.895647f, + /*v:*/-0.500000f, 0.687500f, -0.093750f, /*n:*/-0.607624f, 0.608478f, 0.510392f, /*t:*/0.606789f, 0.856822f, + /*v:*/-0.546875f, 0.578125f, -0.054688f, /*n:*/-0.680166f, 0.488815f, 0.546251f, /*t:*/0.633816f, 0.845234f, + /*v:*/0.500000f, 0.687500f, -0.093750f, /*n:*/0.607624f, 0.608478f, 0.510392f, /*t:*/0.762632f, 0.267070f, + /*v:*/0.351562f, 0.718750f, -0.031250f, /*n:*/0.099490f, 0.652211f, 0.751457f, /*t:*/0.763005f, 0.302538f, + /*v:*/0.351562f, 0.617188f, 0.023437f, /*n:*/0.119327f, 0.476272f, 0.871151f, /*t:*/0.740306f, 0.309075f, + /*v:*/0.500000f, 0.687500f, -0.093750f, /*n:*/0.607624f, 0.608478f, 0.510392f, /*t:*/0.762632f, 0.267070f, + /*v:*/0.351562f, 0.617188f, 0.023437f, /*n:*/0.119327f, 0.476272f, 0.871151f, /*t:*/0.740306f, 0.309075f, + /*v:*/0.546875f, 0.578125f, -0.054688f, /*n:*/0.680166f, 0.488815f, 0.546251f, /*t:*/0.740338f, 0.263159f, + /*v:*/-0.546875f, 0.578125f, -0.054688f, /*n:*/-0.680166f, 0.488815f, 0.546251f, /*t:*/0.633816f, 0.845234f, + /*v:*/-0.500000f, 0.687500f, -0.093750f, /*n:*/-0.607624f, 0.608478f, 0.510392f, /*t:*/0.606789f, 0.856822f, + /*v:*/-0.562500f, 0.671875f, -0.242188f, /*n:*/-0.800104f, 0.599841f, 0.002838f, /*t:*/0.590203f, 0.828774f, + /*v:*/-0.546875f, 0.578125f, -0.054688f, /*n:*/-0.680166f, 0.488815f, 0.546251f, /*t:*/0.633816f, 0.845234f, + /*v:*/-0.562500f, 0.671875f, -0.242188f, /*n:*/-0.800104f, 0.599841f, 0.002838f, /*t:*/0.590203f, 0.828774f, + /*v:*/-0.625000f, 0.562500f, -0.242188f, /*n:*/-0.868221f, 0.496109f, 0.004730f, /*t:*/0.612070f, 0.810182f, + /*v:*/0.562500f, 0.671875f, -0.242188f, /*n:*/0.800104f, 0.599841f, 0.002838f, /*t:*/0.498218f, 0.844632f, + /*v:*/0.500000f, 0.687500f, -0.093750f, /*n:*/0.607624f, 0.608478f, 0.510392f, /*t:*/0.472055f, 0.818595f, + /*v:*/0.546875f, 0.578125f, -0.054688f, /*n:*/0.680166f, 0.488815f, 0.546251f, /*t:*/0.490047f, 0.805279f, + /*v:*/0.562500f, 0.671875f, -0.242188f, /*n:*/0.800104f, 0.599841f, 0.002838f, /*t:*/0.498218f, 0.844632f, + /*v:*/0.546875f, 0.578125f, -0.054688f, /*n:*/0.680166f, 0.488815f, 0.546251f, /*t:*/0.490047f, 0.805279f, + /*v:*/0.625000f, 0.562500f, -0.242188f, /*n:*/0.868221f, 0.496109f, 0.004730f, /*t:*/0.522471f, 0.838262f, + /*v:*/-0.500000f, 0.687500f, -0.093750f, /*n:*/-0.607624f, 0.608478f, 0.510392f, /*t:*/0.606789f, 0.856822f, + /*v:*/-0.437500f, 0.765625f, -0.164063f, /*n:*/-0.728996f, 0.193426f, 0.656575f, /*t:*/0.581052f, 0.867154f, + /*v:*/-0.468750f, 0.757812f, -0.242188f, /*n:*/-0.969298f, 0.245552f, 0.011811f, /*t:*/0.572215f, 0.852758f, + /*v:*/-0.500000f, 0.687500f, -0.093750f, /*n:*/-0.607624f, 0.608478f, 0.510392f, /*t:*/0.606789f, 0.856822f, + /*v:*/-0.468750f, 0.757812f, -0.242188f, /*n:*/-0.969298f, 0.245552f, 0.011811f, /*t:*/0.572215f, 0.852758f, + /*v:*/-0.562500f, 0.671875f, -0.242188f, /*n:*/-0.800104f, 0.599841f, 0.002838f, /*t:*/0.590203f, 0.828774f, + /*v:*/0.468750f, 0.757812f, -0.242188f, /*n:*/0.969298f, 0.245552f, 0.011811f, /*t:*/0.470762f, 0.853886f, + /*v:*/0.437500f, 0.765625f, -0.164063f, /*n:*/0.728996f, 0.193426f, 0.656575f, /*t:*/0.457348f, 0.840024f, + /*v:*/0.500000f, 0.687500f, -0.093750f, /*n:*/0.607624f, 0.608478f, 0.510392f, /*t:*/0.472055f, 0.818595f, + /*v:*/0.468750f, 0.757812f, -0.242188f, /*n:*/0.969298f, 0.245552f, 0.011811f, /*t:*/0.470762f, 0.853886f, + /*v:*/0.500000f, 0.687500f, -0.093750f, /*n:*/0.607624f, 0.608478f, 0.510392f, /*t:*/0.472055f, 0.818595f, + /*v:*/0.562500f, 0.671875f, -0.242188f, /*n:*/0.800104f, 0.599841f, 0.002838f, /*t:*/0.498218f, 0.844632f, + }; + } +} + diff --git a/OpenGL/GLKBaseEffectDrawingTexture/Resources/monkey.png b/OpenGL/GLKBaseEffectDrawingTexture/Resources/monkey.png new file mode 100755 index 000000000..390e1c276 Binary files /dev/null and b/OpenGL/GLKBaseEffectDrawingTexture/Resources/monkey.png differ diff --git a/OpenGL/GLKReflectionMapEffectSkybox/AppDelegate.cs b/OpenGL/GLKReflectionMapEffectSkybox/AppDelegate.cs new file mode 100644 index 000000000..e88af2e75 --- /dev/null +++ b/OpenGL/GLKReflectionMapEffectSkybox/AppDelegate.cs @@ -0,0 +1,31 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using MonoTouch.Foundation; +using MonoTouch.UIKit; + +namespace GLKReflectionMapEffectSkybox +{ + // The UIApplicationDelegate for the application. This class is responsible for launching the + // User Interface of the application, as well as listening (and optionally responding) to + // application events from iOS. + [Register ("AppDelegate")] + public partial class AppDelegate : UIApplicationDelegate + { + UIWindow window; + MCViewController controller; + + public override bool FinishedLaunching (UIApplication app, NSDictionary options) + { + window = new UIWindow (UIScreen.MainScreen.Bounds); + + controller = new MCViewController (); + window.RootViewController = controller; + + window.MakeKeyAndVisible (); + + return true; + } + } +} + diff --git a/OpenGL/GLKReflectionMapEffectSkybox/GLKReflectionMapEffectSkybox.csproj b/OpenGL/GLKReflectionMapEffectSkybox/GLKReflectionMapEffectSkybox.csproj new file mode 100644 index 000000000..4d2e44d5f --- /dev/null +++ b/OpenGL/GLKReflectionMapEffectSkybox/GLKReflectionMapEffectSkybox.csproj @@ -0,0 +1,100 @@ + + + + Debug + iPhoneSimulator + 10.0.0 + 2.0 + {512A6C28-7D23-4AD6-AE19-86647B15C1C4} + {6BC8ED88-2882-458C-8E55-DFD12B67127B};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + Exe + GLKReflectionMapEffectSkybox + Resources + GLKReflectionMapEffectSkybox + + + true + false + bin\iPhoneSimulator\Debug + DEBUG; + prompt + 4 + false + None + true + + + true + bin\iPhoneSimulator\Release + prompt + 4 + false + None + + + true + false + bin\iPhone\Debug + DEBUG; + prompt + 4 + false + true + iPhone Developer + + + true + bin\iPhone\Release + prompt + 4 + false + iPhone Developer + + + true + bin\iPhone\Ad-Hoc + prompt + 4 + true + iPhone Distribution + false + Automatic:AdHoc + + + true + bin\iPhone\AppStore + prompt + 4 + false + iPhone Distribution + Automatic:AppStore + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/OpenGL/GLKReflectionMapEffectSkybox/Info.plist b/OpenGL/GLKReflectionMapEffectSkybox/Info.plist new file mode 100644 index 000000000..cce0988b0 --- /dev/null +++ b/OpenGL/GLKReflectionMapEffectSkybox/Info.plist @@ -0,0 +1,19 @@ + + + + + UIDeviceFamily + + 2 + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + MinimumOSVersion + 3.2 + + diff --git a/OpenGL/GLKReflectionMapEffectSkybox/MCViewController.cs b/OpenGL/GLKReflectionMapEffectSkybox/MCViewController.cs new file mode 100644 index 000000000..b44b02eaa --- /dev/null +++ b/OpenGL/GLKReflectionMapEffectSkybox/MCViewController.cs @@ -0,0 +1,151 @@ +using System; +using MonoTouch.UIKit; +using OpenTK; +using MonoTouch.OpenGLES; +using MonoTouch.GLKit; +using MonoTouch; +using OpenTK.Graphics.ES20; +using MonoTouch.CoreGraphics; +using System.Drawing; +using MonoTouch.Foundation; + +namespace GLKReflectionMapEffectSkybox +{ + public class MCViewController : GLKViewController + { + float rotation; + + uint vertexArray; + uint vertexBuffer; + + EAGLContext context; + GLKReflectionMapEffect effect; + GLKTextureInfo cubemap; + GLKSkyboxEffect skyboxEffect; + + public MCViewController () + { + + } + + public override void ViewDidLoad () + { + base.ViewDidLoad (); + + context = new EAGLContext (EAGLRenderingAPI.OpenGLES2); + + if (context == null) + Console.WriteLine ("Failed to create ES context"); + + GLKView view = View as GLKView; + view.Context = context; + view.DrawableDepthFormat = GLKViewDrawableDepthFormat.Format24; + view.DrawInRect += Draw; + + setupGL (); + } + + void setupGL () + { + EAGLContext.SetCurrentContext (context); + + effect = new GLKReflectionMapEffect (); + effect.LightingType = GLKLightingType.PerPixel; + + skyboxEffect = new GLKSkyboxEffect (); + + effect.Light0.Enabled = true; + effect.Light0.DiffuseColor = new Vector4 (1f, 1f, 1f, 1f); + effect.Light0.Position = new Vector4 (-1f, -1f, 2f, 1f); + effect.Light0.SpecularColor = new Vector4 (1f, 1f, 1f, 1f); + effect.Light0.AmbientColor = new Vector4 (0.2f, 0.2f, 0.2f, 1f); + + effect.Light1.Enabled = true; + effect.Light1.DiffuseColor = new Vector4 (0.4f, 0.4f, 0.4f, 1f); + effect.Light1.Position = new Vector4 (15f, 15f, 15f, 1f); + effect.Light1.SpecularColor = new Vector4 (1f, 0f, 0f, 1f); + + effect.Material.DiffuseColor = new Vector4 (1f, 1f, 1f, 1f); + effect.Material.AmbientColor = new Vector4 (1f, 1f, 1f, 1f); + effect.Material.SpecularColor = new Vector4 (1f, 0f, 0f, 1f); + effect.Material.Shininess = 320f; + effect.Material.EmissiveColor = new Vector4 (0.4f, 4f, 0.4f, 1f); + + GL.Enable (EnableCap.DepthTest); + + GL.Oes.GenVertexArrays (1, out vertexArray); + GL.Oes.BindVertexArray (vertexArray); + + GL.GenBuffers (1, out vertexBuffer); + GL.BindBuffer (BufferTarget.ArrayBuffer, vertexBuffer); + GL.BufferData (BufferTarget.ArrayBuffer, (IntPtr) (Monkey.MeshVertexData.Length * sizeof (float)), + Monkey.MeshVertexData, BufferUsage.StaticDraw); + + GL.EnableVertexAttribArray ((int) GLKVertexAttrib.Position); + GL.VertexAttribPointer ((int) GLKVertexAttrib.Position, 3, VertexAttribPointerType.Float, + false, 6 * sizeof (float), 0); + + GL.EnableVertexAttribArray ((int) GLKVertexAttrib.Normal); + GL.VertexAttribPointer ((int) GLKVertexAttrib.Normal, 3, VertexAttribPointerType.Float, + false, 6 * sizeof(float), 12); + + string[] cubeMapFiles = { + NSBundle.MainBundle.PathForResource ("cubemap1", "png"), + NSBundle.MainBundle.PathForResource ("cubemap2", "png"), + NSBundle.MainBundle.PathForResource ("cubemap3", "png"), + NSBundle.MainBundle.PathForResource ("cubemap4", "png"), + NSBundle.MainBundle.PathForResource ("cubemap5", "png"), + NSBundle.MainBundle.PathForResource ("cubemap6", "png") + }; + + NSError error; + NSDictionary options = NSDictionary.FromObjectAndKey (NSNumber.FromBoolean (false), + GLKTextureLoader.OriginBottomLeft); + + cubemap = GLKTextureLoader.CubeMapFromFiles (cubeMapFiles, options, out error); + + effect.TextureCubeMap.GLName = cubemap.Name; + skyboxEffect.TextureCubeMap.GLName = cubemap.Name; + + GL.Oes.BindVertexArray (0); + } + + public override void Update () + { + float aspect = (float)Math.Abs (View.Bounds.Size.Width / View.Bounds.Size.Height); + + Matrix4 projectionMatrix = + Matrix4.CreatePerspectiveFieldOfView ((float) (Math.PI * 65f / 180.0f), + aspect, 0.1f, 100.0f); + + effect.Transform.ProjectionMatrix = projectionMatrix; + skyboxEffect.Transform.ProjectionMatrix = projectionMatrix; + + Matrix4 modelViewMatrix = Matrix4.CreateTranslation (new Vector3 (0f, 0f, -3.5f)); + modelViewMatrix = Matrix4.Mult (Matrix4.CreateFromAxisAngle (new Vector3 (1f, 1f, 1f), rotation), modelViewMatrix); + + effect.Transform.ModelViewMatrix = modelViewMatrix; + + modelViewMatrix = Matrix4.Mult (Matrix4.Scale (50f), modelViewMatrix); + skyboxEffect.Transform.ModelViewMatrix = modelViewMatrix; + + rotation += (float) TimeSinceLastUpdate * 0.5f; + } + + public void Draw (object sender, GLKViewDrawEventArgs args) + { + GL.ClearColor (0.65f, 0.65f, 0.65f, 1f); + GL.Clear (ClearBufferMask.ColorBufferBit | ClearBufferMask.DepthBufferBit); + + skyboxEffect.PrepareToDraw (); + skyboxEffect.Draw (); + + GL.Oes.BindVertexArray (vertexArray); + + effect.PrepareToDraw (); + + GL.DrawArrays (BeginMode.Triangles, 0, Monkey.MeshVertexData.Length / 6); + } + } +} + diff --git a/OpenGL/GLKReflectionMapEffectSkybox/Main.cs b/OpenGL/GLKReflectionMapEffectSkybox/Main.cs new file mode 100644 index 000000000..cd41a746d --- /dev/null +++ b/OpenGL/GLKReflectionMapEffectSkybox/Main.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using MonoTouch.Foundation; +using MonoTouch.UIKit; + +namespace GLKReflectionMapEffectSkybox +{ + public class Application + { + // This is the main entry point of the application. + static void Main (string[] args) + { + // if you want to use a different Application Delegate class from "AppDelegate" + // you can specify it here. + UIApplication.Main (args, null, "AppDelegate"); + } + } +} diff --git a/OpenGL/GLKReflectionMapEffectSkybox/Monkey.cs b/OpenGL/GLKReflectionMapEffectSkybox/Monkey.cs new file mode 100644 index 000000000..27ef5603b --- /dev/null +++ b/OpenGL/GLKReflectionMapEffectSkybox/Monkey.cs @@ -0,0 +1,2916 @@ +using System; +using OpenTK; + +namespace GLKReflectionMapEffectSkybox +{ + public static class Monkey + { + public static float[] MeshVertexData = { + /*v:*/0.351562f, 0.500724f, 0.433432f, /*n:*/0.183599f, -0.005310f, 0.982971f, + /*v:*/0.445312f, 0.414787f, 0.386557f, /*n:*/0.715171f, -0.662465f, 0.222724f, + /*v:*/0.476562f, 0.500724f, 0.378744f, /*n:*/0.964446f, -0.012665f, 0.263863f, + /*v:*/-0.476562f, 0.500724f, 0.378744f, /*n:*/-0.964446f, -0.012665f, 0.263863f, + /*v:*/-0.445312f, 0.414787f, 0.386557f, /*n:*/-0.715171f, -0.662465f, 0.222724f, + /*v:*/-0.351562f, 0.500724f, 0.433432f, /*n:*/-0.183599f, -0.005310f, 0.982971f, + /*v:*/0.351562f, 0.375724f, 0.409994f, /*n:*/0.042543f, -0.940336f, 0.337474f, + /*v:*/0.445312f, 0.414787f, 0.386557f, /*n:*/0.715171f, -0.662465f, 0.222724f, + /*v:*/0.351562f, 0.500724f, 0.433432f, /*n:*/0.183599f, -0.005310f, 0.982971f, + /*v:*/-0.351562f, 0.500724f, 0.433432f, /*n:*/-0.183599f, -0.005310f, 0.982971f, + /*v:*/-0.445312f, 0.414787f, 0.386557f, /*n:*/-0.715171f, -0.662465f, 0.222724f, + /*v:*/-0.351562f, 0.375724f, 0.409994f, /*n:*/-0.042543f, -0.940336f, 0.337474f, + /*v:*/0.351562f, 0.500724f, 0.433432f, /*n:*/0.183599f, -0.005310f, 0.982971f, + /*v:*/0.265625f, 0.414787f, 0.425619f, /*n:*/-0.615864f, -0.636616f, 0.464095f, + /*v:*/0.351562f, 0.375724f, 0.409994f, /*n:*/0.042543f, -0.940336f, 0.337474f, + /*v:*/-0.351562f, 0.375724f, 0.409994f, /*n:*/-0.042543f, -0.940336f, 0.337474f, + /*v:*/-0.265625f, 0.414787f, 0.425619f, /*n:*/0.615864f, -0.636616f, 0.464095f, + /*v:*/-0.351562f, 0.500724f, 0.433432f, /*n:*/-0.183599f, -0.005310f, 0.982971f, + /*v:*/0.351562f, 0.500724f, 0.433432f, /*n:*/0.183599f, -0.005310f, 0.982971f, + /*v:*/0.226562f, 0.500724f, 0.425619f, /*n:*/-0.926969f, -0.012940f, 0.374889f, + /*v:*/0.265625f, 0.414787f, 0.425619f, /*n:*/-0.615864f, -0.636616f, 0.464095f, + /*v:*/-0.265625f, 0.414787f, 0.425619f, /*n:*/0.615864f, -0.636616f, 0.464095f, + /*v:*/-0.226562f, 0.500724f, 0.425619f, /*n:*/0.926969f, -0.012940f, 0.374889f, + /*v:*/-0.351562f, 0.500724f, 0.433432f, /*n:*/-0.183599f, -0.005310f, 0.982971f, + /*v:*/0.351562f, 0.500724f, 0.433432f, /*n:*/0.183599f, -0.005310f, 0.982971f, + /*v:*/0.265625f, 0.594474f, 0.425619f, /*n:*/-0.623676f, 0.628529f, 0.464675f, + /*v:*/0.226562f, 0.500724f, 0.425619f, /*n:*/-0.926969f, -0.012940f, 0.374889f, + /*v:*/-0.226562f, 0.500724f, 0.425619f, /*n:*/0.926969f, -0.012940f, 0.374889f, + /*v:*/-0.265625f, 0.594474f, 0.425619f, /*n:*/0.623676f, 0.628529f, 0.464675f, + /*v:*/-0.351562f, 0.500724f, 0.433432f, /*n:*/-0.183599f, -0.005310f, 0.982971f, + /*v:*/0.351562f, 0.500724f, 0.433432f, /*n:*/0.183599f, -0.005310f, 0.982971f, + /*v:*/0.351562f, 0.633537f, 0.409994f, /*n:*/0.043153f, 0.938902f, 0.341441f, + /*v:*/0.265625f, 0.594474f, 0.425619f, /*n:*/-0.623676f, 0.628529f, 0.464675f, + /*v:*/-0.265625f, 0.594474f, 0.425619f, /*n:*/0.623676f, 0.628529f, 0.464675f, + /*v:*/-0.351562f, 0.633537f, 0.409994f, /*n:*/-0.043153f, 0.938902f, 0.341441f, + /*v:*/-0.351562f, 0.500724f, 0.433432f, /*n:*/-0.183599f, -0.005310f, 0.982971f, + /*v:*/0.351562f, 0.500724f, 0.433432f, /*n:*/0.183599f, -0.005310f, 0.982971f, + /*v:*/0.445312f, 0.594474f, 0.386557f, /*n:*/0.721610f, 0.655568f, 0.222388f, + /*v:*/0.351562f, 0.633537f, 0.409994f, /*n:*/0.043153f, 0.938902f, 0.341441f, + /*v:*/-0.351562f, 0.633537f, 0.409994f, /*n:*/-0.043153f, 0.938902f, 0.341441f, + /*v:*/-0.445312f, 0.594474f, 0.386557f, /*n:*/-0.721610f, 0.655568f, 0.222388f, + /*v:*/-0.351562f, 0.500724f, 0.433432f, /*n:*/-0.183599f, -0.005310f, 0.982971f, + /*v:*/0.351562f, 0.500724f, 0.433432f, /*n:*/0.183599f, -0.005310f, 0.982971f, + /*v:*/0.476562f, 0.500724f, 0.378744f, /*n:*/0.964446f, -0.012665f, 0.263863f, + /*v:*/0.445312f, 0.594474f, 0.386557f, /*n:*/0.721610f, 0.655568f, 0.222388f, + /*v:*/-0.445312f, 0.594474f, 0.386557f, /*n:*/-0.721610f, 0.655568f, 0.222388f, + /*v:*/-0.476562f, 0.500724f, 0.378744f, /*n:*/-0.964446f, -0.012665f, 0.263863f, + /*v:*/-0.351562f, 0.500724f, 0.433432f, /*n:*/-0.183599f, -0.005310f, 0.982971f, + /*v:*/0.093750f, -0.491463f, 0.269370f, /*n:*/-0.517655f, -0.704123f, 0.486007f, + /*v:*/0.046875f, -0.593026f, 0.238120f, /*n:*/-0.295846f, 0.474960f, 0.828761f, + /*v:*/0.093750f, -0.553963f, 0.245932f, /*n:*/-0.673757f, 0.115452f, 0.729850f, + /*v:*/-0.093750f, -0.553963f, 0.245932f, /*n:*/0.673757f, 0.115452f, 0.729850f, + /*v:*/-0.046875f, -0.593026f, 0.238120f, /*n:*/0.295846f, 0.474960f, 0.828761f, + /*v:*/-0.093750f, -0.491463f, 0.269370f, /*n:*/0.517655f, -0.704123f, 0.486007f, + /*v:*/0.000000f, 0.664787f, 0.206869f, /*n:*/0.000000f, 0.859188f, 0.511612f, + /*v:*/0.109375f, 0.719474f, 0.214682f, /*n:*/-0.459304f, 0.862453f, 0.212561f, + /*v:*/0.000000f, 0.828849f, 0.175619f, /*n:*/0.000000f, 0.529252f, 0.848445f, + /*v:*/0.000000f, 0.828849f, 0.175619f, /*n:*/0.000000f, 0.529252f, 0.848445f, + /*v:*/-0.109375f, 0.719474f, 0.214682f, /*n:*/0.459304f, 0.862453f, 0.212561f, + /*v:*/0.000000f, 0.664787f, 0.206869f, /*n:*/0.000000f, 0.859188f, 0.511612f, + /*v:*/0.218750f, -0.022713f, 0.034994f, /*n:*/0.978698f, -0.195837f, 0.061495f, + /*v:*/0.210938f, -0.132088f, -0.230631f, /*n:*/0.572680f, -0.819666f, 0.011994f, + /*v:*/0.406250f, 0.086662f, -0.246256f, /*n:*/0.579028f, -0.802698f, 0.142705f, + /*v:*/-0.406250f, 0.086662f, -0.246256f, /*n:*/-0.579028f, -0.802698f, 0.142705f, + /*v:*/-0.210938f, -0.132088f, -0.230631f, /*n:*/-0.572680f, -0.819666f, 0.011994f, + /*v:*/-0.218750f, -0.022713f, 0.034994f, /*n:*/-0.978698f, -0.195837f, 0.061495f, + /*v:*/0.437500f, 0.164787f, 0.074057f, /*n:*/0.471969f, -0.863674f, -0.176794f, + /*v:*/0.203125f, 0.086662f, 0.105307f, /*n:*/0.785699f, -0.571459f, 0.236732f, + /*v:*/0.210938f, 0.031974f, 0.074057f, /*n:*/0.887173f, -0.157720f, 0.433607f, + /*v:*/-0.210938f, 0.031974f, 0.074057f, /*n:*/-0.887173f, -0.157720f, 0.433607f, + /*v:*/-0.203125f, 0.086662f, 0.105307f, /*n:*/-0.785699f, -0.571459f, 0.236732f, + /*v:*/-0.437500f, 0.164787f, 0.074057f, /*n:*/-0.471969f, -0.863674f, -0.176794f, + /*v:*/0.335938f, 0.313224f, -1.058756f, /*n:*/0.445479f, -0.358348f, -0.820399f, + /*v:*/0.484375f, 0.281974f, -0.941568f, /*n:*/0.529221f, -0.505112f, -0.681722f, + /*v:*/0.343750f, 0.110099f, -0.933756f, /*n:*/0.522263f, -0.653615f, -0.547685f, + /*v:*/-0.343750f, 0.110099f, -0.933756f, /*n:*/-0.522263f, -0.653615f, -0.547685f, + /*v:*/-0.484375f, 0.281974f, -0.941568f, /*n:*/-0.529221f, -0.505112f, -0.681722f, + /*v:*/-0.335938f, 0.313224f, -1.058756f, /*n:*/-0.445479f, -0.358348f, -0.820399f, + /*v:*/0.726562f, 0.258537f, -0.465006f, /*n:*/0.857204f, -0.493118f, -0.148289f, + /*v:*/0.718750f, 0.235099f, -0.566568f, /*n:*/0.731193f, 0.114414f, 0.672475f, + /*v:*/0.718750f, 0.297599f, -0.582193f, /*n:*/0.960936f, -0.118839f, 0.249855f, + /*v:*/-0.718750f, 0.297599f, -0.582193f, /*n:*/-0.960936f, -0.118839f, 0.249855f, + /*v:*/-0.718750f, 0.235099f, -0.566568f, /*n:*/-0.731193f, 0.114414f, 0.672475f, + /*v:*/-0.726562f, 0.258537f, -0.465006f, /*n:*/-0.857204f, -0.493118f, -0.148289f, + /*v:*/1.039062f, 0.586662f, -0.808756f, /*n:*/0.461776f, -0.329142f, 0.823664f, + /*v:*/1.085938f, 0.531974f, -0.785318f, /*n:*/0.289651f, 0.315806f, 0.903500f, + /*v:*/1.187500f, 0.602287f, -0.879068f, /*n:*/-0.262398f, -0.533067f, 0.804346f, + /*v:*/-1.187500f, 0.602287f, -0.879068f, /*n:*/0.262398f, -0.533067f, 0.804346f, + /*v:*/-1.085938f, 0.531974f, -0.785318f, /*n:*/-0.289651f, 0.315806f, 0.903500f, + /*v:*/-1.039062f, 0.586662f, -0.808756f, /*n:*/-0.461776f, -0.329142f, 0.823664f, + /*v:*/1.250000f, 0.727287f, -0.941568f, /*n:*/0.286996f, 0.597766f, -0.748497f, + /*v:*/1.367188f, 0.555412f, -0.894693f, /*n:*/0.925260f, 0.091830f, -0.367992f, + /*v:*/1.312500f, 0.313224f, -0.925943f, /*n:*/0.636586f, -0.504318f, -0.583392f, + /*v:*/-1.312500f, 0.313224f, -0.925943f, /*n:*/-0.636586f, -0.504318f, -0.583392f, + /*v:*/-1.367188f, 0.555412f, -0.894693f, /*n:*/-0.925260f, 0.091830f, -0.367992f, + /*v:*/-1.250000f, 0.727287f, -0.941568f, /*n:*/-0.286996f, 0.597766f, -0.748497f, + /*v:*/-0.789062f, 0.133537f, -0.722818f, /*n:*/0.098849f, -0.840846f, -0.532151f, + /*v:*/-0.640625f, 0.250724f, -0.824381f, /*n:*/-0.325510f, -0.602924f, -0.728355f, + /*v:*/-0.593750f, 0.133537f, -0.558756f, /*n:*/-0.312296f, -0.949950f, 0.001160f, + /*v:*/-0.789062f, 0.133537f, -0.722818f, /*n:*/0.098849f, -0.840846f, -0.532151f, + /*v:*/-0.593750f, 0.133537f, -0.558756f, /*n:*/-0.312296f, -0.949950f, 0.001160f, + /*v:*/-0.773438f, 0.117912f, -0.519693f, /*n:*/-0.029542f, -0.634999f, 0.771905f, + /*v:*/0.593750f, 0.133537f, -0.558756f, /*n:*/0.312296f, -0.949950f, 0.001160f, + /*v:*/0.640625f, 0.250724f, -0.824381f, /*n:*/0.325510f, -0.602924f, -0.728355f, + /*v:*/0.789062f, 0.133537f, -0.722818f, /*n:*/-0.098849f, -0.840846f, -0.532151f, + /*v:*/0.593750f, 0.133537f, -0.558756f, /*n:*/0.312296f, -0.949950f, 0.001160f, + /*v:*/0.789062f, 0.133537f, -0.722818f, /*n:*/-0.098849f, -0.840846f, -0.532151f, + /*v:*/0.773438f, 0.117912f, -0.519693f, /*n:*/0.029542f, -0.634999f, 0.771905f, + /*v:*/-0.789062f, 0.133537f, -0.722818f, /*n:*/0.098849f, -0.840846f, -0.532151f, + /*v:*/-0.859375f, 0.641349f, -0.777506f, /*n:*/0.650044f, 0.584643f, -0.485336f, + /*v:*/-0.773438f, 0.524162f, -0.832193f, /*n:*/-0.670766f, -0.045289f, -0.740257f, + /*v:*/-0.789062f, 0.133537f, -0.722818f, /*n:*/0.098849f, -0.840846f, -0.532151f, + /*v:*/-0.773438f, 0.524162f, -0.832193f, /*n:*/-0.670766f, -0.045289f, -0.740257f, + /*v:*/-0.640625f, 0.250724f, -0.824381f, /*n:*/-0.325510f, -0.602924f, -0.728355f, + /*v:*/0.773438f, 0.524162f, -0.832193f, /*n:*/0.670766f, -0.045289f, -0.740257f, + /*v:*/0.859375f, 0.641349f, -0.777506f, /*n:*/-0.650044f, 0.584643f, -0.485336f, + /*v:*/0.789062f, 0.133537f, -0.722818f, /*n:*/-0.098849f, -0.840846f, -0.532151f, + /*v:*/0.773438f, 0.524162f, -0.832193f, /*n:*/0.670766f, -0.045289f, -0.740257f, + /*v:*/0.789062f, 0.133537f, -0.722818f, /*n:*/-0.098849f, -0.840846f, -0.532151f, + /*v:*/0.640625f, 0.250724f, -0.824381f, /*n:*/0.325510f, -0.602924f, -0.728355f, + /*v:*/-0.890625f, 0.664787f, -0.629068f, /*n:*/0.279244f, 0.768303f, 0.575884f, + /*v:*/-0.820312f, 0.586662f, -0.597818f, /*n:*/-0.908536f, 0.224219f, 0.352489f, + /*v:*/-0.859375f, 0.641349f, -0.777506f, /*n:*/0.650044f, 0.584643f, -0.485336f, + /*v:*/-0.820312f, 0.586662f, -0.597818f, /*n:*/-0.908536f, 0.224219f, 0.352489f, + /*v:*/-0.773438f, 0.524162f, -0.832193f, /*n:*/-0.670766f, -0.045289f, -0.740257f, + /*v:*/-0.859375f, 0.641349f, -0.777506f, /*n:*/0.650044f, 0.584643f, -0.485336f, + /*v:*/0.773438f, 0.524162f, -0.832193f, /*n:*/0.670766f, -0.045289f, -0.740257f, + /*v:*/0.820312f, 0.586662f, -0.597818f, /*n:*/0.908536f, 0.224219f, 0.352489f, + /*v:*/0.859375f, 0.641349f, -0.777506f, /*n:*/-0.650044f, 0.584643f, -0.485336f, + /*v:*/0.820312f, 0.586662f, -0.597818f, /*n:*/0.908536f, 0.224219f, 0.352489f, + /*v:*/0.890625f, 0.664787f, -0.629068f, /*n:*/-0.279244f, 0.768303f, 0.575884f, + /*v:*/0.859375f, 0.641349f, -0.777506f, /*n:*/-0.650044f, 0.584643f, -0.485336f, + /*v:*/-1.312500f, 0.313224f, -0.925943f, /*n:*/-0.636586f, -0.504318f, -0.583392f, + /*v:*/-1.250000f, 0.727287f, -0.941568f, /*n:*/-0.286996f, 0.597766f, -0.748497f, + /*v:*/-1.023438f, 0.696037f, -0.879068f, /*n:*/0.414228f, 0.550890f, -0.724479f, + /*v:*/-1.312500f, 0.313224f, -0.925943f, /*n:*/-0.636586f, -0.504318f, -0.583392f, + /*v:*/-1.023438f, 0.696037f, -0.879068f, /*n:*/0.414228f, 0.550890f, -0.724479f, + /*v:*/-1.039062f, 0.172599f, -0.886881f, /*n:*/0.025269f, -0.679586f, -0.733116f, + /*v:*/1.023438f, 0.696037f, -0.879068f, /*n:*/-0.414228f, 0.550890f, -0.724479f, + /*v:*/1.250000f, 0.727287f, -0.941568f, /*n:*/0.286996f, 0.597766f, -0.748497f, + /*v:*/1.312500f, 0.313224f, -0.925943f, /*n:*/0.636586f, -0.504318f, -0.583392f, + /*v:*/1.023438f, 0.696037f, -0.879068f, /*n:*/-0.414228f, 0.550890f, -0.724479f, + /*v:*/1.312500f, 0.313224f, -0.925943f, /*n:*/0.636586f, -0.504318f, -0.583392f, + /*v:*/1.039062f, 0.172599f, -0.886881f, /*n:*/-0.025269f, -0.679586f, -0.733116f, + /*v:*/-0.789062f, 0.133537f, -0.722818f, /*n:*/0.098849f, -0.840846f, -0.532151f, + /*v:*/-1.039062f, 0.172599f, -0.886881f, /*n:*/0.025269f, -0.679586f, -0.733116f, + /*v:*/-0.859375f, 0.641349f, -0.777506f, /*n:*/0.650044f, 0.584643f, -0.485336f, + /*v:*/-1.039062f, 0.172599f, -0.886881f, /*n:*/0.025269f, -0.679586f, -0.733116f, + /*v:*/-1.023438f, 0.696037f, -0.879068f, /*n:*/0.414228f, 0.550890f, -0.724479f, + /*v:*/-0.859375f, 0.641349f, -0.777506f, /*n:*/0.650044f, 0.584643f, -0.485336f, + /*v:*/1.023438f, 0.696037f, -0.879068f, /*n:*/-0.414228f, 0.550890f, -0.724479f, + /*v:*/1.039062f, 0.172599f, -0.886881f, /*n:*/-0.025269f, -0.679586f, -0.733116f, + /*v:*/0.859375f, 0.641349f, -0.777506f, /*n:*/-0.650044f, 0.584643f, -0.485336f, + /*v:*/1.039062f, 0.172599f, -0.886881f, /*n:*/-0.025269f, -0.679586f, -0.733116f, + /*v:*/0.789062f, 0.133537f, -0.722818f, /*n:*/-0.098849f, -0.840846f, -0.532151f, + /*v:*/0.859375f, 0.641349f, -0.777506f, /*n:*/-0.650044f, 0.584643f, -0.485336f, + /*v:*/-1.023438f, 0.696037f, -0.879068f, /*n:*/0.414228f, 0.550890f, -0.724479f, + /*v:*/-1.023438f, 0.735099f, -0.707193f, /*n:*/-0.018799f, 0.872250f, 0.488632f, + /*v:*/-0.859375f, 0.641349f, -0.777506f, /*n:*/0.650044f, 0.584643f, -0.485336f, + /*v:*/-1.023438f, 0.735099f, -0.707193f, /*n:*/-0.018799f, 0.872250f, 0.488632f, + /*v:*/-0.890625f, 0.664787f, -0.629068f, /*n:*/0.279244f, 0.768303f, 0.575884f, + /*v:*/-0.859375f, 0.641349f, -0.777506f, /*n:*/0.650044f, 0.584643f, -0.485336f, + /*v:*/0.890625f, 0.664787f, -0.629068f, /*n:*/-0.279244f, 0.768303f, 0.575884f, + /*v:*/1.023438f, 0.735099f, -0.707193f, /*n:*/0.018799f, 0.872250f, 0.488632f, + /*v:*/0.859375f, 0.641349f, -0.777506f, /*n:*/-0.650044f, 0.584643f, -0.485336f, + /*v:*/1.023438f, 0.735099f, -0.707193f, /*n:*/0.018799f, 0.872250f, 0.488632f, + /*v:*/1.023438f, 0.696037f, -0.879068f, /*n:*/-0.414228f, 0.550890f, -0.724479f, + /*v:*/0.859375f, 0.641349f, -0.777506f, /*n:*/-0.650044f, 0.584643f, -0.485336f, + /*v:*/-1.250000f, 0.727287f, -0.941568f, /*n:*/-0.286996f, 0.597766f, -0.748497f, + /*v:*/-1.234375f, 0.766349f, -0.816568f, /*n:*/-0.383557f, 0.862972f, 0.328776f, + /*v:*/-1.023438f, 0.696037f, -0.879068f, /*n:*/0.414228f, 0.550890f, -0.724479f, + /*v:*/-1.234375f, 0.766349f, -0.816568f, /*n:*/-0.383557f, 0.862972f, 0.328776f, + /*v:*/-1.023438f, 0.735099f, -0.707193f, /*n:*/-0.018799f, 0.872250f, 0.488632f, + /*v:*/-1.023438f, 0.696037f, -0.879068f, /*n:*/0.414228f, 0.550890f, -0.724479f, + /*v:*/1.023438f, 0.735099f, -0.707193f, /*n:*/0.018799f, 0.872250f, 0.488632f, + /*v:*/1.234375f, 0.766349f, -0.816568f, /*n:*/0.383557f, 0.862972f, 0.328776f, + /*v:*/1.023438f, 0.696037f, -0.879068f, /*n:*/-0.414228f, 0.550890f, -0.724479f, + /*v:*/1.234375f, 0.766349f, -0.816568f, /*n:*/0.383557f, 0.862972f, 0.328776f, + /*v:*/1.250000f, 0.727287f, -0.941568f, /*n:*/0.286996f, 0.597766f, -0.748497f, + /*v:*/1.023438f, 0.696037f, -0.879068f, /*n:*/-0.414228f, 0.550890f, -0.724479f, + /*v:*/-1.367188f, 0.555412f, -0.894693f, /*n:*/-0.925260f, 0.091830f, -0.367992f, + /*v:*/-1.351562f, 0.578849f, -0.816568f, /*n:*/-0.778802f, 0.167791f, 0.604389f, + /*v:*/-1.250000f, 0.727287f, -0.941568f, /*n:*/-0.286996f, 0.597766f, -0.748497f, + /*v:*/-1.351562f, 0.578849f, -0.816568f, /*n:*/-0.778802f, 0.167791f, 0.604389f, + /*v:*/-1.234375f, 0.766349f, -0.816568f, /*n:*/-0.383557f, 0.862972f, 0.328776f, + /*v:*/-1.250000f, 0.727287f, -0.941568f, /*n:*/-0.286996f, 0.597766f, -0.748497f, + /*v:*/1.234375f, 0.766349f, -0.816568f, /*n:*/0.383557f, 0.862972f, 0.328776f, + /*v:*/1.351562f, 0.578849f, -0.816568f, /*n:*/0.778802f, 0.167791f, 0.604389f, + /*v:*/1.250000f, 0.727287f, -0.941568f, /*n:*/0.286996f, 0.597766f, -0.748497f, + /*v:*/1.351562f, 0.578849f, -0.816568f, /*n:*/0.778802f, 0.167791f, 0.604389f, + /*v:*/1.367188f, 0.555412f, -0.894693f, /*n:*/0.925260f, 0.091830f, -0.367992f, + /*v:*/1.250000f, 0.727287f, -0.941568f, /*n:*/0.286996f, 0.597766f, -0.748497f, + /*v:*/-1.312500f, 0.313224f, -0.925943f, /*n:*/-0.636586f, -0.504318f, -0.583392f, + /*v:*/-1.281250f, 0.313224f, -0.824381f, /*n:*/-0.652608f, -0.476821f, 0.588794f, + /*v:*/-1.367188f, 0.555412f, -0.894693f, /*n:*/-0.925260f, 0.091830f, -0.367992f, + /*v:*/-1.281250f, 0.313224f, -0.824381f, /*n:*/-0.652608f, -0.476821f, 0.588794f, + /*v:*/-1.351562f, 0.578849f, -0.816568f, /*n:*/-0.778802f, 0.167791f, 0.604389f, + /*v:*/-1.367188f, 0.555412f, -0.894693f, /*n:*/-0.925260f, 0.091830f, -0.367992f, + /*v:*/1.351562f, 0.578849f, -0.816568f, /*n:*/0.778802f, 0.167791f, 0.604389f, + /*v:*/1.281250f, 0.313224f, -0.824381f, /*n:*/0.652608f, -0.476821f, 0.588794f, + /*v:*/1.367188f, 0.555412f, -0.894693f, /*n:*/0.925260f, 0.091830f, -0.367992f, + /*v:*/1.281250f, 0.313224f, -0.824381f, /*n:*/0.652608f, -0.476821f, 0.588794f, + /*v:*/1.312500f, 0.313224f, -0.925943f, /*n:*/0.636586f, -0.504318f, -0.583392f, + /*v:*/1.367188f, 0.555412f, -0.894693f, /*n:*/0.925260f, 0.091830f, -0.367992f, + /*v:*/-1.039062f, 0.172599f, -0.886881f, /*n:*/0.025269f, -0.679586f, -0.733116f, + /*v:*/-1.039062f, 0.156974f, -0.722818f, /*n:*/-0.502884f, -0.780999f, 0.370312f, + /*v:*/-1.281250f, 0.313224f, -0.824381f, /*n:*/-0.652608f, -0.476821f, 0.588794f, + /*v:*/-1.039062f, 0.172599f, -0.886881f, /*n:*/0.025269f, -0.679586f, -0.733116f, + /*v:*/-1.281250f, 0.313224f, -0.824381f, /*n:*/-0.652608f, -0.476821f, 0.588794f, + /*v:*/-1.312500f, 0.313224f, -0.925943f, /*n:*/-0.636586f, -0.504318f, -0.583392f, + /*v:*/1.281250f, 0.313224f, -0.824381f, /*n:*/0.652608f, -0.476821f, 0.588794f, + /*v:*/1.039062f, 0.156974f, -0.722818f, /*n:*/0.502884f, -0.780999f, 0.370312f, + /*v:*/1.039062f, 0.172599f, -0.886881f, /*n:*/-0.025269f, -0.679586f, -0.733116f, + /*v:*/1.281250f, 0.313224f, -0.824381f, /*n:*/0.652608f, -0.476821f, 0.588794f, + /*v:*/1.039062f, 0.172599f, -0.886881f, /*n:*/-0.025269f, -0.679586f, -0.733116f, + /*v:*/1.312500f, 0.313224f, -0.925943f, /*n:*/0.636586f, -0.504318f, -0.583392f, + /*v:*/-0.789062f, 0.133537f, -0.722818f, /*n:*/0.098849f, -0.840846f, -0.532151f, + /*v:*/-0.773438f, 0.117912f, -0.519693f, /*n:*/-0.029542f, -0.634999f, 0.771905f, + /*v:*/-1.039062f, 0.156974f, -0.722818f, /*n:*/-0.502884f, -0.780999f, 0.370312f, + /*v:*/-0.789062f, 0.133537f, -0.722818f, /*n:*/0.098849f, -0.840846f, -0.532151f, + /*v:*/-1.039062f, 0.156974f, -0.722818f, /*n:*/-0.502884f, -0.780999f, 0.370312f, + /*v:*/-1.039062f, 0.172599f, -0.886881f, /*n:*/0.025269f, -0.679586f, -0.733116f, + /*v:*/1.039062f, 0.156974f, -0.722818f, /*n:*/0.502884f, -0.780999f, 0.370312f, + /*v:*/0.773438f, 0.117912f, -0.519693f, /*n:*/0.029542f, -0.634999f, 0.771905f, + /*v:*/0.789062f, 0.133537f, -0.722818f, /*n:*/-0.098849f, -0.840846f, -0.532151f, + /*v:*/1.039062f, 0.156974f, -0.722818f, /*n:*/0.502884f, -0.780999f, 0.370312f, + /*v:*/0.789062f, 0.133537f, -0.722818f, /*n:*/-0.098849f, -0.840846f, -0.532151f, + /*v:*/1.039062f, 0.172599f, -0.886881f, /*n:*/-0.025269f, -0.679586f, -0.733116f, + /*v:*/-1.109375f, 0.469474f, -0.785318f, /*n:*/-0.383129f, -0.068514f, 0.921140f, + /*v:*/-1.085938f, 0.531974f, -0.785318f, /*n:*/-0.289651f, 0.315806f, 0.903500f, + /*v:*/-1.187500f, 0.602287f, -0.879068f, /*n:*/0.262398f, -0.533067f, 0.804346f, + /*v:*/-1.109375f, 0.469474f, -0.785318f, /*n:*/-0.383129f, -0.068514f, 0.921140f, + /*v:*/-1.187500f, 0.602287f, -0.879068f, /*n:*/0.262398f, -0.533067f, 0.804346f, + /*v:*/-1.257812f, 0.500724f, -0.886881f, /*n:*/0.752861f, -0.033784f, 0.657277f, + /*v:*/1.187500f, 0.602287f, -0.879068f, /*n:*/-0.262398f, -0.533067f, 0.804346f, + /*v:*/1.085938f, 0.531974f, -0.785318f, /*n:*/0.289651f, 0.315806f, 0.903500f, + /*v:*/1.109375f, 0.469474f, -0.785318f, /*n:*/0.383129f, -0.068514f, 0.921140f, + /*v:*/1.187500f, 0.602287f, -0.879068f, /*n:*/-0.262398f, -0.533067f, 0.804346f, + /*v:*/1.109375f, 0.469474f, -0.785318f, /*n:*/0.383129f, -0.068514f, 0.921140f, + /*v:*/1.257812f, 0.500724f, -0.886881f, /*n:*/-0.752861f, -0.033784f, 0.657277f, + /*v:*/-1.054688f, 0.446037f, -0.777506f, /*n:*/-0.314371f, -0.103732f, 0.943602f, + /*v:*/-1.109375f, 0.469474f, -0.785318f, /*n:*/-0.383129f, -0.068514f, 0.921140f, + /*v:*/-1.210938f, 0.344474f, -0.879068f, /*n:*/0.583117f, 0.499893f, 0.640339f, + /*v:*/-1.109375f, 0.469474f, -0.785318f, /*n:*/-0.383129f, -0.068514f, 0.921140f, + /*v:*/-1.257812f, 0.500724f, -0.886881f, /*n:*/0.752861f, -0.033784f, 0.657277f, + /*v:*/-1.210938f, 0.344474f, -0.879068f, /*n:*/0.583117f, 0.499893f, 0.640339f, + /*v:*/1.257812f, 0.500724f, -0.886881f, /*n:*/-0.752861f, -0.033784f, 0.657277f, + /*v:*/1.109375f, 0.469474f, -0.785318f, /*n:*/0.383129f, -0.068514f, 0.921140f, + /*v:*/1.210938f, 0.344474f, -0.879068f, /*n:*/-0.583117f, 0.499893f, 0.640339f, + /*v:*/1.109375f, 0.469474f, -0.785318f, /*n:*/0.383129f, -0.068514f, 0.921140f, + /*v:*/1.054688f, 0.446037f, -0.777506f, /*n:*/0.314371f, -0.103732f, 0.943602f, + /*v:*/1.210938f, 0.344474f, -0.879068f, /*n:*/-0.583117f, 0.499893f, 0.640339f, + /*v:*/-1.000000f, 0.383537f, -0.761881f, /*n:*/-0.444807f, -0.093692f, 0.890683f, + /*v:*/-1.054688f, 0.446037f, -0.777506f, /*n:*/-0.314371f, -0.103732f, 0.943602f, + /*v:*/-1.046875f, 0.258537f, -0.816568f, /*n:*/-0.065004f, 0.703848f, 0.707358f, + /*v:*/-1.054688f, 0.446037f, -0.777506f, /*n:*/-0.314371f, -0.103732f, 0.943602f, + /*v:*/-1.210938f, 0.344474f, -0.879068f, /*n:*/0.583117f, 0.499893f, 0.640339f, + /*v:*/-1.046875f, 0.258537f, -0.816568f, /*n:*/-0.065004f, 0.703848f, 0.707358f, + /*v:*/1.210938f, 0.344474f, -0.879068f, /*n:*/-0.583117f, 0.499893f, 0.640339f, + /*v:*/1.054688f, 0.446037f, -0.777506f, /*n:*/0.314371f, -0.103732f, 0.943602f, + /*v:*/1.046875f, 0.258537f, -0.816568f, /*n:*/0.065004f, 0.703848f, 0.707358f, + /*v:*/1.054688f, 0.446037f, -0.777506f, /*n:*/0.314371f, -0.103732f, 0.943602f, + /*v:*/1.000000f, 0.383537f, -0.761881f, /*n:*/0.444807f, -0.093692f, 0.890683f, + /*v:*/1.046875f, 0.258537f, -0.816568f, /*n:*/0.065004f, 0.703848f, 0.707358f, + /*v:*/-0.937500f, 0.321037f, -0.730631f, /*n:*/-0.408429f, 0.127262f, 0.903836f, + /*v:*/-1.000000f, 0.383537f, -0.761881f, /*n:*/-0.444807f, -0.093692f, 0.890683f, + /*v:*/-1.046875f, 0.258537f, -0.816568f, /*n:*/-0.065004f, 0.703848f, 0.707358f, + /*v:*/-0.937500f, 0.321037f, -0.730631f, /*n:*/-0.408429f, 0.127262f, 0.903836f, + /*v:*/-1.046875f, 0.258537f, -0.816568f, /*n:*/-0.065004f, 0.703848f, 0.707358f, + /*v:*/-0.882812f, 0.242912f, -0.660318f, /*n:*/0.033113f, 0.944914f, 0.325602f, + /*v:*/1.046875f, 0.258537f, -0.816568f, /*n:*/0.065004f, 0.703848f, 0.707358f, + /*v:*/1.000000f, 0.383537f, -0.761881f, /*n:*/0.444807f, -0.093692f, 0.890683f, + /*v:*/0.937500f, 0.321037f, -0.730631f, /*n:*/0.408429f, 0.127262f, 0.903836f, + /*v:*/1.046875f, 0.258537f, -0.816568f, /*n:*/0.065004f, 0.703848f, 0.707358f, + /*v:*/0.937500f, 0.321037f, -0.730631f, /*n:*/0.408429f, 0.127262f, 0.903836f, + /*v:*/0.882812f, 0.242912f, -0.660318f, /*n:*/-0.033113f, 0.944914f, 0.325602f, + /*v:*/-0.937500f, 0.321037f, -0.730631f, /*n:*/-0.408429f, 0.127262f, 0.903836f, + /*v:*/-0.882812f, 0.242912f, -0.660318f, /*n:*/0.033113f, 0.944914f, 0.325602f, + /*v:*/-0.851562f, 0.274162f, -0.715006f, /*n:*/-0.292917f, 0.370922f, 0.881222f, + /*v:*/-0.882812f, 0.242912f, -0.660318f, /*n:*/0.033113f, 0.944914f, 0.325602f, + /*v:*/-0.812500f, 0.242912f, -0.715006f, /*n:*/-0.644978f, 0.310129f, 0.698386f, + /*v:*/-0.851562f, 0.274162f, -0.715006f, /*n:*/-0.292917f, 0.370922f, 0.881222f, + /*v:*/0.812500f, 0.242912f, -0.715006f, /*n:*/0.644978f, 0.310129f, 0.698386f, + /*v:*/0.882812f, 0.242912f, -0.660318f, /*n:*/-0.033113f, 0.944914f, 0.325602f, + /*v:*/0.851562f, 0.274162f, -0.715006f, /*n:*/0.292917f, 0.370922f, 0.881222f, + /*v:*/0.882812f, 0.242912f, -0.660318f, /*n:*/-0.033113f, 0.944914f, 0.325602f, + /*v:*/0.937500f, 0.321037f, -0.730631f, /*n:*/0.408429f, 0.127262f, 0.903836f, + /*v:*/0.851562f, 0.274162f, -0.715006f, /*n:*/0.292917f, 0.370922f, 0.881222f, + /*v:*/-0.843750f, 0.430412f, -0.715006f, /*n:*/-0.572527f, -0.418928f, 0.704733f, + /*v:*/-0.890625f, 0.367912f, -0.722818f, /*n:*/-0.195105f, 0.038942f, 0.979980f, + /*v:*/-0.828125f, 0.336662f, -0.715006f, /*n:*/-0.449232f, 0.379864f, 0.808618f, + /*v:*/-0.843750f, 0.430412f, -0.715006f, /*n:*/-0.572527f, -0.418928f, 0.704733f, + /*v:*/-0.828125f, 0.336662f, -0.715006f, /*n:*/-0.449232f, 0.379864f, 0.808618f, + /*v:*/-0.765625f, 0.352287f, -0.715006f, /*n:*/-0.758354f, 0.266518f, 0.594806f, + /*v:*/0.828125f, 0.336662f, -0.715006f, /*n:*/0.449232f, 0.379864f, 0.808618f, + /*v:*/0.890625f, 0.367912f, -0.722818f, /*n:*/0.195105f, 0.038942f, 0.979980f, + /*v:*/0.843750f, 0.430412f, -0.715006f, /*n:*/0.572527f, -0.418928f, 0.704733f, + /*v:*/0.828125f, 0.336662f, -0.715006f, /*n:*/0.449232f, 0.379864f, 0.808618f, + /*v:*/0.843750f, 0.430412f, -0.715006f, /*n:*/0.572527f, -0.418928f, 0.704733f, + /*v:*/0.765625f, 0.352287f, -0.715006f, /*n:*/0.758354f, 0.266518f, 0.594806f, + /*v:*/-0.890625f, 0.367912f, -0.722818f, /*n:*/-0.195105f, 0.038942f, 0.979980f, + /*v:*/-0.843750f, 0.430412f, -0.715006f, /*n:*/-0.572527f, -0.418928f, 0.704733f, + /*v:*/-0.960938f, 0.430412f, -0.746256f, /*n:*/-0.334666f, -0.004578f, 0.942289f, + /*v:*/-0.843750f, 0.430412f, -0.715006f, /*n:*/-0.572527f, -0.418928f, 0.704733f, + /*v:*/-0.890625f, 0.492912f, -0.715006f, /*n:*/-0.659291f, -0.468490f, 0.588061f, + /*v:*/-0.960938f, 0.430412f, -0.746256f, /*n:*/-0.334666f, -0.004578f, 0.942289f, + /*v:*/0.890625f, 0.492912f, -0.715006f, /*n:*/0.659291f, -0.468490f, 0.588061f, + /*v:*/0.843750f, 0.430412f, -0.715006f, /*n:*/0.572527f, -0.418928f, 0.704733f, + /*v:*/0.960938f, 0.430412f, -0.746256f, /*n:*/0.334666f, -0.004578f, 0.942289f, + /*v:*/0.843750f, 0.430412f, -0.715006f, /*n:*/0.572527f, -0.418928f, 0.704733f, + /*v:*/0.890625f, 0.367912f, -0.722818f, /*n:*/0.195105f, 0.038942f, 0.979980f, + /*v:*/0.960938f, 0.430412f, -0.746256f, /*n:*/0.334666f, -0.004578f, 0.942289f, + /*v:*/-1.015625f, 0.492912f, -0.769693f, /*n:*/-0.334300f, 0.106784f, 0.936369f, + /*v:*/-0.960938f, 0.430412f, -0.746256f, /*n:*/-0.334666f, -0.004578f, 0.942289f, + /*v:*/-0.953125f, 0.547599f, -0.738443f, /*n:*/-0.648213f, -0.420576f, 0.634724f, + /*v:*/-0.960938f, 0.430412f, -0.746256f, /*n:*/-0.334666f, -0.004578f, 0.942289f, + /*v:*/-0.890625f, 0.492912f, -0.715006f, /*n:*/-0.659291f, -0.468490f, 0.588061f, + /*v:*/-0.953125f, 0.547599f, -0.738443f, /*n:*/-0.648213f, -0.420576f, 0.634724f, + /*v:*/0.890625f, 0.492912f, -0.715006f, /*n:*/0.659291f, -0.468490f, 0.588061f, + /*v:*/0.960938f, 0.430412f, -0.746256f, /*n:*/0.334666f, -0.004578f, 0.942289f, + /*v:*/0.953125f, 0.547599f, -0.738443f, /*n:*/0.648213f, -0.420576f, 0.634724f, + /*v:*/0.960938f, 0.430412f, -0.746256f, /*n:*/0.334666f, -0.004578f, 0.942289f, + /*v:*/1.015625f, 0.492912f, -0.769693f, /*n:*/0.334300f, 0.106784f, 0.936369f, + /*v:*/0.953125f, 0.547599f, -0.738443f, /*n:*/0.648213f, -0.420576f, 0.634724f, + /*v:*/-1.015625f, 0.492912f, -0.769693f, /*n:*/-0.334300f, 0.106784f, 0.936369f, + /*v:*/-0.953125f, 0.547599f, -0.738443f, /*n:*/-0.648213f, -0.420576f, 0.634724f, + /*v:*/-1.039062f, 0.586662f, -0.808756f, /*n:*/-0.461776f, -0.329142f, 0.823664f, + /*v:*/-1.015625f, 0.492912f, -0.769693f, /*n:*/-0.334300f, 0.106784f, 0.936369f, + /*v:*/-1.039062f, 0.586662f, -0.808756f, /*n:*/-0.461776f, -0.329142f, 0.823664f, + /*v:*/-1.085938f, 0.531974f, -0.785318f, /*n:*/-0.289651f, 0.315806f, 0.903500f, + /*v:*/1.039062f, 0.586662f, -0.808756f, /*n:*/0.461776f, -0.329142f, 0.823664f, + /*v:*/0.953125f, 0.547599f, -0.738443f, /*n:*/0.648213f, -0.420576f, 0.634724f, + /*v:*/1.015625f, 0.492912f, -0.769693f, /*n:*/0.334300f, 0.106784f, 0.936369f, + /*v:*/1.039062f, 0.586662f, -0.808756f, /*n:*/0.461776f, -0.329142f, 0.823664f, + /*v:*/1.015625f, 0.492912f, -0.769693f, /*n:*/0.334300f, 0.106784f, 0.936369f, + /*v:*/1.085938f, 0.531974f, -0.785318f, /*n:*/0.289651f, 0.315806f, 0.903500f, + /*v:*/-1.109375f, 0.469474f, -0.785318f, /*n:*/-0.383129f, -0.068514f, 0.921140f, + /*v:*/-1.054688f, 0.446037f, -0.777506f, /*n:*/-0.314371f, -0.103732f, 0.943602f, + /*v:*/-1.085938f, 0.531974f, -0.785318f, /*n:*/-0.289651f, 0.315806f, 0.903500f, + /*v:*/-1.054688f, 0.446037f, -0.777506f, /*n:*/-0.314371f, -0.103732f, 0.943602f, + /*v:*/-1.015625f, 0.492912f, -0.769693f, /*n:*/-0.334300f, 0.106784f, 0.936369f, + /*v:*/-1.085938f, 0.531974f, -0.785318f, /*n:*/-0.289651f, 0.315806f, 0.903500f, + /*v:*/1.015625f, 0.492912f, -0.769693f, /*n:*/0.334300f, 0.106784f, 0.936369f, + /*v:*/1.054688f, 0.446037f, -0.777506f, /*n:*/0.314371f, -0.103732f, 0.943602f, + /*v:*/1.085938f, 0.531974f, -0.785318f, /*n:*/0.289651f, 0.315806f, 0.903500f, + /*v:*/1.054688f, 0.446037f, -0.777506f, /*n:*/0.314371f, -0.103732f, 0.943602f, + /*v:*/1.109375f, 0.469474f, -0.785318f, /*n:*/0.383129f, -0.068514f, 0.921140f, + /*v:*/1.085938f, 0.531974f, -0.785318f, /*n:*/0.289651f, 0.315806f, 0.903500f, + /*v:*/-1.054688f, 0.446037f, -0.777506f, /*n:*/-0.314371f, -0.103732f, 0.943602f, + /*v:*/-1.000000f, 0.383537f, -0.761881f, /*n:*/-0.444807f, -0.093692f, 0.890683f, + /*v:*/-0.960938f, 0.430412f, -0.746256f, /*n:*/-0.334666f, -0.004578f, 0.942289f, + /*v:*/-1.054688f, 0.446037f, -0.777506f, /*n:*/-0.314371f, -0.103732f, 0.943602f, + /*v:*/-0.960938f, 0.430412f, -0.746256f, /*n:*/-0.334666f, -0.004578f, 0.942289f, + /*v:*/-1.015625f, 0.492912f, -0.769693f, /*n:*/-0.334300f, 0.106784f, 0.936369f, + /*v:*/0.960938f, 0.430412f, -0.746256f, /*n:*/0.334666f, -0.004578f, 0.942289f, + /*v:*/1.000000f, 0.383537f, -0.761881f, /*n:*/0.444807f, -0.093692f, 0.890683f, + /*v:*/1.054688f, 0.446037f, -0.777506f, /*n:*/0.314371f, -0.103732f, 0.943602f, + /*v:*/0.960938f, 0.430412f, -0.746256f, /*n:*/0.334666f, -0.004578f, 0.942289f, + /*v:*/1.054688f, 0.446037f, -0.777506f, /*n:*/0.314371f, -0.103732f, 0.943602f, + /*v:*/1.015625f, 0.492912f, -0.769693f, /*n:*/0.334300f, 0.106784f, 0.936369f, + /*v:*/-1.000000f, 0.383537f, -0.761881f, /*n:*/-0.444807f, -0.093692f, 0.890683f, + /*v:*/-0.937500f, 0.321037f, -0.730631f, /*n:*/-0.408429f, 0.127262f, 0.903836f, + /*v:*/-0.960938f, 0.430412f, -0.746256f, /*n:*/-0.334666f, -0.004578f, 0.942289f, + /*v:*/-0.937500f, 0.321037f, -0.730631f, /*n:*/-0.408429f, 0.127262f, 0.903836f, + /*v:*/-0.890625f, 0.367912f, -0.722818f, /*n:*/-0.195105f, 0.038942f, 0.979980f, + /*v:*/-0.960938f, 0.430412f, -0.746256f, /*n:*/-0.334666f, -0.004578f, 0.942289f, + /*v:*/0.890625f, 0.367912f, -0.722818f, /*n:*/0.195105f, 0.038942f, 0.979980f, + /*v:*/0.937500f, 0.321037f, -0.730631f, /*n:*/0.408429f, 0.127262f, 0.903836f, + /*v:*/0.960938f, 0.430412f, -0.746256f, /*n:*/0.334666f, -0.004578f, 0.942289f, + /*v:*/0.937500f, 0.321037f, -0.730631f, /*n:*/0.408429f, 0.127262f, 0.903836f, + /*v:*/1.000000f, 0.383537f, -0.761881f, /*n:*/0.444807f, -0.093692f, 0.890683f, + /*v:*/0.960938f, 0.430412f, -0.746256f, /*n:*/0.334666f, -0.004578f, 0.942289f, + /*v:*/-0.937500f, 0.321037f, -0.730631f, /*n:*/-0.408429f, 0.127262f, 0.903836f, + /*v:*/-0.851562f, 0.274162f, -0.715006f, /*n:*/-0.292917f, 0.370922f, 0.881222f, + /*v:*/-0.890625f, 0.367912f, -0.722818f, /*n:*/-0.195105f, 0.038942f, 0.979980f, + /*v:*/-0.851562f, 0.274162f, -0.715006f, /*n:*/-0.292917f, 0.370922f, 0.881222f, + /*v:*/-0.828125f, 0.336662f, -0.715006f, /*n:*/-0.449232f, 0.379864f, 0.808618f, + /*v:*/-0.890625f, 0.367912f, -0.722818f, /*n:*/-0.195105f, 0.038942f, 0.979980f, + /*v:*/0.828125f, 0.336662f, -0.715006f, /*n:*/0.449232f, 0.379864f, 0.808618f, + /*v:*/0.851562f, 0.274162f, -0.715006f, /*n:*/0.292917f, 0.370922f, 0.881222f, + /*v:*/0.890625f, 0.367912f, -0.722818f, /*n:*/0.195105f, 0.038942f, 0.979980f, + /*v:*/0.851562f, 0.274162f, -0.715006f, /*n:*/0.292917f, 0.370922f, 0.881222f, + /*v:*/0.937500f, 0.321037f, -0.730631f, /*n:*/0.408429f, 0.127262f, 0.903836f, + /*v:*/0.890625f, 0.367912f, -0.722818f, /*n:*/0.195105f, 0.038942f, 0.979980f, + /*v:*/-1.046875f, 0.258537f, -0.816568f, /*n:*/-0.065004f, 0.703848f, 0.707358f, + /*v:*/-1.039062f, 0.258537f, -0.761881f, /*n:*/0.186804f, 0.953825f, 0.235084f, + /*v:*/-0.882812f, 0.242912f, -0.660318f, /*n:*/0.033113f, 0.944914f, 0.325602f, + /*v:*/-1.039062f, 0.258537f, -0.761881f, /*n:*/0.186804f, 0.953825f, 0.235084f, + /*v:*/-0.882812f, 0.235099f, -0.605631f, /*n:*/-0.162877f, 0.858028f, 0.487014f, + /*v:*/-0.882812f, 0.242912f, -0.660318f, /*n:*/0.033113f, 0.944914f, 0.325602f, + /*v:*/0.882812f, 0.235099f, -0.605631f, /*n:*/0.162877f, 0.858028f, 0.487014f, + /*v:*/1.039062f, 0.258537f, -0.761881f, /*n:*/-0.186804f, 0.953825f, 0.235084f, + /*v:*/0.882812f, 0.242912f, -0.660318f, /*n:*/-0.033113f, 0.944914f, 0.325602f, + /*v:*/1.039062f, 0.258537f, -0.761881f, /*n:*/-0.186804f, 0.953825f, 0.235084f, + /*v:*/1.046875f, 0.258537f, -0.816568f, /*n:*/0.065004f, 0.703848f, 0.707358f, + /*v:*/0.882812f, 0.242912f, -0.660318f, /*n:*/-0.033113f, 0.944914f, 0.325602f, + /*v:*/-1.210938f, 0.344474f, -0.879068f, /*n:*/0.583117f, 0.499893f, 0.640339f, + /*v:*/-1.187500f, 0.352287f, -0.840006f, /*n:*/0.762139f, 0.647084f, -0.019318f, + /*v:*/-1.046875f, 0.258537f, -0.816568f, /*n:*/-0.065004f, 0.703848f, 0.707358f, + /*v:*/-1.187500f, 0.352287f, -0.840006f, /*n:*/0.762139f, 0.647084f, -0.019318f, + /*v:*/-1.039062f, 0.258537f, -0.761881f, /*n:*/0.186804f, 0.953825f, 0.235084f, + /*v:*/-1.046875f, 0.258537f, -0.816568f, /*n:*/-0.065004f, 0.703848f, 0.707358f, + /*v:*/1.039062f, 0.258537f, -0.761881f, /*n:*/-0.186804f, 0.953825f, 0.235084f, + /*v:*/1.187500f, 0.352287f, -0.840006f, /*n:*/-0.762139f, 0.647084f, -0.019318f, + /*v:*/1.046875f, 0.258537f, -0.816568f, /*n:*/0.065004f, 0.703848f, 0.707358f, + /*v:*/1.187500f, 0.352287f, -0.840006f, /*n:*/-0.762139f, 0.647084f, -0.019318f, + /*v:*/1.210938f, 0.344474f, -0.879068f, /*n:*/-0.583117f, 0.499893f, 0.640339f, + /*v:*/1.046875f, 0.258537f, -0.816568f, /*n:*/0.065004f, 0.703848f, 0.707358f, + /*v:*/-1.257812f, 0.500724f, -0.886881f, /*n:*/0.752861f, -0.033784f, 0.657277f, + /*v:*/-1.234375f, 0.508537f, -0.840006f, /*n:*/0.984741f, -0.099582f, 0.142613f, + /*v:*/-1.210938f, 0.344474f, -0.879068f, /*n:*/0.583117f, 0.499893f, 0.640339f, + /*v:*/-1.234375f, 0.508537f, -0.840006f, /*n:*/0.984741f, -0.099582f, 0.142613f, + /*v:*/-1.187500f, 0.352287f, -0.840006f, /*n:*/0.762139f, 0.647084f, -0.019318f, + /*v:*/-1.210938f, 0.344474f, -0.879068f, /*n:*/0.583117f, 0.499893f, 0.640339f, + /*v:*/1.187500f, 0.352287f, -0.840006f, /*n:*/-0.762139f, 0.647084f, -0.019318f, + /*v:*/1.234375f, 0.508537f, -0.840006f, /*n:*/-0.984741f, -0.099582f, 0.142613f, + /*v:*/1.210938f, 0.344474f, -0.879068f, /*n:*/-0.583117f, 0.499893f, 0.640339f, + /*v:*/1.234375f, 0.508537f, -0.840006f, /*n:*/-0.984741f, -0.099582f, 0.142613f, + /*v:*/1.257812f, 0.500724f, -0.886881f, /*n:*/-0.752861f, -0.033784f, 0.657277f, + /*v:*/1.210938f, 0.344474f, -0.879068f, /*n:*/-0.583117f, 0.499893f, 0.640339f, + /*v:*/-1.187500f, 0.602287f, -0.879068f, /*n:*/0.262398f, -0.533067f, 0.804346f, + /*v:*/-1.171875f, 0.617912f, -0.832193f, /*n:*/0.149571f, -0.745506f, 0.649464f, + /*v:*/-1.234375f, 0.508537f, -0.840006f, /*n:*/0.984741f, -0.099582f, 0.142613f, + /*v:*/-1.187500f, 0.602287f, -0.879068f, /*n:*/0.262398f, -0.533067f, 0.804346f, + /*v:*/-1.234375f, 0.508537f, -0.840006f, /*n:*/0.984741f, -0.099582f, 0.142613f, + /*v:*/-1.257812f, 0.500724f, -0.886881f, /*n:*/0.752861f, -0.033784f, 0.657277f, + /*v:*/1.234375f, 0.508537f, -0.840006f, /*n:*/-0.984741f, -0.099582f, 0.142613f, + /*v:*/1.171875f, 0.617912f, -0.832193f, /*n:*/-0.149571f, -0.745506f, 0.649464f, + /*v:*/1.187500f, 0.602287f, -0.879068f, /*n:*/-0.262398f, -0.533067f, 0.804346f, + /*v:*/1.234375f, 0.508537f, -0.840006f, /*n:*/-0.984741f, -0.099582f, 0.142613f, + /*v:*/1.187500f, 0.602287f, -0.879068f, /*n:*/-0.262398f, -0.533067f, 0.804346f, + /*v:*/1.257812f, 0.500724f, -0.886881f, /*n:*/-0.752861f, -0.033784f, 0.657277f, + /*v:*/-1.039062f, 0.586662f, -0.808756f, /*n:*/-0.461776f, -0.329142f, 0.823664f, + /*v:*/-1.023438f, 0.602287f, -0.754068f, /*n:*/-0.560442f, -0.660878f, 0.499100f, + /*v:*/-1.171875f, 0.617912f, -0.832193f, /*n:*/0.149571f, -0.745506f, 0.649464f, + /*v:*/-1.039062f, 0.586662f, -0.808756f, /*n:*/-0.461776f, -0.329142f, 0.823664f, + /*v:*/-1.171875f, 0.617912f, -0.832193f, /*n:*/0.149571f, -0.745506f, 0.649464f, + /*v:*/-1.187500f, 0.602287f, -0.879068f, /*n:*/0.262398f, -0.533067f, 0.804346f, + /*v:*/1.171875f, 0.617912f, -0.832193f, /*n:*/-0.149571f, -0.745506f, 0.649464f, + /*v:*/1.023438f, 0.602287f, -0.754068f, /*n:*/0.560442f, -0.660878f, 0.499100f, + /*v:*/1.039062f, 0.586662f, -0.808756f, /*n:*/0.461776f, -0.329142f, 0.823664f, + /*v:*/1.171875f, 0.617912f, -0.832193f, /*n:*/-0.149571f, -0.745506f, 0.649464f, + /*v:*/1.039062f, 0.586662f, -0.808756f, /*n:*/0.461776f, -0.329142f, 0.823664f, + /*v:*/1.187500f, 0.602287f, -0.879068f, /*n:*/-0.262398f, -0.533067f, 0.804346f, + /*v:*/-0.953125f, 0.547599f, -0.738443f, /*n:*/-0.648213f, -0.420576f, 0.634724f, + /*v:*/-0.945312f, 0.563224f, -0.683756f, /*n:*/-0.684194f, -0.555773f, 0.472182f, + /*v:*/-1.023438f, 0.602287f, -0.754068f, /*n:*/-0.560442f, -0.660878f, 0.499100f, + /*v:*/-0.953125f, 0.547599f, -0.738443f, /*n:*/-0.648213f, -0.420576f, 0.634724f, + /*v:*/-1.023438f, 0.602287f, -0.754068f, /*n:*/-0.560442f, -0.660878f, 0.499100f, + /*v:*/-1.039062f, 0.586662f, -0.808756f, /*n:*/-0.461776f, -0.329142f, 0.823664f, + /*v:*/1.023438f, 0.602287f, -0.754068f, /*n:*/0.560442f, -0.660878f, 0.499100f, + /*v:*/0.945312f, 0.563224f, -0.683756f, /*n:*/0.684194f, -0.555773f, 0.472182f, + /*v:*/0.953125f, 0.547599f, -0.738443f, /*n:*/0.648213f, -0.420576f, 0.634724f, + /*v:*/1.023438f, 0.602287f, -0.754068f, /*n:*/0.560442f, -0.660878f, 0.499100f, + /*v:*/0.953125f, 0.547599f, -0.738443f, /*n:*/0.648213f, -0.420576f, 0.634724f, + /*v:*/1.039062f, 0.586662f, -0.808756f, /*n:*/0.461776f, -0.329142f, 0.823664f, + /*v:*/-0.882812f, 0.242912f, -0.660318f, /*n:*/0.033113f, 0.944914f, 0.325602f, + /*v:*/-0.882812f, 0.235099f, -0.605631f, /*n:*/-0.162877f, 0.858028f, 0.487014f, + /*v:*/-0.812500f, 0.242912f, -0.668131f, /*n:*/-0.599841f, 0.513138f, 0.613880f, + /*v:*/-0.882812f, 0.242912f, -0.660318f, /*n:*/0.033113f, 0.944914f, 0.325602f, + /*v:*/-0.812500f, 0.242912f, -0.668131f, /*n:*/-0.599841f, 0.513138f, 0.613880f, + /*v:*/-0.812500f, 0.242912f, -0.715006f, /*n:*/-0.644978f, 0.310129f, 0.698386f, + /*v:*/0.812500f, 0.242912f, -0.668131f, /*n:*/0.599841f, 0.513138f, 0.613880f, + /*v:*/0.882812f, 0.235099f, -0.605631f, /*n:*/0.162877f, 0.858028f, 0.487014f, + /*v:*/0.882812f, 0.242912f, -0.660318f, /*n:*/-0.033113f, 0.944914f, 0.325602f, + /*v:*/0.812500f, 0.242912f, -0.668131f, /*n:*/0.599841f, 0.513138f, 0.613880f, + /*v:*/0.882812f, 0.242912f, -0.660318f, /*n:*/-0.033113f, 0.944914f, 0.325602f, + /*v:*/0.812500f, 0.242912f, -0.715006f, /*n:*/0.644978f, 0.310129f, 0.698386f, + /*v:*/-0.812500f, 0.242912f, -0.715006f, /*n:*/-0.644978f, 0.310129f, 0.698386f, + /*v:*/-0.812500f, 0.242912f, -0.668131f, /*n:*/-0.599841f, 0.513138f, 0.613880f, + /*v:*/-0.843750f, 0.274162f, -0.668131f, /*n:*/-0.842036f, -0.176244f, 0.509781f, + /*v:*/-0.812500f, 0.242912f, -0.715006f, /*n:*/-0.644978f, 0.310129f, 0.698386f, + /*v:*/-0.843750f, 0.274162f, -0.668131f, /*n:*/-0.842036f, -0.176244f, 0.509781f, + /*v:*/-0.851562f, 0.274162f, -0.715006f, /*n:*/-0.292917f, 0.370922f, 0.881222f, + /*v:*/0.843750f, 0.274162f, -0.668131f, /*n:*/0.842036f, -0.176244f, 0.509781f, + /*v:*/0.812500f, 0.242912f, -0.668131f, /*n:*/0.599841f, 0.513138f, 0.613880f, + /*v:*/0.812500f, 0.242912f, -0.715006f, /*n:*/0.644978f, 0.310129f, 0.698386f, + /*v:*/0.843750f, 0.274162f, -0.668131f, /*n:*/0.842036f, -0.176244f, 0.509781f, + /*v:*/0.812500f, 0.242912f, -0.715006f, /*n:*/0.644978f, 0.310129f, 0.698386f, + /*v:*/0.851562f, 0.274162f, -0.715006f, /*n:*/0.292917f, 0.370922f, 0.881222f, + /*v:*/-0.851562f, 0.274162f, -0.715006f, /*n:*/-0.292917f, 0.370922f, 0.881222f, + /*v:*/-0.843750f, 0.274162f, -0.668131f, /*n:*/-0.842036f, -0.176244f, 0.509781f, + /*v:*/-0.828125f, 0.336662f, -0.715006f, /*n:*/-0.449232f, 0.379864f, 0.808618f, + /*v:*/-0.843750f, 0.274162f, -0.668131f, /*n:*/-0.842036f, -0.176244f, 0.509781f, + /*v:*/-0.820312f, 0.344474f, -0.668131f, /*n:*/-0.481368f, 0.634388f, 0.604816f, + /*v:*/-0.828125f, 0.336662f, -0.715006f, /*n:*/-0.449232f, 0.379864f, 0.808618f, + /*v:*/0.820312f, 0.344474f, -0.668131f, /*n:*/0.481368f, 0.634388f, 0.604816f, + /*v:*/0.843750f, 0.274162f, -0.668131f, /*n:*/0.842036f, -0.176244f, 0.509781f, + /*v:*/0.828125f, 0.336662f, -0.715006f, /*n:*/0.449232f, 0.379864f, 0.808618f, + /*v:*/0.843750f, 0.274162f, -0.668131f, /*n:*/0.842036f, -0.176244f, 0.509781f, + /*v:*/0.851562f, 0.274162f, -0.715006f, /*n:*/0.292917f, 0.370922f, 0.881222f, + /*v:*/0.828125f, 0.336662f, -0.715006f, /*n:*/0.449232f, 0.379864f, 0.808618f, + /*v:*/-0.828125f, 0.336662f, -0.715006f, /*n:*/-0.449232f, 0.379864f, 0.808618f, + /*v:*/-0.820312f, 0.344474f, -0.668131f, /*n:*/-0.481368f, 0.634388f, 0.604816f, + /*v:*/-0.765625f, 0.352287f, -0.715006f, /*n:*/-0.758354f, 0.266518f, 0.594806f, + /*v:*/-0.820312f, 0.344474f, -0.668131f, /*n:*/-0.481368f, 0.634388f, 0.604816f, + /*v:*/-0.757812f, 0.352287f, -0.668131f, /*n:*/-0.851466f, 0.041353f, 0.522752f, + /*v:*/-0.765625f, 0.352287f, -0.715006f, /*n:*/-0.758354f, 0.266518f, 0.594806f, + /*v:*/0.757812f, 0.352287f, -0.668131f, /*n:*/0.851466f, 0.041353f, 0.522752f, + /*v:*/0.820312f, 0.344474f, -0.668131f, /*n:*/0.481368f, 0.634388f, 0.604816f, + /*v:*/0.765625f, 0.352287f, -0.715006f, /*n:*/0.758354f, 0.266518f, 0.594806f, + /*v:*/0.820312f, 0.344474f, -0.668131f, /*n:*/0.481368f, 0.634388f, 0.604816f, + /*v:*/0.828125f, 0.336662f, -0.715006f, /*n:*/0.449232f, 0.379864f, 0.808618f, + /*v:*/0.765625f, 0.352287f, -0.715006f, /*n:*/0.758354f, 0.266518f, 0.594806f, + /*v:*/-0.765625f, 0.352287f, -0.715006f, /*n:*/-0.758354f, 0.266518f, 0.594806f, + /*v:*/-0.757812f, 0.352287f, -0.668131f, /*n:*/-0.851466f, 0.041353f, 0.522752f, + /*v:*/-0.835938f, 0.430412f, -0.668131f, /*n:*/-0.686361f, -0.623371f, 0.374554f, + /*v:*/-0.765625f, 0.352287f, -0.715006f, /*n:*/-0.758354f, 0.266518f, 0.594806f, + /*v:*/-0.835938f, 0.430412f, -0.668131f, /*n:*/-0.686361f, -0.623371f, 0.374554f, + /*v:*/-0.843750f, 0.430412f, -0.715006f, /*n:*/-0.572527f, -0.418928f, 0.704733f, + /*v:*/0.835938f, 0.430412f, -0.668131f, /*n:*/0.686361f, -0.623371f, 0.374554f, + /*v:*/0.757812f, 0.352287f, -0.668131f, /*n:*/0.851466f, 0.041353f, 0.522752f, + /*v:*/0.765625f, 0.352287f, -0.715006f, /*n:*/0.758354f, 0.266518f, 0.594806f, + /*v:*/0.835938f, 0.430412f, -0.668131f, /*n:*/0.686361f, -0.623371f, 0.374554f, + /*v:*/0.765625f, 0.352287f, -0.715006f, /*n:*/0.758354f, 0.266518f, 0.594806f, + /*v:*/0.843750f, 0.430412f, -0.715006f, /*n:*/0.572527f, -0.418928f, 0.704733f, + /*v:*/-0.843750f, 0.430412f, -0.715006f, /*n:*/-0.572527f, -0.418928f, 0.704733f, + /*v:*/-0.835938f, 0.430412f, -0.668131f, /*n:*/-0.686361f, -0.623371f, 0.374554f, + /*v:*/-0.890625f, 0.492912f, -0.715006f, /*n:*/-0.659291f, -0.468490f, 0.588061f, + /*v:*/-0.835938f, 0.430412f, -0.668131f, /*n:*/-0.686361f, -0.623371f, 0.374554f, + /*v:*/-0.890625f, 0.500724f, -0.660318f, /*n:*/-0.726066f, -0.498917f, 0.473128f, + /*v:*/-0.890625f, 0.492912f, -0.715006f, /*n:*/-0.659291f, -0.468490f, 0.588061f, + /*v:*/0.890625f, 0.500724f, -0.660318f, /*n:*/0.726066f, -0.498917f, 0.473128f, + /*v:*/0.835938f, 0.430412f, -0.668131f, /*n:*/0.686361f, -0.623371f, 0.374554f, + /*v:*/0.890625f, 0.492912f, -0.715006f, /*n:*/0.659291f, -0.468490f, 0.588061f, + /*v:*/0.835938f, 0.430412f, -0.668131f, /*n:*/0.686361f, -0.623371f, 0.374554f, + /*v:*/0.843750f, 0.430412f, -0.715006f, /*n:*/0.572527f, -0.418928f, 0.704733f, + /*v:*/0.890625f, 0.492912f, -0.715006f, /*n:*/0.659291f, -0.468490f, 0.588061f, + /*v:*/-0.890625f, 0.492912f, -0.715006f, /*n:*/-0.659291f, -0.468490f, 0.588061f, + /*v:*/-0.890625f, 0.500724f, -0.660318f, /*n:*/-0.726066f, -0.498917f, 0.473128f, + /*v:*/-0.945312f, 0.563224f, -0.683756f, /*n:*/-0.684194f, -0.555773f, 0.472182f, + /*v:*/-0.890625f, 0.492912f, -0.715006f, /*n:*/-0.659291f, -0.468490f, 0.588061f, + /*v:*/-0.945312f, 0.563224f, -0.683756f, /*n:*/-0.684194f, -0.555773f, 0.472182f, + /*v:*/-0.953125f, 0.547599f, -0.738443f, /*n:*/-0.648213f, -0.420576f, 0.634724f, + /*v:*/0.945312f, 0.563224f, -0.683756f, /*n:*/0.684194f, -0.555773f, 0.472182f, + /*v:*/0.890625f, 0.500724f, -0.660318f, /*n:*/0.726066f, -0.498917f, 0.473128f, + /*v:*/0.890625f, 0.492912f, -0.715006f, /*n:*/0.659291f, -0.468490f, 0.588061f, + /*v:*/0.945312f, 0.563224f, -0.683756f, /*n:*/0.684194f, -0.555773f, 0.472182f, + /*v:*/0.890625f, 0.492912f, -0.715006f, /*n:*/0.659291f, -0.468490f, 0.588061f, + /*v:*/0.953125f, 0.547599f, -0.738443f, /*n:*/0.648213f, -0.420576f, 0.634724f, + /*v:*/-0.718750f, 0.297599f, -0.582193f, /*n:*/-0.960936f, -0.118839f, 0.249855f, + /*v:*/-0.726562f, 0.258537f, -0.465006f, /*n:*/-0.857204f, -0.493118f, -0.148289f, + /*v:*/-0.796875f, 0.461662f, -0.605631f, /*n:*/-0.848354f, -0.435377f, 0.301157f, + /*v:*/-0.726562f, 0.258537f, -0.465006f, /*n:*/-0.857204f, -0.493118f, -0.148289f, + /*v:*/-0.859375f, 0.578849f, -0.441568f, /*n:*/-0.997009f, -0.033296f, -0.069521f, + /*v:*/-0.796875f, 0.461662f, -0.605631f, /*n:*/-0.848354f, -0.435377f, 0.301157f, + /*v:*/0.859375f, 0.578849f, -0.441568f, /*n:*/0.997009f, -0.033296f, -0.069521f, + /*v:*/0.726562f, 0.258537f, -0.465006f, /*n:*/0.857204f, -0.493118f, -0.148289f, + /*v:*/0.796875f, 0.461662f, -0.605631f, /*n:*/0.848354f, -0.435377f, 0.301157f, + /*v:*/0.726562f, 0.258537f, -0.465006f, /*n:*/0.857204f, -0.493118f, -0.148289f, + /*v:*/0.718750f, 0.297599f, -0.582193f, /*n:*/0.960936f, -0.118839f, 0.249855f, + /*v:*/0.796875f, 0.461662f, -0.605631f, /*n:*/0.848354f, -0.435377f, 0.301157f, + /*v:*/-0.843750f, 0.547599f, -0.605631f, /*n:*/-0.372723f, -0.224158f, 0.900449f, + /*v:*/-0.796875f, 0.461662f, -0.605631f, /*n:*/-0.848354f, -0.435377f, 0.301157f, + /*v:*/-0.820312f, 0.586662f, -0.597818f, /*n:*/-0.908536f, 0.224219f, 0.352489f, + /*v:*/-0.796875f, 0.461662f, -0.605631f, /*n:*/-0.848354f, -0.435377f, 0.301157f, + /*v:*/-0.859375f, 0.578849f, -0.441568f, /*n:*/-0.997009f, -0.033296f, -0.069521f, + /*v:*/-0.820312f, 0.586662f, -0.597818f, /*n:*/-0.908536f, 0.224219f, 0.352489f, + /*v:*/0.859375f, 0.578849f, -0.441568f, /*n:*/0.997009f, -0.033296f, -0.069521f, + /*v:*/0.796875f, 0.461662f, -0.605631f, /*n:*/0.848354f, -0.435377f, 0.301157f, + /*v:*/0.820312f, 0.586662f, -0.597818f, /*n:*/0.908536f, 0.224219f, 0.352489f, + /*v:*/0.796875f, 0.461662f, -0.605631f, /*n:*/0.848354f, -0.435377f, 0.301157f, + /*v:*/0.843750f, 0.547599f, -0.605631f, /*n:*/0.372723f, -0.224158f, 0.900449f, + /*v:*/0.820312f, 0.586662f, -0.597818f, /*n:*/0.908536f, 0.224219f, 0.352489f, + /*v:*/-0.890625f, 0.500724f, -0.660318f, /*n:*/-0.726066f, -0.498917f, 0.473128f, + /*v:*/-0.843750f, 0.547599f, -0.605631f, /*n:*/-0.372723f, -0.224158f, 0.900449f, + /*v:*/-0.945312f, 0.563224f, -0.683756f, /*n:*/-0.684194f, -0.555773f, 0.472182f, + /*v:*/-0.843750f, 0.547599f, -0.605631f, /*n:*/-0.372723f, -0.224158f, 0.900449f, + /*v:*/-0.921875f, 0.617912f, -0.613443f, /*n:*/-0.449232f, -0.038331f, 0.892575f, + /*v:*/-0.945312f, 0.563224f, -0.683756f, /*n:*/-0.684194f, -0.555773f, 0.472182f, + /*v:*/0.921875f, 0.617912f, -0.613443f, /*n:*/0.449232f, -0.038331f, 0.892575f, + /*v:*/0.843750f, 0.547599f, -0.605631f, /*n:*/0.372723f, -0.224158f, 0.900449f, + /*v:*/0.945312f, 0.563224f, -0.683756f, /*n:*/0.684194f, -0.555773f, 0.472182f, + /*v:*/0.843750f, 0.547599f, -0.605631f, /*n:*/0.372723f, -0.224158f, 0.900449f, + /*v:*/0.890625f, 0.500724f, -0.660318f, /*n:*/0.726066f, -0.498917f, 0.473128f, + /*v:*/0.945312f, 0.563224f, -0.683756f, /*n:*/0.684194f, -0.555773f, 0.472182f, + /*v:*/-0.835938f, 0.430412f, -0.668131f, /*n:*/-0.686361f, -0.623371f, 0.374554f, + /*v:*/-0.796875f, 0.461662f, -0.605631f, /*n:*/-0.848354f, -0.435377f, 0.301157f, + /*v:*/-0.890625f, 0.500724f, -0.660318f, /*n:*/-0.726066f, -0.498917f, 0.473128f, + /*v:*/-0.796875f, 0.461662f, -0.605631f, /*n:*/-0.848354f, -0.435377f, 0.301157f, + /*v:*/-0.843750f, 0.547599f, -0.605631f, /*n:*/-0.372723f, -0.224158f, 0.900449f, + /*v:*/-0.890625f, 0.500724f, -0.660318f, /*n:*/-0.726066f, -0.498917f, 0.473128f, + /*v:*/0.843750f, 0.547599f, -0.605631f, /*n:*/0.372723f, -0.224158f, 0.900449f, + /*v:*/0.796875f, 0.461662f, -0.605631f, /*n:*/0.848354f, -0.435377f, 0.301157f, + /*v:*/0.890625f, 0.500724f, -0.660318f, /*n:*/0.726066f, -0.498917f, 0.473128f, + /*v:*/0.796875f, 0.461662f, -0.605631f, /*n:*/0.848354f, -0.435377f, 0.301157f, + /*v:*/0.835938f, 0.430412f, -0.668131f, /*n:*/0.686361f, -0.623371f, 0.374554f, + /*v:*/0.890625f, 0.500724f, -0.660318f, /*n:*/0.726066f, -0.498917f, 0.473128f, + /*v:*/-0.718750f, 0.297599f, -0.582193f, /*n:*/-0.960936f, -0.118839f, 0.249855f, + /*v:*/-0.796875f, 0.461662f, -0.605631f, /*n:*/-0.848354f, -0.435377f, 0.301157f, + /*v:*/-0.757812f, 0.352287f, -0.668131f, /*n:*/-0.851466f, 0.041353f, 0.522752f, + /*v:*/-0.796875f, 0.461662f, -0.605631f, /*n:*/-0.848354f, -0.435377f, 0.301157f, + /*v:*/-0.835938f, 0.430412f, -0.668131f, /*n:*/-0.686361f, -0.623371f, 0.374554f, + /*v:*/-0.757812f, 0.352287f, -0.668131f, /*n:*/-0.851466f, 0.041353f, 0.522752f, + /*v:*/0.835938f, 0.430412f, -0.668131f, /*n:*/0.686361f, -0.623371f, 0.374554f, + /*v:*/0.796875f, 0.461662f, -0.605631f, /*n:*/0.848354f, -0.435377f, 0.301157f, + /*v:*/0.757812f, 0.352287f, -0.668131f, /*n:*/0.851466f, 0.041353f, 0.522752f, + /*v:*/0.796875f, 0.461662f, -0.605631f, /*n:*/0.848354f, -0.435377f, 0.301157f, + /*v:*/0.718750f, 0.297599f, -0.582193f, /*n:*/0.960936f, -0.118839f, 0.249855f, + /*v:*/0.757812f, 0.352287f, -0.668131f, /*n:*/0.851466f, 0.041353f, 0.522752f, + /*v:*/-0.843750f, 0.274162f, -0.668131f, /*n:*/-0.842036f, -0.176244f, 0.509781f, + /*v:*/-0.718750f, 0.297599f, -0.582193f, /*n:*/-0.960936f, -0.118839f, 0.249855f, + /*v:*/-0.757812f, 0.352287f, -0.668131f, /*n:*/-0.851466f, 0.041353f, 0.522752f, + /*v:*/-0.843750f, 0.274162f, -0.668131f, /*n:*/-0.842036f, -0.176244f, 0.509781f, + /*v:*/-0.757812f, 0.352287f, -0.668131f, /*n:*/-0.851466f, 0.041353f, 0.522752f, + /*v:*/-0.820312f, 0.344474f, -0.668131f, /*n:*/-0.481368f, 0.634388f, 0.604816f, + /*v:*/0.757812f, 0.352287f, -0.668131f, /*n:*/0.851466f, 0.041353f, 0.522752f, + /*v:*/0.718750f, 0.297599f, -0.582193f, /*n:*/0.960936f, -0.118839f, 0.249855f, + /*v:*/0.843750f, 0.274162f, -0.668131f, /*n:*/0.842036f, -0.176244f, 0.509781f, + /*v:*/0.757812f, 0.352287f, -0.668131f, /*n:*/0.851466f, 0.041353f, 0.522752f, + /*v:*/0.843750f, 0.274162f, -0.668131f, /*n:*/0.842036f, -0.176244f, 0.509781f, + /*v:*/0.820312f, 0.344474f, -0.668131f, /*n:*/0.481368f, 0.634388f, 0.604816f, + /*v:*/-0.718750f, 0.235099f, -0.566568f, /*n:*/-0.731193f, 0.114414f, 0.672475f, + /*v:*/-0.718750f, 0.297599f, -0.582193f, /*n:*/-0.960936f, -0.118839f, 0.249855f, + /*v:*/-0.812500f, 0.242912f, -0.668131f, /*n:*/-0.599841f, 0.513138f, 0.613880f, + /*v:*/-0.718750f, 0.297599f, -0.582193f, /*n:*/-0.960936f, -0.118839f, 0.249855f, + /*v:*/-0.843750f, 0.274162f, -0.668131f, /*n:*/-0.842036f, -0.176244f, 0.509781f, + /*v:*/-0.812500f, 0.242912f, -0.668131f, /*n:*/-0.599841f, 0.513138f, 0.613880f, + /*v:*/0.843750f, 0.274162f, -0.668131f, /*n:*/0.842036f, -0.176244f, 0.509781f, + /*v:*/0.718750f, 0.297599f, -0.582193f, /*n:*/0.960936f, -0.118839f, 0.249855f, + /*v:*/0.812500f, 0.242912f, -0.668131f, /*n:*/0.599841f, 0.513138f, 0.613880f, + /*v:*/0.718750f, 0.297599f, -0.582193f, /*n:*/0.960936f, -0.118839f, 0.249855f, + /*v:*/0.718750f, 0.235099f, -0.566568f, /*n:*/0.731193f, 0.114414f, 0.672475f, + /*v:*/0.812500f, 0.242912f, -0.668131f, /*n:*/0.599841f, 0.513138f, 0.613880f, + /*v:*/-0.812500f, 0.242912f, -0.668131f, /*n:*/-0.599841f, 0.513138f, 0.613880f, + /*v:*/-0.882812f, 0.235099f, -0.605631f, /*n:*/-0.162877f, 0.858028f, 0.487014f, + /*v:*/-0.828125f, 0.188224f, -0.527506f, /*n:*/-0.329936f, 0.315653f, 0.889645f, + /*v:*/-0.812500f, 0.242912f, -0.668131f, /*n:*/-0.599841f, 0.513138f, 0.613880f, + /*v:*/-0.828125f, 0.188224f, -0.527506f, /*n:*/-0.329936f, 0.315653f, 0.889645f, + /*v:*/-0.718750f, 0.235099f, -0.566568f, /*n:*/-0.731193f, 0.114414f, 0.672475f, + /*v:*/0.828125f, 0.188224f, -0.527506f, /*n:*/0.329936f, 0.315653f, 0.889645f, + /*v:*/0.882812f, 0.235099f, -0.605631f, /*n:*/0.162877f, 0.858028f, 0.487014f, + /*v:*/0.812500f, 0.242912f, -0.668131f, /*n:*/0.599841f, 0.513138f, 0.613880f, + /*v:*/0.828125f, 0.188224f, -0.527506f, /*n:*/0.329936f, 0.315653f, 0.889645f, + /*v:*/0.812500f, 0.242912f, -0.668131f, /*n:*/0.599841f, 0.513138f, 0.613880f, + /*v:*/0.718750f, 0.235099f, -0.566568f, /*n:*/0.731193f, 0.114414f, 0.672475f, + /*v:*/-0.921875f, 0.617912f, -0.613443f, /*n:*/-0.449232f, -0.038331f, 0.892575f, + /*v:*/-0.843750f, 0.547599f, -0.605631f, /*n:*/-0.372723f, -0.224158f, 0.900449f, + /*v:*/-0.820312f, 0.586662f, -0.597818f, /*n:*/-0.908536f, 0.224219f, 0.352489f, + /*v:*/-0.921875f, 0.617912f, -0.613443f, /*n:*/-0.449232f, -0.038331f, 0.892575f, + /*v:*/-0.820312f, 0.586662f, -0.597818f, /*n:*/-0.908536f, 0.224219f, 0.352489f, + /*v:*/-0.890625f, 0.664787f, -0.629068f, /*n:*/0.279244f, 0.768303f, 0.575884f, + /*v:*/0.820312f, 0.586662f, -0.597818f, /*n:*/0.908536f, 0.224219f, 0.352489f, + /*v:*/0.843750f, 0.547599f, -0.605631f, /*n:*/0.372723f, -0.224158f, 0.900449f, + /*v:*/0.921875f, 0.617912f, -0.613443f, /*n:*/0.449232f, -0.038331f, 0.892575f, + /*v:*/0.820312f, 0.586662f, -0.597818f, /*n:*/0.908536f, 0.224219f, 0.352489f, + /*v:*/0.921875f, 0.617912f, -0.613443f, /*n:*/0.449232f, -0.038331f, 0.892575f, + /*v:*/0.890625f, 0.664787f, -0.629068f, /*n:*/-0.279244f, 0.768303f, 0.575884f, + /*v:*/-0.726562f, 0.258537f, -0.465006f, /*n:*/-0.857204f, -0.493118f, -0.148289f, + /*v:*/-0.734375f, 0.211662f, -0.324381f, /*n:*/-0.721030f, -0.689810f, 0.065065f, + /*v:*/-0.851562f, 0.492912f, -0.340006f, /*n:*/-0.985015f, -0.160466f, 0.063051f, + /*v:*/-0.726562f, 0.258537f, -0.465006f, /*n:*/-0.857204f, -0.493118f, -0.148289f, + /*v:*/-0.851562f, 0.492912f, -0.340006f, /*n:*/-0.985015f, -0.160466f, 0.063051f, + /*v:*/-0.859375f, 0.578849f, -0.441568f, /*n:*/-0.997009f, -0.033296f, -0.069521f, + /*v:*/0.851562f, 0.492912f, -0.340006f, /*n:*/0.985015f, -0.160466f, 0.063051f, + /*v:*/0.734375f, 0.211662f, -0.324381f, /*n:*/0.721030f, -0.689810f, 0.065065f, + /*v:*/0.726562f, 0.258537f, -0.465006f, /*n:*/0.857204f, -0.493118f, -0.148289f, + /*v:*/0.851562f, 0.492912f, -0.340006f, /*n:*/0.985015f, -0.160466f, 0.063051f, + /*v:*/0.726562f, 0.258537f, -0.465006f, /*n:*/0.857204f, -0.493118f, -0.148289f, + /*v:*/0.859375f, 0.578849f, -0.441568f, /*n:*/0.997009f, -0.033296f, -0.069521f, + /*v:*/-0.828125f, 0.188224f, -0.527506f, /*n:*/-0.329936f, 0.315653f, 0.889645f, + /*v:*/-0.773438f, 0.117912f, -0.519693f, /*n:*/-0.029542f, -0.634999f, 0.771905f, + /*v:*/-0.718750f, 0.235099f, -0.566568f, /*n:*/-0.731193f, 0.114414f, 0.672475f, + /*v:*/-0.773438f, 0.117912f, -0.519693f, /*n:*/-0.029542f, -0.634999f, 0.771905f, + /*v:*/-0.593750f, 0.133537f, -0.558756f, /*n:*/-0.312296f, -0.949950f, 0.001160f, + /*v:*/-0.718750f, 0.235099f, -0.566568f, /*n:*/-0.731193f, 0.114414f, 0.672475f, + /*v:*/0.593750f, 0.133537f, -0.558756f, /*n:*/0.312296f, -0.949950f, 0.001160f, + /*v:*/0.773438f, 0.117912f, -0.519693f, /*n:*/0.029542f, -0.634999f, 0.771905f, + /*v:*/0.718750f, 0.235099f, -0.566568f, /*n:*/0.731193f, 0.114414f, 0.672475f, + /*v:*/0.773438f, 0.117912f, -0.519693f, /*n:*/0.029542f, -0.634999f, 0.771905f, + /*v:*/0.828125f, 0.188224f, -0.527506f, /*n:*/0.329936f, 0.315653f, 0.889645f, + /*v:*/0.718750f, 0.235099f, -0.566568f, /*n:*/0.731193f, 0.114414f, 0.672475f, + /*v:*/-0.718750f, 0.235099f, -0.566568f, /*n:*/-0.731193f, 0.114414f, 0.672475f, + /*v:*/-0.593750f, 0.133537f, -0.558756f, /*n:*/-0.312296f, -0.949950f, 0.001160f, + /*v:*/-0.726562f, 0.258537f, -0.465006f, /*n:*/-0.857204f, -0.493118f, -0.148289f, + /*v:*/-0.593750f, 0.133537f, -0.558756f, /*n:*/-0.312296f, -0.949950f, 0.001160f, + /*v:*/-0.734375f, 0.211662f, -0.324381f, /*n:*/-0.721030f, -0.689810f, 0.065065f, + /*v:*/-0.726562f, 0.258537f, -0.465006f, /*n:*/-0.857204f, -0.493118f, -0.148289f, + /*v:*/0.734375f, 0.211662f, -0.324381f, /*n:*/0.721030f, -0.689810f, 0.065065f, + /*v:*/0.593750f, 0.133537f, -0.558756f, /*n:*/0.312296f, -0.949950f, 0.001160f, + /*v:*/0.726562f, 0.258537f, -0.465006f, /*n:*/0.857204f, -0.493118f, -0.148289f, + /*v:*/0.593750f, 0.133537f, -0.558756f, /*n:*/0.312296f, -0.949950f, 0.001160f, + /*v:*/0.718750f, 0.235099f, -0.566568f, /*n:*/0.731193f, 0.114414f, 0.672475f, + /*v:*/0.726562f, 0.258537f, -0.465006f, /*n:*/0.857204f, -0.493118f, -0.148289f, + /*v:*/-0.945312f, 0.563224f, -0.683756f, /*n:*/-0.684194f, -0.555773f, 0.472182f, + /*v:*/-0.921875f, 0.617912f, -0.613443f, /*n:*/-0.449232f, -0.038331f, 0.892575f, + /*v:*/-1.015625f, 0.672599f, -0.683756f, /*n:*/-0.551164f, -0.078768f, 0.830622f, + /*v:*/-0.945312f, 0.563224f, -0.683756f, /*n:*/-0.684194f, -0.555773f, 0.472182f, + /*v:*/-1.015625f, 0.672599f, -0.683756f, /*n:*/-0.551164f, -0.078768f, 0.830622f, + /*v:*/-1.023438f, 0.602287f, -0.754068f, /*n:*/-0.560442f, -0.660878f, 0.499100f, + /*v:*/1.015625f, 0.672599f, -0.683756f, /*n:*/0.551164f, -0.078768f, 0.830622f, + /*v:*/0.921875f, 0.617912f, -0.613443f, /*n:*/0.449232f, -0.038331f, 0.892575f, + /*v:*/0.945312f, 0.563224f, -0.683756f, /*n:*/0.684194f, -0.555773f, 0.472182f, + /*v:*/1.015625f, 0.672599f, -0.683756f, /*n:*/0.551164f, -0.078768f, 0.830622f, + /*v:*/0.945312f, 0.563224f, -0.683756f, /*n:*/0.684194f, -0.555773f, 0.472182f, + /*v:*/1.023438f, 0.602287f, -0.754068f, /*n:*/0.560442f, -0.660878f, 0.499100f, + /*v:*/-1.171875f, 0.617912f, -0.832193f, /*n:*/0.149571f, -0.745506f, 0.649464f, + /*v:*/-1.023438f, 0.602287f, -0.754068f, /*n:*/-0.560442f, -0.660878f, 0.499100f, + /*v:*/-1.187500f, 0.696037f, -0.785318f, /*n:*/-0.321451f, -0.092318f, 0.942381f, + /*v:*/-1.023438f, 0.602287f, -0.754068f, /*n:*/-0.560442f, -0.660878f, 0.499100f, + /*v:*/-1.015625f, 0.672599f, -0.683756f, /*n:*/-0.551164f, -0.078768f, 0.830622f, + /*v:*/-1.187500f, 0.696037f, -0.785318f, /*n:*/-0.321451f, -0.092318f, 0.942381f, + /*v:*/1.015625f, 0.672599f, -0.683756f, /*n:*/0.551164f, -0.078768f, 0.830622f, + /*v:*/1.023438f, 0.602287f, -0.754068f, /*n:*/0.560442f, -0.660878f, 0.499100f, + /*v:*/1.187500f, 0.696037f, -0.785318f, /*n:*/0.321451f, -0.092318f, 0.942381f, + /*v:*/1.023438f, 0.602287f, -0.754068f, /*n:*/0.560442f, -0.660878f, 0.499100f, + /*v:*/1.171875f, 0.617912f, -0.832193f, /*n:*/-0.149571f, -0.745506f, 0.649464f, + /*v:*/1.187500f, 0.696037f, -0.785318f, /*n:*/0.321451f, -0.092318f, 0.942381f, + /*v:*/-1.234375f, 0.508537f, -0.840006f, /*n:*/0.984741f, -0.099582f, 0.142613f, + /*v:*/-1.171875f, 0.617912f, -0.832193f, /*n:*/0.149571f, -0.745506f, 0.649464f, + /*v:*/-1.265625f, 0.547599f, -0.800943f, /*n:*/0.154454f, -0.123875f, 0.980193f, + /*v:*/-1.171875f, 0.617912f, -0.832193f, /*n:*/0.149571f, -0.745506f, 0.649464f, + /*v:*/-1.187500f, 0.696037f, -0.785318f, /*n:*/-0.321451f, -0.092318f, 0.942381f, + /*v:*/-1.265625f, 0.547599f, -0.800943f, /*n:*/0.154454f, -0.123875f, 0.980193f, + /*v:*/1.187500f, 0.696037f, -0.785318f, /*n:*/0.321451f, -0.092318f, 0.942381f, + /*v:*/1.171875f, 0.617912f, -0.832193f, /*n:*/-0.149571f, -0.745506f, 0.649464f, + /*v:*/1.265625f, 0.547599f, -0.800943f, /*n:*/-0.154454f, -0.123875f, 0.980193f, + /*v:*/1.171875f, 0.617912f, -0.832193f, /*n:*/-0.149571f, -0.745506f, 0.649464f, + /*v:*/1.234375f, 0.508537f, -0.840006f, /*n:*/-0.984741f, -0.099582f, 0.142613f, + /*v:*/1.265625f, 0.547599f, -0.800943f, /*n:*/-0.154454f, -0.123875f, 0.980193f, + /*v:*/-1.187500f, 0.352287f, -0.840006f, /*n:*/0.762139f, 0.647084f, -0.019318f, + /*v:*/-1.234375f, 0.508537f, -0.840006f, /*n:*/0.984741f, -0.099582f, 0.142613f, + /*v:*/-1.210938f, 0.336662f, -0.800943f, /*n:*/0.041108f, 0.310831f, 0.949553f, + /*v:*/-1.234375f, 0.508537f, -0.840006f, /*n:*/0.984741f, -0.099582f, 0.142613f, + /*v:*/-1.265625f, 0.547599f, -0.800943f, /*n:*/0.154454f, -0.123875f, 0.980193f, + /*v:*/-1.210938f, 0.336662f, -0.800943f, /*n:*/0.041108f, 0.310831f, 0.949553f, + /*v:*/1.265625f, 0.547599f, -0.800943f, /*n:*/-0.154454f, -0.123875f, 0.980193f, + /*v:*/1.234375f, 0.508537f, -0.840006f, /*n:*/-0.984741f, -0.099582f, 0.142613f, + /*v:*/1.210938f, 0.336662f, -0.800943f, /*n:*/-0.041108f, 0.310831f, 0.949553f, + /*v:*/1.234375f, 0.508537f, -0.840006f, /*n:*/-0.984741f, -0.099582f, 0.142613f, + /*v:*/1.187500f, 0.352287f, -0.840006f, /*n:*/-0.762139f, 0.647084f, -0.019318f, + /*v:*/1.210938f, 0.336662f, -0.800943f, /*n:*/-0.041108f, 0.310831f, 0.949553f, + /*v:*/-1.039062f, 0.258537f, -0.761881f, /*n:*/0.186804f, 0.953825f, 0.235084f, + /*v:*/-1.187500f, 0.352287f, -0.840006f, /*n:*/0.762139f, 0.647084f, -0.019318f, + /*v:*/-1.210938f, 0.336662f, -0.800943f, /*n:*/0.041108f, 0.310831f, 0.949553f, + /*v:*/-1.039062f, 0.258537f, -0.761881f, /*n:*/0.186804f, 0.953825f, 0.235084f, + /*v:*/-1.210938f, 0.336662f, -0.800943f, /*n:*/0.041108f, 0.310831f, 0.949553f, + /*v:*/-1.031250f, 0.219474f, -0.699381f, /*n:*/-0.538377f, 0.295267f, 0.789239f, + /*v:*/1.210938f, 0.336662f, -0.800943f, /*n:*/-0.041108f, 0.310831f, 0.949553f, + /*v:*/1.187500f, 0.352287f, -0.840006f, /*n:*/-0.762139f, 0.647084f, -0.019318f, + /*v:*/1.039062f, 0.258537f, -0.761881f, /*n:*/-0.186804f, 0.953825f, 0.235084f, + /*v:*/1.210938f, 0.336662f, -0.800943f, /*n:*/-0.041108f, 0.310831f, 0.949553f, + /*v:*/1.039062f, 0.258537f, -0.761881f, /*n:*/-0.186804f, 0.953825f, 0.235084f, + /*v:*/1.031250f, 0.219474f, -0.699381f, /*n:*/0.538377f, 0.295267f, 0.789239f, + /*v:*/-0.882812f, 0.235099f, -0.605631f, /*n:*/-0.162877f, 0.858028f, 0.487014f, + /*v:*/-1.039062f, 0.258537f, -0.761881f, /*n:*/0.186804f, 0.953825f, 0.235084f, + /*v:*/-1.031250f, 0.219474f, -0.699381f, /*n:*/-0.538377f, 0.295267f, 0.789239f, + /*v:*/-0.882812f, 0.235099f, -0.605631f, /*n:*/-0.162877f, 0.858028f, 0.487014f, + /*v:*/-1.031250f, 0.219474f, -0.699381f, /*n:*/-0.538377f, 0.295267f, 0.789239f, + /*v:*/-0.828125f, 0.188224f, -0.527506f, /*n:*/-0.329936f, 0.315653f, 0.889645f, + /*v:*/1.031250f, 0.219474f, -0.699381f, /*n:*/0.538377f, 0.295267f, 0.789239f, + /*v:*/1.039062f, 0.258537f, -0.761881f, /*n:*/-0.186804f, 0.953825f, 0.235084f, + /*v:*/0.882812f, 0.235099f, -0.605631f, /*n:*/0.162877f, 0.858028f, 0.487014f, + /*v:*/1.031250f, 0.219474f, -0.699381f, /*n:*/0.538377f, 0.295267f, 0.789239f, + /*v:*/0.882812f, 0.235099f, -0.605631f, /*n:*/0.162877f, 0.858028f, 0.487014f, + /*v:*/0.828125f, 0.188224f, -0.527506f, /*n:*/0.329936f, 0.315653f, 0.889645f, + /*v:*/-0.828125f, 0.188224f, -0.527506f, /*n:*/-0.329936f, 0.315653f, 0.889645f, + /*v:*/-1.031250f, 0.219474f, -0.699381f, /*n:*/-0.538377f, 0.295267f, 0.789239f, + /*v:*/-1.039062f, 0.156974f, -0.722818f, /*n:*/-0.502884f, -0.780999f, 0.370312f, + /*v:*/-0.828125f, 0.188224f, -0.527506f, /*n:*/-0.329936f, 0.315653f, 0.889645f, + /*v:*/-1.039062f, 0.156974f, -0.722818f, /*n:*/-0.502884f, -0.780999f, 0.370312f, + /*v:*/-0.773438f, 0.117912f, -0.519693f, /*n:*/-0.029542f, -0.634999f, 0.771905f, + /*v:*/1.039062f, 0.156974f, -0.722818f, /*n:*/0.502884f, -0.780999f, 0.370312f, + /*v:*/1.031250f, 0.219474f, -0.699381f, /*n:*/0.538377f, 0.295267f, 0.789239f, + /*v:*/0.828125f, 0.188224f, -0.527506f, /*n:*/0.329936f, 0.315653f, 0.889645f, + /*v:*/1.039062f, 0.156974f, -0.722818f, /*n:*/0.502884f, -0.780999f, 0.370312f, + /*v:*/0.828125f, 0.188224f, -0.527506f, /*n:*/0.329936f, 0.315653f, 0.889645f, + /*v:*/0.773438f, 0.117912f, -0.519693f, /*n:*/0.029542f, -0.634999f, 0.771905f, + /*v:*/-1.031250f, 0.219474f, -0.699381f, /*n:*/-0.538377f, 0.295267f, 0.789239f, + /*v:*/-1.210938f, 0.336662f, -0.800943f, /*n:*/0.041108f, 0.310831f, 0.949553f, + /*v:*/-1.039062f, 0.156974f, -0.722818f, /*n:*/-0.502884f, -0.780999f, 0.370312f, + /*v:*/-1.210938f, 0.336662f, -0.800943f, /*n:*/0.041108f, 0.310831f, 0.949553f, + /*v:*/-1.281250f, 0.313224f, -0.824381f, /*n:*/-0.652608f, -0.476821f, 0.588794f, + /*v:*/-1.039062f, 0.156974f, -0.722818f, /*n:*/-0.502884f, -0.780999f, 0.370312f, + /*v:*/1.281250f, 0.313224f, -0.824381f, /*n:*/0.652608f, -0.476821f, 0.588794f, + /*v:*/1.210938f, 0.336662f, -0.800943f, /*n:*/-0.041108f, 0.310831f, 0.949553f, + /*v:*/1.039062f, 0.156974f, -0.722818f, /*n:*/0.502884f, -0.780999f, 0.370312f, + /*v:*/1.210938f, 0.336662f, -0.800943f, /*n:*/-0.041108f, 0.310831f, 0.949553f, + /*v:*/1.031250f, 0.219474f, -0.699381f, /*n:*/0.538377f, 0.295267f, 0.789239f, + /*v:*/1.039062f, 0.156974f, -0.722818f, /*n:*/0.502884f, -0.780999f, 0.370312f, + /*v:*/-1.210938f, 0.336662f, -0.800943f, /*n:*/0.041108f, 0.310831f, 0.949553f, + /*v:*/-1.265625f, 0.547599f, -0.800943f, /*n:*/0.154454f, -0.123875f, 0.980193f, + /*v:*/-1.281250f, 0.313224f, -0.824381f, /*n:*/-0.652608f, -0.476821f, 0.588794f, + /*v:*/-1.265625f, 0.547599f, -0.800943f, /*n:*/0.154454f, -0.123875f, 0.980193f, + /*v:*/-1.351562f, 0.578849f, -0.816568f, /*n:*/-0.778802f, 0.167791f, 0.604389f, + /*v:*/-1.281250f, 0.313224f, -0.824381f, /*n:*/-0.652608f, -0.476821f, 0.588794f, + /*v:*/1.351562f, 0.578849f, -0.816568f, /*n:*/0.778802f, 0.167791f, 0.604389f, + /*v:*/1.265625f, 0.547599f, -0.800943f, /*n:*/-0.154454f, -0.123875f, 0.980193f, + /*v:*/1.281250f, 0.313224f, -0.824381f, /*n:*/0.652608f, -0.476821f, 0.588794f, + /*v:*/1.265625f, 0.547599f, -0.800943f, /*n:*/-0.154454f, -0.123875f, 0.980193f, + /*v:*/1.210938f, 0.336662f, -0.800943f, /*n:*/-0.041108f, 0.310831f, 0.949553f, + /*v:*/1.281250f, 0.313224f, -0.824381f, /*n:*/0.652608f, -0.476821f, 0.588794f, + /*v:*/-1.265625f, 0.547599f, -0.800943f, /*n:*/0.154454f, -0.123875f, 0.980193f, + /*v:*/-1.187500f, 0.696037f, -0.785318f, /*n:*/-0.321451f, -0.092318f, 0.942381f, + /*v:*/-1.351562f, 0.578849f, -0.816568f, /*n:*/-0.778802f, 0.167791f, 0.604389f, + /*v:*/-1.187500f, 0.696037f, -0.785318f, /*n:*/-0.321451f, -0.092318f, 0.942381f, + /*v:*/-1.234375f, 0.766349f, -0.816568f, /*n:*/-0.383557f, 0.862972f, 0.328776f, + /*v:*/-1.351562f, 0.578849f, -0.816568f, /*n:*/-0.778802f, 0.167791f, 0.604389f, + /*v:*/1.234375f, 0.766349f, -0.816568f, /*n:*/0.383557f, 0.862972f, 0.328776f, + /*v:*/1.187500f, 0.696037f, -0.785318f, /*n:*/0.321451f, -0.092318f, 0.942381f, + /*v:*/1.351562f, 0.578849f, -0.816568f, /*n:*/0.778802f, 0.167791f, 0.604389f, + /*v:*/1.187500f, 0.696037f, -0.785318f, /*n:*/0.321451f, -0.092318f, 0.942381f, + /*v:*/1.265625f, 0.547599f, -0.800943f, /*n:*/-0.154454f, -0.123875f, 0.980193f, + /*v:*/1.351562f, 0.578849f, -0.816568f, /*n:*/0.778802f, 0.167791f, 0.604389f, + /*v:*/-1.187500f, 0.696037f, -0.785318f, /*n:*/-0.321451f, -0.092318f, 0.942381f, + /*v:*/-1.015625f, 0.672599f, -0.683756f, /*n:*/-0.551164f, -0.078768f, 0.830622f, + /*v:*/-1.023438f, 0.735099f, -0.707193f, /*n:*/-0.018799f, 0.872250f, 0.488632f, + /*v:*/-1.187500f, 0.696037f, -0.785318f, /*n:*/-0.321451f, -0.092318f, 0.942381f, + /*v:*/-1.023438f, 0.735099f, -0.707193f, /*n:*/-0.018799f, 0.872250f, 0.488632f, + /*v:*/-1.234375f, 0.766349f, -0.816568f, /*n:*/-0.383557f, 0.862972f, 0.328776f, + /*v:*/1.023438f, 0.735099f, -0.707193f, /*n:*/0.018799f, 0.872250f, 0.488632f, + /*v:*/1.015625f, 0.672599f, -0.683756f, /*n:*/0.551164f, -0.078768f, 0.830622f, + /*v:*/1.187500f, 0.696037f, -0.785318f, /*n:*/0.321451f, -0.092318f, 0.942381f, + /*v:*/1.023438f, 0.735099f, -0.707193f, /*n:*/0.018799f, 0.872250f, 0.488632f, + /*v:*/1.187500f, 0.696037f, -0.785318f, /*n:*/0.321451f, -0.092318f, 0.942381f, + /*v:*/1.234375f, 0.766349f, -0.816568f, /*n:*/0.383557f, 0.862972f, 0.328776f, + /*v:*/-0.921875f, 0.617912f, -0.613443f, /*n:*/-0.449232f, -0.038331f, 0.892575f, + /*v:*/-0.890625f, 0.664787f, -0.629068f, /*n:*/0.279244f, 0.768303f, 0.575884f, + /*v:*/-1.015625f, 0.672599f, -0.683756f, /*n:*/-0.551164f, -0.078768f, 0.830622f, + /*v:*/-0.890625f, 0.664787f, -0.629068f, /*n:*/0.279244f, 0.768303f, 0.575884f, + /*v:*/-1.023438f, 0.735099f, -0.707193f, /*n:*/-0.018799f, 0.872250f, 0.488632f, + /*v:*/-1.015625f, 0.672599f, -0.683756f, /*n:*/-0.551164f, -0.078768f, 0.830622f, + /*v:*/1.023438f, 0.735099f, -0.707193f, /*n:*/0.018799f, 0.872250f, 0.488632f, + /*v:*/0.890625f, 0.664787f, -0.629068f, /*n:*/-0.279244f, 0.768303f, 0.575884f, + /*v:*/1.015625f, 0.672599f, -0.683756f, /*n:*/0.551164f, -0.078768f, 0.830622f, + /*v:*/0.890625f, 0.664787f, -0.629068f, /*n:*/-0.279244f, 0.768303f, 0.575884f, + /*v:*/0.921875f, 0.617912f, -0.613443f, /*n:*/0.449232f, -0.038331f, 0.892575f, + /*v:*/1.015625f, 0.672599f, -0.683756f, /*n:*/0.551164f, -0.078768f, 0.830622f, + /*v:*/-0.484375f, 0.281974f, -0.941568f, /*n:*/-0.529221f, -0.505112f, -0.681722f, + /*v:*/-0.343750f, 0.110099f, -0.933756f, /*n:*/-0.522263f, -0.653615f, -0.547685f, + /*v:*/-0.429688f, 0.063224f, -0.605631f, /*n:*/-0.563280f, -0.817286f, -0.121311f, + /*v:*/-0.343750f, 0.110099f, -0.933756f, /*n:*/-0.522263f, -0.653615f, -0.547685f, + /*v:*/-0.296875f, -0.053963f, -0.660318f, /*n:*/-0.507065f, -0.837581f, -0.203314f, + /*v:*/-0.429688f, 0.063224f, -0.605631f, /*n:*/-0.563280f, -0.817286f, -0.121311f, + /*v:*/0.296875f, -0.053963f, -0.660318f, /*n:*/0.507065f, -0.837581f, -0.203314f, + /*v:*/0.343750f, 0.110099f, -0.933756f, /*n:*/0.522263f, -0.653615f, -0.547685f, + /*v:*/0.429688f, 0.063224f, -0.605631f, /*n:*/0.563280f, -0.817286f, -0.121311f, + /*v:*/0.343750f, 0.110099f, -0.933756f, /*n:*/0.522263f, -0.653615f, -0.547685f, + /*v:*/0.484375f, 0.281974f, -0.941568f, /*n:*/0.529221f, -0.505112f, -0.681722f, + /*v:*/0.429688f, 0.063224f, -0.605631f, /*n:*/0.563280f, -0.817286f, -0.121311f, + /*v:*/-0.484375f, 0.281974f, -0.941568f, /*n:*/-0.529221f, -0.505112f, -0.681722f, + /*v:*/-0.429688f, 0.063224f, -0.605631f, /*n:*/-0.563280f, -0.817286f, -0.121311f, + /*v:*/-0.640625f, 0.250724f, -0.824381f, /*n:*/-0.325510f, -0.602924f, -0.728355f, + /*v:*/-0.429688f, 0.063224f, -0.605631f, /*n:*/-0.563280f, -0.817286f, -0.121311f, + /*v:*/-0.593750f, 0.133537f, -0.558756f, /*n:*/-0.312296f, -0.949950f, 0.001160f, + /*v:*/-0.640625f, 0.250724f, -0.824381f, /*n:*/-0.325510f, -0.602924f, -0.728355f, + /*v:*/0.593750f, 0.133537f, -0.558756f, /*n:*/0.312296f, -0.949950f, 0.001160f, + /*v:*/0.429688f, 0.063224f, -0.605631f, /*n:*/0.563280f, -0.817286f, -0.121311f, + /*v:*/0.640625f, 0.250724f, -0.824381f, /*n:*/0.325510f, -0.602924f, -0.728355f, + /*v:*/0.429688f, 0.063224f, -0.605631f, /*n:*/0.563280f, -0.817286f, -0.121311f, + /*v:*/0.484375f, 0.281974f, -0.941568f, /*n:*/0.529221f, -0.505112f, -0.681722f, + /*v:*/0.640625f, 0.250724f, -0.824381f, /*n:*/0.325510f, -0.602924f, -0.728355f, + /*v:*/-0.484375f, 0.281974f, -0.941568f, /*n:*/-0.529221f, -0.505112f, -0.681722f, + /*v:*/-0.617188f, 0.586662f, -0.980631f, /*n:*/-0.619648f, -0.060457f, -0.782525f, + /*v:*/-0.335938f, 0.313224f, -1.058756f, /*n:*/-0.445479f, -0.358348f, -0.820399f, + /*v:*/-0.617188f, 0.586662f, -0.980631f, /*n:*/-0.619648f, -0.060457f, -0.782525f, + /*v:*/-0.460938f, 0.696037f, -1.097818f, /*n:*/-0.473006f, 0.176305f, -0.863216f, + /*v:*/-0.335938f, 0.313224f, -1.058756f, /*n:*/-0.445479f, -0.358348f, -0.820399f, + /*v:*/0.460938f, 0.696037f, -1.097818f, /*n:*/0.473006f, 0.176305f, -0.863216f, + /*v:*/0.617188f, 0.586662f, -0.980631f, /*n:*/0.619648f, -0.060457f, -0.782525f, + /*v:*/0.335938f, 0.313224f, -1.058756f, /*n:*/0.445479f, -0.358348f, -0.820399f, + /*v:*/0.617188f, 0.586662f, -0.980631f, /*n:*/0.619648f, -0.060457f, -0.782525f, + /*v:*/0.484375f, 0.281974f, -0.941568f, /*n:*/0.529221f, -0.505112f, -0.681722f, + /*v:*/0.335938f, 0.313224f, -1.058756f, /*n:*/0.445479f, -0.358348f, -0.820399f, + /*v:*/-0.484375f, 0.281974f, -0.941568f, /*n:*/-0.529221f, -0.505112f, -0.681722f, + /*v:*/-0.640625f, 0.250724f, -0.824381f, /*n:*/-0.325510f, -0.602924f, -0.728355f, + /*v:*/-0.617188f, 0.586662f, -0.980631f, /*n:*/-0.619648f, -0.060457f, -0.782525f, + /*v:*/-0.640625f, 0.250724f, -0.824381f, /*n:*/-0.325510f, -0.602924f, -0.728355f, + /*v:*/-0.773438f, 0.524162f, -0.832193f, /*n:*/-0.670766f, -0.045289f, -0.740257f, + /*v:*/-0.617188f, 0.586662f, -0.980631f, /*n:*/-0.619648f, -0.060457f, -0.782525f, + /*v:*/0.773438f, 0.524162f, -0.832193f, /*n:*/0.670766f, -0.045289f, -0.740257f, + /*v:*/0.640625f, 0.250724f, -0.824381f, /*n:*/0.325510f, -0.602924f, -0.728355f, + /*v:*/0.617188f, 0.586662f, -0.980631f, /*n:*/0.619648f, -0.060457f, -0.782525f, + /*v:*/0.640625f, 0.250724f, -0.824381f, /*n:*/0.325510f, -0.602924f, -0.728355f, + /*v:*/0.484375f, 0.281974f, -0.941568f, /*n:*/0.529221f, -0.505112f, -0.681722f, + /*v:*/0.617188f, 0.586662f, -0.980631f, /*n:*/0.619648f, -0.060457f, -0.782525f, + /*v:*/-0.218750f, -0.022713f, 0.034994f, /*n:*/-0.978698f, -0.195837f, 0.061495f, + /*v:*/-0.210938f, 0.031974f, 0.074057f, /*n:*/-0.887173f, -0.157720f, 0.433607f, + /*v:*/-0.437500f, 0.164787f, 0.074057f, /*n:*/-0.471969f, -0.863674f, -0.176794f, + /*v:*/-0.218750f, -0.022713f, 0.034994f, /*n:*/-0.978698f, -0.195837f, 0.061495f, + /*v:*/-0.437500f, 0.164787f, 0.074057f, /*n:*/-0.471969f, -0.863674f, -0.176794f, + /*v:*/-0.406250f, 0.086662f, -0.246256f, /*n:*/-0.579028f, -0.802698f, 0.142705f, + /*v:*/0.437500f, 0.164787f, 0.074057f, /*n:*/0.471969f, -0.863674f, -0.176794f, + /*v:*/0.210938f, 0.031974f, 0.074057f, /*n:*/0.887173f, -0.157720f, 0.433607f, + /*v:*/0.218750f, -0.022713f, 0.034994f, /*n:*/0.978698f, -0.195837f, 0.061495f, + /*v:*/0.437500f, 0.164787f, 0.074057f, /*n:*/0.471969f, -0.863674f, -0.176794f, + /*v:*/0.218750f, -0.022713f, 0.034994f, /*n:*/0.978698f, -0.195837f, 0.061495f, + /*v:*/0.406250f, 0.086662f, -0.246256f, /*n:*/0.579028f, -0.802698f, 0.142705f, + /*v:*/-0.406250f, 0.086662f, -0.246256f, /*n:*/-0.579028f, -0.802698f, 0.142705f, + /*v:*/-0.437500f, 0.164787f, 0.074057f, /*n:*/-0.471969f, -0.863674f, -0.176794f, + /*v:*/-0.601562f, 0.258537f, 0.019369f, /*n:*/-0.544328f, -0.837153f, -0.053316f, + /*v:*/-0.406250f, 0.086662f, -0.246256f, /*n:*/-0.579028f, -0.802698f, 0.142705f, + /*v:*/-0.601562f, 0.258537f, 0.019369f, /*n:*/-0.544328f, -0.837153f, -0.053316f, + /*v:*/-0.734375f, 0.211662f, -0.324381f, /*n:*/-0.721030f, -0.689810f, 0.065065f, + /*v:*/0.601562f, 0.258537f, 0.019369f, /*n:*/0.544328f, -0.837153f, -0.053316f, + /*v:*/0.437500f, 0.164787f, 0.074057f, /*n:*/0.471969f, -0.863674f, -0.176794f, + /*v:*/0.406250f, 0.086662f, -0.246256f, /*n:*/0.579028f, -0.802698f, 0.142705f, + /*v:*/0.601562f, 0.258537f, 0.019369f, /*n:*/0.544328f, -0.837153f, -0.053316f, + /*v:*/0.406250f, 0.086662f, -0.246256f, /*n:*/0.579028f, -0.802698f, 0.142705f, + /*v:*/0.734375f, 0.211662f, -0.324381f, /*n:*/0.721030f, -0.689810f, 0.065065f, + /*v:*/-0.429688f, 0.063224f, -0.605631f, /*n:*/-0.563280f, -0.817286f, -0.121311f, + /*v:*/-0.406250f, 0.086662f, -0.246256f, /*n:*/-0.579028f, -0.802698f, 0.142705f, + /*v:*/-0.593750f, 0.133537f, -0.558756f, /*n:*/-0.312296f, -0.949950f, 0.001160f, + /*v:*/-0.406250f, 0.086662f, -0.246256f, /*n:*/-0.579028f, -0.802698f, 0.142705f, + /*v:*/-0.734375f, 0.211662f, -0.324381f, /*n:*/-0.721030f, -0.689810f, 0.065065f, + /*v:*/-0.593750f, 0.133537f, -0.558756f, /*n:*/-0.312296f, -0.949950f, 0.001160f, + /*v:*/0.734375f, 0.211662f, -0.324381f, /*n:*/0.721030f, -0.689810f, 0.065065f, + /*v:*/0.406250f, 0.086662f, -0.246256f, /*n:*/0.579028f, -0.802698f, 0.142705f, + /*v:*/0.593750f, 0.133537f, -0.558756f, /*n:*/0.312296f, -0.949950f, 0.001160f, + /*v:*/0.406250f, 0.086662f, -0.246256f, /*n:*/0.579028f, -0.802698f, 0.142705f, + /*v:*/0.429688f, 0.063224f, -0.605631f, /*n:*/0.563280f, -0.817286f, -0.121311f, + /*v:*/0.593750f, 0.133537f, -0.558756f, /*n:*/0.312296f, -0.949950f, 0.001160f, + /*v:*/-0.429688f, 0.063224f, -0.605631f, /*n:*/-0.563280f, -0.817286f, -0.121311f, + /*v:*/-0.296875f, -0.053963f, -0.660318f, /*n:*/-0.507065f, -0.837581f, -0.203314f, + /*v:*/-0.406250f, 0.086662f, -0.246256f, /*n:*/-0.579028f, -0.802698f, 0.142705f, + /*v:*/-0.296875f, -0.053963f, -0.660318f, /*n:*/-0.507065f, -0.837581f, -0.203314f, + /*v:*/-0.210938f, -0.132088f, -0.230631f, /*n:*/-0.572680f, -0.819666f, 0.011994f, + /*v:*/-0.406250f, 0.086662f, -0.246256f, /*n:*/-0.579028f, -0.802698f, 0.142705f, + /*v:*/0.210938f, -0.132088f, -0.230631f, /*n:*/0.572680f, -0.819666f, 0.011994f, + /*v:*/0.296875f, -0.053963f, -0.660318f, /*n:*/0.507065f, -0.837581f, -0.203314f, + /*v:*/0.406250f, 0.086662f, -0.246256f, /*n:*/0.579028f, -0.802698f, 0.142705f, + /*v:*/0.296875f, -0.053963f, -0.660318f, /*n:*/0.507065f, -0.837581f, -0.203314f, + /*v:*/0.429688f, 0.063224f, -0.605631f, /*n:*/0.563280f, -0.817286f, -0.121311f, + /*v:*/0.406250f, 0.086662f, -0.246256f, /*n:*/0.579028f, -0.802698f, 0.142705f, + /*v:*/-0.796875f, 0.875724f, -0.511881f, /*n:*/-0.848628f, 0.528764f, -0.014008f, + /*v:*/-0.796875f, 0.797599f, -0.754068f, /*n:*/-0.872158f, 0.314554f, -0.374645f, + /*v:*/-0.820312f, 0.586662f, -0.597818f, /*n:*/-0.908536f, 0.224219f, 0.352489f, + /*v:*/-0.796875f, 0.797599f, -0.754068f, /*n:*/-0.872158f, 0.314554f, -0.374645f, + /*v:*/-0.773438f, 0.524162f, -0.832193f, /*n:*/-0.670766f, -0.045289f, -0.740257f, + /*v:*/-0.820312f, 0.586662f, -0.597818f, /*n:*/-0.908536f, 0.224219f, 0.352489f, + /*v:*/0.773438f, 0.524162f, -0.832193f, /*n:*/0.670766f, -0.045289f, -0.740257f, + /*v:*/0.796875f, 0.797599f, -0.754068f, /*n:*/0.872158f, 0.314554f, -0.374645f, + /*v:*/0.820312f, 0.586662f, -0.597818f, /*n:*/0.908536f, 0.224219f, 0.352489f, + /*v:*/0.796875f, 0.797599f, -0.754068f, /*n:*/0.872158f, 0.314554f, -0.374645f, + /*v:*/0.796875f, 0.875724f, -0.511881f, /*n:*/0.848628f, 0.528764f, -0.014008f, + /*v:*/0.820312f, 0.586662f, -0.597818f, /*n:*/0.908536f, 0.224219f, 0.352489f, + /*v:*/-0.796875f, 0.875724f, -0.511881f, /*n:*/-0.848628f, 0.528764f, -0.014008f, + /*v:*/-0.820312f, 0.586662f, -0.597818f, /*n:*/-0.908536f, 0.224219f, 0.352489f, + /*v:*/-0.859375f, 0.578849f, -0.441568f, /*n:*/-0.997009f, -0.033296f, -0.069521f, + /*v:*/-0.796875f, 0.875724f, -0.511881f, /*n:*/-0.848628f, 0.528764f, -0.014008f, + /*v:*/-0.859375f, 0.578849f, -0.441568f, /*n:*/-0.997009f, -0.033296f, -0.069521f, + /*v:*/-0.796875f, 0.821037f, -0.269693f, /*n:*/-0.741752f, 0.516434f, 0.427839f, + /*v:*/0.859375f, 0.578849f, -0.441568f, /*n:*/0.997009f, -0.033296f, -0.069521f, + /*v:*/0.820312f, 0.586662f, -0.597818f, /*n:*/0.908536f, 0.224219f, 0.352489f, + /*v:*/0.796875f, 0.875724f, -0.511881f, /*n:*/0.848628f, 0.528764f, -0.014008f, + /*v:*/0.859375f, 0.578849f, -0.441568f, /*n:*/0.997009f, -0.033296f, -0.069521f, + /*v:*/0.796875f, 0.875724f, -0.511881f, /*n:*/0.848628f, 0.528764f, -0.014008f, + /*v:*/0.796875f, 0.821037f, -0.269693f, /*n:*/0.741752f, 0.516434f, 0.427839f, + /*v:*/-0.796875f, 0.821037f, -0.269693f, /*n:*/-0.741752f, 0.516434f, 0.427839f, + /*v:*/-0.859375f, 0.578849f, -0.441568f, /*n:*/-0.997009f, -0.033296f, -0.069521f, + /*v:*/-0.851562f, 0.492912f, -0.340006f, /*n:*/-0.985015f, -0.160466f, 0.063051f, + /*v:*/-0.796875f, 0.821037f, -0.269693f, /*n:*/-0.741752f, 0.516434f, 0.427839f, + /*v:*/-0.851562f, 0.492912f, -0.340006f, /*n:*/-0.985015f, -0.160466f, 0.063051f, + /*v:*/-0.726562f, 0.664787f, -0.058756f, /*n:*/-0.771722f, 0.631062f, 0.078494f, + /*v:*/0.851562f, 0.492912f, -0.340006f, /*n:*/0.985015f, -0.160466f, 0.063051f, + /*v:*/0.859375f, 0.578849f, -0.441568f, /*n:*/0.997009f, -0.033296f, -0.069521f, + /*v:*/0.796875f, 0.821037f, -0.269693f, /*n:*/0.741752f, 0.516434f, 0.427839f, + /*v:*/0.851562f, 0.492912f, -0.340006f, /*n:*/0.985015f, -0.160466f, 0.063051f, + /*v:*/0.796875f, 0.821037f, -0.269693f, /*n:*/0.741752f, 0.516434f, 0.427839f, + /*v:*/0.726562f, 0.664787f, -0.058756f, /*n:*/0.771722f, 0.631062f, 0.078494f, + /*v:*/-0.851562f, 0.492912f, -0.340006f, /*n:*/-0.985015f, -0.160466f, 0.063051f, + /*v:*/-0.773438f, 0.422599f, -0.019693f, /*n:*/-0.930204f, -0.306192f, -0.202338f, + /*v:*/-0.726562f, 0.664787f, -0.058756f, /*n:*/-0.771722f, 0.631062f, 0.078494f, + /*v:*/-0.773438f, 0.422599f, -0.019693f, /*n:*/-0.930204f, -0.306192f, -0.202338f, + /*v:*/-0.796875f, 0.664787f, 0.066244f, /*n:*/-0.695700f, 0.581378f, -0.421827f, + /*v:*/-0.726562f, 0.664787f, -0.058756f, /*n:*/-0.771722f, 0.631062f, 0.078494f, + /*v:*/0.796875f, 0.664787f, 0.066244f, /*n:*/0.695700f, 0.581378f, -0.421827f, + /*v:*/0.773438f, 0.422599f, -0.019693f, /*n:*/0.930204f, -0.306192f, -0.202338f, + /*v:*/0.726562f, 0.664787f, -0.058756f, /*n:*/0.771722f, 0.631062f, 0.078494f, + /*v:*/0.773438f, 0.422599f, -0.019693f, /*n:*/0.930204f, -0.306192f, -0.202338f, + /*v:*/0.851562f, 0.492912f, -0.340006f, /*n:*/0.985015f, -0.160466f, 0.063051f, + /*v:*/0.726562f, 0.664787f, -0.058756f, /*n:*/0.771722f, 0.631062f, 0.078494f, + /*v:*/-0.460938f, 0.781974f, 0.034994f, /*n:*/-0.340648f, 0.883206f, 0.322306f, + /*v:*/-0.484375f, 0.813224f, 0.159994f, /*n:*/-0.226691f, 0.874813f, -0.428114f, + /*v:*/-0.109375f, 0.719474f, 0.214682f, /*n:*/0.459304f, 0.862453f, 0.212561f, + /*v:*/-0.460938f, 0.781974f, 0.034994f, /*n:*/-0.340648f, 0.883206f, 0.322306f, + /*v:*/-0.109375f, 0.719474f, 0.214682f, /*n:*/0.459304f, 0.862453f, 0.212561f, + /*v:*/0.000000f, 0.828849f, 0.175619f, /*n:*/0.000000f, 0.529252f, 0.848445f, + /*v:*/0.109375f, 0.719474f, 0.214682f, /*n:*/-0.459304f, 0.862453f, 0.212561f, + /*v:*/0.484375f, 0.813224f, 0.159994f, /*n:*/0.226691f, 0.874813f, -0.428114f, + /*v:*/0.460938f, 0.781974f, 0.034994f, /*n:*/0.340648f, 0.883206f, 0.322306f, + /*v:*/0.109375f, 0.719474f, 0.214682f, /*n:*/-0.459304f, 0.862453f, 0.212561f, + /*v:*/0.460938f, 0.781974f, 0.034994f, /*n:*/0.340648f, 0.883206f, 0.322306f, + /*v:*/0.000000f, 0.828849f, 0.175619f, /*n:*/0.000000f, 0.529252f, 0.848445f, + /*v:*/-0.335938f, 0.946037f, 0.199057f, /*n:*/-0.119297f, 0.646138f, -0.753807f, + /*v:*/-0.195312f, 0.922599f, 0.222494f, /*n:*/0.476638f, 0.509445f, -0.716392f, + /*v:*/-0.484375f, 0.813224f, 0.159994f, /*n:*/-0.226691f, 0.874813f, -0.428114f, + /*v:*/-0.195312f, 0.922599f, 0.222494f, /*n:*/0.476638f, 0.509445f, -0.716392f, + /*v:*/-0.109375f, 0.719474f, 0.214682f, /*n:*/0.459304f, 0.862453f, 0.212561f, + /*v:*/-0.484375f, 0.813224f, 0.159994f, /*n:*/-0.226691f, 0.874813f, -0.428114f, + /*v:*/0.109375f, 0.719474f, 0.214682f, /*n:*/-0.459304f, 0.862453f, 0.212561f, + /*v:*/0.195312f, 0.922599f, 0.222494f, /*n:*/-0.476638f, 0.509445f, -0.716392f, + /*v:*/0.484375f, 0.813224f, 0.159994f, /*n:*/0.226691f, 0.874813f, -0.428114f, + /*v:*/0.195312f, 0.922599f, 0.222494f, /*n:*/-0.476638f, 0.509445f, -0.716392f, + /*v:*/0.335938f, 0.946037f, 0.199057f, /*n:*/0.119297f, 0.646138f, -0.753807f, + /*v:*/0.484375f, 0.813224f, 0.159994f, /*n:*/0.226691f, 0.874813f, -0.428114f, + /*v:*/-0.453125f, 1.110099f, -0.160318f, /*n:*/-0.444227f, 0.724418f, 0.527085f, + /*v:*/-0.460938f, 0.781974f, 0.034994f, /*n:*/-0.340648f, 0.883206f, 0.322306f, + /*v:*/0.000000f, 1.156974f, -0.105631f, /*n:*/0.000000f, 0.830622f, 0.556810f, + /*v:*/-0.460938f, 0.781974f, 0.034994f, /*n:*/-0.340648f, 0.883206f, 0.322306f, + /*v:*/0.000000f, 0.828849f, 0.175619f, /*n:*/0.000000f, 0.529252f, 0.848445f, + /*v:*/0.000000f, 1.156974f, -0.105631f, /*n:*/0.000000f, 0.830622f, 0.556810f, + /*v:*/0.000000f, 0.828849f, 0.175619f, /*n:*/0.000000f, 0.529252f, 0.848445f, + /*v:*/0.460938f, 0.781974f, 0.034994f, /*n:*/0.340648f, 0.883206f, 0.322306f, + /*v:*/0.000000f, 1.156974f, -0.105631f, /*n:*/0.000000f, 0.830622f, 0.556810f, + /*v:*/0.460938f, 0.781974f, 0.034994f, /*n:*/0.340648f, 0.883206f, 0.322306f, + /*v:*/0.453125f, 1.110099f, -0.160318f, /*n:*/0.444227f, 0.724418f, 0.527085f, + /*v:*/0.000000f, 1.156974f, -0.105631f, /*n:*/0.000000f, 0.830622f, 0.556810f, + /*v:*/-0.632812f, 0.711662f, -0.113443f, /*n:*/-0.444411f, 0.788537f, 0.425031f, + /*v:*/-0.679688f, 0.711662f, 0.097494f, /*n:*/-0.345531f, 0.912442f, -0.219123f, + /*v:*/-0.460938f, 0.781974f, 0.034994f, /*n:*/-0.340648f, 0.883206f, 0.322306f, + /*v:*/-0.679688f, 0.711662f, 0.097494f, /*n:*/-0.345531f, 0.912442f, -0.219123f, + /*v:*/-0.484375f, 0.813224f, 0.159994f, /*n:*/-0.226691f, 0.874813f, -0.428114f, + /*v:*/-0.460938f, 0.781974f, 0.034994f, /*n:*/-0.340648f, 0.883206f, 0.322306f, + /*v:*/0.484375f, 0.813224f, 0.159994f, /*n:*/0.226691f, 0.874813f, -0.428114f, + /*v:*/0.679688f, 0.711662f, 0.097494f, /*n:*/0.345531f, 0.912442f, -0.219123f, + /*v:*/0.460938f, 0.781974f, 0.034994f, /*n:*/0.340648f, 0.883206f, 0.322306f, + /*v:*/0.679688f, 0.711662f, 0.097494f, /*n:*/0.345531f, 0.912442f, -0.219123f, + /*v:*/0.632812f, 0.711662f, -0.113443f, /*n:*/0.444411f, 0.788537f, 0.425031f, + /*v:*/0.460938f, 0.781974f, 0.034994f, /*n:*/0.340648f, 0.883206f, 0.322306f, + /*v:*/-0.632812f, 0.711662f, -0.113443f, /*n:*/-0.444411f, 0.788537f, 0.425031f, + /*v:*/-0.460938f, 0.781974f, 0.034994f, /*n:*/-0.340648f, 0.883206f, 0.322306f, + /*v:*/-0.453125f, 1.110099f, -0.160318f, /*n:*/-0.444227f, 0.724418f, 0.527085f, + /*v:*/-0.632812f, 0.711662f, -0.113443f, /*n:*/-0.444411f, 0.788537f, 0.425031f, + /*v:*/-0.453125f, 1.110099f, -0.160318f, /*n:*/-0.444227f, 0.724418f, 0.527085f, + /*v:*/-0.640625f, 0.961662f, -0.340006f, /*n:*/-0.668172f, 0.671865f, 0.319498f, + /*v:*/0.453125f, 1.110099f, -0.160318f, /*n:*/0.444227f, 0.724418f, 0.527085f, + /*v:*/0.460938f, 0.781974f, 0.034994f, /*n:*/0.340648f, 0.883206f, 0.322306f, + /*v:*/0.632812f, 0.711662f, -0.113443f, /*n:*/0.444411f, 0.788537f, 0.425031f, + /*v:*/0.453125f, 1.110099f, -0.160318f, /*n:*/0.444227f, 0.724418f, 0.527085f, + /*v:*/0.632812f, 0.711662f, -0.113443f, /*n:*/0.444411f, 0.788537f, 0.425031f, + /*v:*/0.640625f, 0.961662f, -0.340006f, /*n:*/0.668172f, 0.671865f, 0.319498f, + /*v:*/-0.640625f, 0.961662f, -0.340006f, /*n:*/-0.668172f, 0.671865f, 0.319498f, + /*v:*/-0.453125f, 1.110099f, -0.160318f, /*n:*/-0.444227f, 0.724418f, 0.527085f, + /*v:*/-0.453125f, 1.188224f, -0.465006f, /*n:*/-0.413495f, 0.909635f, 0.039460f, + /*v:*/-0.640625f, 0.961662f, -0.340006f, /*n:*/-0.668172f, 0.671865f, 0.319498f, + /*v:*/-0.453125f, 1.188224f, -0.465006f, /*n:*/-0.413495f, 0.909635f, 0.039460f, + /*v:*/-0.640625f, 1.008537f, -0.590006f, /*n:*/-0.678396f, 0.731376f, -0.069521f, + /*v:*/0.453125f, 1.188224f, -0.465006f, /*n:*/0.413495f, 0.909635f, 0.039460f, + /*v:*/0.453125f, 1.110099f, -0.160318f, /*n:*/0.444227f, 0.724418f, 0.527085f, + /*v:*/0.640625f, 0.961662f, -0.340006f, /*n:*/0.668172f, 0.671865f, 0.319498f, + /*v:*/0.453125f, 1.188224f, -0.465006f, /*n:*/0.413495f, 0.909635f, 0.039460f, + /*v:*/0.640625f, 0.961662f, -0.340006f, /*n:*/0.668172f, 0.671865f, 0.319498f, + /*v:*/0.640625f, 1.008537f, -0.590006f, /*n:*/0.678396f, 0.731376f, -0.069521f, + /*v:*/-0.640625f, 1.008537f, -0.590006f, /*n:*/-0.678396f, 0.731376f, -0.069521f, + /*v:*/-0.453125f, 1.188224f, -0.465006f, /*n:*/-0.413495f, 0.909635f, 0.039460f, + /*v:*/-0.453125f, 1.125724f, -0.777506f, /*n:*/-0.391247f, 0.815271f, -0.426832f, + /*v:*/-0.640625f, 1.008537f, -0.590006f, /*n:*/-0.678396f, 0.731376f, -0.069521f, + /*v:*/-0.453125f, 1.125724f, -0.777506f, /*n:*/-0.391247f, 0.815271f, -0.426832f, + /*v:*/-0.640625f, 0.938224f, -0.840006f, /*n:*/-0.607532f, 0.569567f, -0.553575f, + /*v:*/0.453125f, 1.125724f, -0.777506f, /*n:*/0.391247f, 0.815271f, -0.426832f, + /*v:*/0.453125f, 1.188224f, -0.465006f, /*n:*/0.413495f, 0.909635f, 0.039460f, + /*v:*/0.640625f, 1.008537f, -0.590006f, /*n:*/0.678396f, 0.731376f, -0.069521f, + /*v:*/0.453125f, 1.125724f, -0.777506f, /*n:*/0.391247f, 0.815271f, -0.426832f, + /*v:*/0.640625f, 1.008537f, -0.590006f, /*n:*/0.678396f, 0.731376f, -0.069521f, + /*v:*/0.640625f, 0.938224f, -0.840006f, /*n:*/0.607532f, 0.569567f, -0.553575f, + /*v:*/-0.640625f, 0.938224f, -0.840006f, /*n:*/-0.607532f, 0.569567f, -0.553575f, + /*v:*/-0.453125f, 1.125724f, -0.777506f, /*n:*/-0.391247f, 0.815271f, -0.426832f, + /*v:*/-0.460938f, 0.696037f, -1.097818f, /*n:*/-0.473006f, 0.176305f, -0.863216f, + /*v:*/-0.640625f, 0.938224f, -0.840006f, /*n:*/-0.607532f, 0.569567f, -0.553575f, + /*v:*/-0.460938f, 0.696037f, -1.097818f, /*n:*/-0.473006f, 0.176305f, -0.863216f, + /*v:*/-0.617188f, 0.586662f, -0.980631f, /*n:*/-0.619648f, -0.060457f, -0.782525f, + /*v:*/0.460938f, 0.696037f, -1.097818f, /*n:*/0.473006f, 0.176305f, -0.863216f, + /*v:*/0.453125f, 1.125724f, -0.777506f, /*n:*/0.391247f, 0.815271f, -0.426832f, + /*v:*/0.640625f, 0.938224f, -0.840006f, /*n:*/0.607532f, 0.569567f, -0.553575f, + /*v:*/0.460938f, 0.696037f, -1.097818f, /*n:*/0.473006f, 0.176305f, -0.863216f, + /*v:*/0.640625f, 0.938224f, -0.840006f, /*n:*/0.607532f, 0.569567f, -0.553575f, + /*v:*/0.617188f, 0.586662f, -0.980631f, /*n:*/0.619648f, -0.060457f, -0.782525f, + /*v:*/-0.640625f, 0.938224f, -0.840006f, /*n:*/-0.607532f, 0.569567f, -0.553575f, + /*v:*/-0.617188f, 0.586662f, -0.980631f, /*n:*/-0.619648f, -0.060457f, -0.782525f, + /*v:*/-0.796875f, 0.797599f, -0.754068f, /*n:*/-0.872158f, 0.314554f, -0.374645f, + /*v:*/-0.617188f, 0.586662f, -0.980631f, /*n:*/-0.619648f, -0.060457f, -0.782525f, + /*v:*/-0.773438f, 0.524162f, -0.832193f, /*n:*/-0.670766f, -0.045289f, -0.740257f, + /*v:*/-0.796875f, 0.797599f, -0.754068f, /*n:*/-0.872158f, 0.314554f, -0.374645f, + /*v:*/0.773438f, 0.524162f, -0.832193f, /*n:*/0.670766f, -0.045289f, -0.740257f, + /*v:*/0.617188f, 0.586662f, -0.980631f, /*n:*/0.619648f, -0.060457f, -0.782525f, + /*v:*/0.796875f, 0.797599f, -0.754068f, /*n:*/0.872158f, 0.314554f, -0.374645f, + /*v:*/0.617188f, 0.586662f, -0.980631f, /*n:*/0.619648f, -0.060457f, -0.782525f, + /*v:*/0.640625f, 0.938224f, -0.840006f, /*n:*/0.607532f, 0.569567f, -0.553575f, + /*v:*/0.796875f, 0.797599f, -0.754068f, /*n:*/0.872158f, 0.314554f, -0.374645f, + /*v:*/-0.796875f, 0.797599f, -0.754068f, /*n:*/-0.872158f, 0.314554f, -0.374645f, + /*v:*/-0.796875f, 0.875724f, -0.511881f, /*n:*/-0.848628f, 0.528764f, -0.014008f, + /*v:*/-0.640625f, 1.008537f, -0.590006f, /*n:*/-0.678396f, 0.731376f, -0.069521f, + /*v:*/-0.796875f, 0.797599f, -0.754068f, /*n:*/-0.872158f, 0.314554f, -0.374645f, + /*v:*/-0.640625f, 1.008537f, -0.590006f, /*n:*/-0.678396f, 0.731376f, -0.069521f, + /*v:*/-0.640625f, 0.938224f, -0.840006f, /*n:*/-0.607532f, 0.569567f, -0.553575f, + /*v:*/0.640625f, 1.008537f, -0.590006f, /*n:*/0.678396f, 0.731376f, -0.069521f, + /*v:*/0.796875f, 0.875724f, -0.511881f, /*n:*/0.848628f, 0.528764f, -0.014008f, + /*v:*/0.796875f, 0.797599f, -0.754068f, /*n:*/0.872158f, 0.314554f, -0.374645f, + /*v:*/0.640625f, 1.008537f, -0.590006f, /*n:*/0.678396f, 0.731376f, -0.069521f, + /*v:*/0.796875f, 0.797599f, -0.754068f, /*n:*/0.872158f, 0.314554f, -0.374645f, + /*v:*/0.640625f, 0.938224f, -0.840006f, /*n:*/0.607532f, 0.569567f, -0.553575f, + /*v:*/-0.796875f, 0.875724f, -0.511881f, /*n:*/-0.848628f, 0.528764f, -0.014008f, + /*v:*/-0.796875f, 0.821037f, -0.269693f, /*n:*/-0.741752f, 0.516434f, 0.427839f, + /*v:*/-0.640625f, 0.961662f, -0.340006f, /*n:*/-0.668172f, 0.671865f, 0.319498f, + /*v:*/-0.796875f, 0.875724f, -0.511881f, /*n:*/-0.848628f, 0.528764f, -0.014008f, + /*v:*/-0.640625f, 0.961662f, -0.340006f, /*n:*/-0.668172f, 0.671865f, 0.319498f, + /*v:*/-0.640625f, 1.008537f, -0.590006f, /*n:*/-0.678396f, 0.731376f, -0.069521f, + /*v:*/0.640625f, 0.961662f, -0.340006f, /*n:*/0.668172f, 0.671865f, 0.319498f, + /*v:*/0.796875f, 0.821037f, -0.269693f, /*n:*/0.741752f, 0.516434f, 0.427839f, + /*v:*/0.796875f, 0.875724f, -0.511881f, /*n:*/0.848628f, 0.528764f, -0.014008f, + /*v:*/0.640625f, 0.961662f, -0.340006f, /*n:*/0.668172f, 0.671865f, 0.319498f, + /*v:*/0.796875f, 0.875724f, -0.511881f, /*n:*/0.848628f, 0.528764f, -0.014008f, + /*v:*/0.640625f, 1.008537f, -0.590006f, /*n:*/0.678396f, 0.731376f, -0.069521f, + /*v:*/-0.796875f, 0.821037f, -0.269693f, /*n:*/-0.741752f, 0.516434f, 0.427839f, + /*v:*/-0.726562f, 0.664787f, -0.058756f, /*n:*/-0.771722f, 0.631062f, 0.078494f, + /*v:*/-0.632812f, 0.711662f, -0.113443f, /*n:*/-0.444411f, 0.788537f, 0.425031f, + /*v:*/-0.796875f, 0.821037f, -0.269693f, /*n:*/-0.741752f, 0.516434f, 0.427839f, + /*v:*/-0.632812f, 0.711662f, -0.113443f, /*n:*/-0.444411f, 0.788537f, 0.425031f, + /*v:*/-0.640625f, 0.961662f, -0.340006f, /*n:*/-0.668172f, 0.671865f, 0.319498f, + /*v:*/0.632812f, 0.711662f, -0.113443f, /*n:*/0.444411f, 0.788537f, 0.425031f, + /*v:*/0.726562f, 0.664787f, -0.058756f, /*n:*/0.771722f, 0.631062f, 0.078494f, + /*v:*/0.796875f, 0.821037f, -0.269693f, /*n:*/0.741752f, 0.516434f, 0.427839f, + /*v:*/0.632812f, 0.711662f, -0.113443f, /*n:*/0.444411f, 0.788537f, 0.425031f, + /*v:*/0.796875f, 0.821037f, -0.269693f, /*n:*/0.741752f, 0.516434f, 0.427839f, + /*v:*/0.640625f, 0.961662f, -0.340006f, /*n:*/0.668172f, 0.671865f, 0.319498f, + /*v:*/-0.726562f, 0.664787f, -0.058756f, /*n:*/-0.771722f, 0.631062f, 0.078494f, + /*v:*/-0.796875f, 0.664787f, 0.066244f, /*n:*/-0.695700f, 0.581378f, -0.421827f, + /*v:*/-0.679688f, 0.711662f, 0.097494f, /*n:*/-0.345531f, 0.912442f, -0.219123f, + /*v:*/-0.726562f, 0.664787f, -0.058756f, /*n:*/-0.771722f, 0.631062f, 0.078494f, + /*v:*/-0.679688f, 0.711662f, 0.097494f, /*n:*/-0.345531f, 0.912442f, -0.219123f, + /*v:*/-0.632812f, 0.711662f, -0.113443f, /*n:*/-0.444411f, 0.788537f, 0.425031f, + /*v:*/0.679688f, 0.711662f, 0.097494f, /*n:*/0.345531f, 0.912442f, -0.219123f, + /*v:*/0.796875f, 0.664787f, 0.066244f, /*n:*/0.695700f, 0.581378f, -0.421827f, + /*v:*/0.726562f, 0.664787f, -0.058756f, /*n:*/0.771722f, 0.631062f, 0.078494f, + /*v:*/0.679688f, 0.711662f, 0.097494f, /*n:*/0.345531f, 0.912442f, -0.219123f, + /*v:*/0.726562f, 0.664787f, -0.058756f, /*n:*/0.771722f, 0.631062f, 0.078494f, + /*v:*/0.632812f, 0.711662f, -0.113443f, /*n:*/0.444411f, 0.788537f, 0.425031f, + /*v:*/-0.460938f, 0.696037f, -1.097818f, /*n:*/-0.473006f, 0.176305f, -0.863216f, + /*v:*/-0.453125f, 1.125724f, -0.777506f, /*n:*/-0.391247f, 0.815271f, -0.426832f, + /*v:*/0.000000f, 1.156974f, -0.941568f, /*n:*/0.000000f, 0.834223f, -0.551378f, + /*v:*/-0.460938f, 0.696037f, -1.097818f, /*n:*/-0.473006f, 0.176305f, -0.863216f, + /*v:*/0.000000f, 1.156974f, -0.941568f, /*n:*/0.000000f, 0.834223f, -0.551378f, + /*v:*/0.000000f, 0.821037f, -1.246256f, /*n:*/0.000000f, 0.365032f, -0.930967f, + /*v:*/0.000000f, 1.156974f, -0.941568f, /*n:*/0.000000f, 0.834223f, -0.551378f, + /*v:*/0.453125f, 1.125724f, -0.777506f, /*n:*/0.391247f, 0.815271f, -0.426832f, + /*v:*/0.460938f, 0.696037f, -1.097818f, /*n:*/0.473006f, 0.176305f, -0.863216f, + /*v:*/0.000000f, 1.156974f, -0.941568f, /*n:*/0.000000f, 0.834223f, -0.551378f, + /*v:*/0.460938f, 0.696037f, -1.097818f, /*n:*/0.473006f, 0.176305f, -0.863216f, + /*v:*/0.000000f, 0.821037f, -1.246256f, /*n:*/0.000000f, 0.365032f, -0.930967f, + /*v:*/-0.453125f, 1.125724f, -0.777506f, /*n:*/-0.391247f, 0.815271f, -0.426832f, + /*v:*/-0.453125f, 1.188224f, -0.465006f, /*n:*/-0.413495f, 0.909635f, 0.039460f, + /*v:*/0.000000f, 1.242912f, -0.472818f, /*n:*/0.000000f, 0.999725f, 0.022584f, + /*v:*/-0.453125f, 1.125724f, -0.777506f, /*n:*/-0.391247f, 0.815271f, -0.426832f, + /*v:*/0.000000f, 1.242912f, -0.472818f, /*n:*/0.000000f, 0.999725f, 0.022584f, + /*v:*/0.000000f, 1.156974f, -0.941568f, /*n:*/0.000000f, 0.834223f, -0.551378f, + /*v:*/0.000000f, 1.242912f, -0.472818f, /*n:*/0.000000f, 0.999725f, 0.022584f, + /*v:*/0.453125f, 1.188224f, -0.465006f, /*n:*/0.413495f, 0.909635f, 0.039460f, + /*v:*/0.453125f, 1.125724f, -0.777506f, /*n:*/0.391247f, 0.815271f, -0.426832f, + /*v:*/0.000000f, 1.242912f, -0.472818f, /*n:*/0.000000f, 0.999725f, 0.022584f, + /*v:*/0.453125f, 1.125724f, -0.777506f, /*n:*/0.391247f, 0.815271f, -0.426832f, + /*v:*/0.000000f, 1.156974f, -0.941568f, /*n:*/0.000000f, 0.834223f, -0.551378f, + /*v:*/-0.453125f, 1.188224f, -0.465006f, /*n:*/-0.413495f, 0.909635f, 0.039460f, + /*v:*/-0.453125f, 1.110099f, -0.160318f, /*n:*/-0.444227f, 0.724418f, 0.527085f, + /*v:*/0.000000f, 1.242912f, -0.472818f, /*n:*/0.000000f, 0.999725f, 0.022584f, + /*v:*/-0.453125f, 1.110099f, -0.160318f, /*n:*/-0.444227f, 0.724418f, 0.527085f, + /*v:*/0.000000f, 1.156974f, -0.105631f, /*n:*/0.000000f, 0.830622f, 0.556810f, + /*v:*/0.000000f, 1.242912f, -0.472818f, /*n:*/0.000000f, 0.999725f, 0.022584f, + /*v:*/0.000000f, 1.156974f, -0.105631f, /*n:*/0.000000f, 0.830622f, 0.556810f, + /*v:*/0.453125f, 1.110099f, -0.160318f, /*n:*/0.444227f, 0.724418f, 0.527085f, + /*v:*/0.000000f, 1.242912f, -0.472818f, /*n:*/0.000000f, 0.999725f, 0.022584f, + /*v:*/0.453125f, 1.110099f, -0.160318f, /*n:*/0.444227f, 0.724418f, 0.527085f, + /*v:*/0.453125f, 1.188224f, -0.465006f, /*n:*/0.413495f, 0.909635f, 0.039460f, + /*v:*/0.000000f, 1.242912f, -0.472818f, /*n:*/0.000000f, 0.999725f, 0.022584f, + /*v:*/-0.335938f, 0.313224f, -1.058756f, /*n:*/-0.445479f, -0.358348f, -0.820399f, + /*v:*/-0.460938f, 0.696037f, -1.097818f, /*n:*/-0.473006f, 0.176305f, -0.863216f, + /*v:*/0.000000f, 0.328849f, -1.222818f, /*n:*/0.000000f, -0.304941f, -0.952361f, + /*v:*/-0.460938f, 0.696037f, -1.097818f, /*n:*/-0.473006f, 0.176305f, -0.863216f, + /*v:*/0.000000f, 0.821037f, -1.246256f, /*n:*/0.000000f, 0.365032f, -0.930967f, + /*v:*/0.000000f, 0.328849f, -1.222818f, /*n:*/0.000000f, -0.304941f, -0.952361f, + /*v:*/0.000000f, 0.821037f, -1.246256f, /*n:*/0.000000f, 0.365032f, -0.930967f, + /*v:*/0.460938f, 0.696037f, -1.097818f, /*n:*/0.473006f, 0.176305f, -0.863216f, + /*v:*/0.000000f, 0.328849f, -1.222818f, /*n:*/0.000000f, -0.304941f, -0.952361f, + /*v:*/0.460938f, 0.696037f, -1.097818f, /*n:*/0.473006f, 0.176305f, -0.863216f, + /*v:*/0.335938f, 0.313224f, -1.058756f, /*n:*/0.445479f, -0.358348f, -0.820399f, + /*v:*/0.000000f, 0.328849f, -1.222818f, /*n:*/0.000000f, -0.304941f, -0.952361f, + /*v:*/-0.734375f, 0.211662f, -0.324381f, /*n:*/-0.721030f, -0.689810f, 0.065065f, + /*v:*/-0.601562f, 0.258537f, 0.019369f, /*n:*/-0.544328f, -0.837153f, -0.053316f, + /*v:*/-0.773438f, 0.422599f, -0.019693f, /*n:*/-0.930204f, -0.306192f, -0.202338f, + /*v:*/-0.734375f, 0.211662f, -0.324381f, /*n:*/-0.721030f, -0.689810f, 0.065065f, + /*v:*/-0.773438f, 0.422599f, -0.019693f, /*n:*/-0.930204f, -0.306192f, -0.202338f, + /*v:*/-0.851562f, 0.492912f, -0.340006f, /*n:*/-0.985015f, -0.160466f, 0.063051f, + /*v:*/0.773438f, 0.422599f, -0.019693f, /*n:*/0.930204f, -0.306192f, -0.202338f, + /*v:*/0.601562f, 0.258537f, 0.019369f, /*n:*/0.544328f, -0.837153f, -0.053316f, + /*v:*/0.734375f, 0.211662f, -0.324381f, /*n:*/0.721030f, -0.689810f, 0.065065f, + /*v:*/0.773438f, 0.422599f, -0.019693f, /*n:*/0.930204f, -0.306192f, -0.202338f, + /*v:*/0.734375f, 0.211662f, -0.324381f, /*n:*/0.721030f, -0.689810f, 0.065065f, + /*v:*/0.851562f, 0.492912f, -0.340006f, /*n:*/0.985015f, -0.160466f, 0.063051f, + /*v:*/-0.210938f, -0.132088f, -0.230631f, /*n:*/-0.572680f, -0.819666f, 0.011994f, + /*v:*/-0.179688f, -0.155526f, -0.136881f, /*n:*/-0.689322f, -0.668691f, -0.278603f, + /*v:*/-0.218750f, -0.022713f, 0.034994f, /*n:*/-0.978698f, -0.195837f, 0.061495f, + /*v:*/-0.179688f, -0.155526f, -0.136881f, /*n:*/-0.689322f, -0.668691f, -0.278603f, + /*v:*/-0.234375f, -0.093026f, 0.011557f, /*n:*/-0.895657f, 0.257729f, -0.362407f, + /*v:*/-0.218750f, -0.022713f, 0.034994f, /*n:*/-0.978698f, -0.195837f, 0.061495f, + /*v:*/0.234375f, -0.093026f, 0.011557f, /*n:*/0.895657f, 0.257729f, -0.362407f, + /*v:*/0.179688f, -0.155526f, -0.136881f, /*n:*/0.689322f, -0.668691f, -0.278603f, + /*v:*/0.218750f, -0.022713f, 0.034994f, /*n:*/0.978698f, -0.195837f, 0.061495f, + /*v:*/0.179688f, -0.155526f, -0.136881f, /*n:*/0.689322f, -0.668691f, -0.278603f, + /*v:*/0.210938f, -0.132088f, -0.230631f, /*n:*/0.572680f, -0.819666f, 0.011994f, + /*v:*/0.218750f, -0.022713f, 0.034994f, /*n:*/0.978698f, -0.195837f, 0.061495f, + /*v:*/-0.179688f, -0.155526f, -0.136881f, /*n:*/-0.689322f, -0.668691f, -0.278603f, + /*v:*/-0.210938f, -0.132088f, -0.230631f, /*n:*/-0.572680f, -0.819666f, 0.011994f, + /*v:*/0.000000f, -0.202401f, -0.207193f, /*n:*/0.000000f, -0.983032f, -0.183294f, + /*v:*/-0.179688f, -0.155526f, -0.136881f, /*n:*/-0.689322f, -0.668691f, -0.278603f, + /*v:*/0.000000f, -0.202401f, -0.207193f, /*n:*/0.000000f, -0.983032f, -0.183294f, + /*v:*/0.000000f, -0.225838f, -0.113443f, /*n:*/0.000000f, -0.771081f, -0.636708f, + /*v:*/0.000000f, -0.202401f, -0.207193f, /*n:*/0.000000f, -0.983032f, -0.183294f, + /*v:*/0.210938f, -0.132088f, -0.230631f, /*n:*/0.572680f, -0.819666f, 0.011994f, + /*v:*/0.179688f, -0.155526f, -0.136881f, /*n:*/0.689322f, -0.668691f, -0.278603f, + /*v:*/0.000000f, -0.202401f, -0.207193f, /*n:*/0.000000f, -0.983032f, -0.183294f, + /*v:*/0.179688f, -0.155526f, -0.136881f, /*n:*/0.689322f, -0.668691f, -0.278603f, + /*v:*/0.000000f, -0.225838f, -0.113443f, /*n:*/0.000000f, -0.771081f, -0.636708f, + /*v:*/-0.210938f, -0.132088f, -0.230631f, /*n:*/-0.572680f, -0.819666f, 0.011994f, + /*v:*/-0.296875f, -0.053963f, -0.660318f, /*n:*/-0.507065f, -0.837581f, -0.203314f, + /*v:*/0.000000f, -0.124276f, -0.746255f, /*n:*/0.000000f, -0.941649f, -0.336528f, + /*v:*/-0.210938f, -0.132088f, -0.230631f, /*n:*/-0.572680f, -0.819666f, 0.011994f, + /*v:*/0.000000f, -0.124276f, -0.746255f, /*n:*/0.000000f, -0.941649f, -0.336528f, + /*v:*/0.000000f, -0.202401f, -0.207193f, /*n:*/0.000000f, -0.983032f, -0.183294f, + /*v:*/0.000000f, -0.124276f, -0.746255f, /*n:*/0.000000f, -0.941649f, -0.336528f, + /*v:*/0.296875f, -0.053963f, -0.660318f, /*n:*/0.507065f, -0.837581f, -0.203314f, + /*v:*/0.210938f, -0.132088f, -0.230631f, /*n:*/0.572680f, -0.819666f, 0.011994f, + /*v:*/0.000000f, -0.124276f, -0.746255f, /*n:*/0.000000f, -0.941649f, -0.336528f, + /*v:*/0.210938f, -0.132088f, -0.230631f, /*n:*/0.572680f, -0.819666f, 0.011994f, + /*v:*/0.000000f, -0.202401f, -0.207193f, /*n:*/0.000000f, -0.983032f, -0.183294f, + /*v:*/-0.296875f, -0.053963f, -0.660318f, /*n:*/-0.507065f, -0.837581f, -0.203314f, + /*v:*/-0.343750f, 0.110099f, -0.933756f, /*n:*/-0.522263f, -0.653615f, -0.547685f, + /*v:*/0.000000f, -0.124276f, -0.746255f, /*n:*/0.000000f, -0.941649f, -0.336528f, + /*v:*/-0.343750f, 0.110099f, -0.933756f, /*n:*/-0.522263f, -0.653615f, -0.547685f, + /*v:*/0.000000f, 0.063224f, -1.066568f, /*n:*/0.000000f, -0.691275f, -0.722587f, + /*v:*/0.000000f, -0.124276f, -0.746255f, /*n:*/0.000000f, -0.941649f, -0.336528f, + /*v:*/0.000000f, 0.063224f, -1.066568f, /*n:*/0.000000f, -0.691275f, -0.722587f, + /*v:*/0.343750f, 0.110099f, -0.933756f, /*n:*/0.522263f, -0.653615f, -0.547685f, + /*v:*/0.000000f, -0.124276f, -0.746255f, /*n:*/0.000000f, -0.941649f, -0.336528f, + /*v:*/0.343750f, 0.110099f, -0.933756f, /*n:*/0.522263f, -0.653615f, -0.547685f, + /*v:*/0.296875f, -0.053963f, -0.660318f, /*n:*/0.507065f, -0.837581f, -0.203314f, + /*v:*/0.000000f, -0.124276f, -0.746255f, /*n:*/0.000000f, -0.941649f, -0.336528f, + /*v:*/-0.343750f, 0.110099f, -0.933756f, /*n:*/-0.522263f, -0.653615f, -0.547685f, + /*v:*/-0.335938f, 0.313224f, -1.058756f, /*n:*/-0.445479f, -0.358348f, -0.820399f, + /*v:*/0.000000f, 0.063224f, -1.066568f, /*n:*/0.000000f, -0.691275f, -0.722587f, + /*v:*/-0.335938f, 0.313224f, -1.058756f, /*n:*/-0.445479f, -0.358348f, -0.820399f, + /*v:*/0.000000f, 0.328849f, -1.222818f, /*n:*/0.000000f, -0.304941f, -0.952361f, + /*v:*/0.000000f, 0.063224f, -1.066568f, /*n:*/0.000000f, -0.691275f, -0.722587f, + /*v:*/0.000000f, 0.328849f, -1.222818f, /*n:*/0.000000f, -0.304941f, -0.952361f, + /*v:*/0.335938f, 0.313224f, -1.058756f, /*n:*/0.445479f, -0.358348f, -0.820399f, + /*v:*/0.000000f, 0.063224f, -1.066568f, /*n:*/0.000000f, -0.691275f, -0.722587f, + /*v:*/0.335938f, 0.313224f, -1.058756f, /*n:*/0.445479f, -0.358348f, -0.820399f, + /*v:*/0.343750f, 0.110099f, -0.933756f, /*n:*/0.522263f, -0.653615f, -0.547685f, + /*v:*/0.000000f, 0.063224f, -1.066568f, /*n:*/0.000000f, -0.691275f, -0.722587f, + /*v:*/-0.437500f, 0.164787f, 0.074057f, /*n:*/-0.471969f, -0.863674f, -0.176794f, + /*v:*/-0.203125f, 0.086662f, 0.105307f, /*n:*/-0.785699f, -0.571459f, 0.236732f, + /*v:*/-0.437500f, 0.117912f, 0.136557f, /*n:*/-0.348827f, -0.937132f, -0.008148f, + /*v:*/-0.203125f, 0.086662f, 0.105307f, /*n:*/-0.785699f, -0.571459f, 0.236732f, + /*v:*/-0.203125f, 0.071037f, 0.167807f, /*n:*/-0.891537f, -0.330668f, 0.309458f, + /*v:*/-0.437500f, 0.117912f, 0.136557f, /*n:*/-0.348827f, -0.937132f, -0.008148f, + /*v:*/0.203125f, 0.071037f, 0.167807f, /*n:*/0.891537f, -0.330668f, 0.309458f, + /*v:*/0.203125f, 0.086662f, 0.105307f, /*n:*/0.785699f, -0.571459f, 0.236732f, + /*v:*/0.437500f, 0.117912f, 0.136557f, /*n:*/0.348827f, -0.937132f, -0.008148f, + /*v:*/0.203125f, 0.086662f, 0.105307f, /*n:*/0.785699f, -0.571459f, 0.236732f, + /*v:*/0.437500f, 0.164787f, 0.074057f, /*n:*/0.471969f, -0.863674f, -0.176794f, + /*v:*/0.437500f, 0.117912f, 0.136557f, /*n:*/0.348827f, -0.937132f, -0.008148f, + /*v:*/-0.210938f, 0.031974f, 0.074057f, /*n:*/-0.887173f, -0.157720f, 0.433607f, + /*v:*/-0.234375f, 0.008537f, 0.159994f, /*n:*/-0.930601f, 0.343516f, 0.126347f, + /*v:*/-0.203125f, 0.086662f, 0.105307f, /*n:*/-0.785699f, -0.571459f, 0.236732f, + /*v:*/-0.234375f, 0.008537f, 0.159994f, /*n:*/-0.930601f, 0.343516f, 0.126347f, + /*v:*/-0.203125f, 0.071037f, 0.167807f, /*n:*/-0.891537f, -0.330668f, 0.309458f, + /*v:*/-0.203125f, 0.086662f, 0.105307f, /*n:*/-0.785699f, -0.571459f, 0.236732f, + /*v:*/0.203125f, 0.071037f, 0.167807f, /*n:*/0.891537f, -0.330668f, 0.309458f, + /*v:*/0.234375f, 0.008537f, 0.159994f, /*n:*/0.930601f, 0.343516f, 0.126347f, + /*v:*/0.203125f, 0.086662f, 0.105307f, /*n:*/0.785699f, -0.571459f, 0.236732f, + /*v:*/0.234375f, 0.008537f, 0.159994f, /*n:*/0.930601f, 0.343516f, 0.126347f, + /*v:*/0.210938f, 0.031974f, 0.074057f, /*n:*/0.887173f, -0.157720f, 0.433607f, + /*v:*/0.203125f, 0.086662f, 0.105307f, /*n:*/0.785699f, -0.571459f, 0.236732f, + /*v:*/-0.218750f, -0.022713f, 0.034994f, /*n:*/-0.978698f, -0.195837f, 0.061495f, + /*v:*/-0.234375f, -0.093026f, 0.011557f, /*n:*/-0.895657f, 0.257729f, -0.362407f, + /*v:*/-0.257812f, -0.053963f, 0.159994f, /*n:*/-0.927763f, 0.353008f, 0.120884f, + /*v:*/-0.234375f, -0.093026f, 0.011557f, /*n:*/-0.895657f, 0.257729f, -0.362407f, + /*v:*/-0.312500f, -0.178963f, 0.175619f, /*n:*/-0.955718f, 0.249184f, 0.156468f, + /*v:*/-0.257812f, -0.053963f, 0.159994f, /*n:*/-0.927763f, 0.353008f, 0.120884f, + /*v:*/0.312500f, -0.178963f, 0.175619f, /*n:*/0.955718f, 0.249184f, 0.156468f, + /*v:*/0.234375f, -0.093026f, 0.011557f, /*n:*/0.895657f, 0.257729f, -0.362407f, + /*v:*/0.257812f, -0.053963f, 0.159994f, /*n:*/0.927763f, 0.353008f, 0.120884f, + /*v:*/0.234375f, -0.093026f, 0.011557f, /*n:*/0.895657f, 0.257729f, -0.362407f, + /*v:*/0.218750f, -0.022713f, 0.034994f, /*n:*/0.978698f, -0.195837f, 0.061495f, + /*v:*/0.257812f, -0.053963f, 0.159994f, /*n:*/0.927763f, 0.353008f, 0.120884f, + /*v:*/-0.210938f, 0.031974f, 0.074057f, /*n:*/-0.887173f, -0.157720f, 0.433607f, + /*v:*/-0.218750f, -0.022713f, 0.034994f, /*n:*/-0.978698f, -0.195837f, 0.061495f, + /*v:*/-0.234375f, 0.008537f, 0.159994f, /*n:*/-0.930601f, 0.343516f, 0.126347f, + /*v:*/-0.218750f, -0.022713f, 0.034994f, /*n:*/-0.978698f, -0.195837f, 0.061495f, + /*v:*/-0.257812f, -0.053963f, 0.159994f, /*n:*/-0.927763f, 0.353008f, 0.120884f, + /*v:*/-0.234375f, 0.008537f, 0.159994f, /*n:*/-0.930601f, 0.343516f, 0.126347f, + /*v:*/0.257812f, -0.053963f, 0.159994f, /*n:*/0.927763f, 0.353008f, 0.120884f, + /*v:*/0.218750f, -0.022713f, 0.034994f, /*n:*/0.978698f, -0.195837f, 0.061495f, + /*v:*/0.234375f, 0.008537f, 0.159994f, /*n:*/0.930601f, 0.343516f, 0.126347f, + /*v:*/0.218750f, -0.022713f, 0.034994f, /*n:*/0.978698f, -0.195837f, 0.061495f, + /*v:*/0.210938f, 0.031974f, 0.074057f, /*n:*/0.887173f, -0.157720f, 0.433607f, + /*v:*/0.234375f, 0.008537f, 0.159994f, /*n:*/0.930601f, 0.343516f, 0.126347f, + /*v:*/-0.250000f, -0.241463f, -0.004068f, /*n:*/-0.779839f, -0.010498f, -0.625843f, + /*v:*/-0.351562f, -0.436776f, 0.175619f, /*n:*/-0.972808f, 0.100314f, 0.208716f, + /*v:*/-0.312500f, -0.178963f, 0.175619f, /*n:*/-0.955718f, 0.249184f, 0.156468f, + /*v:*/-0.250000f, -0.241463f, -0.004068f, /*n:*/-0.779839f, -0.010498f, -0.625843f, + /*v:*/-0.312500f, -0.178963f, 0.175619f, /*n:*/-0.955718f, 0.249184f, 0.156468f, + /*v:*/-0.234375f, -0.093026f, 0.011557f, /*n:*/-0.895657f, 0.257729f, -0.362407f, + /*v:*/0.312500f, -0.178963f, 0.175619f, /*n:*/0.955718f, 0.249184f, 0.156468f, + /*v:*/0.351562f, -0.436776f, 0.175619f, /*n:*/0.972808f, 0.100314f, 0.208716f, + /*v:*/0.250000f, -0.241463f, -0.004068f, /*n:*/0.779839f, -0.010498f, -0.625843f, + /*v:*/0.312500f, -0.178963f, 0.175619f, /*n:*/0.955718f, 0.249184f, 0.156468f, + /*v:*/0.250000f, -0.241463f, -0.004068f, /*n:*/0.779839f, -0.010498f, -0.625843f, + /*v:*/0.234375f, -0.093026f, 0.011557f, /*n:*/0.895657f, 0.257729f, -0.362407f, + /*v:*/-0.125000f, -0.280526f, -0.035318f, /*n:*/-0.277078f, -0.314737f, -0.907804f, + /*v:*/-0.250000f, -0.241463f, -0.004068f, /*n:*/-0.779839f, -0.010498f, -0.625843f, + /*v:*/-0.179688f, -0.155526f, -0.136881f, /*n:*/-0.689322f, -0.668691f, -0.278603f, + /*v:*/-0.250000f, -0.241463f, -0.004068f, /*n:*/-0.779839f, -0.010498f, -0.625843f, + /*v:*/-0.234375f, -0.093026f, 0.011557f, /*n:*/-0.895657f, 0.257729f, -0.362407f, + /*v:*/-0.179688f, -0.155526f, -0.136881f, /*n:*/-0.689322f, -0.668691f, -0.278603f, + /*v:*/0.234375f, -0.093026f, 0.011557f, /*n:*/0.895657f, 0.257729f, -0.362407f, + /*v:*/0.250000f, -0.241463f, -0.004068f, /*n:*/0.779839f, -0.010498f, -0.625843f, + /*v:*/0.179688f, -0.155526f, -0.136881f, /*n:*/0.689322f, -0.668691f, -0.278603f, + /*v:*/0.250000f, -0.241463f, -0.004068f, /*n:*/0.779839f, -0.010498f, -0.625843f, + /*v:*/0.125000f, -0.280526f, -0.035318f, /*n:*/0.277078f, -0.314737f, -0.907804f, + /*v:*/0.179688f, -0.155526f, -0.136881f, /*n:*/0.689322f, -0.668691f, -0.278603f, + /*v:*/-0.164062f, -0.686776f, 0.042807f, /*n:*/-0.067476f, -0.783166f, -0.618122f, + /*v:*/-0.328125f, -0.655526f, 0.003745f, /*n:*/-0.555071f, -0.476211f, -0.681967f, + /*v:*/-0.140625f, -0.499276f, -0.027505f, /*n:*/-0.151372f, -0.150975f, -0.976867f, + /*v:*/-0.328125f, -0.655526f, 0.003745f, /*n:*/-0.555071f, -0.476211f, -0.681967f, + /*v:*/-0.289062f, -0.452401f, -0.011880f, /*n:*/-0.620380f, 0.083468f, -0.779809f, + /*v:*/-0.140625f, -0.499276f, -0.027505f, /*n:*/-0.151372f, -0.150975f, -0.976867f, + /*v:*/0.289062f, -0.452401f, -0.011880f, /*n:*/0.620380f, 0.083468f, -0.779809f, + /*v:*/0.328125f, -0.655526f, 0.003745f, /*n:*/0.555071f, -0.476211f, -0.681967f, + /*v:*/0.140625f, -0.499276f, -0.027505f, /*n:*/0.151372f, -0.150975f, -0.976867f, + /*v:*/0.328125f, -0.655526f, 0.003745f, /*n:*/0.555071f, -0.476211f, -0.681967f, + /*v:*/0.164062f, -0.686776f, 0.042807f, /*n:*/0.067476f, -0.783166f, -0.618122f, + /*v:*/0.140625f, -0.499276f, -0.027505f, /*n:*/0.151372f, -0.150975f, -0.976867f, + /*v:*/-0.125000f, -0.280526f, -0.035318f, /*n:*/-0.277078f, -0.314737f, -0.907804f, + /*v:*/-0.140625f, -0.499276f, -0.027505f, /*n:*/-0.151372f, -0.150975f, -0.976867f, + /*v:*/-0.289062f, -0.452401f, -0.011880f, /*n:*/-0.620380f, 0.083468f, -0.779809f, + /*v:*/-0.125000f, -0.280526f, -0.035318f, /*n:*/-0.277078f, -0.314737f, -0.907804f, + /*v:*/-0.289062f, -0.452401f, -0.011880f, /*n:*/-0.620380f, 0.083468f, -0.779809f, + /*v:*/-0.250000f, -0.241463f, -0.004068f, /*n:*/-0.779839f, -0.010498f, -0.625843f, + /*v:*/0.289062f, -0.452401f, -0.011880f, /*n:*/0.620380f, 0.083468f, -0.779809f, + /*v:*/0.140625f, -0.499276f, -0.027505f, /*n:*/0.151372f, -0.150975f, -0.976867f, + /*v:*/0.125000f, -0.280526f, -0.035318f, /*n:*/0.277078f, -0.314737f, -0.907804f, + /*v:*/0.289062f, -0.452401f, -0.011880f, /*n:*/0.620380f, 0.083468f, -0.779809f, + /*v:*/0.125000f, -0.280526f, -0.035318f, /*n:*/0.277078f, -0.314737f, -0.907804f, + /*v:*/0.250000f, -0.241463f, -0.004068f, /*n:*/0.779839f, -0.010498f, -0.625843f, + /*v:*/-0.289062f, -0.452401f, -0.011880f, /*n:*/-0.620380f, 0.083468f, -0.779809f, + /*v:*/-0.367188f, -0.632088f, 0.136557f, /*n:*/-0.945708f, -0.257851f, 0.197699f, + /*v:*/-0.351562f, -0.436776f, 0.175619f, /*n:*/-0.972808f, 0.100314f, 0.208716f, + /*v:*/-0.289062f, -0.452401f, -0.011880f, /*n:*/-0.620380f, 0.083468f, -0.779809f, + /*v:*/-0.351562f, -0.436776f, 0.175619f, /*n:*/-0.972808f, 0.100314f, 0.208716f, + /*v:*/-0.250000f, -0.241463f, -0.004068f, /*n:*/-0.779839f, -0.010498f, -0.625843f, + /*v:*/0.351562f, -0.436776f, 0.175619f, /*n:*/0.972808f, 0.100314f, 0.208716f, + /*v:*/0.367188f, -0.632088f, 0.136557f, /*n:*/0.945708f, -0.257851f, 0.197699f, + /*v:*/0.289062f, -0.452401f, -0.011880f, /*n:*/0.620380f, 0.083468f, -0.779809f, + /*v:*/0.351562f, -0.436776f, 0.175619f, /*n:*/0.972808f, 0.100314f, 0.208716f, + /*v:*/0.289062f, -0.452401f, -0.011880f, /*n:*/0.620380f, 0.083468f, -0.779809f, + /*v:*/0.250000f, -0.241463f, -0.004068f, /*n:*/0.779839f, -0.010498f, -0.625843f, + /*v:*/-0.328125f, -0.655526f, 0.003745f, /*n:*/-0.555071f, -0.476211f, -0.681967f, + /*v:*/-0.328125f, -0.686776f, 0.128745f, /*n:*/-0.526658f, -0.834651f, 0.161107f, + /*v:*/-0.367188f, -0.632088f, 0.136557f, /*n:*/-0.945708f, -0.257851f, 0.197699f, + /*v:*/-0.328125f, -0.655526f, 0.003745f, /*n:*/-0.555071f, -0.476211f, -0.681967f, + /*v:*/-0.367188f, -0.632088f, 0.136557f, /*n:*/-0.945708f, -0.257851f, 0.197699f, + /*v:*/-0.289062f, -0.452401f, -0.011880f, /*n:*/-0.620380f, 0.083468f, -0.779809f, + /*v:*/0.367188f, -0.632088f, 0.136557f, /*n:*/0.945708f, -0.257851f, 0.197699f, + /*v:*/0.328125f, -0.686776f, 0.128745f, /*n:*/0.526658f, -0.834651f, 0.161107f, + /*v:*/0.328125f, -0.655526f, 0.003745f, /*n:*/0.555071f, -0.476211f, -0.681967f, + /*v:*/0.367188f, -0.632088f, 0.136557f, /*n:*/0.945708f, -0.257851f, 0.197699f, + /*v:*/0.328125f, -0.655526f, 0.003745f, /*n:*/0.555071f, -0.476211f, -0.681967f, + /*v:*/0.289062f, -0.452401f, -0.011880f, /*n:*/0.620380f, 0.083468f, -0.779809f, + /*v:*/-0.164062f, -0.686776f, 0.042807f, /*n:*/-0.067476f, -0.783166f, -0.618122f, + /*v:*/-0.179688f, -0.710213f, 0.159995f, /*n:*/-0.159551f, -0.975249f, 0.152898f, + /*v:*/-0.328125f, -0.686776f, 0.128745f, /*n:*/-0.526658f, -0.834651f, 0.161107f, + /*v:*/-0.164062f, -0.686776f, 0.042807f, /*n:*/-0.067476f, -0.783166f, -0.618122f, + /*v:*/-0.328125f, -0.686776f, 0.128745f, /*n:*/-0.526658f, -0.834651f, 0.161107f, + /*v:*/-0.328125f, -0.655526f, 0.003745f, /*n:*/-0.555071f, -0.476211f, -0.681967f, + /*v:*/0.328125f, -0.686776f, 0.128745f, /*n:*/0.526658f, -0.834651f, 0.161107f, + /*v:*/0.179688f, -0.710213f, 0.159995f, /*n:*/0.159551f, -0.975249f, 0.152898f, + /*v:*/0.164062f, -0.686776f, 0.042807f, /*n:*/0.067476f, -0.783166f, -0.618122f, + /*v:*/0.328125f, -0.686776f, 0.128745f, /*n:*/0.526658f, -0.834651f, 0.161107f, + /*v:*/0.164062f, -0.686776f, 0.042807f, /*n:*/0.067476f, -0.783166f, -0.618122f, + /*v:*/0.328125f, -0.655526f, 0.003745f, /*n:*/0.555071f, -0.476211f, -0.681967f, + /*v:*/0.000000f, -0.718026f, 0.066245f, /*n:*/0.000000f, -0.881802f, -0.471603f, + /*v:*/0.000000f, -0.725838f, 0.183432f, /*n:*/0.000000f, -0.967650f, 0.252266f, + /*v:*/-0.179688f, -0.710213f, 0.159995f, /*n:*/-0.159551f, -0.975249f, 0.152898f, + /*v:*/0.000000f, -0.718026f, 0.066245f, /*n:*/0.000000f, -0.881802f, -0.471603f, + /*v:*/-0.179688f, -0.710213f, 0.159995f, /*n:*/-0.159551f, -0.975249f, 0.152898f, + /*v:*/-0.164062f, -0.686776f, 0.042807f, /*n:*/-0.067476f, -0.783166f, -0.618122f, + /*v:*/0.179688f, -0.710213f, 0.159995f, /*n:*/0.159551f, -0.975249f, 0.152898f, + /*v:*/0.000000f, -0.725838f, 0.183432f, /*n:*/0.000000f, -0.967650f, 0.252266f, + /*v:*/0.000000f, -0.718026f, 0.066245f, /*n:*/0.000000f, -0.881802f, -0.471603f, + /*v:*/0.179688f, -0.710213f, 0.159995f, /*n:*/0.159551f, -0.975249f, 0.152898f, + /*v:*/0.000000f, -0.718026f, 0.066245f, /*n:*/0.000000f, -0.881802f, -0.471603f, + /*v:*/0.164062f, -0.686776f, 0.042807f, /*n:*/0.067476f, -0.783166f, -0.618122f, + /*v:*/-0.140625f, -0.499276f, -0.027505f, /*n:*/-0.151372f, -0.150975f, -0.976867f, + /*v:*/0.000000f, -0.546151f, -0.050943f, /*n:*/0.000000f, -0.297342f, -0.954741f, + /*v:*/-0.164062f, -0.686776f, 0.042807f, /*n:*/-0.067476f, -0.783166f, -0.618122f, + /*v:*/0.000000f, -0.546151f, -0.050943f, /*n:*/0.000000f, -0.297342f, -0.954741f, + /*v:*/0.000000f, -0.718026f, 0.066245f, /*n:*/0.000000f, -0.881802f, -0.471603f, + /*v:*/-0.164062f, -0.686776f, 0.042807f, /*n:*/-0.067476f, -0.783166f, -0.618122f, + /*v:*/0.000000f, -0.718026f, 0.066245f, /*n:*/0.000000f, -0.881802f, -0.471603f, + /*v:*/0.000000f, -0.546151f, -0.050943f, /*n:*/0.000000f, -0.297342f, -0.954741f, + /*v:*/0.164062f, -0.686776f, 0.042807f, /*n:*/0.067476f, -0.783166f, -0.618122f, + /*v:*/0.000000f, -0.546151f, -0.050943f, /*n:*/0.000000f, -0.297342f, -0.954741f, + /*v:*/0.140625f, -0.499276f, -0.027505f, /*n:*/0.151372f, -0.150975f, -0.976867f, + /*v:*/0.164062f, -0.686776f, 0.042807f, /*n:*/0.067476f, -0.783166f, -0.618122f, + /*v:*/-0.125000f, -0.280526f, -0.035318f, /*n:*/-0.277078f, -0.314737f, -0.907804f, + /*v:*/0.000000f, -0.311776f, -0.074381f, /*n:*/0.000000f, -0.213294f, -0.976959f, + /*v:*/-0.140625f, -0.499276f, -0.027505f, /*n:*/-0.151372f, -0.150975f, -0.976867f, + /*v:*/0.000000f, -0.311776f, -0.074381f, /*n:*/0.000000f, -0.213294f, -0.976959f, + /*v:*/0.000000f, -0.546151f, -0.050943f, /*n:*/0.000000f, -0.297342f, -0.954741f, + /*v:*/-0.140625f, -0.499276f, -0.027505f, /*n:*/-0.151372f, -0.150975f, -0.976867f, + /*v:*/0.000000f, -0.546151f, -0.050943f, /*n:*/0.000000f, -0.297342f, -0.954741f, + /*v:*/0.000000f, -0.311776f, -0.074381f, /*n:*/0.000000f, -0.213294f, -0.976959f, + /*v:*/0.140625f, -0.499276f, -0.027505f, /*n:*/0.151372f, -0.150975f, -0.976867f, + /*v:*/0.000000f, -0.311776f, -0.074381f, /*n:*/0.000000f, -0.213294f, -0.976959f, + /*v:*/0.125000f, -0.280526f, -0.035318f, /*n:*/0.277078f, -0.314737f, -0.907804f, + /*v:*/0.140625f, -0.499276f, -0.027505f, /*n:*/0.151372f, -0.150975f, -0.976867f, + /*v:*/-0.179688f, -0.155526f, -0.136881f, /*n:*/-0.689322f, -0.668691f, -0.278603f, + /*v:*/0.000000f, -0.225838f, -0.113443f, /*n:*/0.000000f, -0.771081f, -0.636708f, + /*v:*/-0.125000f, -0.280526f, -0.035318f, /*n:*/-0.277078f, -0.314737f, -0.907804f, + /*v:*/0.000000f, -0.225838f, -0.113443f, /*n:*/0.000000f, -0.771081f, -0.636708f, + /*v:*/0.000000f, -0.311776f, -0.074381f, /*n:*/0.000000f, -0.213294f, -0.976959f, + /*v:*/-0.125000f, -0.280526f, -0.035318f, /*n:*/-0.277078f, -0.314737f, -0.907804f, + /*v:*/0.000000f, -0.311776f, -0.074381f, /*n:*/0.000000f, -0.213294f, -0.976959f, + /*v:*/0.000000f, -0.225838f, -0.113443f, /*n:*/0.000000f, -0.771081f, -0.636708f, + /*v:*/0.125000f, -0.280526f, -0.035318f, /*n:*/0.277078f, -0.314737f, -0.907804f, + /*v:*/0.000000f, -0.225838f, -0.113443f, /*n:*/0.000000f, -0.771081f, -0.636708f, + /*v:*/0.179688f, -0.155526f, -0.136881f, /*n:*/0.689322f, -0.668691f, -0.278603f, + /*v:*/0.125000f, -0.280526f, -0.035318f, /*n:*/0.277078f, -0.314737f, -0.907804f, + /*v:*/-0.437500f, 0.164787f, 0.074057f, /*n:*/-0.471969f, -0.863674f, -0.176794f, + /*v:*/-0.437500f, 0.117912f, 0.136557f, /*n:*/-0.348827f, -0.937132f, -0.008148f, + /*v:*/-0.632812f, 0.219474f, 0.144369f, /*n:*/-0.587481f, -0.784875f, 0.196966f, + /*v:*/-0.437500f, 0.164787f, 0.074057f, /*n:*/-0.471969f, -0.863674f, -0.176794f, + /*v:*/-0.632812f, 0.219474f, 0.144369f, /*n:*/-0.587481f, -0.784875f, 0.196966f, + /*v:*/-0.601562f, 0.258537f, 0.019369f, /*n:*/-0.544328f, -0.837153f, -0.053316f, + /*v:*/0.632812f, 0.219474f, 0.144369f, /*n:*/0.587481f, -0.784875f, 0.196966f, + /*v:*/0.437500f, 0.117912f, 0.136557f, /*n:*/0.348827f, -0.937132f, -0.008148f, + /*v:*/0.437500f, 0.164787f, 0.074057f, /*n:*/0.471969f, -0.863674f, -0.176794f, + /*v:*/0.632812f, 0.219474f, 0.144369f, /*n:*/0.587481f, -0.784875f, 0.196966f, + /*v:*/0.437500f, 0.164787f, 0.074057f, /*n:*/0.471969f, -0.863674f, -0.176794f, + /*v:*/0.601562f, 0.258537f, 0.019369f, /*n:*/0.544328f, -0.837153f, -0.053316f, + /*v:*/-0.601562f, 0.258537f, 0.019369f, /*n:*/-0.544328f, -0.837153f, -0.053316f, + /*v:*/-0.632812f, 0.219474f, 0.144369f, /*n:*/-0.587481f, -0.784875f, 0.196966f, + /*v:*/-0.828125f, 0.406974f, 0.050619f, /*n:*/-0.906980f, -0.400922f, -0.128941f, + /*v:*/-0.601562f, 0.258537f, 0.019369f, /*n:*/-0.544328f, -0.837153f, -0.053316f, + /*v:*/-0.828125f, 0.406974f, 0.050619f, /*n:*/-0.906980f, -0.400922f, -0.128941f, + /*v:*/-0.773438f, 0.422599f, -0.019693f, /*n:*/-0.930204f, -0.306192f, -0.202338f, + /*v:*/0.828125f, 0.406974f, 0.050619f, /*n:*/0.906980f, -0.400922f, -0.128941f, + /*v:*/0.632812f, 0.219474f, 0.144369f, /*n:*/0.587481f, -0.784875f, 0.196966f, + /*v:*/0.601562f, 0.258537f, 0.019369f, /*n:*/0.544328f, -0.837153f, -0.053316f, + /*v:*/0.828125f, 0.406974f, 0.050619f, /*n:*/0.906980f, -0.400922f, -0.128941f, + /*v:*/0.601562f, 0.258537f, 0.019369f, /*n:*/0.544328f, -0.837153f, -0.053316f, + /*v:*/0.773438f, 0.422599f, -0.019693f, /*n:*/0.930204f, -0.306192f, -0.202338f, + /*v:*/-0.773438f, 0.422599f, -0.019693f, /*n:*/-0.930204f, -0.306192f, -0.202338f, + /*v:*/-0.828125f, 0.406974f, 0.050619f, /*n:*/-0.906980f, -0.400922f, -0.128941f, + /*v:*/-0.796875f, 0.664787f, 0.066244f, /*n:*/-0.695700f, 0.581378f, -0.421827f, + /*v:*/-0.828125f, 0.406974f, 0.050619f, /*n:*/-0.906980f, -0.400922f, -0.128941f, + /*v:*/-0.859375f, 0.688224f, 0.199057f, /*n:*/-0.845119f, 0.443403f, 0.298502f, + /*v:*/-0.796875f, 0.664787f, 0.066244f, /*n:*/-0.695700f, 0.581378f, -0.421827f, + /*v:*/0.859375f, 0.688224f, 0.199057f, /*n:*/0.845119f, 0.443403f, 0.298502f, + /*v:*/0.828125f, 0.406974f, 0.050619f, /*n:*/0.906980f, -0.400922f, -0.128941f, + /*v:*/0.796875f, 0.664787f, 0.066244f, /*n:*/0.695700f, 0.581378f, -0.421827f, + /*v:*/0.828125f, 0.406974f, 0.050619f, /*n:*/0.906980f, -0.400922f, -0.128941f, + /*v:*/0.773438f, 0.422599f, -0.019693f, /*n:*/0.930204f, -0.306192f, -0.202338f, + /*v:*/0.796875f, 0.664787f, 0.066244f, /*n:*/0.695700f, 0.581378f, -0.421827f, + /*v:*/-0.796875f, 0.664787f, 0.066244f, /*n:*/-0.695700f, 0.581378f, -0.421827f, + /*v:*/-0.859375f, 0.688224f, 0.199057f, /*n:*/-0.845119f, 0.443403f, 0.298502f, + /*v:*/-0.710938f, 0.742912f, 0.230307f, /*n:*/-0.517045f, 0.829127f, 0.212531f, + /*v:*/-0.796875f, 0.664787f, 0.066244f, /*n:*/-0.695700f, 0.581378f, -0.421827f, + /*v:*/-0.710938f, 0.742912f, 0.230307f, /*n:*/-0.517045f, 0.829127f, 0.212531f, + /*v:*/-0.679688f, 0.711662f, 0.097494f, /*n:*/-0.345531f, 0.912442f, -0.219123f, + /*v:*/0.710938f, 0.742912f, 0.230307f, /*n:*/0.517045f, 0.829127f, 0.212531f, + /*v:*/0.859375f, 0.688224f, 0.199057f, /*n:*/0.845119f, 0.443403f, 0.298502f, + /*v:*/0.796875f, 0.664787f, 0.066244f, /*n:*/0.695700f, 0.581378f, -0.421827f, + /*v:*/0.710938f, 0.742912f, 0.230307f, /*n:*/0.517045f, 0.829127f, 0.212531f, + /*v:*/0.796875f, 0.664787f, 0.066244f, /*n:*/0.695700f, 0.581378f, -0.421827f, + /*v:*/0.679688f, 0.711662f, 0.097494f, /*n:*/0.345531f, 0.912442f, -0.219123f, + /*v:*/-0.679688f, 0.711662f, 0.097494f, /*n:*/-0.345531f, 0.912442f, -0.219123f, + /*v:*/-0.710938f, 0.742912f, 0.230307f, /*n:*/-0.517045f, 0.829127f, 0.212531f, + /*v:*/-0.484375f, 0.813224f, 0.159994f, /*n:*/-0.226691f, 0.874813f, -0.428114f, + /*v:*/-0.710938f, 0.742912f, 0.230307f, /*n:*/-0.517045f, 0.829127f, 0.212531f, + /*v:*/-0.492188f, 0.860099f, 0.292807f, /*n:*/-0.597552f, 0.784722f, 0.164586f, + /*v:*/-0.484375f, 0.813224f, 0.159994f, /*n:*/-0.226691f, 0.874813f, -0.428114f, + /*v:*/0.492188f, 0.860099f, 0.292807f, /*n:*/0.597552f, 0.784722f, 0.164586f, + /*v:*/0.710938f, 0.742912f, 0.230307f, /*n:*/0.517045f, 0.829127f, 0.212531f, + /*v:*/0.484375f, 0.813224f, 0.159994f, /*n:*/0.226691f, 0.874813f, -0.428114f, + /*v:*/0.710938f, 0.742912f, 0.230307f, /*n:*/0.517045f, 0.829127f, 0.212531f, + /*v:*/0.679688f, 0.711662f, 0.097494f, /*n:*/0.345531f, 0.912442f, -0.219123f, + /*v:*/0.484375f, 0.813224f, 0.159994f, /*n:*/0.226691f, 0.874813f, -0.428114f, + /*v:*/-0.484375f, 0.813224f, 0.159994f, /*n:*/-0.226691f, 0.874813f, -0.428114f, + /*v:*/-0.492188f, 0.860099f, 0.292807f, /*n:*/-0.597552f, 0.784722f, 0.164586f, + /*v:*/-0.335938f, 0.946037f, 0.199057f, /*n:*/-0.119297f, 0.646138f, -0.753807f, + /*v:*/-0.492188f, 0.860099f, 0.292807f, /*n:*/-0.597552f, 0.784722f, 0.164586f, + /*v:*/-0.320312f, 1.016349f, 0.339682f, /*n:*/-0.231269f, 0.956999f, 0.175054f, + /*v:*/-0.335938f, 0.946037f, 0.199057f, /*n:*/-0.119297f, 0.646138f, -0.753807f, + /*v:*/0.320312f, 1.016349f, 0.339682f, /*n:*/0.231269f, 0.956999f, 0.175054f, + /*v:*/0.492188f, 0.860099f, 0.292807f, /*n:*/0.597552f, 0.784722f, 0.164586f, + /*v:*/0.335938f, 0.946037f, 0.199057f, /*n:*/0.119297f, 0.646138f, -0.753807f, + /*v:*/0.492188f, 0.860099f, 0.292807f, /*n:*/0.597552f, 0.784722f, 0.164586f, + /*v:*/0.484375f, 0.813224f, 0.159994f, /*n:*/0.226691f, 0.874813f, -0.428114f, + /*v:*/0.335938f, 0.946037f, 0.199057f, /*n:*/0.119297f, 0.646138f, -0.753807f, + /*v:*/-0.335938f, 0.946037f, 0.199057f, /*n:*/-0.119297f, 0.646138f, -0.753807f, + /*v:*/-0.320312f, 1.016349f, 0.339682f, /*n:*/-0.231269f, 0.956999f, 0.175054f, + /*v:*/-0.195312f, 0.922599f, 0.222494f, /*n:*/0.476638f, 0.509445f, -0.716392f, + /*v:*/-0.320312f, 1.016349f, 0.339682f, /*n:*/-0.231269f, 0.956999f, 0.175054f, + /*v:*/-0.156250f, 0.977287f, 0.363119f, /*n:*/0.605060f, 0.768029f, 0.209754f, + /*v:*/-0.195312f, 0.922599f, 0.222494f, /*n:*/0.476638f, 0.509445f, -0.716392f, + /*v:*/0.156250f, 0.977287f, 0.363119f, /*n:*/-0.605060f, 0.768029f, 0.209754f, + /*v:*/0.320312f, 1.016349f, 0.339682f, /*n:*/0.231269f, 0.956999f, 0.175054f, + /*v:*/0.195312f, 0.922599f, 0.222494f, /*n:*/-0.476638f, 0.509445f, -0.716392f, + /*v:*/0.320312f, 1.016349f, 0.339682f, /*n:*/0.231269f, 0.956999f, 0.175054f, + /*v:*/0.335938f, 0.946037f, 0.199057f, /*n:*/0.119297f, 0.646138f, -0.753807f, + /*v:*/0.195312f, 0.922599f, 0.222494f, /*n:*/-0.476638f, 0.509445f, -0.716392f, + /*v:*/-0.195312f, 0.922599f, 0.222494f, /*n:*/0.476638f, 0.509445f, -0.716392f, + /*v:*/-0.156250f, 0.977287f, 0.363119f, /*n:*/0.605060f, 0.768029f, 0.209754f, + /*v:*/-0.062500f, 0.750724f, 0.355307f, /*n:*/0.824183f, 0.546770f, 0.147313f, + /*v:*/-0.195312f, 0.922599f, 0.222494f, /*n:*/0.476638f, 0.509445f, -0.716392f, + /*v:*/-0.062500f, 0.750724f, 0.355307f, /*n:*/0.824183f, 0.546770f, 0.147313f, + /*v:*/-0.109375f, 0.719474f, 0.214682f, /*n:*/0.459304f, 0.862453f, 0.212561f, + /*v:*/0.062500f, 0.750724f, 0.355307f, /*n:*/-0.824183f, 0.546770f, 0.147313f, + /*v:*/0.156250f, 0.977287f, 0.363119f, /*n:*/-0.605060f, 0.768029f, 0.209754f, + /*v:*/0.195312f, 0.922599f, 0.222494f, /*n:*/-0.476638f, 0.509445f, -0.716392f, + /*v:*/0.062500f, 0.750724f, 0.355307f, /*n:*/-0.824183f, 0.546770f, 0.147313f, + /*v:*/0.195312f, 0.922599f, 0.222494f, /*n:*/-0.476638f, 0.509445f, -0.716392f, + /*v:*/0.109375f, 0.719474f, 0.214682f, /*n:*/-0.459304f, 0.862453f, 0.212561f, + /*v:*/-0.109375f, 0.719474f, 0.214682f, /*n:*/0.459304f, 0.862453f, 0.212561f, + /*v:*/-0.062500f, 0.750724f, 0.355307f, /*n:*/0.824183f, 0.546770f, 0.147313f, + /*v:*/0.000000f, 0.688224f, 0.347494f, /*n:*/0.000000f, 0.963591f, 0.267281f, + /*v:*/-0.109375f, 0.719474f, 0.214682f, /*n:*/0.459304f, 0.862453f, 0.212561f, + /*v:*/0.000000f, 0.688224f, 0.347494f, /*n:*/0.000000f, 0.963591f, 0.267281f, + /*v:*/0.000000f, 0.664787f, 0.206869f, /*n:*/0.000000f, 0.859188f, 0.511612f, + /*v:*/0.000000f, 0.688224f, 0.347494f, /*n:*/0.000000f, 0.963591f, 0.267281f, + /*v:*/0.062500f, 0.750724f, 0.355307f, /*n:*/-0.824183f, 0.546770f, 0.147313f, + /*v:*/0.109375f, 0.719474f, 0.214682f, /*n:*/-0.459304f, 0.862453f, 0.212561f, + /*v:*/0.000000f, 0.688224f, 0.347494f, /*n:*/0.000000f, 0.963591f, 0.267281f, + /*v:*/0.109375f, 0.719474f, 0.214682f, /*n:*/-0.459304f, 0.862453f, 0.212561f, + /*v:*/0.000000f, 0.664787f, 0.206869f, /*n:*/0.000000f, 0.859188f, 0.511612f, + /*v:*/-0.203125f, 0.430412f, 0.355307f, /*n:*/-0.688040f, 0.298471f, 0.661397f, + /*v:*/-0.187500f, 0.414787f, 0.378744f, /*n:*/0.010102f, -0.069979f, 0.997467f, + /*v:*/-0.171875f, 0.477287f, 0.386557f, /*n:*/-0.158055f, -0.084231f, 0.983825f, + /*v:*/-0.203125f, 0.430412f, 0.355307f, /*n:*/-0.688040f, 0.298471f, 0.661397f, + /*v:*/-0.171875f, 0.477287f, 0.386557f, /*n:*/-0.158055f, -0.084231f, 0.983825f, + /*v:*/-0.195312f, 0.485099f, 0.355307f, /*n:*/-0.801630f, 0.010987f, 0.597674f, + /*v:*/0.171875f, 0.477287f, 0.386557f, /*n:*/0.158055f, -0.084231f, 0.983825f, + /*v:*/0.187500f, 0.414787f, 0.378744f, /*n:*/-0.010102f, -0.069979f, 0.997467f, + /*v:*/0.203125f, 0.430412f, 0.355307f, /*n:*/0.688040f, 0.298471f, 0.661397f, + /*v:*/0.171875f, 0.477287f, 0.386557f, /*n:*/0.158055f, -0.084231f, 0.983825f, + /*v:*/0.203125f, 0.430412f, 0.355307f, /*n:*/0.688040f, 0.298471f, 0.661397f, + /*v:*/0.195312f, 0.485099f, 0.355307f, /*n:*/0.801630f, 0.010987f, 0.597674f, + /*v:*/-0.195312f, 0.485099f, 0.355307f, /*n:*/-0.801630f, 0.010987f, 0.597674f, + /*v:*/-0.171875f, 0.477287f, 0.386557f, /*n:*/-0.158055f, -0.084231f, 0.983825f, + /*v:*/-0.179688f, 0.555412f, 0.386557f, /*n:*/-0.293405f, -0.060152f, 0.954070f, + /*v:*/-0.195312f, 0.485099f, 0.355307f, /*n:*/-0.801630f, 0.010987f, 0.597674f, + /*v:*/-0.179688f, 0.555412f, 0.386557f, /*n:*/-0.293405f, -0.060152f, 0.954070f, + /*v:*/-0.195312f, 0.555412f, 0.363119f, /*n:*/-0.789361f, -0.203192f, 0.579302f, + /*v:*/0.179688f, 0.555412f, 0.386557f, /*n:*/0.293405f, -0.060152f, 0.954070f, + /*v:*/0.171875f, 0.477287f, 0.386557f, /*n:*/0.158055f, -0.084231f, 0.983825f, + /*v:*/0.195312f, 0.485099f, 0.355307f, /*n:*/0.801630f, 0.010987f, 0.597674f, + /*v:*/0.179688f, 0.555412f, 0.386557f, /*n:*/0.293405f, -0.060152f, 0.954070f, + /*v:*/0.195312f, 0.485099f, 0.355307f, /*n:*/0.801630f, 0.010987f, 0.597674f, + /*v:*/0.195312f, 0.555412f, 0.363119f, /*n:*/0.789361f, -0.203192f, 0.579302f, + /*v:*/-0.195312f, 0.555412f, 0.363119f, /*n:*/-0.789361f, -0.203192f, 0.579302f, + /*v:*/-0.179688f, 0.555412f, 0.386557f, /*n:*/-0.293405f, -0.060152f, 0.954070f, + /*v:*/-0.210938f, 0.633537f, 0.386557f, /*n:*/-0.182958f, -0.102878f, 0.977691f, + /*v:*/-0.195312f, 0.555412f, 0.363119f, /*n:*/-0.789361f, -0.203192f, 0.579302f, + /*v:*/-0.210938f, 0.633537f, 0.386557f, /*n:*/-0.182958f, -0.102878f, 0.977691f, + /*v:*/-0.234375f, 0.617912f, 0.363119f, /*n:*/-0.463424f, -0.394910f, 0.793237f, + /*v:*/0.210938f, 0.633537f, 0.386557f, /*n:*/0.182958f, -0.102878f, 0.977691f, + /*v:*/0.179688f, 0.555412f, 0.386557f, /*n:*/0.293405f, -0.060152f, 0.954070f, + /*v:*/0.195312f, 0.555412f, 0.363119f, /*n:*/0.789361f, -0.203192f, 0.579302f, + /*v:*/0.210938f, 0.633537f, 0.386557f, /*n:*/0.182958f, -0.102878f, 0.977691f, + /*v:*/0.195312f, 0.555412f, 0.363119f, /*n:*/0.789361f, -0.203192f, 0.579302f, + /*v:*/0.234375f, 0.617912f, 0.363119f, /*n:*/0.463424f, -0.394910f, 0.793237f, + /*v:*/-0.242188f, 0.383537f, 0.363119f, /*n:*/-0.432264f, 0.583300f, 0.687643f, + /*v:*/-0.226562f, 0.367912f, 0.386557f, /*n:*/0.031709f, -0.219794f, 0.975005f, + /*v:*/-0.187500f, 0.414787f, 0.378744f, /*n:*/0.010102f, -0.069979f, 0.997467f, + /*v:*/-0.242188f, 0.383537f, 0.363119f, /*n:*/-0.432264f, 0.583300f, 0.687643f, + /*v:*/-0.187500f, 0.414787f, 0.378744f, /*n:*/0.010102f, -0.069979f, 0.997467f, + /*v:*/-0.203125f, 0.430412f, 0.355307f, /*n:*/-0.688040f, 0.298471f, 0.661397f, + /*v:*/0.187500f, 0.414787f, 0.378744f, /*n:*/-0.010102f, -0.069979f, 0.997467f, + /*v:*/0.226562f, 0.367912f, 0.386557f, /*n:*/-0.031709f, -0.219794f, 0.975005f, + /*v:*/0.242188f, 0.383537f, 0.363119f, /*n:*/0.432264f, 0.583300f, 0.687643f, + /*v:*/0.187500f, 0.414787f, 0.378744f, /*n:*/-0.010102f, -0.069979f, 0.997467f, + /*v:*/0.242188f, 0.383537f, 0.363119f, /*n:*/0.432264f, 0.583300f, 0.687643f, + /*v:*/0.203125f, 0.430412f, 0.355307f, /*n:*/0.688040f, 0.298471f, 0.661397f, + /*v:*/-0.375000f, 0.344474f, 0.331869f, /*n:*/-0.143071f, 0.558672f, 0.816919f, + /*v:*/-0.375000f, 0.321037f, 0.347494f, /*n:*/-0.184454f, -0.186316f, 0.964995f, + /*v:*/-0.242188f, 0.383537f, 0.363119f, /*n:*/-0.432264f, 0.583300f, 0.687643f, + /*v:*/-0.375000f, 0.321037f, 0.347494f, /*n:*/-0.184454f, -0.186316f, 0.964995f, + /*v:*/-0.226562f, 0.367912f, 0.386557f, /*n:*/0.031709f, -0.219794f, 0.975005f, + /*v:*/-0.242188f, 0.383537f, 0.363119f, /*n:*/-0.432264f, 0.583300f, 0.687643f, + /*v:*/0.226562f, 0.367912f, 0.386557f, /*n:*/-0.031709f, -0.219794f, 0.975005f, + /*v:*/0.375000f, 0.321037f, 0.347494f, /*n:*/0.184454f, -0.186316f, 0.964995f, + /*v:*/0.242188f, 0.383537f, 0.363119f, /*n:*/0.432264f, 0.583300f, 0.687643f, + /*v:*/0.375000f, 0.321037f, 0.347494f, /*n:*/0.184454f, -0.186316f, 0.964995f, + /*v:*/0.375000f, 0.344474f, 0.331869f, /*n:*/0.143071f, 0.558672f, 0.816919f, + /*v:*/0.242188f, 0.383537f, 0.363119f, /*n:*/0.432264f, 0.583300f, 0.687643f, + /*v:*/-0.460938f, 0.375724f, 0.308432f, /*n:*/0.165288f, 0.609790f, 0.775109f, + /*v:*/-0.476562f, 0.360099f, 0.324057f, /*n:*/-0.298990f, -0.035615f, 0.953581f, + /*v:*/-0.375000f, 0.344474f, 0.331869f, /*n:*/-0.143071f, 0.558672f, 0.816919f, + /*v:*/-0.476562f, 0.360099f, 0.324057f, /*n:*/-0.298990f, -0.035615f, 0.953581f, + /*v:*/-0.375000f, 0.321037f, 0.347494f, /*n:*/-0.184454f, -0.186316f, 0.964995f, + /*v:*/-0.375000f, 0.344474f, 0.331869f, /*n:*/-0.143071f, 0.558672f, 0.816919f, + /*v:*/0.375000f, 0.321037f, 0.347494f, /*n:*/0.184454f, -0.186316f, 0.964995f, + /*v:*/0.476562f, 0.360099f, 0.324057f, /*n:*/0.298990f, -0.035615f, 0.953581f, + /*v:*/0.375000f, 0.344474f, 0.331869f, /*n:*/0.143071f, 0.558672f, 0.816919f, + /*v:*/0.476562f, 0.360099f, 0.324057f, /*n:*/0.298990f, -0.035615f, 0.953581f, + /*v:*/0.460938f, 0.375724f, 0.308432f, /*n:*/-0.165288f, 0.609790f, 0.775109f, + /*v:*/0.375000f, 0.344474f, 0.331869f, /*n:*/0.143071f, 0.558672f, 0.816919f, + /*v:*/-0.546875f, 0.469474f, 0.277182f, /*n:*/0.192145f, 0.191351f, 0.962523f, + /*v:*/-0.578125f, 0.453849f, 0.284994f, /*n:*/-0.294290f, -0.102023f, 0.950224f, + /*v:*/-0.476562f, 0.360099f, 0.324057f, /*n:*/-0.298990f, -0.035615f, 0.953581f, + /*v:*/-0.546875f, 0.469474f, 0.277182f, /*n:*/0.192145f, 0.191351f, 0.962523f, + /*v:*/-0.476562f, 0.360099f, 0.324057f, /*n:*/-0.298990f, -0.035615f, 0.953581f, + /*v:*/-0.460938f, 0.375724f, 0.308432f, /*n:*/0.165288f, 0.609790f, 0.775109f, + /*v:*/0.476562f, 0.360099f, 0.324057f, /*n:*/0.298990f, -0.035615f, 0.953581f, + /*v:*/0.578125f, 0.453849f, 0.284994f, /*n:*/0.294290f, -0.102023f, 0.950224f, + /*v:*/0.546875f, 0.469474f, 0.277182f, /*n:*/-0.192145f, 0.191351f, 0.962523f, + /*v:*/0.476562f, 0.360099f, 0.324057f, /*n:*/0.298990f, -0.035615f, 0.953581f, + /*v:*/0.546875f, 0.469474f, 0.277182f, /*n:*/-0.192145f, 0.191351f, 0.962523f, + /*v:*/0.460938f, 0.375724f, 0.308432f, /*n:*/-0.165288f, 0.609790f, 0.775109f, + /*v:*/-0.554688f, 0.539787f, 0.277182f, /*n:*/0.422926f, -0.107761f, 0.899716f, + /*v:*/-0.585938f, 0.547599f, 0.292807f, /*n:*/-0.177587f, -0.060762f, 0.982208f, + /*v:*/-0.546875f, 0.469474f, 0.277182f, /*n:*/0.192145f, 0.191351f, 0.962523f, + /*v:*/-0.585938f, 0.547599f, 0.292807f, /*n:*/-0.177587f, -0.060762f, 0.982208f, + /*v:*/-0.578125f, 0.453849f, 0.284994f, /*n:*/-0.294290f, -0.102023f, 0.950224f, + /*v:*/-0.546875f, 0.469474f, 0.277182f, /*n:*/0.192145f, 0.191351f, 0.962523f, + /*v:*/0.578125f, 0.453849f, 0.284994f, /*n:*/0.294290f, -0.102023f, 0.950224f, + /*v:*/0.585938f, 0.547599f, 0.292807f, /*n:*/0.177587f, -0.060762f, 0.982208f, + /*v:*/0.546875f, 0.469474f, 0.277182f, /*n:*/-0.192145f, 0.191351f, 0.962523f, + /*v:*/0.585938f, 0.547599f, 0.292807f, /*n:*/0.177587f, -0.060762f, 0.982208f, + /*v:*/0.554688f, 0.539787f, 0.277182f, /*n:*/-0.422926f, -0.107761f, 0.899716f, + /*v:*/0.546875f, 0.469474f, 0.277182f, /*n:*/-0.192145f, 0.191351f, 0.962523f, + /*v:*/-0.531250f, 0.594474f, 0.284994f, /*n:*/0.142308f, -0.582629f, 0.800165f, + /*v:*/-0.562500f, 0.610099f, 0.300619f, /*n:*/-0.294351f, 0.004639f, 0.955657f, + /*v:*/-0.585938f, 0.547599f, 0.292807f, /*n:*/-0.177587f, -0.060762f, 0.982208f, + /*v:*/-0.531250f, 0.594474f, 0.284994f, /*n:*/0.142308f, -0.582629f, 0.800165f, + /*v:*/-0.585938f, 0.547599f, 0.292807f, /*n:*/-0.177587f, -0.060762f, 0.982208f, + /*v:*/-0.554688f, 0.539787f, 0.277182f, /*n:*/0.422926f, -0.107761f, 0.899716f, + /*v:*/0.585938f, 0.547599f, 0.292807f, /*n:*/0.177587f, -0.060762f, 0.982208f, + /*v:*/0.562500f, 0.610099f, 0.300619f, /*n:*/0.294351f, 0.004639f, 0.955657f, + /*v:*/0.531250f, 0.594474f, 0.284994f, /*n:*/-0.142308f, -0.582629f, 0.800165f, + /*v:*/0.585938f, 0.547599f, 0.292807f, /*n:*/0.177587f, -0.060762f, 0.982208f, + /*v:*/0.531250f, 0.594474f, 0.284994f, /*n:*/-0.142308f, -0.582629f, 0.800165f, + /*v:*/0.554688f, 0.539787f, 0.277182f, /*n:*/-0.422926f, -0.107761f, 0.899716f, + /*v:*/-0.414062f, 0.649162f, 0.355307f, /*n:*/0.274056f, -0.855617f, 0.439100f, + /*v:*/-0.421875f, 0.656974f, 0.378744f, /*n:*/-0.088687f, -0.127171f, 0.987884f, + /*v:*/-0.531250f, 0.594474f, 0.284994f, /*n:*/0.142308f, -0.582629f, 0.800165f, + /*v:*/-0.421875f, 0.656974f, 0.378744f, /*n:*/-0.088687f, -0.127171f, 0.987884f, + /*v:*/-0.562500f, 0.610099f, 0.300619f, /*n:*/-0.294351f, 0.004639f, 0.955657f, + /*v:*/-0.531250f, 0.594474f, 0.284994f, /*n:*/0.142308f, -0.582629f, 0.800165f, + /*v:*/0.562500f, 0.610099f, 0.300619f, /*n:*/0.294351f, 0.004639f, 0.955657f, + /*v:*/0.421875f, 0.656974f, 0.378744f, /*n:*/0.088687f, -0.127171f, 0.987884f, + /*v:*/0.531250f, 0.594474f, 0.284994f, /*n:*/-0.142308f, -0.582629f, 0.800165f, + /*v:*/0.421875f, 0.656974f, 0.378744f, /*n:*/0.088687f, -0.127171f, 0.987884f, + /*v:*/0.414062f, 0.649162f, 0.355307f, /*n:*/-0.274056f, -0.855617f, 0.439100f, + /*v:*/0.531250f, 0.594474f, 0.284994f, /*n:*/-0.142308f, -0.582629f, 0.800165f, + /*v:*/-0.335938f, 0.664787f, 0.355307f, /*n:*/-0.113315f, -0.314188f, 0.942564f, + /*v:*/-0.335938f, 0.688224f, 0.363119f, /*n:*/-0.203619f, 0.103183f, 0.973571f, + /*v:*/-0.414062f, 0.649162f, 0.355307f, /*n:*/0.274056f, -0.855617f, 0.439100f, + /*v:*/-0.335938f, 0.688224f, 0.363119f, /*n:*/-0.203619f, 0.103183f, 0.973571f, + /*v:*/-0.421875f, 0.656974f, 0.378744f, /*n:*/-0.088687f, -0.127171f, 0.987884f, + /*v:*/-0.414062f, 0.649162f, 0.355307f, /*n:*/0.274056f, -0.855617f, 0.439100f, + /*v:*/0.421875f, 0.656974f, 0.378744f, /*n:*/0.088687f, -0.127171f, 0.987884f, + /*v:*/0.335938f, 0.688224f, 0.363119f, /*n:*/0.203619f, 0.103183f, 0.973571f, + /*v:*/0.414062f, 0.649162f, 0.355307f, /*n:*/-0.274056f, -0.855617f, 0.439100f, + /*v:*/0.335938f, 0.688224f, 0.363119f, /*n:*/0.203619f, 0.103183f, 0.973571f, + /*v:*/0.335938f, 0.664787f, 0.355307f, /*n:*/0.113315f, -0.314188f, 0.942564f, + /*v:*/0.414062f, 0.649162f, 0.355307f, /*n:*/-0.274056f, -0.855617f, 0.439100f, + /*v:*/-0.281250f, 0.656974f, 0.370932f, /*n:*/-0.174383f, -0.268319f, 0.947386f, + /*v:*/-0.273438f, 0.680412f, 0.378744f, /*n:*/-0.131504f, 0.064974f, 0.989166f, + /*v:*/-0.335938f, 0.688224f, 0.363119f, /*n:*/-0.203619f, 0.103183f, 0.973571f, + /*v:*/-0.281250f, 0.656974f, 0.370932f, /*n:*/-0.174383f, -0.268319f, 0.947386f, + /*v:*/-0.335938f, 0.688224f, 0.363119f, /*n:*/-0.203619f, 0.103183f, 0.973571f, + /*v:*/-0.335938f, 0.664787f, 0.355307f, /*n:*/-0.113315f, -0.314188f, 0.942564f, + /*v:*/0.335938f, 0.688224f, 0.363119f, /*n:*/0.203619f, 0.103183f, 0.973571f, + /*v:*/0.273438f, 0.680412f, 0.378744f, /*n:*/0.131504f, 0.064974f, 0.989166f, + /*v:*/0.281250f, 0.656974f, 0.370932f, /*n:*/0.174383f, -0.268319f, 0.947386f, + /*v:*/0.335938f, 0.688224f, 0.363119f, /*n:*/0.203619f, 0.103183f, 0.973571f, + /*v:*/0.281250f, 0.656974f, 0.370932f, /*n:*/0.174383f, -0.268319f, 0.947386f, + /*v:*/0.335938f, 0.664787f, 0.355307f, /*n:*/0.113315f, -0.314188f, 0.942564f, + /*v:*/-0.234375f, 0.617912f, 0.363119f, /*n:*/-0.463424f, -0.394910f, 0.793237f, + /*v:*/-0.210938f, 0.633537f, 0.386557f, /*n:*/-0.182958f, -0.102878f, 0.977691f, + /*v:*/-0.273438f, 0.680412f, 0.378744f, /*n:*/-0.131504f, 0.064974f, 0.989166f, + /*v:*/-0.234375f, 0.617912f, 0.363119f, /*n:*/-0.463424f, -0.394910f, 0.793237f, + /*v:*/-0.273438f, 0.680412f, 0.378744f, /*n:*/-0.131504f, 0.064974f, 0.989166f, + /*v:*/-0.281250f, 0.656974f, 0.370932f, /*n:*/-0.174383f, -0.268319f, 0.947386f, + /*v:*/0.273438f, 0.680412f, 0.378744f, /*n:*/0.131504f, 0.064974f, 0.989166f, + /*v:*/0.210938f, 0.633537f, 0.386557f, /*n:*/0.182958f, -0.102878f, 0.977691f, + /*v:*/0.234375f, 0.617912f, 0.363119f, /*n:*/0.463424f, -0.394910f, 0.793237f, + /*v:*/0.273438f, 0.680412f, 0.378744f, /*n:*/0.131504f, 0.064974f, 0.989166f, + /*v:*/0.234375f, 0.617912f, 0.363119f, /*n:*/0.463424f, -0.394910f, 0.793237f, + /*v:*/0.281250f, 0.656974f, 0.370932f, /*n:*/0.174383f, -0.268319f, 0.947386f, + /*v:*/-0.210938f, 0.633537f, 0.386557f, /*n:*/-0.182958f, -0.102878f, 0.977691f, + /*v:*/-0.164062f, 0.672599f, 0.378744f, /*n:*/-0.367840f, -0.283608f, 0.885556f, + /*v:*/-0.250000f, 0.727287f, 0.363119f, /*n:*/-0.258156f, -0.126499f, 0.957762f, + /*v:*/-0.210938f, 0.633537f, 0.386557f, /*n:*/-0.182958f, -0.102878f, 0.977691f, + /*v:*/-0.250000f, 0.727287f, 0.363119f, /*n:*/-0.258156f, -0.126499f, 0.957762f, + /*v:*/-0.273438f, 0.680412f, 0.378744f, /*n:*/-0.131504f, 0.064974f, 0.989166f, + /*v:*/0.250000f, 0.727287f, 0.363119f, /*n:*/0.258156f, -0.126499f, 0.957762f, + /*v:*/0.164062f, 0.672599f, 0.378744f, /*n:*/0.367840f, -0.283608f, 0.885556f, + /*v:*/0.210938f, 0.633537f, 0.386557f, /*n:*/0.182958f, -0.102878f, 0.977691f, + /*v:*/0.250000f, 0.727287f, 0.363119f, /*n:*/0.258156f, -0.126499f, 0.957762f, + /*v:*/0.210938f, 0.633537f, 0.386557f, /*n:*/0.182958f, -0.102878f, 0.977691f, + /*v:*/0.273438f, 0.680412f, 0.378744f, /*n:*/0.131504f, 0.064974f, 0.989166f, + /*v:*/-0.273438f, 0.680412f, 0.378744f, /*n:*/-0.131504f, 0.064974f, 0.989166f, + /*v:*/-0.250000f, 0.727287f, 0.363119f, /*n:*/-0.258156f, -0.126499f, 0.957762f, + /*v:*/-0.328125f, 0.735099f, 0.347494f, /*n:*/-0.149022f, -0.154149f, 0.976714f, + /*v:*/-0.273438f, 0.680412f, 0.378744f, /*n:*/-0.131504f, 0.064974f, 0.989166f, + /*v:*/-0.328125f, 0.735099f, 0.347494f, /*n:*/-0.149022f, -0.154149f, 0.976714f, + /*v:*/-0.335938f, 0.688224f, 0.363119f, /*n:*/-0.203619f, 0.103183f, 0.973571f, + /*v:*/0.328125f, 0.735099f, 0.347494f, /*n:*/0.149022f, -0.154149f, 0.976714f, + /*v:*/0.250000f, 0.727287f, 0.363119f, /*n:*/0.258156f, -0.126499f, 0.957762f, + /*v:*/0.273438f, 0.680412f, 0.378744f, /*n:*/0.131504f, 0.064974f, 0.989166f, + /*v:*/0.328125f, 0.735099f, 0.347494f, /*n:*/0.149022f, -0.154149f, 0.976714f, + /*v:*/0.273438f, 0.680412f, 0.378744f, /*n:*/0.131504f, 0.064974f, 0.989166f, + /*v:*/0.335938f, 0.688224f, 0.363119f, /*n:*/0.203619f, 0.103183f, 0.973571f, + /*v:*/-0.335938f, 0.688224f, 0.363119f, /*n:*/-0.203619f, 0.103183f, 0.973571f, + /*v:*/-0.328125f, 0.735099f, 0.347494f, /*n:*/-0.149022f, -0.154149f, 0.976714f, + /*v:*/-0.429688f, 0.696037f, 0.324057f, /*n:*/-0.219001f, 0.037141f, 0.975005f, + /*v:*/-0.335938f, 0.688224f, 0.363119f, /*n:*/-0.203619f, 0.103183f, 0.973571f, + /*v:*/-0.429688f, 0.696037f, 0.324057f, /*n:*/-0.219001f, 0.037141f, 0.975005f, + /*v:*/-0.421875f, 0.656974f, 0.378744f, /*n:*/-0.088687f, -0.127171f, 0.987884f, + /*v:*/0.429688f, 0.696037f, 0.324057f, /*n:*/0.219001f, 0.037141f, 0.975005f, + /*v:*/0.328125f, 0.735099f, 0.347494f, /*n:*/0.149022f, -0.154149f, 0.976714f, + /*v:*/0.335938f, 0.688224f, 0.363119f, /*n:*/0.203619f, 0.103183f, 0.973571f, + /*v:*/0.429688f, 0.696037f, 0.324057f, /*n:*/0.219001f, 0.037141f, 0.975005f, + /*v:*/0.335938f, 0.688224f, 0.363119f, /*n:*/0.203619f, 0.103183f, 0.973571f, + /*v:*/0.421875f, 0.656974f, 0.378744f, /*n:*/0.088687f, -0.127171f, 0.987884f, + /*v:*/-0.421875f, 0.656974f, 0.378744f, /*n:*/-0.088687f, -0.127171f, 0.987884f, + /*v:*/-0.429688f, 0.696037f, 0.324057f, /*n:*/-0.219001f, 0.037141f, 0.975005f, + /*v:*/-0.562500f, 0.610099f, 0.300619f, /*n:*/-0.294351f, 0.004639f, 0.955657f, + /*v:*/-0.429688f, 0.696037f, 0.324057f, /*n:*/-0.219001f, 0.037141f, 0.975005f, + /*v:*/-0.601562f, 0.633537f, 0.269369f, /*n:*/-0.225410f, -0.360759f, 0.904996f, + /*v:*/-0.562500f, 0.610099f, 0.300619f, /*n:*/-0.294351f, 0.004639f, 0.955657f, + /*v:*/0.601562f, 0.633537f, 0.269369f, /*n:*/0.225410f, -0.360759f, 0.904996f, + /*v:*/0.429688f, 0.696037f, 0.324057f, /*n:*/0.219001f, 0.037141f, 0.975005f, + /*v:*/0.562500f, 0.610099f, 0.300619f, /*n:*/0.294351f, 0.004639f, 0.955657f, + /*v:*/0.429688f, 0.696037f, 0.324057f, /*n:*/0.219001f, 0.037141f, 0.975005f, + /*v:*/0.421875f, 0.656974f, 0.378744f, /*n:*/0.088687f, -0.127171f, 0.987884f, + /*v:*/0.562500f, 0.610099f, 0.300619f, /*n:*/0.294351f, 0.004639f, 0.955657f, + /*v:*/-0.562500f, 0.610099f, 0.300619f, /*n:*/-0.294351f, 0.004639f, 0.955657f, + /*v:*/-0.601562f, 0.633537f, 0.269369f, /*n:*/-0.225410f, -0.360759f, 0.904996f, + /*v:*/-0.585938f, 0.547599f, 0.292807f, /*n:*/-0.177587f, -0.060762f, 0.982208f, + /*v:*/-0.601562f, 0.633537f, 0.269369f, /*n:*/-0.225410f, -0.360759f, 0.904996f, + /*v:*/-0.640625f, 0.555412f, 0.253744f, /*n:*/-0.358806f, -0.119175f, 0.925748f, + /*v:*/-0.585938f, 0.547599f, 0.292807f, /*n:*/-0.177587f, -0.060762f, 0.982208f, + /*v:*/0.640625f, 0.555412f, 0.253744f, /*n:*/0.358806f, -0.119175f, 0.925748f, + /*v:*/0.601562f, 0.633537f, 0.269369f, /*n:*/0.225410f, -0.360759f, 0.904996f, + /*v:*/0.585938f, 0.547599f, 0.292807f, /*n:*/0.177587f, -0.060762f, 0.982208f, + /*v:*/0.601562f, 0.633537f, 0.269369f, /*n:*/0.225410f, -0.360759f, 0.904996f, + /*v:*/0.562500f, 0.610099f, 0.300619f, /*n:*/0.294351f, 0.004639f, 0.955657f, + /*v:*/0.585938f, 0.547599f, 0.292807f, /*n:*/0.177587f, -0.060762f, 0.982208f, + /*v:*/-0.585938f, 0.547599f, 0.292807f, /*n:*/-0.177587f, -0.060762f, 0.982208f, + /*v:*/-0.640625f, 0.555412f, 0.253744f, /*n:*/-0.358806f, -0.119175f, 0.925748f, + /*v:*/-0.625000f, 0.446037f, 0.253744f, /*n:*/-0.460219f, -0.165105f, 0.872280f, + /*v:*/-0.585938f, 0.547599f, 0.292807f, /*n:*/-0.177587f, -0.060762f, 0.982208f, + /*v:*/-0.625000f, 0.446037f, 0.253744f, /*n:*/-0.460219f, -0.165105f, 0.872280f, + /*v:*/-0.578125f, 0.453849f, 0.284994f, /*n:*/-0.294290f, -0.102023f, 0.950224f, + /*v:*/0.625000f, 0.446037f, 0.253744f, /*n:*/0.460219f, -0.165105f, 0.872280f, + /*v:*/0.640625f, 0.555412f, 0.253744f, /*n:*/0.358806f, -0.119175f, 0.925748f, + /*v:*/0.585938f, 0.547599f, 0.292807f, /*n:*/0.177587f, -0.060762f, 0.982208f, + /*v:*/0.625000f, 0.446037f, 0.253744f, /*n:*/0.460219f, -0.165105f, 0.872280f, + /*v:*/0.585938f, 0.547599f, 0.292807f, /*n:*/0.177587f, -0.060762f, 0.982208f, + /*v:*/0.578125f, 0.453849f, 0.284994f, /*n:*/0.294290f, -0.102023f, 0.950224f, + /*v:*/-0.578125f, 0.453849f, 0.284994f, /*n:*/-0.294290f, -0.102023f, 0.950224f, + /*v:*/-0.625000f, 0.446037f, 0.253744f, /*n:*/-0.460219f, -0.165105f, 0.872280f, + /*v:*/-0.492188f, 0.321037f, 0.277182f, /*n:*/-0.427900f, -0.389508f, 0.815577f, + /*v:*/-0.578125f, 0.453849f, 0.284994f, /*n:*/-0.294290f, -0.102023f, 0.950224f, + /*v:*/-0.492188f, 0.321037f, 0.277182f, /*n:*/-0.427900f, -0.389508f, 0.815577f, + /*v:*/-0.476562f, 0.360099f, 0.324057f, /*n:*/-0.298990f, -0.035615f, 0.953581f, + /*v:*/0.492188f, 0.321037f, 0.277182f, /*n:*/0.427900f, -0.389508f, 0.815577f, + /*v:*/0.625000f, 0.446037f, 0.253744f, /*n:*/0.460219f, -0.165105f, 0.872280f, + /*v:*/0.578125f, 0.453849f, 0.284994f, /*n:*/0.294290f, -0.102023f, 0.950224f, + /*v:*/0.492188f, 0.321037f, 0.277182f, /*n:*/0.427900f, -0.389508f, 0.815577f, + /*v:*/0.578125f, 0.453849f, 0.284994f, /*n:*/0.294290f, -0.102023f, 0.950224f, + /*v:*/0.476562f, 0.360099f, 0.324057f, /*n:*/0.298990f, -0.035615f, 0.953581f, + /*v:*/-0.476562f, 0.360099f, 0.324057f, /*n:*/-0.298990f, -0.035615f, 0.953581f, + /*v:*/-0.492188f, 0.321037f, 0.277182f, /*n:*/-0.427900f, -0.389508f, 0.815577f, + /*v:*/-0.375000f, 0.274162f, 0.308432f, /*n:*/-0.158940f, -0.498917f, 0.851924f, + /*v:*/-0.476562f, 0.360099f, 0.324057f, /*n:*/-0.298990f, -0.035615f, 0.953581f, + /*v:*/-0.375000f, 0.274162f, 0.308432f, /*n:*/-0.158940f, -0.498917f, 0.851924f, + /*v:*/-0.375000f, 0.321037f, 0.347494f, /*n:*/-0.184454f, -0.186316f, 0.964995f, + /*v:*/0.375000f, 0.274162f, 0.308432f, /*n:*/0.158940f, -0.498917f, 0.851924f, + /*v:*/0.492188f, 0.321037f, 0.277182f, /*n:*/0.427900f, -0.389508f, 0.815577f, + /*v:*/0.476562f, 0.360099f, 0.324057f, /*n:*/0.298990f, -0.035615f, 0.953581f, + /*v:*/0.375000f, 0.274162f, 0.308432f, /*n:*/0.158940f, -0.498917f, 0.851924f, + /*v:*/0.476562f, 0.360099f, 0.324057f, /*n:*/0.298990f, -0.035615f, 0.953581f, + /*v:*/0.375000f, 0.321037f, 0.347494f, /*n:*/0.184454f, -0.186316f, 0.964995f, + /*v:*/-0.375000f, 0.321037f, 0.347494f, /*n:*/-0.184454f, -0.186316f, 0.964995f, + /*v:*/-0.375000f, 0.274162f, 0.308432f, /*n:*/-0.158940f, -0.498917f, 0.851924f, + /*v:*/-0.203125f, 0.352287f, 0.347494f, /*n:*/0.128178f, -0.292001f, 0.947752f, + /*v:*/-0.375000f, 0.321037f, 0.347494f, /*n:*/-0.184454f, -0.186316f, 0.964995f, + /*v:*/-0.203125f, 0.352287f, 0.347494f, /*n:*/0.128178f, -0.292001f, 0.947752f, + /*v:*/-0.226562f, 0.367912f, 0.386557f, /*n:*/0.031709f, -0.219794f, 0.975005f, + /*v:*/0.203125f, 0.352287f, 0.347494f, /*n:*/-0.128178f, -0.292001f, 0.947752f, + /*v:*/0.375000f, 0.274162f, 0.308432f, /*n:*/0.158940f, -0.498917f, 0.851924f, + /*v:*/0.375000f, 0.321037f, 0.347494f, /*n:*/0.184454f, -0.186316f, 0.964995f, + /*v:*/0.203125f, 0.352287f, 0.347494f, /*n:*/-0.128178f, -0.292001f, 0.947752f, + /*v:*/0.375000f, 0.321037f, 0.347494f, /*n:*/0.184454f, -0.186316f, 0.964995f, + /*v:*/0.226562f, 0.367912f, 0.386557f, /*n:*/-0.031709f, -0.219794f, 0.975005f, + /*v:*/-0.226562f, 0.367912f, 0.386557f, /*n:*/0.031709f, -0.219794f, 0.975005f, + /*v:*/-0.203125f, 0.352287f, 0.347494f, /*n:*/0.128178f, -0.292001f, 0.947752f, + /*v:*/-0.187500f, 0.414787f, 0.378744f, /*n:*/0.010102f, -0.069979f, 0.997467f, + /*v:*/-0.203125f, 0.352287f, 0.347494f, /*n:*/0.128178f, -0.292001f, 0.947752f, + /*v:*/-0.164062f, 0.399162f, 0.355307f, /*n:*/0.239296f, -0.301187f, 0.923032f, + /*v:*/-0.187500f, 0.414787f, 0.378744f, /*n:*/0.010102f, -0.069979f, 0.997467f, + /*v:*/0.164062f, 0.399162f, 0.355307f, /*n:*/-0.239296f, -0.301187f, 0.923032f, + /*v:*/0.203125f, 0.352287f, 0.347494f, /*n:*/-0.128178f, -0.292001f, 0.947752f, + /*v:*/0.187500f, 0.414787f, 0.378744f, /*n:*/-0.010102f, -0.069979f, 0.997467f, + /*v:*/0.203125f, 0.352287f, 0.347494f, /*n:*/-0.128178f, -0.292001f, 0.947752f, + /*v:*/0.226562f, 0.367912f, 0.386557f, /*n:*/-0.031709f, -0.219794f, 0.975005f, + /*v:*/0.187500f, 0.414787f, 0.378744f, /*n:*/-0.010102f, -0.069979f, 0.997467f, + /*v:*/-0.179688f, 0.555412f, 0.386557f, /*n:*/-0.293405f, -0.060152f, 0.954070f, + /*v:*/-0.125000f, 0.563224f, 0.370932f, /*n:*/-0.031587f, -0.178167f, 0.983459f, + /*v:*/-0.210938f, 0.633537f, 0.386557f, /*n:*/-0.182958f, -0.102878f, 0.977691f, + /*v:*/-0.125000f, 0.563224f, 0.370932f, /*n:*/-0.031587f, -0.178167f, 0.983459f, + /*v:*/-0.164062f, 0.672599f, 0.378744f, /*n:*/-0.367840f, -0.283608f, 0.885556f, + /*v:*/-0.210938f, 0.633537f, 0.386557f, /*n:*/-0.182958f, -0.102878f, 0.977691f, + /*v:*/0.164062f, 0.672599f, 0.378744f, /*n:*/0.367840f, -0.283608f, 0.885556f, + /*v:*/0.125000f, 0.563224f, 0.370932f, /*n:*/0.031587f, -0.178167f, 0.983459f, + /*v:*/0.210938f, 0.633537f, 0.386557f, /*n:*/0.182958f, -0.102878f, 0.977691f, + /*v:*/0.125000f, 0.563224f, 0.370932f, /*n:*/0.031587f, -0.178167f, 0.983459f, + /*v:*/0.179688f, 0.555412f, 0.386557f, /*n:*/0.293405f, -0.060152f, 0.954070f, + /*v:*/0.210938f, 0.633537f, 0.386557f, /*n:*/0.182958f, -0.102878f, 0.977691f, + /*v:*/-0.171875f, 0.477287f, 0.386557f, /*n:*/-0.158055f, -0.084231f, 0.983825f, + /*v:*/-0.132812f, 0.469474f, 0.363119f, /*n:*/0.200568f, -0.134953f, 0.970306f, + /*v:*/-0.125000f, 0.563224f, 0.370932f, /*n:*/-0.031587f, -0.178167f, 0.983459f, + /*v:*/-0.171875f, 0.477287f, 0.386557f, /*n:*/-0.158055f, -0.084231f, 0.983825f, + /*v:*/-0.125000f, 0.563224f, 0.370932f, /*n:*/-0.031587f, -0.178167f, 0.983459f, + /*v:*/-0.179688f, 0.555412f, 0.386557f, /*n:*/-0.293405f, -0.060152f, 0.954070f, + /*v:*/0.125000f, 0.563224f, 0.370932f, /*n:*/0.031587f, -0.178167f, 0.983459f, + /*v:*/0.132812f, 0.469474f, 0.363119f, /*n:*/-0.200568f, -0.134953f, 0.970306f, + /*v:*/0.171875f, 0.477287f, 0.386557f, /*n:*/0.158055f, -0.084231f, 0.983825f, + /*v:*/0.125000f, 0.563224f, 0.370932f, /*n:*/0.031587f, -0.178167f, 0.983459f, + /*v:*/0.171875f, 0.477287f, 0.386557f, /*n:*/0.158055f, -0.084231f, 0.983825f, + /*v:*/0.179688f, 0.555412f, 0.386557f, /*n:*/0.293405f, -0.060152f, 0.954070f, + /*v:*/-0.187500f, 0.414787f, 0.378744f, /*n:*/0.010102f, -0.069979f, 0.997467f, + /*v:*/-0.164062f, 0.399162f, 0.355307f, /*n:*/0.239296f, -0.301187f, 0.923032f, + /*v:*/-0.132812f, 0.469474f, 0.363119f, /*n:*/0.200568f, -0.134953f, 0.970306f, + /*v:*/-0.187500f, 0.414787f, 0.378744f, /*n:*/0.010102f, -0.069979f, 0.997467f, + /*v:*/-0.132812f, 0.469474f, 0.363119f, /*n:*/0.200568f, -0.134953f, 0.970306f, + /*v:*/-0.171875f, 0.477287f, 0.386557f, /*n:*/-0.158055f, -0.084231f, 0.983825f, + /*v:*/0.132812f, 0.469474f, 0.363119f, /*n:*/-0.200568f, -0.134953f, 0.970306f, + /*v:*/0.164062f, 0.399162f, 0.355307f, /*n:*/-0.239296f, -0.301187f, 0.923032f, + /*v:*/0.187500f, 0.414787f, 0.378744f, /*n:*/-0.010102f, -0.069979f, 0.997467f, + /*v:*/0.132812f, 0.469474f, 0.363119f, /*n:*/-0.200568f, -0.134953f, 0.970306f, + /*v:*/0.187500f, 0.414787f, 0.378744f, /*n:*/-0.010102f, -0.069979f, 0.997467f, + /*v:*/0.171875f, 0.477287f, 0.386557f, /*n:*/0.158055f, -0.084231f, 0.983825f, + /*v:*/-0.046875f, -0.593026f, 0.238120f, /*n:*/0.295846f, 0.474960f, 0.828761f, + /*v:*/0.000000f, -0.600838f, 0.238120f, /*n:*/0.000000f, 0.533403f, 0.845851f, + /*v:*/0.000000f, -0.522713f, 0.261557f, /*n:*/0.000000f, -0.698935f, 0.715171f, + /*v:*/-0.046875f, -0.593026f, 0.238120f, /*n:*/0.295846f, 0.474960f, 0.828761f, + /*v:*/0.000000f, -0.522713f, 0.261557f, /*n:*/0.000000f, -0.698935f, 0.715171f, + /*v:*/-0.093750f, -0.491463f, 0.269370f, /*n:*/0.517655f, -0.704123f, 0.486007f, + /*v:*/0.000000f, -0.522713f, 0.261557f, /*n:*/0.000000f, -0.698935f, 0.715171f, + /*v:*/0.000000f, -0.600838f, 0.238120f, /*n:*/0.000000f, 0.533403f, 0.845851f, + /*v:*/0.046875f, -0.593026f, 0.238120f, /*n:*/-0.295846f, 0.474960f, 0.828761f, + /*v:*/0.000000f, -0.522713f, 0.261557f, /*n:*/0.000000f, -0.698935f, 0.715171f, + /*v:*/0.046875f, -0.593026f, 0.238120f, /*n:*/-0.295846f, 0.474960f, 0.828761f, + /*v:*/0.093750f, -0.491463f, 0.269370f, /*n:*/-0.517655f, -0.704123f, 0.486007f, + /*v:*/0.000000f, -0.522713f, 0.261557f, /*n:*/0.000000f, -0.698935f, 0.715171f, + /*v:*/0.000000f, -0.514901f, 0.324057f, /*n:*/0.000000f, -0.961943f, 0.273232f, + /*v:*/-0.093750f, -0.491463f, 0.269370f, /*n:*/0.517655f, -0.704123f, 0.486007f, + /*v:*/0.000000f, -0.514901f, 0.324057f, /*n:*/0.000000f, -0.961943f, 0.273232f, + /*v:*/-0.093750f, -0.483651f, 0.331870f, /*n:*/0.136845f, -0.527268f, 0.838588f, + /*v:*/-0.093750f, -0.491463f, 0.269370f, /*n:*/0.517655f, -0.704123f, 0.486007f, + /*v:*/0.093750f, -0.483651f, 0.331870f, /*n:*/-0.136845f, -0.527268f, 0.838588f, + /*v:*/0.000000f, -0.514901f, 0.324057f, /*n:*/0.000000f, -0.961943f, 0.273232f, + /*v:*/0.093750f, -0.491463f, 0.269370f, /*n:*/-0.517655f, -0.704123f, 0.486007f, + /*v:*/0.000000f, -0.514901f, 0.324057f, /*n:*/0.000000f, -0.961943f, 0.273232f, + /*v:*/0.000000f, -0.522713f, 0.261557f, /*n:*/0.000000f, -0.698935f, 0.715171f, + /*v:*/0.093750f, -0.491463f, 0.269370f, /*n:*/-0.517655f, -0.704123f, 0.486007f, + /*v:*/-0.093750f, -0.491463f, 0.269370f, /*n:*/0.517655f, -0.704123f, 0.486007f, + /*v:*/-0.093750f, -0.483651f, 0.331870f, /*n:*/0.136845f, -0.527268f, 0.838588f, + /*v:*/-0.093750f, -0.561776f, 0.316245f, /*n:*/0.635121f, 0.042756f, 0.771203f, + /*v:*/-0.093750f, -0.491463f, 0.269370f, /*n:*/0.517655f, -0.704123f, 0.486007f, + /*v:*/-0.093750f, -0.561776f, 0.316245f, /*n:*/0.635121f, 0.042756f, 0.771203f, + /*v:*/-0.093750f, -0.553963f, 0.245932f, /*n:*/0.673757f, 0.115452f, 0.729850f, + /*v:*/0.093750f, -0.561776f, 0.316245f, /*n:*/-0.635121f, 0.042756f, 0.771203f, + /*v:*/0.093750f, -0.483651f, 0.331870f, /*n:*/-0.136845f, -0.527268f, 0.838588f, + /*v:*/0.093750f, -0.491463f, 0.269370f, /*n:*/-0.517655f, -0.704123f, 0.486007f, + /*v:*/0.093750f, -0.561776f, 0.316245f, /*n:*/-0.635121f, 0.042756f, 0.771203f, + /*v:*/0.093750f, -0.491463f, 0.269370f, /*n:*/-0.517655f, -0.704123f, 0.486007f, + /*v:*/0.093750f, -0.553963f, 0.245932f, /*n:*/-0.673757f, 0.115452f, 0.729850f, + /*v:*/-0.093750f, -0.553963f, 0.245932f, /*n:*/0.673757f, 0.115452f, 0.729850f, + /*v:*/-0.093750f, -0.561776f, 0.316245f, /*n:*/0.635121f, 0.042756f, 0.771203f, + /*v:*/-0.046875f, -0.608651f, 0.292807f, /*n:*/0.414106f, 0.579821f, 0.701621f, + /*v:*/-0.093750f, -0.553963f, 0.245932f, /*n:*/0.673757f, 0.115452f, 0.729850f, + /*v:*/-0.046875f, -0.608651f, 0.292807f, /*n:*/0.414106f, 0.579821f, 0.701621f, + /*v:*/-0.046875f, -0.593026f, 0.238120f, /*n:*/0.295846f, 0.474960f, 0.828761f, + /*v:*/0.046875f, -0.608651f, 0.292807f, /*n:*/-0.414106f, 0.579821f, 0.701621f, + /*v:*/0.093750f, -0.561776f, 0.316245f, /*n:*/-0.635121f, 0.042756f, 0.771203f, + /*v:*/0.093750f, -0.553963f, 0.245932f, /*n:*/-0.673757f, 0.115452f, 0.729850f, + /*v:*/0.046875f, -0.608651f, 0.292807f, /*n:*/-0.414106f, 0.579821f, 0.701621f, + /*v:*/0.093750f, -0.553963f, 0.245932f, /*n:*/-0.673757f, 0.115452f, 0.729850f, + /*v:*/0.046875f, -0.593026f, 0.238120f, /*n:*/-0.295846f, 0.474960f, 0.828761f, + /*v:*/-0.046875f, -0.593026f, 0.238120f, /*n:*/0.295846f, 0.474960f, 0.828761f, + /*v:*/-0.046875f, -0.608651f, 0.292807f, /*n:*/0.414106f, 0.579821f, 0.701621f, + /*v:*/0.000000f, -0.600838f, 0.238120f, /*n:*/0.000000f, 0.533403f, 0.845851f, + /*v:*/-0.046875f, -0.608651f, 0.292807f, /*n:*/0.414106f, 0.579821f, 0.701621f, + /*v:*/0.000000f, -0.616463f, 0.292807f, /*n:*/0.000000f, 0.558763f, 0.829310f, + /*v:*/0.000000f, -0.600838f, 0.238120f, /*n:*/0.000000f, 0.533403f, 0.845851f, + /*v:*/0.000000f, -0.616463f, 0.292807f, /*n:*/0.000000f, 0.558763f, 0.829310f, + /*v:*/0.046875f, -0.608651f, 0.292807f, /*n:*/-0.414106f, 0.579821f, 0.701621f, + /*v:*/0.000000f, -0.600838f, 0.238120f, /*n:*/0.000000f, 0.533403f, 0.845851f, + /*v:*/0.046875f, -0.608651f, 0.292807f, /*n:*/-0.414106f, 0.579821f, 0.701621f, + /*v:*/0.046875f, -0.593026f, 0.238120f, /*n:*/-0.295846f, 0.474960f, 0.828761f, + /*v:*/0.000000f, -0.600838f, 0.238120f, /*n:*/0.000000f, 0.533403f, 0.845851f, + /*v:*/-0.046875f, -0.608651f, 0.292807f, /*n:*/0.414106f, 0.579821f, 0.701621f, + /*v:*/-0.062500f, -0.624276f, 0.300620f, /*n:*/0.058870f, -0.378430f, 0.923734f, + /*v:*/0.000000f, -0.632088f, 0.292807f, /*n:*/0.000000f, -0.346507f, 0.938017f, + /*v:*/-0.046875f, -0.608651f, 0.292807f, /*n:*/0.414106f, 0.579821f, 0.701621f, + /*v:*/0.000000f, -0.632088f, 0.292807f, /*n:*/0.000000f, -0.346507f, 0.938017f, + /*v:*/0.000000f, -0.616463f, 0.292807f, /*n:*/0.000000f, 0.558763f, 0.829310f, + /*v:*/0.000000f, -0.632088f, 0.292807f, /*n:*/0.000000f, -0.346507f, 0.938017f, + /*v:*/0.062500f, -0.624276f, 0.300620f, /*n:*/-0.058870f, -0.378430f, 0.923734f, + /*v:*/0.046875f, -0.608651f, 0.292807f, /*n:*/-0.414106f, 0.579821f, 0.701621f, + /*v:*/0.000000f, -0.632088f, 0.292807f, /*n:*/0.000000f, -0.346507f, 0.938017f, + /*v:*/0.046875f, -0.608651f, 0.292807f, /*n:*/-0.414106f, 0.579821f, 0.701621f, + /*v:*/0.000000f, -0.616463f, 0.292807f, /*n:*/0.000000f, 0.558763f, 0.829310f, + /*v:*/-0.093750f, -0.561776f, 0.316245f, /*n:*/0.635121f, 0.042756f, 0.771203f, + /*v:*/-0.117188f, -0.577401f, 0.316245f, /*n:*/-0.130711f, -0.318644f, 0.938810f, + /*v:*/-0.062500f, -0.624276f, 0.300620f, /*n:*/0.058870f, -0.378430f, 0.923734f, + /*v:*/-0.093750f, -0.561776f, 0.316245f, /*n:*/0.635121f, 0.042756f, 0.771203f, + /*v:*/-0.062500f, -0.624276f, 0.300620f, /*n:*/0.058870f, -0.378430f, 0.923734f, + /*v:*/-0.046875f, -0.608651f, 0.292807f, /*n:*/0.414106f, 0.579821f, 0.701621f, + /*v:*/0.062500f, -0.624276f, 0.300620f, /*n:*/-0.058870f, -0.378430f, 0.923734f, + /*v:*/0.117188f, -0.577401f, 0.316245f, /*n:*/0.130711f, -0.318644f, 0.938810f, + /*v:*/0.093750f, -0.561776f, 0.316245f, /*n:*/-0.635121f, 0.042756f, 0.771203f, + /*v:*/0.062500f, -0.624276f, 0.300620f, /*n:*/-0.058870f, -0.378430f, 0.923734f, + /*v:*/0.093750f, -0.561776f, 0.316245f, /*n:*/-0.635121f, 0.042756f, 0.771203f, + /*v:*/0.046875f, -0.608651f, 0.292807f, /*n:*/-0.414106f, 0.579821f, 0.701621f, + /*v:*/-0.093750f, -0.483651f, 0.331870f, /*n:*/0.136845f, -0.527268f, 0.838588f, + /*v:*/-0.109375f, -0.460213f, 0.339682f, /*n:*/-0.145940f, -0.120182f, 0.981933f, + /*v:*/-0.117188f, -0.577401f, 0.316245f, /*n:*/-0.130711f, -0.318644f, 0.938810f, + /*v:*/-0.093750f, -0.483651f, 0.331870f, /*n:*/0.136845f, -0.527268f, 0.838588f, + /*v:*/-0.117188f, -0.577401f, 0.316245f, /*n:*/-0.130711f, -0.318644f, 0.938810f, + /*v:*/-0.093750f, -0.561776f, 0.316245f, /*n:*/0.635121f, 0.042756f, 0.771203f, + /*v:*/0.117188f, -0.577401f, 0.316245f, /*n:*/0.130711f, -0.318644f, 0.938810f, + /*v:*/0.109375f, -0.460213f, 0.339682f, /*n:*/0.145940f, -0.120182f, 0.981933f, + /*v:*/0.093750f, -0.483651f, 0.331870f, /*n:*/-0.136845f, -0.527268f, 0.838588f, + /*v:*/0.117188f, -0.577401f, 0.316245f, /*n:*/0.130711f, -0.318644f, 0.938810f, + /*v:*/0.093750f, -0.483651f, 0.331870f, /*n:*/-0.136845f, -0.527268f, 0.838588f, + /*v:*/0.093750f, -0.561776f, 0.316245f, /*n:*/-0.635121f, 0.042756f, 0.771203f, + /*v:*/0.000000f, -0.514901f, 0.324057f, /*n:*/0.000000f, -0.961943f, 0.273232f, + /*v:*/0.000000f, -0.507088f, 0.339682f, /*n:*/0.000000f, -0.586963f, 0.809595f, + /*v:*/-0.093750f, -0.483651f, 0.331870f, /*n:*/0.136845f, -0.527268f, 0.838588f, + /*v:*/0.000000f, -0.507088f, 0.339682f, /*n:*/0.000000f, -0.586963f, 0.809595f, + /*v:*/-0.109375f, -0.460213f, 0.339682f, /*n:*/-0.145940f, -0.120182f, 0.981933f, + /*v:*/-0.093750f, -0.483651f, 0.331870f, /*n:*/0.136845f, -0.527268f, 0.838588f, + /*v:*/0.109375f, -0.460213f, 0.339682f, /*n:*/0.145940f, -0.120182f, 0.981933f, + /*v:*/0.000000f, -0.507088f, 0.339682f, /*n:*/0.000000f, -0.586963f, 0.809595f, + /*v:*/0.093750f, -0.483651f, 0.331870f, /*n:*/-0.136845f, -0.527268f, 0.838588f, + /*v:*/0.000000f, -0.507088f, 0.339682f, /*n:*/0.000000f, -0.586963f, 0.809595f, + /*v:*/0.000000f, -0.514901f, 0.324057f, /*n:*/0.000000f, -0.961943f, 0.273232f, + /*v:*/0.093750f, -0.483651f, 0.331870f, /*n:*/-0.136845f, -0.527268f, 0.838588f, + /*v:*/-0.164062f, 0.016349f, 0.316244f, /*n:*/-0.775140f, 0.038667f, 0.630573f, + /*v:*/-0.125000f, 0.156974f, 0.417807f, /*n:*/-0.056093f, -0.263863f, 0.962920f, + /*v:*/-0.203125f, 0.071037f, 0.167807f, /*n:*/-0.891537f, -0.330668f, 0.309458f, + /*v:*/-0.164062f, 0.016349f, 0.316244f, /*n:*/-0.775140f, 0.038667f, 0.630573f, + /*v:*/-0.203125f, 0.071037f, 0.167807f, /*n:*/-0.891537f, -0.330668f, 0.309458f, + /*v:*/-0.234375f, 0.008537f, 0.159994f, /*n:*/-0.930601f, 0.343516f, 0.126347f, + /*v:*/0.203125f, 0.071037f, 0.167807f, /*n:*/0.891537f, -0.330668f, 0.309458f, + /*v:*/0.125000f, 0.156974f, 0.417807f, /*n:*/0.056093f, -0.263863f, 0.962920f, + /*v:*/0.164062f, 0.016349f, 0.316244f, /*n:*/0.775140f, 0.038667f, 0.630573f, + /*v:*/0.203125f, 0.071037f, 0.167807f, /*n:*/0.891537f, -0.330668f, 0.309458f, + /*v:*/0.164062f, 0.016349f, 0.316244f, /*n:*/0.775140f, 0.038667f, 0.630573f, + /*v:*/0.234375f, 0.008537f, 0.159994f, /*n:*/0.930601f, 0.343516f, 0.126347f, + /*v:*/-0.164062f, 0.016349f, 0.316244f, /*n:*/-0.775140f, 0.038667f, 0.630573f, + /*v:*/-0.234375f, 0.008537f, 0.159994f, /*n:*/-0.930601f, 0.343516f, 0.126347f, + /*v:*/-0.179688f, -0.053963f, 0.316244f, /*n:*/-0.650655f, 0.148747f, 0.744652f, + /*v:*/-0.234375f, 0.008537f, 0.159994f, /*n:*/-0.930601f, 0.343516f, 0.126347f, + /*v:*/-0.257812f, -0.053963f, 0.159994f, /*n:*/-0.927763f, 0.353008f, 0.120884f, + /*v:*/-0.179688f, -0.053963f, 0.316244f, /*n:*/-0.650655f, 0.148747f, 0.744652f, + /*v:*/0.257812f, -0.053963f, 0.159994f, /*n:*/0.927763f, 0.353008f, 0.120884f, + /*v:*/0.234375f, 0.008537f, 0.159994f, /*n:*/0.930601f, 0.343516f, 0.126347f, + /*v:*/0.179688f, -0.053963f, 0.316244f, /*n:*/0.650655f, 0.148747f, 0.744652f, + /*v:*/0.234375f, 0.008537f, 0.159994f, /*n:*/0.930601f, 0.343516f, 0.126347f, + /*v:*/0.164062f, 0.016349f, 0.316244f, /*n:*/0.775140f, 0.038667f, 0.630573f, + /*v:*/0.179688f, -0.053963f, 0.316244f, /*n:*/0.650655f, 0.148747f, 0.744652f, + /*v:*/-0.179688f, -0.053963f, 0.316244f, /*n:*/-0.650655f, 0.148747f, 0.744652f, + /*v:*/-0.257812f, -0.053963f, 0.159994f, /*n:*/-0.927763f, 0.353008f, 0.120884f, + /*v:*/-0.210938f, -0.186776f, 0.316244f, /*n:*/-0.593677f, 0.108158f, 0.797388f, + /*v:*/-0.257812f, -0.053963f, 0.159994f, /*n:*/-0.927763f, 0.353008f, 0.120884f, + /*v:*/-0.312500f, -0.178963f, 0.175619f, /*n:*/-0.955718f, 0.249184f, 0.156468f, + /*v:*/-0.210938f, -0.186776f, 0.316244f, /*n:*/-0.593677f, 0.108158f, 0.797388f, + /*v:*/0.312500f, -0.178963f, 0.175619f, /*n:*/0.955718f, 0.249184f, 0.156468f, + /*v:*/0.257812f, -0.053963f, 0.159994f, /*n:*/0.927763f, 0.353008f, 0.120884f, + /*v:*/0.210938f, -0.186776f, 0.316244f, /*n:*/0.593677f, 0.108158f, 0.797388f, + /*v:*/0.257812f, -0.053963f, 0.159994f, /*n:*/0.927763f, 0.353008f, 0.120884f, + /*v:*/0.179688f, -0.053963f, 0.316244f, /*n:*/0.650655f, 0.148747f, 0.744652f, + /*v:*/0.210938f, -0.186776f, 0.316244f, /*n:*/0.593677f, 0.108158f, 0.797388f, + /*v:*/-0.210938f, -0.186776f, 0.316244f, /*n:*/-0.593677f, 0.108158f, 0.797388f, + /*v:*/-0.078125f, -0.186776f, 0.355307f, /*n:*/-0.134098f, 0.006256f, 0.990936f, + /*v:*/-0.179688f, -0.053963f, 0.316244f, /*n:*/-0.650655f, 0.148747f, 0.744652f, + /*v:*/-0.078125f, -0.186776f, 0.355307f, /*n:*/-0.134098f, 0.006256f, 0.990936f, + /*v:*/-0.085938f, -0.030526f, 0.347494f, /*n:*/-0.500259f, -0.429243f, 0.751946f, + /*v:*/-0.179688f, -0.053963f, 0.316244f, /*n:*/-0.650655f, 0.148747f, 0.744652f, + /*v:*/0.085938f, -0.030526f, 0.347494f, /*n:*/0.500259f, -0.429243f, 0.751946f, + /*v:*/0.078125f, -0.186776f, 0.355307f, /*n:*/0.134098f, 0.006256f, 0.990936f, + /*v:*/0.179688f, -0.053963f, 0.316244f, /*n:*/0.650655f, 0.148747f, 0.744652f, + /*v:*/0.078125f, -0.186776f, 0.355307f, /*n:*/0.134098f, 0.006256f, 0.990936f, + /*v:*/0.210938f, -0.186776f, 0.316244f, /*n:*/0.593677f, 0.108158f, 0.797388f, + /*v:*/0.179688f, -0.053963f, 0.316244f, /*n:*/0.650655f, 0.148747f, 0.744652f, + /*v:*/-0.179688f, -0.053963f, 0.316244f, /*n:*/-0.650655f, 0.148747f, 0.744652f, + /*v:*/-0.085938f, -0.030526f, 0.347494f, /*n:*/-0.500259f, -0.429243f, 0.751946f, + /*v:*/-0.164062f, 0.016349f, 0.316244f, /*n:*/-0.775140f, 0.038667f, 0.630573f, + /*v:*/-0.085938f, -0.030526f, 0.347494f, /*n:*/-0.500259f, -0.429243f, 0.751946f, + /*v:*/-0.125000f, 0.031974f, 0.355307f, /*n:*/-0.932157f, -0.137761f, 0.334758f, + /*v:*/-0.164062f, 0.016349f, 0.316244f, /*n:*/-0.775140f, 0.038667f, 0.630573f, + /*v:*/0.125000f, 0.031974f, 0.355307f, /*n:*/0.932157f, -0.137761f, 0.334758f, + /*v:*/0.085938f, -0.030526f, 0.347494f, /*n:*/0.500259f, -0.429243f, 0.751946f, + /*v:*/0.164062f, 0.016349f, 0.316244f, /*n:*/0.775140f, 0.038667f, 0.630573f, + /*v:*/0.085938f, -0.030526f, 0.347494f, /*n:*/0.500259f, -0.429243f, 0.751946f, + /*v:*/0.179688f, -0.053963f, 0.316244f, /*n:*/0.650655f, 0.148747f, 0.744652f, + /*v:*/0.164062f, 0.016349f, 0.316244f, /*n:*/0.775140f, 0.038667f, 0.630573f, + /*v:*/-0.164062f, 0.016349f, 0.316244f, /*n:*/-0.775140f, 0.038667f, 0.630573f, + /*v:*/-0.125000f, 0.031974f, 0.355307f, /*n:*/-0.932157f, -0.137761f, 0.334758f, + /*v:*/-0.101562f, 0.110099f, 0.347494f, /*n:*/-0.501389f, -0.325327f, 0.801691f, + /*v:*/-0.164062f, 0.016349f, 0.316244f, /*n:*/-0.775140f, 0.038667f, 0.630573f, + /*v:*/-0.101562f, 0.110099f, 0.347494f, /*n:*/-0.501389f, -0.325327f, 0.801691f, + /*v:*/-0.125000f, 0.156974f, 0.417807f, /*n:*/-0.056093f, -0.263863f, 0.962920f, + /*v:*/0.101562f, 0.110099f, 0.347494f, /*n:*/0.501389f, -0.325327f, 0.801691f, + /*v:*/0.125000f, 0.031974f, 0.355307f, /*n:*/0.932157f, -0.137761f, 0.334758f, + /*v:*/0.164062f, 0.016349f, 0.316244f, /*n:*/0.775140f, 0.038667f, 0.630573f, + /*v:*/0.101562f, 0.110099f, 0.347494f, /*n:*/0.501389f, -0.325327f, 0.801691f, + /*v:*/0.164062f, 0.016349f, 0.316244f, /*n:*/0.775140f, 0.038667f, 0.630573f, + /*v:*/0.125000f, 0.156974f, 0.417807f, /*n:*/0.056093f, -0.263863f, 0.962920f, + /*v:*/-0.125000f, 0.156974f, 0.417807f, /*n:*/-0.056093f, -0.263863f, 0.962920f, + /*v:*/-0.101562f, 0.110099f, 0.347494f, /*n:*/-0.501389f, -0.325327f, 0.801691f, + /*v:*/0.000000f, 0.117912f, 0.347494f, /*n:*/0.000000f, 0.516556f, 0.856227f, + /*v:*/-0.125000f, 0.156974f, 0.417807f, /*n:*/-0.056093f, -0.263863f, 0.962920f, + /*v:*/0.000000f, 0.117912f, 0.347494f, /*n:*/0.000000f, 0.516556f, 0.856227f, + /*v:*/0.000000f, 0.305412f, 0.331869f, /*n:*/0.000000f, 0.064272f, 0.997925f, + /*v:*/0.000000f, 0.117912f, 0.347494f, /*n:*/0.000000f, 0.516556f, 0.856227f, + /*v:*/0.101562f, 0.110099f, 0.347494f, /*n:*/0.501389f, -0.325327f, 0.801691f, + /*v:*/0.125000f, 0.156974f, 0.417807f, /*n:*/0.056093f, -0.263863f, 0.962920f, + /*v:*/0.000000f, 0.117912f, 0.347494f, /*n:*/0.000000f, 0.516556f, 0.856227f, + /*v:*/0.125000f, 0.156974f, 0.417807f, /*n:*/0.056093f, -0.263863f, 0.962920f, + /*v:*/0.000000f, 0.305412f, 0.331869f, /*n:*/0.000000f, 0.064272f, 0.997925f, + /*v:*/-0.078125f, 0.008537f, 0.409994f, /*n:*/-0.183294f, -0.586352f, 0.789026f, + /*v:*/0.000000f, -0.030526f, 0.409994f, /*n:*/0.000000f, -0.481521f, 0.876431f, + /*v:*/0.000000f, 0.055412f, 0.433432f, /*n:*/0.000000f, 0.157842f, 0.987457f, + /*v:*/-0.078125f, 0.008537f, 0.409994f, /*n:*/-0.183294f, -0.586352f, 0.789026f, + /*v:*/0.000000f, 0.055412f, 0.433432f, /*n:*/0.000000f, 0.157842f, 0.987457f, + /*v:*/-0.109375f, 0.031974f, 0.433432f, /*n:*/-0.448805f, -0.314707f, 0.836360f, + /*v:*/0.000000f, 0.055412f, 0.433432f, /*n:*/0.000000f, 0.157842f, 0.987457f, + /*v:*/0.000000f, -0.030526f, 0.409994f, /*n:*/0.000000f, -0.481521f, 0.876431f, + /*v:*/0.078125f, 0.008537f, 0.409994f, /*n:*/0.183294f, -0.586352f, 0.789026f, + /*v:*/0.000000f, 0.055412f, 0.433432f, /*n:*/0.000000f, 0.157842f, 0.987457f, + /*v:*/0.078125f, 0.008537f, 0.409994f, /*n:*/0.183294f, -0.586352f, 0.789026f, + /*v:*/0.109375f, 0.031974f, 0.433432f, /*n:*/0.448805f, -0.314707f, 0.836360f, + /*v:*/-0.093750f, 0.102287f, 0.417807f, /*n:*/-0.361095f, 0.471267f, 0.804651f, + /*v:*/-0.109375f, 0.031974f, 0.433432f, /*n:*/-0.448805f, -0.314707f, 0.836360f, + /*v:*/-0.046875f, 0.110099f, 0.417807f, /*n:*/0.185736f, 0.595599f, 0.781487f, + /*v:*/-0.109375f, 0.031974f, 0.433432f, /*n:*/-0.448805f, -0.314707f, 0.836360f, + /*v:*/0.000000f, 0.055412f, 0.433432f, /*n:*/0.000000f, 0.157842f, 0.987457f, + /*v:*/-0.046875f, 0.110099f, 0.417807f, /*n:*/0.185736f, 0.595599f, 0.781487f, + /*v:*/0.000000f, 0.055412f, 0.433432f, /*n:*/0.000000f, 0.157842f, 0.987457f, + /*v:*/0.109375f, 0.031974f, 0.433432f, /*n:*/0.448805f, -0.314707f, 0.836360f, + /*v:*/0.046875f, 0.110099f, 0.417807f, /*n:*/-0.185736f, 0.595599f, 0.781487f, + /*v:*/0.109375f, 0.031974f, 0.433432f, /*n:*/0.448805f, -0.314707f, 0.836360f, + /*v:*/0.093750f, 0.102287f, 0.417807f, /*n:*/0.361095f, 0.471267f, 0.804651f, + /*v:*/0.046875f, 0.110099f, 0.417807f, /*n:*/-0.185736f, 0.595599f, 0.781487f, + /*v:*/-0.078125f, 0.008537f, 0.409994f, /*n:*/-0.183294f, -0.586352f, 0.789026f, + /*v:*/-0.109375f, 0.031974f, 0.433432f, /*n:*/-0.448805f, -0.314707f, 0.836360f, + /*v:*/-0.132812f, 0.031974f, 0.402182f, /*n:*/-0.926237f, -0.243049f, 0.288003f, + /*v:*/-0.078125f, 0.008537f, 0.409994f, /*n:*/-0.183294f, -0.586352f, 0.789026f, + /*v:*/-0.132812f, 0.031974f, 0.402182f, /*n:*/-0.926237f, -0.243049f, 0.288003f, + /*v:*/-0.093750f, -0.014901f, 0.386557f, /*n:*/-0.583575f, -0.692862f, 0.423475f, + /*v:*/0.132812f, 0.031974f, 0.402182f, /*n:*/0.926237f, -0.243049f, 0.288003f, + /*v:*/0.109375f, 0.031974f, 0.433432f, /*n:*/0.448805f, -0.314707f, 0.836360f, + /*v:*/0.078125f, 0.008537f, 0.409994f, /*n:*/0.183294f, -0.586352f, 0.789026f, + /*v:*/0.132812f, 0.031974f, 0.402182f, /*n:*/0.926237f, -0.243049f, 0.288003f, + /*v:*/0.078125f, 0.008537f, 0.409994f, /*n:*/0.183294f, -0.586352f, 0.789026f, + /*v:*/0.093750f, -0.014901f, 0.386557f, /*n:*/0.583575f, -0.692862f, 0.423475f, + /*v:*/-0.109375f, 0.031974f, 0.433432f, /*n:*/-0.448805f, -0.314707f, 0.836360f, + /*v:*/-0.093750f, 0.102287f, 0.417807f, /*n:*/-0.361095f, 0.471267f, 0.804651f, + /*v:*/-0.132812f, 0.031974f, 0.402182f, /*n:*/-0.926237f, -0.243049f, 0.288003f, + /*v:*/-0.093750f, 0.102287f, 0.417807f, /*n:*/-0.361095f, 0.471267f, 0.804651f, + /*v:*/-0.109375f, 0.125724f, 0.386557f, /*n:*/-0.618641f, 0.775658f, 0.124790f, + /*v:*/-0.132812f, 0.031974f, 0.402182f, /*n:*/-0.926237f, -0.243049f, 0.288003f, + /*v:*/0.109375f, 0.125724f, 0.386557f, /*n:*/0.618641f, 0.775658f, 0.124790f, + /*v:*/0.093750f, 0.102287f, 0.417807f, /*n:*/0.361095f, 0.471267f, 0.804651f, + /*v:*/0.132812f, 0.031974f, 0.402182f, /*n:*/0.926237f, -0.243049f, 0.288003f, + /*v:*/0.093750f, 0.102287f, 0.417807f, /*n:*/0.361095f, 0.471267f, 0.804651f, + /*v:*/0.109375f, 0.031974f, 0.433432f, /*n:*/0.448805f, -0.314707f, 0.836360f, + /*v:*/0.132812f, 0.031974f, 0.402182f, /*n:*/0.926237f, -0.243049f, 0.288003f, + /*v:*/-0.093750f, 0.102287f, 0.417807f, /*n:*/-0.361095f, 0.471267f, 0.804651f, + /*v:*/-0.046875f, 0.110099f, 0.417807f, /*n:*/0.185736f, 0.595599f, 0.781487f, + /*v:*/-0.039062f, 0.133537f, 0.386557f, /*n:*/0.240516f, 0.949034f, 0.203558f, + /*v:*/-0.093750f, 0.102287f, 0.417807f, /*n:*/-0.361095f, 0.471267f, 0.804651f, + /*v:*/-0.039062f, 0.133537f, 0.386557f, /*n:*/0.240516f, 0.949034f, 0.203558f, + /*v:*/-0.109375f, 0.125724f, 0.386557f, /*n:*/-0.618641f, 0.775658f, 0.124790f, + /*v:*/0.039062f, 0.133537f, 0.386557f, /*n:*/-0.240516f, 0.949034f, 0.203558f, + /*v:*/0.046875f, 0.110099f, 0.417807f, /*n:*/-0.185736f, 0.595599f, 0.781487f, + /*v:*/0.093750f, 0.102287f, 0.417807f, /*n:*/0.361095f, 0.471267f, 0.804651f, + /*v:*/0.039062f, 0.133537f, 0.386557f, /*n:*/-0.240516f, 0.949034f, 0.203558f, + /*v:*/0.093750f, 0.102287f, 0.417807f, /*n:*/0.361095f, 0.471267f, 0.804651f, + /*v:*/0.109375f, 0.125724f, 0.386557f, /*n:*/0.618641f, 0.775658f, 0.124790f, + /*v:*/-0.046875f, 0.110099f, 0.417807f, /*n:*/0.185736f, 0.595599f, 0.781487f, + /*v:*/0.000000f, 0.055412f, 0.433432f, /*n:*/0.000000f, 0.157842f, 0.987457f, + /*v:*/0.000000f, 0.071037f, 0.402182f, /*n:*/0.000000f, 0.828700f, 0.559648f, + /*v:*/-0.046875f, 0.110099f, 0.417807f, /*n:*/0.185736f, 0.595599f, 0.781487f, + /*v:*/0.000000f, 0.071037f, 0.402182f, /*n:*/0.000000f, 0.828700f, 0.559648f, + /*v:*/-0.039062f, 0.133537f, 0.386557f, /*n:*/0.240516f, 0.949034f, 0.203558f, + /*v:*/0.000000f, 0.071037f, 0.402182f, /*n:*/0.000000f, 0.828700f, 0.559648f, + /*v:*/0.000000f, 0.055412f, 0.433432f, /*n:*/0.000000f, 0.157842f, 0.987457f, + /*v:*/0.046875f, 0.110099f, 0.417807f, /*n:*/-0.185736f, 0.595599f, 0.781487f, + /*v:*/0.000000f, 0.071037f, 0.402182f, /*n:*/0.000000f, 0.828700f, 0.559648f, + /*v:*/0.046875f, 0.110099f, 0.417807f, /*n:*/-0.185736f, 0.595599f, 0.781487f, + /*v:*/0.039062f, 0.133537f, 0.386557f, /*n:*/-0.240516f, 0.949034f, 0.203558f, + /*v:*/-0.078125f, 0.008537f, 0.409994f, /*n:*/-0.183294f, -0.586352f, 0.789026f, + /*v:*/-0.093750f, -0.014901f, 0.386557f, /*n:*/-0.583575f, -0.692862f, 0.423475f, + /*v:*/0.000000f, -0.030526f, 0.409994f, /*n:*/0.000000f, -0.481521f, 0.876431f, + /*v:*/-0.093750f, -0.014901f, 0.386557f, /*n:*/-0.583575f, -0.692862f, 0.423475f, + /*v:*/0.000000f, -0.061776f, 0.386557f, /*n:*/0.000000f, -0.865383f, 0.501053f, + /*v:*/0.000000f, -0.030526f, 0.409994f, /*n:*/0.000000f, -0.481521f, 0.876431f, + /*v:*/0.000000f, -0.061776f, 0.386557f, /*n:*/0.000000f, -0.865383f, 0.501053f, + /*v:*/0.093750f, -0.014901f, 0.386557f, /*n:*/0.583575f, -0.692862f, 0.423475f, + /*v:*/0.000000f, -0.030526f, 0.409994f, /*n:*/0.000000f, -0.481521f, 0.876431f, + /*v:*/0.093750f, -0.014901f, 0.386557f, /*n:*/0.583575f, -0.692862f, 0.423475f, + /*v:*/0.078125f, 0.008537f, 0.409994f, /*n:*/0.183294f, -0.586352f, 0.789026f, + /*v:*/0.000000f, -0.030526f, 0.409994f, /*n:*/0.000000f, -0.481521f, 0.876431f, + /*v:*/-0.093750f, -0.014901f, 0.386557f, /*n:*/-0.583575f, -0.692862f, 0.423475f, + /*v:*/-0.085938f, -0.030526f, 0.347494f, /*n:*/-0.500259f, -0.429243f, 0.751946f, + /*v:*/0.000000f, -0.061776f, 0.386557f, /*n:*/0.000000f, -0.865383f, 0.501053f, + /*v:*/-0.085938f, -0.030526f, 0.347494f, /*n:*/-0.500259f, -0.429243f, 0.751946f, + /*v:*/0.000000f, -0.069588f, 0.347494f, /*n:*/0.000000f, -0.475936f, 0.879452f, + /*v:*/0.000000f, -0.061776f, 0.386557f, /*n:*/0.000000f, -0.865383f, 0.501053f, + /*v:*/0.000000f, -0.069588f, 0.347494f, /*n:*/0.000000f, -0.475936f, 0.879452f, + /*v:*/0.085938f, -0.030526f, 0.347494f, /*n:*/0.500259f, -0.429243f, 0.751946f, + /*v:*/0.000000f, -0.061776f, 0.386557f, /*n:*/0.000000f, -0.865383f, 0.501053f, + /*v:*/0.085938f, -0.030526f, 0.347494f, /*n:*/0.500259f, -0.429243f, 0.751946f, + /*v:*/0.093750f, -0.014901f, 0.386557f, /*n:*/0.583575f, -0.692862f, 0.423475f, + /*v:*/0.000000f, -0.061776f, 0.386557f, /*n:*/0.000000f, -0.865383f, 0.501053f, + /*v:*/-0.039062f, 0.133537f, 0.386557f, /*n:*/0.240516f, 0.949034f, 0.203558f, + /*v:*/0.000000f, 0.071037f, 0.402182f, /*n:*/0.000000f, 0.828700f, 0.559648f, + /*v:*/0.000000f, 0.117912f, 0.347494f, /*n:*/0.000000f, 0.516556f, 0.856227f, + /*v:*/0.000000f, 0.071037f, 0.402182f, /*n:*/0.000000f, 0.828700f, 0.559648f, + /*v:*/0.000000f, 0.063224f, 0.355307f, /*n:*/0.000000f, 0.175176f, 0.984527f, + /*v:*/0.000000f, 0.117912f, 0.347494f, /*n:*/0.000000f, 0.516556f, 0.856227f, + /*v:*/0.000000f, 0.063224f, 0.355307f, /*n:*/0.000000f, 0.175176f, 0.984527f, + /*v:*/0.000000f, 0.071037f, 0.402182f, /*n:*/0.000000f, 0.828700f, 0.559648f, + /*v:*/0.000000f, 0.117912f, 0.347494f, /*n:*/0.000000f, 0.516556f, 0.856227f, + /*v:*/0.000000f, 0.071037f, 0.402182f, /*n:*/0.000000f, 0.828700f, 0.559648f, + /*v:*/0.039062f, 0.133537f, 0.386557f, /*n:*/-0.240516f, 0.949034f, 0.203558f, + /*v:*/0.000000f, 0.117912f, 0.347494f, /*n:*/0.000000f, 0.516556f, 0.856227f, + /*v:*/-0.109375f, 0.125724f, 0.386557f, /*n:*/-0.618641f, 0.775658f, 0.124790f, + /*v:*/-0.039062f, 0.133537f, 0.386557f, /*n:*/0.240516f, 0.949034f, 0.203558f, + /*v:*/-0.101562f, 0.110099f, 0.347494f, /*n:*/-0.501389f, -0.325327f, 0.801691f, + /*v:*/-0.039062f, 0.133537f, 0.386557f, /*n:*/0.240516f, 0.949034f, 0.203558f, + /*v:*/0.000000f, 0.117912f, 0.347494f, /*n:*/0.000000f, 0.516556f, 0.856227f, + /*v:*/-0.101562f, 0.110099f, 0.347494f, /*n:*/-0.501389f, -0.325327f, 0.801691f, + /*v:*/0.000000f, 0.117912f, 0.347494f, /*n:*/0.000000f, 0.516556f, 0.856227f, + /*v:*/0.039062f, 0.133537f, 0.386557f, /*n:*/-0.240516f, 0.949034f, 0.203558f, + /*v:*/0.101562f, 0.110099f, 0.347494f, /*n:*/0.501389f, -0.325327f, 0.801691f, + /*v:*/0.039062f, 0.133537f, 0.386557f, /*n:*/-0.240516f, 0.949034f, 0.203558f, + /*v:*/0.109375f, 0.125724f, 0.386557f, /*n:*/0.618641f, 0.775658f, 0.124790f, + /*v:*/0.101562f, 0.110099f, 0.347494f, /*n:*/0.501389f, -0.325327f, 0.801691f, + /*v:*/-0.132812f, 0.031974f, 0.402182f, /*n:*/-0.926237f, -0.243049f, 0.288003f, + /*v:*/-0.109375f, 0.125724f, 0.386557f, /*n:*/-0.618641f, 0.775658f, 0.124790f, + /*v:*/-0.125000f, 0.031974f, 0.355307f, /*n:*/-0.932157f, -0.137761f, 0.334758f, + /*v:*/-0.109375f, 0.125724f, 0.386557f, /*n:*/-0.618641f, 0.775658f, 0.124790f, + /*v:*/-0.101562f, 0.110099f, 0.347494f, /*n:*/-0.501389f, -0.325327f, 0.801691f, + /*v:*/-0.125000f, 0.031974f, 0.355307f, /*n:*/-0.932157f, -0.137761f, 0.334758f, + /*v:*/0.101562f, 0.110099f, 0.347494f, /*n:*/0.501389f, -0.325327f, 0.801691f, + /*v:*/0.109375f, 0.125724f, 0.386557f, /*n:*/0.618641f, 0.775658f, 0.124790f, + /*v:*/0.125000f, 0.031974f, 0.355307f, /*n:*/0.932157f, -0.137761f, 0.334758f, + /*v:*/0.109375f, 0.125724f, 0.386557f, /*n:*/0.618641f, 0.775658f, 0.124790f, + /*v:*/0.132812f, 0.031974f, 0.402182f, /*n:*/0.926237f, -0.243049f, 0.288003f, + /*v:*/0.125000f, 0.031974f, 0.355307f, /*n:*/0.932157f, -0.137761f, 0.334758f, + /*v:*/-0.093750f, -0.014901f, 0.386557f, /*n:*/-0.583575f, -0.692862f, 0.423475f, + /*v:*/-0.132812f, 0.031974f, 0.402182f, /*n:*/-0.926237f, -0.243049f, 0.288003f, + /*v:*/-0.125000f, 0.031974f, 0.355307f, /*n:*/-0.932157f, -0.137761f, 0.334758f, + /*v:*/-0.093750f, -0.014901f, 0.386557f, /*n:*/-0.583575f, -0.692862f, 0.423475f, + /*v:*/-0.125000f, 0.031974f, 0.355307f, /*n:*/-0.932157f, -0.137761f, 0.334758f, + /*v:*/-0.085938f, -0.030526f, 0.347494f, /*n:*/-0.500259f, -0.429243f, 0.751946f, + /*v:*/0.125000f, 0.031974f, 0.355307f, /*n:*/0.932157f, -0.137761f, 0.334758f, + /*v:*/0.132812f, 0.031974f, 0.402182f, /*n:*/0.926237f, -0.243049f, 0.288003f, + /*v:*/0.093750f, -0.014901f, 0.386557f, /*n:*/0.583575f, -0.692862f, 0.423475f, + /*v:*/0.125000f, 0.031974f, 0.355307f, /*n:*/0.932157f, -0.137761f, 0.334758f, + /*v:*/0.093750f, -0.014901f, 0.386557f, /*n:*/0.583575f, -0.692862f, 0.423475f, + /*v:*/0.085938f, -0.030526f, 0.347494f, /*n:*/0.500259f, -0.429243f, 0.751946f, + /*v:*/-0.117188f, -0.428963f, 0.339682f, /*n:*/-0.181524f, -0.045198f, 0.982330f, + /*v:*/-0.109375f, -0.460213f, 0.339682f, /*n:*/-0.145940f, -0.120182f, 0.981933f, + /*v:*/0.000000f, -0.421151f, 0.339682f, /*n:*/0.000000f, -0.034059f, 0.999390f, + /*v:*/-0.109375f, -0.460213f, 0.339682f, /*n:*/-0.145940f, -0.120182f, 0.981933f, + /*v:*/0.000000f, -0.507088f, 0.339682f, /*n:*/0.000000f, -0.586963f, 0.809595f, + /*v:*/0.000000f, -0.421151f, 0.339682f, /*n:*/0.000000f, -0.034059f, 0.999390f, + /*v:*/0.000000f, -0.507088f, 0.339682f, /*n:*/0.000000f, -0.586963f, 0.809595f, + /*v:*/0.109375f, -0.460213f, 0.339682f, /*n:*/0.145940f, -0.120182f, 0.981933f, + /*v:*/0.000000f, -0.421151f, 0.339682f, /*n:*/0.000000f, -0.034059f, 0.999390f, + /*v:*/0.109375f, -0.460213f, 0.339682f, /*n:*/0.145940f, -0.120182f, 0.981933f, + /*v:*/0.117188f, -0.428963f, 0.339682f, /*n:*/0.181524f, -0.045198f, 0.982330f, + /*v:*/0.000000f, -0.421151f, 0.339682f, /*n:*/0.000000f, -0.034059f, 0.999390f, + /*v:*/0.000000f, -0.186776f, 0.355307f, /*n:*/0.000000f, 0.000000f, 1.000000f, + /*v:*/-0.078125f, -0.186776f, 0.355307f, /*n:*/-0.134098f, 0.006256f, 0.990936f, + /*v:*/0.000000f, -0.421151f, 0.339682f, /*n:*/0.000000f, -0.034059f, 0.999390f, + /*v:*/-0.078125f, -0.186776f, 0.355307f, /*n:*/-0.134098f, 0.006256f, 0.990936f, + /*v:*/-0.117188f, -0.428963f, 0.339682f, /*n:*/-0.181524f, -0.045198f, 0.982330f, + /*v:*/0.000000f, -0.421151f, 0.339682f, /*n:*/0.000000f, -0.034059f, 0.999390f, + /*v:*/0.117188f, -0.428963f, 0.339682f, /*n:*/0.181524f, -0.045198f, 0.982330f, + /*v:*/0.078125f, -0.186776f, 0.355307f, /*n:*/0.134098f, 0.006256f, 0.990936f, + /*v:*/0.000000f, -0.421151f, 0.339682f, /*n:*/0.000000f, -0.034059f, 0.999390f, + /*v:*/0.078125f, -0.186776f, 0.355307f, /*n:*/0.134098f, 0.006256f, 0.990936f, + /*v:*/0.000000f, -0.186776f, 0.355307f, /*n:*/0.000000f, 0.000000f, 1.000000f, + /*v:*/0.000000f, -0.421151f, 0.339682f, /*n:*/0.000000f, -0.034059f, 0.999390f, + /*v:*/0.000000f, -0.186776f, 0.355307f, /*n:*/0.000000f, 0.000000f, 1.000000f, + /*v:*/0.000000f, -0.069588f, 0.347494f, /*n:*/0.000000f, -0.475936f, 0.879452f, + /*v:*/-0.078125f, -0.186776f, 0.355307f, /*n:*/-0.134098f, 0.006256f, 0.990936f, + /*v:*/0.000000f, -0.069588f, 0.347494f, /*n:*/0.000000f, -0.475936f, 0.879452f, + /*v:*/-0.085938f, -0.030526f, 0.347494f, /*n:*/-0.500259f, -0.429243f, 0.751946f, + /*v:*/-0.078125f, -0.186776f, 0.355307f, /*n:*/-0.134098f, 0.006256f, 0.990936f, + /*v:*/0.085938f, -0.030526f, 0.347494f, /*n:*/0.500259f, -0.429243f, 0.751946f, + /*v:*/0.000000f, -0.069588f, 0.347494f, /*n:*/0.000000f, -0.475936f, 0.879452f, + /*v:*/0.078125f, -0.186776f, 0.355307f, /*n:*/0.134098f, 0.006256f, 0.990936f, + /*v:*/0.000000f, -0.069588f, 0.347494f, /*n:*/0.000000f, -0.475936f, 0.879452f, + /*v:*/0.000000f, -0.186776f, 0.355307f, /*n:*/0.000000f, 0.000000f, 1.000000f, + /*v:*/0.078125f, -0.186776f, 0.355307f, /*n:*/0.134098f, 0.006256f, 0.990936f, + /*v:*/-0.250000f, -0.444588f, 0.292807f, /*n:*/-0.565172f, -0.029725f, 0.824396f, + /*v:*/-0.265625f, -0.561776f, 0.269370f, /*n:*/-0.555650f, -0.226356f, 0.799982f, + /*v:*/-0.109375f, -0.460213f, 0.339682f, /*n:*/-0.145940f, -0.120182f, 0.981933f, + /*v:*/-0.250000f, -0.444588f, 0.292807f, /*n:*/-0.565172f, -0.029725f, 0.824396f, + /*v:*/-0.109375f, -0.460213f, 0.339682f, /*n:*/-0.145940f, -0.120182f, 0.981933f, + /*v:*/-0.117188f, -0.428963f, 0.339682f, /*n:*/-0.181524f, -0.045198f, 0.982330f, + /*v:*/0.109375f, -0.460213f, 0.339682f, /*n:*/0.145940f, -0.120182f, 0.981933f, + /*v:*/0.265625f, -0.561776f, 0.269370f, /*n:*/0.555650f, -0.226356f, 0.799982f, + /*v:*/0.250000f, -0.444588f, 0.292807f, /*n:*/0.565172f, -0.029725f, 0.824396f, + /*v:*/0.109375f, -0.460213f, 0.339682f, /*n:*/0.145940f, -0.120182f, 0.981933f, + /*v:*/0.250000f, -0.444588f, 0.292807f, /*n:*/0.565172f, -0.029725f, 0.824396f, + /*v:*/0.117188f, -0.428963f, 0.339682f, /*n:*/0.181524f, -0.045198f, 0.982330f, + /*v:*/-0.117188f, -0.428963f, 0.339682f, /*n:*/-0.181524f, -0.045198f, 0.982330f, + /*v:*/-0.078125f, -0.186776f, 0.355307f, /*n:*/-0.134098f, 0.006256f, 0.990936f, + /*v:*/-0.210938f, -0.186776f, 0.316244f, /*n:*/-0.593677f, 0.108158f, 0.797388f, + /*v:*/-0.117188f, -0.428963f, 0.339682f, /*n:*/-0.181524f, -0.045198f, 0.982330f, + /*v:*/-0.210938f, -0.186776f, 0.316244f, /*n:*/-0.593677f, 0.108158f, 0.797388f, + /*v:*/-0.250000f, -0.444588f, 0.292807f, /*n:*/-0.565172f, -0.029725f, 0.824396f, + /*v:*/0.210938f, -0.186776f, 0.316244f, /*n:*/0.593677f, 0.108158f, 0.797388f, + /*v:*/0.078125f, -0.186776f, 0.355307f, /*n:*/0.134098f, 0.006256f, 0.990936f, + /*v:*/0.117188f, -0.428963f, 0.339682f, /*n:*/0.181524f, -0.045198f, 0.982330f, + /*v:*/0.210938f, -0.186776f, 0.316244f, /*n:*/0.593677f, 0.108158f, 0.797388f, + /*v:*/0.117188f, -0.428963f, 0.339682f, /*n:*/0.181524f, -0.045198f, 0.982330f, + /*v:*/0.250000f, -0.444588f, 0.292807f, /*n:*/0.565172f, -0.029725f, 0.824396f, + /*v:*/-0.234375f, -0.655526f, 0.238120f, /*n:*/-0.350230f, -0.639149f, 0.684683f, + /*v:*/-0.117188f, -0.577401f, 0.316245f, /*n:*/-0.130711f, -0.318644f, 0.938810f, + /*v:*/-0.265625f, -0.561776f, 0.269370f, /*n:*/-0.555650f, -0.226356f, 0.799982f, + /*v:*/-0.117188f, -0.577401f, 0.316245f, /*n:*/-0.130711f, -0.318644f, 0.938810f, + /*v:*/-0.109375f, -0.460213f, 0.339682f, /*n:*/-0.145940f, -0.120182f, 0.981933f, + /*v:*/-0.265625f, -0.561776f, 0.269370f, /*n:*/-0.555650f, -0.226356f, 0.799982f, + /*v:*/0.109375f, -0.460213f, 0.339682f, /*n:*/0.145940f, -0.120182f, 0.981933f, + /*v:*/0.117188f, -0.577401f, 0.316245f, /*n:*/0.130711f, -0.318644f, 0.938810f, + /*v:*/0.265625f, -0.561776f, 0.269370f, /*n:*/0.555650f, -0.226356f, 0.799982f, + /*v:*/0.117188f, -0.577401f, 0.316245f, /*n:*/0.130711f, -0.318644f, 0.938810f, + /*v:*/0.234375f, -0.655526f, 0.238120f, /*n:*/0.350230f, -0.639149f, 0.684683f, + /*v:*/0.265625f, -0.561776f, 0.269370f, /*n:*/0.555650f, -0.226356f, 0.799982f, + /*v:*/-0.164062f, -0.671151f, 0.238120f, /*n:*/-0.155370f, -0.758965f, 0.632282f, + /*v:*/-0.062500f, -0.624276f, 0.300620f, /*n:*/0.058870f, -0.378430f, 0.923734f, + /*v:*/-0.117188f, -0.577401f, 0.316245f, /*n:*/-0.130711f, -0.318644f, 0.938810f, + /*v:*/-0.164062f, -0.671151f, 0.238120f, /*n:*/-0.155370f, -0.758965f, 0.632282f, + /*v:*/-0.117188f, -0.577401f, 0.316245f, /*n:*/-0.130711f, -0.318644f, 0.938810f, + /*v:*/-0.234375f, -0.655526f, 0.238120f, /*n:*/-0.350230f, -0.639149f, 0.684683f, + /*v:*/0.117188f, -0.577401f, 0.316245f, /*n:*/0.130711f, -0.318644f, 0.938810f, + /*v:*/0.062500f, -0.624276f, 0.300620f, /*n:*/-0.058870f, -0.378430f, 0.923734f, + /*v:*/0.164062f, -0.671151f, 0.238120f, /*n:*/0.155370f, -0.758965f, 0.632282f, + /*v:*/0.117188f, -0.577401f, 0.316245f, /*n:*/0.130711f, -0.318644f, 0.938810f, + /*v:*/0.164062f, -0.671151f, 0.238120f, /*n:*/0.155370f, -0.758965f, 0.632282f, + /*v:*/0.234375f, -0.655526f, 0.238120f, /*n:*/0.350230f, -0.639149f, 0.684683f, + /*v:*/0.000000f, -0.686776f, 0.245932f, /*n:*/0.000000f, -0.775323f, 0.631550f, + /*v:*/0.000000f, -0.632088f, 0.292807f, /*n:*/0.000000f, -0.346507f, 0.938017f, + /*v:*/-0.062500f, -0.624276f, 0.300620f, /*n:*/0.058870f, -0.378430f, 0.923734f, + /*v:*/0.000000f, -0.686776f, 0.245932f, /*n:*/0.000000f, -0.775323f, 0.631550f, + /*v:*/-0.062500f, -0.624276f, 0.300620f, /*n:*/0.058870f, -0.378430f, 0.923734f, + /*v:*/-0.164062f, -0.671151f, 0.238120f, /*n:*/-0.155370f, -0.758965f, 0.632282f, + /*v:*/0.062500f, -0.624276f, 0.300620f, /*n:*/-0.058870f, -0.378430f, 0.923734f, + /*v:*/0.000000f, -0.632088f, 0.292807f, /*n:*/0.000000f, -0.346507f, 0.938017f, + /*v:*/0.000000f, -0.686776f, 0.245932f, /*n:*/0.000000f, -0.775323f, 0.631550f, + /*v:*/0.062500f, -0.624276f, 0.300620f, /*n:*/-0.058870f, -0.378430f, 0.923734f, + /*v:*/0.000000f, -0.686776f, 0.245932f, /*n:*/0.000000f, -0.775323f, 0.631550f, + /*v:*/0.164062f, -0.671151f, 0.238120f, /*n:*/0.155370f, -0.758965f, 0.632282f, + /*v:*/-0.132812f, 0.469474f, 0.363119f, /*n:*/0.200568f, -0.134953f, 0.970306f, + /*v:*/-0.164062f, 0.399162f, 0.355307f, /*n:*/0.239296f, -0.301187f, 0.923032f, + /*v:*/0.000000f, 0.469474f, 0.370932f, /*n:*/0.000000f, -0.221992f, 0.975036f, + /*v:*/-0.164062f, 0.399162f, 0.355307f, /*n:*/0.239296f, -0.301187f, 0.923032f, + /*v:*/0.000000f, 0.305412f, 0.331869f, /*n:*/0.000000f, 0.064272f, 0.997925f, + /*v:*/0.000000f, 0.469474f, 0.370932f, /*n:*/0.000000f, -0.221992f, 0.975036f, + /*v:*/0.000000f, 0.305412f, 0.331869f, /*n:*/0.000000f, 0.064272f, 0.997925f, + /*v:*/0.164062f, 0.399162f, 0.355307f, /*n:*/-0.239296f, -0.301187f, 0.923032f, + /*v:*/0.000000f, 0.469474f, 0.370932f, /*n:*/0.000000f, -0.221992f, 0.975036f, + /*v:*/0.164062f, 0.399162f, 0.355307f, /*n:*/-0.239296f, -0.301187f, 0.923032f, + /*v:*/0.132812f, 0.469474f, 0.363119f, /*n:*/-0.200568f, -0.134953f, 0.970306f, + /*v:*/0.000000f, 0.469474f, 0.370932f, /*n:*/0.000000f, -0.221992f, 0.975036f, + /*v:*/0.000000f, 0.469474f, 0.370932f, /*n:*/0.000000f, -0.221992f, 0.975036f, + /*v:*/0.000000f, 0.610099f, 0.425619f, /*n:*/0.000000f, -0.082736f, 0.996551f, + /*v:*/-0.125000f, 0.563224f, 0.370932f, /*n:*/-0.031587f, -0.178167f, 0.983459f, + /*v:*/0.000000f, 0.469474f, 0.370932f, /*n:*/0.000000f, -0.221992f, 0.975036f, + /*v:*/-0.125000f, 0.563224f, 0.370932f, /*n:*/-0.031587f, -0.178167f, 0.983459f, + /*v:*/-0.132812f, 0.469474f, 0.363119f, /*n:*/0.200568f, -0.134953f, 0.970306f, + /*v:*/0.125000f, 0.563224f, 0.370932f, /*n:*/0.031587f, -0.178167f, 0.983459f, + /*v:*/0.000000f, 0.610099f, 0.425619f, /*n:*/0.000000f, -0.082736f, 0.996551f, + /*v:*/0.000000f, 0.469474f, 0.370932f, /*n:*/0.000000f, -0.221992f, 0.975036f, + /*v:*/0.125000f, 0.563224f, 0.370932f, /*n:*/0.031587f, -0.178167f, 0.983459f, + /*v:*/0.000000f, 0.469474f, 0.370932f, /*n:*/0.000000f, -0.221992f, 0.975036f, + /*v:*/0.132812f, 0.469474f, 0.363119f, /*n:*/-0.200568f, -0.134953f, 0.970306f, + /*v:*/0.000000f, 0.610099f, 0.425619f, /*n:*/0.000000f, -0.082736f, 0.996551f, + /*v:*/-0.101562f, 0.688224f, 0.449057f, /*n:*/0.061098f, -0.025239f, 0.997803f, + /*v:*/-0.125000f, 0.563224f, 0.370932f, /*n:*/-0.031587f, -0.178167f, 0.983459f, + /*v:*/-0.101562f, 0.688224f, 0.449057f, /*n:*/0.061098f, -0.025239f, 0.997803f, + /*v:*/-0.164062f, 0.672599f, 0.378744f, /*n:*/-0.367840f, -0.283608f, 0.885556f, + /*v:*/-0.125000f, 0.563224f, 0.370932f, /*n:*/-0.031587f, -0.178167f, 0.983459f, + /*v:*/0.164062f, 0.672599f, 0.378744f, /*n:*/0.367840f, -0.283608f, 0.885556f, + /*v:*/0.101562f, 0.688224f, 0.449057f, /*n:*/-0.061098f, -0.025239f, 0.997803f, + /*v:*/0.125000f, 0.563224f, 0.370932f, /*n:*/0.031587f, -0.178167f, 0.983459f, + /*v:*/0.101562f, 0.688224f, 0.449057f, /*n:*/-0.061098f, -0.025239f, 0.997803f, + /*v:*/0.000000f, 0.610099f, 0.425619f, /*n:*/0.000000f, -0.082736f, 0.996551f, + /*v:*/0.125000f, 0.563224f, 0.370932f, /*n:*/0.031587f, -0.178167f, 0.983459f, + /*v:*/0.000000f, 0.305412f, 0.331869f, /*n:*/0.000000f, 0.064272f, 0.997925f, + /*v:*/-0.164062f, 0.399162f, 0.355307f, /*n:*/0.239296f, -0.301187f, 0.923032f, + /*v:*/-0.203125f, 0.352287f, 0.347494f, /*n:*/0.128178f, -0.292001f, 0.947752f, + /*v:*/0.000000f, 0.305412f, 0.331869f, /*n:*/0.000000f, 0.064272f, 0.997925f, + /*v:*/-0.203125f, 0.352287f, 0.347494f, /*n:*/0.128178f, -0.292001f, 0.947752f, + /*v:*/-0.125000f, 0.156974f, 0.417807f, /*n:*/-0.056093f, -0.263863f, 0.962920f, + /*v:*/0.203125f, 0.352287f, 0.347494f, /*n:*/-0.128178f, -0.292001f, 0.947752f, + /*v:*/0.164062f, 0.399162f, 0.355307f, /*n:*/-0.239296f, -0.301187f, 0.923032f, + /*v:*/0.000000f, 0.305412f, 0.331869f, /*n:*/0.000000f, 0.064272f, 0.997925f, + /*v:*/0.203125f, 0.352287f, 0.347494f, /*n:*/-0.128178f, -0.292001f, 0.947752f, + /*v:*/0.000000f, 0.305412f, 0.331869f, /*n:*/0.000000f, 0.064272f, 0.997925f, + /*v:*/0.125000f, 0.156974f, 0.417807f, /*n:*/0.056093f, -0.263863f, 0.962920f, + /*v:*/-0.398438f, 0.211662f, 0.277182f, /*n:*/-0.344279f, -0.546617f, 0.763298f, + /*v:*/-0.125000f, 0.156974f, 0.417807f, /*n:*/-0.056093f, -0.263863f, 0.962920f, + /*v:*/-0.203125f, 0.352287f, 0.347494f, /*n:*/0.128178f, -0.292001f, 0.947752f, + /*v:*/-0.398438f, 0.211662f, 0.277182f, /*n:*/-0.344279f, -0.546617f, 0.763298f, + /*v:*/-0.203125f, 0.352287f, 0.347494f, /*n:*/0.128178f, -0.292001f, 0.947752f, + /*v:*/-0.375000f, 0.274162f, 0.308432f, /*n:*/-0.158940f, -0.498917f, 0.851924f, + /*v:*/0.203125f, 0.352287f, 0.347494f, /*n:*/-0.128178f, -0.292001f, 0.947752f, + /*v:*/0.125000f, 0.156974f, 0.417807f, /*n:*/0.056093f, -0.263863f, 0.962920f, + /*v:*/0.398438f, 0.211662f, 0.277182f, /*n:*/0.344279f, -0.546617f, 0.763298f, + /*v:*/0.203125f, 0.352287f, 0.347494f, /*n:*/-0.128178f, -0.292001f, 0.947752f, + /*v:*/0.398438f, 0.211662f, 0.277182f, /*n:*/0.344279f, -0.546617f, 0.763298f, + /*v:*/0.375000f, 0.274162f, 0.308432f, /*n:*/0.158940f, -0.498917f, 0.851924f, + /*v:*/-0.617188f, 0.313224f, 0.230307f, /*n:*/-0.499130f, -0.376049f, 0.780663f, + /*v:*/-0.398438f, 0.211662f, 0.277182f, /*n:*/-0.344279f, -0.546617f, 0.763298f, + /*v:*/-0.492188f, 0.321037f, 0.277182f, /*n:*/-0.427900f, -0.389508f, 0.815577f, + /*v:*/-0.398438f, 0.211662f, 0.277182f, /*n:*/-0.344279f, -0.546617f, 0.763298f, + /*v:*/-0.375000f, 0.274162f, 0.308432f, /*n:*/-0.158940f, -0.498917f, 0.851924f, + /*v:*/-0.492188f, 0.321037f, 0.277182f, /*n:*/-0.427900f, -0.389508f, 0.815577f, + /*v:*/0.375000f, 0.274162f, 0.308432f, /*n:*/0.158940f, -0.498917f, 0.851924f, + /*v:*/0.398438f, 0.211662f, 0.277182f, /*n:*/0.344279f, -0.546617f, 0.763298f, + /*v:*/0.492188f, 0.321037f, 0.277182f, /*n:*/0.427900f, -0.389508f, 0.815577f, + /*v:*/0.398438f, 0.211662f, 0.277182f, /*n:*/0.344279f, -0.546617f, 0.763298f, + /*v:*/0.617188f, 0.313224f, 0.230307f, /*n:*/0.499130f, -0.376049f, 0.780663f, + /*v:*/0.492188f, 0.321037f, 0.277182f, /*n:*/0.427900f, -0.389508f, 0.815577f, + /*v:*/-0.726562f, 0.461662f, 0.206869f, /*n:*/-0.566546f, -0.318796f, 0.759819f, + /*v:*/-0.617188f, 0.313224f, 0.230307f, /*n:*/-0.499130f, -0.376049f, 0.780663f, + /*v:*/-0.625000f, 0.446037f, 0.253744f, /*n:*/-0.460219f, -0.165105f, 0.872280f, + /*v:*/-0.617188f, 0.313224f, 0.230307f, /*n:*/-0.499130f, -0.376049f, 0.780663f, + /*v:*/-0.492188f, 0.321037f, 0.277182f, /*n:*/-0.427900f, -0.389508f, 0.815577f, + /*v:*/-0.625000f, 0.446037f, 0.253744f, /*n:*/-0.460219f, -0.165105f, 0.872280f, + /*v:*/0.492188f, 0.321037f, 0.277182f, /*n:*/0.427900f, -0.389508f, 0.815577f, + /*v:*/0.617188f, 0.313224f, 0.230307f, /*n:*/0.499130f, -0.376049f, 0.780663f, + /*v:*/0.625000f, 0.446037f, 0.253744f, /*n:*/0.460219f, -0.165105f, 0.872280f, + /*v:*/0.617188f, 0.313224f, 0.230307f, /*n:*/0.499130f, -0.376049f, 0.780663f, + /*v:*/0.726562f, 0.461662f, 0.206869f, /*n:*/0.566546f, -0.318796f, 0.759819f, + /*v:*/0.625000f, 0.446037f, 0.253744f, /*n:*/0.460219f, -0.165105f, 0.872280f, + /*v:*/-0.742188f, 0.633537f, 0.261557f, /*n:*/-0.460707f, -0.144810f, 0.875637f, + /*v:*/-0.726562f, 0.461662f, 0.206869f, /*n:*/-0.566546f, -0.318796f, 0.759819f, + /*v:*/-0.640625f, 0.555412f, 0.253744f, /*n:*/-0.358806f, -0.119175f, 0.925748f, + /*v:*/-0.726562f, 0.461662f, 0.206869f, /*n:*/-0.566546f, -0.318796f, 0.759819f, + /*v:*/-0.625000f, 0.446037f, 0.253744f, /*n:*/-0.460219f, -0.165105f, 0.872280f, + /*v:*/-0.640625f, 0.555412f, 0.253744f, /*n:*/-0.358806f, -0.119175f, 0.925748f, + /*v:*/0.625000f, 0.446037f, 0.253744f, /*n:*/0.460219f, -0.165105f, 0.872280f, + /*v:*/0.726562f, 0.461662f, 0.206869f, /*n:*/0.566546f, -0.318796f, 0.759819f, + /*v:*/0.640625f, 0.555412f, 0.253744f, /*n:*/0.358806f, -0.119175f, 0.925748f, + /*v:*/0.726562f, 0.461662f, 0.206869f, /*n:*/0.566546f, -0.318796f, 0.759819f, + /*v:*/0.742188f, 0.633537f, 0.261557f, /*n:*/0.460707f, -0.144810f, 0.875637f, + /*v:*/0.640625f, 0.555412f, 0.253744f, /*n:*/0.358806f, -0.119175f, 0.925748f, + /*v:*/-0.687500f, 0.672599f, 0.331869f, /*n:*/-0.480117f, -0.183264f, 0.857814f, + /*v:*/-0.742188f, 0.633537f, 0.261557f, /*n:*/-0.460707f, -0.144810f, 0.875637f, + /*v:*/-0.601562f, 0.633537f, 0.269369f, /*n:*/-0.225410f, -0.360759f, 0.904996f, + /*v:*/-0.742188f, 0.633537f, 0.261557f, /*n:*/-0.460707f, -0.144810f, 0.875637f, + /*v:*/-0.640625f, 0.555412f, 0.253744f, /*n:*/-0.358806f, -0.119175f, 0.925748f, + /*v:*/-0.601562f, 0.633537f, 0.269369f, /*n:*/-0.225410f, -0.360759f, 0.904996f, + /*v:*/0.640625f, 0.555412f, 0.253744f, /*n:*/0.358806f, -0.119175f, 0.925748f, + /*v:*/0.742188f, 0.633537f, 0.261557f, /*n:*/0.460707f, -0.144810f, 0.875637f, + /*v:*/0.601562f, 0.633537f, 0.269369f, /*n:*/0.225410f, -0.360759f, 0.904996f, + /*v:*/0.742188f, 0.633537f, 0.261557f, /*n:*/0.460707f, -0.144810f, 0.875637f, + /*v:*/0.687500f, 0.672599f, 0.331869f, /*n:*/0.480117f, -0.183264f, 0.857814f, + /*v:*/0.601562f, 0.633537f, 0.269369f, /*n:*/0.225410f, -0.360759f, 0.904996f, + /*v:*/-0.437500f, 0.805412f, 0.402182f, /*n:*/-0.308451f, 0.003845f, 0.951201f, + /*v:*/-0.687500f, 0.672599f, 0.331869f, /*n:*/-0.480117f, -0.183264f, 0.857814f, + /*v:*/-0.429688f, 0.696037f, 0.324057f, /*n:*/-0.219001f, 0.037141f, 0.975005f, + /*v:*/-0.687500f, 0.672599f, 0.331869f, /*n:*/-0.480117f, -0.183264f, 0.857814f, + /*v:*/-0.601562f, 0.633537f, 0.269369f, /*n:*/-0.225410f, -0.360759f, 0.904996f, + /*v:*/-0.429688f, 0.696037f, 0.324057f, /*n:*/-0.219001f, 0.037141f, 0.975005f, + /*v:*/0.601562f, 0.633537f, 0.269369f, /*n:*/0.225410f, -0.360759f, 0.904996f, + /*v:*/0.687500f, 0.672599f, 0.331869f, /*n:*/0.480117f, -0.183264f, 0.857814f, + /*v:*/0.429688f, 0.696037f, 0.324057f, /*n:*/0.219001f, 0.037141f, 0.975005f, + /*v:*/0.687500f, 0.672599f, 0.331869f, /*n:*/0.480117f, -0.183264f, 0.857814f, + /*v:*/0.437500f, 0.805412f, 0.402182f, /*n:*/0.308451f, 0.003845f, 0.951201f, + /*v:*/0.429688f, 0.696037f, 0.324057f, /*n:*/0.219001f, 0.037141f, 0.975005f, + /*v:*/-0.312500f, 0.899162f, 0.441244f, /*n:*/-0.266579f, 0.216590f, 0.939146f, + /*v:*/-0.437500f, 0.805412f, 0.402182f, /*n:*/-0.308451f, 0.003845f, 0.951201f, + /*v:*/-0.328125f, 0.735099f, 0.347494f, /*n:*/-0.149022f, -0.154149f, 0.976714f, + /*v:*/-0.437500f, 0.805412f, 0.402182f, /*n:*/-0.308451f, 0.003845f, 0.951201f, + /*v:*/-0.429688f, 0.696037f, 0.324057f, /*n:*/-0.219001f, 0.037141f, 0.975005f, + /*v:*/-0.328125f, 0.735099f, 0.347494f, /*n:*/-0.149022f, -0.154149f, 0.976714f, + /*v:*/0.429688f, 0.696037f, 0.324057f, /*n:*/0.219001f, 0.037141f, 0.975005f, + /*v:*/0.437500f, 0.805412f, 0.402182f, /*n:*/0.308451f, 0.003845f, 0.951201f, + /*v:*/0.328125f, 0.735099f, 0.347494f, /*n:*/0.149022f, -0.154149f, 0.976714f, + /*v:*/0.437500f, 0.805412f, 0.402182f, /*n:*/0.308451f, 0.003845f, 0.951201f, + /*v:*/0.312500f, 0.899162f, 0.441244f, /*n:*/0.266579f, 0.216590f, 0.939146f, + /*v:*/0.328125f, 0.735099f, 0.347494f, /*n:*/0.149022f, -0.154149f, 0.976714f, + /*v:*/-0.312500f, 0.899162f, 0.441244f, /*n:*/-0.266579f, 0.216590f, 0.939146f, + /*v:*/-0.328125f, 0.735099f, 0.347494f, /*n:*/-0.149022f, -0.154149f, 0.976714f, + /*v:*/-0.250000f, 0.727287f, 0.363119f, /*n:*/-0.258156f, -0.126499f, 0.957762f, + /*v:*/-0.312500f, 0.899162f, 0.441244f, /*n:*/-0.266579f, 0.216590f, 0.939146f, + /*v:*/-0.250000f, 0.727287f, 0.363119f, /*n:*/-0.258156f, -0.126499f, 0.957762f, + /*v:*/-0.203125f, 0.875724f, 0.456869f, /*n:*/0.157384f, 0.166021f, 0.973449f, + /*v:*/0.250000f, 0.727287f, 0.363119f, /*n:*/0.258156f, -0.126499f, 0.957762f, + /*v:*/0.328125f, 0.735099f, 0.347494f, /*n:*/0.149022f, -0.154149f, 0.976714f, + /*v:*/0.312500f, 0.899162f, 0.441244f, /*n:*/0.266579f, 0.216590f, 0.939146f, + /*v:*/0.250000f, 0.727287f, 0.363119f, /*n:*/0.258156f, -0.126499f, 0.957762f, + /*v:*/0.312500f, 0.899162f, 0.441244f, /*n:*/0.266579f, 0.216590f, 0.939146f, + /*v:*/0.203125f, 0.875724f, 0.456869f, /*n:*/-0.157384f, 0.166021f, 0.973449f, + /*v:*/-0.203125f, 0.875724f, 0.456869f, /*n:*/0.157384f, 0.166021f, 0.973449f, + /*v:*/-0.250000f, 0.727287f, 0.363119f, /*n:*/-0.258156f, -0.126499f, 0.957762f, + /*v:*/-0.101562f, 0.688224f, 0.449057f, /*n:*/0.061098f, -0.025239f, 0.997803f, + /*v:*/-0.250000f, 0.727287f, 0.363119f, /*n:*/-0.258156f, -0.126499f, 0.957762f, + /*v:*/-0.164062f, 0.672599f, 0.378744f, /*n:*/-0.367840f, -0.283608f, 0.885556f, + /*v:*/-0.101562f, 0.688224f, 0.449057f, /*n:*/0.061098f, -0.025239f, 0.997803f, + /*v:*/0.164062f, 0.672599f, 0.378744f, /*n:*/0.367840f, -0.283608f, 0.885556f, + /*v:*/0.250000f, 0.727287f, 0.363119f, /*n:*/0.258156f, -0.126499f, 0.957762f, + /*v:*/0.101562f, 0.688224f, 0.449057f, /*n:*/-0.061098f, -0.025239f, 0.997803f, + /*v:*/0.250000f, 0.727287f, 0.363119f, /*n:*/0.258156f, -0.126499f, 0.957762f, + /*v:*/0.203125f, 0.875724f, 0.456869f, /*n:*/-0.157384f, 0.166021f, 0.973449f, + /*v:*/0.101562f, 0.688224f, 0.449057f, /*n:*/-0.061098f, -0.025239f, 0.997803f, + /*v:*/0.000000f, 0.610099f, 0.425619f, /*n:*/0.000000f, -0.082736f, 0.996551f, + /*v:*/0.000000f, 0.688224f, 0.347494f, /*n:*/0.000000f, 0.963591f, 0.267281f, + /*v:*/-0.101562f, 0.688224f, 0.449057f, /*n:*/0.061098f, -0.025239f, 0.997803f, + /*v:*/0.000000f, 0.688224f, 0.347494f, /*n:*/0.000000f, 0.963591f, 0.267281f, + /*v:*/-0.062500f, 0.750724f, 0.355307f, /*n:*/0.824183f, 0.546770f, 0.147313f, + /*v:*/-0.101562f, 0.688224f, 0.449057f, /*n:*/0.061098f, -0.025239f, 0.997803f, + /*v:*/0.062500f, 0.750724f, 0.355307f, /*n:*/-0.824183f, 0.546770f, 0.147313f, + /*v:*/0.000000f, 0.688224f, 0.347494f, /*n:*/0.000000f, 0.963591f, 0.267281f, + /*v:*/0.101562f, 0.688224f, 0.449057f, /*n:*/-0.061098f, -0.025239f, 0.997803f, + /*v:*/0.000000f, 0.688224f, 0.347494f, /*n:*/0.000000f, 0.963591f, 0.267281f, + /*v:*/0.000000f, 0.610099f, 0.425619f, /*n:*/0.000000f, -0.082736f, 0.996551f, + /*v:*/0.101562f, 0.688224f, 0.449057f, /*n:*/-0.061098f, -0.025239f, 0.997803f, + /*v:*/-0.101562f, 0.688224f, 0.449057f, /*n:*/0.061098f, -0.025239f, 0.997803f, + /*v:*/-0.062500f, 0.750724f, 0.355307f, /*n:*/0.824183f, 0.546770f, 0.147313f, + /*v:*/-0.203125f, 0.875724f, 0.456869f, /*n:*/0.157384f, 0.166021f, 0.973449f, + /*v:*/-0.062500f, 0.750724f, 0.355307f, /*n:*/0.824183f, 0.546770f, 0.147313f, + /*v:*/-0.156250f, 0.977287f, 0.363119f, /*n:*/0.605060f, 0.768029f, 0.209754f, + /*v:*/-0.203125f, 0.875724f, 0.456869f, /*n:*/0.157384f, 0.166021f, 0.973449f, + /*v:*/0.156250f, 0.977287f, 0.363119f, /*n:*/-0.605060f, 0.768029f, 0.209754f, + /*v:*/0.062500f, 0.750724f, 0.355307f, /*n:*/-0.824183f, 0.546770f, 0.147313f, + /*v:*/0.203125f, 0.875724f, 0.456869f, /*n:*/-0.157384f, 0.166021f, 0.973449f, + /*v:*/0.062500f, 0.750724f, 0.355307f, /*n:*/-0.824183f, 0.546770f, 0.147313f, + /*v:*/0.101562f, 0.688224f, 0.449057f, /*n:*/-0.061098f, -0.025239f, 0.997803f, + /*v:*/0.203125f, 0.875724f, 0.456869f, /*n:*/-0.157384f, 0.166021f, 0.973449f, + /*v:*/-0.203125f, 0.875724f, 0.456869f, /*n:*/0.157384f, 0.166021f, 0.973449f, + /*v:*/-0.156250f, 0.977287f, 0.363119f, /*n:*/0.605060f, 0.768029f, 0.209754f, + /*v:*/-0.312500f, 0.899162f, 0.441244f, /*n:*/-0.266579f, 0.216590f, 0.939146f, + /*v:*/-0.156250f, 0.977287f, 0.363119f, /*n:*/0.605060f, 0.768029f, 0.209754f, + /*v:*/-0.320312f, 1.016349f, 0.339682f, /*n:*/-0.231269f, 0.956999f, 0.175054f, + /*v:*/-0.312500f, 0.899162f, 0.441244f, /*n:*/-0.266579f, 0.216590f, 0.939146f, + /*v:*/0.320312f, 1.016349f, 0.339682f, /*n:*/0.231269f, 0.956999f, 0.175054f, + /*v:*/0.156250f, 0.977287f, 0.363119f, /*n:*/-0.605060f, 0.768029f, 0.209754f, + /*v:*/0.312500f, 0.899162f, 0.441244f, /*n:*/0.266579f, 0.216590f, 0.939146f, + /*v:*/0.156250f, 0.977287f, 0.363119f, /*n:*/-0.605060f, 0.768029f, 0.209754f, + /*v:*/0.203125f, 0.875724f, 0.456869f, /*n:*/-0.157384f, 0.166021f, 0.973449f, + /*v:*/0.312500f, 0.899162f, 0.441244f, /*n:*/0.266579f, 0.216590f, 0.939146f, + /*v:*/-0.312500f, 0.899162f, 0.441244f, /*n:*/-0.266579f, 0.216590f, 0.939146f, + /*v:*/-0.320312f, 1.016349f, 0.339682f, /*n:*/-0.231269f, 0.956999f, 0.175054f, + /*v:*/-0.492188f, 0.860099f, 0.292807f, /*n:*/-0.597552f, 0.784722f, 0.164586f, + /*v:*/-0.312500f, 0.899162f, 0.441244f, /*n:*/-0.266579f, 0.216590f, 0.939146f, + /*v:*/-0.492188f, 0.860099f, 0.292807f, /*n:*/-0.597552f, 0.784722f, 0.164586f, + /*v:*/-0.437500f, 0.805412f, 0.402182f, /*n:*/-0.308451f, 0.003845f, 0.951201f, + /*v:*/0.492188f, 0.860099f, 0.292807f, /*n:*/0.597552f, 0.784722f, 0.164586f, + /*v:*/0.320312f, 1.016349f, 0.339682f, /*n:*/0.231269f, 0.956999f, 0.175054f, + /*v:*/0.312500f, 0.899162f, 0.441244f, /*n:*/0.266579f, 0.216590f, 0.939146f, + /*v:*/0.492188f, 0.860099f, 0.292807f, /*n:*/0.597552f, 0.784722f, 0.164586f, + /*v:*/0.312500f, 0.899162f, 0.441244f, /*n:*/0.266579f, 0.216590f, 0.939146f, + /*v:*/0.437500f, 0.805412f, 0.402182f, /*n:*/0.308451f, 0.003845f, 0.951201f, + /*v:*/-0.437500f, 0.805412f, 0.402182f, /*n:*/-0.308451f, 0.003845f, 0.951201f, + /*v:*/-0.492188f, 0.860099f, 0.292807f, /*n:*/-0.597552f, 0.784722f, 0.164586f, + /*v:*/-0.687500f, 0.672599f, 0.331869f, /*n:*/-0.480117f, -0.183264f, 0.857814f, + /*v:*/-0.492188f, 0.860099f, 0.292807f, /*n:*/-0.597552f, 0.784722f, 0.164586f, + /*v:*/-0.710938f, 0.742912f, 0.230307f, /*n:*/-0.517045f, 0.829127f, 0.212531f, + /*v:*/-0.687500f, 0.672599f, 0.331869f, /*n:*/-0.480117f, -0.183264f, 0.857814f, + /*v:*/0.710938f, 0.742912f, 0.230307f, /*n:*/0.517045f, 0.829127f, 0.212531f, + /*v:*/0.492188f, 0.860099f, 0.292807f, /*n:*/0.597552f, 0.784722f, 0.164586f, + /*v:*/0.687500f, 0.672599f, 0.331869f, /*n:*/0.480117f, -0.183264f, 0.857814f, + /*v:*/0.492188f, 0.860099f, 0.292807f, /*n:*/0.597552f, 0.784722f, 0.164586f, + /*v:*/0.437500f, 0.805412f, 0.402182f, /*n:*/0.308451f, 0.003845f, 0.951201f, + /*v:*/0.687500f, 0.672599f, 0.331869f, /*n:*/0.480117f, -0.183264f, 0.857814f, + /*v:*/-0.687500f, 0.672599f, 0.331869f, /*n:*/-0.480117f, -0.183264f, 0.857814f, + /*v:*/-0.710938f, 0.742912f, 0.230307f, /*n:*/-0.517045f, 0.829127f, 0.212531f, + /*v:*/-0.742188f, 0.633537f, 0.261557f, /*n:*/-0.460707f, -0.144810f, 0.875637f, + /*v:*/-0.710938f, 0.742912f, 0.230307f, /*n:*/-0.517045f, 0.829127f, 0.212531f, + /*v:*/-0.859375f, 0.688224f, 0.199057f, /*n:*/-0.845119f, 0.443403f, 0.298502f, + /*v:*/-0.742188f, 0.633537f, 0.261557f, /*n:*/-0.460707f, -0.144810f, 0.875637f, + /*v:*/0.859375f, 0.688224f, 0.199057f, /*n:*/0.845119f, 0.443403f, 0.298502f, + /*v:*/0.710938f, 0.742912f, 0.230307f, /*n:*/0.517045f, 0.829127f, 0.212531f, + /*v:*/0.742188f, 0.633537f, 0.261557f, /*n:*/0.460707f, -0.144810f, 0.875637f, + /*v:*/0.710938f, 0.742912f, 0.230307f, /*n:*/0.517045f, 0.829127f, 0.212531f, + /*v:*/0.687500f, 0.672599f, 0.331869f, /*n:*/0.480117f, -0.183264f, 0.857814f, + /*v:*/0.742188f, 0.633537f, 0.261557f, /*n:*/0.460707f, -0.144810f, 0.875637f, + /*v:*/-0.742188f, 0.633537f, 0.261557f, /*n:*/-0.460707f, -0.144810f, 0.875637f, + /*v:*/-0.859375f, 0.688224f, 0.199057f, /*n:*/-0.845119f, 0.443403f, 0.298502f, + /*v:*/-0.726562f, 0.461662f, 0.206869f, /*n:*/-0.566546f, -0.318796f, 0.759819f, + /*v:*/-0.859375f, 0.688224f, 0.199057f, /*n:*/-0.845119f, 0.443403f, 0.298502f, + /*v:*/-0.828125f, 0.406974f, 0.050619f, /*n:*/-0.906980f, -0.400922f, -0.128941f, + /*v:*/-0.726562f, 0.461662f, 0.206869f, /*n:*/-0.566546f, -0.318796f, 0.759819f, + /*v:*/0.828125f, 0.406974f, 0.050619f, /*n:*/0.906980f, -0.400922f, -0.128941f, + /*v:*/0.859375f, 0.688224f, 0.199057f, /*n:*/0.845119f, 0.443403f, 0.298502f, + /*v:*/0.726562f, 0.461662f, 0.206869f, /*n:*/0.566546f, -0.318796f, 0.759819f, + /*v:*/0.859375f, 0.688224f, 0.199057f, /*n:*/0.845119f, 0.443403f, 0.298502f, + /*v:*/0.742188f, 0.633537f, 0.261557f, /*n:*/0.460707f, -0.144810f, 0.875637f, + /*v:*/0.726562f, 0.461662f, 0.206869f, /*n:*/0.566546f, -0.318796f, 0.759819f, + /*v:*/-0.726562f, 0.461662f, 0.206869f, /*n:*/-0.566546f, -0.318796f, 0.759819f, + /*v:*/-0.828125f, 0.406974f, 0.050619f, /*n:*/-0.906980f, -0.400922f, -0.128941f, + /*v:*/-0.632812f, 0.219474f, 0.144369f, /*n:*/-0.587481f, -0.784875f, 0.196966f, + /*v:*/-0.726562f, 0.461662f, 0.206869f, /*n:*/-0.566546f, -0.318796f, 0.759819f, + /*v:*/-0.632812f, 0.219474f, 0.144369f, /*n:*/-0.587481f, -0.784875f, 0.196966f, + /*v:*/-0.617188f, 0.313224f, 0.230307f, /*n:*/-0.499130f, -0.376049f, 0.780663f, + /*v:*/0.632812f, 0.219474f, 0.144369f, /*n:*/0.587481f, -0.784875f, 0.196966f, + /*v:*/0.828125f, 0.406974f, 0.050619f, /*n:*/0.906980f, -0.400922f, -0.128941f, + /*v:*/0.726562f, 0.461662f, 0.206869f, /*n:*/0.566546f, -0.318796f, 0.759819f, + /*v:*/0.632812f, 0.219474f, 0.144369f, /*n:*/0.587481f, -0.784875f, 0.196966f, + /*v:*/0.726562f, 0.461662f, 0.206869f, /*n:*/0.566546f, -0.318796f, 0.759819f, + /*v:*/0.617188f, 0.313224f, 0.230307f, /*n:*/0.499130f, -0.376049f, 0.780663f, + /*v:*/-0.617188f, 0.313224f, 0.230307f, /*n:*/-0.499130f, -0.376049f, 0.780663f, + /*v:*/-0.632812f, 0.219474f, 0.144369f, /*n:*/-0.587481f, -0.784875f, 0.196966f, + /*v:*/-0.398438f, 0.211662f, 0.277182f, /*n:*/-0.344279f, -0.546617f, 0.763298f, + /*v:*/-0.632812f, 0.219474f, 0.144369f, /*n:*/-0.587481f, -0.784875f, 0.196966f, + /*v:*/-0.437500f, 0.117912f, 0.136557f, /*n:*/-0.348827f, -0.937132f, -0.008148f, + /*v:*/-0.398438f, 0.211662f, 0.277182f, /*n:*/-0.344279f, -0.546617f, 0.763298f, + /*v:*/0.437500f, 0.117912f, 0.136557f, /*n:*/0.348827f, -0.937132f, -0.008148f, + /*v:*/0.632812f, 0.219474f, 0.144369f, /*n:*/0.587481f, -0.784875f, 0.196966f, + /*v:*/0.398438f, 0.211662f, 0.277182f, /*n:*/0.344279f, -0.546617f, 0.763298f, + /*v:*/0.632812f, 0.219474f, 0.144369f, /*n:*/0.587481f, -0.784875f, 0.196966f, + /*v:*/0.617188f, 0.313224f, 0.230307f, /*n:*/0.499130f, -0.376049f, 0.780663f, + /*v:*/0.398438f, 0.211662f, 0.277182f, /*n:*/0.344279f, -0.546617f, 0.763298f, + /*v:*/-0.398438f, 0.211662f, 0.277182f, /*n:*/-0.344279f, -0.546617f, 0.763298f, + /*v:*/-0.437500f, 0.117912f, 0.136557f, /*n:*/-0.348827f, -0.937132f, -0.008148f, + /*v:*/-0.203125f, 0.071037f, 0.167807f, /*n:*/-0.891537f, -0.330668f, 0.309458f, + /*v:*/-0.398438f, 0.211662f, 0.277182f, /*n:*/-0.344279f, -0.546617f, 0.763298f, + /*v:*/-0.203125f, 0.071037f, 0.167807f, /*n:*/-0.891537f, -0.330668f, 0.309458f, + /*v:*/-0.125000f, 0.156974f, 0.417807f, /*n:*/-0.056093f, -0.263863f, 0.962920f, + /*v:*/0.203125f, 0.071037f, 0.167807f, /*n:*/0.891537f, -0.330668f, 0.309458f, + /*v:*/0.437500f, 0.117912f, 0.136557f, /*n:*/0.348827f, -0.937132f, -0.008148f, + /*v:*/0.398438f, 0.211662f, 0.277182f, /*n:*/0.344279f, -0.546617f, 0.763298f, + /*v:*/0.203125f, 0.071037f, 0.167807f, /*n:*/0.891537f, -0.330668f, 0.309458f, + /*v:*/0.398438f, 0.211662f, 0.277182f, /*n:*/0.344279f, -0.546617f, 0.763298f, + /*v:*/0.125000f, 0.156974f, 0.417807f, /*n:*/0.056093f, -0.263863f, 0.962920f, + /*v:*/-0.250000f, -0.444588f, 0.292807f, /*n:*/-0.565172f, -0.029725f, 0.824396f, + /*v:*/-0.210938f, -0.186776f, 0.316244f, /*n:*/-0.593677f, 0.108158f, 0.797388f, + /*v:*/-0.312500f, -0.178963f, 0.175619f, /*n:*/-0.955718f, 0.249184f, 0.156468f, + /*v:*/-0.250000f, -0.444588f, 0.292807f, /*n:*/-0.565172f, -0.029725f, 0.824396f, + /*v:*/-0.312500f, -0.178963f, 0.175619f, /*n:*/-0.955718f, 0.249184f, 0.156468f, + /*v:*/-0.351562f, -0.436776f, 0.175619f, /*n:*/-0.972808f, 0.100314f, 0.208716f, + /*v:*/0.312500f, -0.178963f, 0.175619f, /*n:*/0.955718f, 0.249184f, 0.156468f, + /*v:*/0.210938f, -0.186776f, 0.316244f, /*n:*/0.593677f, 0.108158f, 0.797388f, + /*v:*/0.250000f, -0.444588f, 0.292807f, /*n:*/0.565172f, -0.029725f, 0.824396f, + /*v:*/0.312500f, -0.178963f, 0.175619f, /*n:*/0.955718f, 0.249184f, 0.156468f, + /*v:*/0.250000f, -0.444588f, 0.292807f, /*n:*/0.565172f, -0.029725f, 0.824396f, + /*v:*/0.351562f, -0.436776f, 0.175619f, /*n:*/0.972808f, 0.100314f, 0.208716f, + /*v:*/-0.265625f, -0.561776f, 0.269370f, /*n:*/-0.555650f, -0.226356f, 0.799982f, + /*v:*/-0.250000f, -0.444588f, 0.292807f, /*n:*/-0.565172f, -0.029725f, 0.824396f, + /*v:*/-0.351562f, -0.436776f, 0.175619f, /*n:*/-0.972808f, 0.100314f, 0.208716f, + /*v:*/-0.265625f, -0.561776f, 0.269370f, /*n:*/-0.555650f, -0.226356f, 0.799982f, + /*v:*/-0.351562f, -0.436776f, 0.175619f, /*n:*/-0.972808f, 0.100314f, 0.208716f, + /*v:*/-0.367188f, -0.632088f, 0.136557f, /*n:*/-0.945708f, -0.257851f, 0.197699f, + /*v:*/0.351562f, -0.436776f, 0.175619f, /*n:*/0.972808f, 0.100314f, 0.208716f, + /*v:*/0.250000f, -0.444588f, 0.292807f, /*n:*/0.565172f, -0.029725f, 0.824396f, + /*v:*/0.265625f, -0.561776f, 0.269370f, /*n:*/0.555650f, -0.226356f, 0.799982f, + /*v:*/0.351562f, -0.436776f, 0.175619f, /*n:*/0.972808f, 0.100314f, 0.208716f, + /*v:*/0.265625f, -0.561776f, 0.269370f, /*n:*/0.555650f, -0.226356f, 0.799982f, + /*v:*/0.367188f, -0.632088f, 0.136557f, /*n:*/0.945708f, -0.257851f, 0.197699f, + /*v:*/-0.234375f, -0.655526f, 0.238120f, /*n:*/-0.350230f, -0.639149f, 0.684683f, + /*v:*/-0.265625f, -0.561776f, 0.269370f, /*n:*/-0.555650f, -0.226356f, 0.799982f, + /*v:*/-0.367188f, -0.632088f, 0.136557f, /*n:*/-0.945708f, -0.257851f, 0.197699f, + /*v:*/-0.234375f, -0.655526f, 0.238120f, /*n:*/-0.350230f, -0.639149f, 0.684683f, + /*v:*/-0.367188f, -0.632088f, 0.136557f, /*n:*/-0.945708f, -0.257851f, 0.197699f, + /*v:*/-0.328125f, -0.686776f, 0.128745f, /*n:*/-0.526658f, -0.834651f, 0.161107f, + /*v:*/0.367188f, -0.632088f, 0.136557f, /*n:*/0.945708f, -0.257851f, 0.197699f, + /*v:*/0.265625f, -0.561776f, 0.269370f, /*n:*/0.555650f, -0.226356f, 0.799982f, + /*v:*/0.234375f, -0.655526f, 0.238120f, /*n:*/0.350230f, -0.639149f, 0.684683f, + /*v:*/0.367188f, -0.632088f, 0.136557f, /*n:*/0.945708f, -0.257851f, 0.197699f, + /*v:*/0.234375f, -0.655526f, 0.238120f, /*n:*/0.350230f, -0.639149f, 0.684683f, + /*v:*/0.328125f, -0.686776f, 0.128745f, /*n:*/0.526658f, -0.834651f, 0.161107f, + /*v:*/-0.164062f, -0.671151f, 0.238120f, /*n:*/-0.155370f, -0.758965f, 0.632282f, + /*v:*/-0.234375f, -0.655526f, 0.238120f, /*n:*/-0.350230f, -0.639149f, 0.684683f, + /*v:*/-0.179688f, -0.710213f, 0.159995f, /*n:*/-0.159551f, -0.975249f, 0.152898f, + /*v:*/-0.234375f, -0.655526f, 0.238120f, /*n:*/-0.350230f, -0.639149f, 0.684683f, + /*v:*/-0.328125f, -0.686776f, 0.128745f, /*n:*/-0.526658f, -0.834651f, 0.161107f, + /*v:*/-0.179688f, -0.710213f, 0.159995f, /*n:*/-0.159551f, -0.975249f, 0.152898f, + /*v:*/0.328125f, -0.686776f, 0.128745f, /*n:*/0.526658f, -0.834651f, 0.161107f, + /*v:*/0.234375f, -0.655526f, 0.238120f, /*n:*/0.350230f, -0.639149f, 0.684683f, + /*v:*/0.179688f, -0.710213f, 0.159995f, /*n:*/0.159551f, -0.975249f, 0.152898f, + /*v:*/0.234375f, -0.655526f, 0.238120f, /*n:*/0.350230f, -0.639149f, 0.684683f, + /*v:*/0.164062f, -0.671151f, 0.238120f, /*n:*/0.155370f, -0.758965f, 0.632282f, + /*v:*/0.179688f, -0.710213f, 0.159995f, /*n:*/0.159551f, -0.975249f, 0.152898f, + /*v:*/0.000000f, -0.686776f, 0.245932f, /*n:*/0.000000f, -0.775323f, 0.631550f, + /*v:*/-0.164062f, -0.671151f, 0.238120f, /*n:*/-0.155370f, -0.758965f, 0.632282f, + /*v:*/0.000000f, -0.725838f, 0.183432f, /*n:*/0.000000f, -0.967650f, 0.252266f, + /*v:*/-0.164062f, -0.671151f, 0.238120f, /*n:*/-0.155370f, -0.758965f, 0.632282f, + /*v:*/-0.179688f, -0.710213f, 0.159995f, /*n:*/-0.159551f, -0.975249f, 0.152898f, + /*v:*/0.000000f, -0.725838f, 0.183432f, /*n:*/0.000000f, -0.967650f, 0.252266f, + /*v:*/0.179688f, -0.710213f, 0.159995f, /*n:*/0.159551f, -0.975249f, 0.152898f, + /*v:*/0.164062f, -0.671151f, 0.238120f, /*n:*/0.155370f, -0.758965f, 0.632282f, + /*v:*/0.000000f, -0.725838f, 0.183432f, /*n:*/0.000000f, -0.967650f, 0.252266f, + /*v:*/0.164062f, -0.671151f, 0.238120f, /*n:*/0.155370f, -0.758965f, 0.632282f, + /*v:*/0.000000f, -0.686776f, 0.245932f, /*n:*/0.000000f, -0.775323f, 0.631550f, + /*v:*/0.000000f, -0.725838f, 0.183432f, /*n:*/0.000000f, -0.967650f, 0.252266f, + /*v:*/-0.476562f, 0.500724f, 0.378744f, /*n:*/-0.964446f, -0.012665f, 0.263863f, + /*v:*/-0.468750f, 0.500724f, 0.363119f, /*n:*/-0.969298f, -0.011811f, 0.245552f, + /*v:*/-0.437500f, 0.422599f, 0.370932f, /*n:*/-0.728996f, -0.656575f, 0.193426f, + /*v:*/-0.476562f, 0.500724f, 0.378744f, /*n:*/-0.964446f, -0.012665f, 0.263863f, + /*v:*/-0.437500f, 0.422599f, 0.370932f, /*n:*/-0.728996f, -0.656575f, 0.193426f, + /*v:*/-0.445312f, 0.414787f, 0.386557f, /*n:*/-0.715171f, -0.662465f, 0.222724f, + /*v:*/0.437500f, 0.422599f, 0.370932f, /*n:*/0.728996f, -0.656575f, 0.193426f, + /*v:*/0.468750f, 0.500724f, 0.363119f, /*n:*/0.969298f, -0.011811f, 0.245552f, + /*v:*/0.476562f, 0.500724f, 0.378744f, /*n:*/0.964446f, -0.012665f, 0.263863f, + /*v:*/0.437500f, 0.422599f, 0.370932f, /*n:*/0.728996f, -0.656575f, 0.193426f, + /*v:*/0.476562f, 0.500724f, 0.378744f, /*n:*/0.964446f, -0.012665f, 0.263863f, + /*v:*/0.445312f, 0.414787f, 0.386557f, /*n:*/0.715171f, -0.662465f, 0.222724f, + /*v:*/-0.445312f, 0.414787f, 0.386557f, /*n:*/-0.715171f, -0.662465f, 0.222724f, + /*v:*/-0.437500f, 0.422599f, 0.370932f, /*n:*/-0.728996f, -0.656575f, 0.193426f, + /*v:*/-0.351562f, 0.391349f, 0.386557f, /*n:*/-0.031404f, -0.966948f, 0.252907f, + /*v:*/-0.445312f, 0.414787f, 0.386557f, /*n:*/-0.715171f, -0.662465f, 0.222724f, + /*v:*/-0.351562f, 0.391349f, 0.386557f, /*n:*/-0.031404f, -0.966948f, 0.252907f, + /*v:*/-0.351562f, 0.375724f, 0.409994f, /*n:*/-0.042543f, -0.940336f, 0.337474f, + /*v:*/0.351562f, 0.391349f, 0.386557f, /*n:*/0.031404f, -0.966948f, 0.252907f, + /*v:*/0.437500f, 0.422599f, 0.370932f, /*n:*/0.728996f, -0.656575f, 0.193426f, + /*v:*/0.445312f, 0.414787f, 0.386557f, /*n:*/0.715171f, -0.662465f, 0.222724f, + /*v:*/0.351562f, 0.391349f, 0.386557f, /*n:*/0.031404f, -0.966948f, 0.252907f, + /*v:*/0.445312f, 0.414787f, 0.386557f, /*n:*/0.715171f, -0.662465f, 0.222724f, + /*v:*/0.351562f, 0.375724f, 0.409994f, /*n:*/0.042543f, -0.940336f, 0.337474f, + /*v:*/-0.351562f, 0.375724f, 0.409994f, /*n:*/-0.042543f, -0.940336f, 0.337474f, + /*v:*/-0.351562f, 0.391349f, 0.386557f, /*n:*/-0.031404f, -0.966948f, 0.252907f, + /*v:*/-0.273438f, 0.422599f, 0.402182f, /*n:*/0.653066f, -0.686636f, 0.319315f, + /*v:*/-0.351562f, 0.375724f, 0.409994f, /*n:*/-0.042543f, -0.940336f, 0.337474f, + /*v:*/-0.273438f, 0.422599f, 0.402182f, /*n:*/0.653066f, -0.686636f, 0.319315f, + /*v:*/-0.265625f, 0.414787f, 0.425619f, /*n:*/0.615864f, -0.636616f, 0.464095f, + /*v:*/0.273438f, 0.422599f, 0.402182f, /*n:*/-0.653066f, -0.686636f, 0.319315f, + /*v:*/0.351562f, 0.391349f, 0.386557f, /*n:*/0.031404f, -0.966948f, 0.252907f, + /*v:*/0.351562f, 0.375724f, 0.409994f, /*n:*/0.042543f, -0.940336f, 0.337474f, + /*v:*/0.273438f, 0.422599f, 0.402182f, /*n:*/-0.653066f, -0.686636f, 0.319315f, + /*v:*/0.351562f, 0.375724f, 0.409994f, /*n:*/0.042543f, -0.940336f, 0.337474f, + /*v:*/0.265625f, 0.414787f, 0.425619f, /*n:*/-0.615864f, -0.636616f, 0.464095f, + /*v:*/-0.265625f, 0.414787f, 0.425619f, /*n:*/0.615864f, -0.636616f, 0.464095f, + /*v:*/-0.273438f, 0.422599f, 0.402182f, /*n:*/0.653066f, -0.686636f, 0.319315f, + /*v:*/-0.242188f, 0.500724f, 0.402182f, /*n:*/0.952574f, -0.013123f, 0.303995f, + /*v:*/-0.265625f, 0.414787f, 0.425619f, /*n:*/0.615864f, -0.636616f, 0.464095f, + /*v:*/-0.242188f, 0.500724f, 0.402182f, /*n:*/0.952574f, -0.013123f, 0.303995f, + /*v:*/-0.226562f, 0.500724f, 0.425619f, /*n:*/0.926969f, -0.012940f, 0.374889f, + /*v:*/0.242188f, 0.500724f, 0.402182f, /*n:*/-0.952574f, -0.013123f, 0.303995f, + /*v:*/0.273438f, 0.422599f, 0.402182f, /*n:*/-0.653066f, -0.686636f, 0.319315f, + /*v:*/0.265625f, 0.414787f, 0.425619f, /*n:*/-0.615864f, -0.636616f, 0.464095f, + /*v:*/0.242188f, 0.500724f, 0.402182f, /*n:*/-0.952574f, -0.013123f, 0.303995f, + /*v:*/0.265625f, 0.414787f, 0.425619f, /*n:*/-0.615864f, -0.636616f, 0.464095f, + /*v:*/0.226562f, 0.500724f, 0.425619f, /*n:*/-0.926969f, -0.012940f, 0.374889f, + /*v:*/-0.226562f, 0.500724f, 0.425619f, /*n:*/0.926969f, -0.012940f, 0.374889f, + /*v:*/-0.242188f, 0.500724f, 0.402182f, /*n:*/0.952574f, -0.013123f, 0.303995f, + /*v:*/-0.265625f, 0.594474f, 0.425619f, /*n:*/0.623676f, 0.628529f, 0.464675f, + /*v:*/-0.242188f, 0.500724f, 0.402182f, /*n:*/0.952574f, -0.013123f, 0.303995f, + /*v:*/-0.273438f, 0.586662f, 0.402182f, /*n:*/0.664357f, 0.682058f, 0.305582f, + /*v:*/-0.265625f, 0.594474f, 0.425619f, /*n:*/0.623676f, 0.628529f, 0.464675f, + /*v:*/0.273438f, 0.586662f, 0.402182f, /*n:*/-0.664357f, 0.682058f, 0.305582f, + /*v:*/0.242188f, 0.500724f, 0.402182f, /*n:*/-0.952574f, -0.013123f, 0.303995f, + /*v:*/0.265625f, 0.594474f, 0.425619f, /*n:*/-0.623676f, 0.628529f, 0.464675f, + /*v:*/0.242188f, 0.500724f, 0.402182f, /*n:*/-0.952574f, -0.013123f, 0.303995f, + /*v:*/0.226562f, 0.500724f, 0.425619f, /*n:*/-0.926969f, -0.012940f, 0.374889f, + /*v:*/0.265625f, 0.594474f, 0.425619f, /*n:*/-0.623676f, 0.628529f, 0.464675f, + /*v:*/-0.265625f, 0.594474f, 0.425619f, /*n:*/0.623676f, 0.628529f, 0.464675f, + /*v:*/-0.273438f, 0.586662f, 0.402182f, /*n:*/0.664357f, 0.682058f, 0.305582f, + /*v:*/-0.351562f, 0.633537f, 0.409994f, /*n:*/-0.043153f, 0.938902f, 0.341441f, + /*v:*/-0.273438f, 0.586662f, 0.402182f, /*n:*/0.664357f, 0.682058f, 0.305582f, + /*v:*/-0.351562f, 0.617912f, 0.386557f, /*n:*/-0.025727f, 0.972564f, 0.231147f, + /*v:*/-0.351562f, 0.633537f, 0.409994f, /*n:*/-0.043153f, 0.938902f, 0.341441f, + /*v:*/0.351562f, 0.617912f, 0.386557f, /*n:*/0.025727f, 0.972564f, 0.231147f, + /*v:*/0.273438f, 0.586662f, 0.402182f, /*n:*/-0.664357f, 0.682058f, 0.305582f, + /*v:*/0.351562f, 0.633537f, 0.409994f, /*n:*/0.043153f, 0.938902f, 0.341441f, + /*v:*/0.273438f, 0.586662f, 0.402182f, /*n:*/-0.664357f, 0.682058f, 0.305582f, + /*v:*/0.265625f, 0.594474f, 0.425619f, /*n:*/-0.623676f, 0.628529f, 0.464675f, + /*v:*/0.351562f, 0.633537f, 0.409994f, /*n:*/0.043153f, 0.938902f, 0.341441f, + /*v:*/-0.351562f, 0.633537f, 0.409994f, /*n:*/-0.043153f, 0.938902f, 0.341441f, + /*v:*/-0.351562f, 0.617912f, 0.386557f, /*n:*/-0.025727f, 0.972564f, 0.231147f, + /*v:*/-0.445312f, 0.594474f, 0.386557f, /*n:*/-0.721610f, 0.655568f, 0.222388f, + /*v:*/-0.351562f, 0.617912f, 0.386557f, /*n:*/-0.025727f, 0.972564f, 0.231147f, + /*v:*/-0.437500f, 0.586662f, 0.370932f, /*n:*/-0.736381f, 0.652089f, 0.180273f, + /*v:*/-0.445312f, 0.594474f, 0.386557f, /*n:*/-0.721610f, 0.655568f, 0.222388f, + /*v:*/0.437500f, 0.586662f, 0.370932f, /*n:*/0.736381f, 0.652089f, 0.180273f, + /*v:*/0.351562f, 0.617912f, 0.386557f, /*n:*/0.025727f, 0.972564f, 0.231147f, + /*v:*/0.445312f, 0.594474f, 0.386557f, /*n:*/0.721610f, 0.655568f, 0.222388f, + /*v:*/0.351562f, 0.617912f, 0.386557f, /*n:*/0.025727f, 0.972564f, 0.231147f, + /*v:*/0.351562f, 0.633537f, 0.409994f, /*n:*/0.043153f, 0.938902f, 0.341441f, + /*v:*/0.445312f, 0.594474f, 0.386557f, /*n:*/0.721610f, 0.655568f, 0.222388f, + /*v:*/-0.445312f, 0.594474f, 0.386557f, /*n:*/-0.721610f, 0.655568f, 0.222388f, + /*v:*/-0.437500f, 0.586662f, 0.370932f, /*n:*/-0.736381f, 0.652089f, 0.180273f, + /*v:*/-0.476562f, 0.500724f, 0.378744f, /*n:*/-0.964446f, -0.012665f, 0.263863f, + /*v:*/-0.437500f, 0.586662f, 0.370932f, /*n:*/-0.736381f, 0.652089f, 0.180273f, + /*v:*/-0.468750f, 0.500724f, 0.363119f, /*n:*/-0.969298f, -0.011811f, 0.245552f, + /*v:*/-0.476562f, 0.500724f, 0.378744f, /*n:*/-0.964446f, -0.012665f, 0.263863f, + /*v:*/0.468750f, 0.500724f, 0.363119f, /*n:*/0.969298f, -0.011811f, 0.245552f, + /*v:*/0.437500f, 0.586662f, 0.370932f, /*n:*/0.736381f, 0.652089f, 0.180273f, + /*v:*/0.476562f, 0.500724f, 0.378744f, /*n:*/0.964446f, -0.012665f, 0.263863f, + /*v:*/0.437500f, 0.586662f, 0.370932f, /*n:*/0.736381f, 0.652089f, 0.180273f, + /*v:*/0.445312f, 0.594474f, 0.386557f, /*n:*/0.721610f, 0.655568f, 0.222388f, + /*v:*/0.476562f, 0.500724f, 0.378744f, /*n:*/0.964446f, -0.012665f, 0.263863f, + /*v:*/-0.562500f, 0.500724f, 0.277182f, /*n:*/-0.800104f, -0.002838f, 0.599841f, + /*v:*/-0.468750f, 0.500724f, 0.363119f, /*n:*/-0.969298f, -0.011811f, 0.245552f, + /*v:*/-0.500000f, 0.649162f, 0.292807f, /*n:*/-0.610218f, 0.495590f, 0.618061f, + /*v:*/-0.468750f, 0.500724f, 0.363119f, /*n:*/-0.969298f, -0.011811f, 0.245552f, + /*v:*/-0.437500f, 0.586662f, 0.370932f, /*n:*/-0.736381f, 0.652089f, 0.180273f, + /*v:*/-0.500000f, 0.649162f, 0.292807f, /*n:*/-0.610218f, 0.495590f, 0.618061f, + /*v:*/0.437500f, 0.586662f, 0.370932f, /*n:*/0.736381f, 0.652089f, 0.180273f, + /*v:*/0.468750f, 0.500724f, 0.363119f, /*n:*/0.969298f, -0.011811f, 0.245552f, + /*v:*/0.500000f, 0.649162f, 0.292807f, /*n:*/0.610218f, 0.495590f, 0.618061f, + /*v:*/0.468750f, 0.500724f, 0.363119f, /*n:*/0.969298f, -0.011811f, 0.245552f, + /*v:*/0.562500f, 0.500724f, 0.277182f, /*n:*/0.800104f, -0.002838f, 0.599841f, + /*v:*/0.500000f, 0.649162f, 0.292807f, /*n:*/0.610218f, 0.495590f, 0.618061f, + /*v:*/-0.625000f, 0.500724f, 0.167807f, /*n:*/-0.868221f, -0.004730f, 0.496109f, + /*v:*/-0.562500f, 0.500724f, 0.277182f, /*n:*/-0.800104f, -0.002838f, 0.599841f, + /*v:*/-0.546875f, 0.696037f, 0.183432f, /*n:*/-0.668203f, 0.537095f, 0.514786f, + /*v:*/-0.562500f, 0.500724f, 0.277182f, /*n:*/-0.800104f, -0.002838f, 0.599841f, + /*v:*/-0.500000f, 0.649162f, 0.292807f, /*n:*/-0.610218f, 0.495590f, 0.618061f, + /*v:*/-0.546875f, 0.696037f, 0.183432f, /*n:*/-0.668203f, 0.537095f, 0.514786f, + /*v:*/0.500000f, 0.649162f, 0.292807f, /*n:*/0.610218f, 0.495590f, 0.618061f, + /*v:*/0.562500f, 0.500724f, 0.277182f, /*n:*/0.800104f, -0.002838f, 0.599841f, + /*v:*/0.546875f, 0.696037f, 0.183432f, /*n:*/0.668203f, 0.537095f, 0.514786f, + /*v:*/0.562500f, 0.500724f, 0.277182f, /*n:*/0.800104f, -0.002838f, 0.599841f, + /*v:*/0.625000f, 0.500724f, 0.167807f, /*n:*/0.868221f, -0.004730f, 0.496109f, + /*v:*/0.546875f, 0.696037f, 0.183432f, /*n:*/0.668203f, 0.537095f, 0.514786f, + /*v:*/-0.546875f, 0.696037f, 0.183432f, /*n:*/-0.668203f, 0.537095f, 0.514786f, + /*v:*/-0.500000f, 0.649162f, 0.292807f, /*n:*/-0.610218f, 0.495590f, 0.618061f, + /*v:*/-0.351562f, 0.774162f, 0.222494f, /*n:*/-0.125736f, 0.841578f, 0.525254f, + /*v:*/-0.500000f, 0.649162f, 0.292807f, /*n:*/-0.610218f, 0.495590f, 0.618061f, + /*v:*/-0.351562f, 0.711662f, 0.324057f, /*n:*/-0.103061f, 0.740196f, 0.664388f, + /*v:*/-0.351562f, 0.774162f, 0.222494f, /*n:*/-0.125736f, 0.841578f, 0.525254f, + /*v:*/0.351562f, 0.711662f, 0.324057f, /*n:*/0.103061f, 0.740196f, 0.664388f, + /*v:*/0.500000f, 0.649162f, 0.292807f, /*n:*/0.610218f, 0.495590f, 0.618061f, + /*v:*/0.351562f, 0.774162f, 0.222494f, /*n:*/0.125736f, 0.841578f, 0.525254f, + /*v:*/0.500000f, 0.649162f, 0.292807f, /*n:*/0.610218f, 0.495590f, 0.618061f, + /*v:*/0.546875f, 0.696037f, 0.183432f, /*n:*/0.668203f, 0.537095f, 0.514786f, + /*v:*/0.351562f, 0.774162f, 0.222494f, /*n:*/0.125736f, 0.841578f, 0.525254f, + /*v:*/-0.500000f, 0.649162f, 0.292807f, /*n:*/-0.610218f, 0.495590f, 0.618061f, + /*v:*/-0.437500f, 0.586662f, 0.370932f, /*n:*/-0.736381f, 0.652089f, 0.180273f, + /*v:*/-0.351562f, 0.711662f, 0.324057f, /*n:*/-0.103061f, 0.740196f, 0.664388f, + /*v:*/-0.437500f, 0.586662f, 0.370932f, /*n:*/-0.736381f, 0.652089f, 0.180273f, + /*v:*/-0.351562f, 0.617912f, 0.386557f, /*n:*/-0.025727f, 0.972564f, 0.231147f, + /*v:*/-0.351562f, 0.711662f, 0.324057f, /*n:*/-0.103061f, 0.740196f, 0.664388f, + /*v:*/0.351562f, 0.617912f, 0.386557f, /*n:*/0.025727f, 0.972564f, 0.231147f, + /*v:*/0.437500f, 0.586662f, 0.370932f, /*n:*/0.736381f, 0.652089f, 0.180273f, + /*v:*/0.351562f, 0.711662f, 0.324057f, /*n:*/0.103061f, 0.740196f, 0.664388f, + /*v:*/0.437500f, 0.586662f, 0.370932f, /*n:*/0.736381f, 0.652089f, 0.180273f, + /*v:*/0.500000f, 0.649162f, 0.292807f, /*n:*/0.610218f, 0.495590f, 0.618061f, + /*v:*/0.351562f, 0.711662f, 0.324057f, /*n:*/0.103061f, 0.740196f, 0.664388f, + /*v:*/-0.351562f, 0.711662f, 0.324057f, /*n:*/-0.103061f, 0.740196f, 0.664388f, + /*v:*/-0.351562f, 0.617912f, 0.386557f, /*n:*/-0.025727f, 0.972564f, 0.231147f, + /*v:*/-0.203125f, 0.649162f, 0.347494f, /*n:*/0.455947f, 0.522202f, 0.720664f, + /*v:*/-0.351562f, 0.617912f, 0.386557f, /*n:*/-0.025727f, 0.972564f, 0.231147f, + /*v:*/-0.273438f, 0.586662f, 0.402182f, /*n:*/0.664357f, 0.682058f, 0.305582f, + /*v:*/-0.203125f, 0.649162f, 0.347494f, /*n:*/0.455947f, 0.522202f, 0.720664f, + /*v:*/0.273438f, 0.586662f, 0.402182f, /*n:*/-0.664357f, 0.682058f, 0.305582f, + /*v:*/0.351562f, 0.617912f, 0.386557f, /*n:*/0.025727f, 0.972564f, 0.231147f, + /*v:*/0.203125f, 0.649162f, 0.347494f, /*n:*/-0.455947f, 0.522202f, 0.720664f, + /*v:*/0.351562f, 0.617912f, 0.386557f, /*n:*/0.025727f, 0.972564f, 0.231147f, + /*v:*/0.351562f, 0.711662f, 0.324057f, /*n:*/0.103061f, 0.740196f, 0.664388f, + /*v:*/0.203125f, 0.649162f, 0.347494f, /*n:*/-0.455947f, 0.522202f, 0.720664f, + /*v:*/-0.351562f, 0.774162f, 0.222494f, /*n:*/-0.125736f, 0.841578f, 0.525254f, + /*v:*/-0.351562f, 0.711662f, 0.324057f, /*n:*/-0.103061f, 0.740196f, 0.664388f, + /*v:*/-0.156250f, 0.696037f, 0.253744f, /*n:*/0.530595f, 0.625751f, 0.571703f, + /*v:*/-0.351562f, 0.711662f, 0.324057f, /*n:*/-0.103061f, 0.740196f, 0.664388f, + /*v:*/-0.203125f, 0.649162f, 0.347494f, /*n:*/0.455947f, 0.522202f, 0.720664f, + /*v:*/-0.156250f, 0.696037f, 0.253744f, /*n:*/0.530595f, 0.625751f, 0.571703f, + /*v:*/0.203125f, 0.649162f, 0.347494f, /*n:*/-0.455947f, 0.522202f, 0.720664f, + /*v:*/0.351562f, 0.711662f, 0.324057f, /*n:*/0.103061f, 0.740196f, 0.664388f, + /*v:*/0.156250f, 0.696037f, 0.253744f, /*n:*/-0.530595f, 0.625751f, 0.571703f, + /*v:*/0.351562f, 0.711662f, 0.324057f, /*n:*/0.103061f, 0.740196f, 0.664388f, + /*v:*/0.351562f, 0.774162f, 0.222494f, /*n:*/0.125736f, 0.841578f, 0.525254f, + /*v:*/0.156250f, 0.696037f, 0.253744f, /*n:*/-0.530595f, 0.625751f, 0.571703f, + /*v:*/-0.156250f, 0.696037f, 0.253744f, /*n:*/0.530595f, 0.625751f, 0.571703f, + /*v:*/-0.203125f, 0.649162f, 0.347494f, /*n:*/0.455947f, 0.522202f, 0.720664f, + /*v:*/-0.078125f, 0.500724f, 0.261557f, /*n:*/0.809717f, -0.006989f, 0.586749f, + /*v:*/-0.203125f, 0.649162f, 0.347494f, /*n:*/0.455947f, 0.522202f, 0.720664f, + /*v:*/-0.140625f, 0.500724f, 0.347494f, /*n:*/0.689291f, -0.004578f, 0.724418f, + /*v:*/-0.078125f, 0.500724f, 0.261557f, /*n:*/0.809717f, -0.006989f, 0.586749f, + /*v:*/0.140625f, 0.500724f, 0.347494f, /*n:*/-0.689291f, -0.004578f, 0.724418f, + /*v:*/0.203125f, 0.649162f, 0.347494f, /*n:*/-0.455947f, 0.522202f, 0.720664f, + /*v:*/0.078125f, 0.500724f, 0.261557f, /*n:*/-0.809717f, -0.006989f, 0.586749f, + /*v:*/0.203125f, 0.649162f, 0.347494f, /*n:*/-0.455947f, 0.522202f, 0.720664f, + /*v:*/0.156250f, 0.696037f, 0.253744f, /*n:*/-0.530595f, 0.625751f, 0.571703f, + /*v:*/0.078125f, 0.500724f, 0.261557f, /*n:*/-0.809717f, -0.006989f, 0.586749f, + /*v:*/-0.203125f, 0.649162f, 0.347494f, /*n:*/0.455947f, 0.522202f, 0.720664f, + /*v:*/-0.273438f, 0.586662f, 0.402182f, /*n:*/0.664357f, 0.682058f, 0.305582f, + /*v:*/-0.242188f, 0.500724f, 0.402182f, /*n:*/0.952574f, -0.013123f, 0.303995f, + /*v:*/-0.203125f, 0.649162f, 0.347494f, /*n:*/0.455947f, 0.522202f, 0.720664f, + /*v:*/-0.242188f, 0.500724f, 0.402182f, /*n:*/0.952574f, -0.013123f, 0.303995f, + /*v:*/-0.140625f, 0.500724f, 0.347494f, /*n:*/0.689291f, -0.004578f, 0.724418f, + /*v:*/0.242188f, 0.500724f, 0.402182f, /*n:*/-0.952574f, -0.013123f, 0.303995f, + /*v:*/0.273438f, 0.586662f, 0.402182f, /*n:*/-0.664357f, 0.682058f, 0.305582f, + /*v:*/0.203125f, 0.649162f, 0.347494f, /*n:*/-0.455947f, 0.522202f, 0.720664f, + /*v:*/0.242188f, 0.500724f, 0.402182f, /*n:*/-0.952574f, -0.013123f, 0.303995f, + /*v:*/0.203125f, 0.649162f, 0.347494f, /*n:*/-0.455947f, 0.522202f, 0.720664f, + /*v:*/0.140625f, 0.500724f, 0.347494f, /*n:*/-0.689291f, -0.004578f, 0.724418f, + /*v:*/-0.140625f, 0.500724f, 0.347494f, /*n:*/0.689291f, -0.004578f, 0.724418f, + /*v:*/-0.242188f, 0.500724f, 0.402182f, /*n:*/0.952574f, -0.013123f, 0.303995f, + /*v:*/-0.203125f, 0.352287f, 0.347494f, /*n:*/0.456282f, -0.535356f, 0.710746f, + /*v:*/-0.242188f, 0.500724f, 0.402182f, /*n:*/0.952574f, -0.013123f, 0.303995f, + /*v:*/-0.273438f, 0.422599f, 0.402182f, /*n:*/0.653066f, -0.686636f, 0.319315f, + /*v:*/-0.203125f, 0.352287f, 0.347494f, /*n:*/0.456282f, -0.535356f, 0.710746f, + /*v:*/0.273438f, 0.422599f, 0.402182f, /*n:*/-0.653066f, -0.686636f, 0.319315f, + /*v:*/0.242188f, 0.500724f, 0.402182f, /*n:*/-0.952574f, -0.013123f, 0.303995f, + /*v:*/0.203125f, 0.352287f, 0.347494f, /*n:*/-0.456282f, -0.535356f, 0.710746f, + /*v:*/0.242188f, 0.500724f, 0.402182f, /*n:*/-0.952574f, -0.013123f, 0.303995f, + /*v:*/0.140625f, 0.500724f, 0.347494f, /*n:*/-0.689291f, -0.004578f, 0.724418f, + /*v:*/0.203125f, 0.352287f, 0.347494f, /*n:*/-0.456282f, -0.535356f, 0.710746f, + /*v:*/-0.078125f, 0.500724f, 0.261557f, /*n:*/0.809717f, -0.006989f, 0.586749f, + /*v:*/-0.140625f, 0.500724f, 0.347494f, /*n:*/0.689291f, -0.004578f, 0.724418f, + /*v:*/-0.156250f, 0.313224f, 0.253744f, /*n:*/0.553850f, -0.633198f, 0.540635f, + /*v:*/-0.140625f, 0.500724f, 0.347494f, /*n:*/0.689291f, -0.004578f, 0.724418f, + /*v:*/-0.203125f, 0.352287f, 0.347494f, /*n:*/0.456282f, -0.535356f, 0.710746f, + /*v:*/-0.156250f, 0.313224f, 0.253744f, /*n:*/0.553850f, -0.633198f, 0.540635f, + /*v:*/0.203125f, 0.352287f, 0.347494f, /*n:*/-0.456282f, -0.535356f, 0.710746f, + /*v:*/0.140625f, 0.500724f, 0.347494f, /*n:*/-0.689291f, -0.004578f, 0.724418f, + /*v:*/0.156250f, 0.313224f, 0.253744f, /*n:*/-0.553850f, -0.633198f, 0.540635f, + /*v:*/0.140625f, 0.500724f, 0.347494f, /*n:*/-0.689291f, -0.004578f, 0.724418f, + /*v:*/0.078125f, 0.500724f, 0.261557f, /*n:*/-0.809717f, -0.006989f, 0.586749f, + /*v:*/0.156250f, 0.313224f, 0.253744f, /*n:*/-0.553850f, -0.633198f, 0.540635f, + /*v:*/-0.156250f, 0.313224f, 0.253744f, /*n:*/0.553850f, -0.633198f, 0.540635f, + /*v:*/-0.203125f, 0.352287f, 0.347494f, /*n:*/0.456282f, -0.535356f, 0.710746f, + /*v:*/-0.351562f, 0.289787f, 0.324057f, /*n:*/-0.099490f, -0.751457f, 0.652211f, + /*v:*/-0.156250f, 0.313224f, 0.253744f, /*n:*/0.553850f, -0.633198f, 0.540635f, + /*v:*/-0.351562f, 0.289787f, 0.324057f, /*n:*/-0.099490f, -0.751457f, 0.652211f, + /*v:*/-0.351562f, 0.235099f, 0.222494f, /*n:*/-0.119327f, -0.871151f, 0.476272f, + /*v:*/0.351562f, 0.289787f, 0.324057f, /*n:*/0.099490f, -0.751457f, 0.652211f, + /*v:*/0.203125f, 0.352287f, 0.347494f, /*n:*/-0.456282f, -0.535356f, 0.710746f, + /*v:*/0.156250f, 0.313224f, 0.253744f, /*n:*/-0.553850f, -0.633198f, 0.540635f, + /*v:*/0.351562f, 0.289787f, 0.324057f, /*n:*/0.099490f, -0.751457f, 0.652211f, + /*v:*/0.156250f, 0.313224f, 0.253744f, /*n:*/-0.553850f, -0.633198f, 0.540635f, + /*v:*/0.351562f, 0.235099f, 0.222494f, /*n:*/0.119327f, -0.871151f, 0.476272f, + /*v:*/-0.203125f, 0.352287f, 0.347494f, /*n:*/0.456282f, -0.535356f, 0.710746f, + /*v:*/-0.273438f, 0.422599f, 0.402182f, /*n:*/0.653066f, -0.686636f, 0.319315f, + /*v:*/-0.351562f, 0.391349f, 0.386557f, /*n:*/-0.031404f, -0.966948f, 0.252907f, + /*v:*/-0.203125f, 0.352287f, 0.347494f, /*n:*/0.456282f, -0.535356f, 0.710746f, + /*v:*/-0.351562f, 0.391349f, 0.386557f, /*n:*/-0.031404f, -0.966948f, 0.252907f, + /*v:*/-0.351562f, 0.289787f, 0.324057f, /*n:*/-0.099490f, -0.751457f, 0.652211f, + /*v:*/0.351562f, 0.391349f, 0.386557f, /*n:*/0.031404f, -0.966948f, 0.252907f, + /*v:*/0.273438f, 0.422599f, 0.402182f, /*n:*/-0.653066f, -0.686636f, 0.319315f, + /*v:*/0.203125f, 0.352287f, 0.347494f, /*n:*/-0.456282f, -0.535356f, 0.710746f, + /*v:*/0.351562f, 0.391349f, 0.386557f, /*n:*/0.031404f, -0.966948f, 0.252907f, + /*v:*/0.203125f, 0.352287f, 0.347494f, /*n:*/-0.456282f, -0.535356f, 0.710746f, + /*v:*/0.351562f, 0.289787f, 0.324057f, /*n:*/0.099490f, -0.751457f, 0.652211f, + /*v:*/-0.351562f, 0.289787f, 0.324057f, /*n:*/-0.099490f, -0.751457f, 0.652211f, + /*v:*/-0.351562f, 0.391349f, 0.386557f, /*n:*/-0.031404f, -0.966948f, 0.252907f, + /*v:*/-0.437500f, 0.422599f, 0.370932f, /*n:*/-0.728996f, -0.656575f, 0.193426f, + /*v:*/-0.351562f, 0.289787f, 0.324057f, /*n:*/-0.099490f, -0.751457f, 0.652211f, + /*v:*/-0.437500f, 0.422599f, 0.370932f, /*n:*/-0.728996f, -0.656575f, 0.193426f, + /*v:*/-0.500000f, 0.352287f, 0.292807f, /*n:*/-0.607624f, -0.510392f, 0.608478f, + /*v:*/0.437500f, 0.422599f, 0.370932f, /*n:*/0.728996f, -0.656575f, 0.193426f, + /*v:*/0.351562f, 0.391349f, 0.386557f, /*n:*/0.031404f, -0.966948f, 0.252907f, + /*v:*/0.351562f, 0.289787f, 0.324057f, /*n:*/0.099490f, -0.751457f, 0.652211f, + /*v:*/0.437500f, 0.422599f, 0.370932f, /*n:*/0.728996f, -0.656575f, 0.193426f, + /*v:*/0.351562f, 0.289787f, 0.324057f, /*n:*/0.099490f, -0.751457f, 0.652211f, + /*v:*/0.500000f, 0.352287f, 0.292807f, /*n:*/0.607624f, -0.510392f, 0.608478f, + /*v:*/-0.351562f, 0.235099f, 0.222494f, /*n:*/-0.119327f, -0.871151f, 0.476272f, + /*v:*/-0.351562f, 0.289787f, 0.324057f, /*n:*/-0.099490f, -0.751457f, 0.652211f, + /*v:*/-0.500000f, 0.352287f, 0.292807f, /*n:*/-0.607624f, -0.510392f, 0.608478f, + /*v:*/-0.351562f, 0.235099f, 0.222494f, /*n:*/-0.119327f, -0.871151f, 0.476272f, + /*v:*/-0.500000f, 0.352287f, 0.292807f, /*n:*/-0.607624f, -0.510392f, 0.608478f, + /*v:*/-0.546875f, 0.313224f, 0.183432f, /*n:*/-0.680166f, -0.546251f, 0.488815f, + /*v:*/0.500000f, 0.352287f, 0.292807f, /*n:*/0.607624f, -0.510392f, 0.608478f, + /*v:*/0.351562f, 0.289787f, 0.324057f, /*n:*/0.099490f, -0.751457f, 0.652211f, + /*v:*/0.351562f, 0.235099f, 0.222494f, /*n:*/0.119327f, -0.871151f, 0.476272f, + /*v:*/0.500000f, 0.352287f, 0.292807f, /*n:*/0.607624f, -0.510392f, 0.608478f, + /*v:*/0.351562f, 0.235099f, 0.222494f, /*n:*/0.119327f, -0.871151f, 0.476272f, + /*v:*/0.546875f, 0.313224f, 0.183432f, /*n:*/0.680166f, -0.546251f, 0.488815f, + /*v:*/-0.546875f, 0.313224f, 0.183432f, /*n:*/-0.680166f, -0.546251f, 0.488815f, + /*v:*/-0.500000f, 0.352287f, 0.292807f, /*n:*/-0.607624f, -0.510392f, 0.608478f, + /*v:*/-0.562500f, 0.500724f, 0.277182f, /*n:*/-0.800104f, -0.002838f, 0.599841f, + /*v:*/-0.546875f, 0.313224f, 0.183432f, /*n:*/-0.680166f, -0.546251f, 0.488815f, + /*v:*/-0.562500f, 0.500724f, 0.277182f, /*n:*/-0.800104f, -0.002838f, 0.599841f, + /*v:*/-0.625000f, 0.500724f, 0.167807f, /*n:*/-0.868221f, -0.004730f, 0.496109f, + /*v:*/0.562500f, 0.500724f, 0.277182f, /*n:*/0.800104f, -0.002838f, 0.599841f, + /*v:*/0.500000f, 0.352287f, 0.292807f, /*n:*/0.607624f, -0.510392f, 0.608478f, + /*v:*/0.546875f, 0.313224f, 0.183432f, /*n:*/0.680166f, -0.546251f, 0.488815f, + /*v:*/0.562500f, 0.500724f, 0.277182f, /*n:*/0.800104f, -0.002838f, 0.599841f, + /*v:*/0.546875f, 0.313224f, 0.183432f, /*n:*/0.680166f, -0.546251f, 0.488815f, + /*v:*/0.625000f, 0.500724f, 0.167807f, /*n:*/0.868221f, -0.004730f, 0.496109f, + /*v:*/-0.500000f, 0.352287f, 0.292807f, /*n:*/-0.607624f, -0.510392f, 0.608478f, + /*v:*/-0.437500f, 0.422599f, 0.370932f, /*n:*/-0.728996f, -0.656575f, 0.193426f, + /*v:*/-0.468750f, 0.500724f, 0.363119f, /*n:*/-0.969298f, -0.011811f, 0.245552f, + /*v:*/-0.500000f, 0.352287f, 0.292807f, /*n:*/-0.607624f, -0.510392f, 0.608478f, + /*v:*/-0.468750f, 0.500724f, 0.363119f, /*n:*/-0.969298f, -0.011811f, 0.245552f, + /*v:*/-0.562500f, 0.500724f, 0.277182f, /*n:*/-0.800104f, -0.002838f, 0.599841f, + /*v:*/0.468750f, 0.500724f, 0.363119f, /*n:*/0.969298f, -0.011811f, 0.245552f, + /*v:*/0.437500f, 0.422599f, 0.370932f, /*n:*/0.728996f, -0.656575f, 0.193426f, + /*v:*/0.500000f, 0.352287f, 0.292807f, /*n:*/0.607624f, -0.510392f, 0.608478f, + /*v:*/0.468750f, 0.500724f, 0.363119f, /*n:*/0.969298f, -0.011811f, 0.245552f, + /*v:*/0.500000f, 0.352287f, 0.292807f, /*n:*/0.607624f, -0.510392f, 0.608478f, + /*v:*/0.562500f, 0.500724f, 0.277182f, /*n:*/0.800104f, -0.002838f, 0.599841f + }; + } +} + diff --git a/OpenGL/GLKReflectionMapEffectSkybox/Resources/cubemap1.png b/OpenGL/GLKReflectionMapEffectSkybox/Resources/cubemap1.png new file mode 100755 index 000000000..5276e48c0 Binary files /dev/null and b/OpenGL/GLKReflectionMapEffectSkybox/Resources/cubemap1.png differ diff --git a/OpenGL/GLKReflectionMapEffectSkybox/Resources/cubemap2.png b/OpenGL/GLKReflectionMapEffectSkybox/Resources/cubemap2.png new file mode 100755 index 000000000..72f1c05b5 Binary files /dev/null and b/OpenGL/GLKReflectionMapEffectSkybox/Resources/cubemap2.png differ diff --git a/OpenGL/GLKReflectionMapEffectSkybox/Resources/cubemap3.png b/OpenGL/GLKReflectionMapEffectSkybox/Resources/cubemap3.png new file mode 100755 index 000000000..acdcd82f6 Binary files /dev/null and b/OpenGL/GLKReflectionMapEffectSkybox/Resources/cubemap3.png differ diff --git a/OpenGL/GLKReflectionMapEffectSkybox/Resources/cubemap4.png b/OpenGL/GLKReflectionMapEffectSkybox/Resources/cubemap4.png new file mode 100755 index 000000000..b20102bde Binary files /dev/null and b/OpenGL/GLKReflectionMapEffectSkybox/Resources/cubemap4.png differ diff --git a/OpenGL/GLKReflectionMapEffectSkybox/Resources/cubemap5.png b/OpenGL/GLKReflectionMapEffectSkybox/Resources/cubemap5.png new file mode 100755 index 000000000..d6746babe Binary files /dev/null and b/OpenGL/GLKReflectionMapEffectSkybox/Resources/cubemap5.png differ diff --git a/OpenGL/GLKReflectionMapEffectSkybox/Resources/cubemap6.png b/OpenGL/GLKReflectionMapEffectSkybox/Resources/cubemap6.png new file mode 100755 index 000000000..780cbc213 Binary files /dev/null and b/OpenGL/GLKReflectionMapEffectSkybox/Resources/cubemap6.png differ diff --git a/OpenGL/Metadata.xml b/OpenGL/Metadata.xml new file mode 100644 index 000000000..547b5494c --- /dev/null +++ b/OpenGL/Metadata.xml @@ -0,0 +1,9 @@ + + + 73d5cdf8-3f19-4350-af70-1ff690ab8331 + false + Intermediate + Graphics + iOS + Indie + diff --git a/OpenGL/OpenGL.sln b/OpenGL/OpenGL.sln new file mode 100644 index 000000000..9c6691b9c --- /dev/null +++ b/OpenGL/OpenGL.sln @@ -0,0 +1,97 @@ + +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual Studio 2010 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OpenGLES20Example", "OpenGLES20Example\OpenGLES20Example.csproj", "{850F3504-CFDB-4D3F-B9F8-2A7B1D451C36}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PerVertexDirectionalLighting", "PerVertexDirectionalLighting\PerVertexDirectionalLighting.csproj", "{522284B6-ED61-4F9D-8BA4-F7A863126445}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GLKBaseEffectDrawing", "GLKBaseEffectDrawing\GLKBaseEffectDrawing.csproj", "{F17A7552-709F-4109-AFD2-FE557F0C4CD7}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GLKBaseEffectDrawingTexture", "GLKBaseEffectDrawingTexture\GLKBaseEffectDrawingTexture.csproj", "{7268D497-8ADF-4ECD-ACE9-37AE15A84624}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GLKReflectionMapEffectSkybox", "GLKReflectionMapEffectSkybox\GLKReflectionMapEffectSkybox.csproj", "{512A6C28-7D23-4AD6-AE19-86647B15C1C4}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|iPhoneSimulator = Debug|iPhoneSimulator + Release|iPhoneSimulator = Release|iPhoneSimulator + Debug|iPhone = Debug|iPhone + Release|iPhone = Release|iPhone + Ad-Hoc|iPhone = Ad-Hoc|iPhone + AppStore|iPhone = AppStore|iPhone + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {512A6C28-7D23-4AD6-AE19-86647B15C1C4}.Ad-Hoc|iPhone.ActiveCfg = Ad-Hoc|iPhone + {512A6C28-7D23-4AD6-AE19-86647B15C1C4}.Ad-Hoc|iPhone.Build.0 = Ad-Hoc|iPhone + {512A6C28-7D23-4AD6-AE19-86647B15C1C4}.AppStore|iPhone.ActiveCfg = AppStore|iPhone + {512A6C28-7D23-4AD6-AE19-86647B15C1C4}.AppStore|iPhone.Build.0 = AppStore|iPhone + {512A6C28-7D23-4AD6-AE19-86647B15C1C4}.Debug|iPhone.ActiveCfg = Debug|iPhone + {512A6C28-7D23-4AD6-AE19-86647B15C1C4}.Debug|iPhone.Build.0 = Debug|iPhone + {512A6C28-7D23-4AD6-AE19-86647B15C1C4}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator + {512A6C28-7D23-4AD6-AE19-86647B15C1C4}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator + {512A6C28-7D23-4AD6-AE19-86647B15C1C4}.Release|iPhone.ActiveCfg = Release|iPhone + {512A6C28-7D23-4AD6-AE19-86647B15C1C4}.Release|iPhone.Build.0 = Release|iPhone + {512A6C28-7D23-4AD6-AE19-86647B15C1C4}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator + {512A6C28-7D23-4AD6-AE19-86647B15C1C4}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator + {522284B6-ED61-4F9D-8BA4-F7A863126445}.Ad-Hoc|iPhone.ActiveCfg = Ad-Hoc|iPhone + {522284B6-ED61-4F9D-8BA4-F7A863126445}.Ad-Hoc|iPhone.Build.0 = Ad-Hoc|iPhone + {522284B6-ED61-4F9D-8BA4-F7A863126445}.AppStore|iPhone.ActiveCfg = AppStore|iPhone + {522284B6-ED61-4F9D-8BA4-F7A863126445}.AppStore|iPhone.Build.0 = AppStore|iPhone + {522284B6-ED61-4F9D-8BA4-F7A863126445}.Debug|iPhone.ActiveCfg = Debug|iPhone + {522284B6-ED61-4F9D-8BA4-F7A863126445}.Debug|iPhone.Build.0 = Debug|iPhone + {522284B6-ED61-4F9D-8BA4-F7A863126445}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator + {522284B6-ED61-4F9D-8BA4-F7A863126445}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator + {522284B6-ED61-4F9D-8BA4-F7A863126445}.Release|iPhone.ActiveCfg = Release|iPhone + {522284B6-ED61-4F9D-8BA4-F7A863126445}.Release|iPhone.Build.0 = Release|iPhone + {522284B6-ED61-4F9D-8BA4-F7A863126445}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator + {522284B6-ED61-4F9D-8BA4-F7A863126445}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator + {7268D497-8ADF-4ECD-ACE9-37AE15A84624}.Ad-Hoc|iPhone.ActiveCfg = Ad-Hoc|iPhone + {7268D497-8ADF-4ECD-ACE9-37AE15A84624}.Ad-Hoc|iPhone.Build.0 = Ad-Hoc|iPhone + {7268D497-8ADF-4ECD-ACE9-37AE15A84624}.AppStore|iPhone.ActiveCfg = AppStore|iPhone + {7268D497-8ADF-4ECD-ACE9-37AE15A84624}.AppStore|iPhone.Build.0 = AppStore|iPhone + {7268D497-8ADF-4ECD-ACE9-37AE15A84624}.Debug|iPhone.ActiveCfg = Debug|iPhone + {7268D497-8ADF-4ECD-ACE9-37AE15A84624}.Debug|iPhone.Build.0 = Debug|iPhone + {7268D497-8ADF-4ECD-ACE9-37AE15A84624}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator + {7268D497-8ADF-4ECD-ACE9-37AE15A84624}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator + {7268D497-8ADF-4ECD-ACE9-37AE15A84624}.Release|iPhone.ActiveCfg = Release|iPhone + {7268D497-8ADF-4ECD-ACE9-37AE15A84624}.Release|iPhone.Build.0 = Release|iPhone + {7268D497-8ADF-4ECD-ACE9-37AE15A84624}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator + {7268D497-8ADF-4ECD-ACE9-37AE15A84624}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator + {850F3504-CFDB-4D3F-B9F8-2A7B1D451C36}.Ad-Hoc|iPhone.ActiveCfg = Ad-Hoc|iPhone + {850F3504-CFDB-4D3F-B9F8-2A7B1D451C36}.Ad-Hoc|iPhone.Build.0 = Ad-Hoc|iPhone + {850F3504-CFDB-4D3F-B9F8-2A7B1D451C36}.AppStore|iPhone.ActiveCfg = AppStore|iPhone + {850F3504-CFDB-4D3F-B9F8-2A7B1D451C36}.AppStore|iPhone.Build.0 = AppStore|iPhone + {850F3504-CFDB-4D3F-B9F8-2A7B1D451C36}.Debug|iPhone.ActiveCfg = Debug|iPhone + {850F3504-CFDB-4D3F-B9F8-2A7B1D451C36}.Debug|iPhone.Build.0 = Debug|iPhone + {850F3504-CFDB-4D3F-B9F8-2A7B1D451C36}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator + {850F3504-CFDB-4D3F-B9F8-2A7B1D451C36}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator + {850F3504-CFDB-4D3F-B9F8-2A7B1D451C36}.Release|iPhone.ActiveCfg = Release|iPhone + {850F3504-CFDB-4D3F-B9F8-2A7B1D451C36}.Release|iPhone.Build.0 = Release|iPhone + {850F3504-CFDB-4D3F-B9F8-2A7B1D451C36}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator + {850F3504-CFDB-4D3F-B9F8-2A7B1D451C36}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator + {F17A7552-709F-4109-AFD2-FE557F0C4CD7}.Ad-Hoc|iPhone.ActiveCfg = Ad-Hoc|iPhone + {F17A7552-709F-4109-AFD2-FE557F0C4CD7}.Ad-Hoc|iPhone.Build.0 = Ad-Hoc|iPhone + {F17A7552-709F-4109-AFD2-FE557F0C4CD7}.AppStore|iPhone.ActiveCfg = AppStore|iPhone + {F17A7552-709F-4109-AFD2-FE557F0C4CD7}.AppStore|iPhone.Build.0 = AppStore|iPhone + {F17A7552-709F-4109-AFD2-FE557F0C4CD7}.Debug|iPhone.ActiveCfg = Debug|iPhone + {F17A7552-709F-4109-AFD2-FE557F0C4CD7}.Debug|iPhone.Build.0 = Debug|iPhone + {F17A7552-709F-4109-AFD2-FE557F0C4CD7}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator + {F17A7552-709F-4109-AFD2-FE557F0C4CD7}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator + {F17A7552-709F-4109-AFD2-FE557F0C4CD7}.Release|iPhone.ActiveCfg = Release|iPhone + {F17A7552-709F-4109-AFD2-FE557F0C4CD7}.Release|iPhone.Build.0 = Release|iPhone + {F17A7552-709F-4109-AFD2-FE557F0C4CD7}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator + {F17A7552-709F-4109-AFD2-FE557F0C4CD7}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator + EndGlobalSection + GlobalSection(MonoDevelopProperties) = preSolution + StartupItem = PerVertexDirectionalLighting\PerVertexDirectionalLighting.csproj + Policies = $0 + $0.TextStylePolicy = $1 + $1.inheritsSet = Mono + $1.inheritsScope = text/plain + $1.scope = text/x-csharp + $0.CSharpFormattingPolicy = $2 + $2.inheritsSet = Mono + $2.inheritsScope = text/x-csharp + $2.scope = text/x-csharp + EndGlobalSection +EndGlobal diff --git a/OpenGL/OpenGLES20Example/AppDelegate.cs b/OpenGL/OpenGLES20Example/AppDelegate.cs new file mode 100644 index 000000000..d1c31b4f2 --- /dev/null +++ b/OpenGL/OpenGLES20Example/AppDelegate.cs @@ -0,0 +1,32 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using MonoTouch.Foundation; +using MonoTouch.UIKit; + +namespace OpenGLES20Example +{ + [Register ("AppDelegate")] + public partial class AppDelegate : UIApplicationDelegate + { + UIWindow window; + + public override bool FinishedLaunching (UIApplication app, NSDictionary options) + { + window = new UIWindow (UIScreen.MainScreen.Bounds); + + GLViewController root = new GLViewController (); + root.View.Frame = window.Frame; + root.View.ContentScaleFactor = window.ContentScaleFactor; + + window.RootViewController = root; + + window.MakeKeyAndVisible (); + + (root.View as GLView).StartAnimation (); + + return true; + } + } +} + diff --git a/OpenGL/OpenGLES20Example/GLCommon.cs b/OpenGL/OpenGLES20Example/GLCommon.cs new file mode 100644 index 000000000..f9838ddbe --- /dev/null +++ b/OpenGL/OpenGLES20Example/GLCommon.cs @@ -0,0 +1,209 @@ +using System; +using OpenTK; + +namespace OpenGLES20Example +{ + struct Color { + public float red; + public float green; + public float blue; + public float alpha; + } + + struct TextureCoord { + public float S; + public float T; + } + + public static class GLCommon + { + public static float radiansFromDegrees (float degrees) + { + return (float)Math.PI * degrees / 180.0f; + } + + public static void Matrix3DSetRotationByRadians (ref float[] matrix, float radians, ref Vector3 vector) + { + float mag = (float) Math.Sqrt ((vector.X * vector.X) + (vector.Y * vector.Y) + (vector.Z * vector.Z)); + + if (mag == 0.0f) { + vector.X = 1.0f; + vector.Y = 0.0f; + vector.Z = 0.0f; + } else if (mag != 1.0f) { + vector.X /= mag; + vector.Y /= mag; + vector.Z /= mag; + } + + float c = (float) Math.Cos (radians); + float s = (float) Math.Sin (radians); + matrix [3] = matrix [7] = matrix [11] = 0.0f; + matrix [12] = matrix [13] = matrix [14] = 0.0f; + matrix [15] = 1.0f; + + matrix [0] = (vector.X * vector.X) * (1 - c) + c; + matrix [1] = (vector.Y * vector.X) * (1 - c) + (vector.Z * s); + matrix [2] = (vector.X * vector.Z) * (1 - c) - (vector.Y * s); + matrix [4] = (vector.X * vector.Y) * (1 - c) - (vector.Z * s); + matrix [5] = (vector.Y * vector.Y) * (1 - c) + c; + matrix [6] = (vector.Y * vector.Z) * (1 - c) + (vector.X * s); + matrix [8] = (vector.X * vector.Z) * (1 - c) + (vector.Y * s); + matrix [9] = (vector.Y * vector.Z) * (1 - c) - (vector.X * s); + matrix [10] = (vector.Z * vector.Z) * (1 - c) + c; + } + + public static void Matrix3DSetRotationByDegrees (ref float[] matrix, float degrees, Vector3 vector) + { + Matrix3DSetRotationByRadians (ref matrix, radiansFromDegrees (degrees), ref vector); + } + + public static void Matrix3DSetIdentity (ref float[] matrix) + { + matrix [0] = matrix [5] = matrix [10] = matrix [15] = 1.0f; + matrix [1] = matrix [2] = matrix [3] = matrix [4] = 0.0f; + matrix [6] = matrix [7] = matrix [8] = matrix [9] = 0.0f; + matrix [11] = matrix [12] = matrix [13] = matrix [14] = 0.0f; + } + + public static void Matrix3DSetTranslation (ref float[] matrix, float xTranslate, float yTranslate, float zTranslate) + { + matrix [0] = matrix [5] = matrix [10] = matrix [15] = 1.0f; + matrix [1] = matrix [2] = matrix [3] = matrix [4] = 0.0f; + matrix [6] = matrix [7] = matrix [8] = matrix [9] = 0.0f; + matrix [11] = 0.0f; + matrix [12] = xTranslate; + matrix [13] = yTranslate; + matrix [14] = zTranslate; + } + + public static void Matrix3DSetScaling (ref float[] matrix, float xScale, float yScale, float zScale) + { + matrix [1] = matrix [2] = matrix [3] = matrix [4] = 0.0f; + matrix [6] = matrix [7] = matrix [8] = matrix [9] = 0.0f; + matrix [11] = matrix [12] = matrix [13] = matrix [14] = 0.0f; + matrix [0] = xScale; + matrix [5] = yScale; + matrix [10] = zScale; + matrix [15] = 1.0f; + } + + public static void Matrix3DSetUniformScaling (ref float[] matrix, float scale) + { + Matrix3DSetScaling (ref matrix, scale, scale, scale); + } + + public static void Matrix3DSetZRotationUsingRadians (ref float[] matrix, float radians) + { + matrix [0] = (float)Math.Cos (radians); + matrix [1] = (float)Math.Sin (radians); + matrix [4] = -matrix [1]; + matrix [5] = matrix [0]; + matrix [2] = matrix [3] = matrix [6] = matrix [7] = matrix [8] = 0.0f; + matrix [9] = matrix [11] = matrix [12] = matrix [13] = matrix [14] = 0.0f; + matrix [10] = matrix [15] = 0; + } + + public static void Matrix3DSetZRotationUsingDegrees (ref float[] matrix, float degrees) + { + Matrix3DSetZRotationUsingRadians (ref matrix, radiansFromDegrees (degrees)); + } + + public static void Matrix3DSetXRotationUsingRadians (ref float[] matrix, float radians) + { + matrix [0] = matrix [15] = 1.0f; + matrix [1] = matrix [2] = matrix [3] = matrix [4] = 0.0f; + matrix [7] = matrix [8] = 0.0f; + matrix [11] = matrix [12] = matrix [13] = matrix [14] = 0.0f; + matrix [5] = (float) Math.Cos (radians); + matrix [6] = - (float)Math.Sin (radians); + matrix [9] = - matrix [6]; + matrix [10] = matrix [5]; + } + + public static void Matrix3DSetXRotationUsingDegrees (ref float[] matrix, float degrees) + { + Matrix3DSetXRotationUsingRadians (ref matrix, radiansFromDegrees (degrees)); + } + + public static void Matrix3DSetYRotationUsingRadians (ref float[] matrix, float radians) + { + matrix [0] = (float)Math.Cos (radians); + matrix [2] = (float)Math.Sin (radians); + matrix [8] = - matrix [2]; + matrix [10] = matrix [0]; + matrix [1] = matrix [3] = matrix [4] = matrix [6] = matrix [7] = 0.0f; + matrix [9] = matrix [11] = matrix [12] = matrix [13] = matrix [14] = 0.0f; + matrix [5] = matrix [15] = 1.0f; + } + + public static void Matrix3DSetYRotationUsingDegrees (ref float[] matrix, float degrees) + { + Matrix3DSetYRotationUsingRadians (ref matrix, radiansFromDegrees (degrees)); + } + + public static float[] Matrix3DMultiply (float[] m1, float[] m2) + { + float[] result = new float[16]; + + result [0] = m1 [0] * m2 [0] + m1 [4] * m2 [1] + m1 [8] * m2 [2] + m1 [12] * m2 [3]; + result [1] = m1 [1] * m2 [0] + m1 [5] * m2 [1] + m1 [9] * m2 [2] + m1 [13] * m2 [3]; + result [2] = m1 [2] * m2 [0] + m1 [6] * m2 [1] + m1 [10] * m2 [2] + m1 [14] * m2 [3]; + result [3] = m1 [3] * m2 [0] + m1 [7] * m2 [1] + m1 [11] * m2 [2] + m1 [15] * m2 [3]; + + result [4] = m1 [0] * m2 [4] + m1 [4] * m2 [5] + m1 [8] * m2 [6] + m1 [12] * m2 [7]; + result [5] = m1 [1] * m2 [4] + m1 [5] * m2 [5] + m1 [9] * m2 [6] + m1 [13] * m2 [7]; + result [6] = m1 [2] * m2 [4] + m1 [6] * m2 [5] + m1 [10] * m2 [6] + m1 [14] * m2 [7]; + result [7] = m1 [3] * m2 [4] + m1 [7] * m2 [5] + m1 [11] * m2 [6] + m1 [15] * m2 [7]; + + result [8] = m1 [0] * m2 [8] + m1 [4] * m2 [9] + m1 [8] * m2 [10] + m1 [12] * m2 [11]; + result [9] = m1 [1] * m2 [8] + m1 [5] * m2 [9] + m1 [9] * m2 [10] + m1 [13] * m2 [11]; + result [10] = m1 [2] * m2 [8] + m1 [6] * m2 [9] + m1 [10] * m2 [10] + m1 [14] * m2 [11]; + result [11] = m1 [3] * m2 [8] + m1 [7] * m2 [9] + m1 [11] * m2 [10] + m1 [15] * m2 [11]; + + result [12] = m1 [0] * m2 [12] + m1 [4] * m2 [13] + m1 [8] * m2 [14] + m1 [12] * m2 [15]; + result [13] = m1 [1] * m2 [12] + m1 [5] * m2 [13] + m1 [9] * m2 [14] + m1 [13] * m2 [15]; + result [14] = m1 [2] * m2 [12] + m1 [6] * m2 [13] + m1 [10] * m2 [14] + m1 [14] * m2 [15]; + result [15] = m1 [3] * m2 [12] + m1 [7] * m2 [13] + m1 [11] * m2 [14] + m1 [15] * m2 [15]; + + return result; + } + + public static void Matrix3DSetOrthoProjection (ref float[] matrix, float left, float right, float bottom, + float top, float near, float far) + { + matrix [1] = matrix [2] = matrix [3] = matrix [4] = matrix [6] = 0.0f; + matrix [7] = matrix [8] = matrix [9] = matrix [11] = 0.0f; + matrix [0] = 2.0f / (right - left); + matrix [5] = 2.0f / (top - bottom); + matrix [10] = -2.0f / (far - near); + matrix [12] = (right + left) / (right - left); + matrix [13] = (top + bottom) / (top - bottom); + matrix [14] = (far + near) / (far - near); + matrix [15] = 1.0f; + } + + public static void Matrix3DSetFrustumProjection (ref float[] matrix, float left, float right, float bottom, + float top, float zNear, float zFar) + { + matrix [1] = matrix [2] = matrix [3] = matrix [4] = 0.0f; + matrix [6] = matrix [7] = matrix [12] = matrix [13] = matrix [15] = 0.0f; + + matrix [0] = 2 * zNear / (right - left); + matrix [5] = 2 * zNear / (top - bottom); + matrix [8] = (right + left) / (right - left); + matrix [9] = (top + bottom) / (top - bottom); + matrix [10] = - (zFar + zNear) / (zFar - zNear); + matrix [11] = - 1.0f; + matrix [14] = - (2 * zFar * zNear) / (zFar - zNear); + } + + public static void Matrix3DSetPerspectiveProjectionWithFieldOfView (ref float[] matrix, float fieldOfVision, + float near, float far, float aspectRatio) + { + float size = near * (float)Math.Tan (radiansFromDegrees (fieldOfVision) / 2.0f); + Matrix3DSetFrustumProjection (ref matrix, -size, size, -size / aspectRatio, + size / aspectRatio, near, far); + } + } +} \ No newline at end of file diff --git a/OpenGL/OpenGLES20Example/GLProgram.cs b/OpenGL/OpenGLES20Example/GLProgram.cs new file mode 100644 index 000000000..a2ee12a5a --- /dev/null +++ b/OpenGL/OpenGLES20Example/GLProgram.cs @@ -0,0 +1,121 @@ +using System; +using OpenTK.Graphics.ES20; +using MonoTouch.Foundation; +using System.IO; +using System.Collections.Generic; +using System.Text; + +namespace OpenGLES20Example +{ + public class GLProgram + { + int program, + vertShader, + fragShader; + + List attributes; + + public GLProgram (string vShaderFilename, string fShaderFilename) + { + attributes = new List (); + program = GL.CreateProgram (); + + string vertShaderPathName = NSBundle.MainBundle.PathForResource (vShaderFilename, "vsh"); + if (!compileShader (ref vertShader, ShaderType.VertexShader, vertShaderPathName)) + Console.WriteLine ("Failed to compile the vertex shader"); + + string fragShaderPathName = NSBundle.MainBundle.PathForResource (fShaderFilename, "fsh"); + if (!compileShader (ref fragShader, ShaderType.FragmentShader, fragShaderPathName)) + Console.WriteLine ("Failed to compile the fragment shader"); + + GL.AttachShader (program, vertShader); + GL.AttachShader (program, fragShader); + } + + bool compileShader (ref int shader, ShaderType type, string file) + { + int status; + string source; + + using (StreamReader sr = new StreamReader(file)) + source = sr.ReadToEnd(); + + shader = GL.CreateShader (type); + GL.ShaderSource (shader, source); + GL.CompileShader (shader); + + GL.GetShader (shader, ShaderParameter.CompileStatus, out status); + + return status == (int) All.True; + } + + public void AddAttribute (string attributeName) + { + if (!attributes.Contains (attributeName)) { + attributes.Add (attributeName); + GL.BindAttribLocation (program, attributes.IndexOf (attributeName), attributeName); + } + } + + public int GetAttributeIndex (string attributeName) + { + return attributes.IndexOf (attributeName); + } + + public int GetUniformIndex (string uniformName) + { + return GL.GetUniformLocation (program, uniformName); + } + + public bool Link () + { + int status = 0; + + GL.LinkProgram (program); + GL.ValidateProgram (program); + + GL.GetProgram (program, ProgramParameter.LinkStatus, out status); + if (status == (int) All.False) + return false; + + GL.DeleteShader (vertShader); + GL.DeleteShader (fragShader); + + return true; + } + + public void Use () + { + GL.UseProgram (program); + } + + string getLog (int obj) + { + int logLength = 0; + + GL.GetProgram (obj, ProgramParameter.InfoLogLength, out logLength); + if (logLength < 1) + return null; + + string log = GL.GetProgramInfoLog (program); + + return log; + } + + public string VertexShaderLog () + { + return getLog (vertShader); + } + + public string FragmentShaderLog () + { + return getLog (fragShader); + } + + public string ProgramLog () + { + return getLog (program); + } + } +} + diff --git a/OpenGL/OpenGLES20Example/GLTexture.cs b/OpenGL/OpenGLES20Example/GLTexture.cs new file mode 100644 index 000000000..b7057948c --- /dev/null +++ b/OpenGL/OpenGLES20Example/GLTexture.cs @@ -0,0 +1,74 @@ +using System; +using OpenTK.Graphics.ES20; +using MonoTouch.OpenGLES; +using System.IO; +using MonoTouch.Foundation; +using MonoTouch.UIKit; +using MonoTouch.CoreImage; +using MonoTouch.CoreGraphics; +using System.Drawing; + +namespace OpenGLES20Example +{ + public class GLTexture + { + string filename; + uint texture; + + public GLTexture (string inFilename) + { + GL.Enable (EnableCap.Texture2D); + GL.Enable (EnableCap.Blend); + + filename = inFilename; + + GL.Hint (HintTarget.GenerateMipmapHint, HintMode.Nicest); + GL.GenTextures (1, out texture); + GL.BindTexture (TextureTarget.Texture2D, texture); + GL.TexParameter (TextureTarget.Texture2D, TextureParameterName.TextureWrapS, (int) All.Repeat); + GL.TexParameter (TextureTarget.Texture2D, TextureParameterName.TextureWrapT, (int) All.Repeat); + GL.TexParameter (TextureTarget.Texture2D, TextureParameterName.TextureMinFilter, (int) All.Linear); + GL.TexParameter (TextureTarget.Texture2D, TextureParameterName.TextureMagFilter, (int) All.Linear); + GL.TexParameter (TextureTarget.Texture2D, TextureParameterName.TextureMinFilter, (int) All.Nearest); + GL.TexParameter (TextureTarget.Texture2D, TextureParameterName.TextureMagFilter, (int) All.Nearest); + + string extension = Path.GetExtension (filename); + string baseFilename = Path.GetFileNameWithoutExtension (filename); + + string path = NSBundle.MainBundle.PathForResource (baseFilename, extension); + NSData texData = NSData.FromFile (path); + + UIImage image = UIImage.LoadFromData (texData); + if (image == null) + return; + + int width = image.CGImage.Width; + int height = image.CGImage.Height; + + CGColorSpace colorSpace = CGColorSpace.CreateDeviceRGB (); + byte [] imageData = new byte[height * width * 4]; + CGContext context = new CGBitmapContext (imageData, width, height, 8, 4 * width, colorSpace, + CGBitmapFlags.PremultipliedLast | CGBitmapFlags.ByteOrder32Big); + + context.TranslateCTM (0, height); + context.ScaleCTM (1, -1); + colorSpace.Dispose (); + context.ClearRect (new RectangleF (0, 0, width, height)); + context.DrawImage (new RectangleF (0, 0, width, height), image.CGImage); + + GL.TexImage2D (TextureTarget.Texture2D, 0, PixelInternalFormat.Rgba, width, height, 0, PixelFormat.Rgba, PixelType.UnsignedByte, imageData); + context.Dispose (); + } + + public static void UseDefaultTexture () + { + GL.BindTexture (TextureTarget.Texture2D, 0); + } + + public void Use () + { + GL.BindTexture (TextureTarget.Texture2D, texture); + } + } +} + diff --git a/OpenGL/OpenGLES20Example/GLView.cs b/OpenGL/OpenGLES20Example/GLView.cs new file mode 100644 index 000000000..ca46958a4 --- /dev/null +++ b/OpenGL/OpenGLES20Example/GLView.cs @@ -0,0 +1,141 @@ +using System; +using MonoTouch.Foundation; +using MonoTouch.UIKit; +using MonoTouch.OpenGLES; +using OpenTK.Graphics.ES20; +using MonoTouch.CoreAnimation; +using MonoTouch.ObjCRuntime; + +namespace OpenGLES20Example +{ + public class GLView : UIView + { + int backingWidth; + int backingHeight; + uint frameBuffer; + uint renderBuffer; + uint depthBuffer; + + int animationFrameInterval; + public int AnimationFrameInterval { + get { return animationFrameInterval; } + set { + if (value >= 1) { + animationFrameInterval = value; + + if (animating) { + StopAnimation (); + StartAnimation (); + } + } + } + } + + bool animating; + EAGLContext context; + CADisplayLink displayLink; + + public GLViewController Controller; + + [Export ("layerClass")] + public static Class LayerClass () + { + return new Class (typeof (CAEAGLLayer)); + } + + public GLView () : base () + { + CAEAGLLayer eaglLayer = (CAEAGLLayer)Layer; + eaglLayer.Opaque = true; + + context = new EAGLContext (EAGLRenderingAPI.OpenGLES2); + + if (context == null || !EAGLContext.SetCurrentContext (context)) + return; + + animating = false; + AnimationFrameInterval = 2; + } + + void createBuffers () + { + GL.GenFramebuffers (1, out frameBuffer); + GL.GenRenderbuffers (1, out renderBuffer); + GL.BindFramebuffer (FramebufferTarget.Framebuffer, frameBuffer); + GL.BindRenderbuffer (RenderbufferTarget.Renderbuffer, renderBuffer); + context.RenderBufferStorage ((uint) All.Renderbuffer, (CAEAGLLayer) Layer); + GL.FramebufferRenderbuffer (FramebufferTarget.Framebuffer, FramebufferSlot.ColorAttachment0, RenderbufferTarget.Renderbuffer, renderBuffer); + GL.GetRenderbufferParameter (RenderbufferTarget.Renderbuffer, RenderbufferParameterName.RenderbufferWidth, out backingWidth); + GL.GetRenderbufferParameter (RenderbufferTarget.Renderbuffer, RenderbufferParameterName.RenderbufferHeight, out backingHeight); + + GL.GenRenderbuffers (1, out depthBuffer); + GL.BindRenderbuffer (RenderbufferTarget.Renderbuffer, depthBuffer); + GL.RenderbufferStorage (RenderbufferTarget.Renderbuffer, RenderbufferInternalFormat.DepthComponent16, backingWidth, backingHeight); + GL.FramebufferRenderbuffer (FramebufferTarget.Framebuffer, FramebufferSlot.DepthAttachment, RenderbufferTarget.Renderbuffer, depthBuffer); + } + + void destroyBuffers () + { + GL.DeleteFramebuffers (1, ref frameBuffer); + frameBuffer = 0; + GL.DeleteRenderbuffers (1, ref renderBuffer); + renderBuffer = 0; + GL.DeleteRenderbuffers (1, ref depthBuffer); + depthBuffer = 0; + } + + void drawView () + { + GL.BindFramebuffer (FramebufferTarget.Framebuffer, frameBuffer); + + Controller.Draw (); + + GL.BindRenderbuffer (RenderbufferTarget.Renderbuffer, renderBuffer); + context.PresentRenderBuffer ((uint) RenderbufferTarget.Renderbuffer); + } + + public override void LayoutSubviews () + { + EAGLContext.SetCurrentContext (context); + + destroyBuffers (); + createBuffers (); + drawView (); + + GL.BindRenderbuffer (RenderbufferTarget.Renderbuffer, renderBuffer); + + GL.GetRenderbufferParameter (RenderbufferTarget.Renderbuffer, RenderbufferParameterName.RenderbufferWidth, out backingWidth); + GL.GetRenderbufferParameter (RenderbufferTarget.Renderbuffer, RenderbufferParameterName.RenderbufferHeight, out backingHeight); + + if (GL.CheckFramebufferStatus (FramebufferTarget.Framebuffer) != FramebufferErrorCode.FramebufferComplete) + Console.WriteLine (String.Format ("Failed to make complete framebuffer object {0}", + GL.CheckFramebufferStatus (FramebufferTarget.Framebuffer).ToString ())); + + GL.Viewport (0, 0, backingWidth, backingHeight); + + Controller.Setup (); + } + + public void StartAnimation () + { + if (!animating) { + displayLink = CADisplayLink.Create (drawView); + displayLink.FrameInterval = AnimationFrameInterval; + displayLink.AddToRunLoop (NSRunLoop.Current, NSRunLoop.NSDefaultRunLoopMode); + + animating = true; + } + } + + public void StopAnimation () + { + if (animating) { + displayLink.Invalidate (); + displayLink = null; + + animating = false; + } + } + } +} + diff --git a/OpenGL/OpenGLES20Example/GLViewController.cs b/OpenGL/OpenGLES20Example/GLViewController.cs new file mode 100644 index 000000000..82a3dc6c9 --- /dev/null +++ b/OpenGL/OpenGLES20Example/GLViewController.cs @@ -0,0 +1,236 @@ +using System; +using OpenTK; +using MonoTouch.UIKit; +using OpenTK.Graphics.ES20; + +namespace OpenGLES20Example +{ + public class GLViewController : UIViewController + { + GLProgram program; + GLTexture texture; + + float rot = 0f; + + int positionAttribute, + textureCoordinateAttribute, + matrixUniform, + textureUniform; + + float[] rotationMatrix = new float[16], + translationMatrix = new float[16], + modelViewMatrix = new float[16], + projectionMatrix = new float[16], + matrix = new float[16]; + + public GLViewController () + { + } + + public void Setup () + { + program = new GLProgram ("Shader", "Shader"); + + program.AddAttribute ("position"); + program.AddAttribute ("textureCoordinates"); + + if (!program.Link ()) { + Console.WriteLine ("Link failed."); + Console.WriteLine (String.Format ("Program Log: {0}", program.ProgramLog ())); + Console.WriteLine (String.Format ("Fragment Log: {0}", program.FragmentShaderLog ())); + Console.WriteLine (String.Format ("Vertex Log: {0}", program.VertexShaderLog ())); + + (View as GLView).StopAnimation (); + program = null; + + return; + } + + positionAttribute = program.GetAttributeIndex ("position"); + textureCoordinateAttribute = program.GetAttributeIndex ("textureCoordinates"); + matrixUniform = program.GetUniformIndex ("matrix"); + textureUniform = program.GetUniformIndex ("texture"); + + GL.Enable (EnableCap.DepthTest); + GL.Enable (EnableCap.CullFace); + GL.Enable (EnableCap.Texture2D); + GL.Enable (EnableCap.Blend); + GL.BlendFunc (BlendingFactorSrc.One, BlendingFactorDest.Zero); + + texture = new GLTexture ("DieTexture.png"); + } + + public void Draw () + { + Vector3[] vertices = + { + new Vector3 { X = -0.276385f, Y = -0.850640f, Z = -0.447215f }, + new Vector3 { X = 0.000000f, Y = 0.000000f, Z = -1.000000f}, + new Vector3 { X = 0.723600f, Y = -0.525720f, Z = -0.447215f}, + new Vector3 { X = 0.723600f, Y = -0.525720f, Z = -0.447215f}, + new Vector3 { X = 0.000000f, Y = 0.000000f, Z = -1.000000f}, + new Vector3 { X = 0.723600f, Y = 0.525720f, Z = -0.447215f}, + new Vector3 { X = -0.894425f, Y = 0.000000f, Z = -0.447215f}, + new Vector3 { X = 0.000000f, Y = 0.000000f, Z = -1.000000f}, + new Vector3 { X = -0.276385f, Y = -0.850640f, Z = -0.447215f}, + new Vector3 { X = -0.276385f, Y = 0.850640f, Z = -0.447215f}, + new Vector3 { X = 0.000000f, Y = 0.000000f, Z = -1.000000f}, + new Vector3 { X = -0.894425f, Y = 0.000000f, Z = -0.447215f}, + new Vector3 { X = 0.723600f, Y = 0.525720f, Z = -0.447215f}, + new Vector3 { X = 0.000000f, Y = 0.000000f, Z = -1.000000f}, + new Vector3 { X = -0.276385f, Y = 0.850640f, Z = -0.447215f}, + new Vector3 { X = 0.723600f, Y = -0.525720f, Z = -0.447215f}, + new Vector3 { X = 0.723600f, Y = 0.525720f, Z = -0.447215f}, + new Vector3 { X = 0.894425f, Y = 0.000000f, Z = 0.447215f}, + new Vector3 { X = -0.276385f, Y = -0.850640f, Z = -0.447215f}, + new Vector3 { X = 0.723600f, Y = -0.525720f, Z = -0.447215f}, + new Vector3 { X = 0.276385f, Y = -0.850640f, Z = 0.447215f}, + new Vector3 { X = -0.894425f, Y = 0.000000f, Z = -0.447215f}, + new Vector3 { X = -0.276385f, Y = -0.850640f, Z = -0.447215f}, + new Vector3 { X = -0.723600f, Y = -0.525720f, Z = 0.447215f}, + new Vector3 { X = -0.276385f, Y = 0.850640f, Z = -0.447215f}, + new Vector3 { X = -0.894425f, Y = 0.000000f, Z = -0.447215f}, + new Vector3 { X = -0.723600f, Y = 0.525720f, Z = 0.447215f}, + new Vector3 { X = 0.723600f, Y = 0.525720f, Z = -0.447215f}, + new Vector3 { X = -0.276385f, Y = 0.850640f, Z = -0.447215f}, + new Vector3 { X = 0.276385f, Y = 0.850640f, Z = 0.447215f}, + new Vector3 { X = 0.894425f, Y = 0.000000f, Z = 0.447215f}, + new Vector3 { X = 0.276385f, Y = -0.850640f, Z = 0.447215f}, + new Vector3 { X = 0.723600f, Y = -0.525720f, Z = -0.447215f}, + new Vector3 { X = 0.276385f, Y = -0.850640f, Z = 0.447215f}, + new Vector3 { X = -0.723600f, Y = -0.525720f, Z = 0.447215f}, + new Vector3 { X = -0.276385f, Y = -0.850640f, Z = -0.447215f}, + new Vector3 { X = -0.723600f, Y = -0.525720f, Z = 0.447215f}, + new Vector3 { X = -0.723600f, Y = 0.525720f, Z = 0.447215f}, + new Vector3 { X = -0.894425f, Y = 0.000000f, Z = -0.447215f}, + new Vector3 { X = -0.723600f, Y = 0.525720f, Z = 0.447215f}, + new Vector3 { X = 0.276385f, Y = 0.850640f, Z = 0.447215f}, + new Vector3 { X = -0.276385f, Y = 0.850640f, Z = -0.447215f}, + new Vector3 { X = 0.276385f, Y = 0.850640f, Z = 0.447215f}, + new Vector3 { X = 0.894425f, Y = 0.000000f, Z = 0.447215f}, + new Vector3 { X = 0.723600f, Y = 0.525720f, Z = -0.447215f}, + new Vector3 { X = 0.276385f, Y = -0.850640f, Z = 0.447215f}, + new Vector3 { X = 0.894425f, Y = 0.000000f, Z = 0.447215f}, + new Vector3 { X = 0.000000f, Y = 0.000000f, Z = 1.000000f}, + new Vector3 { X = -0.723600f, Y = -0.525720f, Z = 0.447215f}, + new Vector3 { X = 0.276385f, Y = -0.850640f, Z = 0.447215f}, + new Vector3 { X = 0.000000f, Y = 0.000000f, Z = 1.000000f}, + new Vector3 { X = -0.723600f, Y = 0.525720f, Z = 0.447215f}, + new Vector3 { X = -0.723600f, Y = -0.525720f, Z = 0.447215f}, + new Vector3 { X = 0.000000f, Y = 0.000000f, Z = 1.000000f}, + new Vector3 { X = 0.276385f, Y = 0.850640f, Z = 0.447215f}, + new Vector3 { X = -0.723600f, Y = 0.525720f, Z = 0.447215f}, + new Vector3 { X = 0.000000f, Y = 0.000000f, Z = 1.000000f}, + new Vector3 { X = 0.894425f, Y = 0.000000f, Z = 0.447215f}, + new Vector3 { X = 0.276385f, Y = 0.850640f, Z = 0.447215f}, + new Vector3 { X = 0.000000f, Y = 0.000000f, Z = 1.000000f}, + }; + + TextureCoord[] textureCoordinates = + { + new TextureCoord { S = .648752f, T = 0.445995f}, + new TextureCoord { S = 0.914415f, T = 0.532311f}, + new TextureCoord { S = 0.722181f, T = 0.671980f}, + new TextureCoord { S = 0.722181f, T = 0.671980f}, + new TextureCoord { S = 0.914415f, T = 0.532311f}, + new TextureCoord { S = 0.914415f, T = 0.811645f}, + new TextureCoord { S = 0.254949f, T = 0.204901f}, + new TextureCoord { S = 0.254949f, T = 0.442518f}, + new TextureCoord { S = 0.028963f, T = 0.278329f}, + new TextureCoord { S = 0.480936f, T = 0.278329f}, + new TextureCoord { S = 0.254949f, T = 0.442518f}, + new TextureCoord { S = 0.254949f, T = 0.204901f}, + new TextureCoord { S = 0.838115f, T = 0.247091f}, + new TextureCoord { S = 0.713611f, T = 0.462739f}, + new TextureCoord { S = 0.589108f, T = 0.247091f}, + new TextureCoord { S = 0.722181f, T = 0.671980f}, + new TextureCoord { S = 0.914415f, T = 0.811645f}, + new TextureCoord { S = 0.648752f, T = 0.897968f}, + new TextureCoord { S = 0.648752f, T = 0.445995f}, + new TextureCoord { S = 0.722181f, T = 0.671980f}, + new TextureCoord { S = 0.484562f, T = 0.671981f}, + new TextureCoord { S = 0.254949f, T = 0.204901f}, + new TextureCoord { S = 0.028963f, T = 0.278329f}, + new TextureCoord { S = 0.115283f, T = 0.012663f}, + new TextureCoord { S = 0.480936f, T = 0.278329f}, + new TextureCoord { S = 0.254949f, T = 0.204901f}, + new TextureCoord { S = 0.394615f, T = 0.012663f}, + new TextureCoord { S = 0.838115f, T = 0.247091f}, + new TextureCoord { S = 0.589108f, T = 0.247091f}, + new TextureCoord { S = 0.713609f, T = 0.031441f}, + new TextureCoord { S = 0.648752f, T = 0.897968f}, + new TextureCoord { S = 0.484562f, T = 0.671981f}, + new TextureCoord { S = 0.722181f, T = 0.671980f}, + new TextureCoord { S = 0.644386f, T = 0.947134f}, + new TextureCoord { S = 0.396380f, T = 0.969437f}, + new TextureCoord { S = 0.501069f, T = 0.743502f}, + new TextureCoord { S = 0.115283f, T = 0.012663f}, + new TextureCoord { S = 0.394615f, T = 0.012663f}, + new TextureCoord { S = 0.254949f, T = 0.204901f}, + new TextureCoord { S = 0.464602f, T = 0.031442f}, + new TextureCoord { S = 0.713609f, T = 0.031441f}, + new TextureCoord { S = 0.589108f, T = 0.247091f}, + new TextureCoord { S = 0.713609f, T = 0.031441f}, + new TextureCoord { S = 0.962618f, T = 0.031441f}, + new TextureCoord { S = 0.838115f, T = 0.247091f}, + new TextureCoord { S = 0.028963f, T = 0.613069f}, + new TextureCoord { S = 0.254949f, T = 0.448877f}, + new TextureCoord { S = 0.254949f, T = 0.686495f}, + new TextureCoord { S = 0.115283f, T = 0.878730f}, + new TextureCoord { S = 0.028963f, T = 0.613069f}, + new TextureCoord { S = 0.254949f, T = 0.686495f}, + new TextureCoord { S = 0.394615f, T = 0.878730f}, + new TextureCoord { S = 0.115283f, T = 0.878730f}, + new TextureCoord { S = 0.254949f, T = 0.686495f}, + new TextureCoord { S = 0.480935f, T = 0.613069f}, + new TextureCoord { S = 0.394615f, T = 0.878730f}, + new TextureCoord { S = 0.254949f, T = 0.686495f}, + new TextureCoord { S = 0.254949f, T = 0.448877f}, + new TextureCoord { S = 0.480935f, T = 0.613069f}, + new TextureCoord { S = 0.254949f, T = 0.686495f}, + }; + + GL.ClearColor (0f, 0f, 0f, 1f); + GL.Clear (ClearBufferMask.ColorBufferBit | ClearBufferMask.DepthBufferBit); + if (program != null) + program.Use (); + + GL.VertexAttribPointer (positionAttribute, 3, VertexAttribPointerType.Float, false, 0, vertices); + GL.EnableVertexAttribArray (positionAttribute); + + GL.VertexAttribPointer (textureCoordinateAttribute, 2, VertexAttribPointerType.Float, false, 0, textureCoordinates); + GL.EnableVertexAttribArray (textureCoordinateAttribute); + + Vector3 rotationVector = new Vector3 (1.0f, 1.0f, 1.0f); + GLCommon.Matrix3DSetRotationByDegrees (ref rotationMatrix, rot, rotationVector); + GLCommon.Matrix3DSetTranslation (ref translationMatrix, 0.0f, 0.0f, -3.0f); + modelViewMatrix = GLCommon.Matrix3DMultiply (translationMatrix, rotationMatrix); + + GLCommon.Matrix3DSetPerspectiveProjectionWithFieldOfView (ref projectionMatrix, 45.0f, 0.1f, 100.0f, + View.Frame.Size.Width / + View.Frame.Size.Height); + + matrix = GLCommon.Matrix3DMultiply (projectionMatrix, modelViewMatrix); + GL.UniformMatrix4 (matrixUniform, 1, false, matrix); + + GL.ActiveTexture (TextureUnit.Texture0); + if (texture != null) + texture.Use (); + GL.Uniform1 (textureUniform, 0); + + GL.DrawArrays (BeginMode.Triangles, 0, vertices.Length); + + rot += 2.0f; + if (rot > 360.0f) + rot -= 360.0f; + } + + public override void LoadView () + { + GLView view = new GLView (); + view.Controller = this; + + View = view; + } + } +} \ No newline at end of file diff --git a/OpenGL/OpenGLES20Example/Info.plist b/OpenGL/OpenGLES20Example/Info.plist new file mode 100644 index 000000000..8653860cf --- /dev/null +++ b/OpenGL/OpenGLES20Example/Info.plist @@ -0,0 +1,26 @@ + + + + + UIDeviceFamily + + 1 + 2 + + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + MinimumOSVersion + 3.2 + + diff --git a/OpenGL/OpenGLES20Example/Main.cs b/OpenGL/OpenGLES20Example/Main.cs new file mode 100644 index 000000000..d526e368f --- /dev/null +++ b/OpenGL/OpenGLES20Example/Main.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using MonoTouch.Foundation; +using MonoTouch.UIKit; + +namespace OpenGLES2Example +{ + public class Application + { + // This is the main entry point of the application. + static void Main (string[] args) + { + // if you want to use a different Application Delegate class from "AppDelegate" + // you can specify it here. + UIApplication.Main (args, null, "AppDelegate"); + } + } +} diff --git a/OpenGL/OpenGLES20Example/OpenGLES20Example.csproj b/OpenGL/OpenGLES20Example/OpenGLES20Example.csproj new file mode 100644 index 000000000..49b0f0f06 --- /dev/null +++ b/OpenGL/OpenGLES20Example/OpenGLES20Example.csproj @@ -0,0 +1,100 @@ + + + + Debug + iPhoneSimulator + 10.0.0 + 2.0 + {850F3504-CFDB-4D3F-B9F8-2A7B1D451C36} + {6BC8ED88-2882-458C-8E55-DFD12B67127B};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + Exe + OpenGLES2Example + Resources + OpenGLES2Example + + + true + false + bin\iPhoneSimulator\Debug + DEBUG; + prompt + 4 + false + None + true + + + true + bin\iPhoneSimulator\Release + prompt + 4 + false + None + + + true + false + bin\iPhone\Debug + DEBUG; + prompt + 4 + false + true + iPhone Developer + + + true + bin\iPhone\Release + prompt + 4 + false + iPhone Developer + + + true + bin\iPhone\Ad-Hoc + prompt + 4 + true + iPhone Distribution + false + Automatic:AdHoc + + + true + bin\iPhone\AppStore + prompt + 4 + false + iPhone Distribution + Automatic:AppStore + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/OpenGL/OpenGLES20Example/Resources/DieTexture.png b/OpenGL/OpenGLES20Example/Resources/DieTexture.png new file mode 100755 index 000000000..a9dad77b5 Binary files /dev/null and b/OpenGL/OpenGLES20Example/Resources/DieTexture.png differ diff --git a/OpenGL/OpenGLES20Example/Shader.fsh b/OpenGL/OpenGLES20Example/Shader.fsh new file mode 100755 index 000000000..c5090011a --- /dev/null +++ b/OpenGL/OpenGLES20Example/Shader.fsh @@ -0,0 +1,6 @@ +uniform sampler2D texture; +varying mediump vec2 fragmentTextureCoordinates; +void main() +{ + gl_FragColor = texture2D(texture, fragmentTextureCoordinates); +} diff --git a/OpenGL/OpenGLES20Example/Shader.vsh b/OpenGL/OpenGLES20Example/Shader.vsh new file mode 100755 index 000000000..4ed309ed5 --- /dev/null +++ b/OpenGL/OpenGLES20Example/Shader.vsh @@ -0,0 +1,9 @@ +attribute vec4 position; +attribute vec2 textureCoordinates; +uniform mat4 matrix; +varying vec2 fragmentTextureCoordinates; +void main() +{ + gl_Position = matrix * position; + fragmentTextureCoordinates = textureCoordinates; +} \ No newline at end of file diff --git a/OpenGL/PerVertexDirectionalLighting/AppDelegate.cs b/OpenGL/PerVertexDirectionalLighting/AppDelegate.cs new file mode 100644 index 000000000..6653f8234 --- /dev/null +++ b/OpenGL/PerVertexDirectionalLighting/AppDelegate.cs @@ -0,0 +1,32 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using MonoTouch.Foundation; +using MonoTouch.UIKit; + +namespace PerVertexDirectionalLighting +{ + [Register ("AppDelegate")] + public partial class AppDelegate : UIApplicationDelegate + { + UIWindow window; + + public override bool FinishedLaunching (UIApplication app, NSDictionary options) + { + window = new UIWindow (UIScreen.MainScreen.Bounds); + + GLViewController root = new GLViewController (); + root.View.Frame = window.Frame; + root.View.ContentScaleFactor = window.ContentScaleFactor; + + window.RootViewController = root; + + window.MakeKeyAndVisible (); + + (root.View as GLView).StartAnimation (); + + return true; + } + } +} + diff --git a/OpenGL/PerVertexDirectionalLighting/GLCommon.cs b/OpenGL/PerVertexDirectionalLighting/GLCommon.cs new file mode 100644 index 000000000..8f32a3318 --- /dev/null +++ b/OpenGL/PerVertexDirectionalLighting/GLCommon.cs @@ -0,0 +1,209 @@ +using System; +using OpenTK; + +namespace PerVertexDirectionalLighting +{ + struct Color { + public float red; + public float green; + public float blue; + public float alpha; + } + + struct TextureCoord { + public float S; + public float T; + } + + public static class GLCommon + { + public static float radiansFromDegrees (float degrees) + { + return (float)Math.PI * degrees / 180.0f; + } + + public static void Matrix3DSetRotationByRadians (ref float[] matrix, float radians, ref Vector3 vector) + { + float mag = (float) Math.Sqrt ((vector.X * vector.X) + (vector.Y * vector.Y) + (vector.Z * vector.Z)); + + if (mag == 0.0f) { + vector.X = 1.0f; + vector.Y = 0.0f; + vector.Z = 0.0f; + } else if (mag != 1.0f) { + vector.X /= mag; + vector.Y /= mag; + vector.Z /= mag; + } + + float c = (float) Math.Cos (radians); + float s = (float) Math.Sin (radians); + matrix [3] = matrix [7] = matrix [11] = 0.0f; + matrix [12] = matrix [13] = matrix [14] = 0.0f; + matrix [15] = 1.0f; + + matrix [0] = (vector.X * vector.X) * (1 - c) + c; + matrix [1] = (vector.Y * vector.X) * (1 - c) + (vector.Z * s); + matrix [2] = (vector.X * vector.Z) * (1 - c) - (vector.Y * s); + matrix [4] = (vector.X * vector.Y) * (1 - c) - (vector.Z * s); + matrix [5] = (vector.Y * vector.Y) * (1 - c) + c; + matrix [6] = (vector.Y * vector.Z) * (1 - c) + (vector.X * s); + matrix [8] = (vector.X * vector.Z) * (1 - c) + (vector.Y * s); + matrix [9] = (vector.Y * vector.Z) * (1 - c) - (vector.X * s); + matrix [10] = (vector.Z * vector.Z) * (1 - c) + c; + } + + public static void Matrix3DSetRotationByDegrees (ref float[] matrix, float degrees, Vector3 vector) + { + Matrix3DSetRotationByRadians (ref matrix, radiansFromDegrees (degrees), ref vector); + } + + public static void Matrix3DSetIdentity (ref float[] matrix) + { + matrix [0] = matrix [5] = matrix [10] = matrix [15] = 1.0f; + matrix [1] = matrix [2] = matrix [3] = matrix [4] = 0.0f; + matrix [6] = matrix [7] = matrix [8] = matrix [9] = 0.0f; + matrix [11] = matrix [12] = matrix [13] = matrix [14] = 0.0f; + } + + public static void Matrix3DSetTranslation (ref float[] matrix, float xTranslate, float yTranslate, float zTranslate) + { + matrix [0] = matrix [5] = matrix [10] = matrix [15] = 1.0f; + matrix [1] = matrix [2] = matrix [3] = matrix [4] = 0.0f; + matrix [6] = matrix [7] = matrix [8] = matrix [9] = 0.0f; + matrix [11] = 0.0f; + matrix [12] = xTranslate; + matrix [13] = yTranslate; + matrix [14] = zTranslate; + } + + public static void Matrix3DSetScaling (ref float[] matrix, float xScale, float yScale, float zScale) + { + matrix [1] = matrix [2] = matrix [3] = matrix [4] = 0.0f; + matrix [6] = matrix [7] = matrix [8] = matrix [9] = 0.0f; + matrix [11] = matrix [12] = matrix [13] = matrix [14] = 0.0f; + matrix [0] = xScale; + matrix [5] = yScale; + matrix [10] = zScale; + matrix [15] = 1.0f; + } + + public static void Matrix3DSetUniformScaling (ref float[] matrix, float scale) + { + Matrix3DSetScaling (ref matrix, scale, scale, scale); + } + + public static void Matrix3DSetZRotationUsingRadians (ref float[] matrix, float radians) + { + matrix [0] = (float)Math.Cos (radians); + matrix [1] = (float)Math.Sin (radians); + matrix [4] = -matrix [1]; + matrix [5] = matrix [0]; + matrix [2] = matrix [3] = matrix [6] = matrix [7] = matrix [8] = 0.0f; + matrix [9] = matrix [11] = matrix [12] = matrix [13] = matrix [14] = 0.0f; + matrix [10] = matrix [15] = 0; + } + + public static void Matrix3DSetZRotationUsingDegrees (ref float[] matrix, float degrees) + { + Matrix3DSetZRotationUsingRadians (ref matrix, radiansFromDegrees (degrees)); + } + + public static void Matrix3DSetXRotationUsingRadians (ref float[] matrix, float radians) + { + matrix [0] = matrix [15] = 1.0f; + matrix [1] = matrix [2] = matrix [3] = matrix [4] = 0.0f; + matrix [7] = matrix [8] = 0.0f; + matrix [11] = matrix [12] = matrix [13] = matrix [14] = 0.0f; + matrix [5] = (float) Math.Cos (radians); + matrix [6] = - (float)Math.Sin (radians); + matrix [9] = - matrix [6]; + matrix [10] = matrix [5]; + } + + public static void Matrix3DSetXRotationUsingDegrees (ref float[] matrix, float degrees) + { + Matrix3DSetXRotationUsingRadians (ref matrix, radiansFromDegrees (degrees)); + } + + public static void Matrix3DSetYRotationUsingRadians (ref float[] matrix, float radians) + { + matrix [0] = (float)Math.Cos (radians); + matrix [2] = (float)Math.Sin (radians); + matrix [8] = - matrix [2]; + matrix [10] = matrix [0]; + matrix [1] = matrix [3] = matrix [4] = matrix [6] = matrix [7] = 0.0f; + matrix [9] = matrix [11] = matrix [12] = matrix [13] = matrix [14] = 0.0f; + matrix [5] = matrix [15] = 1.0f; + } + + public static void Matrix3DSetYRotationUsingDegrees (ref float[] matrix, float degrees) + { + Matrix3DSetYRotationUsingRadians (ref matrix, radiansFromDegrees (degrees)); + } + + public static float[] Matrix3DMultiply (float[] m1, float[] m2) + { + float[] result = new float[16]; + + result [0] = m1 [0] * m2 [0] + m1 [4] * m2 [1] + m1 [8] * m2 [2] + m1 [12] * m2 [3]; + result [1] = m1 [1] * m2 [0] + m1 [5] * m2 [1] + m1 [9] * m2 [2] + m1 [13] * m2 [3]; + result [2] = m1 [2] * m2 [0] + m1 [6] * m2 [1] + m1 [10] * m2 [2] + m1 [14] * m2 [3]; + result [3] = m1 [3] * m2 [0] + m1 [7] * m2 [1] + m1 [11] * m2 [2] + m1 [15] * m2 [3]; + + result [4] = m1 [0] * m2 [4] + m1 [4] * m2 [5] + m1 [8] * m2 [6] + m1 [12] * m2 [7]; + result [5] = m1 [1] * m2 [4] + m1 [5] * m2 [5] + m1 [9] * m2 [6] + m1 [13] * m2 [7]; + result [6] = m1 [2] * m2 [4] + m1 [6] * m2 [5] + m1 [10] * m2 [6] + m1 [14] * m2 [7]; + result [7] = m1 [3] * m2 [4] + m1 [7] * m2 [5] + m1 [11] * m2 [6] + m1 [15] * m2 [7]; + + result [8] = m1 [0] * m2 [8] + m1 [4] * m2 [9] + m1 [8] * m2 [10] + m1 [12] * m2 [11]; + result [9] = m1 [1] * m2 [8] + m1 [5] * m2 [9] + m1 [9] * m2 [10] + m1 [13] * m2 [11]; + result [10] = m1 [2] * m2 [8] + m1 [6] * m2 [9] + m1 [10] * m2 [10] + m1 [14] * m2 [11]; + result [11] = m1 [3] * m2 [8] + m1 [7] * m2 [9] + m1 [11] * m2 [10] + m1 [15] * m2 [11]; + + result [12] = m1 [0] * m2 [12] + m1 [4] * m2 [13] + m1 [8] * m2 [14] + m1 [12] * m2 [15]; + result [13] = m1 [1] * m2 [12] + m1 [5] * m2 [13] + m1 [9] * m2 [14] + m1 [13] * m2 [15]; + result [14] = m1 [2] * m2 [12] + m1 [6] * m2 [13] + m1 [10] * m2 [14] + m1 [14] * m2 [15]; + result [15] = m1 [3] * m2 [12] + m1 [7] * m2 [13] + m1 [11] * m2 [14] + m1 [15] * m2 [15]; + + return result; + } + + public static void Matrix3DSetOrthoProjection (ref float[] matrix, float left, float right, float bottom, + float top, float near, float far) + { + matrix [1] = matrix [2] = matrix [3] = matrix [4] = matrix [6] = 0.0f; + matrix [7] = matrix [8] = matrix [9] = matrix [11] = 0.0f; + matrix [0] = 2.0f / (right - left); + matrix [5] = 2.0f / (top - bottom); + matrix [10] = -2.0f / (far - near); + matrix [12] = (right + left) / (right - left); + matrix [13] = (top + bottom) / (top - bottom); + matrix [14] = (far + near) / (far - near); + matrix [15] = 1.0f; + } + + public static void Matrix3DSetFrustumProjection (ref float[] matrix, float left, float right, float bottom, + float top, float zNear, float zFar) + { + matrix [1] = matrix [2] = matrix [3] = matrix [4] = 0.0f; + matrix [6] = matrix [7] = matrix [12] = matrix [13] = matrix [15] = 0.0f; + + matrix [0] = 2 * zNear / (right - left); + matrix [5] = 2 * zNear / (top - bottom); + matrix [8] = (right + left) / (right - left); + matrix [9] = (top + bottom) / (top - bottom); + matrix [10] = - (zFar + zNear) / (zFar - zNear); + matrix [11] = - 1.0f; + matrix [14] = - (2 * zFar * zNear) / (zFar - zNear); + } + + public static void Matrix3DSetPerspectiveProjectionWithFieldOfView (ref float[] matrix, float fieldOfVision, + float near, float far, float aspectRatio) + { + float size = near * (float)Math.Tan (radiansFromDegrees (fieldOfVision) / 2.0f); + Matrix3DSetFrustumProjection (ref matrix, -size, size, -size / aspectRatio, + size / aspectRatio, near, far); + } + } +} \ No newline at end of file diff --git a/OpenGL/PerVertexDirectionalLighting/GLProgram.cs b/OpenGL/PerVertexDirectionalLighting/GLProgram.cs new file mode 100644 index 000000000..3afab9e62 --- /dev/null +++ b/OpenGL/PerVertexDirectionalLighting/GLProgram.cs @@ -0,0 +1,121 @@ +using System; +using OpenTK.Graphics.ES20; +using MonoTouch.Foundation; +using System.IO; +using System.Collections.Generic; +using System.Text; + +namespace PerVertexDirectionalLighting +{ + public class GLProgram + { + int program, + vertShader, + fragShader; + + List attributes; + + public GLProgram (string vShaderFilename, string fShaderFilename) + { + attributes = new List (); + program = GL.CreateProgram (); + + string vertShaderPathName = NSBundle.MainBundle.PathForResource (vShaderFilename, "vsh"); + if (!compileShader (ref vertShader, ShaderType.VertexShader, vertShaderPathName)) + Console.WriteLine ("Failed to compile the vertex shader"); + + string fragShaderPathName = NSBundle.MainBundle.PathForResource (fShaderFilename, "fsh"); + if (!compileShader (ref fragShader, ShaderType.FragmentShader, fragShaderPathName)) + Console.WriteLine ("Failed to compile the fragment shader"); + + GL.AttachShader (program, vertShader); + GL.AttachShader (program, fragShader); + } + + bool compileShader (ref int shader, ShaderType type, string file) + { + int status; + string source; + + using (StreamReader sr = new StreamReader(file)) + source = sr.ReadToEnd(); + + shader = GL.CreateShader (type); + GL.ShaderSource (shader, source); + GL.CompileShader (shader); + + GL.GetShader (shader, ShaderParameter.CompileStatus, out status); + + return status == (int) All.True; + } + + public void AddAttribute (string attributeName) + { + if (!attributes.Contains (attributeName)) { + attributes.Add (attributeName); + GL.BindAttribLocation (program, attributes.IndexOf (attributeName), attributeName); + } + } + + public int GetAttributeIndex (string attributeName) + { + return attributes.IndexOf (attributeName); + } + + public int GetUniformIndex (string uniformName) + { + return GL.GetUniformLocation (program, uniformName); + } + + public bool Link () + { + int status = 0; + + GL.LinkProgram (program); + GL.ValidateProgram (program); + + GL.GetProgram (program, ProgramParameter.LinkStatus, out status); + if (status == (int) All.False) + return false; + + GL.DeleteShader (vertShader); + GL.DeleteShader (fragShader); + + return true; + } + + public void Use () + { + GL.UseProgram (program); + } + + string getLog (int obj) + { + int logLength = 0; + + GL.GetProgram (obj, ProgramParameter.InfoLogLength, out logLength); + if (logLength < 1) + return null; + + string log = GL.GetProgramInfoLog (obj); + + return log; + } + + public string VertexShaderLog () + { + return getLog (vertShader); + } + + public string FragmentShaderLog () + { + return getLog (fragShader); + } + + public string ProgramLog () + { + return getLog (program); + } + } +} + diff --git a/OpenGL/PerVertexDirectionalLighting/GLTexture.cs b/OpenGL/PerVertexDirectionalLighting/GLTexture.cs new file mode 100644 index 000000000..098c2828a --- /dev/null +++ b/OpenGL/PerVertexDirectionalLighting/GLTexture.cs @@ -0,0 +1,74 @@ +using System; +using OpenTK.Graphics.ES20; +using MonoTouch.OpenGLES; +using System.IO; +using MonoTouch.Foundation; +using MonoTouch.UIKit; +using MonoTouch.CoreImage; +using MonoTouch.CoreGraphics; +using System.Drawing; + +namespace PerVertexDirectionalLighting +{ + public class GLTexture + { + string filename; + uint texture; + + public GLTexture (string inFilename) + { + GL.Enable (EnableCap.Texture2D); + GL.Enable (EnableCap.Blend); + + filename = inFilename; + + GL.Hint (HintTarget.GenerateMipmapHint, HintMode.Nicest); + GL.GenTextures (1, out texture); + GL.BindTexture (TextureTarget.Texture2D, texture); + GL.TexParameter (TextureTarget.Texture2D, TextureParameterName.TextureWrapS, (int) All.Repeat); + GL.TexParameter (TextureTarget.Texture2D, TextureParameterName.TextureWrapT, (int) All.Repeat); + GL.TexParameter (TextureTarget.Texture2D, TextureParameterName.TextureMinFilter, (int) All.Linear); + GL.TexParameter (TextureTarget.Texture2D, TextureParameterName.TextureMagFilter, (int) All.Linear); + GL.TexParameter (TextureTarget.Texture2D, TextureParameterName.TextureMinFilter, (int) All.Nearest); + GL.TexParameter (TextureTarget.Texture2D, TextureParameterName.TextureMagFilter, (int) All.Nearest); + + string extension = Path.GetExtension (filename); + string baseFilename = Path.GetFileNameWithoutExtension (filename); + + string path = NSBundle.MainBundle.PathForResource (baseFilename, extension); + NSData texData = NSData.FromFile (path); + + UIImage image = UIImage.LoadFromData (texData); + if (image == null) + return; + + int width = image.CGImage.Width; + int height = image.CGImage.Height; + + CGColorSpace colorSpace = CGColorSpace.CreateDeviceRGB (); + byte [] imageData = new byte[height * width * 4]; + CGContext context = new CGBitmapContext (imageData, width, height, 8, 4 * width, colorSpace, + CGBitmapFlags.PremultipliedLast | CGBitmapFlags.ByteOrder32Big); + + context.TranslateCTM (0, height); + context.ScaleCTM (1, -1); + colorSpace.Dispose (); + context.ClearRect (new RectangleF (0, 0, width, height)); + context.DrawImage (new RectangleF (0, 0, width, height), image.CGImage); + + GL.TexImage2D (TextureTarget.Texture2D, 0, PixelInternalFormat.Rgba, width, height, 0, PixelFormat.Rgba, PixelType.UnsignedByte, imageData); + context.Dispose (); + } + + public static void UseDefaultTexture () + { + GL.BindTexture (TextureTarget.Texture2D, 0); + } + + public void Use () + { + GL.BindTexture (TextureTarget.Texture2D, texture); + } + } +} + diff --git a/OpenGL/PerVertexDirectionalLighting/GLView.cs b/OpenGL/PerVertexDirectionalLighting/GLView.cs new file mode 100644 index 000000000..7432599ee --- /dev/null +++ b/OpenGL/PerVertexDirectionalLighting/GLView.cs @@ -0,0 +1,141 @@ +using System; +using MonoTouch.Foundation; +using MonoTouch.UIKit; +using MonoTouch.OpenGLES; +using OpenTK.Graphics.ES20; +using MonoTouch.CoreAnimation; +using MonoTouch.ObjCRuntime; + +namespace PerVertexDirectionalLighting +{ + public class GLView : UIView + { + int backingWidth; + int backingHeight; + uint frameBuffer; + uint renderBuffer; + uint depthBuffer; + + int animationFrameInterval; + public int AnimationFrameInterval { + get { return animationFrameInterval; } + set { + if (value >= 1) { + animationFrameInterval = value; + + if (animating) { + StopAnimation (); + StartAnimation (); + } + } + } + } + + bool animating; + EAGLContext context; + CADisplayLink displayLink; + + public GLViewController Controller; + + [Export ("layerClass")] + public static Class LayerClass () + { + return new Class (typeof (CAEAGLLayer)); + } + + public GLView () : base () + { + CAEAGLLayer eaglLayer = (CAEAGLLayer)Layer; + eaglLayer.Opaque = true; + + context = new EAGLContext (EAGLRenderingAPI.OpenGLES2); + + if (context == null || !EAGLContext.SetCurrentContext (context)) + return; + + animating = false; + AnimationFrameInterval = 2; + } + + void createBuffers () + { + GL.GenFramebuffers (1, out frameBuffer); + GL.GenRenderbuffers (1, out renderBuffer); + GL.BindFramebuffer (FramebufferTarget.Framebuffer, frameBuffer); + GL.BindRenderbuffer (RenderbufferTarget.Renderbuffer, renderBuffer); + context.RenderBufferStorage ((uint) All.Renderbuffer, (CAEAGLLayer) Layer); + GL.FramebufferRenderbuffer (FramebufferTarget.Framebuffer, FramebufferSlot.ColorAttachment0, RenderbufferTarget.Renderbuffer, renderBuffer); + GL.GetRenderbufferParameter (RenderbufferTarget.Renderbuffer, RenderbufferParameterName.RenderbufferWidth, out backingWidth); + GL.GetRenderbufferParameter (RenderbufferTarget.Renderbuffer, RenderbufferParameterName.RenderbufferHeight, out backingHeight); + + GL.GenRenderbuffers (1, out depthBuffer); + GL.BindRenderbuffer (RenderbufferTarget.Renderbuffer, depthBuffer); + GL.RenderbufferStorage (RenderbufferTarget.Renderbuffer, RenderbufferInternalFormat.DepthComponent16, backingWidth, backingHeight); + GL.FramebufferRenderbuffer (FramebufferTarget.Framebuffer, FramebufferSlot.DepthAttachment, RenderbufferTarget.Renderbuffer, depthBuffer); + } + + void destroyBuffers () + { + GL.DeleteFramebuffers (1, ref frameBuffer); + frameBuffer = 0; + GL.DeleteRenderbuffers (1, ref renderBuffer); + renderBuffer = 0; + GL.DeleteRenderbuffers (1, ref depthBuffer); + depthBuffer = 0; + } + + void drawView () + { + GL.BindFramebuffer (FramebufferTarget.Framebuffer, frameBuffer); + + Controller.Draw (); + + GL.BindRenderbuffer (RenderbufferTarget.Renderbuffer, renderBuffer); + context.PresentRenderBuffer ((uint) RenderbufferTarget.Renderbuffer); + } + + public override void LayoutSubviews () + { + EAGLContext.SetCurrentContext (context); + + destroyBuffers (); + createBuffers (); + drawView (); + + GL.BindRenderbuffer (RenderbufferTarget.Renderbuffer, renderBuffer); + + GL.GetRenderbufferParameter (RenderbufferTarget.Renderbuffer, RenderbufferParameterName.RenderbufferWidth, out backingWidth); + GL.GetRenderbufferParameter (RenderbufferTarget.Renderbuffer, RenderbufferParameterName.RenderbufferHeight, out backingHeight); + + if (GL.CheckFramebufferStatus (FramebufferTarget.Framebuffer) != FramebufferErrorCode.FramebufferComplete) + Console.WriteLine (String.Format ("Failed to make complete framebuffer object {0}", + GL.CheckFramebufferStatus (FramebufferTarget.Framebuffer).ToString ())); + + GL.Viewport (0, 0, backingWidth, backingHeight); + + Controller.Setup (); + } + + public void StartAnimation () + { + if (!animating) { + displayLink = CADisplayLink.Create (drawView); + displayLink.FrameInterval = AnimationFrameInterval; + displayLink.AddToRunLoop (NSRunLoop.Current, NSRunLoop.NSDefaultRunLoopMode); + + animating = true; + } + } + + public void StopAnimation () + { + if (animating) { + displayLink.Invalidate (); + displayLink = null; + + animating = false; + } + } + } +} + diff --git a/OpenGL/PerVertexDirectionalLighting/GLViewController.cs b/OpenGL/PerVertexDirectionalLighting/GLViewController.cs new file mode 100644 index 000000000..8b70b5716 --- /dev/null +++ b/OpenGL/PerVertexDirectionalLighting/GLViewController.cs @@ -0,0 +1,311 @@ +using System; +using OpenTK; +using MonoTouch.UIKit; +using OpenTK.Graphics.ES20; + +namespace PerVertexDirectionalLighting +{ + public class GLViewController : UIViewController + { + GLProgram program; + GLTexture texture; + + float rot = 0f; + + int positionAttribute, + textureCoordinateAttribute, + normalsAttribute, + matrixUniform, + textureUniform, + lightDirectionUniform, + lightDiffuseColorUniform; + + float[] rotationMatrix = new float[16], + translationMatrix = new float[16], + modelViewMatrix = new float[16], + projectionMatrix = new float[16], + matrix = new float[16]; + + public GLViewController () + { + } + + public void Setup () + { + program = new GLProgram ("Shader", "Shader"); + + program.AddAttribute ("position"); + program.AddAttribute ("textureCoordinate"); + program.AddAttribute ("normalsAttribute"); + + if (!program.Link ()) { + Console.WriteLine ("Link failed."); + Console.WriteLine (String.Format ("Program Log: {0}", program.ProgramLog ())); + Console.WriteLine (String.Format ("Fragment Log: {0}", program.FragmentShaderLog ())); + Console.WriteLine (String.Format ("Vertex Log: {0}", program.VertexShaderLog ())); + + (View as GLView).StopAnimation (); + program = null; + + return; + } + + positionAttribute = program.GetAttributeIndex ("position"); + textureCoordinateAttribute = program.GetAttributeIndex ("textureCoordinate"); + normalsAttribute = program.GetAttributeIndex ("normalsAttribute"); + + matrixUniform = program.GetUniformIndex ("matrix"); + textureUniform = program.GetUniformIndex ("texture"); + lightDirectionUniform = program.GetUniformIndex ("lightDirection"); + lightDiffuseColorUniform = program.GetUniformIndex ("lightDiffuseColor"); + + GL.Enable (EnableCap.DepthTest); + GL.Enable (EnableCap.CullFace); + GL.Enable (EnableCap.Texture2D); + GL.Enable (EnableCap.Blend); + GL.BlendFunc (BlendingFactorSrc.One, BlendingFactorDest.Zero); + + texture = new GLTexture ("DieTexture.png"); + } + + public void Draw () + { + Vector3[] vertices = { + new Vector3 { X = -0.276385f, Y = -0.850640f, Z = -0.447215f }, + new Vector3 { X = 0.000000f, Y = 0.000000f, Z = -1.000000f}, + new Vector3 { X = 0.723600f, Y = -0.525720f, Z = -0.447215f}, + new Vector3 { X = 0.723600f, Y = -0.525720f, Z = -0.447215f}, + new Vector3 { X = 0.000000f, Y = 0.000000f, Z = -1.000000f}, + new Vector3 { X = 0.723600f, Y = 0.525720f, Z = -0.447215f}, + new Vector3 { X = -0.894425f, Y = 0.000000f, Z = -0.447215f}, + new Vector3 { X = 0.000000f, Y = 0.000000f, Z = -1.000000f}, + new Vector3 { X = -0.276385f, Y = -0.850640f, Z = -0.447215f}, + new Vector3 { X = -0.276385f, Y = 0.850640f, Z = -0.447215f}, + new Vector3 { X = 0.000000f, Y = 0.000000f, Z = -1.000000f}, + new Vector3 { X = -0.894425f, Y = 0.000000f, Z = -0.447215f}, + new Vector3 { X = 0.723600f, Y = 0.525720f, Z = -0.447215f}, + new Vector3 { X = 0.000000f, Y = 0.000000f, Z = -1.000000f}, + new Vector3 { X = -0.276385f, Y = 0.850640f, Z = -0.447215f}, + new Vector3 { X = 0.723600f, Y = -0.525720f, Z = -0.447215f}, + new Vector3 { X = 0.723600f, Y = 0.525720f, Z = -0.447215f}, + new Vector3 { X = 0.894425f, Y = 0.000000f, Z = 0.447215f}, + new Vector3 { X = -0.276385f, Y = -0.850640f, Z = -0.447215f}, + new Vector3 { X = 0.723600f, Y = -0.525720f, Z = -0.447215f}, + new Vector3 { X = 0.276385f, Y = -0.850640f, Z = 0.447215f}, + new Vector3 { X = -0.894425f, Y = 0.000000f, Z = -0.447215f}, + new Vector3 { X = -0.276385f, Y = -0.850640f, Z = -0.447215f}, + new Vector3 { X = -0.723600f, Y = -0.525720f, Z = 0.447215f}, + new Vector3 { X = -0.276385f, Y = 0.850640f, Z = -0.447215f}, + new Vector3 { X = -0.894425f, Y = 0.000000f, Z = -0.447215f}, + new Vector3 { X = -0.723600f, Y = 0.525720f, Z = 0.447215f}, + new Vector3 { X = 0.723600f, Y = 0.525720f, Z = -0.447215f}, + new Vector3 { X = -0.276385f, Y = 0.850640f, Z = -0.447215f}, + new Vector3 { X = 0.276385f, Y = 0.850640f, Z = 0.447215f}, + new Vector3 { X = 0.894425f, Y = 0.000000f, Z = 0.447215f}, + new Vector3 { X = 0.276385f, Y = -0.850640f, Z = 0.447215f}, + new Vector3 { X = 0.723600f, Y = -0.525720f, Z = -0.447215f}, + new Vector3 { X = 0.276385f, Y = -0.850640f, Z = 0.447215f}, + new Vector3 { X = -0.723600f, Y = -0.525720f, Z = 0.447215f}, + new Vector3 { X = -0.276385f, Y = -0.850640f, Z = -0.447215f}, + new Vector3 { X = -0.723600f, Y = -0.525720f, Z = 0.447215f}, + new Vector3 { X = -0.723600f, Y = 0.525720f, Z = 0.447215f}, + new Vector3 { X = -0.894425f, Y = 0.000000f, Z = -0.447215f}, + new Vector3 { X = -0.723600f, Y = 0.525720f, Z = 0.447215f}, + new Vector3 { X = 0.276385f, Y = 0.850640f, Z = 0.447215f}, + new Vector3 { X = -0.276385f, Y = 0.850640f, Z = -0.447215f}, + new Vector3 { X = 0.276385f, Y = 0.850640f, Z = 0.447215f}, + new Vector3 { X = 0.894425f, Y = 0.000000f, Z = 0.447215f}, + new Vector3 { X = 0.723600f, Y = 0.525720f, Z = -0.447215f}, + new Vector3 { X = 0.276385f, Y = -0.850640f, Z = 0.447215f}, + new Vector3 { X = 0.894425f, Y = 0.000000f, Z = 0.447215f}, + new Vector3 { X = 0.000000f, Y = 0.000000f, Z = 1.000000f}, + new Vector3 { X = -0.723600f, Y = -0.525720f, Z = 0.447215f}, + new Vector3 { X = 0.276385f, Y = -0.850640f, Z = 0.447215f}, + new Vector3 { X = 0.000000f, Y = 0.000000f, Z = 1.000000f}, + new Vector3 { X = -0.723600f, Y = 0.525720f, Z = 0.447215f}, + new Vector3 { X = -0.723600f, Y = -0.525720f, Z = 0.447215f}, + new Vector3 { X = 0.000000f, Y = 0.000000f, Z = 1.000000f}, + new Vector3 { X = 0.276385f, Y = 0.850640f, Z = 0.447215f}, + new Vector3 { X = -0.723600f, Y = 0.525720f, Z = 0.447215f}, + new Vector3 { X = 0.000000f, Y = 0.000000f, Z = 1.000000f}, + new Vector3 { X = 0.894425f, Y = 0.000000f, Z = 0.447215f}, + new Vector3 { X = 0.276385f, Y = 0.850640f, Z = 0.447215f}, + new Vector3 { X = 0.000000f, Y = 0.000000f, Z = 1.000000f}, + }; + + TextureCoord[] textureCoordinates = { + new TextureCoord { S = .648752f, T = 0.445995f}, + new TextureCoord { S = 0.914415f, T = 0.532311f}, + new TextureCoord { S = 0.722181f, T = 0.671980f}, + new TextureCoord { S = 0.722181f, T = 0.671980f}, + new TextureCoord { S = 0.914415f, T = 0.532311f}, + new TextureCoord { S = 0.914415f, T = 0.811645f}, + new TextureCoord { S = 0.254949f, T = 0.204901f}, + new TextureCoord { S = 0.254949f, T = 0.442518f}, + new TextureCoord { S = 0.028963f, T = 0.278329f}, + new TextureCoord { S = 0.480936f, T = 0.278329f}, + new TextureCoord { S = 0.254949f, T = 0.442518f}, + new TextureCoord { S = 0.254949f, T = 0.204901f}, + new TextureCoord { S = 0.838115f, T = 0.247091f}, + new TextureCoord { S = 0.713611f, T = 0.462739f}, + new TextureCoord { S = 0.589108f, T = 0.247091f}, + new TextureCoord { S = 0.722181f, T = 0.671980f}, + new TextureCoord { S = 0.914415f, T = 0.811645f}, + new TextureCoord { S = 0.648752f, T = 0.897968f}, + new TextureCoord { S = 0.648752f, T = 0.445995f}, + new TextureCoord { S = 0.722181f, T = 0.671980f}, + new TextureCoord { S = 0.484562f, T = 0.671981f}, + new TextureCoord { S = 0.254949f, T = 0.204901f}, + new TextureCoord { S = 0.028963f, T = 0.278329f}, + new TextureCoord { S = 0.115283f, T = 0.012663f}, + new TextureCoord { S = 0.480936f, T = 0.278329f}, + new TextureCoord { S = 0.254949f, T = 0.204901f}, + new TextureCoord { S = 0.394615f, T = 0.012663f}, + new TextureCoord { S = 0.838115f, T = 0.247091f}, + new TextureCoord { S = 0.589108f, T = 0.247091f}, + new TextureCoord { S = 0.713609f, T = 0.031441f}, + new TextureCoord { S = 0.648752f, T = 0.897968f}, + new TextureCoord { S = 0.484562f, T = 0.671981f}, + new TextureCoord { S = 0.722181f, T = 0.671980f}, + new TextureCoord { S = 0.644386f, T = 0.947134f}, + new TextureCoord { S = 0.396380f, T = 0.969437f}, + new TextureCoord { S = 0.501069f, T = 0.743502f}, + new TextureCoord { S = 0.115283f, T = 0.012663f}, + new TextureCoord { S = 0.394615f, T = 0.012663f}, + new TextureCoord { S = 0.254949f, T = 0.204901f}, + new TextureCoord { S = 0.464602f, T = 0.031442f}, + new TextureCoord { S = 0.713609f, T = 0.031441f}, + new TextureCoord { S = 0.589108f, T = 0.247091f}, + new TextureCoord { S = 0.713609f, T = 0.031441f}, + new TextureCoord { S = 0.962618f, T = 0.031441f}, + new TextureCoord { S = 0.838115f, T = 0.247091f}, + new TextureCoord { S = 0.028963f, T = 0.613069f}, + new TextureCoord { S = 0.254949f, T = 0.448877f}, + new TextureCoord { S = 0.254949f, T = 0.686495f}, + new TextureCoord { S = 0.115283f, T = 0.878730f}, + new TextureCoord { S = 0.028963f, T = 0.613069f}, + new TextureCoord { S = 0.254949f, T = 0.686495f}, + new TextureCoord { S = 0.394615f, T = 0.878730f}, + new TextureCoord { S = 0.115283f, T = 0.878730f}, + new TextureCoord { S = 0.254949f, T = 0.686495f}, + new TextureCoord { S = 0.480935f, T = 0.613069f}, + new TextureCoord { S = 0.394615f, T = 0.878730f}, + new TextureCoord { S = 0.254949f, T = 0.686495f}, + new TextureCoord { S = 0.254949f, T = 0.448877f}, + new TextureCoord { S = 0.480935f, T = 0.613069f}, + new TextureCoord { S = 0.254949f, T = 0.686495f}, + }; + + Vector3[] normals = { + new Vector3 { X = -0.276376f, Y = -0.850642f, Z = -0.447188f }, + new Vector3 { X = 0.000000f, Y = 0.000000f, Z = -1.000000f }, + new Vector3 { X = 0.723594f, Y = -0.525712f, Z = -0.447188f }, + new Vector3 { X = 0.723594f, Y = -0.525712f, Z = -0.447188f }, + new Vector3 { X = 0.000000f, Y = 0.000000f, Z = -1.000000f }, + new Vector3 { X = 0.723594f, Y = 0.525712f, Z = -0.447188f }, + new Vector3 { X = -0.894406f, Y = 0.000000f, Z = -0.447188f }, + new Vector3 { X = 0.000000f, Y = 0.000000f, Z = -1.000000f }, + new Vector3 { X = -0.276376f, Y = -0.850642f, Z = -0.447188f }, + new Vector3 { X = -0.276376f, Y = 0.850642f, Z = -0.447188f }, + new Vector3 { X = 0.000000f, Y = 0.000000f, Z = -1.000000f }, + new Vector3 { X = -0.894406f, Y = 0.000000f, Z = -0.447188f }, + new Vector3 { X = 0.723594f, Y = 0.525712f, Z = -0.447188f }, + new Vector3 { X = 0.000000f, Y = 0.000000f, Z = -1.000000f }, + new Vector3 { X = -0.276376f, Y = 0.850642f, Z = -0.447188f }, + new Vector3 { X = 0.723594f, Y = -0.525712f, Z = -0.447188f }, + new Vector3 { X = 0.723594f, Y = 0.525712f, Z = -0.447188f }, + new Vector3 { X = 0.894406f, Y = 0.000000f, Z = 0.447188f }, + new Vector3 { X = -0.276376f, Y = -0.850642f, Z = -0.447188f }, + new Vector3 { X = 0.723594f, Y = -0.525712f, Z = -0.447188f }, + new Vector3 { X = 0.276376f, Y = -0.850642f, Z = 0.447188f }, + new Vector3 { X = -0.894406f, Y = 0.000000f, Z = -0.447188f }, + new Vector3 { X = -0.276376f, Y = -0.850642f, Z = -0.447188f }, + new Vector3 { X = -0.723594f, Y = -0.525712f, Z = 0.447188f }, + new Vector3 { X = -0.276376f, Y = 0.850642f, Z = -0.447188f }, + new Vector3 { X = -0.894406f, Y = 0.000000f, Z = -0.447188f }, + new Vector3 { X = -0.723594f, Y = 0.525712f, Z = 0.447188f }, + new Vector3 { X = 0.723594f, Y = 0.525712f, Z = -0.447188f }, + new Vector3 { X = -0.276376f, Y = 0.850642f, Z = -0.447188f }, + new Vector3 { X = 0.276376f, Y = 0.850642f, Z = 0.447188f }, + new Vector3 { X = 0.894406f, Y = 0.000000f, Z = 0.447188f }, + new Vector3 { X = 0.276376f, Y = -0.850642f, Z = 0.447188f }, + new Vector3 { X = 0.723594f, Y = -0.525712f, Z = -0.447188f }, + new Vector3 { X = 0.276376f, Y = -0.850642f, Z = 0.447188f }, + new Vector3 { X = -0.723594f, Y = -0.525712f, Z = 0.447188f }, + new Vector3 { X = -0.276376f, Y = -0.850642f, Z = -0.447188f }, + new Vector3 { X = -0.723594f, Y = -0.525712f, Z = 0.447188f }, + new Vector3 { X = -0.723594f, Y = 0.525712f, Z = 0.447188f }, + new Vector3 { X = -0.894406f, Y = 0.000000f, Z = -0.447188f }, + new Vector3 { X = -0.723594f, Y = 0.525712f, Z = 0.447188f }, + new Vector3 { X = 0.276376f, Y = 0.850642f, Z = 0.447188f }, + new Vector3 { X = -0.276376f, Y = 0.850642f, Z = -0.447188f }, + new Vector3 { X = 0.276376f, Y = 0.850642f, Z = 0.447188f }, + new Vector3 { X = 0.894406f, Y = 0.000000f, Z = 0.447188f }, + new Vector3 { X = 0.723594f, Y = 0.525712f, Z = -0.447188f }, + new Vector3 { X = 0.276376f, Y = -0.850642f, Z = 0.447188f }, + new Vector3 { X = 0.894406f, Y = 0.000000f, Z = 0.447188f }, + new Vector3 { X = 0.000000f, Y = 0.000000f, Z = 1.000000f }, + new Vector3 { X = -0.723594f, Y = -0.525712f, Z = 0.447188f }, + new Vector3 { X = 0.276376f, Y = -0.850642f, Z = 0.447188f }, + new Vector3 { X = 0.000000f, Y = 0.000000f, Z = 1.000000f }, + new Vector3 { X = -0.723594f, Y = 0.525712f, Z = 0.447188f }, + new Vector3 { X = -0.723594f, Y = -0.525712f, Z = 0.447188f }, + new Vector3 { X = 0.000000f, Y = 0.000000f, Z = 1.000000f }, + new Vector3 { X = 0.276376f, Y = 0.850642f, Z = 0.447188f }, + new Vector3 { X = -0.723594f, Y = 0.525712f, Z = 0.447188f }, + new Vector3 { X = 0.000000f, Y = 0.000000f, Z = 1.000000f }, + new Vector3 { X = 0.894406f, Y = 0.000000f, Z = 0.447188f }, + new Vector3 { X = 0.276376f, Y = 0.850642f, Z = 0.447188f }, + new Vector3 { X = 0.000000f, Y = 0.000000f, Z = 1.000000f }, + }; + + GL.ClearColor (0f, 0f, 0f, 1f); + GL.Clear (ClearBufferMask.ColorBufferBit | ClearBufferMask.DepthBufferBit); + if (program != null) + program.Use (); + + GL.VertexAttribPointer (positionAttribute, 3, VertexAttribPointerType.Float, false, 0, vertices); + GL.EnableVertexAttribArray (positionAttribute); + + GL.VertexAttribPointer (textureCoordinateAttribute, 2, VertexAttribPointerType.Float, false, 0, textureCoordinates); + GL.EnableVertexAttribArray (textureCoordinateAttribute); + + GL.VertexAttribPointer (normalsAttribute, 2, VertexAttribPointerType.Float, false, 0, normals); + GL.EnableVertexAttribArray (normalsAttribute); + + Vector3 rotationVector = new Vector3 (1.0f, 1.0f, 1.0f); + GLCommon.Matrix3DSetRotationByDegrees (ref rotationMatrix, rot, rotationVector); + GLCommon.Matrix3DSetTranslation (ref translationMatrix, 0.0f, 0.0f, -3.0f); + modelViewMatrix = GLCommon.Matrix3DMultiply (translationMatrix, rotationMatrix); + + GLCommon.Matrix3DSetPerspectiveProjectionWithFieldOfView (ref projectionMatrix, 45.0f, 0.1f, 100.0f, + View.Frame.Size.Width / + View.Frame.Size.Height); + + matrix = GLCommon.Matrix3DMultiply (projectionMatrix, modelViewMatrix); + GL.UniformMatrix4 (matrixUniform, 1, false, matrix); + + GL.ActiveTexture (TextureUnit.Texture0); + if (texture != null) + texture.Use (); + GL.Uniform1 (textureUniform, 0); + + GL.Uniform4 (lightDirectionUniform, 1.0f, 0.75f, 0.25f, 1.0f); + GL.Uniform4 (lightDiffuseColorUniform, 0.8f, 0.8f, 1.0f, 1.0f); + + GL.DrawArrays (BeginMode.Triangles, 0, vertices.Length); + + rot += 2.0f; + if (rot > 360.0f) + rot -= 360.0f; + } + + public override void LoadView () + { + GLView view = new GLView (); + view.Controller = this; + + View = view; + } + } +} \ No newline at end of file diff --git a/OpenGL/PerVertexDirectionalLighting/Info.plist b/OpenGL/PerVertexDirectionalLighting/Info.plist new file mode 100644 index 000000000..8653860cf --- /dev/null +++ b/OpenGL/PerVertexDirectionalLighting/Info.plist @@ -0,0 +1,26 @@ + + + + + UIDeviceFamily + + 1 + 2 + + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + MinimumOSVersion + 3.2 + + diff --git a/OpenGL/PerVertexDirectionalLighting/Main.cs b/OpenGL/PerVertexDirectionalLighting/Main.cs new file mode 100644 index 000000000..58693d547 --- /dev/null +++ b/OpenGL/PerVertexDirectionalLighting/Main.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using MonoTouch.Foundation; +using MonoTouch.UIKit; + +namespace PerVertexDirectionalLighting +{ + public class Application + { + // This is the main entry point of the application. + static void Main (string[] args) + { + // if you want to use a different Application Delegate class from "AppDelegate" + // you can specify it here. + UIApplication.Main (args, null, "AppDelegate"); + } + } +} diff --git a/OpenGL/PerVertexDirectionalLighting/PerVertexDirectionalLighting.csproj b/OpenGL/PerVertexDirectionalLighting/PerVertexDirectionalLighting.csproj new file mode 100644 index 000000000..db7e8d981 --- /dev/null +++ b/OpenGL/PerVertexDirectionalLighting/PerVertexDirectionalLighting.csproj @@ -0,0 +1,100 @@ + + + + Debug + iPhoneSimulator + 10.0.0 + 2.0 + {522284B6-ED61-4F9D-8BA4-F7A863126445} + {6BC8ED88-2882-458C-8E55-DFD12B67127B};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + Exe + PerVertexDirectionalLighting + Resources + PerVertexDirectionalLighting + + + true + false + bin\iPhoneSimulator\Debug + DEBUG; + prompt + 4 + false + None + true + + + true + bin\iPhoneSimulator\Release + prompt + 4 + false + None + + + true + false + bin\iPhone\Debug + DEBUG; + prompt + 4 + false + true + iPhone Developer + + + true + bin\iPhone\Release + prompt + 4 + false + iPhone Developer + + + true + bin\iPhone\Ad-Hoc + prompt + 4 + true + iPhone Distribution + false + Automatic:AdHoc + + + true + bin\iPhone\AppStore + prompt + 4 + false + iPhone Distribution + Automatic:AppStore + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/OpenGL/PerVertexDirectionalLighting/Resources/DieTexture.png b/OpenGL/PerVertexDirectionalLighting/Resources/DieTexture.png new file mode 100755 index 000000000..a9dad77b5 Binary files /dev/null and b/OpenGL/PerVertexDirectionalLighting/Resources/DieTexture.png differ diff --git a/OpenGL/PerVertexDirectionalLighting/Shader.fsh b/OpenGL/PerVertexDirectionalLighting/Shader.fsh new file mode 100755 index 000000000..8b230eaa0 --- /dev/null +++ b/OpenGL/PerVertexDirectionalLighting/Shader.fsh @@ -0,0 +1,7 @@ +uniform sampler2D texture; +varying mediump vec2 fragmentTextureCoordinates; +varying lowp vec4 frontColor; +void main() +{ + gl_FragColor = texture2D(texture, fragmentTextureCoordinates) * frontColor; +} diff --git a/OpenGL/PerVertexDirectionalLighting/Shader.vsh b/OpenGL/PerVertexDirectionalLighting/Shader.vsh new file mode 100755 index 000000000..18d0e48a9 --- /dev/null +++ b/OpenGL/PerVertexDirectionalLighting/Shader.vsh @@ -0,0 +1,27 @@ +attribute vec4 position; +attribute vec2 textureCoordinate; +attribute vec4 normal; + +uniform mat4 matrix; + +uniform vec4 lightDirection; +uniform vec4 lightDiffuseColor; + +varying vec2 fragmentTextureCoordinates; +varying vec4 frontColor; +void main() +{ + + vec4 normalizedNormal = normalize(matrix * normal); + vec4 normalizedLightDirection = normalize(lightDirection); + + float nDotL = max(dot(normalizedNormal, normalizedLightDirection), 0.0); + + frontColor = nDotL * lightDiffuseColor; + + gl_Position = matrix * position; + fragmentTextureCoordinates = textureCoordinate; + + + +} \ No newline at end of file diff --git a/OpenGL/README.md b/OpenGL/README.md new file mode 100644 index 000000000..31a1c9984 --- /dev/null +++ b/OpenGL/README.md @@ -0,0 +1,34 @@ +OpenGL +====== + +A collection of samples for using OpenGL in Xamarin.iOS. These samples are Xamarin ports of samples found in objective-c at https://github.com/jlamarche/iOS-OpenGLES-Stuff + +GLKBaseEffectDrawing +-------------------- + +Draws a rotating monkey's head from a list of vertices and normals using GLKit + +GLKBaseEffectDrawingTexture +--------------------------- + +Adds a texture to the monkey head from the GLKBaseEffectDrawing sample + +GLKReflectionMapEffectSkybox +---------------------------- + +Adds a skybox to the GLKBaseEffectDrawing sample and changes the monkey's head to be reflective. + +OpenGLES20Example +----------------- + +Draws a rotating 20-sided die using shaders and a texture image. + +PerVertexDirectionalLighting +---------------------------- + +Adds directional lighting to OpenGLES20Example + +Authors +------- + +Timothy Risi \ No newline at end of file diff --git a/OpenGL/Screenshots/GLKBaseEffectDrawing.png b/OpenGL/Screenshots/GLKBaseEffectDrawing.png new file mode 100644 index 000000000..7e355ed3f Binary files /dev/null and b/OpenGL/Screenshots/GLKBaseEffectDrawing.png differ diff --git a/OpenGL/Screenshots/GLKBaseEffectDrawingTexture.png b/OpenGL/Screenshots/GLKBaseEffectDrawingTexture.png new file mode 100644 index 000000000..19d5c1132 Binary files /dev/null and b/OpenGL/Screenshots/GLKBaseEffectDrawingTexture.png differ diff --git a/OpenGL/Screenshots/GLKReflectionMapSkybox.png b/OpenGL/Screenshots/GLKReflectionMapSkybox.png new file mode 100644 index 000000000..a6bed7fc3 Binary files /dev/null and b/OpenGL/Screenshots/GLKReflectionMapSkybox.png differ diff --git a/OpenGL/Screenshots/OpenGLES20Example.png b/OpenGL/Screenshots/OpenGLES20Example.png new file mode 100644 index 000000000..b8165ba40 Binary files /dev/null and b/OpenGL/Screenshots/OpenGLES20Example.png differ diff --git a/OpenGL/Screenshots/PerVertexDirectionalLighting.png b/OpenGL/Screenshots/PerVertexDirectionalLighting.png new file mode 100644 index 000000000..e385d857b Binary files /dev/null and b/OpenGL/Screenshots/PerVertexDirectionalLighting.png differ